Changeset 06b2d12


Ignore:
Timestamp:
Aug 26, 2012, 6:48:21 PM (13 years ago)
Author:
William Harrington <kb0iic@…>
Branches:
clfs-2.1, clfs-3.0.0-systemd, clfs-3.0.0-sysvinit, master, systemd, sysvinit
Children:
68a11fb
Parents:
6ecbe33
Message:

delete old patches and add new patches.

Location:
patches
Files:
5 added
4 deleted
1 moved

Legend:

Unmodified
Added
Removed
  • patches/ncurses-5.9-branch_update-4.patch

    </
    r6ecbe33 r06b2d12  
    11Submitted By: Jonathan Norman (jonathan at bluesquarelinux dot co dot uk)
    2 Date: 2012-02-16
     2Date: 2012-08-25
    33Initial Package Version: 5.9
    44Origin: Upstream
    55Upstream Status: Applied
    6 Description: Contains all upstream patches up to 5.9-20111224
     6Description: Contains all upstream patches up to 5.9-20120616
    77
    88diff -Naur ncurses-5.9.orig/Ada95/aclocal.m4 ncurses-5.9/Ada95/aclocal.m4
    9 --- ncurses-5.9.orig/Ada95/aclocal.m4   2012-02-16 18:25:12.619808985 +0000
    10 +++ ncurses-5.9/Ada95/aclocal.m4        2012-02-16 18:25:13.167823445 +0000
     9--- ncurses-5.9.orig/Ada95/aclocal.m4   2012-08-25 19:57:59.386567678 +0000
     10+++ ncurses-5.9/Ada95/aclocal.m4        2012-08-25 19:58:02.099888180 +0000
    1111@@ -1,5 +1,5 @@
    1212 dnl***************************************************************************
     
    2121 dnl
    2222-dnl $Id: aclocal.m4,v 1.24 2011/03/31 23:32:36 tom Exp $
    23 +dnl $Id: aclocal.m4,v 1.44 2012/01/22 00:33:42 tom Exp $
     23+dnl $Id: aclocal.m4,v 1.52 2012/08/04 18:12:47 tom Exp $
    2424 dnl Macros used in NCURSES Ada95 auto-configuration script.
    2525 dnl
     
    9494 cf_cv_ansi_cc=no
    9595 cf_save_CFLAGS="$CFLAGS"
    96 @@ -504,7 +550,7 @@
     96@@ -413,6 +459,35 @@
     97 AC_SUBST(ARFLAGS)
     98 ])
     99 dnl ---------------------------------------------------------------------------
     100+dnl CF_ARG_DISABLE version: 3 updated: 1999/03/30 17:24:31
     101+dnl --------------
     102+dnl Allow user to disable a normally-on option.
     103+AC_DEFUN([CF_ARG_DISABLE],
     104+[CF_ARG_OPTION($1,[$2],[$3],[$4],yes)])dnl
     105+dnl ---------------------------------------------------------------------------
     106+dnl CF_ARG_OPTION version: 4 updated: 2010/05/26 05:38:42
     107+dnl -------------
     108+dnl Restricted form of AC_ARG_ENABLE that ensures user doesn't give bogus
     109+dnl values.
     110+dnl
     111+dnl Parameters:
     112+dnl $1 = option name
     113+dnl $2 = help-string
     114+dnl $3 = action to perform if option is not default
     115+dnl $4 = action if perform if option is default
     116+dnl $5 = default option value (either 'yes' or 'no')
     117+AC_DEFUN([CF_ARG_OPTION],
     118+[AC_ARG_ENABLE([$1],[$2],[test "$enableval" != ifelse([$5],no,yes,no) && enableval=ifelse([$5],no,no,yes)
     119+  if test "$enableval" != "$5" ; then
     120+ifelse([$3],,[    :]dnl
     121+,[    $3]) ifelse([$4],,,[
     122+  else
     123+    $4])
     124+  fi],[enableval=$5 ifelse([$4],,,[
     125+  $4
     126+])dnl
     127+  ])])dnl
     128+dnl ---------------------------------------------------------------------------
     129 dnl CF_BUILD_CC version: 6 updated: 2006/10/14 15:23:15
     130 dnl -----------
     131 dnl If we're cross-compiling, allow the user to override the tools and their
     132@@ -504,7 +579,7 @@
    97133 AC_SUBST(BUILD_OBJEXT)
    98134 ])dnl
     
    103139 dnl Determine the default configuration into which we'll install ncurses.  This
    104140 dnl can be overridden by the user's command-line options.  There's two items to
    105 @@ -522,7 +568,7 @@
     141@@ -522,7 +597,7 @@
    106142 if test "x$prefix" = "xNONE" ; then
    107143        case "$cf_cv_system_name" in
     
    112148                ;;
    113149        *)      prefix=$ac_default_prefix
    114 @@ -593,7 +639,7 @@
     150@@ -593,7 +668,40 @@
    115151 fi
    116152 ])dnl
    117153 dnl ---------------------------------------------------------------------------
    118154-dnl CF_CURSES_HEADER version: 2 updated: 2010/04/28 06:02:16
     155+dnl CF_CLANG_COMPILER version: 1 updated: 2012/06/16 14:55:39
     156+dnl -----------------
     157+dnl Check if the given compiler is really clang.  clang's C driver defines
     158+dnl __GNUC__ (fooling the configure script into setting $GCC to yes) but does
     159+dnl not ignore some gcc options.
     160+dnl
     161+dnl This macro should be run "soon" after AC_PROG_CC or AC_PROG_CPLUSPLUS, to
     162+dnl ensure that it is not mistaken for gcc/g++.  It is normally invoked from
     163+dnl the wrappers for gcc and g++ warnings.
     164+dnl
     165+dnl $1 = GCC (default) or GXX
     166+dnl $2 = INTEL_COMPILER (default) or INTEL_CPLUSPLUS
     167+dnl $3 = CFLAGS (default) or CXXFLAGS
     168+AC_DEFUN([CF_CLANG_COMPILER],[
     169+ifelse([$2],,CLANG_COMPILER,[$2])=no
     170+
     171+if test "$ifelse([$1],,[$1],GCC)" = yes ; then
     172+       AC_MSG_CHECKING(if this is really Clang ifelse([$1],GXX,C++,C) compiler)
     173+       cf_save_CFLAGS="$ifelse([$3],,CFLAGS,[$3])"
     174+       ifelse([$3],,CFLAGS,[$3])="$ifelse([$3],,CFLAGS,[$3]) -Qunused-arguments"
     175+       AC_TRY_COMPILE([],[
     176+#ifdef __clang__
     177+#else
     178+make an error
     179+#endif
     180+],[ifelse([$2],,CLANG_COMPILER,[$2])=yes
     181+cf_save_CFLAGS="$cf_save_CFLAGS -Qunused-arguments"
     182+],[])
     183+       ifelse([$3],,CFLAGS,[$3])="$cf_save_CFLAGS"
     184+       AC_MSG_RESULT($ifelse([$2],,CLANG_COMPILER,[$2]))
     185+fi
     186+])
     187+dnl ---------------------------------------------------------------------------
    119188+dnl CF_CURSES_HEADER version: 3 updated: 2011/05/01 19:47:45
    120189 dnl ----------------
    121190 dnl Find a "curses" header file, e.g,. "curses.h", or one of the more common
    122191 dnl variations of ncurses' installs.
    123 @@ -603,10 +649,10 @@
     192@@ -603,10 +711,10 @@
    124193 AC_CACHE_CHECK(if we have identified curses headers,cf_cv_ncurses_header,[
    125194 cf_cv_ncurses_header=none
     
    136205 AC_TRY_COMPILE([#include <${cf_header}>],
    137206        [initscr(); tgoto("?", 0,0)],
    138 @@ -627,6 +673,31 @@
     207@@ -627,6 +735,67 @@
    139208 dnl "dirname" is not portable, so we fake it with a shell script.
    140209 AC_DEFUN([CF_DIRNAME],[$1=`echo $2 | sed -e 's%/[[^/]]*$%%'`])dnl
    141210 dnl ---------------------------------------------------------------------------
    142 +dnl CF_ENABLE_PC_FILES version: 7 updated: 2011/12/10 18:58:47
     211+dnl CF_DISABLE_ECHO version: 11 updated: 2009/12/13 13:16:57
     212+dnl ---------------
     213+dnl You can always use "make -n" to see the actual options, but it's hard to
     214+dnl pick out/analyze warning messages when the compile-line is long.
     215+dnl
     216+dnl Sets:
     217+dnl    ECHO_LT - symbol to control if libtool is verbose
     218+dnl    ECHO_LD - symbol to prefix "cc -o" lines
     219+dnl    RULE_CC - symbol to put before implicit "cc -c" lines (e.g., .c.o)
     220+dnl    SHOW_CC - symbol to put before explicit "cc -c" lines
     221+dnl    ECHO_CC - symbol to put before any "cc" line
     222+dnl
     223+AC_DEFUN([CF_DISABLE_ECHO],[
     224+AC_MSG_CHECKING(if you want to see long compiling messages)
     225+CF_ARG_DISABLE(echo,
     226+       [  --disable-echo          display "compiling" commands],
     227+       [
     228+    ECHO_LT='--silent'
     229+    ECHO_LD='@echo linking [$]@;'
     230+    RULE_CC='@echo compiling [$]<'
     231+    SHOW_CC='@echo compiling [$]@'
     232+    ECHO_CC='@'
     233+],[
     234+    ECHO_LT=''
     235+    ECHO_LD=''
     236+    RULE_CC=''
     237+    SHOW_CC=''
     238+    ECHO_CC=''
     239+])
     240+AC_MSG_RESULT($enableval)
     241+AC_SUBST(ECHO_LT)
     242+AC_SUBST(ECHO_LD)
     243+AC_SUBST(RULE_CC)
     244+AC_SUBST(SHOW_CC)
     245+AC_SUBST(ECHO_CC)
     246+])dnl
     247+dnl ---------------------------------------------------------------------------
     248+dnl CF_ENABLE_PC_FILES version: 9 updated: 2012/08/04 13:59:54
    143249+dnl ------------------
    144250+dnl This is the "--enable-pc-files" option, which is available if there is a
     
    149255+
    150256+if test "$PKG_CONFIG" != none ; then
    151 +       if test -n "$PKG_CONFIG_LIBDIR" && test -d "$PKG_CONFIG_LIBDIR" ; then
    152 +               AC_MSG_CHECKING(if we should install .pc files for $PKG_CONFIG)
    153 +               AC_ARG_ENABLE(pc-files,
    154 +                       [  --enable-pc-files       generate and install .pc files for pkg-config],
    155 +                       [enable_pc_files=$enableval],
    156 +                       [enable_pc_files=no])
    157 +               AC_MSG_RESULT($enable_pc_files)
    158 +       elif test -z "$PKG_CONFIG_LIBDIR" || test "$PKG_CONFIG_LIBDIR" != no; then
    159 +               enable_pc_files=no
    160 +               AC_MSG_WARN(did not find $PKG_CONFIG library)
     257+       AC_MSG_CHECKING(if we should install .pc files for $PKG_CONFIG)
     258+       AC_ARG_ENABLE(pc-files,
     259+               [  --enable-pc-files       generate and install .pc files for pkg-config],
     260+               [enable_pc_files=$enableval],
     261+               [enable_pc_files=no])
     262+       AC_MSG_RESULT($enable_pc_files)
     263+       if test "$enable_pc_files" != no
     264+       then
     265+               CF_PATH_SYNTAX(PKG_CONFIG_LIBDIR)
    161266+       fi
    162267+else
     
    168273 dnl ---------------
    169274 dnl Look for a non-standard library, given parameters for AC_TRY_LINK.  We
    170 @@ -1070,53 +1141,6 @@
     275@@ -807,6 +976,25 @@
     276 fi
     277 ])dnl
     278 dnl ---------------------------------------------------------------------------
     279+dnl CF_FIXUP_ADAFLAGS version: 1 updated: 2012/03/31 18:48:10
     280+dnl -----------------
     281+dnl make ADAFLAGS consistent with CFLAGS
     282+AC_DEFUN([CF_FIXUP_ADAFLAGS],[
     283+       AC_MSG_CHECKING(optimization options for ADAFLAGS)
     284+       case "$CFLAGS" in
     285+       *-g*)
     286+               CF_ADD_ADAFLAGS(-g)
     287+               ;;
     288+       esac
     289+       case "$CFLAGS" in
     290+       *-O*)
     291+               cf_O_flag=`echo "$CFLAGS" |sed -e 's/^.*-O/-O/' -e 's/[[        ]].*//'`
     292+               CF_ADD_ADAFLAGS($cf_O_flag)
     293+               ;;
     294+       esac
     295+       AC_MSG_RESULT($ADAFLAGS)
     296+])dnl
     297+dnl ---------------------------------------------------------------------------
     298 dnl CF_GCC_ATTRIBUTES version: 14 updated: 2010/10/23 15:52:32
     299 dnl -----------------
     300 dnl Test for availability of useful gcc __attribute__ directives to quiet
     301@@ -931,7 +1119,7 @@
     302 fi
     303 ])dnl
     304 dnl ---------------------------------------------------------------------------
     305-dnl CF_GCC_WARNINGS version: 27 updated: 2010/10/23 15:52:32
     306+dnl CF_GCC_WARNINGS version: 29 updated: 2012/06/16 14:55:39
     307 dnl ---------------
     308 dnl Check if the compiler supports useful warning options.  There's a few that
     309 dnl we don't use, simply because they're too noisy:
     310@@ -954,6 +1142,7 @@
     311 [
     312 AC_REQUIRE([CF_GCC_VERSION])
     313 CF_INTEL_COMPILER(GCC,INTEL_COMPILER,CFLAGS)
     314+CF_CLANG_COMPILER(GCC,CLANG_COMPILER,CFLAGS)
     315 
     316 cat > conftest.$ac_ext <<EOF
     317 #line __oline__ "${as_me:-configure}"
     318@@ -1029,6 +1218,13 @@
     319                                        continue;;
     320                                esac
     321                                ;;
     322+                       Wpointer-arith) #(vi
     323+                               case $GCC_VERSION in
     324+                               [[12]].*)
     325+                                       CF_VERBOSE(feature is broken in gcc $GCC_VERSION)
     326+                                       continue;;
     327+                               esac
     328+                               ;;
     329                        esac
     330                        EXTRA_CFLAGS="$EXTRA_CFLAGS -$cf_opt"
     331                fi
     332@@ -1070,53 +1266,6 @@
    171333 AC_SUBST(cf_generic_objects)
    172334 ])dnl
     
    222384 dnl --------------------
    223385 dnl Check if the gnat pragma "Unreferenced" works.
    224 @@ -1253,6 +1277,53 @@
     386@@ -1253,6 +1402,53 @@
    225387 AC_SUBST(USE_GNAT_LIBRARIES)
    226388 ])dnl
     
    276438 dnl ----------------
    277439 dnl Verify that a test program compiles/links with GNAT.
    278 @@ -1311,7 +1382,7 @@
     440@@ -1311,7 +1507,7 @@
    279441 rm -rf conftest* *~conftest*
    280442 ])dnl
     
    285447 dnl Verify version of GNAT.
    286448 AC_DEFUN([CF_GNAT_VERSION],
    287 @@ -1323,7 +1394,7 @@
     449@@ -1323,7 +1519,7 @@
    288450 AC_MSG_RESULT($cf_gnat_version)
    289451 
     
    294456        ;;
    295457 *)
    296 @@ -1518,7 +1589,7 @@
     458@@ -1518,7 +1714,7 @@
    297459 ])
    298460 ])
     
    303465 dnl For the given system and compiler, find the compiler flags to pass to the
    304466 dnl loader to use the "rpath" feature.
    305 @@ -1539,10 +1610,10 @@
     467@@ -1539,10 +1735,10 @@
    306468 linux*|gnu*|k*bsd*-gnu) #(vi
    307469        LD_RPATH_OPT="-Wl,-rpath,"
     
    316478        ;;
    317479 netbsd*) #(vi
    318 @@ -1601,11 +1672,11 @@
     480@@ -1601,11 +1797,11 @@
    319481 $1="$cf_library_path_list [$]$1"
    320482 ])dnl
     
    330492        case $cf_cv_system_name in #(vi
    331493        OS/2*|os2*) #(vi
    332 @@ -1655,7 +1726,7 @@
     494@@ -1655,7 +1851,7 @@
    333495 ])
    334496 ])
    335497 dnl ---------------------------------------------------------------------------
    336498-dnl CF_LIB_SUFFIX version: 16 updated: 2008/12/27 12:30:03
    337 +dnl CF_LIB_SUFFIX version: 17 updated: 2011/07/02 15:36:04
     499+dnl CF_LIB_SUFFIX version: 18 updated: 2012/02/25 15:20:07
    338500 dnl -------------
    339501 dnl Compute the library file-suffix from the given model name
    340502 dnl $1 = model name
    341 @@ -1684,7 +1755,7 @@
     503@@ -1684,11 +1880,11 @@
    342504                ;;
    343505        shared) #(vi
     
    348510                        $3=[$]$2
    349511                        ;;
    350 @@ -2141,7 +2212,7 @@
     512-               cygwin*) #(vi
     513+               cygwin*|mingw*) #(vi
     514                        $2='.dll'
     515                        $3='.dll.a'
     516                        ;;
     517@@ -1974,7 +2170,7 @@
     518 test "$cf_cv_mixedcase" = yes && AC_DEFINE(MIXEDCASE_FILENAMES)
     519 ])dnl
     520 dnl ---------------------------------------------------------------------------
     521-dnl CF_MKSTEMP version: 7 updated: 2010/08/14 18:25:37
     522+dnl CF_MKSTEMP version: 8 updated: 2012/02/13 20:34:56
     523 dnl ----------
     524 dnl Check for a working mkstemp.  This creates two files, checks that they are
     525 dnl successfully created and distinct (AmigaOS apparently fails on the last).
     526@@ -2016,9 +2212,11 @@
     527 }
     528 ],[cf_cv_func_mkstemp=yes
     529 ],[cf_cv_func_mkstemp=no
     530-],[AC_CHECK_FUNC(mkstemp)
     531-])
     532+],[cf_cv_func_mkstemp=maybe])
     533 ])
     534+if test "x$cf_cv_func_mkstemp" = xmaybe ; then
     535+       AC_CHECK_FUNC(mkstemp)
     536+fi
     537 if test "x$cf_cv_func_mkstemp" = xyes || test "x$ac_cv_func_mkstemp" = xyes ; then
     538        AC_DEFINE(HAVE_MKSTEMP)
     539 fi
     540@@ -2141,7 +2339,7 @@
    351541        ,[$1=no])
    352542 ])dnl
     
    357547 dnl Tie together the configure-script macros for ncurses.
    358548 dnl Prefer the "-config" script from ncurses 6.x, to simplify analysis.
    359 @@ -2153,7 +2224,10 @@
     549@@ -2153,7 +2351,10 @@
    360550 cf_ncuconfig_root=ifelse($1,,ncurses,$1)
    361551 
     
    369559 if test "$NCURSES_CONFIG" != none ; then
    370560 
    371 @@ -2546,7 +2620,7 @@
     561@@ -2509,7 +2710,7 @@
     562        AC_SUBST(PATH_SEPARATOR)
     563 ])dnl
     564 dnl ---------------------------------------------------------------------------
     565-dnl CF_PATH_SYNTAX version: 13 updated: 2010/05/26 05:38:42
     566+dnl CF_PATH_SYNTAX version: 14 updated: 2012/06/19 20:58:54
     567 dnl --------------
     568 dnl Check the argument to see that it looks like a pathname.  Rewrite it if it
     569 dnl begins with one of the prefix/exec_prefix variables, and then again if the
     570@@ -2529,7 +2730,7 @@
     571   ;;
     572 .[[a-zA-Z]]:[[\\/]]*) #(vi OS/2 EMX
     573   ;;
     574-.\[$]{*prefix}*) #(vi
     575+.\[$]{*prefix}*|.\[$]{*dir}*) #(vi
     576   eval $1="[$]$1"
     577   case ".[$]$1" in #(vi
     578   .NONE/*)
     579@@ -2546,7 +2747,7 @@
    372580 esac
    373581 ])dnl
     
    378586 dnl Check for the package-config program, unless disabled by command-line.
    379587 AC_DEFUN([CF_PKG_CONFIG],
    380 @@ -2563,7 +2637,9 @@
     588@@ -2563,7 +2764,9 @@
    381589        PKG_CONFIG=none
    382590        ;;
     
    389597 *)
    390598        PKG_CONFIG=$withval
    391 @@ -2746,7 +2822,7 @@
     599@@ -2746,7 +2949,7 @@
    392600 test -n "$PROG_EXT" && AC_DEFINE_UNQUOTED(PROG_EXT,"$PROG_EXT")
    393601 ])dnl
     
    398606 dnl Check for gnatmake, ensure that it is complete.
    399607 AC_DEFUN([CF_PROG_GNAT],[
    400 @@ -2754,6 +2830,7 @@
     608@@ -2754,6 +2957,7 @@
    401609 AC_CHECK_PROG(gnat_exists, $cf_ada_make, yes, no)
    402610 if test "$ac_cv_prog_gnat_exists" = no; then
     
    406614    CF_GNAT_VERSION
    407615    AC_CHECK_PROG(M4_exists, m4, yes, no)
    408 @@ -2831,7 +2908,7 @@
     616@@ -2831,7 +3035,7 @@
    409617 $1=`echo "$2" | sed -e 's/-l$3[[       ]]//g' -e 's/-l$3[$]//'`
    410618 ])dnl
    411619 dnl ---------------------------------------------------------------------------
    412620-dnl CF_SHARED_OPTS version: 64 updated: 2010/06/05 16:51:16
    413 +dnl CF_SHARED_OPTS version: 69 updated: 2011/07/30 19:31:39
     621+dnl CF_SHARED_OPTS version: 70 updated: 2012/02/25 15:20:07
    414622 dnl --------------
    415623 dnl --------------
    416624 dnl Attempt to determine the appropriate CC/LD options for creating a shared
    417 @@ -2906,10 +2983,14 @@
     625@@ -2906,10 +3110,14 @@
    418626        cf_cv_shlib_version_infix=no
    419627 
     
    432640                ;;
    433641        beos*) #(vi
    434 @@ -2962,9 +3043,19 @@
     642@@ -2962,9 +3170,19 @@
    435643                # readonly to exploit a quirk in the memory manager.
    436644                INSTALL_LIB="-m 555"
     
    453661                # tested with IRIX 5.2 and 'cc'.
    454662                if test "$GCC" != yes; then
    455 @@ -2981,18 +3072,18 @@
     663@@ -2981,18 +3199,39 @@
    456664                        LOCAL_LDFLAGS2="$LOCAL_LDFLAGS"
    457665                fi
     
    464672                ;;
    465673-       openbsd[[2-9]].*) #(vi
     674+       mingw*) #(vi
     675+               cf_cv_shlib_version=mingw
     676+               cf_cv_shlib_version_infix=mingw
     677+               CC_SHARED_OPTS=
     678+               MK_SHARED_LIB='sh ../mk_shared_lib.sh [$]@ [$]{CC} [$]{CFLAGS}'
     679+               #MK_SHARED_LIB='${CC} ${CFLAGS} -mdll -Wl,-soname,'$cf_cv_shared_soname',-stats -o $[@]'
     680+               #MK_SHARED_LIB='${DLLTOOL} --export-all-symbols --output-exp --output-lib $[@]'
     681+               cat >mk_shared_lib.sh <<-CF_EOF
     682+               #!/bin/sh
     683+               SHARED_LIB=\[$]1
     684+               IMPORT_LIB=\`echo "\[$]1" | sed -e 's/[[0-9]]*\.dll[$]/.dll.a/'\`
     685+               shift
     686+               cat <<-EOF
     687+               Linking shared library
     688+               ** SHARED_LIB \[$]SHARED_LIB
     689+               ** IMPORT_LIB \[$]IMPORT_LIB
     690+EOF
     691+               exec \[$]* -shared -Wl,--out-implib=../lib/\[$]{IMPORT_LIB} -Wl,--export-all-symbols -o ../lib/\[$]{SHARED_LIB}
     692+CF_EOF
     693+               chmod +x mk_shared_lib.sh
     694+               ;;
    466695+       openbsd[[2-9]].*|mirbsd*) #(vi
    467696                if test "$DFT_LWR_MODEL" = "shared" ; then
     
    475704                CC_SHARED_OPTS="$CC_SHARED_OPTS -DPIC"
    476705                CF_SHARED_SONAME
    477 @@ -3003,12 +3094,12 @@
     706@@ -3003,12 +3242,12 @@
    478707                MK_SHARED_LIB='${LD} -Bshareable -o $[@]'
    479708                test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=rel
     
    491720                CF_SHARED_SONAME
    492721                MK_SHARED_LIB='${LD} -shared -Bshareable -soname=`basename $[@]` -o $[@]'
    493 @@ -3018,7 +3109,7 @@
     722@@ -3018,7 +3257,7 @@
    494723                if test "$DFT_LWR_MODEL" = "shared" && test "$cf_cv_enable_rpath" = yes ; then
    495724                        LOCAL_LDFLAGS="${cf_ld_rpath_opt}\$(LOCAL_LIBDIR)"
     
    500729                        if test -f /usr/libexec/ld.elf_so; then
    501730                                cf_cv_shlib_version=abi
    502 @@ -3123,9 +3214,9 @@
     731@@ -3123,9 +3362,12 @@
    503732                ;;
    504733        esac
     
    510739+       test -n "$cf_ld_rpath_opt" && MK_SHARED_LIB="$MK_SHARED_LIB $cf_ld_rpath_opt\${RPATH_LIST}"
    511740+       test -z "$RPATH_LIST" && RPATH_LIST="\${libdir}"
     741+
     742+       CF_VERBOSE(CC_SHARED_OPTS: $CC_SHARED_OPTS)
     743+       CF_VERBOSE(MK_SHARED_LIB:  $MK_SHARED_LIB)
    512744 
    513745        AC_SUBST(CC_SHARED_OPTS)
    514746        AC_SUBST(LD_RPATH_OPT)
    515 @@ -3137,6 +3228,7 @@
     747@@ -3137,6 +3379,7 @@
    516748        AC_SUBST(LOCAL_LDFLAGS)
    517749        AC_SUBST(LOCAL_LDFLAGS2)
     
    521753 dnl ---------------------------------------------------------------------------
    522754 dnl CF_SHARED_SONAME version: 3 updated: 2008/09/08 18:34:43
    523 @@ -3253,6 +3345,45 @@
     755@@ -3253,6 +3496,45 @@
    524756 AC_SUBST(top_builddir)
    525757 ])dnl
     
    567799 dnl --------
    568800 dnl Make an uppercase version of a variable
    569 @@ -3415,6 +3546,32 @@
     801@@ -3415,6 +3697,32 @@
    570802 fi
    571803 ])dnl
     
    600832 dnl ------------
    601833 dnl Wrapper for AC_ARG_WITH to ensure that user supplies a pathname, not just
    602 @@ -3436,7 +3593,50 @@
     834@@ -3436,7 +3744,50 @@
    603835 AC_SUBST($3)dnl
    604836 ])dnl
     
    652884 dnl Check for POSIX thread library.
    653885 AC_DEFUN([CF_WITH_PTHREAD],
    654 @@ -3452,28 +3652,33 @@
     886@@ -3452,28 +3803,33 @@
    655887     AC_CHECK_HEADER(pthread.h,[
    656888         AC_DEFINE(HAVE_PTHREADS_H)
     
    700932 dnl Try to get _XOPEN_SOURCE defined properly that we can use POSIX functions,
    701933 dnl or adapt to the vendor's definitions to get equivalent functionality,
    702 @@ -3489,7 +3694,7 @@
     934@@ -3489,7 +3845,7 @@
    703935 cf_xopen_source=
    704936 
     
    709941        ;;
    710942 cygwin) #(vi
    711 @@ -3500,6 +3705,7 @@
     943@@ -3500,6 +3856,7 @@
    712944        ;;
    713945 darwin*) #(vi
     
    717949 freebsd*|dragonfly*) #(vi
    718950        # 5.x headers associate
    719 @@ -3517,15 +3723,23 @@
     951@@ -3517,15 +3874,23 @@
    720952        ;;
    721953 irix[[56]].*) #(vi
     
    743975 openbsd*) #(vi
    744976        # setting _XOPEN_SOURCE breaks xterm on OpenBSD 2.8, is not needed for ncursesw
    745 @@ -3539,36 +3753,11 @@
     977@@ -3539,36 +3904,11 @@
    746978 sco*) #(vi
    747979        # setting _XOPEN_SOURCE breaks Lynx on SCO Unix / OpenServer
     
    7821014        ;;
    7831015 esac
    784 @@ -3576,4 +3765,33 @@
     1016@@ -3576,4 +3916,33 @@
    7851017 if test -n "$cf_xopen_source" ; then
    7861018        CF_ADD_CFLAGS($cf_xopen_source)
     
    8171049 ])
    8181050diff -Naur ncurses-5.9.orig/Ada95/configure ncurses-5.9/Ada95/configure
    819 --- ncurses-5.9.orig/Ada95/configure    2012-02-16 18:25:12.619808985 +0000
    820 +++ ncurses-5.9/Ada95/configure 2012-02-16 18:25:13.179823762 +0000
    821 @@ -1,5 +1,5 @@
     1051--- ncurses-5.9.orig/Ada95/configure    2012-08-25 19:57:59.386567678 +0000
     1052+++ ncurses-5.9/Ada95/configure 2012-08-25 19:58:02.283220646 +0000
     1053@@ -1,7 +1,7 @@
    8221054 #! /bin/sh
    8231055-# From configure.in Revision: 1.30 .
    824 +# From configure.in Revision: 1.38 .
     1056+# From configure.in Revision: 1.41 .
    8251057 # Guess values for system-dependent variables and create Makefiles.
    826  # Generated by Autoconf 2.52.20101002.
     1058-# Generated by Autoconf 2.52.20101002.
     1059+# Generated by Autoconf 2.52.20120811.
    8271060 #
    828 @@ -645,6 +645,7 @@
     1061 # Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001
     1062 # Free Software Foundation, Inc.
     1063@@ -135,15 +135,16 @@
     1064 bindir='${exec_prefix}/bin'
     1065 sbindir='${exec_prefix}/sbin'
     1066 libexecdir='${exec_prefix}/libexec'
     1067-datadir='${prefix}/share'
     1068+datarootdir='${prefix}/share'
     1069+datadir='${datarootdir}'
     1070 sysconfdir='${prefix}/etc'
     1071 sharedstatedir='${prefix}/com'
     1072 localstatedir='${prefix}/var'
     1073 libdir='${exec_prefix}/lib'
     1074 includedir='${prefix}/include'
     1075 oldincludedir='/usr/include'
     1076-infodir='${prefix}/info'
     1077-mandir='${prefix}/man'
     1078+infodir='${datarootdir}/info'
     1079+mandir='${datarootdir}/man'
     1080 
     1081 # Identity of this package.
     1082 PACKAGE_NAME=
     1083@@ -194,6 +195,13 @@
     1084   | --da=*)
     1085     datadir=$ac_optarg ;;
     1086 
     1087+  -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \
     1088+  | --dataroo | --dataro | --datar)
     1089+    ac_prev=datarootdir ;;
     1090+  -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \
     1091+  | --dataroot=* | --dataroo=* | --dataro=* | --datar=*)
     1092+    datarootdir=$ac_optarg ;;
     1093+
     1094   -disable-* | --disable-*)
     1095     ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
     1096     # Reject names that are not valid shell variable names.
     1097@@ -469,7 +477,7 @@
     1098 done
     1099 
     1100 # Be sure to have absolute paths.
     1101-for ac_var in bindir sbindir libexecdir datadir sysconfdir sharedstatedir \
     1102+for ac_var in bindir sbindir libexecdir datarootdir datadir sysconfdir sharedstatedir \
     1103               localstatedir libdir includedir oldincludedir infodir mandir
     1104 do
     1105   eval ac_val=$`echo $ac_var`
     1106@@ -606,15 +614,16 @@
     1107   --bindir=DIR            user executables [EPREFIX/bin]
     1108   --sbindir=DIR           system admin executables [EPREFIX/sbin]
     1109   --libexecdir=DIR        program executables [EPREFIX/libexec]
     1110-  --datadir=DIR           read-only architecture-independent data [PREFIX/share]
     1111+  --datarootdir=DIR       read-only architecture-independent data [PREFIX/share]
     1112+  --datadir=DIR           read-only architecture-independent data [DATAROOTDIR]
     1113   --sysconfdir=DIR        read-only single-machine data [PREFIX/etc]
     1114   --sharedstatedir=DIR    modifiable architecture-independent data [PREFIX/com]
     1115   --localstatedir=DIR     modifiable single-machine data [PREFIX/var]
     1116   --libdir=DIR            object code libraries [EPREFIX/lib]
     1117   --includedir=DIR        C header files [PREFIX/include]
     1118   --oldincludedir=DIR     C header files for non-gcc [/usr/include]
     1119-  --infodir=DIR           info documentation [PREFIX/info]
     1120-  --mandir=DIR            man documentation [PREFIX/man]
     1121+  --infodir=DIR           info documentation [DATAROOTDIR/info]
     1122+  --mandir=DIR            man documentation [DATAROOTDIR/man]
     1123 EOF
     1124 
     1125   cat <<\EOF
     1126@@ -645,6 +654,7 @@
    8291127 
    8301128   --with-system-type=XXX  test: override derived host system-type
     
    8341132   --without-tests         suppress build with test-programs
    8351133   --enable-mixed-case     tic should assume mixed-case filenames
    836 @@ -660,6 +661,7 @@
     1134@@ -660,6 +670,7 @@
    8371135   --with-shared           generate shared C-objects (needed for --with-ada-sharedlib)
    8381136   --enable-widec          compile with wide-char/UTF-8 code
     
    8421140   --enable-rpath-link     link sample programs with rpath option
    8431141 Fine-Tuning Your Configuration:
    844 @@ -881,7 +883,7 @@
     1142@@ -677,7 +688,7 @@
     1143   --enable-reentrant      compile with experimental reentrant code
     1144   --with-wrap-prefix=XXX  override prefix used for public variables
     1145 Testing/development Options:
     1146-  --enable-echo           build: display "compiling" commands (default)
     1147+  --disable-echo          display "compiling" commands
     1148   --enable-warnings       build: turn on GCC compiler warnings
     1149   --enable-assertions     test: turn on generation of assertion code
     1150   --enable-expanded       test: generate functions for certain macros
     1151@@ -757,7 +768,7 @@
     1152 running configure, to aid debugging if configure makes a mistake.
     1153 
     1154 It was created by $as_me, which was
     1155-generated by GNU Autoconf 2.52.20101002.  Invocation command line was
     1156+generated by GNU Autoconf 2.52.20120811.  Invocation command line was
     1157 
     1158   $ $0 $@
     1159 
     1160@@ -881,7 +892,7 @@
    8451161 fi
    8461162 for ac_site_file in $CONFIG_SITE; do
    8471163   if test -r "$ac_site_file"; then
    8481164-    { echo "$as_me:884: loading site script $ac_site_file" >&5
    849 +    { echo "$as_me:886: loading site script $ac_site_file" >&5
     1165+    { echo "$as_me:895: loading site script $ac_site_file" >&5
    8501166 echo "$as_me: loading site script $ac_site_file" >&6;}
    8511167     cat "$ac_site_file" >&5
    8521168     . "$ac_site_file"
    853 @@ -892,7 +894,7 @@
     1169@@ -892,7 +903,7 @@
    8541170   # Some versions of bash will fail to source /dev/null (special
    8551171   # files actually), so we avoid doing that.
    8561172   if test -f "$cache_file"; then
    8571173-    { echo "$as_me:895: loading cache $cache_file" >&5
    858 +    { echo "$as_me:897: loading cache $cache_file" >&5
     1174+    { echo "$as_me:906: loading cache $cache_file" >&5
    8591175 echo "$as_me: loading cache $cache_file" >&6;}
    8601176     case $cache_file in
    8611177       [\\/]* | ?:[\\/]* ) . $cache_file;;
    862 @@ -900,7 +902,7 @@
     1178@@ -900,7 +911,7 @@
    8631179     esac
    8641180   fi
    8651181 else
    8661182-  { echo "$as_me:903: creating cache $cache_file" >&5
    867 +  { echo "$as_me:905: creating cache $cache_file" >&5
     1183+  { echo "$as_me:914: creating cache $cache_file" >&5
    8681184 echo "$as_me: creating cache $cache_file" >&6;}
    8691185   >$cache_file
    8701186 fi
    871 @@ -916,21 +918,21 @@
     1187@@ -916,21 +927,21 @@
    8721188   eval ac_new_val="\$ac_env_${ac_var}_value"
    8731189   case $ac_old_set,$ac_new_set in
    8741190     set,)
    8751191-      { echo "$as_me:919: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
    876 +      { echo "$as_me:921: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
     1192+      { echo "$as_me:930: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
    8771193 echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
    8781194       ac_cache_corrupted=: ;;
    8791195     ,set)
    8801196-      { echo "$as_me:923: error: \`$ac_var' was not set in the previous run" >&5
    881 +      { echo "$as_me:925: error: \`$ac_var' was not set in the previous run" >&5
     1197+      { echo "$as_me:934: error: \`$ac_var' was not set in the previous run" >&5
    8821198 echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
    8831199       ac_cache_corrupted=: ;;
     
    8861202       if test "x$ac_old_val" != "x$ac_new_val"; then
    8871203-        { echo "$as_me:929: error: \`$ac_var' has changed since the previous run:" >&5
    888 +        { echo "$as_me:931: error: \`$ac_var' has changed since the previous run:" >&5
     1204+        { echo "$as_me:940: error: \`$ac_var' has changed since the previous run:" >&5
    8891205 echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
    8901206-        { echo "$as_me:931:   former value:  $ac_old_val" >&5
    891 +        { echo "$as_me:933:   former value:  $ac_old_val" >&5
     1207+        { echo "$as_me:942:   former value:  $ac_old_val" >&5
    8921208 echo "$as_me:   former value:  $ac_old_val" >&2;}
    8931209-        { echo "$as_me:933:   current value: $ac_new_val" >&5
    894 +        { echo "$as_me:935:   current value: $ac_new_val" >&5
     1210+        { echo "$as_me:944:   current value: $ac_new_val" >&5
    8951211 echo "$as_me:   current value: $ac_new_val" >&2;}
    8961212         ac_cache_corrupted=:
    8971213       fi;;
    898 @@ -949,9 +951,9 @@
     1214@@ -949,9 +960,9 @@
    8991215   fi
    9001216 done
    9011217 if $ac_cache_corrupted; then
    9021218-  { echo "$as_me:952: error: changes in the environment can compromise the build" >&5
    903 +  { echo "$as_me:954: error: changes in the environment can compromise the build" >&5
     1219+  { echo "$as_me:963: error: changes in the environment can compromise the build" >&5
    9041220 echo "$as_me: error: changes in the environment can compromise the build" >&2;}
    9051221-  { { echo "$as_me:954: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5
    906 +  { { echo "$as_me:956: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5
     1222+  { { echo "$as_me:965: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5
    9071223 echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;}
    9081224    { (exit 1); exit 1; }; }
    9091225 fi
    910 @@ -972,10 +974,10 @@
     1226@@ -972,10 +983,10 @@
    9111227 echo "#! $SHELL" >conftest.sh
    9121228 echo  "exit 0"   >>conftest.sh
    9131229 chmod +x conftest.sh
    9141230-if { (echo "$as_me:975: PATH=\".;.\"; conftest.sh") >&5
    915 +if { (echo "$as_me:977: PATH=\".;.\"; conftest.sh") >&5
     1231+if { (echo "$as_me:986: PATH=\".;.\"; conftest.sh") >&5
    9161232   (PATH=".;."; conftest.sh) 2>&5
    9171233   ac_status=$?
    9181234-  echo "$as_me:978: \$? = $ac_status" >&5
    919 +  echo "$as_me:980: \$? = $ac_status" >&5
     1235+  echo "$as_me:989: \$? = $ac_status" >&5
    9201236   (exit $ac_status); }; then
    9211237   ac_path_separator=';'
    9221238 else
    923 @@ -1005,7 +1007,7 @@
     1239@@ -1005,7 +1016,7 @@
    9241240   fi
    9251241 done
    9261242 if test -z "$ac_aux_dir"; then
    9271243-  { { echo "$as_me:1008: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5
    928 +  { { echo "$as_me:1010: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5
     1244+  { { echo "$as_me:1019: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5
    9291245 echo "$as_me: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&2;}
    9301246    { (exit 1); exit 1; }; }
    9311247 fi
    932 @@ -1015,11 +1017,11 @@
     1248@@ -1015,11 +1026,11 @@
    9331249 
    9341250 # Make sure we can run config.sub.
    9351251 $ac_config_sub sun4 >/dev/null 2>&1 ||
    9361252-  { { echo "$as_me:1018: error: cannot run $ac_config_sub" >&5
    937 +  { { echo "$as_me:1020: error: cannot run $ac_config_sub" >&5
     1253+  { { echo "$as_me:1029: error: cannot run $ac_config_sub" >&5
    9381254 echo "$as_me: error: cannot run $ac_config_sub" >&2;}
    9391255    { (exit 1); exit 1; }; }
    9401256 
    9411257-echo "$as_me:1022: checking build system type" >&5
    942 +echo "$as_me:1024: checking build system type" >&5
     1258+echo "$as_me:1033: checking build system type" >&5
    9431259 echo $ECHO_N "checking build system type... $ECHO_C" >&6
    9441260 if test "${ac_cv_build+set}" = set; then
    9451261   echo $ECHO_N "(cached) $ECHO_C" >&6
    946 @@ -1028,23 +1030,23 @@
     1262@@ -1028,23 +1039,23 @@
    9471263 test -z "$ac_cv_build_alias" &&
    9481264   ac_cv_build_alias=`$ac_config_guess`
    9491265 test -z "$ac_cv_build_alias" &&
    9501266-  { { echo "$as_me:1031: error: cannot guess build type; you must specify one" >&5
    951 +  { { echo "$as_me:1033: error: cannot guess build type; you must specify one" >&5
     1267+  { { echo "$as_me:1042: error: cannot guess build type; you must specify one" >&5
    9521268 echo "$as_me: error: cannot guess build type; you must specify one" >&2;}
    9531269    { (exit 1); exit 1; }; }
    9541270 ac_cv_build=`$ac_config_sub $ac_cv_build_alias` ||
    9551271-  { { echo "$as_me:1035: error: $ac_config_sub $ac_cv_build_alias failed." >&5
    956 +  { { echo "$as_me:1037: error: $ac_config_sub $ac_cv_build_alias failed." >&5
     1272+  { { echo "$as_me:1046: error: $ac_config_sub $ac_cv_build_alias failed." >&5
    9571273 echo "$as_me: error: $ac_config_sub $ac_cv_build_alias failed." >&2;}
    9581274    { (exit 1); exit 1; }; }
     
    9601276 fi
    9611277-echo "$as_me:1040: result: $ac_cv_build" >&5
    962 +echo "$as_me:1042: result: $ac_cv_build" >&5
     1278+echo "$as_me:1051: result: $ac_cv_build" >&5
    9631279 echo "${ECHO_T}$ac_cv_build" >&6
    9641280 build=$ac_cv_build
     
    9681284 
    9691285-echo "$as_me:1047: checking host system type" >&5
    970 +echo "$as_me:1049: checking host system type" >&5
     1286+echo "$as_me:1058: checking host system type" >&5
    9711287 echo $ECHO_N "checking host system type... $ECHO_C" >&6
    9721288 if test "${ac_cv_host+set}" = set; then
    9731289   echo $ECHO_N "(cached) $ECHO_C" >&6
    974 @@ -1053,12 +1055,12 @@
     1290@@ -1053,12 +1064,12 @@
    9751291 test -z "$ac_cv_host_alias" &&
    9761292   ac_cv_host_alias=$ac_cv_build_alias
    9771293 ac_cv_host=`$ac_config_sub $ac_cv_host_alias` ||
    9781294-  { { echo "$as_me:1056: error: $ac_config_sub $ac_cv_host_alias failed" >&5
    979 +  { { echo "$as_me:1058: error: $ac_config_sub $ac_cv_host_alias failed" >&5
     1295+  { { echo "$as_me:1067: error: $ac_config_sub $ac_cv_host_alias failed" >&5
    9801296 echo "$as_me: error: $ac_config_sub $ac_cv_host_alias failed" >&2;}
    9811297    { (exit 1); exit 1; }; }
     
    9831299 fi
    9841300-echo "$as_me:1061: result: $ac_cv_host" >&5
    985 +echo "$as_me:1063: result: $ac_cv_host" >&5
     1301+echo "$as_me:1072: result: $ac_cv_host" >&5
    9861302 echo "${ECHO_T}$ac_cv_host" >&6
    9871303 host=$ac_cv_host
    9881304 host_cpu=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
    989 @@ -1066,7 +1068,7 @@
     1305@@ -1066,7 +1077,7 @@
    9901306 host_os=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
    9911307 
    9921308 if test -f $srcdir/config.guess || test -f $ac_aux_dir/config.guess ; then
    9931309-       echo "$as_me:1069: checking target system type" >&5
    994 +       echo "$as_me:1071: checking target system type" >&5
     1310+       echo "$as_me:1080: checking target system type" >&5
    9951311 echo $ECHO_N "checking target system type... $ECHO_C" >&6
    9961312 if test "${ac_cv_target+set}" = set; then
    9971313   echo $ECHO_N "(cached) $ECHO_C" >&6
    998 @@ -1075,12 +1077,12 @@
     1314@@ -1075,12 +1086,12 @@
    9991315 test "x$ac_cv_target_alias" = "x" &&
    10001316   ac_cv_target_alias=$ac_cv_host_alias
    10011317 ac_cv_target=`$ac_config_sub $ac_cv_target_alias` ||
    10021318-  { { echo "$as_me:1078: error: $ac_config_sub $ac_cv_target_alias failed" >&5
    1003 +  { { echo "$as_me:1080: error: $ac_config_sub $ac_cv_target_alias failed" >&5
     1319+  { { echo "$as_me:1089: error: $ac_config_sub $ac_cv_target_alias failed" >&5
    10041320 echo "$as_me: error: $ac_config_sub $ac_cv_target_alias failed" >&2;}
    10051321    { (exit 1); exit 1; }; }
     
    10071323 fi
    10081324-echo "$as_me:1083: result: $ac_cv_target" >&5
    1009 +echo "$as_me:1085: result: $ac_cv_target" >&5
     1325+echo "$as_me:1094: result: $ac_cv_target" >&5
    10101326 echo "${ECHO_T}$ac_cv_target" >&6
    10111327 target=$ac_cv_target
    10121328 target_cpu=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
    1013 @@ -1111,13 +1113,13 @@
     1329@@ -1111,13 +1122,13 @@
    10141330 fi
    10151331 
    10161332 test -z "$system_name" && system_name="$cf_cv_system_name"
    10171333-test -n "$cf_cv_system_name" && echo "$as_me:1114: result: Configuring for $cf_cv_system_name" >&5
    1018 +test -n "$cf_cv_system_name" && echo "$as_me:1116: result: Configuring for $cf_cv_system_name" >&5
     1334+test -n "$cf_cv_system_name" && echo "$as_me:1125: result: Configuring for $cf_cv_system_name" >&5
    10191335 echo "${ECHO_T}Configuring for $cf_cv_system_name" >&6
    10201336 
    10211337 if test ".$system_name" != ".$cf_cv_system_name" ; then
    10221338-       echo "$as_me:1118: result: Cached system name ($system_name) does not agree with actual ($cf_cv_system_name)" >&5
    1023 +       echo "$as_me:1120: result: Cached system name ($system_name) does not agree with actual ($cf_cv_system_name)" >&5
     1339+       echo "$as_me:1129: result: Cached system name ($system_name) does not agree with actual ($cf_cv_system_name)" >&5
    10241340 echo "${ECHO_T}Cached system name ($system_name) does not agree with actual ($cf_cv_system_name)" >&6
    10251341-       { { echo "$as_me:1120: error: \"Please remove config.cache and try again.\"" >&5
    1026 +       { { echo "$as_me:1122: error: \"Please remove config.cache and try again.\"" >&5
     1342+       { { echo "$as_me:1131: error: \"Please remove config.cache and try again.\"" >&5
    10271343 echo "$as_me: error: \"Please remove config.cache and try again.\"" >&2;}
    10281344    { (exit 1); exit 1; }; }
    10291345 fi
    1030 @@ -1125,7 +1127,7 @@
     1346@@ -1125,7 +1136,7 @@
    10311347 # Check whether --with-system-type or --without-system-type was given.
    10321348 if test "${with_system_type+set}" = set; then
    10331349   withval="$with_system_type"
    10341350-  { echo "$as_me:1128: WARNING: overriding system type to $withval" >&5
    1035 +  { echo "$as_me:1130: WARNING: overriding system type to $withval" >&5
     1351+  { echo "$as_me:1139: WARNING: overriding system type to $withval" >&5
    10361352 echo "$as_me: WARNING: overriding system type to $withval" >&2;}
    10371353  cf_cv_system_name=$withval
    10381354 fi;
    1039 @@ -1135,23 +1137,23 @@
     1355@@ -1135,23 +1146,23 @@
    10401356 
    10411357 ###    Default install-location
    10421358 
    10431359-echo "$as_me:1138: checking for prefix" >&5
    1044 +echo "$as_me:1140: checking for prefix" >&5
     1360+echo "$as_me:1149: checking for prefix" >&5
    10451361 echo $ECHO_N "checking for prefix... $ECHO_C" >&6
    10461362 if test "x$prefix" = "xNONE" ; then
     
    10561372 fi
    10571373-echo "$as_me:1150: result: $prefix" >&5
    1058 +echo "$as_me:1152: result: $prefix" >&5
     1374+echo "$as_me:1161: result: $prefix" >&5
    10591375 echo "${ECHO_T}$prefix" >&6
    10601376 
    10611377 if test "x$prefix" = "xNONE" ; then
    10621378-echo "$as_me:1154: checking for default include-directory" >&5
    1063 +echo "$as_me:1156: checking for default include-directory" >&5
     1379+echo "$as_me:1165: checking for default include-directory" >&5
    10641380 echo $ECHO_N "checking for default include-directory... $ECHO_C" >&6
    10651381 test -n "$verbose" && echo 1>&6
    10661382 for cf_symbol in \
    1067 @@ -1174,7 +1176,7 @@
     1383@@ -1174,7 +1185,7 @@
    10681384        fi
    10691385        test -n "$verbose"  && echo "   tested $cf_dir" 1>&6
    10701386 done
    10711387-echo "$as_me:1177: result: $includedir" >&5
    1072 +echo "$as_me:1179: result: $includedir" >&5
     1388+echo "$as_me:1188: result: $includedir" >&5
    10731389 echo "${ECHO_T}$includedir" >&6
    10741390 fi
    10751391 
    1076 @@ -1188,7 +1190,7 @@
     1392@@ -1186,213 +1197,11 @@
     1393 ac_compiler_gnu=$ac_cv_c_compiler_gnu
     1394 ac_main_return=return
    10771395 if test -n "$ac_tool_prefix"; then
    1078    # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
    1079  set dummy ${ac_tool_prefix}gcc; ac_word=$2
     1396-  # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
     1397-set dummy ${ac_tool_prefix}gcc; ac_word=$2
    10801398-echo "$as_me:1191: checking for $ac_word" >&5
    1081 +echo "$as_me:1193: checking for $ac_word" >&5
    1082  echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    1083  if test "${ac_cv_prog_CC+set}" = set; then
    1084    echo $ECHO_N "(cached) $ECHO_C" >&6
    1085 @@ -1203,7 +1205,7 @@
    1086    test -z "$ac_dir" && ac_dir=.
    1087    $as_executable_p "$ac_dir/$ac_word" || continue
    1088  ac_cv_prog_CC="${ac_tool_prefix}gcc"
     1399-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
     1400-if test "${ac_cv_prog_CC+set}" = set; then
     1401-  echo $ECHO_N "(cached) $ECHO_C" >&6
     1402-else
     1403-  if test -n "$CC"; then
     1404-  ac_cv_prog_CC="$CC" # Let the user override the test.
     1405-else
     1406-  ac_save_IFS=$IFS; IFS=$ac_path_separator
     1407-ac_dummy="$PATH"
     1408-for ac_dir in $ac_dummy; do
     1409-  IFS=$ac_save_IFS
     1410-  test -z "$ac_dir" && ac_dir=.
     1411-  $as_executable_p "$ac_dir/$ac_word" || continue
     1412-ac_cv_prog_CC="${ac_tool_prefix}gcc"
    10891413-echo "$as_me:1206: found $ac_dir/$ac_word" >&5
    1090 +echo "$as_me:1208: found $ac_dir/$ac_word" >&5
    1091  break
    1092  done
    1093  
    1094 @@ -1211,10 +1213,10 @@
    1095  fi
    1096  CC=$ac_cv_prog_CC
    1097  if test -n "$CC"; then
     1414-break
     1415-done
     1416-
     1417-fi
     1418-fi
     1419-CC=$ac_cv_prog_CC
     1420-if test -n "$CC"; then
    10981421-  echo "$as_me:1214: result: $CC" >&5
    1099 +  echo "$as_me:1216: result: $CC" >&5
    1100  echo "${ECHO_T}$CC" >&6
    1101  else
     1422-echo "${ECHO_T}$CC" >&6
     1423-else
    11021424-  echo "$as_me:1217: result: no" >&5
    1103 +  echo "$as_me:1219: result: no" >&5
    1104  echo "${ECHO_T}no" >&6
    1105  fi
    1106  
    1107 @@ -1223,7 +1225,7 @@
    1108    ac_ct_CC=$CC
    1109    # Extract the first word of "gcc", so it can be a program name with args.
    1110  set dummy gcc; ac_word=$2
     1425-echo "${ECHO_T}no" >&6
     1426-fi
     1427-
     1428-fi
     1429-if test -z "$ac_cv_prog_CC"; then
     1430-  ac_ct_CC=$CC
     1431-  # Extract the first word of "gcc", so it can be a program name with args.
     1432-set dummy gcc; ac_word=$2
    11111433-echo "$as_me:1226: checking for $ac_word" >&5
    1112 +echo "$as_me:1228: checking for $ac_word" >&5
    1113  echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    1114  if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
    1115    echo $ECHO_N "(cached) $ECHO_C" >&6
    1116 @@ -1238,7 +1240,7 @@
    1117    test -z "$ac_dir" && ac_dir=.
    1118    $as_executable_p "$ac_dir/$ac_word" || continue
    1119  ac_cv_prog_ac_ct_CC="gcc"
     1434-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
     1435-if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
     1436-  echo $ECHO_N "(cached) $ECHO_C" >&6
     1437-else
     1438-  if test -n "$ac_ct_CC"; then
     1439-  ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
     1440-else
     1441-  ac_save_IFS=$IFS; IFS=$ac_path_separator
     1442-ac_dummy="$PATH"
     1443-for ac_dir in $ac_dummy; do
     1444-  IFS=$ac_save_IFS
     1445-  test -z "$ac_dir" && ac_dir=.
     1446-  $as_executable_p "$ac_dir/$ac_word" || continue
     1447-ac_cv_prog_ac_ct_CC="gcc"
    11201448-echo "$as_me:1241: found $ac_dir/$ac_word" >&5
    1121 +echo "$as_me:1243: found $ac_dir/$ac_word" >&5
    1122  break
    1123  done
    1124  
    1125 @@ -1246,10 +1248,10 @@
    1126  fi
    1127  ac_ct_CC=$ac_cv_prog_ac_ct_CC
    1128  if test -n "$ac_ct_CC"; then
     1449-break
     1450-done
     1451-
     1452-fi
     1453-fi
     1454-ac_ct_CC=$ac_cv_prog_ac_ct_CC
     1455-if test -n "$ac_ct_CC"; then
    11291456-  echo "$as_me:1249: result: $ac_ct_CC" >&5
    1130 +  echo "$as_me:1251: result: $ac_ct_CC" >&5
    1131  echo "${ECHO_T}$ac_ct_CC" >&6
    1132  else
     1457-echo "${ECHO_T}$ac_ct_CC" >&6
     1458-else
    11331459-  echo "$as_me:1252: result: no" >&5
    1134 +  echo "$as_me:1254: result: no" >&5
    1135  echo "${ECHO_T}no" >&6
    1136  fi
    1137  
    1138 @@ -1262,7 +1264,7 @@
    1139    if test -n "$ac_tool_prefix"; then
    1140    # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
    1141  set dummy ${ac_tool_prefix}cc; ac_word=$2
     1460-echo "${ECHO_T}no" >&6
     1461-fi
     1462-
     1463-  CC=$ac_ct_CC
     1464-else
     1465-  CC="$ac_cv_prog_CC"
     1466-fi
     1467-
     1468-if test -z "$CC"; then
     1469-  if test -n "$ac_tool_prefix"; then
     1470-  # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
     1471-set dummy ${ac_tool_prefix}cc; ac_word=$2
    11421472-echo "$as_me:1265: checking for $ac_word" >&5
    1143 +echo "$as_me:1267: checking for $ac_word" >&5
    1144  echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    1145  if test "${ac_cv_prog_CC+set}" = set; then
    1146    echo $ECHO_N "(cached) $ECHO_C" >&6
    1147 @@ -1277,7 +1279,7 @@
    1148    test -z "$ac_dir" && ac_dir=.
    1149    $as_executable_p "$ac_dir/$ac_word" || continue
    1150  ac_cv_prog_CC="${ac_tool_prefix}cc"
     1473-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
     1474-if test "${ac_cv_prog_CC+set}" = set; then
     1475-  echo $ECHO_N "(cached) $ECHO_C" >&6
     1476-else
     1477-  if test -n "$CC"; then
     1478-  ac_cv_prog_CC="$CC" # Let the user override the test.
     1479-else
     1480-  ac_save_IFS=$IFS; IFS=$ac_path_separator
     1481-ac_dummy="$PATH"
     1482-for ac_dir in $ac_dummy; do
     1483-  IFS=$ac_save_IFS
     1484-  test -z "$ac_dir" && ac_dir=.
     1485-  $as_executable_p "$ac_dir/$ac_word" || continue
     1486-ac_cv_prog_CC="${ac_tool_prefix}cc"
    11511487-echo "$as_me:1280: found $ac_dir/$ac_word" >&5
    1152 +echo "$as_me:1282: found $ac_dir/$ac_word" >&5
    1153  break
    1154  done
    1155  
    1156 @@ -1285,10 +1287,10 @@
    1157  fi
    1158  CC=$ac_cv_prog_CC
    1159  if test -n "$CC"; then
     1488-break
     1489-done
     1490-
     1491-fi
     1492-fi
     1493-CC=$ac_cv_prog_CC
     1494-if test -n "$CC"; then
    11601495-  echo "$as_me:1288: result: $CC" >&5
    1161 +  echo "$as_me:1290: result: $CC" >&5
    1162  echo "${ECHO_T}$CC" >&6
    1163  else
     1496-echo "${ECHO_T}$CC" >&6
     1497-else
    11641498-  echo "$as_me:1291: result: no" >&5
    1165 +  echo "$as_me:1293: result: no" >&5
    1166  echo "${ECHO_T}no" >&6
    1167  fi
    1168  
    1169 @@ -1297,7 +1299,7 @@
    1170    ac_ct_CC=$CC
    1171    # Extract the first word of "cc", so it can be a program name with args.
    1172  set dummy cc; ac_word=$2
     1499-echo "${ECHO_T}no" >&6
     1500-fi
     1501-
     1502-fi
     1503-if test -z "$ac_cv_prog_CC"; then
     1504-  ac_ct_CC=$CC
     1505-  # Extract the first word of "cc", so it can be a program name with args.
     1506-set dummy cc; ac_word=$2
    11731507-echo "$as_me:1300: checking for $ac_word" >&5
    1174 +echo "$as_me:1302: checking for $ac_word" >&5
    1175  echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    1176  if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
    1177    echo $ECHO_N "(cached) $ECHO_C" >&6
    1178 @@ -1312,7 +1314,7 @@
    1179    test -z "$ac_dir" && ac_dir=.
    1180    $as_executable_p "$ac_dir/$ac_word" || continue
    1181  ac_cv_prog_ac_ct_CC="cc"
     1508-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
     1509-if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
     1510-  echo $ECHO_N "(cached) $ECHO_C" >&6
     1511-else
     1512-  if test -n "$ac_ct_CC"; then
     1513-  ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
     1514-else
     1515-  ac_save_IFS=$IFS; IFS=$ac_path_separator
     1516-ac_dummy="$PATH"
     1517-for ac_dir in $ac_dummy; do
     1518-  IFS=$ac_save_IFS
     1519-  test -z "$ac_dir" && ac_dir=.
     1520-  $as_executable_p "$ac_dir/$ac_word" || continue
     1521-ac_cv_prog_ac_ct_CC="cc"
    11821522-echo "$as_me:1315: found $ac_dir/$ac_word" >&5
    1183 +echo "$as_me:1317: found $ac_dir/$ac_word" >&5
    1184  break
    1185  done
    1186  
    1187 @@ -1320,10 +1322,10 @@
    1188  fi
    1189  ac_ct_CC=$ac_cv_prog_ac_ct_CC
    1190  if test -n "$ac_ct_CC"; then
     1523-break
     1524-done
     1525-
     1526-fi
     1527-fi
     1528-ac_ct_CC=$ac_cv_prog_ac_ct_CC
     1529-if test -n "$ac_ct_CC"; then
    11911530-  echo "$as_me:1323: result: $ac_ct_CC" >&5
    1192 +  echo "$as_me:1325: result: $ac_ct_CC" >&5
    1193  echo "${ECHO_T}$ac_ct_CC" >&6
    1194  else
     1531-echo "${ECHO_T}$ac_ct_CC" >&6
     1532-else
    11951533-  echo "$as_me:1326: result: no" >&5
    1196 +  echo "$as_me:1328: result: no" >&5
    1197  echo "${ECHO_T}no" >&6
    1198  fi
    1199  
    1200 @@ -1336,7 +1338,7 @@
    1201  if test -z "$CC"; then
    1202    # Extract the first word of "cc", so it can be a program name with args.
    1203  set dummy cc; ac_word=$2
     1534-echo "${ECHO_T}no" >&6
     1535-fi
     1536-
     1537-  CC=$ac_ct_CC
     1538-else
     1539-  CC="$ac_cv_prog_CC"
     1540-fi
     1541-
     1542-fi
     1543-if test -z "$CC"; then
     1544-  # Extract the first word of "cc", so it can be a program name with args.
     1545-set dummy cc; ac_word=$2
    12041546-echo "$as_me:1339: checking for $ac_word" >&5
    1205 +echo "$as_me:1341: checking for $ac_word" >&5
    1206  echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    1207  if test "${ac_cv_prog_CC+set}" = set; then
    1208    echo $ECHO_N "(cached) $ECHO_C" >&6
    1209 @@ -1356,7 +1358,7 @@
    1210    continue
    1211  fi
    1212  ac_cv_prog_CC="cc"
     1547-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
     1548-if test "${ac_cv_prog_CC+set}" = set; then
     1549-  echo $ECHO_N "(cached) $ECHO_C" >&6
     1550-else
     1551-  if test -n "$CC"; then
     1552-  ac_cv_prog_CC="$CC" # Let the user override the test.
     1553-else
     1554-  ac_prog_rejected=no
     1555-  ac_save_IFS=$IFS; IFS=$ac_path_separator
     1556-ac_dummy="$PATH"
     1557-for ac_dir in $ac_dummy; do
     1558-  IFS=$ac_save_IFS
     1559-  test -z "$ac_dir" && ac_dir=.
     1560-  $as_executable_p "$ac_dir/$ac_word" || continue
     1561-if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then
     1562-  ac_prog_rejected=yes
     1563-  continue
     1564-fi
     1565-ac_cv_prog_CC="cc"
    12131566-echo "$as_me:1359: found $ac_dir/$ac_word" >&5
    1214 +echo "$as_me:1361: found $ac_dir/$ac_word" >&5
    1215  break
    1216  done
    1217  
    1218 @@ -1378,10 +1380,10 @@
    1219  fi
    1220  CC=$ac_cv_prog_CC
    1221  if test -n "$CC"; then
     1567-break
     1568-done
     1569-
     1570-if test $ac_prog_rejected = yes; then
     1571-  # We found a bogon in the path, so make sure we never use it.
     1572-  set dummy $ac_cv_prog_CC
     1573-  shift
     1574-  if test $# != 0; then
     1575-    # We chose a different compiler from the bogus one.
     1576-    # However, it has the same basename, so the bogon will be chosen
     1577-    # first if we set CC to just the basename; use the full file name.
     1578-    shift
     1579-    set dummy "$ac_dir/$ac_word" ${1+"$@"}
     1580-    shift
     1581-    ac_cv_prog_CC="$@"
     1582-  fi
     1583-fi
     1584-fi
     1585-fi
     1586-CC=$ac_cv_prog_CC
     1587-if test -n "$CC"; then
    12221588-  echo "$as_me:1381: result: $CC" >&5
    1223 +  echo "$as_me:1383: result: $CC" >&5
    1224  echo "${ECHO_T}$CC" >&6
    1225  else
     1589-echo "${ECHO_T}$CC" >&6
     1590-else
    12261591-  echo "$as_me:1384: result: no" >&5
    1227 +  echo "$as_me:1386: result: no" >&5
    1228  echo "${ECHO_T}no" >&6
    1229  fi
    1230  
    1231 @@ -1392,7 +1394,7 @@
     1592-echo "${ECHO_T}no" >&6
     1593-fi
     1594-
     1595-fi
     1596-if test -z "$CC"; then
     1597-  if test -n "$ac_tool_prefix"; then
     1598-  for ac_prog in cl
     1599+  for ac_prog in gnatgcc gcc cc
    12321600   do
    12331601     # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
    12341602 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
    12351603-echo "$as_me:1395: checking for $ac_word" >&5
    1236 +echo "$as_me:1397: checking for $ac_word" >&5
     1604+echo "$as_me:1204: checking for $ac_word" >&5
    12371605 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    12381606 if test "${ac_cv_prog_CC+set}" = set; then
    12391607   echo $ECHO_N "(cached) $ECHO_C" >&6
    1240 @@ -1407,7 +1409,7 @@
     1608@@ -1407,7 +1216,7 @@
    12411609   test -z "$ac_dir" && ac_dir=.
    12421610   $as_executable_p "$ac_dir/$ac_word" || continue
    12431611 ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
    12441612-echo "$as_me:1410: found $ac_dir/$ac_word" >&5
    1245 +echo "$as_me:1412: found $ac_dir/$ac_word" >&5
     1613+echo "$as_me:1219: found $ac_dir/$ac_word" >&5
    12461614 break
    12471615 done
    12481616 
    1249 @@ -1415,10 +1417,10 @@
     1617@@ -1415,10 +1224,10 @@
    12501618 fi
    12511619 CC=$ac_cv_prog_CC
    12521620 if test -n "$CC"; then
    12531621-  echo "$as_me:1418: result: $CC" >&5
    1254 +  echo "$as_me:1420: result: $CC" >&5
     1622+  echo "$as_me:1227: result: $CC" >&5
    12551623 echo "${ECHO_T}$CC" >&6
    12561624 else
    12571625-  echo "$as_me:1421: result: no" >&5
    1258 +  echo "$as_me:1423: result: no" >&5
     1626+  echo "$as_me:1230: result: no" >&5
    12591627 echo "${ECHO_T}no" >&6
    12601628 fi
    12611629 
    1262 @@ -1431,7 +1433,7 @@
     1630@@ -1427,11 +1236,11 @@
     1631 fi
     1632 if test -z "$CC"; then
     1633   ac_ct_CC=$CC
     1634-  for ac_prog in cl
     1635+  for ac_prog in gnatgcc gcc cc
    12631636 do
    12641637   # Extract the first word of "$ac_prog", so it can be a program name with args.
    12651638 set dummy $ac_prog; ac_word=$2
    12661639-echo "$as_me:1434: checking for $ac_word" >&5
    1267 +echo "$as_me:1436: checking for $ac_word" >&5
     1640+echo "$as_me:1243: checking for $ac_word" >&5
    12681641 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    12691642 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
    12701643   echo $ECHO_N "(cached) $ECHO_C" >&6
    1271 @@ -1446,7 +1448,7 @@
     1644@@ -1446,7 +1255,7 @@
    12721645   test -z "$ac_dir" && ac_dir=.
    12731646   $as_executable_p "$ac_dir/$ac_word" || continue
    12741647 ac_cv_prog_ac_ct_CC="$ac_prog"
    12751648-echo "$as_me:1449: found $ac_dir/$ac_word" >&5
    1276 +echo "$as_me:1451: found $ac_dir/$ac_word" >&5
     1649+echo "$as_me:1258: found $ac_dir/$ac_word" >&5
    12771650 break
    12781651 done
    12791652 
    1280 @@ -1454,10 +1456,10 @@
     1653@@ -1454,10 +1263,10 @@
    12811654 fi
    12821655 ac_ct_CC=$ac_cv_prog_ac_ct_CC
    12831656 if test -n "$ac_ct_CC"; then
    12841657-  echo "$as_me:1457: result: $ac_ct_CC" >&5
    1285 +  echo "$as_me:1459: result: $ac_ct_CC" >&5
     1658+  echo "$as_me:1266: result: $ac_ct_CC" >&5
    12861659 echo "${ECHO_T}$ac_ct_CC" >&6
    12871660 else
    12881661-  echo "$as_me:1460: result: no" >&5
    1289 +  echo "$as_me:1462: result: no" >&5
     1662+  echo "$as_me:1269: result: no" >&5
    12901663 echo "${ECHO_T}no" >&6
    12911664 fi
    12921665 
    1293 @@ -1469,32 +1471,32 @@
    1294  
    1295  fi
    1296  
     1666@@ -1467,34 +1276,32 @@
     1667   CC=$ac_ct_CC
     1668 fi
     1669 
     1670-fi
     1671-
    12971672-test -z "$CC" && { { echo "$as_me:1472: error: no acceptable cc found in \$PATH" >&5
    1298 +test -z "$CC" && { { echo "$as_me:1474: error: no acceptable cc found in \$PATH" >&5
     1673+test -z "$CC" && { { echo "$as_me:1279: error: no acceptable cc found in \$PATH" >&5
    12991674 echo "$as_me: error: no acceptable cc found in \$PATH" >&2;}
    13001675    { (exit 1); exit 1; }; }
     
    13021677 # Provide some information about the compiler.
    13031678-echo "$as_me:1477:" \
    1304 +echo "$as_me:1479:" \
     1679+echo "$as_me:1284:" \
    13051680      "checking for C compiler version" >&5
    13061681 ac_compiler=`set X $ac_compile; echo $2`
    13071682-{ (eval echo "$as_me:1480: \"$ac_compiler --version </dev/null >&5\"") >&5
    1308 +{ (eval echo "$as_me:1482: \"$ac_compiler --version </dev/null >&5\"") >&5
     1683+{ (eval echo "$as_me:1287: \"$ac_compiler --version </dev/null >&5\"") >&5
    13091684   (eval $ac_compiler --version </dev/null >&5) 2>&5
    13101685   ac_status=$?
    13111686-  echo "$as_me:1483: \$? = $ac_status" >&5
    1312 +  echo "$as_me:1485: \$? = $ac_status" >&5
     1687+  echo "$as_me:1290: \$? = $ac_status" >&5
    13131688   (exit $ac_status); }
    13141689-{ (eval echo "$as_me:1485: \"$ac_compiler -v </dev/null >&5\"") >&5
    1315 +{ (eval echo "$as_me:1487: \"$ac_compiler -v </dev/null >&5\"") >&5
     1690+{ (eval echo "$as_me:1292: \"$ac_compiler -v </dev/null >&5\"") >&5
    13161691   (eval $ac_compiler -v </dev/null >&5) 2>&5
    13171692   ac_status=$?
    13181693-  echo "$as_me:1488: \$? = $ac_status" >&5
    1319 +  echo "$as_me:1490: \$? = $ac_status" >&5
     1694+  echo "$as_me:1295: \$? = $ac_status" >&5
    13201695   (exit $ac_status); }
    13211696-{ (eval echo "$as_me:1490: \"$ac_compiler -V </dev/null >&5\"") >&5
    1322 +{ (eval echo "$as_me:1492: \"$ac_compiler -V </dev/null >&5\"") >&5
     1697+{ (eval echo "$as_me:1297: \"$ac_compiler -V </dev/null >&5\"") >&5
    13231698   (eval $ac_compiler -V </dev/null >&5) 2>&5
    13241699   ac_status=$?
    13251700-  echo "$as_me:1493: \$? = $ac_status" >&5
    1326 +  echo "$as_me:1495: \$? = $ac_status" >&5
     1701+  echo "$as_me:1300: \$? = $ac_status" >&5
    13271702   (exit $ac_status); }
    13281703 
    13291704 cat >conftest.$ac_ext <<_ACEOF
    13301705-#line 1497 "configure"
    1331 +#line 1499 "configure"
     1706+#line 1304 "configure"
    13321707 #include "confdefs.h"
    13331708 
    13341709 int
    1335 @@ -1510,13 +1512,13 @@
     1710@@ -1510,13 +1317,13 @@
    13361711 # Try to create an executable without -o first, disregard a.out.
    13371712 # It will help us diagnose broken compilers, and finding out an intuition
    13381713 # of exeext.
    13391714-echo "$as_me:1513: checking for C compiler default output" >&5
    1340 +echo "$as_me:1515: checking for C compiler default output" >&5
     1715+echo "$as_me:1320: checking for C compiler default output" >&5
    13411716 echo $ECHO_N "checking for C compiler default output... $ECHO_C" >&6
    13421717 ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
    13431718-if { (eval echo "$as_me:1516: \"$ac_link_default\"") >&5
    1344 +if { (eval echo "$as_me:1518: \"$ac_link_default\"") >&5
     1719+if { (eval echo "$as_me:1323: \"$ac_link_default\"") >&5
    13451720   (eval $ac_link_default) 2>&5
    13461721   ac_status=$?
    13471722-  echo "$as_me:1519: \$? = $ac_status" >&5
    1348 +  echo "$as_me:1521: \$? = $ac_status" >&5
     1723+  echo "$as_me:1326: \$? = $ac_status" >&5
    13491724   (exit $ac_status); }; then
    13501725   # Find the output, starting from the most likely.  This scheme is
    13511726 # not robust to junk in `.', hence go to wildcards (a.*) only as a last
    1352 @@ -1539,34 +1541,34 @@
     1727@@ -1539,34 +1346,34 @@
    13531728 else
    13541729   echo "$as_me: failed program was:" >&5
    13551730 cat conftest.$ac_ext >&5
    13561731-{ { echo "$as_me:1542: error: C compiler cannot create executables" >&5
    1357 +{ { echo "$as_me:1544: error: C compiler cannot create executables" >&5
     1732+{ { echo "$as_me:1349: error: C compiler cannot create executables" >&5
    13581733 echo "$as_me: error: C compiler cannot create executables" >&2;}
    13591734    { (exit 77); exit 77; }; }
     
    13621737 ac_exeext=$ac_cv_exeext
    13631738-echo "$as_me:1548: result: $ac_file" >&5
    1364 +echo "$as_me:1550: result: $ac_file" >&5
     1739+echo "$as_me:1355: result: $ac_file" >&5
    13651740 echo "${ECHO_T}$ac_file" >&6
    13661741 
     
    13681743 # the compiler is broken, or we cross compile.
    13691744-echo "$as_me:1553: checking whether the C compiler works" >&5
    1370 +echo "$as_me:1555: checking whether the C compiler works" >&5
     1745+echo "$as_me:1360: checking whether the C compiler works" >&5
    13711746 echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6
    13721747 # FIXME: These cross compiler hacks should be removed for Autoconf 3.0
     
    13751750   if { ac_try='./$ac_file'
    13761751-  { (eval echo "$as_me:1559: \"$ac_try\"") >&5
    1377 +  { (eval echo "$as_me:1561: \"$ac_try\"") >&5
     1752+  { (eval echo "$as_me:1366: \"$ac_try\"") >&5
    13781753   (eval $ac_try) 2>&5
    13791754   ac_status=$?
    13801755-  echo "$as_me:1562: \$? = $ac_status" >&5
    1381 +  echo "$as_me:1564: \$? = $ac_status" >&5
     1756+  echo "$as_me:1369: \$? = $ac_status" >&5
    13821757   (exit $ac_status); }; }; then
    13831758     cross_compiling=no
     
    13871762     else
    13881763-       { { echo "$as_me:1569: error: cannot run C compiled programs.
    1389 +       { { echo "$as_me:1571: error: cannot run C compiled programs.
     1764+       { { echo "$as_me:1376: error: cannot run C compiled programs.
    13901765 If you meant to cross compile, use \`--host'." >&5
    13911766 echo "$as_me: error: cannot run C compiled programs.
    13921767 If you meant to cross compile, use \`--host'." >&2;}
    1393 @@ -1574,24 +1576,24 @@
     1768@@ -1574,24 +1381,24 @@
    13941769     fi
    13951770   fi
    13961771 fi
    13971772-echo "$as_me:1577: result: yes" >&5
    1398 +echo "$as_me:1579: result: yes" >&5
     1773+echo "$as_me:1384: result: yes" >&5
    13991774 echo "${ECHO_T}yes" >&6
    14001775 
     
    14041779 # the compiler is broken, or we cross compile.
    14051780-echo "$as_me:1584: checking whether we are cross compiling" >&5
    1406 +echo "$as_me:1586: checking whether we are cross compiling" >&5
     1781+echo "$as_me:1391: checking whether we are cross compiling" >&5
    14071782 echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6
    14081783-echo "$as_me:1586: result: $cross_compiling" >&5
    1409 +echo "$as_me:1588: result: $cross_compiling" >&5
     1784+echo "$as_me:1393: result: $cross_compiling" >&5
    14101785 echo "${ECHO_T}$cross_compiling" >&6
    14111786 
    14121787-echo "$as_me:1589: checking for executable suffix" >&5
    1413 +echo "$as_me:1591: checking for executable suffix" >&5
     1788+echo "$as_me:1396: checking for executable suffix" >&5
    14141789 echo $ECHO_N "checking for executable suffix... $ECHO_C" >&6
    14151790-if { (eval echo "$as_me:1591: \"$ac_link\"") >&5
    1416 +if { (eval echo "$as_me:1593: \"$ac_link\"") >&5
     1791+if { (eval echo "$as_me:1398: \"$ac_link\"") >&5
    14171792   (eval $ac_link) 2>&5
    14181793   ac_status=$?
    14191794-  echo "$as_me:1594: \$? = $ac_status" >&5
    1420 +  echo "$as_me:1596: \$? = $ac_status" >&5
     1795+  echo "$as_me:1401: \$? = $ac_status" >&5
    14211796   (exit $ac_status); }; then
    14221797   # If both `conftest.exe' and `conftest' are `present' (well, observable)
    14231798 # catch `conftest.exe'.  For instance with Cygwin, `ls conftest' will
    1424 @@ -1607,25 +1609,25 @@
     1799@@ -1607,25 +1414,25 @@
    14251800   esac
    14261801 done
    14271802 else
    14281803-  { { echo "$as_me:1610: error: cannot compute EXEEXT: cannot compile and link" >&5
    1429 +  { { echo "$as_me:1612: error: cannot compute EXEEXT: cannot compile and link" >&5
     1804+  { { echo "$as_me:1417: error: cannot compute EXEEXT: cannot compile and link" >&5
    14301805 echo "$as_me: error: cannot compute EXEEXT: cannot compile and link" >&2;}
    14311806    { (exit 1); exit 1; }; }
     
    14341809 rm -f conftest$ac_cv_exeext
    14351810-echo "$as_me:1616: result: $ac_cv_exeext" >&5
    1436 +echo "$as_me:1618: result: $ac_cv_exeext" >&5
     1811+echo "$as_me:1423: result: $ac_cv_exeext" >&5
    14371812 echo "${ECHO_T}$ac_cv_exeext" >&6
    14381813 
     
    14411816 ac_exeext=$EXEEXT
    14421817-echo "$as_me:1622: checking for object suffix" >&5
    1443 +echo "$as_me:1624: checking for object suffix" >&5
     1818+echo "$as_me:1429: checking for object suffix" >&5
    14441819 echo $ECHO_N "checking for object suffix... $ECHO_C" >&6
    14451820 if test "${ac_cv_objext+set}" = set; then
     
    14481823   cat >conftest.$ac_ext <<_ACEOF
    14491824-#line 1628 "configure"
    1450 +#line 1630 "configure"
     1825+#line 1435 "configure"
    14511826 #include "confdefs.h"
    14521827 
    14531828 int
    1454 @@ -1637,10 +1639,10 @@
     1829@@ -1637,10 +1444,10 @@
    14551830 }
    14561831 _ACEOF
    14571832 rm -f conftest.o conftest.obj
    14581833-if { (eval echo "$as_me:1640: \"$ac_compile\"") >&5
    1459 +if { (eval echo "$as_me:1642: \"$ac_compile\"") >&5
     1834+if { (eval echo "$as_me:1447: \"$ac_compile\"") >&5
    14601835   (eval $ac_compile) 2>&5
    14611836   ac_status=$?
    14621837-  echo "$as_me:1643: \$? = $ac_status" >&5
    1463 +  echo "$as_me:1645: \$? = $ac_status" >&5
     1838+  echo "$as_me:1450: \$? = $ac_status" >&5
    14641839   (exit $ac_status); }; then
    14651840   for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do
    14661841   case $ac_file in
    1467 @@ -1652,24 +1654,24 @@
     1842@@ -1652,24 +1459,24 @@
    14681843 else
    14691844   echo "$as_me: failed program was:" >&5
    14701845 cat conftest.$ac_ext >&5
    14711846-{ { echo "$as_me:1655: error: cannot compute OBJEXT: cannot compile" >&5
    1472 +{ { echo "$as_me:1657: error: cannot compute OBJEXT: cannot compile" >&5
     1847+{ { echo "$as_me:1462: error: cannot compute OBJEXT: cannot compile" >&5
    14731848 echo "$as_me: error: cannot compute OBJEXT: cannot compile" >&2;}
    14741849    { (exit 1); exit 1; }; }
     
    14781853 fi
    14791854-echo "$as_me:1662: result: $ac_cv_objext" >&5
    1480 +echo "$as_me:1664: result: $ac_cv_objext" >&5
     1855+echo "$as_me:1469: result: $ac_cv_objext" >&5
    14811856 echo "${ECHO_T}$ac_cv_objext" >&6
    14821857 OBJEXT=$ac_cv_objext
    14831858 ac_objext=$OBJEXT
    14841859-echo "$as_me:1666: checking whether we are using the GNU C compiler" >&5
    1485 +echo "$as_me:1668: checking whether we are using the GNU C compiler" >&5
     1860+echo "$as_me:1473: checking whether we are using the GNU C compiler" >&5
    14861861 echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6
    14871862 if test "${ac_cv_c_compiler_gnu+set}" = set; then
     
    14901865   cat >conftest.$ac_ext <<_ACEOF
    14911866-#line 1672 "configure"
    1492 +#line 1674 "configure"
     1867+#line 1479 "configure"
    14931868 #include "confdefs.h"
    14941869 
    14951870 int
    1496 @@ -1684,16 +1686,16 @@
     1871@@ -1684,16 +1491,16 @@
    14971872 }
    14981873 _ACEOF
    14991874 rm -f conftest.$ac_objext
    15001875-if { (eval echo "$as_me:1687: \"$ac_compile\"") >&5
    1501 +if { (eval echo "$as_me:1689: \"$ac_compile\"") >&5
     1876+if { (eval echo "$as_me:1494: \"$ac_compile\"") >&5
    15021877   (eval $ac_compile) 2>&5
    15031878   ac_status=$?
    15041879-  echo "$as_me:1690: \$? = $ac_status" >&5
    1505 +  echo "$as_me:1692: \$? = $ac_status" >&5
     1880+  echo "$as_me:1497: \$? = $ac_status" >&5
    15061881   (exit $ac_status); } &&
    15071882          { ac_try='test -s conftest.$ac_objext'
    15081883-  { (eval echo "$as_me:1693: \"$ac_try\"") >&5
    1509 +  { (eval echo "$as_me:1695: \"$ac_try\"") >&5
     1884+  { (eval echo "$as_me:1500: \"$ac_try\"") >&5
    15101885   (eval $ac_try) 2>&5
    15111886   ac_status=$?
    15121887-  echo "$as_me:1696: \$? = $ac_status" >&5
    1513 +  echo "$as_me:1698: \$? = $ac_status" >&5
     1888+  echo "$as_me:1503: \$? = $ac_status" >&5
    15141889   (exit $ac_status); }; }; then
    15151890   ac_compiler_gnu=yes
    15161891 else
    1517 @@ -1705,19 +1707,19 @@
     1892@@ -1705,19 +1512,19 @@
    15181893 ac_cv_c_compiler_gnu=$ac_compiler_gnu
    15191894 
    15201895 fi
    15211896-echo "$as_me:1708: result: $ac_cv_c_compiler_gnu" >&5
    1522 +echo "$as_me:1710: result: $ac_cv_c_compiler_gnu" >&5
     1897+echo "$as_me:1515: result: $ac_cv_c_compiler_gnu" >&5
    15231898 echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6
    15241899 GCC=`test $ac_compiler_gnu = yes && echo yes`
     
    15271902 CFLAGS="-g"
    15281903-echo "$as_me:1714: checking whether $CC accepts -g" >&5
    1529 +echo "$as_me:1716: checking whether $CC accepts -g" >&5
     1904+echo "$as_me:1521: checking whether $CC accepts -g" >&5
    15301905 echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6
    15311906 if test "${ac_cv_prog_cc_g+set}" = set; then
     
    15341909   cat >conftest.$ac_ext <<_ACEOF
    15351910-#line 1720 "configure"
    1536 +#line 1722 "configure"
     1911+#line 1527 "configure"
    15371912 #include "confdefs.h"
    15381913 
    15391914 int
    1540 @@ -1729,16 +1731,16 @@
     1915@@ -1729,16 +1536,16 @@
    15411916 }
    15421917 _ACEOF
    15431918 rm -f conftest.$ac_objext
    15441919-if { (eval echo "$as_me:1732: \"$ac_compile\"") >&5
    1545 +if { (eval echo "$as_me:1734: \"$ac_compile\"") >&5
     1920+if { (eval echo "$as_me:1539: \"$ac_compile\"") >&5
    15461921   (eval $ac_compile) 2>&5
    15471922   ac_status=$?
    15481923-  echo "$as_me:1735: \$? = $ac_status" >&5
    1549 +  echo "$as_me:1737: \$? = $ac_status" >&5
     1924+  echo "$as_me:1542: \$? = $ac_status" >&5
    15501925   (exit $ac_status); } &&
    15511926          { ac_try='test -s conftest.$ac_objext'
    15521927-  { (eval echo "$as_me:1738: \"$ac_try\"") >&5
    1553 +  { (eval echo "$as_me:1740: \"$ac_try\"") >&5
     1928+  { (eval echo "$as_me:1545: \"$ac_try\"") >&5
    15541929   (eval $ac_try) 2>&5
    15551930   ac_status=$?
    15561931-  echo "$as_me:1741: \$? = $ac_status" >&5
    1557 +  echo "$as_me:1743: \$? = $ac_status" >&5
     1932+  echo "$as_me:1548: \$? = $ac_status" >&5
    15581933   (exit $ac_status); }; }; then
    15591934   ac_cv_prog_cc_g=yes
    15601935 else
    1561 @@ -1748,7 +1750,7 @@
     1936@@ -1748,7 +1555,7 @@
    15621937 fi
    15631938 rm -f conftest.$ac_objext conftest.$ac_ext
    15641939 fi
    15651940-echo "$as_me:1751: result: $ac_cv_prog_cc_g" >&5
    1566 +echo "$as_me:1753: result: $ac_cv_prog_cc_g" >&5
     1941+echo "$as_me:1558: result: $ac_cv_prog_cc_g" >&5
    15671942 echo "${ECHO_T}$ac_cv_prog_cc_g" >&6
    15681943 if test "$ac_test_CFLAGS" = set; then
    15691944   CFLAGS=$ac_save_CFLAGS
    1570 @@ -1775,16 +1777,16 @@
     1945@@ -1775,16 +1582,16 @@
    15711946 #endif
    15721947 _ACEOF
    15731948 rm -f conftest.$ac_objext
    15741949-if { (eval echo "$as_me:1778: \"$ac_compile\"") >&5
    1575 +if { (eval echo "$as_me:1780: \"$ac_compile\"") >&5
     1950+if { (eval echo "$as_me:1585: \"$ac_compile\"") >&5
    15761951   (eval $ac_compile) 2>&5
    15771952   ac_status=$?
    15781953-  echo "$as_me:1781: \$? = $ac_status" >&5
    1579 +  echo "$as_me:1783: \$? = $ac_status" >&5
     1954+  echo "$as_me:1588: \$? = $ac_status" >&5
    15801955   (exit $ac_status); } &&
    15811956          { ac_try='test -s conftest.$ac_objext'
    15821957-  { (eval echo "$as_me:1784: \"$ac_try\"") >&5
    1583 +  { (eval echo "$as_me:1786: \"$ac_try\"") >&5
     1958+  { (eval echo "$as_me:1591: \"$ac_try\"") >&5
    15841959   (eval $ac_try) 2>&5
    15851960   ac_status=$?
    15861961-  echo "$as_me:1787: \$? = $ac_status" >&5
    1587 +  echo "$as_me:1789: \$? = $ac_status" >&5
     1962+  echo "$as_me:1594: \$? = $ac_status" >&5
    15881963   (exit $ac_status); }; }; then
    15891964   for ac_declaration in \
    15901965    ''\
    1591 @@ -1796,7 +1798,7 @@
     1966@@ -1796,7 +1603,7 @@
    15921967    'void exit (int);'
    15931968 do
    15941969   cat >conftest.$ac_ext <<_ACEOF
    15951970-#line 1799 "configure"
    1596 +#line 1801 "configure"
     1971+#line 1606 "configure"
    15971972 #include "confdefs.h"
    15981973 #include <stdlib.h>
    15991974 $ac_declaration
    1600 @@ -1809,16 +1811,16 @@
     1975@@ -1809,16 +1616,16 @@
    16011976 }
    16021977 _ACEOF
    16031978 rm -f conftest.$ac_objext
    16041979-if { (eval echo "$as_me:1812: \"$ac_compile\"") >&5
    1605 +if { (eval echo "$as_me:1814: \"$ac_compile\"") >&5
     1980+if { (eval echo "$as_me:1619: \"$ac_compile\"") >&5
    16061981   (eval $ac_compile) 2>&5
    16071982   ac_status=$?
    16081983-  echo "$as_me:1815: \$? = $ac_status" >&5
    1609 +  echo "$as_me:1817: \$? = $ac_status" >&5
     1984+  echo "$as_me:1622: \$? = $ac_status" >&5
    16101985   (exit $ac_status); } &&
    16111986          { ac_try='test -s conftest.$ac_objext'
    16121987-  { (eval echo "$as_me:1818: \"$ac_try\"") >&5
    1613 +  { (eval echo "$as_me:1820: \"$ac_try\"") >&5
     1988+  { (eval echo "$as_me:1625: \"$ac_try\"") >&5
    16141989   (eval $ac_try) 2>&5
    16151990   ac_status=$?
    16161991-  echo "$as_me:1821: \$? = $ac_status" >&5
    1617 +  echo "$as_me:1823: \$? = $ac_status" >&5
     1992+  echo "$as_me:1628: \$? = $ac_status" >&5
    16181993   (exit $ac_status); }; }; then
    16191994   :
    16201995 else
    1621 @@ -1828,7 +1830,7 @@
     1996@@ -1828,7 +1635,7 @@
    16221997 fi
    16231998 rm -f conftest.$ac_objext conftest.$ac_ext
    16241999   cat >conftest.$ac_ext <<_ACEOF
    16252000-#line 1831 "configure"
    1626 +#line 1833 "configure"
     2001+#line 1638 "configure"
    16272002 #include "confdefs.h"
    16282003 $ac_declaration
    16292004 int
    1630 @@ -1840,16 +1842,16 @@
     2005@@ -1840,16 +1647,16 @@
    16312006 }
    16322007 _ACEOF
    16332008 rm -f conftest.$ac_objext
    16342009-if { (eval echo "$as_me:1843: \"$ac_compile\"") >&5
    1635 +if { (eval echo "$as_me:1845: \"$ac_compile\"") >&5
     2010+if { (eval echo "$as_me:1650: \"$ac_compile\"") >&5
    16362011   (eval $ac_compile) 2>&5
    16372012   ac_status=$?
    16382013-  echo "$as_me:1846: \$? = $ac_status" >&5
    1639 +  echo "$as_me:1848: \$? = $ac_status" >&5
     2014+  echo "$as_me:1653: \$? = $ac_status" >&5
    16402015   (exit $ac_status); } &&
    16412016          { ac_try='test -s conftest.$ac_objext'
    16422017-  { (eval echo "$as_me:1849: \"$ac_try\"") >&5
    1643 +  { (eval echo "$as_me:1851: \"$ac_try\"") >&5
     2018+  { (eval echo "$as_me:1656: \"$ac_try\"") >&5
    16442019   (eval $ac_try) 2>&5
    16452020   ac_status=$?
    16462021-  echo "$as_me:1852: \$? = $ac_status" >&5
    1647 +  echo "$as_me:1854: \$? = $ac_status" >&5
     2022+  echo "$as_me:1659: \$? = $ac_status" >&5
    16482023   (exit $ac_status); }; }; then
    16492024   break
    16502025 else
    1651 @@ -1879,11 +1881,11 @@
     2026@@ -1879,11 +1686,11 @@
    16522027 
    16532028 GCC_VERSION=none
    16542029 if test "$GCC" = yes ; then
    16552030-       echo "$as_me:1882: checking version of $CC" >&5
    1656 +       echo "$as_me:1884: checking version of $CC" >&5
     2031+       echo "$as_me:1689: checking version of $CC" >&5
    16572032 echo $ECHO_N "checking version of $CC... $ECHO_C" >&6
    16582033        GCC_VERSION="`${CC} --version 2>/dev/null | sed -e '2,$d' -e 's/^.*(GCC) //' -e 's/^[^0-9.]*//' -e 's/[^0-9.].*//'`"
    16592034        test -z "$GCC_VERSION" && GCC_VERSION=unknown
    16602035-       echo "$as_me:1886: result: $GCC_VERSION" >&5
    1661 +       echo "$as_me:1888: result: $GCC_VERSION" >&5
     2036+       echo "$as_me:1693: result: $GCC_VERSION" >&5
    16622037 echo "${ECHO_T}$GCC_VERSION" >&6
    16632038 fi
    16642039 
    1665 @@ -1893,7 +1895,7 @@
     2040@@ -1893,7 +1700,7 @@
    16662041 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
    16672042 ac_compiler_gnu=$ac_cv_c_compiler_gnu
    16682043 ac_main_return=return
    16692044-echo "$as_me:1896: checking how to run the C preprocessor" >&5
    1670 +echo "$as_me:1898: checking how to run the C preprocessor" >&5
     2045+echo "$as_me:1703: checking how to run the C preprocessor" >&5
    16712046 echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6
    16722047 # On Suns, sometimes $CPP names a directory.
    16732048 if test -n "$CPP" && test -d "$CPP"; then
    1674 @@ -1914,18 +1916,18 @@
     2049@@ -1914,18 +1721,18 @@
    16752050   # On the NeXT, cc -E runs the code through the compiler's parser,
    16762051   # not just through cpp. "Syntax error" is here to catch this case.
    16772052   cat >conftest.$ac_ext <<_ACEOF
    16782053-#line 1917 "configure"
    1679 +#line 1919 "configure"
     2054+#line 1724 "configure"
    16802055 #include "confdefs.h"
    16812056 #include <assert.h>
     
    16832058 _ACEOF
    16842059-if { (eval echo "$as_me:1922: \"$ac_cpp conftest.$ac_ext\"") >&5
    1685 +if { (eval echo "$as_me:1924: \"$ac_cpp conftest.$ac_ext\"") >&5
     2060+if { (eval echo "$as_me:1729: \"$ac_cpp conftest.$ac_ext\"") >&5
    16862061   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
    16872062   ac_status=$?
     
    16902065   cat conftest.err >&5
    16912066-  echo "$as_me:1928: \$? = $ac_status" >&5
    1692 +  echo "$as_me:1930: \$? = $ac_status" >&5
     2067+  echo "$as_me:1735: \$? = $ac_status" >&5
    16932068   (exit $ac_status); } >/dev/null; then
    16942069   if test -s conftest.err; then
    16952070     ac_cpp_err=$ac_c_preproc_warn_flag
    1696 @@ -1948,17 +1950,17 @@
     2071@@ -1948,17 +1755,17 @@
    16972072   # OK, works on sane cases.  Now check whether non-existent headers
    16982073   # can be detected and how.
    16992074   cat >conftest.$ac_ext <<_ACEOF
    17002075-#line 1951 "configure"
    1701 +#line 1953 "configure"
     2076+#line 1758 "configure"
    17022077 #include "confdefs.h"
    17032078 #include <ac_nonexistent.h>
    17042079 _ACEOF
    17052080-if { (eval echo "$as_me:1955: \"$ac_cpp conftest.$ac_ext\"") >&5
    1706 +if { (eval echo "$as_me:1957: \"$ac_cpp conftest.$ac_ext\"") >&5
     2081+if { (eval echo "$as_me:1762: \"$ac_cpp conftest.$ac_ext\"") >&5
    17072082   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
    17082083   ac_status=$?
     
    17112086   cat conftest.err >&5
    17122087-  echo "$as_me:1961: \$? = $ac_status" >&5
    1713 +  echo "$as_me:1963: \$? = $ac_status" >&5
     2088+  echo "$as_me:1768: \$? = $ac_status" >&5
    17142089   (exit $ac_status); } >/dev/null; then
    17152090   if test -s conftest.err; then
    17162091     ac_cpp_err=$ac_c_preproc_warn_flag
    1717 @@ -1995,7 +1997,7 @@
     2092@@ -1995,7 +1802,7 @@
    17182093 else
    17192094   ac_cv_prog_CPP=$CPP
    17202095 fi
    17212096-echo "$as_me:1998: result: $CPP" >&5
    1722 +echo "$as_me:2000: result: $CPP" >&5
     2097+echo "$as_me:1805: result: $CPP" >&5
    17232098 echo "${ECHO_T}$CPP" >&6
    17242099 ac_preproc_ok=false
    17252100 for ac_c_preproc_warn_flag in '' yes
    1726 @@ -2005,18 +2007,18 @@
     2101@@ -2005,18 +1812,18 @@
    17272102   # On the NeXT, cc -E runs the code through the compiler's parser,
    17282103   # not just through cpp. "Syntax error" is here to catch this case.
    17292104   cat >conftest.$ac_ext <<_ACEOF
    17302105-#line 2008 "configure"
    1731 +#line 2010 "configure"
     2106+#line 1815 "configure"
    17322107 #include "confdefs.h"
    17332108 #include <assert.h>
     
    17352110 _ACEOF
    17362111-if { (eval echo "$as_me:2013: \"$ac_cpp conftest.$ac_ext\"") >&5
    1737 +if { (eval echo "$as_me:2015: \"$ac_cpp conftest.$ac_ext\"") >&5
     2112+if { (eval echo "$as_me:1820: \"$ac_cpp conftest.$ac_ext\"") >&5
    17382113   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
    17392114   ac_status=$?
     
    17422117   cat conftest.err >&5
    17432118-  echo "$as_me:2019: \$? = $ac_status" >&5
    1744 +  echo "$as_me:2021: \$? = $ac_status" >&5
     2119+  echo "$as_me:1826: \$? = $ac_status" >&5
    17452120   (exit $ac_status); } >/dev/null; then
    17462121   if test -s conftest.err; then
    17472122     ac_cpp_err=$ac_c_preproc_warn_flag
    1748 @@ -2039,17 +2041,17 @@
     2123@@ -2039,17 +1846,17 @@
    17492124   # OK, works on sane cases.  Now check whether non-existent headers
    17502125   # can be detected and how.
    17512126   cat >conftest.$ac_ext <<_ACEOF
    17522127-#line 2042 "configure"
    1753 +#line 2044 "configure"
     2128+#line 1849 "configure"
    17542129 #include "confdefs.h"
    17552130 #include <ac_nonexistent.h>
    17562131 _ACEOF
    17572132-if { (eval echo "$as_me:2046: \"$ac_cpp conftest.$ac_ext\"") >&5
    1758 +if { (eval echo "$as_me:2048: \"$ac_cpp conftest.$ac_ext\"") >&5
     2133+if { (eval echo "$as_me:1853: \"$ac_cpp conftest.$ac_ext\"") >&5
    17592134   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
    17602135   ac_status=$?
     
    17632138   cat conftest.err >&5
    17642139-  echo "$as_me:2052: \$? = $ac_status" >&5
    1765 +  echo "$as_me:2054: \$? = $ac_status" >&5
     2140+  echo "$as_me:1859: \$? = $ac_status" >&5
    17662141   (exit $ac_status); } >/dev/null; then
    17672142   if test -s conftest.err; then
    17682143     ac_cpp_err=$ac_c_preproc_warn_flag
    1769 @@ -2077,7 +2079,7 @@
     2144@@ -2077,7 +1884,7 @@
    17702145 if $ac_preproc_ok; then
    17712146   :
    17722147 else
    17732148-  { { echo "$as_me:2080: error: C preprocessor \"$CPP\" fails sanity check" >&5
    1774 +  { { echo "$as_me:2082: error: C preprocessor \"$CPP\" fails sanity check" >&5
     2149+  { { echo "$as_me:1887: error: C preprocessor \"$CPP\" fails sanity check" >&5
    17752150 echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check" >&2;}
    17762151    { (exit 1); exit 1; }; }
    17772152 fi
    1778 @@ -2090,14 +2092,14 @@
     2153@@ -2090,14 +1897,14 @@
    17792154 ac_main_return=return
    17802155 
    17812156 if test $ac_cv_c_compiler_gnu = yes; then
    17822157-    echo "$as_me:2093: checking whether $CC needs -traditional" >&5
    1783 +    echo "$as_me:2095: checking whether $CC needs -traditional" >&5
     2158+    echo "$as_me:1900: checking whether $CC needs -traditional" >&5
    17842159 echo $ECHO_N "checking whether $CC needs -traditional... $ECHO_C" >&6
    17852160 if test "${ac_cv_prog_gcc_traditional+set}" = set; then
     
    17892164   cat >conftest.$ac_ext <<_ACEOF
    17902165-#line 2100 "configure"
    1791 +#line 2102 "configure"
     2166+#line 1907 "configure"
    17922167 #include "confdefs.h"
    17932168 #include <sgtty.h>
    17942169 int Autoconf = TIOCGETP;
    1795 @@ -2112,7 +2114,7 @@
     2170@@ -2112,7 +1919,7 @@
    17962171 
    17972172   if test $ac_cv_prog_gcc_traditional = no; then
    17982173     cat >conftest.$ac_ext <<_ACEOF
    17992174-#line 2115 "configure"
    1800 +#line 2117 "configure"
     2175+#line 1922 "configure"
    18012176 #include "confdefs.h"
    18022177 #include <termio.h>
    18032178 int Autoconf = TCGETA;
    1804 @@ -2125,14 +2127,14 @@
     2179@@ -2125,14 +1932,14 @@
    18052180 
    18062181   fi
    18072182 fi
    18082183-echo "$as_me:2128: result: $ac_cv_prog_gcc_traditional" >&5
    1809 +echo "$as_me:2130: result: $ac_cv_prog_gcc_traditional" >&5
     2184+echo "$as_me:1935: result: $ac_cv_prog_gcc_traditional" >&5
    18102185 echo "${ECHO_T}$ac_cv_prog_gcc_traditional" >&6
    18112186   if test $ac_cv_prog_gcc_traditional = yes; then
     
    18152190 
    18162191-echo "$as_me:2135: checking whether $CC understands -c and -o together" >&5
    1817 +echo "$as_me:2137: checking whether $CC understands -c and -o together" >&5
     2192+echo "$as_me:1942: checking whether $CC understands -c and -o together" >&5
    18182193 echo $ECHO_N "checking whether $CC understands -c and -o together... $ECHO_C" >&6
    18192194 if test "${cf_cv_prog_CC_c_o+set}" = set; then
    18202195   echo $ECHO_N "(cached) $ECHO_C" >&6
    1821 @@ -2148,15 +2150,15 @@
     2196@@ -2148,15 +1955,15 @@
    18222197 # We do the test twice because some compilers refuse to overwrite an
    18232198 # existing .o file with -o, though they will create one.
    18242199 ac_try='$CC -c conftest.$ac_ext -o conftest2.$ac_objext >&5'
    18252200-if { (eval echo "$as_me:2151: \"$ac_try\"") >&5
    1826 +if { (eval echo "$as_me:2153: \"$ac_try\"") >&5
     2201+if { (eval echo "$as_me:1958: \"$ac_try\"") >&5
    18272202   (eval $ac_try) 2>&5
    18282203   ac_status=$?
    18292204-  echo "$as_me:2154: \$? = $ac_status" >&5
    1830 +  echo "$as_me:2156: \$? = $ac_status" >&5
     2205+  echo "$as_me:1961: \$? = $ac_status" >&5
    18312206   (exit $ac_status); } &&
    18322207-  test -f conftest2.$ac_objext && { (eval echo "$as_me:2156: \"$ac_try\"") >&5
    1833 +  test -f conftest2.$ac_objext && { (eval echo "$as_me:2158: \"$ac_try\"") >&5
     2208+  test -f conftest2.$ac_objext && { (eval echo "$as_me:1963: \"$ac_try\"") >&5
    18342209   (eval $ac_try) 2>&5
    18352210   ac_status=$?
    18362211-  echo "$as_me:2159: \$? = $ac_status" >&5
    1837 +  echo "$as_me:2161: \$? = $ac_status" >&5
     2212+  echo "$as_me:1966: \$? = $ac_status" >&5
    18382213   (exit $ac_status); };
    18392214 then
    18402215   eval cf_cv_prog_CC_c_o=yes
    1841 @@ -2167,19 +2169,19 @@
     2216@@ -2167,19 +1974,19 @@
    18422217 
    18432218 fi
    18442219 if test $cf_cv_prog_CC_c_o = yes; then
    18452220-  echo "$as_me:2170: result: yes" >&5
    1846 +  echo "$as_me:2172: result: yes" >&5
     2221+  echo "$as_me:1977: result: yes" >&5
    18472222 echo "${ECHO_T}yes" >&6
    18482223 else
    18492224-  echo "$as_me:2173: result: no" >&5
    1850 +  echo "$as_me:2175: result: no" >&5
     2225+  echo "$as_me:1980: result: no" >&5
    18512226 echo "${ECHO_T}no" >&6
    18522227 fi
    18532228 
    18542229-echo "$as_me:2177: checking for POSIXized ISC" >&5
    1855 +echo "$as_me:2179: checking for POSIXized ISC" >&5
     2230+echo "$as_me:1984: checking for POSIXized ISC" >&5
    18562231 echo $ECHO_N "checking for POSIXized ISC... $ECHO_C" >&6
    18572232 if test -d /etc/conf/kconfig.d &&
     
    18592234 then
    18602235-  echo "$as_me:2182: result: yes" >&5
    1861 +  echo "$as_me:2184: result: yes" >&5
     2236+  echo "$as_me:1989: result: yes" >&5
    18622237 echo "${ECHO_T}yes" >&6
    18632238   ISC=yes # If later tests want to check for ISC.
    18642239 
    1865 @@ -2193,12 +2195,115 @@
     2240@@ -2193,12 +2000,115 @@
    18662241     CC="$CC -Xp"
    18672242   fi
    18682243 else
    18692244-  echo "$as_me:2196: result: no" >&5
    1870 +  echo "$as_me:2198: result: no" >&5
     2245+  echo "$as_me:2003: result: no" >&5
    18712246 echo "${ECHO_T}no" >&6
    18722247   ISC=
     
    18802255+# into CC.  This will not help with broken scripts that wrap the compiler with
    18812256+# options, but eliminates a more common category of user confusion.
    1882 +echo "$as_me:2209: checking \$CC variable" >&5
     2257+echo "$as_me:2014: checking \$CC variable" >&5
    18832258+echo $ECHO_N "checking \$CC variable... $ECHO_C" >&6
    18842259+case "$CC" in #(vi
    18852260+*[\ \  ]-[IUD]*)
    1886 +       echo "$as_me:2213: result: broken" >&5
     2261+       echo "$as_me:2018: result: broken" >&5
    18872262+echo "${ECHO_T}broken" >&6
    1888 +       { echo "$as_me:2215: WARNING: your environment misuses the CC variable to hold CFLAGS/CPPFLAGS options" >&5
     2263+       { echo "$as_me:2020: WARNING: your environment misuses the CC variable to hold CFLAGS/CPPFLAGS options" >&5
    18892264+echo "$as_me: WARNING: your environment misuses the CC variable to hold CFLAGS/CPPFLAGS options" >&2;}
    18902265+       # humor him...
     
    19722347+       ;;
    19732348+*)
    1974 +       echo "$as_me:2301: result: ok" >&5
     2349+       echo "$as_me:2106: result: ok" >&5
    19752350+echo "${ECHO_T}ok" >&6
    19762351+       ;;
    19772352+esac
    19782353+
    1979 +echo "$as_me:2306: checking for ${CC:-cc} option to accept ANSI C" >&5
     2354+echo "$as_me:2111: checking for ${CC:-cc} option to accept ANSI C" >&5
    19802355 echo $ECHO_N "checking for ${CC:-cc} option to accept ANSI C... $ECHO_C" >&6
    19812356 if test "${cf_cv_ansi_cc+set}" = set; then
    19822357   echo $ECHO_N "(cached) $ECHO_C" >&6
    1983 @@ -2302,7 +2407,7 @@
     2358@@ -2302,7 +2212,7 @@
    19842359 fi
    19852360 
    19862361        cat >conftest.$ac_ext <<_ACEOF
    19872362-#line 2305 "configure"
    1988 +#line 2410 "configure"
     2363+#line 2215 "configure"
    19892364 #include "confdefs.h"
    19902365 
    19912366 #ifndef CC_HAS_PROTOS
    1992 @@ -2323,16 +2428,16 @@
     2367@@ -2323,16 +2233,16 @@
    19932368 }
    19942369 _ACEOF
    19952370 rm -f conftest.$ac_objext
    19962371-if { (eval echo "$as_me:2326: \"$ac_compile\"") >&5
    1997 +if { (eval echo "$as_me:2431: \"$ac_compile\"") >&5
     2372+if { (eval echo "$as_me:2236: \"$ac_compile\"") >&5
    19982373   (eval $ac_compile) 2>&5
    19992374   ac_status=$?
    20002375-  echo "$as_me:2329: \$? = $ac_status" >&5
    2001 +  echo "$as_me:2434: \$? = $ac_status" >&5
     2376+  echo "$as_me:2239: \$? = $ac_status" >&5
    20022377   (exit $ac_status); } &&
    20032378          { ac_try='test -s conftest.$ac_objext'
    20042379-  { (eval echo "$as_me:2332: \"$ac_try\"") >&5
    2005 +  { (eval echo "$as_me:2437: \"$ac_try\"") >&5
     2380+  { (eval echo "$as_me:2242: \"$ac_try\"") >&5
    20062381   (eval $ac_try) 2>&5
    20072382   ac_status=$?
    20082383-  echo "$as_me:2335: \$? = $ac_status" >&5
    2009 +  echo "$as_me:2440: \$? = $ac_status" >&5
     2384+  echo "$as_me:2245: \$? = $ac_status" >&5
    20102385   (exit $ac_status); }; }; then
    20112386   cf_cv_ansi_cc="$cf_arg"; break
    20122387 else
    2013 @@ -2345,7 +2450,7 @@
     2388@@ -2345,7 +2255,7 @@
    20142389 CPPFLAGS="$cf_save_CPPFLAGS"
    20152390 
    20162391 fi
    20172392-echo "$as_me:2348: result: $cf_cv_ansi_cc" >&5
    2018 +echo "$as_me:2453: result: $cf_cv_ansi_cc" >&5
     2393+echo "$as_me:2258: result: $cf_cv_ansi_cc" >&5
    20192394 echo "${ECHO_T}$cf_cv_ansi_cc" >&6
    20202395 
    20212396 if test "$cf_cv_ansi_cc" != "no"; then
    2022 @@ -2438,7 +2543,7 @@
     2397@@ -2438,7 +2348,7 @@
    20232398 fi
    20242399 
    20252400 if test "$cf_cv_ansi_cc" = "no"; then
    20262401-       { { echo "$as_me:2441: error: Your compiler does not appear to recognize prototypes.
    2027 +       { { echo "$as_me:2546: error: Your compiler does not appear to recognize prototypes.
     2402+       { { echo "$as_me:2351: error: Your compiler does not appear to recognize prototypes.
    20282403 You have the following choices:
    20292404        a. adjust your compiler options
    20302405        b. get an up-to-date compiler
    2031 @@ -2485,7 +2590,7 @@
     2406@@ -2485,7 +2395,7 @@
    20322407 do
    20332408   # Extract the first word of "$ac_prog", so it can be a program name with args.
    20342409 set dummy $ac_prog; ac_word=$2
    20352410-echo "$as_me:2488: checking for $ac_word" >&5
    2036 +echo "$as_me:2593: checking for $ac_word" >&5
     2411+echo "$as_me:2398: checking for $ac_word" >&5
    20372412 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    20382413 if test "${ac_cv_prog_AWK+set}" = set; then
    20392414   echo $ECHO_N "(cached) $ECHO_C" >&6
    2040 @@ -2500,7 +2605,7 @@
     2415@@ -2500,7 +2410,7 @@
    20412416   test -z "$ac_dir" && ac_dir=.
    20422417   $as_executable_p "$ac_dir/$ac_word" || continue
    20432418 ac_cv_prog_AWK="$ac_prog"
    20442419-echo "$as_me:2503: found $ac_dir/$ac_word" >&5
    2045 +echo "$as_me:2608: found $ac_dir/$ac_word" >&5
     2420+echo "$as_me:2413: found $ac_dir/$ac_word" >&5
    20462421 break
    20472422 done
    20482423 
    2049 @@ -2508,21 +2613,21 @@
     2424@@ -2508,21 +2418,21 @@
    20502425 fi
    20512426 AWK=$ac_cv_prog_AWK
    20522427 if test -n "$AWK"; then
    20532428-  echo "$as_me:2511: result: $AWK" >&5
    2054 +  echo "$as_me:2616: result: $AWK" >&5
     2429+  echo "$as_me:2421: result: $AWK" >&5
    20552430 echo "${ECHO_T}$AWK" >&6
    20562431 else
    20572432-  echo "$as_me:2514: result: no" >&5
    2058 +  echo "$as_me:2619: result: no" >&5
     2433+  echo "$as_me:2424: result: no" >&5
    20592434 echo "${ECHO_T}no" >&6
    20602435 fi
     
    20642439 
    20652440-test -z "$AWK" && { { echo "$as_me:2521: error: No awk program found" >&5
    2066 +test -z "$AWK" && { { echo "$as_me:2626: error: No awk program found" >&5
     2441+test -z "$AWK" && { { echo "$as_me:2431: error: No awk program found" >&5
    20672442 echo "$as_me: error: No awk program found" >&2;}
    20682443    { (exit 1); exit 1; }; }
    20692444 
    20702445-echo "$as_me:2525: checking for egrep" >&5
    2071 +echo "$as_me:2630: checking for egrep" >&5
     2446+echo "$as_me:2435: checking for egrep" >&5
    20722447 echo $ECHO_N "checking for egrep... $ECHO_C" >&6
    20732448 if test "${ac_cv_prog_egrep+set}" = set; then
    20742449   echo $ECHO_N "(cached) $ECHO_C" >&6
    2075 @@ -2532,11 +2637,11 @@
     2450@@ -2532,11 +2442,11 @@
    20762451     else ac_cv_prog_egrep='egrep'
    20772452     fi
    20782453 fi
    20792454-echo "$as_me:2535: result: $ac_cv_prog_egrep" >&5
    2080 +echo "$as_me:2640: result: $ac_cv_prog_egrep" >&5
     2455+echo "$as_me:2445: result: $ac_cv_prog_egrep" >&5
    20812456 echo "${ECHO_T}$ac_cv_prog_egrep" >&6
    20822457  EGREP=$ac_cv_prog_egrep
    20832458 
    20842459-test -z "$EGREP" && { { echo "$as_me:2539: error: No egrep program found" >&5
    2085 +test -z "$EGREP" && { { echo "$as_me:2644: error: No egrep program found" >&5
     2460+test -z "$EGREP" && { { echo "$as_me:2449: error: No egrep program found" >&5
    20862461 echo "$as_me: error: No egrep program found" >&2;}
    20872462    { (exit 1); exit 1; }; }
    20882463 
    2089 @@ -2552,7 +2657,7 @@
     2464@@ -2552,7 +2462,7 @@
    20902465 # AFS /usr/afsws/bin/install, which mishandles nonexistent args
    20912466 # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
    20922467 # ./install, which can be erroneously created by make from ./install.sh.
    20932468-echo "$as_me:2555: checking for a BSD compatible install" >&5
    2094 +echo "$as_me:2660: checking for a BSD compatible install" >&5
     2469+echo "$as_me:2465: checking for a BSD compatible install" >&5
    20952470 echo $ECHO_N "checking for a BSD compatible install... $ECHO_C" >&6
    20962471 if test -z "$INSTALL"; then
    20972472 if test "${ac_cv_path_install+set}" = set; then
    2098 @@ -2601,7 +2706,7 @@
     2473@@ -2601,7 +2511,7 @@
    20992474     INSTALL=$ac_install_sh
    21002475   fi
    21012476 fi
    21022477-echo "$as_me:2604: result: $INSTALL" >&5
    2103 +echo "$as_me:2709: result: $INSTALL" >&5
     2478+echo "$as_me:2514: result: $INSTALL" >&5
    21042479 echo "${ECHO_T}$INSTALL" >&6
    21052480 
    21062481 # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
    2107 @@ -2612,18 +2717,18 @@
     2482@@ -2612,18 +2522,18 @@
    21082483 
    21092484 test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
    21102485 
    21112486-echo "$as_me:2615: checking whether ln -s works" >&5
    2112 +echo "$as_me:2720: checking whether ln -s works" >&5
     2487+echo "$as_me:2525: checking whether ln -s works" >&5
    21132488 echo $ECHO_N "checking whether ln -s works... $ECHO_C" >&6
    21142489 LN_S=$as_ln_s
    21152490 if test "$LN_S" = "ln -s"; then
    21162491-  echo "$as_me:2619: result: yes" >&5
    2117 +  echo "$as_me:2724: result: yes" >&5
     2492+  echo "$as_me:2529: result: yes" >&5
    21182493 echo "${ECHO_T}yes" >&6
    21192494 else
    21202495-  echo "$as_me:2622: result: no, using $LN_S" >&5
    2121 +  echo "$as_me:2727: result: no, using $LN_S" >&5
     2496+  echo "$as_me:2532: result: no, using $LN_S" >&5
    21222497 echo "${ECHO_T}no, using $LN_S" >&6
    21232498 fi
    21242499 
    21252500-echo "$as_me:2626: checking if $LN_S -f options work" >&5
    2126 +echo "$as_me:2731: checking if $LN_S -f options work" >&5
     2501+echo "$as_me:2536: checking if $LN_S -f options work" >&5
    21272502 echo $ECHO_N "checking if $LN_S -f options work... $ECHO_C" >&6
    21282503 
    21292504 rm -f conf$$.src conf$$dst
    2130 @@ -2635,12 +2740,12 @@
     2505@@ -2635,12 +2545,12 @@
    21312506        cf_prog_ln_sf=no
    21322507 fi
    21332508 rm -f conf$$.dst conf$$src
    21342509-echo "$as_me:2638: result: $cf_prog_ln_sf" >&5
    2135 +echo "$as_me:2743: result: $cf_prog_ln_sf" >&5
     2510+echo "$as_me:2548: result: $cf_prog_ln_sf" >&5
    21362511 echo "${ECHO_T}$cf_prog_ln_sf" >&6
    21372512 
     
    21392514 
    21402515-echo "$as_me:2643: checking for long file names" >&5
    2141 +echo "$as_me:2748: checking for long file names" >&5
     2516+echo "$as_me:2553: checking for long file names" >&5
    21422517 echo $ECHO_N "checking for long file names... $ECHO_C" >&6
    21432518 if test "${ac_cv_sys_long_file_names+set}" = set; then
    21442519   echo $ECHO_N "(cached) $ECHO_C" >&6
    2145 @@ -2679,7 +2784,7 @@
     2520@@ -2679,7 +2589,7 @@
    21462521   rm -rf $ac_xdir 2>/dev/null
    21472522 done
    21482523 fi
    21492524-echo "$as_me:2682: result: $ac_cv_sys_long_file_names" >&5
    2150 +echo "$as_me:2787: result: $ac_cv_sys_long_file_names" >&5
     2525+echo "$as_me:2592: result: $ac_cv_sys_long_file_names" >&5
    21512526 echo "${ECHO_T}$ac_cv_sys_long_file_names" >&6
    21522527 if test $ac_cv_sys_long_file_names = yes; then
    21532528 
    2154 @@ -2691,7 +2796,7 @@
     2529@@ -2691,7 +2601,7 @@
    21552530 
    21562531 # if we find pkg-config, check if we should install the ".pc" files.
    21572532 
    21582533-echo "$as_me:2694: checking if you want to use pkg-config" >&5
    2159 +echo "$as_me:2799: checking if you want to use pkg-config" >&5
     2534+echo "$as_me:2604: checking if you want to use pkg-config" >&5
    21602535 echo $ECHO_N "checking if you want to use pkg-config... $ECHO_C" >&6
    21612536 
    21622537 # Check whether --with-pkg-config or --without-pkg-config was given.
    2163 @@ -2701,7 +2806,7 @@
     2538@@ -2701,7 +2611,7 @@
    21642539 else
    21652540   cf_pkg_config=yes
    21662541 fi;
    21672542-echo "$as_me:2704: result: $cf_pkg_config" >&5
    2168 +echo "$as_me:2809: result: $cf_pkg_config" >&5
     2543+echo "$as_me:2614: result: $cf_pkg_config" >&5
    21692544 echo "${ECHO_T}$cf_pkg_config" >&6
    21702545 
    21712546 case $cf_pkg_config in #(vi
    2172 @@ -2709,10 +2814,11 @@
     2547@@ -2709,10 +2619,11 @@
    21732548        PKG_CONFIG=none
    21742549        ;;
     
    21802555 set dummy ${ac_tool_prefix}pkg-config; ac_word=$2
    21812556-echo "$as_me:2715: checking for $ac_word" >&5
    2182 +echo "$as_me:2821: checking for $ac_word" >&5
     2557+echo "$as_me:2626: checking for $ac_word" >&5
    21832558 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    21842559 if test "${ac_cv_path_PKG_CONFIG+set}" = set; then
    21852560   echo $ECHO_N "(cached) $ECHO_C" >&6
    2186 @@ -2729,7 +2835,7 @@
     2561@@ -2729,7 +2640,7 @@
    21872562   test -z "$ac_dir" && ac_dir=.
    21882563   if $as_executable_p "$ac_dir/$ac_word"; then
    21892564    ac_cv_path_PKG_CONFIG="$ac_dir/$ac_word"
    21902565-   echo "$as_me:2732: found $ac_dir/$ac_word" >&5
    2191 +   echo "$as_me:2838: found $ac_dir/$ac_word" >&5
     2566+   echo "$as_me:2643: found $ac_dir/$ac_word" >&5
    21922567    break
    21932568 fi
    21942569 done
    2195 @@ -2740,10 +2846,10 @@
     2570@@ -2740,10 +2651,10 @@
    21962571 PKG_CONFIG=$ac_cv_path_PKG_CONFIG
    21972572 
    21982573 if test -n "$PKG_CONFIG"; then
    21992574-  echo "$as_me:2743: result: $PKG_CONFIG" >&5
    2200 +  echo "$as_me:2849: result: $PKG_CONFIG" >&5
     2575+  echo "$as_me:2654: result: $PKG_CONFIG" >&5
    22012576 echo "${ECHO_T}$PKG_CONFIG" >&6
    22022577 else
    22032578-  echo "$as_me:2746: result: no" >&5
    2204 +  echo "$as_me:2852: result: no" >&5
     2579+  echo "$as_me:2657: result: no" >&5
    22052580 echo "${ECHO_T}no" >&6
    22062581 fi
    22072582 
    2208 @@ -2752,7 +2858,7 @@
     2583@@ -2752,7 +2663,7 @@
    22092584   ac_pt_PKG_CONFIG=$PKG_CONFIG
    22102585   # Extract the first word of "pkg-config", so it can be a program name with args.
    22112586 set dummy pkg-config; ac_word=$2
    22122587-echo "$as_me:2755: checking for $ac_word" >&5
    2213 +echo "$as_me:2861: checking for $ac_word" >&5
     2588+echo "$as_me:2666: checking for $ac_word" >&5
    22142589 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    22152590 if test "${ac_cv_path_ac_pt_PKG_CONFIG+set}" = set; then
    22162591   echo $ECHO_N "(cached) $ECHO_C" >&6
    2217 @@ -2769,7 +2875,7 @@
     2592@@ -2769,7 +2680,7 @@
    22182593   test -z "$ac_dir" && ac_dir=.
    22192594   if $as_executable_p "$ac_dir/$ac_word"; then
    22202595    ac_cv_path_ac_pt_PKG_CONFIG="$ac_dir/$ac_word"
    22212596-   echo "$as_me:2772: found $ac_dir/$ac_word" >&5
    2222 +   echo "$as_me:2878: found $ac_dir/$ac_word" >&5
     2597+   echo "$as_me:2683: found $ac_dir/$ac_word" >&5
    22232598    break
    22242599 fi
    22252600 done
    2226 @@ -2781,10 +2887,10 @@
     2601@@ -2781,10 +2692,10 @@
    22272602 ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG
    22282603 
    22292604 if test -n "$ac_pt_PKG_CONFIG"; then
    22302605-  echo "$as_me:2784: result: $ac_pt_PKG_CONFIG" >&5
    2231 +  echo "$as_me:2890: result: $ac_pt_PKG_CONFIG" >&5
     2606+  echo "$as_me:2695: result: $ac_pt_PKG_CONFIG" >&5
    22322607 echo "${ECHO_T}$ac_pt_PKG_CONFIG" >&6
    22332608 else
    22342609-  echo "$as_me:2787: result: no" >&5
    2235 +  echo "$as_me:2893: result: no" >&5
     2610+  echo "$as_me:2698: result: no" >&5
    22362611 echo "${ECHO_T}no" >&6
    22372612 fi
    22382613 
    2239 @@ -2827,7 +2933,7 @@
     2614@@ -2815,7 +2726,7 @@
     2615   ;;
     2616 .[a-zA-Z]:[\\/]*) #(vi OS/2 EMX
     2617   ;;
     2618-.\${*prefix}*) #(vi
     2619+.\${*prefix}*|.\${*dir}*) #(vi
     2620   eval PKG_CONFIG="$PKG_CONFIG"
     2621   case ".$PKG_CONFIG" in #(vi
     2622   .NONE/*)
     2623@@ -2827,7 +2738,7 @@
    22402624   PKG_CONFIG=`echo $PKG_CONFIG | sed -e s%NONE%$cf_path_syntax%`
    22412625   ;;
    22422626 *)
    22432627-  { { echo "$as_me:2830: error: expected a pathname, not \"$PKG_CONFIG\"" >&5
    2244 +  { { echo "$as_me:2936: error: expected a pathname, not \"$PKG_CONFIG\"" >&5
     2628+  { { echo "$as_me:2741: error: expected a pathname, not \"$PKG_CONFIG\"" >&5
    22452629 echo "$as_me: error: expected a pathname, not \"$PKG_CONFIG\"" >&2;}
    22462630    { (exit 1); exit 1; }; }
    22472631   ;;
    2248 @@ -2836,15 +2942,51 @@
     2632@@ -2836,35 +2747,100 @@
    22492633 fi
    22502634 
     
    22522636-       echo "$as_me:2839: checking if we should install .pc files for $PKG_CONFIG" >&5
    22532637-echo $ECHO_N "checking if we should install .pc files for $PKG_CONFIG... $ECHO_C" >&6
    2254 +       echo "$as_me:2945: checking for $PKG_CONFIG library directory" >&5
     2638+       echo "$as_me:2750: checking for $PKG_CONFIG library directory" >&5
    22552639+echo $ECHO_N "checking for $PKG_CONFIG library directory... $ECHO_C" >&6
    22562640 
     
    22602644-       fi
    22612645-       PKG_CONFIG_LIBDIR=`echo "$PKG_CONFIG_LIBDIR" | sed -e 's/^://' -e 's/:.*//'`
     2646-       if test -n "$PKG_CONFIG_LIBDIR" && test -d "$PKG_CONFIG_LIBDIR" ; then
     2647-
     2648-# Check whether --enable-pc-files or --disable-pc-files was given.
     2649-if test "${enable_pc_files+set}" = set; then
     2650-  enableval="$enable_pc_files"
     2651-  enable_pc_files=$enableval
    22622652+# Check whether --with-pkg-config-libdir or --without-pkg-config-libdir was given.
    22632653+if test "${with_pkg_config_libdir+set}" = set; then
    22642654+  withval="$with_pkg_config_libdir"
    22652655+  PKG_CONFIG_LIBDIR=$withval
    2266 +else
     2656 else
     2657-  enable_pc_files=no
    22672658+  PKG_CONFIG_LIBDIR=yes
    2268 +fi;
    2269 +
     2659 fi;
     2660-               echo "$as_me:2856: result: $enable_pc_files" >&5
     2661-echo "${ECHO_T}$enable_pc_files" >&6
     2662-       else
     2663-               echo "$as_me:2859: result: no" >&5
     2664-echo "${ECHO_T}no" >&6
     2665-               { echo "$as_me:2861: WARNING: did not find library $PKG_CONFIG_LIBDIR" >&5
     2666-echo "$as_me: WARNING: did not find library $PKG_CONFIG_LIBDIR" >&2;}
     2667-               enable_pc_files=no
     2668-       fi
     2669-fi
     2670 
     2671-echo "$as_me:2867: checking if you want to build test-programs" >&5
    22702672+       case x$PKG_CONFIG_LIBDIR in #(vi
    22712673+       x/*) #(vi
     
    22942696+       esac
    22952697+
    2296 +       echo "$as_me:2982: result: $PKG_CONFIG_LIBDIR" >&5
     2698+       echo "$as_me:2787: result: $PKG_CONFIG_LIBDIR" >&5
    22972699+echo "${ECHO_T}$PKG_CONFIG_LIBDIR" >&6
    22982700+fi
    22992701+
    23002702+if test "$PKG_CONFIG" != none ; then
    2301         if test -n "$PKG_CONFIG_LIBDIR" && test -d "$PKG_CONFIG_LIBDIR" ; then
    2302 +               echo "$as_me:2988: checking if we should install .pc files for $PKG_CONFIG" >&5
     2703+       echo "$as_me:2792: checking if we should install .pc files for $PKG_CONFIG" >&5
    23032704+echo $ECHO_N "checking if we should install .pc files for $PKG_CONFIG... $ECHO_C" >&6
    2304  
    2305  # Check whether --enable-pc-files or --disable-pc-files was given.
    2306  if test "${enable_pc_files+set}" = set; then
    2307 @@ -2853,18 +2995,18 @@
    2308  else
    2309    enable_pc_files=no
    2310  fi;
    2311 -               echo "$as_me:2856: result: $enable_pc_files" >&5
    2312 +               echo "$as_me:2998: result: $enable_pc_files" >&5
    2313  echo "${ECHO_T}$enable_pc_files" >&6
    2314 -       else
    2315 -               echo "$as_me:2859: result: no" >&5
    2316 -echo "${ECHO_T}no" >&6
    2317 -               { echo "$as_me:2861: WARNING: did not find library $PKG_CONFIG_LIBDIR" >&5
    2318 -echo "$as_me: WARNING: did not find library $PKG_CONFIG_LIBDIR" >&2;}
    2319 +       elif test -z "$PKG_CONFIG_LIBDIR" || test "$PKG_CONFIG_LIBDIR" != no; then
    2320                 enable_pc_files=no
    2321 +               { echo "$as_me:3002: WARNING: did not find $PKG_CONFIG library" >&5
    2322 +echo "$as_me: WARNING: did not find $PKG_CONFIG library" >&2;}
    2323         fi
     2705+
     2706+# Check whether --enable-pc-files or --disable-pc-files was given.
     2707+if test "${enable_pc_files+set}" = set; then
     2708+  enableval="$enable_pc_files"
     2709+  enable_pc_files=$enableval
     2710+else
     2711+  enable_pc_files=no
     2712+fi;
     2713+       echo "$as_me:2802: result: $enable_pc_files" >&5
     2714+echo "${ECHO_T}$enable_pc_files" >&6
     2715+       if test "$enable_pc_files" != no
     2716+       then
     2717+
     2718+if test "x$prefix" != xNONE; then
     2719+  cf_path_syntax="$prefix"
     2720+else
     2721+  cf_path_syntax="$ac_default_prefix"
     2722+fi
     2723+
     2724+case ".$PKG_CONFIG_LIBDIR" in #(vi
     2725+.\$\(*\)*|.\'*\'*) #(vi
     2726+  ;;
     2727+..|./*|.\\*) #(vi
     2728+  ;;
     2729+.[a-zA-Z]:[\\/]*) #(vi OS/2 EMX
     2730+  ;;
     2731+.\${*prefix}*|.\${*dir}*) #(vi
     2732+  eval PKG_CONFIG_LIBDIR="$PKG_CONFIG_LIBDIR"
     2733+  case ".$PKG_CONFIG_LIBDIR" in #(vi
     2734+  .NONE/*)
     2735+    PKG_CONFIG_LIBDIR=`echo $PKG_CONFIG_LIBDIR | sed -e s%NONE%$cf_path_syntax%`
     2736+    ;;
     2737+  esac
     2738+  ;; #(vi
     2739+.no|.NONE/*)
     2740+  PKG_CONFIG_LIBDIR=`echo $PKG_CONFIG_LIBDIR | sed -e s%NONE%$cf_path_syntax%`
     2741+  ;;
     2742+*)
     2743+  { { echo "$as_me:2832: error: expected a pathname, not \"$PKG_CONFIG_LIBDIR\"" >&5
     2744+echo "$as_me: error: expected a pathname, not \"$PKG_CONFIG_LIBDIR\"" >&2;}
     2745+   { (exit 1); exit 1; }; }
     2746+  ;;
     2747+esac
     2748+
     2749+       fi
    23242750+else
    23252751+       enable_pc_files=no
    2326  fi
    2327  
    2328 -echo "$as_me:2867: checking if you want to build test-programs" >&5
    2329 +echo "$as_me:3009: checking if you want to build test-programs" >&5
     2752+fi
     2753+
     2754+echo "$as_me:2843: checking if you want to build test-programs" >&5
    23302755 echo $ECHO_N "checking if you want to build test-programs... $ECHO_C" >&6
    23312756 
    23322757 # Check whether --with-tests or --without-tests was given.
    2333 @@ -2874,10 +3016,10 @@
     2758@@ -2874,10 +2850,10 @@
    23342759 else
    23352760   cf_with_tests=yes
    23362761 fi;
    23372762-echo "$as_me:2877: result: $cf_with_tests" >&5
    2338 +echo "$as_me:3019: result: $cf_with_tests" >&5
     2763+echo "$as_me:2853: result: $cf_with_tests" >&5
    23392764 echo "${ECHO_T}$cf_with_tests" >&6
    23402765 
    23412766-echo "$as_me:2880: checking if we should assume mixed-case filenames" >&5
    2342 +echo "$as_me:3022: checking if we should assume mixed-case filenames" >&5
     2767+echo "$as_me:2856: checking if we should assume mixed-case filenames" >&5
    23432768 echo $ECHO_N "checking if we should assume mixed-case filenames... $ECHO_C" >&6
    23442769 
    23452770 # Check whether --enable-mixed-case or --disable-mixed-case was given.
    2346 @@ -2887,11 +3029,11 @@
     2771@@ -2887,11 +2863,11 @@
    23472772 else
    23482773   enable_mixedcase=auto
    23492774 fi;
    23502775-echo "$as_me:2890: result: $enable_mixedcase" >&5
    2351 +echo "$as_me:3032: result: $enable_mixedcase" >&5
     2776+echo "$as_me:2866: result: $enable_mixedcase" >&5
    23522777 echo "${ECHO_T}$enable_mixedcase" >&6
    23532778 if test "$enable_mixedcase" = "auto" ; then
    23542779 
    23552780-echo "$as_me:2894: checking if filesystem supports mixed-case filenames" >&5
    2356 +echo "$as_me:3036: checking if filesystem supports mixed-case filenames" >&5
     2781+echo "$as_me:2870: checking if filesystem supports mixed-case filenames" >&5
    23572782 echo $ECHO_N "checking if filesystem supports mixed-case filenames... $ECHO_C" >&6
    23582783 if test "${cf_cv_mixedcase+set}" = set; then
    23592784   echo $ECHO_N "(cached) $ECHO_C" >&6
    2360 @@ -2918,7 +3060,7 @@
     2785@@ -2918,7 +2894,7 @@
    23612786 fi
    23622787 
    23632788 fi
    23642789-echo "$as_me:2921: result: $cf_cv_mixedcase" >&5
    2365 +echo "$as_me:3063: result: $cf_cv_mixedcase" >&5
     2790+echo "$as_me:2897: result: $cf_cv_mixedcase" >&5
    23662791 echo "${ECHO_T}$cf_cv_mixedcase" >&6
    23672792 test "$cf_cv_mixedcase" = yes && cat >>confdefs.h <<\EOF
    23682793 #define MIXEDCASE_FILENAMES 1
    2369 @@ -2935,7 +3077,7 @@
     2794@@ -2935,7 +2911,7 @@
    23702795 fi
    23712796 
    23722797 # do this after mixed-case option (tags/TAGS is not as important as tic).
    23732798-echo "$as_me:2938: checking whether ${MAKE-make} sets \${MAKE}" >&5
    2374 +echo "$as_me:3080: checking whether ${MAKE-make} sets \${MAKE}" >&5
     2799+echo "$as_me:2914: checking whether ${MAKE-make} sets \${MAKE}" >&5
    23752800 echo $ECHO_N "checking whether ${MAKE-make} sets \${MAKE}... $ECHO_C" >&6
    23762801 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,./+-,__p_,'`
    23772802 if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then
    2378 @@ -2955,11 +3097,11 @@
     2803@@ -2955,11 +2931,11 @@
    23792804 rm -f conftest.make
    23802805 fi
    23812806 if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then
    23822807-  echo "$as_me:2958: result: yes" >&5
    2383 +  echo "$as_me:3100: result: yes" >&5
     2808+  echo "$as_me:2934: result: yes" >&5
    23842809 echo "${ECHO_T}yes" >&6
    23852810   SET_MAKE=
    23862811 else
    23872812-  echo "$as_me:2962: result: no" >&5
    2388 +  echo "$as_me:3104: result: no" >&5
     2813+  echo "$as_me:2938: result: no" >&5
    23892814 echo "${ECHO_T}no" >&6
    23902815   SET_MAKE="MAKE=${MAKE-make}"
    23912816 fi
    2392 @@ -2968,7 +3110,7 @@
     2817@@ -2968,7 +2944,7 @@
    23932818 do
    23942819   # Extract the first word of "$ac_prog", so it can be a program name with args.
    23952820 set dummy $ac_prog; ac_word=$2
    23962821-echo "$as_me:2971: checking for $ac_word" >&5
    2397 +echo "$as_me:3113: checking for $ac_word" >&5
     2822+echo "$as_me:2947: checking for $ac_word" >&5
    23982823 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    23992824 if test "${ac_cv_prog_CTAGS+set}" = set; then
    24002825   echo $ECHO_N "(cached) $ECHO_C" >&6
    2401 @@ -2983,7 +3125,7 @@
     2826@@ -2983,7 +2959,7 @@
    24022827   test -z "$ac_dir" && ac_dir=.
    24032828   $as_executable_p "$ac_dir/$ac_word" || continue
    24042829 ac_cv_prog_CTAGS="$ac_prog"
    24052830-echo "$as_me:2986: found $ac_dir/$ac_word" >&5
    2406 +echo "$as_me:3128: found $ac_dir/$ac_word" >&5
     2831+echo "$as_me:2962: found $ac_dir/$ac_word" >&5
    24072832 break
    24082833 done
    24092834 
    2410 @@ -2991,10 +3133,10 @@
     2835@@ -2991,10 +2967,10 @@
    24112836 fi
    24122837 CTAGS=$ac_cv_prog_CTAGS
    24132838 if test -n "$CTAGS"; then
    24142839-  echo "$as_me:2994: result: $CTAGS" >&5
    2415 +  echo "$as_me:3136: result: $CTAGS" >&5
     2840+  echo "$as_me:2970: result: $CTAGS" >&5
    24162841 echo "${ECHO_T}$CTAGS" >&6
    24172842 else
    24182843-  echo "$as_me:2997: result: no" >&5
    2419 +  echo "$as_me:3139: result: no" >&5
     2844+  echo "$as_me:2973: result: no" >&5
    24202845 echo "${ECHO_T}no" >&6
    24212846 fi
    24222847 
    2423 @@ -3005,7 +3147,7 @@
     2848@@ -3005,7 +2981,7 @@
    24242849 do
    24252850   # Extract the first word of "$ac_prog", so it can be a program name with args.
    24262851 set dummy $ac_prog; ac_word=$2
    24272852-echo "$as_me:3008: checking for $ac_word" >&5
    2428 +echo "$as_me:3150: checking for $ac_word" >&5
     2853+echo "$as_me:2984: checking for $ac_word" >&5
    24292854 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    24302855 if test "${ac_cv_prog_ETAGS+set}" = set; then
    24312856   echo $ECHO_N "(cached) $ECHO_C" >&6
    2432 @@ -3020,7 +3162,7 @@
     2857@@ -3020,7 +2996,7 @@
    24332858   test -z "$ac_dir" && ac_dir=.
    24342859   $as_executable_p "$ac_dir/$ac_word" || continue
    24352860 ac_cv_prog_ETAGS="$ac_prog"
    24362861-echo "$as_me:3023: found $ac_dir/$ac_word" >&5
    2437 +echo "$as_me:3165: found $ac_dir/$ac_word" >&5
     2862+echo "$as_me:2999: found $ac_dir/$ac_word" >&5
    24382863 break
    24392864 done
    24402865 
    2441 @@ -3028,10 +3170,10 @@
     2866@@ -3028,10 +3004,10 @@
    24422867 fi
    24432868 ETAGS=$ac_cv_prog_ETAGS
    24442869 if test -n "$ETAGS"; then
    24452870-  echo "$as_me:3031: result: $ETAGS" >&5
    2446 +  echo "$as_me:3173: result: $ETAGS" >&5
     2871+  echo "$as_me:3007: result: $ETAGS" >&5
    24472872 echo "${ECHO_T}$ETAGS" >&6
    24482873 else
    24492874-  echo "$as_me:3034: result: no" >&5
    2450 +  echo "$as_me:3176: result: no" >&5
     2875+  echo "$as_me:3010: result: no" >&5
    24512876 echo "${ECHO_T}no" >&6
    24522877 fi
    24532878 
    2454 @@ -3040,7 +3182,7 @@
     2879@@ -3040,7 +3016,7 @@
    24552880 
    24562881 # Extract the first word of "${CTAGS:-ctags}", so it can be a program name with args.
    24572882 set dummy ${CTAGS:-ctags}; ac_word=$2
    24582883-echo "$as_me:3043: checking for $ac_word" >&5
    2459 +echo "$as_me:3185: checking for $ac_word" >&5
     2884+echo "$as_me:3019: checking for $ac_word" >&5
    24602885 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    24612886 if test "${ac_cv_prog_MAKE_LOWER_TAGS+set}" = set; then
    24622887   echo $ECHO_N "(cached) $ECHO_C" >&6
    2463 @@ -3055,7 +3197,7 @@
     2888@@ -3055,7 +3031,7 @@
    24642889   test -z "$ac_dir" && ac_dir=.
    24652890   $as_executable_p "$ac_dir/$ac_word" || continue
    24662891 ac_cv_prog_MAKE_LOWER_TAGS="yes"
    24672892-echo "$as_me:3058: found $ac_dir/$ac_word" >&5
    2468 +echo "$as_me:3200: found $ac_dir/$ac_word" >&5
     2893+echo "$as_me:3034: found $ac_dir/$ac_word" >&5
    24692894 break
    24702895 done
    24712896 
    2472 @@ -3064,17 +3206,17 @@
     2897@@ -3064,17 +3040,17 @@
    24732898 fi
    24742899 MAKE_LOWER_TAGS=$ac_cv_prog_MAKE_LOWER_TAGS
    24752900 if test -n "$MAKE_LOWER_TAGS"; then
    24762901-  echo "$as_me:3067: result: $MAKE_LOWER_TAGS" >&5
    2477 +  echo "$as_me:3209: result: $MAKE_LOWER_TAGS" >&5
     2902+  echo "$as_me:3043: result: $MAKE_LOWER_TAGS" >&5
    24782903 echo "${ECHO_T}$MAKE_LOWER_TAGS" >&6
    24792904 else
    24802905-  echo "$as_me:3070: result: no" >&5
    2481 +  echo "$as_me:3212: result: no" >&5
     2906+  echo "$as_me:3046: result: no" >&5
    24822907 echo "${ECHO_T}no" >&6
    24832908 fi
     
    24872912 set dummy ${ETAGS:-etags}; ac_word=$2
    24882913-echo "$as_me:3077: checking for $ac_word" >&5
    2489 +echo "$as_me:3219: checking for $ac_word" >&5
     2914+echo "$as_me:3053: checking for $ac_word" >&5
    24902915 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    24912916 if test "${ac_cv_prog_MAKE_UPPER_TAGS+set}" = set; then
    24922917   echo $ECHO_N "(cached) $ECHO_C" >&6
    2493 @@ -3089,7 +3231,7 @@
     2918@@ -3089,7 +3065,7 @@
    24942919   test -z "$ac_dir" && ac_dir=.
    24952920   $as_executable_p "$ac_dir/$ac_word" || continue
    24962921 ac_cv_prog_MAKE_UPPER_TAGS="yes"
    24972922-echo "$as_me:3092: found $ac_dir/$ac_word" >&5
    2498 +echo "$as_me:3234: found $ac_dir/$ac_word" >&5
     2923+echo "$as_me:3068: found $ac_dir/$ac_word" >&5
    24992924 break
    25002925 done
    25012926 
    2502 @@ -3098,10 +3240,10 @@
     2927@@ -3098,10 +3074,10 @@
    25032928 fi
    25042929 MAKE_UPPER_TAGS=$ac_cv_prog_MAKE_UPPER_TAGS
    25052930 if test -n "$MAKE_UPPER_TAGS"; then
    25062931-  echo "$as_me:3101: result: $MAKE_UPPER_TAGS" >&5
    2507 +  echo "$as_me:3243: result: $MAKE_UPPER_TAGS" >&5
     2932+  echo "$as_me:3077: result: $MAKE_UPPER_TAGS" >&5
    25082933 echo "${ECHO_T}$MAKE_UPPER_TAGS" >&6
    25092934 else
    25102935-  echo "$as_me:3104: result: no" >&5
    2511 +  echo "$as_me:3246: result: no" >&5
     2936+  echo "$as_me:3080: result: no" >&5
    25122937 echo "${ECHO_T}no" >&6
    25132938 fi
    25142939 
    2515 @@ -3121,7 +3263,7 @@
     2940@@ -3121,7 +3097,7 @@
    25162941        MAKE_LOWER_TAGS="#"
    25172942 fi
    25182943 
    25192944-echo "$as_me:3124: checking for makeflags variable" >&5
    2520 +echo "$as_me:3266: checking for makeflags variable" >&5
     2945+echo "$as_me:3100: checking for makeflags variable" >&5
    25212946 echo $ECHO_N "checking for makeflags variable... $ECHO_C" >&6
    25222947 if test "${cf_cv_makeflags+set}" = set; then
    25232948   echo $ECHO_N "(cached) $ECHO_C" >&6
    2524 @@ -3155,13 +3297,13 @@
     2949@@ -3155,13 +3131,13 @@
    25252950        rm -f cf_makeflags.tmp
    25262951 
    25272952 fi
    25282953-echo "$as_me:3158: result: $cf_cv_makeflags" >&5
    2529 +echo "$as_me:3300: result: $cf_cv_makeflags" >&5
     2954+echo "$as_me:3134: result: $cf_cv_makeflags" >&5
    25302955 echo "${ECHO_T}$cf_cv_makeflags" >&6
    25312956 
     
    25342959 set dummy ${ac_tool_prefix}ranlib; ac_word=$2
    25352960-echo "$as_me:3164: checking for $ac_word" >&5
    2536 +echo "$as_me:3306: checking for $ac_word" >&5
     2961+echo "$as_me:3140: checking for $ac_word" >&5
    25372962 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    25382963 if test "${ac_cv_prog_RANLIB+set}" = set; then
    25392964   echo $ECHO_N "(cached) $ECHO_C" >&6
    2540 @@ -3176,7 +3318,7 @@
     2965@@ -3176,7 +3152,7 @@
    25412966   test -z "$ac_dir" && ac_dir=.
    25422967   $as_executable_p "$ac_dir/$ac_word" || continue
    25432968 ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
    25442969-echo "$as_me:3179: found $ac_dir/$ac_word" >&5
    2545 +echo "$as_me:3321: found $ac_dir/$ac_word" >&5
     2970+echo "$as_me:3155: found $ac_dir/$ac_word" >&5
    25462971 break
    25472972 done
    25482973 
    2549 @@ -3184,10 +3326,10 @@
     2974@@ -3184,10 +3160,10 @@
    25502975 fi
    25512976 RANLIB=$ac_cv_prog_RANLIB
    25522977 if test -n "$RANLIB"; then
    25532978-  echo "$as_me:3187: result: $RANLIB" >&5
    2554 +  echo "$as_me:3329: result: $RANLIB" >&5
     2979+  echo "$as_me:3163: result: $RANLIB" >&5
    25552980 echo "${ECHO_T}$RANLIB" >&6
    25562981 else
    25572982-  echo "$as_me:3190: result: no" >&5
    2558 +  echo "$as_me:3332: result: no" >&5
     2983+  echo "$as_me:3166: result: no" >&5
    25592984 echo "${ECHO_T}no" >&6
    25602985 fi
    25612986 
    2562 @@ -3196,7 +3338,7 @@
     2987@@ -3196,7 +3172,7 @@
    25632988   ac_ct_RANLIB=$RANLIB
    25642989   # Extract the first word of "ranlib", so it can be a program name with args.
    25652990 set dummy ranlib; ac_word=$2
    25662991-echo "$as_me:3199: checking for $ac_word" >&5
    2567 +echo "$as_me:3341: checking for $ac_word" >&5
     2992+echo "$as_me:3175: checking for $ac_word" >&5
    25682993 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    25692994 if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then
    25702995   echo $ECHO_N "(cached) $ECHO_C" >&6
    2571 @@ -3211,7 +3353,7 @@
     2996@@ -3211,7 +3187,7 @@
    25722997   test -z "$ac_dir" && ac_dir=.
    25732998   $as_executable_p "$ac_dir/$ac_word" || continue
    25742999 ac_cv_prog_ac_ct_RANLIB="ranlib"
    25753000-echo "$as_me:3214: found $ac_dir/$ac_word" >&5
    2576 +echo "$as_me:3356: found $ac_dir/$ac_word" >&5
     3001+echo "$as_me:3190: found $ac_dir/$ac_word" >&5
    25773002 break
    25783003 done
    25793004 
    2580 @@ -3220,10 +3362,10 @@
     3005@@ -3220,10 +3196,10 @@
    25813006 fi
    25823007 ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB
    25833008 if test -n "$ac_ct_RANLIB"; then
    25843009-  echo "$as_me:3223: result: $ac_ct_RANLIB" >&5
    2585 +  echo "$as_me:3365: result: $ac_ct_RANLIB" >&5
     3010+  echo "$as_me:3199: result: $ac_ct_RANLIB" >&5
    25863011 echo "${ECHO_T}$ac_ct_RANLIB" >&6
    25873012 else
    25883013-  echo "$as_me:3226: result: no" >&5
    2589 +  echo "$as_me:3368: result: no" >&5
     3014+  echo "$as_me:3202: result: no" >&5
    25903015 echo "${ECHO_T}no" >&6
    25913016 fi
    25923017 
    2593 @@ -3235,7 +3377,7 @@
     3018@@ -3235,7 +3211,7 @@
    25943019 if test -n "$ac_tool_prefix"; then
    25953020   # Extract the first word of "${ac_tool_prefix}ld", so it can be a program name with args.
    25963021 set dummy ${ac_tool_prefix}ld; ac_word=$2
    25973022-echo "$as_me:3238: checking for $ac_word" >&5
    2598 +echo "$as_me:3380: checking for $ac_word" >&5
     3023+echo "$as_me:3214: checking for $ac_word" >&5
    25993024 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    26003025 if test "${ac_cv_prog_LD+set}" = set; then
    26013026   echo $ECHO_N "(cached) $ECHO_C" >&6
    2602 @@ -3250,7 +3392,7 @@
     3027@@ -3250,7 +3226,7 @@
    26033028   test -z "$ac_dir" && ac_dir=.
    26043029   $as_executable_p "$ac_dir/$ac_word" || continue
    26053030 ac_cv_prog_LD="${ac_tool_prefix}ld"
    26063031-echo "$as_me:3253: found $ac_dir/$ac_word" >&5
    2607 +echo "$as_me:3395: found $ac_dir/$ac_word" >&5
     3032+echo "$as_me:3229: found $ac_dir/$ac_word" >&5
    26083033 break
    26093034 done
    26103035 
    2611 @@ -3258,10 +3400,10 @@
     3036@@ -3258,10 +3234,10 @@
    26123037 fi
    26133038 LD=$ac_cv_prog_LD
    26143039 if test -n "$LD"; then
    26153040-  echo "$as_me:3261: result: $LD" >&5
    2616 +  echo "$as_me:3403: result: $LD" >&5
     3041+  echo "$as_me:3237: result: $LD" >&5
    26173042 echo "${ECHO_T}$LD" >&6
    26183043 else
    26193044-  echo "$as_me:3264: result: no" >&5
    2620 +  echo "$as_me:3406: result: no" >&5
     3045+  echo "$as_me:3240: result: no" >&5
    26213046 echo "${ECHO_T}no" >&6
    26223047 fi
    26233048 
    2624 @@ -3270,7 +3412,7 @@
     3049@@ -3270,7 +3246,7 @@
    26253050   ac_ct_LD=$LD
    26263051   # Extract the first word of "ld", so it can be a program name with args.
    26273052 set dummy ld; ac_word=$2
    26283053-echo "$as_me:3273: checking for $ac_word" >&5
    2629 +echo "$as_me:3415: checking for $ac_word" >&5
     3054+echo "$as_me:3249: checking for $ac_word" >&5
    26303055 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    26313056 if test "${ac_cv_prog_ac_ct_LD+set}" = set; then
    26323057   echo $ECHO_N "(cached) $ECHO_C" >&6
    2633 @@ -3285,7 +3427,7 @@
     3058@@ -3285,7 +3261,7 @@
    26343059   test -z "$ac_dir" && ac_dir=.
    26353060   $as_executable_p "$ac_dir/$ac_word" || continue
    26363061 ac_cv_prog_ac_ct_LD="ld"
    26373062-echo "$as_me:3288: found $ac_dir/$ac_word" >&5
    2638 +echo "$as_me:3430: found $ac_dir/$ac_word" >&5
     3063+echo "$as_me:3264: found $ac_dir/$ac_word" >&5
    26393064 break
    26403065 done
    26413066 
    2642 @@ -3294,10 +3436,10 @@
     3067@@ -3294,10 +3270,10 @@
    26433068 fi
    26443069 ac_ct_LD=$ac_cv_prog_ac_ct_LD
    26453070 if test -n "$ac_ct_LD"; then
    26463071-  echo "$as_me:3297: result: $ac_ct_LD" >&5
    2647 +  echo "$as_me:3439: result: $ac_ct_LD" >&5
     3072+  echo "$as_me:3273: result: $ac_ct_LD" >&5
    26483073 echo "${ECHO_T}$ac_ct_LD" >&6
    26493074 else
    26503075-  echo "$as_me:3300: result: no" >&5
    2651 +  echo "$as_me:3442: result: no" >&5
     3076+  echo "$as_me:3276: result: no" >&5
    26523077 echo "${ECHO_T}no" >&6
    26533078 fi
    26543079 
    2655 @@ -3309,7 +3451,7 @@
     3080@@ -3309,7 +3285,7 @@
    26563081 if test -n "$ac_tool_prefix"; then
    26573082   # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
    26583083 set dummy ${ac_tool_prefix}ar; ac_word=$2
    26593084-echo "$as_me:3312: checking for $ac_word" >&5
    2660 +echo "$as_me:3454: checking for $ac_word" >&5
     3085+echo "$as_me:3288: checking for $ac_word" >&5
    26613086 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    26623087 if test "${ac_cv_prog_AR+set}" = set; then
    26633088   echo $ECHO_N "(cached) $ECHO_C" >&6
    2664 @@ -3324,7 +3466,7 @@
     3089@@ -3324,7 +3300,7 @@
    26653090   test -z "$ac_dir" && ac_dir=.
    26663091   $as_executable_p "$ac_dir/$ac_word" || continue
    26673092 ac_cv_prog_AR="${ac_tool_prefix}ar"
    26683093-echo "$as_me:3327: found $ac_dir/$ac_word" >&5
    2669 +echo "$as_me:3469: found $ac_dir/$ac_word" >&5
     3094+echo "$as_me:3303: found $ac_dir/$ac_word" >&5
    26703095 break
    26713096 done
    26723097 
    2673 @@ -3332,10 +3474,10 @@
     3098@@ -3332,10 +3308,10 @@
    26743099 fi
    26753100 AR=$ac_cv_prog_AR
    26763101 if test -n "$AR"; then
    26773102-  echo "$as_me:3335: result: $AR" >&5
    2678 +  echo "$as_me:3477: result: $AR" >&5
     3103+  echo "$as_me:3311: result: $AR" >&5
    26793104 echo "${ECHO_T}$AR" >&6
    26803105 else
    26813106-  echo "$as_me:3338: result: no" >&5
    2682 +  echo "$as_me:3480: result: no" >&5
     3107+  echo "$as_me:3314: result: no" >&5
    26833108 echo "${ECHO_T}no" >&6
    26843109 fi
    26853110 
    2686 @@ -3344,7 +3486,7 @@
     3111@@ -3344,7 +3320,7 @@
    26873112   ac_ct_AR=$AR
    26883113   # Extract the first word of "ar", so it can be a program name with args.
    26893114 set dummy ar; ac_word=$2
    26903115-echo "$as_me:3347: checking for $ac_word" >&5
    2691 +echo "$as_me:3489: checking for $ac_word" >&5
     3116+echo "$as_me:3323: checking for $ac_word" >&5
    26923117 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    26933118 if test "${ac_cv_prog_ac_ct_AR+set}" = set; then
    26943119   echo $ECHO_N "(cached) $ECHO_C" >&6
    2695 @@ -3359,7 +3501,7 @@
     3120@@ -3359,7 +3335,7 @@
    26963121   test -z "$ac_dir" && ac_dir=.
    26973122   $as_executable_p "$ac_dir/$ac_word" || continue
    26983123 ac_cv_prog_ac_ct_AR="ar"
    26993124-echo "$as_me:3362: found $ac_dir/$ac_word" >&5
    2700 +echo "$as_me:3504: found $ac_dir/$ac_word" >&5
     3125+echo "$as_me:3338: found $ac_dir/$ac_word" >&5
    27013126 break
    27023127 done
    27033128 
    2704 @@ -3368,10 +3510,10 @@
     3129@@ -3368,10 +3344,10 @@
    27053130 fi
    27063131 ac_ct_AR=$ac_cv_prog_ac_ct_AR
    27073132 if test -n "$ac_ct_AR"; then
    27083133-  echo "$as_me:3371: result: $ac_ct_AR" >&5
    2709 +  echo "$as_me:3513: result: $ac_ct_AR" >&5
     3134+  echo "$as_me:3347: result: $ac_ct_AR" >&5
    27103135 echo "${ECHO_T}$ac_ct_AR" >&6
    27113136 else
    27123137-  echo "$as_me:3374: result: no" >&5
    2713 +  echo "$as_me:3516: result: no" >&5
     3138+  echo "$as_me:3350: result: no" >&5
    27143139 echo "${ECHO_T}no" >&6
    27153140 fi
    27163141 
    2717 @@ -3383,7 +3525,7 @@
     3142@@ -3383,7 +3359,7 @@
    27183143 if test -n "$ac_tool_prefix"; then
    27193144   # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
    27203145 set dummy ${ac_tool_prefix}ar; ac_word=$2
    27213146-echo "$as_me:3386: checking for $ac_word" >&5
    2722 +echo "$as_me:3528: checking for $ac_word" >&5
     3147+echo "$as_me:3362: checking for $ac_word" >&5
    27233148 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    27243149 if test "${ac_cv_prog_AR+set}" = set; then
    27253150   echo $ECHO_N "(cached) $ECHO_C" >&6
    2726 @@ -3398,7 +3540,7 @@
     3151@@ -3398,7 +3374,7 @@
    27273152   test -z "$ac_dir" && ac_dir=.
    27283153   $as_executable_p "$ac_dir/$ac_word" || continue
    27293154 ac_cv_prog_AR="${ac_tool_prefix}ar"
    27303155-echo "$as_me:3401: found $ac_dir/$ac_word" >&5
    2731 +echo "$as_me:3543: found $ac_dir/$ac_word" >&5
     3156+echo "$as_me:3377: found $ac_dir/$ac_word" >&5
    27323157 break
    27333158 done
    27343159 
    2735 @@ -3406,10 +3548,10 @@
     3160@@ -3406,10 +3382,10 @@
    27363161 fi
    27373162 AR=$ac_cv_prog_AR
    27383163 if test -n "$AR"; then
    27393164-  echo "$as_me:3409: result: $AR" >&5
    2740 +  echo "$as_me:3551: result: $AR" >&5
     3165+  echo "$as_me:3385: result: $AR" >&5
    27413166 echo "${ECHO_T}$AR" >&6
    27423167 else
    27433168-  echo "$as_me:3412: result: no" >&5
    2744 +  echo "$as_me:3554: result: no" >&5
     3169+  echo "$as_me:3388: result: no" >&5
    27453170 echo "${ECHO_T}no" >&6
    27463171 fi
    27473172 
    2748 @@ -3418,7 +3560,7 @@
     3173@@ -3418,7 +3394,7 @@
    27493174   ac_ct_AR=$AR
    27503175   # Extract the first word of "ar", so it can be a program name with args.
    27513176 set dummy ar; ac_word=$2
    27523177-echo "$as_me:3421: checking for $ac_word" >&5
    2753 +echo "$as_me:3563: checking for $ac_word" >&5
     3178+echo "$as_me:3397: checking for $ac_word" >&5
    27543179 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    27553180 if test "${ac_cv_prog_ac_ct_AR+set}" = set; then
    27563181   echo $ECHO_N "(cached) $ECHO_C" >&6
    2757 @@ -3433,7 +3575,7 @@
     3182@@ -3433,7 +3409,7 @@
    27583183   test -z "$ac_dir" && ac_dir=.
    27593184   $as_executable_p "$ac_dir/$ac_word" || continue
    27603185 ac_cv_prog_ac_ct_AR="ar"
    27613186-echo "$as_me:3436: found $ac_dir/$ac_word" >&5
    2762 +echo "$as_me:3578: found $ac_dir/$ac_word" >&5
     3187+echo "$as_me:3412: found $ac_dir/$ac_word" >&5
    27633188 break
    27643189 done
    27653190 
    2766 @@ -3442,10 +3584,10 @@
     3191@@ -3442,10 +3418,10 @@
    27673192 fi
    27683193 ac_ct_AR=$ac_cv_prog_ac_ct_AR
    27693194 if test -n "$ac_ct_AR"; then
    27703195-  echo "$as_me:3445: result: $ac_ct_AR" >&5
    2771 +  echo "$as_me:3587: result: $ac_ct_AR" >&5
     3196+  echo "$as_me:3421: result: $ac_ct_AR" >&5
    27723197 echo "${ECHO_T}$ac_ct_AR" >&6
    27733198 else
    27743199-  echo "$as_me:3448: result: no" >&5
    2775 +  echo "$as_me:3590: result: no" >&5
     3200+  echo "$as_me:3424: result: no" >&5
    27763201 echo "${ECHO_T}no" >&6
    27773202 fi
    27783203 
    2779 @@ -3454,7 +3596,7 @@
     3204@@ -3454,7 +3430,7 @@
    27803205   AR="$ac_cv_prog_AR"
    27813206 fi
    27823207 
    27833208-echo "$as_me:3457: checking for options to update archives" >&5
    2784 +echo "$as_me:3599: checking for options to update archives" >&5
     3209+echo "$as_me:3433: checking for options to update archives" >&5
    27853210 echo $ECHO_N "checking for options to update archives... $ECHO_C" >&6
    27863211 if test "${cf_cv_ar_flags+set}" = set; then
    27873212   echo $ECHO_N "(cached) $ECHO_C" >&6
    2788 @@ -3477,13 +3619,13 @@
     3213@@ -3477,13 +3453,13 @@
    27893214                rm -f conftest.a
    27903215 
    27913216                cat >conftest.$ac_ext <<EOF
    27923217-#line 3480 "configure"
    2793 +#line 3622 "configure"
     3218+#line 3456 "configure"
    27943219 int    testdata[3] = { 123, 456, 789 };
    27953220 EOF
    27963221-               if { (eval echo "$as_me:3483: \"$ac_compile\"") >&5
    2797 +               if { (eval echo "$as_me:3625: \"$ac_compile\"") >&5
     3222+               if { (eval echo "$as_me:3459: \"$ac_compile\"") >&5
    27983223   (eval $ac_compile) 2>&5
    27993224   ac_status=$?
    28003225-  echo "$as_me:3486: \$? = $ac_status" >&5
    2801 +  echo "$as_me:3628: \$? = $ac_status" >&5
     3226+  echo "$as_me:3462: \$? = $ac_status" >&5
    28023227   (exit $ac_status); } ; then
    28033228                        echo "$AR $ARFLAGS $cf_ar_flags conftest.a conftest.$ac_cv_objext" >&5
    28043229                        $AR $ARFLAGS $cf_ar_flags conftest.a conftest.$ac_cv_objext 2>&5 1>/dev/null
    2805 @@ -3494,7 +3636,7 @@
     3230@@ -3494,7 +3470,7 @@
    28063231                else
    28073232                        test -n "$verbose" && echo "    cannot compile test-program" 1>&6
    28083233 
    28093234-echo "${as_me:-configure}:3497: testing cannot compile test-program ..." 1>&5
    2810 +echo "${as_me:-configure}:3639: testing cannot compile test-program ..." 1>&5
     3235+echo "${as_me:-configure}:3473: testing cannot compile test-program ..." 1>&5
    28113236 
    28123237                        break
    28133238                fi
    2814 @@ -3502,7 +3644,7 @@
     3239@@ -3502,7 +3478,7 @@
    28153240        rm -f conftest.a conftest.$ac_ext conftest.$ac_cv_objext
    28163241 
    28173242 fi
    28183243-echo "$as_me:3505: result: $cf_cv_ar_flags" >&5
    2819 +echo "$as_me:3647: result: $cf_cv_ar_flags" >&5
     3244+echo "$as_me:3481: result: $cf_cv_ar_flags" >&5
    28203245 echo "${ECHO_T}$cf_cv_ar_flags" >&6
    28213246 
    28223247 if test -n "$ARFLAGS" ; then
    2823 @@ -3513,7 +3655,7 @@
     3248@@ -3513,7 +3489,7 @@
    28243249        ARFLAGS=$cf_cv_ar_flags
    28253250 fi
    28263251 
    28273252-echo "$as_me:3516: checking if you have specified an install-prefix" >&5
    2828 +echo "$as_me:3658: checking if you have specified an install-prefix" >&5
     3253+echo "$as_me:3492: checking if you have specified an install-prefix" >&5
    28293254 echo $ECHO_N "checking if you have specified an install-prefix... $ECHO_C" >&6
    28303255 
    28313256 # Check whether --with-install-prefix or --without-install-prefix was given.
    2832 @@ -3526,7 +3668,7 @@
     3257@@ -3526,7 +3502,7 @@
    28333258                ;;
    28343259        esac
    28353260 fi;
    28363261-echo "$as_me:3529: result: $DESTDIR" >&5
    2837 +echo "$as_me:3671: result: $DESTDIR" >&5
     3262+echo "$as_me:3505: result: $DESTDIR" >&5
    28383263 echo "${ECHO_T}$DESTDIR" >&6
    28393264 
    28403265 ###############################################################################
    2841 @@ -3554,7 +3696,7 @@
     3266@@ -3554,7 +3530,7 @@
    28423267 do
    28433268   # Extract the first word of "$ac_prog", so it can be a program name with args.
    28443269 set dummy $ac_prog; ac_word=$2
    28453270-echo "$as_me:3557: checking for $ac_word" >&5
    2846 +echo "$as_me:3699: checking for $ac_word" >&5
     3271+echo "$as_me:3533: checking for $ac_word" >&5
    28473272 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    28483273 if test "${ac_cv_prog_BUILD_CC+set}" = set; then
    28493274   echo $ECHO_N "(cached) $ECHO_C" >&6
    2850 @@ -3569,7 +3711,7 @@
     3275@@ -3569,7 +3545,7 @@
    28513276   test -z "$ac_dir" && ac_dir=.
    28523277   $as_executable_p "$ac_dir/$ac_word" || continue
    28533278 ac_cv_prog_BUILD_CC="$ac_prog"
    28543279-echo "$as_me:3572: found $ac_dir/$ac_word" >&5
    2855 +echo "$as_me:3714: found $ac_dir/$ac_word" >&5
     3280+echo "$as_me:3548: found $ac_dir/$ac_word" >&5
    28563281 break
    28573282 done
    28583283 
    2859 @@ -3577,10 +3719,10 @@
     3284@@ -3577,10 +3553,10 @@
    28603285 fi
    28613286 BUILD_CC=$ac_cv_prog_BUILD_CC
    28623287 if test -n "$BUILD_CC"; then
    28633288-  echo "$as_me:3580: result: $BUILD_CC" >&5
    2864 +  echo "$as_me:3722: result: $BUILD_CC" >&5
     3289+  echo "$as_me:3556: result: $BUILD_CC" >&5
    28653290 echo "${ECHO_T}$BUILD_CC" >&6
    28663291 else
    28673292-  echo "$as_me:3583: result: no" >&5
    2868 +  echo "$as_me:3725: result: no" >&5
     3293+  echo "$as_me:3559: result: no" >&5
    28693294 echo "${ECHO_T}no" >&6
    28703295 fi
    28713296 
    2872 @@ -3588,12 +3730,12 @@
     3297@@ -3588,12 +3564,12 @@
    28733298 done
    28743299 
    28753300 fi;
    28763301-       echo "$as_me:3591: checking for native build C compiler" >&5
    2877 +       echo "$as_me:3733: checking for native build C compiler" >&5
     3302+       echo "$as_me:3567: checking for native build C compiler" >&5
    28783303 echo $ECHO_N "checking for native build C compiler... $ECHO_C" >&6
    28793304-       echo "$as_me:3593: result: $BUILD_CC" >&5
    2880 +       echo "$as_me:3735: result: $BUILD_CC" >&5
     3305+       echo "$as_me:3569: result: $BUILD_CC" >&5
    28813306 echo "${ECHO_T}$BUILD_CC" >&6
    28823307 
    28833308-       echo "$as_me:3596: checking for native build C preprocessor" >&5
    2884 +       echo "$as_me:3738: checking for native build C preprocessor" >&5
     3309+       echo "$as_me:3572: checking for native build C preprocessor" >&5
    28853310 echo $ECHO_N "checking for native build C preprocessor... $ECHO_C" >&6
    28863311 
    28873312 # Check whether --with-build-cpp or --without-build-cpp was given.
    2888 @@ -3603,10 +3745,10 @@
     3313@@ -3603,10 +3579,10 @@
    28893314 else
    28903315   BUILD_CPP='${BUILD_CC} -E'
    28913316 fi;
    28923317-       echo "$as_me:3606: result: $BUILD_CPP" >&5
    2893 +       echo "$as_me:3748: result: $BUILD_CPP" >&5
     3318+       echo "$as_me:3582: result: $BUILD_CPP" >&5
    28943319 echo "${ECHO_T}$BUILD_CPP" >&6
    28953320 
    28963321-       echo "$as_me:3609: checking for native build C flags" >&5
    2897 +       echo "$as_me:3751: checking for native build C flags" >&5
     3322+       echo "$as_me:3585: checking for native build C flags" >&5
    28983323 echo $ECHO_N "checking for native build C flags... $ECHO_C" >&6
    28993324 
    29003325 # Check whether --with-build-cflags or --without-build-cflags was given.
    2901 @@ -3614,10 +3756,10 @@
     3326@@ -3614,10 +3590,10 @@
    29023327   withval="$with_build_cflags"
    29033328   BUILD_CFLAGS="$withval"
    29043329 fi;
    29053330-       echo "$as_me:3617: result: $BUILD_CFLAGS" >&5
    2906 +       echo "$as_me:3759: result: $BUILD_CFLAGS" >&5
     3331+       echo "$as_me:3593: result: $BUILD_CFLAGS" >&5
    29073332 echo "${ECHO_T}$BUILD_CFLAGS" >&6
    29083333 
    29093334-       echo "$as_me:3620: checking for native build C preprocessor-flags" >&5
    2910 +       echo "$as_me:3762: checking for native build C preprocessor-flags" >&5
     3335+       echo "$as_me:3596: checking for native build C preprocessor-flags" >&5
    29113336 echo $ECHO_N "checking for native build C preprocessor-flags... $ECHO_C" >&6
    29123337 
    29133338 # Check whether --with-build-cppflags or --without-build-cppflags was given.
    2914 @@ -3625,10 +3767,10 @@
     3339@@ -3625,10 +3601,10 @@
    29153340   withval="$with_build_cppflags"
    29163341   BUILD_CPPFLAGS="$withval"
    29173342 fi;
    29183343-       echo "$as_me:3628: result: $BUILD_CPPFLAGS" >&5
    2919 +       echo "$as_me:3770: result: $BUILD_CPPFLAGS" >&5
     3344+       echo "$as_me:3604: result: $BUILD_CPPFLAGS" >&5
    29203345 echo "${ECHO_T}$BUILD_CPPFLAGS" >&6
    29213346 
    29223347-       echo "$as_me:3631: checking for native build linker-flags" >&5
    2923 +       echo "$as_me:3773: checking for native build linker-flags" >&5
     3348+       echo "$as_me:3607: checking for native build linker-flags" >&5
    29243349 echo $ECHO_N "checking for native build linker-flags... $ECHO_C" >&6
    29253350 
    29263351 # Check whether --with-build-ldflags or --without-build-ldflags was given.
    2927 @@ -3636,10 +3778,10 @@
     3352@@ -3636,10 +3612,10 @@
    29283353   withval="$with_build_ldflags"
    29293354   BUILD_LDFLAGS="$withval"
    29303355 fi;
    29313356-       echo "$as_me:3639: result: $BUILD_LDFLAGS" >&5
    2932 +       echo "$as_me:3781: result: $BUILD_LDFLAGS" >&5
     3357+       echo "$as_me:3615: result: $BUILD_LDFLAGS" >&5
    29333358 echo "${ECHO_T}$BUILD_LDFLAGS" >&6
    29343359 
    29353360-       echo "$as_me:3642: checking for native build linker-libraries" >&5
    2936 +       echo "$as_me:3784: checking for native build linker-libraries" >&5
     3361+       echo "$as_me:3618: checking for native build linker-libraries" >&5
    29373362 echo $ECHO_N "checking for native build linker-libraries... $ECHO_C" >&6
    29383363 
    29393364 # Check whether --with-build-libs or --without-build-libs was given.
    2940 @@ -3647,7 +3789,7 @@
     3365@@ -3647,7 +3623,7 @@
    29413366   withval="$with_build_libs"
    29423367   BUILD_LIBS="$withval"
    29433368 fi;
    29443369-       echo "$as_me:3650: result: $BUILD_LIBS" >&5
    2945 +       echo "$as_me:3792: result: $BUILD_LIBS" >&5
     3370+       echo "$as_me:3626: result: $BUILD_LIBS" >&5
    29463371 echo "${ECHO_T}$BUILD_LIBS" >&6
    29473372 
    29483373        # this assumes we're on Unix.
    2949 @@ -3657,7 +3799,7 @@
     3374@@ -3657,7 +3633,7 @@
    29503375        : ${BUILD_CC:='${CC}'}
    29513376 
    29523377        if ( test "$BUILD_CC" = "$CC" || test "$BUILD_CC" = '${CC}' ) ; then
    29533378-               { { echo "$as_me:3660: error: Cross-build requires two compilers.
    2954 +               { { echo "$as_me:3802: error: Cross-build requires two compilers.
     3379+               { { echo "$as_me:3636: error: Cross-build requires two compilers.
    29553380 Use --with-build-cc to specify the native compiler." >&5
    29563381 echo "$as_me: error: Cross-build requires two compilers.
    29573382 Use --with-build-cc to specify the native compiler." >&2;}
    2958 @@ -3682,7 +3824,7 @@
     3383@@ -3682,7 +3658,7 @@
    29593384 ### shared, for example.
    29603385 cf_list_models=""
    29613386 
    29623387-echo "$as_me:3685: checking if you want to build shared C-objects" >&5
    2963 +echo "$as_me:3827: checking if you want to build shared C-objects" >&5
     3388+echo "$as_me:3661: checking if you want to build shared C-objects" >&5
    29643389 echo $ECHO_N "checking if you want to build shared C-objects... $ECHO_C" >&6
    29653390 
    29663391 # Check whether --with-shared or --without-shared was given.
    2967 @@ -3692,27 +3834,27 @@
     3392@@ -3692,27 +3668,27 @@
    29683393 else
    29693394   with_shared=no
    29703395 fi;
    29713396-echo "$as_me:3695: result: $with_shared" >&5
    2972 +echo "$as_me:3837: result: $with_shared" >&5
     3397+echo "$as_me:3671: result: $with_shared" >&5
    29733398 echo "${ECHO_T}$with_shared" >&6
    29743399 test "$with_shared" = "yes" && cf_list_models="$cf_list_models shared"
    29753400 
    29763401-echo "$as_me:3699: checking for specified models" >&5
    2977 +echo "$as_me:3841: checking for specified models" >&5
     3402+echo "$as_me:3675: checking for specified models" >&5
    29783403 echo $ECHO_N "checking for specified models... $ECHO_C" >&6
    29793404 test -z "$cf_list_models" && cf_list_models=normal
    29803405-echo "$as_me:3702: result: $cf_list_models" >&5
    2981 +echo "$as_me:3844: result: $cf_list_models" >&5
     3406+echo "$as_me:3678: result: $cf_list_models" >&5
    29823407 echo "${ECHO_T}$cf_list_models" >&6
    29833408 
     
    29853410 ### up test-applications.
    29863411-echo "$as_me:3707: checking for default model" >&5
    2987 +echo "$as_me:3849: checking for default model" >&5
     3412+echo "$as_me:3683: checking for default model" >&5
    29883413 echo $ECHO_N "checking for default model... $ECHO_C" >&6
    29893414 DFT_LWR_MODEL=`echo "$cf_list_models" | $AWK '{print $1}'`
    29903415-echo "$as_me:3710: result: $DFT_LWR_MODEL" >&5
    2991 +echo "$as_me:3852: result: $DFT_LWR_MODEL" >&5
     3416+echo "$as_me:3686: result: $DFT_LWR_MODEL" >&5
    29923417 echo "${ECHO_T}$DFT_LWR_MODEL" >&6
    29933418 
     
    29953420 
    29963421-echo "$as_me:3715: checking for specific curses-directory" >&5
    2997 +echo "$as_me:3857: checking for specific curses-directory" >&5
     3422+echo "$as_me:3691: checking for specific curses-directory" >&5
    29983423 echo $ECHO_N "checking for specific curses-directory... $ECHO_C" >&6
    29993424 
    30003425 # Check whether --with-curses-dir or --without-curses-dir was given.
    3001 @@ -3722,7 +3864,7 @@
     3426@@ -3722,7 +3698,7 @@
    30023427 else
    30033428   cf_cv_curses_dir=no
    30043429 fi;
    30053430-echo "$as_me:3725: result: $cf_cv_curses_dir" >&5
    3006 +echo "$as_me:3867: result: $cf_cv_curses_dir" >&5
     3431+echo "$as_me:3701: result: $cf_cv_curses_dir" >&5
    30073432 echo "${ECHO_T}$cf_cv_curses_dir" >&6
    30083433 
    30093434 if ( test -n "$cf_cv_curses_dir" && test "$cf_cv_curses_dir" != "no" )
    3010 @@ -3753,7 +3895,7 @@
     3435@@ -3741,7 +3717,7 @@
     3436   ;;
     3437 .[a-zA-Z]:[\\/]*) #(vi OS/2 EMX
     3438   ;;
     3439-.\${*prefix}*) #(vi
     3440+.\${*prefix}*|.\${*dir}*) #(vi
     3441   eval withval="$withval"
     3442   case ".$withval" in #(vi
     3443   .NONE/*)
     3444@@ -3753,7 +3729,7 @@
    30113445   withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%`
    30123446   ;;
    30133447 *)
    30143448-  { { echo "$as_me:3756: error: expected a pathname, not \"$withval\"" >&5
    3015 +  { { echo "$as_me:3898: error: expected a pathname, not \"$withval\"" >&5
     3449+  { { echo "$as_me:3732: error: expected a pathname, not \"$withval\"" >&5
    30163450 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;}
    30173451    { (exit 1); exit 1; }; }
    30183452   ;;
    3019 @@ -3786,7 +3928,7 @@
     3453@@ -3786,7 +3762,7 @@
    30203454                          cf_save_CPPFLAGS=$CPPFLAGS
    30213455                          CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
    30223456                          cat >conftest.$ac_ext <<_ACEOF
    30233457-#line 3789 "configure"
    3024 +#line 3931 "configure"
     3458+#line 3765 "configure"
    30253459 #include "confdefs.h"
    30263460 #include <stdio.h>
    30273461 int
    3028 @@ -3798,16 +3940,16 @@
     3462@@ -3798,16 +3774,16 @@
    30293463 }
    30303464 _ACEOF
    30313465 rm -f conftest.$ac_objext
    30323466-if { (eval echo "$as_me:3801: \"$ac_compile\"") >&5
    3033 +if { (eval echo "$as_me:3943: \"$ac_compile\"") >&5
     3467+if { (eval echo "$as_me:3777: \"$ac_compile\"") >&5
    30343468   (eval $ac_compile) 2>&5
    30353469   ac_status=$?
    30363470-  echo "$as_me:3804: \$? = $ac_status" >&5
    3037 +  echo "$as_me:3946: \$? = $ac_status" >&5
     3471+  echo "$as_me:3780: \$? = $ac_status" >&5
    30383472   (exit $ac_status); } &&
    30393473          { ac_try='test -s conftest.$ac_objext'
    30403474-  { (eval echo "$as_me:3807: \"$ac_try\"") >&5
    3041 +  { (eval echo "$as_me:3949: \"$ac_try\"") >&5
     3475+  { (eval echo "$as_me:3783: \"$ac_try\"") >&5
    30423476   (eval $ac_try) 2>&5
    30433477   ac_status=$?
    30443478-  echo "$as_me:3810: \$? = $ac_status" >&5
    3045 +  echo "$as_me:3952: \$? = $ac_status" >&5
     3479+  echo "$as_me:3786: \$? = $ac_status" >&5
    30463480   (exit $ac_status); }; }; then
    30473481   :
    30483482 else
    3049 @@ -3824,7 +3966,7 @@
     3483@@ -3824,7 +3800,7 @@
    30503484                if test "$cf_have_incdir" = no ; then
    30513485                  test -n "$verbose" && echo "  adding $cf_add_incdir to include-path" 1>&6
    30523486 
    30533487-echo "${as_me:-configure}:3827: testing adding $cf_add_incdir to include-path ..." 1>&5
    3054 +echo "${as_me:-configure}:3969: testing adding $cf_add_incdir to include-path ..." 1>&5
     3488+echo "${as_me:-configure}:3803: testing adding $cf_add_incdir to include-path ..." 1>&5
    30553489 
    30563490                  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
    30573491 
    3058 @@ -3858,7 +4000,7 @@
     3492@@ -3858,7 +3834,7 @@
    30593493       if test "$cf_have_libdir" = no ; then
    30603494         test -n "$verbose" && echo "   adding $cf_add_libdir to library-path" 1>&6
    30613495 
    30623496-echo "${as_me:-configure}:3861: testing adding $cf_add_libdir to library-path ..." 1>&5
    3063 +echo "${as_me:-configure}:4003: testing adding $cf_add_libdir to library-path ..." 1>&5
     3497+echo "${as_me:-configure}:3837: testing adding $cf_add_libdir to library-path ..." 1>&5
    30643498 
    30653499         LDFLAGS="-L$cf_add_libdir $LDFLAGS"
    30663500       fi
    3067 @@ -3869,7 +4011,7 @@
     3501@@ -3869,7 +3845,7 @@
    30683502        fi
    30693503 fi
    30703504 
    30713505-echo "$as_me:3872: checking if you want wide-character code" >&5
    3072 +echo "$as_me:4014: checking if you want wide-character code" >&5
     3506+echo "$as_me:3848: checking if you want wide-character code" >&5
    30733507 echo $ECHO_N "checking if you want wide-character code... $ECHO_C" >&6
    30743508 
    30753509 # Check whether --enable-widec or --disable-widec was given.
    3076 @@ -3879,11 +4021,11 @@
     3510@@ -3879,11 +3855,11 @@
    30773511 else
    30783512   with_widec=no
    30793513 fi;
    30803514-echo "$as_me:3882: result: $with_widec" >&5
    3081 +echo "$as_me:4024: result: $with_widec" >&5
     3515+echo "$as_me:3858: result: $with_widec" >&5
    30823516 echo "${ECHO_T}$with_widec" >&6
    30833517 if test "$with_widec" = yes ; then
    30843518 
    30853519-echo "$as_me:3886: checking for multibyte character support" >&5
    3086 +echo "$as_me:4028: checking for multibyte character support" >&5
     3520+echo "$as_me:3862: checking for multibyte character support" >&5
    30873521 echo $ECHO_N "checking for multibyte character support... $ECHO_C" >&6
    30883522 if test "${cf_cv_utf8_lib+set}" = set; then
    30893523   echo $ECHO_N "(cached) $ECHO_C" >&6
    3090 @@ -3891,7 +4033,7 @@
     3524@@ -3891,7 +3867,7 @@
    30913525 
    30923526        cf_save_LIBS="$LIBS"
    30933527        cat >conftest.$ac_ext <<_ACEOF
    30943528-#line 3894 "configure"
    3095 +#line 4036 "configure"
     3529+#line 3870 "configure"
    30963530 #include "confdefs.h"
    30973531 
    30983532 #include <stdlib.h>
    3099 @@ -3904,16 +4046,16 @@
     3533@@ -3904,16 +3880,16 @@
    31003534 }
    31013535 _ACEOF
    31023536 rm -f conftest.$ac_objext conftest$ac_exeext
    31033537-if { (eval echo "$as_me:3907: \"$ac_link\"") >&5
    3104 +if { (eval echo "$as_me:4049: \"$ac_link\"") >&5
     3538+if { (eval echo "$as_me:3883: \"$ac_link\"") >&5
    31053539   (eval $ac_link) 2>&5
    31063540   ac_status=$?
    31073541-  echo "$as_me:3910: \$? = $ac_status" >&5
    3108 +  echo "$as_me:4052: \$? = $ac_status" >&5
     3542+  echo "$as_me:3886: \$? = $ac_status" >&5
    31093543   (exit $ac_status); } &&
    31103544          { ac_try='test -s conftest$ac_exeext'
    31113545-  { (eval echo "$as_me:3913: \"$ac_try\"") >&5
    3112 +  { (eval echo "$as_me:4055: \"$ac_try\"") >&5
     3546+  { (eval echo "$as_me:3889: \"$ac_try\"") >&5
    31133547   (eval $ac_try) 2>&5
    31143548   ac_status=$?
    31153549-  echo "$as_me:3916: \$? = $ac_status" >&5
    3116 +  echo "$as_me:4058: \$? = $ac_status" >&5
     3550+  echo "$as_me:3892: \$? = $ac_status" >&5
    31173551   (exit $ac_status); }; }; then
    31183552   cf_cv_utf8_lib=yes
    31193553 else
    3120 @@ -3925,12 +4067,12 @@
     3554@@ -3925,12 +3901,12 @@
    31213555 cf_cv_header_path_utf8=
    31223556 cf_cv_library_path_utf8=
    31233557 
    31243558-echo "${as_me:-configure}:3928: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5
    3125 +echo "${as_me:-configure}:4070: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5
     3559+echo "${as_me:-configure}:3904: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5
    31263560 
    31273561 cf_save_LIBS="$LIBS"
     
    31293563 cat >conftest.$ac_ext <<_ACEOF
    31303564-#line 3933 "configure"
    3131 +#line 4075 "configure"
     3565+#line 3909 "configure"
    31323566 #include "confdefs.h"
    31333567 
    31343568 #include <libutf8.h>
    3135 @@ -3943,16 +4085,16 @@
     3569@@ -3943,16 +3919,16 @@
    31363570 }
    31373571 _ACEOF
    31383572 rm -f conftest.$ac_objext conftest$ac_exeext
    31393573-if { (eval echo "$as_me:3946: \"$ac_link\"") >&5
    3140 +if { (eval echo "$as_me:4088: \"$ac_link\"") >&5
     3574+if { (eval echo "$as_me:3922: \"$ac_link\"") >&5
    31413575   (eval $ac_link) 2>&5
    31423576   ac_status=$?
    31433577-  echo "$as_me:3949: \$? = $ac_status" >&5
    3144 +  echo "$as_me:4091: \$? = $ac_status" >&5
     3578+  echo "$as_me:3925: \$? = $ac_status" >&5
    31453579   (exit $ac_status); } &&
    31463580          { ac_try='test -s conftest$ac_exeext'
    31473581-  { (eval echo "$as_me:3952: \"$ac_try\"") >&5
    3148 +  { (eval echo "$as_me:4094: \"$ac_try\"") >&5
     3582+  { (eval echo "$as_me:3928: \"$ac_try\"") >&5
    31493583   (eval $ac_try) 2>&5
    31503584   ac_status=$?
    31513585-  echo "$as_me:3955: \$? = $ac_status" >&5
    3152 +  echo "$as_me:4097: \$? = $ac_status" >&5
     3586+  echo "$as_me:3931: \$? = $ac_status" >&5
    31533587   (exit $ac_status); }; }; then
    31543588 
    31553589        cf_cv_find_linkage_utf8=yes
    3156 @@ -3966,7 +4108,7 @@
     3590@@ -3966,7 +3942,7 @@
    31573591 LIBS="-lutf8  $cf_save_LIBS"
    31583592 
    31593593 cat >conftest.$ac_ext <<_ACEOF
    31603594-#line 3969 "configure"
    3161 +#line 4111 "configure"
     3595+#line 3945 "configure"
    31623596 #include "confdefs.h"
    31633597 
    31643598 #include <libutf8.h>
    3165 @@ -3979,16 +4121,16 @@
     3599@@ -3979,16 +3955,16 @@
    31663600 }
    31673601 _ACEOF
    31683602 rm -f conftest.$ac_objext conftest$ac_exeext
    31693603-if { (eval echo "$as_me:3982: \"$ac_link\"") >&5
    3170 +if { (eval echo "$as_me:4124: \"$ac_link\"") >&5
     3604+if { (eval echo "$as_me:3958: \"$ac_link\"") >&5
    31713605   (eval $ac_link) 2>&5
    31723606   ac_status=$?
    31733607-  echo "$as_me:3985: \$? = $ac_status" >&5
    3174 +  echo "$as_me:4127: \$? = $ac_status" >&5
     3608+  echo "$as_me:3961: \$? = $ac_status" >&5
    31753609   (exit $ac_status); } &&
    31763610          { ac_try='test -s conftest$ac_exeext'
    31773611-  { (eval echo "$as_me:3988: \"$ac_try\"") >&5
    3178 +  { (eval echo "$as_me:4130: \"$ac_try\"") >&5
     3612+  { (eval echo "$as_me:3964: \"$ac_try\"") >&5
    31793613   (eval $ac_try) 2>&5
    31803614   ac_status=$?
    31813615-  echo "$as_me:3991: \$? = $ac_status" >&5
    3182 +  echo "$as_me:4133: \$? = $ac_status" >&5
     3616+  echo "$as_me:3967: \$? = $ac_status" >&5
    31833617   (exit $ac_status); }; }; then
    31843618 
    31853619        cf_cv_find_linkage_utf8=yes
    3186 @@ -4005,9 +4147,9 @@
     3620@@ -4005,9 +3981,9 @@
    31873621 
    31883622     test -n "$verbose" && echo "       find linkage for utf8 library" 1>&6
    31893623 
    31903624-echo "${as_me:-configure}:4008: testing find linkage for utf8 library ..." 1>&5
    3191 +echo "${as_me:-configure}:4150: testing find linkage for utf8 library ..." 1>&5
     3625+echo "${as_me:-configure}:3984: testing find linkage for utf8 library ..." 1>&5
    31923626 
    31933627-echo "${as_me:-configure}:4010: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5
    3194 +echo "${as_me:-configure}:4152: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5
     3628+echo "${as_me:-configure}:3986: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5
    31953629 
    31963630     cf_save_CPPFLAGS="$CPPFLAGS"
    31973631     cf_test_CPPFLAGS="$CPPFLAGS"
    3198 @@ -4120,11 +4262,11 @@
     3632@@ -4120,11 +4096,11 @@
    31993633       if test -d $cf_cv_header_path_utf8 ; then
    32003634         test -n "$verbose" && echo "   ... testing $cf_cv_header_path_utf8" 1>&6
    32013635 
    32023636-echo "${as_me:-configure}:4123: testing ... testing $cf_cv_header_path_utf8 ..." 1>&5
    3203 +echo "${as_me:-configure}:4265: testing ... testing $cf_cv_header_path_utf8 ..." 1>&5
     3637+echo "${as_me:-configure}:4099: testing ... testing $cf_cv_header_path_utf8 ..." 1>&5
    32043638 
    32053639         CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_utf8"
    32063640         cat >conftest.$ac_ext <<_ACEOF
    32073641-#line 4127 "configure"
    3208 +#line 4269 "configure"
     3642+#line 4103 "configure"
    32093643 #include "confdefs.h"
    32103644 
    32113645 #include <libutf8.h>
    3212 @@ -4137,21 +4279,21 @@
     3646@@ -4137,21 +4113,21 @@
    32133647 }
    32143648 _ACEOF
    32153649 rm -f conftest.$ac_objext
    32163650-if { (eval echo "$as_me:4140: \"$ac_compile\"") >&5
    3217 +if { (eval echo "$as_me:4282: \"$ac_compile\"") >&5
     3651+if { (eval echo "$as_me:4116: \"$ac_compile\"") >&5
    32183652   (eval $ac_compile) 2>&5
    32193653   ac_status=$?
    32203654-  echo "$as_me:4143: \$? = $ac_status" >&5
    3221 +  echo "$as_me:4285: \$? = $ac_status" >&5
     3655+  echo "$as_me:4119: \$? = $ac_status" >&5
    32223656   (exit $ac_status); } &&
    32233657          { ac_try='test -s conftest.$ac_objext'
    32243658-  { (eval echo "$as_me:4146: \"$ac_try\"") >&5
    3225 +  { (eval echo "$as_me:4288: \"$ac_try\"") >&5
     3659+  { (eval echo "$as_me:4122: \"$ac_try\"") >&5
    32263660   (eval $ac_try) 2>&5
    32273661   ac_status=$?
    32283662-  echo "$as_me:4149: \$? = $ac_status" >&5
    3229 +  echo "$as_me:4291: \$? = $ac_status" >&5
     3663+  echo "$as_me:4125: \$? = $ac_status" >&5
    32303664   (exit $ac_status); }; }; then
    32313665 
     
    32333667 
    32343668-echo "${as_me:-configure}:4154: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5
    3235 +echo "${as_me:-configure}:4296: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5
     3669+echo "${as_me:-configure}:4130: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5
    32363670 
    32373671             cf_cv_find_linkage_utf8=maybe
    32383672             cf_test_CPPFLAGS="$CPPFLAGS"
    3239 @@ -4169,7 +4311,7 @@
     3673@@ -4169,7 +4145,7 @@
    32403674 
    32413675     if test "$cf_cv_find_linkage_utf8" = maybe ; then
    32423676 
    32433677-echo "${as_me:-configure}:4172: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5
    3244 +echo "${as_me:-configure}:4314: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5
     3678+echo "${as_me:-configure}:4148: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5
    32453679 
    32463680       cf_save_LIBS="$LIBS"
    32473681       cf_save_LDFLAGS="$LDFLAGS"
    3248 @@ -4266,13 +4408,13 @@
     3682@@ -4266,13 +4242,13 @@
    32493683           if test -d $cf_cv_library_path_utf8 ; then
    32503684             test -n "$verbose" && echo "       ... testing $cf_cv_library_path_utf8" 1>&6
    32513685 
    32523686-echo "${as_me:-configure}:4269: testing ... testing $cf_cv_library_path_utf8 ..." 1>&5
    3253 +echo "${as_me:-configure}:4411: testing ... testing $cf_cv_library_path_utf8 ..." 1>&5
     3687+echo "${as_me:-configure}:4245: testing ... testing $cf_cv_library_path_utf8 ..." 1>&5
    32543688 
    32553689             CPPFLAGS="$cf_test_CPPFLAGS"
     
    32583692             cat >conftest.$ac_ext <<_ACEOF
    32593693-#line 4275 "configure"
    3260 +#line 4417 "configure"
     3694+#line 4251 "configure"
    32613695 #include "confdefs.h"
    32623696 
    32633697 #include <libutf8.h>
    3264 @@ -4285,21 +4427,21 @@
     3698@@ -4285,21 +4261,21 @@
    32653699 }
    32663700 _ACEOF
    32673701 rm -f conftest.$ac_objext conftest$ac_exeext
    32683702-if { (eval echo "$as_me:4288: \"$ac_link\"") >&5
    3269 +if { (eval echo "$as_me:4430: \"$ac_link\"") >&5
     3703+if { (eval echo "$as_me:4264: \"$ac_link\"") >&5
    32703704   (eval $ac_link) 2>&5
    32713705   ac_status=$?
    32723706-  echo "$as_me:4291: \$? = $ac_status" >&5
    3273 +  echo "$as_me:4433: \$? = $ac_status" >&5
     3707+  echo "$as_me:4267: \$? = $ac_status" >&5
    32743708   (exit $ac_status); } &&
    32753709          { ac_try='test -s conftest$ac_exeext'
    32763710-  { (eval echo "$as_me:4294: \"$ac_try\"") >&5
    3277 +  { (eval echo "$as_me:4436: \"$ac_try\"") >&5
     3711+  { (eval echo "$as_me:4270: \"$ac_try\"") >&5
    32783712   (eval $ac_try) 2>&5
    32793713   ac_status=$?
    32803714-  echo "$as_me:4297: \$? = $ac_status" >&5
    3281 +  echo "$as_me:4439: \$? = $ac_status" >&5
     3715+  echo "$as_me:4273: \$? = $ac_status" >&5
    32823716   (exit $ac_status); }; }; then
    32833717 
     
    32853719 
    32863720-echo "${as_me:-configure}:4302: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5
    3287 +echo "${as_me:-configure}:4444: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5
     3721+echo "${as_me:-configure}:4278: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5
    32883722 
    32893723                 cf_cv_find_linkage_utf8=yes
    32903724                 cf_cv_library_file_utf8="-lutf8"
    3291 @@ -4341,7 +4483,7 @@
     3725@@ -4341,7 +4317,7 @@
    32923726 fi
    32933727 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    32943728 fi
    32953729-echo "$as_me:4344: result: $cf_cv_utf8_lib" >&5
    3296 +echo "$as_me:4486: result: $cf_cv_utf8_lib" >&5
     3730+echo "$as_me:4320: result: $cf_cv_utf8_lib" >&5
    32973731 echo "${ECHO_T}$cf_cv_utf8_lib" >&6
    32983732 
    32993733 # HAVE_LIBUTF8_H is used by ncurses if curses.h is shared between
    3300 @@ -4375,7 +4517,7 @@
     3734@@ -4375,7 +4351,7 @@
    33013735                          cf_save_CPPFLAGS=$CPPFLAGS
    33023736                          CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
    33033737                          cat >conftest.$ac_ext <<_ACEOF
    33043738-#line 4378 "configure"
    3305 +#line 4520 "configure"
     3739+#line 4354 "configure"
    33063740 #include "confdefs.h"
    33073741 #include <stdio.h>
    33083742 int
    3309 @@ -4387,16 +4529,16 @@
     3743@@ -4387,16 +4363,16 @@
    33103744 }
    33113745 _ACEOF
    33123746 rm -f conftest.$ac_objext
    33133747-if { (eval echo "$as_me:4390: \"$ac_compile\"") >&5
    3314 +if { (eval echo "$as_me:4532: \"$ac_compile\"") >&5
     3748+if { (eval echo "$as_me:4366: \"$ac_compile\"") >&5
    33153749   (eval $ac_compile) 2>&5
    33163750   ac_status=$?
    33173751-  echo "$as_me:4393: \$? = $ac_status" >&5
    3318 +  echo "$as_me:4535: \$? = $ac_status" >&5
     3752+  echo "$as_me:4369: \$? = $ac_status" >&5
    33193753   (exit $ac_status); } &&
    33203754          { ac_try='test -s conftest.$ac_objext'
    33213755-  { (eval echo "$as_me:4396: \"$ac_try\"") >&5
    3322 +  { (eval echo "$as_me:4538: \"$ac_try\"") >&5
     3756+  { (eval echo "$as_me:4372: \"$ac_try\"") >&5
    33233757   (eval $ac_try) 2>&5
    33243758   ac_status=$?
    33253759-  echo "$as_me:4399: \$? = $ac_status" >&5
    3326 +  echo "$as_me:4541: \$? = $ac_status" >&5
     3760+  echo "$as_me:4375: \$? = $ac_status" >&5
    33273761   (exit $ac_status); }; }; then
    33283762   :
    33293763 else
    3330 @@ -4413,7 +4555,7 @@
     3764@@ -4413,7 +4389,7 @@
    33313765                if test "$cf_have_incdir" = no ; then
    33323766                  test -n "$verbose" && echo "  adding $cf_add_incdir to include-path" 1>&6
    33333767 
    33343768-echo "${as_me:-configure}:4416: testing adding $cf_add_incdir to include-path ..." 1>&5
    3335 +echo "${as_me:-configure}:4558: testing adding $cf_add_incdir to include-path ..." 1>&5
     3769+echo "${as_me:-configure}:4392: testing adding $cf_add_incdir to include-path ..." 1>&5
    33363770 
    33373771                  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
    33383772 
    3339 @@ -4447,7 +4589,7 @@
     3773@@ -4447,7 +4423,7 @@
    33403774       if test "$cf_have_libdir" = no ; then
    33413775         test -n "$verbose" && echo "   adding $cf_add_libdir to library-path" 1>&6
    33423776 
    33433777-echo "${as_me:-configure}:4450: testing adding $cf_add_libdir to library-path ..." 1>&5
    3344 +echo "${as_me:-configure}:4592: testing adding $cf_add_libdir to library-path ..." 1>&5
     3778+echo "${as_me:-configure}:4426: testing adding $cf_add_libdir to library-path ..." 1>&5
    33453779 
    33463780         LDFLAGS="-L$cf_add_libdir $LDFLAGS"
    33473781       fi
    3348 @@ -4461,48 +4603,87 @@
     3782@@ -4461,48 +4437,87 @@
    33493783 cf_ncuconfig_root=ncursesw
    33503784 
     
    33573791+    # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
    33583792+set dummy $ac_tool_prefix$ac_prog; ac_word=$2
    3359 +echo "$as_me:4612: checking for $ac_word" >&5
     3793+echo "$as_me:4446: checking for $ac_word" >&5
    33603794+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    33613795+if test "${ac_cv_prog_NCURSES_CONFIG+set}" = set; then
     
    33723806+  $as_executable_p "$ac_dir/$ac_word" || continue
    33733807+ac_cv_prog_NCURSES_CONFIG="$ac_tool_prefix$ac_prog"
    3374 +echo "$as_me:4627: found $ac_dir/$ac_word" >&5
     3808+echo "$as_me:4461: found $ac_dir/$ac_word" >&5
    33753809+break
    33763810+done
     
    33803814+NCURSES_CONFIG=$ac_cv_prog_NCURSES_CONFIG
    33813815+if test -n "$NCURSES_CONFIG"; then
    3382 +  echo "$as_me:4635: result: $NCURSES_CONFIG" >&5
     3816+  echo "$as_me:4469: result: $NCURSES_CONFIG" >&5
    33833817+echo "${ECHO_T}$NCURSES_CONFIG" >&6
    33843818+else
    3385 +  echo "$as_me:4638: result: no" >&5
     3819+  echo "$as_me:4472: result: no" >&5
    33863820+echo "${ECHO_T}no" >&6
    33873821+fi
     
    33973831 set dummy $ac_prog; ac_word=$2
    33983832-echo "$as_me:4468: checking for $ac_word" >&5
    3399 +echo "$as_me:4651: checking for $ac_word" >&5
     3833+echo "$as_me:4485: checking for $ac_word" >&5
    34003834 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    34013835-if test "${ac_cv_path_NCURSES_CONFIG+set}" = set; then
     
    34233857+  $as_executable_p "$ac_dir/$ac_word" || continue
    34243858+ac_cv_prog_ac_ct_NCURSES_CONFIG="$ac_prog"
    3425 +echo "$as_me:4666: found $ac_dir/$ac_word" >&5
     3859+echo "$as_me:4500: found $ac_dir/$ac_word" >&5
    34263860+break
    34273861 done
     
    34383872+ac_ct_NCURSES_CONFIG=$ac_cv_prog_ac_ct_NCURSES_CONFIG
    34393873+if test -n "$ac_ct_NCURSES_CONFIG"; then
    3440 +  echo "$as_me:4674: result: $ac_ct_NCURSES_CONFIG" >&5
     3874+  echo "$as_me:4508: result: $ac_ct_NCURSES_CONFIG" >&5
    34413875+echo "${ECHO_T}$ac_ct_NCURSES_CONFIG" >&6
    34423876 else
    34433877-  echo "$as_me:4499: result: no" >&5
    3444 +  echo "$as_me:4677: result: no" >&5
     3878+  echo "$as_me:4511: result: no" >&5
    34453879 echo "${ECHO_T}no" >&6
    34463880 fi
     
    34573891 if test "$NCURSES_CONFIG" != none ; then
    34583892 
    3459 @@ -4511,7 +4692,7 @@
     3893@@ -4511,7 +4526,7 @@
    34603894 
    34613895 # even with config script, some packages use no-override for curses.h
    34623896 
    34633897-echo "$as_me:4514: checking if we have identified curses headers" >&5
    3464 +echo "$as_me:4695: checking if we have identified curses headers" >&5
     3898+echo "$as_me:4529: checking if we have identified curses headers" >&5
    34653899 echo $ECHO_N "checking if we have identified curses headers... $ECHO_C" >&6
    34663900 if test "${cf_cv_ncurses_header+set}" = set; then
    34673901   echo $ECHO_N "(cached) $ECHO_C" >&6
    3468 @@ -4519,13 +4700,13 @@
     3902@@ -4519,13 +4534,13 @@
    34693903 
    34703904 cf_cv_ncurses_header=none
     
    34813915 cat >conftest.$ac_ext <<_ACEOF
    34823916-#line 4528 "configure"
    3483 +#line 4709 "configure"
     3917+#line 4543 "configure"
    34843918 #include "confdefs.h"
    34853919 #include <${cf_header}>
    34863920 int
    3487 @@ -4537,16 +4718,16 @@
     3921@@ -4537,16 +4552,16 @@
    34883922 }
    34893923 _ACEOF
    34903924 rm -f conftest.$ac_objext
    34913925-if { (eval echo "$as_me:4540: \"$ac_compile\"") >&5
    3492 +if { (eval echo "$as_me:4721: \"$ac_compile\"") >&5
     3926+if { (eval echo "$as_me:4555: \"$ac_compile\"") >&5
    34933927   (eval $ac_compile) 2>&5
    34943928   ac_status=$?
    34953929-  echo "$as_me:4543: \$? = $ac_status" >&5
    3496 +  echo "$as_me:4724: \$? = $ac_status" >&5
     3930+  echo "$as_me:4558: \$? = $ac_status" >&5
    34973931   (exit $ac_status); } &&
    34983932          { ac_try='test -s conftest.$ac_objext'
    34993933-  { (eval echo "$as_me:4546: \"$ac_try\"") >&5
    3500 +  { (eval echo "$as_me:4727: \"$ac_try\"") >&5
     3934+  { (eval echo "$as_me:4561: \"$ac_try\"") >&5
    35013935   (eval $ac_try) 2>&5
    35023936   ac_status=$?
    35033937-  echo "$as_me:4549: \$? = $ac_status" >&5
    3504 +  echo "$as_me:4730: \$? = $ac_status" >&5
     3938+  echo "$as_me:4564: \$? = $ac_status" >&5
    35053939   (exit $ac_status); }; }; then
    35063940   cf_cv_ncurses_header=$cf_header; break
    35073941 else
    3508 @@ -4557,11 +4738,11 @@
     3942@@ -4557,11 +4572,11 @@
    35093943 done
    35103944 
    35113945 fi
    35123946-echo "$as_me:4560: result: $cf_cv_ncurses_header" >&5
    3513 +echo "$as_me:4741: result: $cf_cv_ncurses_header" >&5
     3947+echo "$as_me:4575: result: $cf_cv_ncurses_header" >&5
    35143948 echo "${ECHO_T}$cf_cv_ncurses_header" >&6
    35153949 
    35163950 if test "$cf_cv_ncurses_header" = none ; then
    35173951-       { { echo "$as_me:4564: error: No curses header-files found" >&5
    3518 +       { { echo "$as_me:4745: error: No curses header-files found" >&5
     3952+       { { echo "$as_me:4579: error: No curses header-files found" >&5
    35193953 echo "$as_me: error: No curses header-files found" >&2;}
    35203954    { (exit 1); exit 1; }; }
    35213955 fi
    3522 @@ -4571,23 +4752,23 @@
     3956@@ -4571,23 +4586,23 @@
    35233957 for ac_header in $cf_cv_ncurses_header
    35243958 do
    35253959 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
    35263960-echo "$as_me:4574: checking for $ac_header" >&5
    3527 +echo "$as_me:4755: checking for $ac_header" >&5
     3961+echo "$as_me:4589: checking for $ac_header" >&5
    35283962 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
    35293963 if eval "test \"\${$as_ac_Header+set}\" = set"; then
     
    35323966   cat >conftest.$ac_ext <<_ACEOF
    35333967-#line 4580 "configure"
    3534 +#line 4761 "configure"
     3968+#line 4595 "configure"
    35353969 #include "confdefs.h"
    35363970 #include <$ac_header>
    35373971 _ACEOF
    35383972-if { (eval echo "$as_me:4584: \"$ac_cpp conftest.$ac_ext\"") >&5
    3539 +if { (eval echo "$as_me:4765: \"$ac_cpp conftest.$ac_ext\"") >&5
     3973+if { (eval echo "$as_me:4599: \"$ac_cpp conftest.$ac_ext\"") >&5
    35403974   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
    35413975   ac_status=$?
     
    35443978   cat conftest.err >&5
    35453979-  echo "$as_me:4590: \$? = $ac_status" >&5
    3546 +  echo "$as_me:4771: \$? = $ac_status" >&5
     3980+  echo "$as_me:4605: \$? = $ac_status" >&5
    35473981   (exit $ac_status); } >/dev/null; then
    35483982   if test -s conftest.err; then
    35493983     ac_cpp_err=$ac_c_preproc_warn_flag
    3550 @@ -4606,7 +4787,7 @@
     3984@@ -4606,7 +4621,7 @@
    35513985 fi
    35523986 rm -f conftest.err conftest.$ac_ext
    35533987 fi
    35543988-echo "$as_me:4609: result: `eval echo '${'$as_ac_Header'}'`" >&5
    3555 +echo "$as_me:4790: result: `eval echo '${'$as_ac_Header'}'`" >&5
     3989+echo "$as_me:4624: result: `eval echo '${'$as_ac_Header'}'`" >&5
    35563990 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
    35573991 if test `eval echo '${'$as_ac_Header'}'` = yes; then
    35583992   cat >>confdefs.h <<EOF
    3559 @@ -4659,7 +4840,7 @@
     3993@@ -4659,7 +4674,7 @@
    35603994                          cf_save_CPPFLAGS=$CPPFLAGS
    35613995                          CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
    35623996                          cat >conftest.$ac_ext <<_ACEOF
    35633997-#line 4662 "configure"
    3564 +#line 4843 "configure"
     3998+#line 4677 "configure"
    35653999 #include "confdefs.h"
    35664000 #include <stdio.h>
    35674001 int
    3568 @@ -4671,16 +4852,16 @@
     4002@@ -4671,16 +4686,16 @@
    35694003 }
    35704004 _ACEOF
    35714005 rm -f conftest.$ac_objext
    35724006-if { (eval echo "$as_me:4674: \"$ac_compile\"") >&5
    3573 +if { (eval echo "$as_me:4855: \"$ac_compile\"") >&5
     4007+if { (eval echo "$as_me:4689: \"$ac_compile\"") >&5
    35744008   (eval $ac_compile) 2>&5
    35754009   ac_status=$?
    35764010-  echo "$as_me:4677: \$? = $ac_status" >&5
    3577 +  echo "$as_me:4858: \$? = $ac_status" >&5
     4011+  echo "$as_me:4692: \$? = $ac_status" >&5
    35784012   (exit $ac_status); } &&
    35794013          { ac_try='test -s conftest.$ac_objext'
    35804014-  { (eval echo "$as_me:4680: \"$ac_try\"") >&5
    3581 +  { (eval echo "$as_me:4861: \"$ac_try\"") >&5
     4015+  { (eval echo "$as_me:4695: \"$ac_try\"") >&5
    35824016   (eval $ac_try) 2>&5
    35834017   ac_status=$?
    35844018-  echo "$as_me:4683: \$? = $ac_status" >&5
    3585 +  echo "$as_me:4864: \$? = $ac_status" >&5
     4019+  echo "$as_me:4698: \$? = $ac_status" >&5
    35864020   (exit $ac_status); }; }; then
    35874021   :
    35884022 else
    3589 @@ -4697,7 +4878,7 @@
     4023@@ -4697,7 +4712,7 @@
    35904024                if test "$cf_have_incdir" = no ; then
    35914025                  test -n "$verbose" && echo "  adding $cf_add_incdir to include-path" 1>&6
    35924026 
    35934027-echo "${as_me:-configure}:4700: testing adding $cf_add_incdir to include-path ..." 1>&5
    3594 +echo "${as_me:-configure}:4881: testing adding $cf_add_incdir to include-path ..." 1>&5
     4028+echo "${as_me:-configure}:4715: testing adding $cf_add_incdir to include-path ..." 1>&5
    35954029 
    35964030                  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
    35974031 
    3598 @@ -4714,7 +4895,7 @@
     4032@@ -4714,7 +4729,7 @@
    35994033 
    36004034 }
    36014035 
    36024036-echo "$as_me:4717: checking for $cf_ncuhdr_root header in include-path" >&5
    3603 +echo "$as_me:4898: checking for $cf_ncuhdr_root header in include-path" >&5
     4037+echo "$as_me:4732: checking for $cf_ncuhdr_root header in include-path" >&5
    36044038 echo $ECHO_N "checking for $cf_ncuhdr_root header in include-path... $ECHO_C" >&6
    36054039 if test "${cf_cv_ncurses_h+set}" = set; then
    36064040   echo $ECHO_N "(cached) $ECHO_C" >&6
    3607 @@ -4726,7 +4907,7 @@
     4041@@ -4726,7 +4741,7 @@
    36084042        do
    36094043 
    36104044        cat >conftest.$ac_ext <<_ACEOF
    36114045-#line 4729 "configure"
    3612 +#line 4910 "configure"
     4046+#line 4744 "configure"
    36134047 #include "confdefs.h"
    36144048 
    36154049 #define _XOPEN_SOURCE_EXTENDED
    3616 @@ -4758,16 +4939,16 @@
     4050@@ -4758,16 +4773,16 @@
    36174051 }
    36184052 _ACEOF
    36194053 rm -f conftest.$ac_objext
    36204054-if { (eval echo "$as_me:4761: \"$ac_compile\"") >&5
    3621 +if { (eval echo "$as_me:4942: \"$ac_compile\"") >&5
     4055+if { (eval echo "$as_me:4776: \"$ac_compile\"") >&5
    36224056   (eval $ac_compile) 2>&5
    36234057   ac_status=$?
    36244058-  echo "$as_me:4764: \$? = $ac_status" >&5
    3625 +  echo "$as_me:4945: \$? = $ac_status" >&5
     4059+  echo "$as_me:4779: \$? = $ac_status" >&5
    36264060   (exit $ac_status); } &&
    36274061          { ac_try='test -s conftest.$ac_objext'
    36284062-  { (eval echo "$as_me:4767: \"$ac_try\"") >&5
    3629 +  { (eval echo "$as_me:4948: \"$ac_try\"") >&5
     4063+  { (eval echo "$as_me:4782: \"$ac_try\"") >&5
    36304064   (eval $ac_try) 2>&5
    36314065   ac_status=$?
    36324066-  echo "$as_me:4770: \$? = $ac_status" >&5
    3633 +  echo "$as_me:4951: \$? = $ac_status" >&5
     4067+  echo "$as_me:4785: \$? = $ac_status" >&5
    36344068   (exit $ac_status); }; }; then
    36354069   cf_cv_ncurses_h=$cf_header
    36364070 
    3637 @@ -4782,14 +4963,14 @@
     4071@@ -4782,14 +4797,14 @@
    36384072        done
    36394073 
    36404074 fi
    36414075-echo "$as_me:4785: result: $cf_cv_ncurses_h" >&5
    3642 +echo "$as_me:4966: result: $cf_cv_ncurses_h" >&5
     4076+echo "$as_me:4800: result: $cf_cv_ncurses_h" >&5
    36434077 echo "${ECHO_T}$cf_cv_ncurses_h" >&6
    36444078 
     
    36484082 
    36494083-echo "$as_me:4792: checking for $cf_ncuhdr_root include-path" >&5
    3650 +echo "$as_me:4973: checking for $cf_ncuhdr_root include-path" >&5
     4084+echo "$as_me:4807: checking for $cf_ncuhdr_root include-path" >&5
    36514085 echo $ECHO_N "checking for $cf_ncuhdr_root include-path... $ECHO_C" >&6
    36524086 if test "${cf_cv_ncurses_h2+set}" = set; then
    36534087   echo $ECHO_N "(cached) $ECHO_C" >&6
    3654 @@ -4929,7 +5110,7 @@
     4088@@ -4929,7 +4944,7 @@
    36554089                          cf_save_CPPFLAGS=$CPPFLAGS
    36564090                          CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
    36574091                          cat >conftest.$ac_ext <<_ACEOF
    36584092-#line 4932 "configure"
    3659 +#line 5113 "configure"
     4093+#line 4947 "configure"
    36604094 #include "confdefs.h"
    36614095 #include <stdio.h>
    36624096 int
    3663 @@ -4941,16 +5122,16 @@
     4097@@ -4941,16 +4956,16 @@
    36644098 }
    36654099 _ACEOF
    36664100 rm -f conftest.$ac_objext
    36674101-if { (eval echo "$as_me:4944: \"$ac_compile\"") >&5
    3668 +if { (eval echo "$as_me:5125: \"$ac_compile\"") >&5
     4102+if { (eval echo "$as_me:4959: \"$ac_compile\"") >&5
    36694103   (eval $ac_compile) 2>&5
    36704104   ac_status=$?
    36714105-  echo "$as_me:4947: \$? = $ac_status" >&5
    3672 +  echo "$as_me:5128: \$? = $ac_status" >&5
     4106+  echo "$as_me:4962: \$? = $ac_status" >&5
    36734107   (exit $ac_status); } &&
    36744108          { ac_try='test -s conftest.$ac_objext'
    36754109-  { (eval echo "$as_me:4950: \"$ac_try\"") >&5
    3676 +  { (eval echo "$as_me:5131: \"$ac_try\"") >&5
     4110+  { (eval echo "$as_me:4965: \"$ac_try\"") >&5
    36774111   (eval $ac_try) 2>&5
    36784112   ac_status=$?
    36794113-  echo "$as_me:4953: \$? = $ac_status" >&5
    3680 +  echo "$as_me:5134: \$? = $ac_status" >&5
     4114+  echo "$as_me:4968: \$? = $ac_status" >&5
    36814115   (exit $ac_status); }; }; then
    36824116   :
    36834117 else
    3684 @@ -4967,7 +5148,7 @@
     4118@@ -4967,7 +4982,7 @@
    36854119                if test "$cf_have_incdir" = no ; then
    36864120                  test -n "$verbose" && echo "  adding $cf_add_incdir to include-path" 1>&6
    36874121 
    36884122-echo "${as_me:-configure}:4970: testing adding $cf_add_incdir to include-path ..." 1>&5
    3689 +echo "${as_me:-configure}:5151: testing adding $cf_add_incdir to include-path ..." 1>&5
     4123+echo "${as_me:-configure}:4985: testing adding $cf_add_incdir to include-path ..." 1>&5
    36904124 
    36914125                  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
    36924126 
    3693 @@ -4988,7 +5169,7 @@
     4127@@ -4988,7 +5003,7 @@
    36944128                do
    36954129 
    36964130        cat >conftest.$ac_ext <<_ACEOF
    36974131-#line 4991 "configure"
    3698 +#line 5172 "configure"
     4132+#line 5006 "configure"
    36994133 #include "confdefs.h"
    37004134 
    37014135 #include <$cf_header>
    3702 @@ -5012,16 +5193,16 @@
     4136@@ -5012,16 +5027,16 @@
    37034137 }
    37044138 _ACEOF
    37054139 rm -f conftest.$ac_objext
    37064140-if { (eval echo "$as_me:5015: \"$ac_compile\"") >&5
    3707 +if { (eval echo "$as_me:5196: \"$ac_compile\"") >&5
     4141+if { (eval echo "$as_me:5030: \"$ac_compile\"") >&5
    37084142   (eval $ac_compile) 2>&5
    37094143   ac_status=$?
    37104144-  echo "$as_me:5018: \$? = $ac_status" >&5
    3711 +  echo "$as_me:5199: \$? = $ac_status" >&5
     4145+  echo "$as_me:5033: \$? = $ac_status" >&5
    37124146   (exit $ac_status); } &&
    37134147          { ac_try='test -s conftest.$ac_objext'
    37144148-  { (eval echo "$as_me:5021: \"$ac_try\"") >&5
    3715 +  { (eval echo "$as_me:5202: \"$ac_try\"") >&5
     4149+  { (eval echo "$as_me:5036: \"$ac_try\"") >&5
    37164150   (eval $ac_try) 2>&5
    37174151   ac_status=$?
    37184152-  echo "$as_me:5024: \$? = $ac_status" >&5
    3719 +  echo "$as_me:5205: \$? = $ac_status" >&5
     4153+  echo "$as_me:5039: \$? = $ac_status" >&5
    37204154   (exit $ac_status); }; }; then
    37214155   cf_cv_ncurses_h2=$cf_header
    37224156 
    3723 @@ -5042,12 +5223,12 @@
     4157@@ -5042,12 +5057,12 @@
    37244158                CPPFLAGS="$cf_save2_CPPFLAGS"
    37254159                test "$cf_cv_ncurses_h2" != no && break
    37264160        done
    37274161-       test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:5045: error: not found" >&5
    3728 +       test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:5226: error: not found" >&5
     4162+       test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:5060: error: not found" >&5
    37294163 echo "$as_me: error: not found" >&2;}
    37304164    { (exit 1); exit 1; }; }
     
    37324166 fi
    37334167-echo "$as_me:5050: result: $cf_cv_ncurses_h2" >&5
    3734 +echo "$as_me:5231: result: $cf_cv_ncurses_h2" >&5
     4168+echo "$as_me:5065: result: $cf_cv_ncurses_h2" >&5
    37354169 echo "${ECHO_T}$cf_cv_ncurses_h2" >&6
    37364170 
    37374171        cf_1st_incdir=`echo $cf_cv_ncurses_h2 | sed -e 's%/[^/]*$%%'`
    3738 @@ -5080,7 +5261,7 @@
     4172@@ -5080,7 +5095,7 @@
    37394173                          cf_save_CPPFLAGS=$CPPFLAGS
    37404174                          CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
    37414175                          cat >conftest.$ac_ext <<_ACEOF
    37424176-#line 5083 "configure"
    3743 +#line 5264 "configure"
     4177+#line 5098 "configure"
    37444178 #include "confdefs.h"
    37454179 #include <stdio.h>
    37464180 int
    3747 @@ -5092,16 +5273,16 @@
     4181@@ -5092,16 +5107,16 @@
    37484182 }
    37494183 _ACEOF
    37504184 rm -f conftest.$ac_objext
    37514185-if { (eval echo "$as_me:5095: \"$ac_compile\"") >&5
    3752 +if { (eval echo "$as_me:5276: \"$ac_compile\"") >&5
     4186+if { (eval echo "$as_me:5110: \"$ac_compile\"") >&5
    37534187   (eval $ac_compile) 2>&5
    37544188   ac_status=$?
    37554189-  echo "$as_me:5098: \$? = $ac_status" >&5
    3756 +  echo "$as_me:5279: \$? = $ac_status" >&5
     4190+  echo "$as_me:5113: \$? = $ac_status" >&5
    37574191   (exit $ac_status); } &&
    37584192          { ac_try='test -s conftest.$ac_objext'
    37594193-  { (eval echo "$as_me:5101: \"$ac_try\"") >&5
    3760 +  { (eval echo "$as_me:5282: \"$ac_try\"") >&5
     4194+  { (eval echo "$as_me:5116: \"$ac_try\"") >&5
    37614195   (eval $ac_try) 2>&5
    37624196   ac_status=$?
    37634197-  echo "$as_me:5104: \$? = $ac_status" >&5
    3764 +  echo "$as_me:5285: \$? = $ac_status" >&5
     4198+  echo "$as_me:5119: \$? = $ac_status" >&5
    37654199   (exit $ac_status); }; }; then
    37664200   :
    37674201 else
    3768 @@ -5118,7 +5299,7 @@
     4202@@ -5118,7 +5133,7 @@
    37694203                if test "$cf_have_incdir" = no ; then
    37704204                  test -n "$verbose" && echo "  adding $cf_add_incdir to include-path" 1>&6
    37714205 
    37724206-echo "${as_me:-configure}:5121: testing adding $cf_add_incdir to include-path ..." 1>&5
    3773 +echo "${as_me:-configure}:5302: testing adding $cf_add_incdir to include-path ..." 1>&5
     4207+echo "${as_me:-configure}:5136: testing adding $cf_add_incdir to include-path ..." 1>&5
    37744208 
    37754209                  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
    37764210 
    3777 @@ -5161,7 +5342,7 @@
     4211@@ -5161,7 +5176,7 @@
    37784212        ;;
    37794213 esac
    37804214 
    37814215-echo "$as_me:5164: checking for terminfo header" >&5
    3782 +echo "$as_me:5345: checking for terminfo header" >&5
     4216+echo "$as_me:5179: checking for terminfo header" >&5
    37834217 echo $ECHO_N "checking for terminfo header... $ECHO_C" >&6
    37844218 if test "${cf_cv_term_header+set}" = set; then
    37854219   echo $ECHO_N "(cached) $ECHO_C" >&6
    3786 @@ -5179,7 +5360,7 @@
     4220@@ -5179,7 +5194,7 @@
    37874221 for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h"
    37884222 do
    37894223 cat >conftest.$ac_ext <<_ACEOF
    37904224-#line 5182 "configure"
    3791 +#line 5363 "configure"
     4225+#line 5197 "configure"
    37924226 #include "confdefs.h"
    37934227 #include <stdio.h>
    37944228 #include <${cf_cv_ncurses_header:-curses.h}>
    3795 @@ -5194,16 +5375,16 @@
     4229@@ -5194,16 +5209,16 @@
    37964230 }
    37974231 _ACEOF
    37984232 rm -f conftest.$ac_objext
    37994233-if { (eval echo "$as_me:5197: \"$ac_compile\"") >&5
    3800 +if { (eval echo "$as_me:5378: \"$ac_compile\"") >&5
     4234+if { (eval echo "$as_me:5212: \"$ac_compile\"") >&5
    38014235   (eval $ac_compile) 2>&5
    38024236   ac_status=$?
    38034237-  echo "$as_me:5200: \$? = $ac_status" >&5
    3804 +  echo "$as_me:5381: \$? = $ac_status" >&5
     4238+  echo "$as_me:5215: \$? = $ac_status" >&5
    38054239   (exit $ac_status); } &&
    38064240          { ac_try='test -s conftest.$ac_objext'
    38074241-  { (eval echo "$as_me:5203: \"$ac_try\"") >&5
    3808 +  { (eval echo "$as_me:5384: \"$ac_try\"") >&5
     4242+  { (eval echo "$as_me:5218: \"$ac_try\"") >&5
    38094243   (eval $ac_try) 2>&5
    38104244   ac_status=$?
    38114245-  echo "$as_me:5206: \$? = $ac_status" >&5
    3812 +  echo "$as_me:5387: \$? = $ac_status" >&5
     4246+  echo "$as_me:5221: \$? = $ac_status" >&5
    38134247   (exit $ac_status); }; }; then
    38144248 
    38154249        cf_cv_term_header="$cf_test"
    3816 @@ -5219,7 +5400,7 @@
     4250@@ -5219,7 +5234,7 @@
    38174251 done
    38184252 
    38194253 fi
    38204254-echo "$as_me:5222: result: $cf_cv_term_header" >&5
    3821 +echo "$as_me:5403: result: $cf_cv_term_header" >&5
     4255+echo "$as_me:5237: result: $cf_cv_term_header" >&5
    38224256 echo "${ECHO_T}$cf_cv_term_header" >&6
    38234257 
    38244258 # Set definitions to allow ifdef'ing to accommodate subdirectories
    3825 @@ -5253,7 +5434,7 @@
     4259@@ -5253,7 +5268,7 @@
    38264260 #define NCURSES 1
    38274261 EOF
    38284262 
    38294263-echo "$as_me:5256: checking for ncurses version" >&5
    3830 +echo "$as_me:5437: checking for ncurses version" >&5
     4264+echo "$as_me:5271: checking for ncurses version" >&5
    38314265 echo $ECHO_N "checking for ncurses version... $ECHO_C" >&6
    38324266 if test "${cf_cv_ncurses_version+set}" = set; then
    38334267   echo $ECHO_N "(cached) $ECHO_C" >&6
    3834 @@ -5279,10 +5460,10 @@
     4268@@ -5279,10 +5294,10 @@
    38354269 #endif
    38364270 EOF
    38374271        cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out"
    38384272-       { (eval echo "$as_me:5282: \"$cf_try\"") >&5
    3839 +       { (eval echo "$as_me:5463: \"$cf_try\"") >&5
     4273+       { (eval echo "$as_me:5297: \"$cf_try\"") >&5
    38404274   (eval $cf_try) 2>&5
    38414275   ac_status=$?
    38424276-  echo "$as_me:5285: \$? = $ac_status" >&5
    3843 +  echo "$as_me:5466: \$? = $ac_status" >&5
     4277+  echo "$as_me:5300: \$? = $ac_status" >&5
    38444278   (exit $ac_status); }
    38454279        if test -f conftest.out ; then
    38464280                cf_out=`cat conftest.out | sed -e 's%^Autoconf %%' -e 's%^[^"]*"%%' -e 's%".*%%'`
    3847 @@ -5292,7 +5473,7 @@
     4281@@ -5292,7 +5307,7 @@
    38484282 
    38494283 else
    38504284   cat >conftest.$ac_ext <<_ACEOF
    38514285-#line 5295 "configure"
    3852 +#line 5476 "configure"
     4286+#line 5310 "configure"
    38534287 #include "confdefs.h"
    38544288 
    38554289 #include <${cf_cv_ncurses_header:-curses.h}>
    3856 @@ -5317,15 +5498,15 @@
     4290@@ -5317,15 +5332,15 @@
    38574291 }
    38584292 _ACEOF
    38594293 rm -f conftest$ac_exeext
    38604294-if { (eval echo "$as_me:5320: \"$ac_link\"") >&5
    3861 +if { (eval echo "$as_me:5501: \"$ac_link\"") >&5
     4295+if { (eval echo "$as_me:5335: \"$ac_link\"") >&5
    38624296   (eval $ac_link) 2>&5
    38634297   ac_status=$?
    38644298-  echo "$as_me:5323: \$? = $ac_status" >&5
    3865 +  echo "$as_me:5504: \$? = $ac_status" >&5
     4299+  echo "$as_me:5338: \$? = $ac_status" >&5
    38664300   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
    38674301-  { (eval echo "$as_me:5325: \"$ac_try\"") >&5
    3868 +  { (eval echo "$as_me:5506: \"$ac_try\"") >&5
     4302+  { (eval echo "$as_me:5340: \"$ac_try\"") >&5
    38694303   (eval $ac_try) 2>&5
    38704304   ac_status=$?
    38714305-  echo "$as_me:5328: \$? = $ac_status" >&5
    3872 +  echo "$as_me:5509: \$? = $ac_status" >&5
     4306+  echo "$as_me:5343: \$? = $ac_status" >&5
    38734307   (exit $ac_status); }; }; then
    38744308 
    38754309        cf_cv_ncurses_version=`cat $cf_tempfile`
    3876 @@ -5339,7 +5520,7 @@
     4310@@ -5339,7 +5354,7 @@
    38774311        rm -f $cf_tempfile
    38784312 
    38794313 fi
    38804314-echo "$as_me:5342: result: $cf_cv_ncurses_version" >&5
    3881 +echo "$as_me:5523: result: $cf_cv_ncurses_version" >&5
     4315+echo "$as_me:5357: result: $cf_cv_ncurses_version" >&5
    38824316 echo "${ECHO_T}$cf_cv_ncurses_version" >&6
    38834317 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF
    38844318 #define NCURSES 1
    3885 @@ -5351,7 +5532,7 @@
     4319@@ -5351,7 +5366,7 @@
    38864320        # to link gpm.
    38874321 cf_ncurses_LIBS=""
    38884322 cf_ncurses_SAVE="$LIBS"
    38894323-echo "$as_me:5354: checking for Gpm_Open in -lgpm" >&5
    3890 +echo "$as_me:5535: checking for Gpm_Open in -lgpm" >&5
     4324+echo "$as_me:5369: checking for Gpm_Open in -lgpm" >&5
    38914325 echo $ECHO_N "checking for Gpm_Open in -lgpm... $ECHO_C" >&6
    38924326 if test "${ac_cv_lib_gpm_Gpm_Open+set}" = set; then
    38934327   echo $ECHO_N "(cached) $ECHO_C" >&6
    3894 @@ -5359,7 +5540,7 @@
     4328@@ -5359,7 +5374,7 @@
    38954329   ac_check_lib_save_LIBS=$LIBS
    38964330 LIBS="-lgpm  $LIBS"
    38974331 cat >conftest.$ac_ext <<_ACEOF
    38984332-#line 5362 "configure"
    3899 +#line 5543 "configure"
     4333+#line 5377 "configure"
    39004334 #include "confdefs.h"
    39014335 
    39024336 /* Override any gcc2 internal prototype to avoid an error.  */
    3903 @@ -5378,16 +5559,16 @@
     4337@@ -5378,16 +5393,16 @@
    39044338 }
    39054339 _ACEOF
    39064340 rm -f conftest.$ac_objext conftest$ac_exeext
    39074341-if { (eval echo "$as_me:5381: \"$ac_link\"") >&5
    3908 +if { (eval echo "$as_me:5562: \"$ac_link\"") >&5
     4342+if { (eval echo "$as_me:5396: \"$ac_link\"") >&5
    39094343   (eval $ac_link) 2>&5
    39104344   ac_status=$?
    39114345-  echo "$as_me:5384: \$? = $ac_status" >&5
    3912 +  echo "$as_me:5565: \$? = $ac_status" >&5
     4346+  echo "$as_me:5399: \$? = $ac_status" >&5
    39134347   (exit $ac_status); } &&
    39144348          { ac_try='test -s conftest$ac_exeext'
    39154349-  { (eval echo "$as_me:5387: \"$ac_try\"") >&5
    3916 +  { (eval echo "$as_me:5568: \"$ac_try\"") >&5
     4350+  { (eval echo "$as_me:5402: \"$ac_try\"") >&5
    39174351   (eval $ac_try) 2>&5
    39184352   ac_status=$?
    39194353-  echo "$as_me:5390: \$? = $ac_status" >&5
    3920 +  echo "$as_me:5571: \$? = $ac_status" >&5
     4354+  echo "$as_me:5405: \$? = $ac_status" >&5
    39214355   (exit $ac_status); }; }; then
    39224356   ac_cv_lib_gpm_Gpm_Open=yes
    39234357 else
    3924 @@ -5398,10 +5579,10 @@
     4358@@ -5398,10 +5413,10 @@
    39254359 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    39264360 LIBS=$ac_check_lib_save_LIBS
    39274361 fi
    39284362-echo "$as_me:5401: result: $ac_cv_lib_gpm_Gpm_Open" >&5
    3929 +echo "$as_me:5582: result: $ac_cv_lib_gpm_Gpm_Open" >&5
     4363+echo "$as_me:5416: result: $ac_cv_lib_gpm_Gpm_Open" >&5
    39304364 echo "${ECHO_T}$ac_cv_lib_gpm_Gpm_Open" >&6
    39314365 if test $ac_cv_lib_gpm_Gpm_Open = yes; then
    39324366-  echo "$as_me:5404: checking for initscr in -lgpm" >&5
    3933 +  echo "$as_me:5585: checking for initscr in -lgpm" >&5
     4367+  echo "$as_me:5419: checking for initscr in -lgpm" >&5
    39344368 echo $ECHO_N "checking for initscr in -lgpm... $ECHO_C" >&6
    39354369 if test "${ac_cv_lib_gpm_initscr+set}" = set; then
    39364370   echo $ECHO_N "(cached) $ECHO_C" >&6
    3937 @@ -5409,7 +5590,7 @@
     4371@@ -5409,7 +5424,7 @@
    39384372   ac_check_lib_save_LIBS=$LIBS
    39394373 LIBS="-lgpm  $LIBS"
    39404374 cat >conftest.$ac_ext <<_ACEOF
    39414375-#line 5412 "configure"
    3942 +#line 5593 "configure"
     4376+#line 5427 "configure"
    39434377 #include "confdefs.h"
    39444378 
    39454379 /* Override any gcc2 internal prototype to avoid an error.  */
    3946 @@ -5428,16 +5609,16 @@
     4380@@ -5428,16 +5443,16 @@
    39474381 }
    39484382 _ACEOF
    39494383 rm -f conftest.$ac_objext conftest$ac_exeext
    39504384-if { (eval echo "$as_me:5431: \"$ac_link\"") >&5
    3951 +if { (eval echo "$as_me:5612: \"$ac_link\"") >&5
     4385+if { (eval echo "$as_me:5446: \"$ac_link\"") >&5
    39524386   (eval $ac_link) 2>&5
    39534387   ac_status=$?
    39544388-  echo "$as_me:5434: \$? = $ac_status" >&5
    3955 +  echo "$as_me:5615: \$? = $ac_status" >&5
     4389+  echo "$as_me:5449: \$? = $ac_status" >&5
    39564390   (exit $ac_status); } &&
    39574391          { ac_try='test -s conftest$ac_exeext'
    39584392-  { (eval echo "$as_me:5437: \"$ac_try\"") >&5
    3959 +  { (eval echo "$as_me:5618: \"$ac_try\"") >&5
     4393+  { (eval echo "$as_me:5452: \"$ac_try\"") >&5
    39604394   (eval $ac_try) 2>&5
    39614395   ac_status=$?
    39624396-  echo "$as_me:5440: \$? = $ac_status" >&5
    3963 +  echo "$as_me:5621: \$? = $ac_status" >&5
     4397+  echo "$as_me:5455: \$? = $ac_status" >&5
    39644398   (exit $ac_status); }; }; then
    39654399   ac_cv_lib_gpm_initscr=yes
    39664400 else
    3967 @@ -5448,7 +5629,7 @@
     4401@@ -5448,7 +5463,7 @@
    39684402 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    39694403 LIBS=$ac_check_lib_save_LIBS
    39704404 fi
    39714405-echo "$as_me:5451: result: $ac_cv_lib_gpm_initscr" >&5
    3972 +echo "$as_me:5632: result: $ac_cv_lib_gpm_initscr" >&5
     4406+echo "$as_me:5466: result: $ac_cv_lib_gpm_initscr" >&5
    39734407 echo "${ECHO_T}$ac_cv_lib_gpm_initscr" >&6
    39744408 if test $ac_cv_lib_gpm_initscr = yes; then
    39754409   LIBS="$cf_ncurses_SAVE"
    3976 @@ -5463,7 +5644,7 @@
     4410@@ -5463,7 +5478,7 @@
    39774411        # This is only necessary if you are linking against an obsolete
    39784412        # version of ncurses (but it should do no harm, since it's static).
    39794413        if test "$cf_nculib_root" = ncurses ; then
    39804414-               echo "$as_me:5466: checking for tgoto in -lmytinfo" >&5
    3981 +               echo "$as_me:5647: checking for tgoto in -lmytinfo" >&5
     4415+               echo "$as_me:5481: checking for tgoto in -lmytinfo" >&5
    39824416 echo $ECHO_N "checking for tgoto in -lmytinfo... $ECHO_C" >&6
    39834417 if test "${ac_cv_lib_mytinfo_tgoto+set}" = set; then
    39844418   echo $ECHO_N "(cached) $ECHO_C" >&6
    3985 @@ -5471,7 +5652,7 @@
     4419@@ -5471,7 +5486,7 @@
    39864420   ac_check_lib_save_LIBS=$LIBS
    39874421 LIBS="-lmytinfo  $LIBS"
    39884422 cat >conftest.$ac_ext <<_ACEOF
    39894423-#line 5474 "configure"
    3990 +#line 5655 "configure"
     4424+#line 5489 "configure"
    39914425 #include "confdefs.h"
    39924426 
    39934427 /* Override any gcc2 internal prototype to avoid an error.  */
    3994 @@ -5490,16 +5671,16 @@
     4428@@ -5490,16 +5505,16 @@
    39954429 }
    39964430 _ACEOF
    39974431 rm -f conftest.$ac_objext conftest$ac_exeext
    39984432-if { (eval echo "$as_me:5493: \"$ac_link\"") >&5
    3999 +if { (eval echo "$as_me:5674: \"$ac_link\"") >&5
     4433+if { (eval echo "$as_me:5508: \"$ac_link\"") >&5
    40004434   (eval $ac_link) 2>&5
    40014435   ac_status=$?
    40024436-  echo "$as_me:5496: \$? = $ac_status" >&5
    4003 +  echo "$as_me:5677: \$? = $ac_status" >&5
     4437+  echo "$as_me:5511: \$? = $ac_status" >&5
    40044438   (exit $ac_status); } &&
    40054439          { ac_try='test -s conftest$ac_exeext'
    40064440-  { (eval echo "$as_me:5499: \"$ac_try\"") >&5
    4007 +  { (eval echo "$as_me:5680: \"$ac_try\"") >&5
     4441+  { (eval echo "$as_me:5514: \"$ac_try\"") >&5
    40084442   (eval $ac_try) 2>&5
    40094443   ac_status=$?
    40104444-  echo "$as_me:5502: \$? = $ac_status" >&5
    4011 +  echo "$as_me:5683: \$? = $ac_status" >&5
     4445+  echo "$as_me:5517: \$? = $ac_status" >&5
    40124446   (exit $ac_status); }; }; then
    40134447   ac_cv_lib_mytinfo_tgoto=yes
    40144448 else
    4015 @@ -5510,7 +5691,7 @@
     4449@@ -5510,7 +5525,7 @@
    40164450 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    40174451 LIBS=$ac_check_lib_save_LIBS
    40184452 fi
    40194453-echo "$as_me:5513: result: $ac_cv_lib_mytinfo_tgoto" >&5
    4020 +echo "$as_me:5694: result: $ac_cv_lib_mytinfo_tgoto" >&5
     4454+echo "$as_me:5528: result: $ac_cv_lib_mytinfo_tgoto" >&5
    40214455 echo "${ECHO_T}$ac_cv_lib_mytinfo_tgoto" >&6
    40224456 if test $ac_cv_lib_mytinfo_tgoto = yes; then
    40234457   cf_ncurses_LIBS="-lmytinfo $cf_ncurses_LIBS"
    4024 @@ -5529,13 +5710,13 @@
     4458@@ -5529,13 +5544,13 @@
    40254459 
    40264460        eval 'cf_cv_have_lib_'$cf_nculib_root'=no'
    40274461        cf_libdir=""
    40284462-       echo "$as_me:5532: checking for initscr" >&5
    4029 +       echo "$as_me:5713: checking for initscr" >&5
     4463+       echo "$as_me:5547: checking for initscr" >&5
    40304464 echo $ECHO_N "checking for initscr... $ECHO_C" >&6
    40314465 if test "${ac_cv_func_initscr+set}" = set; then
     
    40344468   cat >conftest.$ac_ext <<_ACEOF
    40354469-#line 5538 "configure"
    4036 +#line 5719 "configure"
     4470+#line 5553 "configure"
    40374471 #include "confdefs.h"
    40384472 /* System header to define __stub macros and hopefully few prototypes,
    40394473     which can conflict with char initscr (); below.  */
    4040 @@ -5566,16 +5747,16 @@
     4474@@ -5558,7 +5573,7 @@
     4475 #if defined (__stub_initscr) || defined (__stub___initscr)
     4476 choke me
     4477 #else
     4478-f = initscr;
     4479+f = initscr; /* workaround for ICC 12.0.3 */ if (f == 0) return 1;
     4480 #endif
     4481 
     4482   ;
     4483@@ -5566,16 +5581,16 @@
    40414484 }
    40424485 _ACEOF
    40434486 rm -f conftest.$ac_objext conftest$ac_exeext
    40444487-if { (eval echo "$as_me:5569: \"$ac_link\"") >&5
    4045 +if { (eval echo "$as_me:5750: \"$ac_link\"") >&5
     4488+if { (eval echo "$as_me:5584: \"$ac_link\"") >&5
    40464489   (eval $ac_link) 2>&5
    40474490   ac_status=$?
    40484491-  echo "$as_me:5572: \$? = $ac_status" >&5
    4049 +  echo "$as_me:5753: \$? = $ac_status" >&5
     4492+  echo "$as_me:5587: \$? = $ac_status" >&5
    40504493   (exit $ac_status); } &&
    40514494          { ac_try='test -s conftest$ac_exeext'
    40524495-  { (eval echo "$as_me:5575: \"$ac_try\"") >&5
    4053 +  { (eval echo "$as_me:5756: \"$ac_try\"") >&5
     4496+  { (eval echo "$as_me:5590: \"$ac_try\"") >&5
    40544497   (eval $ac_try) 2>&5
    40554498   ac_status=$?
    40564499-  echo "$as_me:5578: \$? = $ac_status" >&5
    4057 +  echo "$as_me:5759: \$? = $ac_status" >&5
     4500+  echo "$as_me:5593: \$? = $ac_status" >&5
    40584501   (exit $ac_status); }; }; then
    40594502   ac_cv_func_initscr=yes
    40604503 else
    4061 @@ -5585,18 +5766,18 @@
     4504@@ -5585,18 +5600,18 @@
    40624505 fi
    40634506 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    40644507 fi
    40654508-echo "$as_me:5588: result: $ac_cv_func_initscr" >&5
    4066 +echo "$as_me:5769: result: $ac_cv_func_initscr" >&5
     4509+echo "$as_me:5603: result: $ac_cv_func_initscr" >&5
    40674510 echo "${ECHO_T}$ac_cv_func_initscr" >&6
    40684511 if test $ac_cv_func_initscr = yes; then
     
    40724515                cf_save_LIBS="$LIBS"
    40734516-               echo "$as_me:5595: checking for initscr in -l$cf_nculib_root" >&5
    4074 +               echo "$as_me:5776: checking for initscr in -l$cf_nculib_root" >&5
     4517+               echo "$as_me:5610: checking for initscr in -l$cf_nculib_root" >&5
    40754518 echo $ECHO_N "checking for initscr in -l$cf_nculib_root... $ECHO_C" >&6
    40764519                LIBS="-l$cf_nculib_root $LIBS"
    40774520                cat >conftest.$ac_ext <<_ACEOF
    40784521-#line 5599 "configure"
    4079 +#line 5780 "configure"
     4522+#line 5614 "configure"
    40804523 #include "confdefs.h"
    40814524 #include <${cf_cv_ncurses_header:-curses.h}>
    40824525 int
    4083 @@ -5608,25 +5789,25 @@
     4526@@ -5608,25 +5623,25 @@
    40844527 }
    40854528 _ACEOF
    40864529 rm -f conftest.$ac_objext conftest$ac_exeext
    40874530-if { (eval echo "$as_me:5611: \"$ac_link\"") >&5
    4088 +if { (eval echo "$as_me:5792: \"$ac_link\"") >&5
     4531+if { (eval echo "$as_me:5626: \"$ac_link\"") >&5
    40894532   (eval $ac_link) 2>&5
    40904533   ac_status=$?
    40914534-  echo "$as_me:5614: \$? = $ac_status" >&5
    4092 +  echo "$as_me:5795: \$? = $ac_status" >&5
     4535+  echo "$as_me:5629: \$? = $ac_status" >&5
    40934536   (exit $ac_status); } &&
    40944537          { ac_try='test -s conftest$ac_exeext'
    40954538-  { (eval echo "$as_me:5617: \"$ac_try\"") >&5
    4096 +  { (eval echo "$as_me:5798: \"$ac_try\"") >&5
     4539+  { (eval echo "$as_me:5632: \"$ac_try\"") >&5
    40974540   (eval $ac_try) 2>&5
    40984541   ac_status=$?
    40994542-  echo "$as_me:5620: \$? = $ac_status" >&5
    4100 +  echo "$as_me:5801: \$? = $ac_status" >&5
     4543+  echo "$as_me:5635: \$? = $ac_status" >&5
    41014544   (exit $ac_status); }; }; then
    41024545-  echo "$as_me:5622: result: yes" >&5
    4103 +  echo "$as_me:5803: result: yes" >&5
     4546+  echo "$as_me:5637: result: yes" >&5
    41044547 echo "${ECHO_T}yes" >&6
    41054548                         eval 'cf_cv_have_lib_'$cf_nculib_root'=yes'
     
    41094552 cat conftest.$ac_ext >&5
    41104553-echo "$as_me:5629: result: no" >&5
    4111 +echo "$as_me:5810: result: no" >&5
     4554+echo "$as_me:5644: result: no" >&5
    41124555 echo "${ECHO_T}no" >&6
    41134556 
    41144557 cf_search=
    4115 @@ -5716,11 +5897,11 @@
     4558@@ -5716,11 +5731,11 @@
    41164559 
    41174560                        for cf_libdir in $cf_search
    41184561                        do
    41194562-                               echo "$as_me:5719: checking for -l$cf_nculib_root in $cf_libdir" >&5
    4120 +                               echo "$as_me:5900: checking for -l$cf_nculib_root in $cf_libdir" >&5
     4563+                               echo "$as_me:5734: checking for -l$cf_nculib_root in $cf_libdir" >&5
    41214564 echo $ECHO_N "checking for -l$cf_nculib_root in $cf_libdir... $ECHO_C" >&6
    41224565                                LIBS="-L$cf_libdir -l$cf_nculib_root $cf_save_LIBS"
    41234566                                cat >conftest.$ac_ext <<_ACEOF
    41244567-#line 5723 "configure"
    4125 +#line 5904 "configure"
     4568+#line 5738 "configure"
    41264569 #include "confdefs.h"
    41274570 #include <${cf_cv_ncurses_header:-curses.h}>
    41284571 int
    4129 @@ -5732,25 +5913,25 @@
     4572@@ -5732,25 +5747,25 @@
    41304573 }
    41314574 _ACEOF
    41324575 rm -f conftest.$ac_objext conftest$ac_exeext
    41334576-if { (eval echo "$as_me:5735: \"$ac_link\"") >&5
    4134 +if { (eval echo "$as_me:5916: \"$ac_link\"") >&5
     4577+if { (eval echo "$as_me:5750: \"$ac_link\"") >&5
    41354578   (eval $ac_link) 2>&5
    41364579   ac_status=$?
    41374580-  echo "$as_me:5738: \$? = $ac_status" >&5
    4138 +  echo "$as_me:5919: \$? = $ac_status" >&5
     4581+  echo "$as_me:5753: \$? = $ac_status" >&5
    41394582   (exit $ac_status); } &&
    41404583          { ac_try='test -s conftest$ac_exeext'
    41414584-  { (eval echo "$as_me:5741: \"$ac_try\"") >&5
    4142 +  { (eval echo "$as_me:5922: \"$ac_try\"") >&5
     4585+  { (eval echo "$as_me:5756: \"$ac_try\"") >&5
    41434586   (eval $ac_try) 2>&5
    41444587   ac_status=$?
    41454588-  echo "$as_me:5744: \$? = $ac_status" >&5
    4146 +  echo "$as_me:5925: \$? = $ac_status" >&5
     4589+  echo "$as_me:5759: \$? = $ac_status" >&5
    41474590   (exit $ac_status); }; }; then
    41484591-  echo "$as_me:5746: result: yes" >&5
    4149 +  echo "$as_me:5927: result: yes" >&5
     4592+  echo "$as_me:5761: result: yes" >&5
    41504593 echo "${ECHO_T}yes" >&6
    41514594                                         eval 'cf_cv_have_lib_'$cf_nculib_root'=yes'
     
    41554598 cat conftest.$ac_ext >&5
    41564599-echo "$as_me:5753: result: no" >&5
    4157 +echo "$as_me:5934: result: no" >&5
     4600+echo "$as_me:5768: result: no" >&5
    41584601 echo "${ECHO_T}no" >&6
    41594602                                         LIBS="$cf_save_LIBS"
    41604603 fi
    4161 @@ -5765,7 +5946,7 @@
     4604@@ -5765,7 +5780,7 @@
    41624605 eval 'cf_found_library=$cf_cv_have_lib_'$cf_nculib_root
    41634606 
    41644607 if test $cf_found_library = no ; then
    41654608-       { { echo "$as_me:5768: error: Cannot link $cf_nculib_root library" >&5
    4166 +       { { echo "$as_me:5949: error: Cannot link $cf_nculib_root library" >&5
     4609+       { { echo "$as_me:5783: error: Cannot link $cf_nculib_root library" >&5
    41674610 echo "$as_me: error: Cannot link $cf_nculib_root library" >&2;}
    41684611    { (exit 1); exit 1; }; }
    41694612 fi
    4170 @@ -5773,7 +5954,7 @@
     4613@@ -5773,7 +5788,7 @@
    41714614 fi
    41724615 
    41734616 if test -n "$cf_ncurses_LIBS" ; then
    41744617-       echo "$as_me:5776: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5
    4175 +       echo "$as_me:5957: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5
     4618+       echo "$as_me:5791: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5
    41764619 echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS... $ECHO_C" >&6
    41774620        cf_ncurses_SAVE="$LIBS"
    41784621        for p in $cf_ncurses_LIBS ; do
    4179 @@ -5783,7 +5964,7 @@
     4622@@ -5783,7 +5798,7 @@
    41804623                fi
    41814624        done
    41824625        cat >conftest.$ac_ext <<_ACEOF
    41834626-#line 5786 "configure"
    4184 +#line 5967 "configure"
     4627+#line 5801 "configure"
    41854628 #include "confdefs.h"
    41864629 #include <${cf_cv_ncurses_header:-curses.h}>
    41874630 int
    4188 @@ -5795,23 +5976,23 @@
     4631@@ -5795,23 +5810,23 @@
    41894632 }
    41904633 _ACEOF
    41914634 rm -f conftest.$ac_objext conftest$ac_exeext
    41924635-if { (eval echo "$as_me:5798: \"$ac_link\"") >&5
    4193 +if { (eval echo "$as_me:5979: \"$ac_link\"") >&5
     4636+if { (eval echo "$as_me:5813: \"$ac_link\"") >&5
    41944637   (eval $ac_link) 2>&5
    41954638   ac_status=$?
    41964639-  echo "$as_me:5801: \$? = $ac_status" >&5
    4197 +  echo "$as_me:5982: \$? = $ac_status" >&5
     4640+  echo "$as_me:5816: \$? = $ac_status" >&5
    41984641   (exit $ac_status); } &&
    41994642          { ac_try='test -s conftest$ac_exeext'
    42004643-  { (eval echo "$as_me:5804: \"$ac_try\"") >&5
    4201 +  { (eval echo "$as_me:5985: \"$ac_try\"") >&5
     4644+  { (eval echo "$as_me:5819: \"$ac_try\"") >&5
    42024645   (eval $ac_try) 2>&5
    42034646   ac_status=$?
    42044647-  echo "$as_me:5807: \$? = $ac_status" >&5
    4205 +  echo "$as_me:5988: \$? = $ac_status" >&5
     4648+  echo "$as_me:5822: \$? = $ac_status" >&5
    42064649   (exit $ac_status); }; }; then
    42074650-  echo "$as_me:5809: result: yes" >&5
    4208 +  echo "$as_me:5990: result: yes" >&5
     4651+  echo "$as_me:5824: result: yes" >&5
    42094652 echo "${ECHO_T}yes" >&6
    42104653 else
     
    42124655 cat conftest.$ac_ext >&5
    42134656-echo "$as_me:5814: result: no" >&5
    4214 +echo "$as_me:5995: result: no" >&5
     4657+echo "$as_me:5829: result: no" >&5
    42154658 echo "${ECHO_T}no" >&6
    42164659                 LIBS="$cf_ncurses_SAVE"
    42174660 fi
    4218 @@ -5831,48 +6012,87 @@
     4661@@ -5831,48 +5846,87 @@
    42194662 cf_ncuconfig_root=ncurses
    42204663 
     
    42274670+    # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
    42284671+set dummy $ac_tool_prefix$ac_prog; ac_word=$2
    4229 +echo "$as_me:6021: checking for $ac_word" >&5
     4672+echo "$as_me:5855: checking for $ac_word" >&5
    42304673+echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    42314674+if test "${ac_cv_prog_NCURSES_CONFIG+set}" = set; then
     
    42424685+  $as_executable_p "$ac_dir/$ac_word" || continue
    42434686+ac_cv_prog_NCURSES_CONFIG="$ac_tool_prefix$ac_prog"
    4244 +echo "$as_me:6036: found $ac_dir/$ac_word" >&5
     4687+echo "$as_me:5870: found $ac_dir/$ac_word" >&5
    42454688+break
    42464689+done
     
    42504693+NCURSES_CONFIG=$ac_cv_prog_NCURSES_CONFIG
    42514694+if test -n "$NCURSES_CONFIG"; then
    4252 +  echo "$as_me:6044: result: $NCURSES_CONFIG" >&5
     4695+  echo "$as_me:5878: result: $NCURSES_CONFIG" >&5
    42534696+echo "${ECHO_T}$NCURSES_CONFIG" >&6
    42544697+else
    4255 +  echo "$as_me:6047: result: no" >&5
     4698+  echo "$as_me:5881: result: no" >&5
    42564699+echo "${ECHO_T}no" >&6
    42574700+fi
     
    42674710 set dummy $ac_prog; ac_word=$2
    42684711-echo "$as_me:5838: checking for $ac_word" >&5
    4269 +echo "$as_me:6060: checking for $ac_word" >&5
     4712+echo "$as_me:5894: checking for $ac_word" >&5
    42704713 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    42714714-if test "${ac_cv_path_NCURSES_CONFIG+set}" = set; then
     
    42934736+  $as_executable_p "$ac_dir/$ac_word" || continue
    42944737+ac_cv_prog_ac_ct_NCURSES_CONFIG="$ac_prog"
    4295 +echo "$as_me:6075: found $ac_dir/$ac_word" >&5
     4738+echo "$as_me:5909: found $ac_dir/$ac_word" >&5
    42964739+break
    42974740 done
     
    43084751+ac_ct_NCURSES_CONFIG=$ac_cv_prog_ac_ct_NCURSES_CONFIG
    43094752+if test -n "$ac_ct_NCURSES_CONFIG"; then
    4310 +  echo "$as_me:6083: result: $ac_ct_NCURSES_CONFIG" >&5
     4753+  echo "$as_me:5917: result: $ac_ct_NCURSES_CONFIG" >&5
    43114754+echo "${ECHO_T}$ac_ct_NCURSES_CONFIG" >&6
    43124755 else
    43134756-  echo "$as_me:5869: result: no" >&5
    4314 +  echo "$as_me:6086: result: no" >&5
     4757+  echo "$as_me:5920: result: no" >&5
    43154758 echo "${ECHO_T}no" >&6
    43164759 fi
     
    43274770 if test "$NCURSES_CONFIG" != none ; then
    43284771 
    4329 @@ -5881,7 +6101,7 @@
     4772@@ -5881,7 +5935,7 @@
    43304773 
    43314774 # even with config script, some packages use no-override for curses.h
    43324775 
    43334776-echo "$as_me:5884: checking if we have identified curses headers" >&5
    4334 +echo "$as_me:6104: checking if we have identified curses headers" >&5
     4777+echo "$as_me:5938: checking if we have identified curses headers" >&5
    43354778 echo $ECHO_N "checking if we have identified curses headers... $ECHO_C" >&6
    43364779 if test "${cf_cv_ncurses_header+set}" = set; then
    43374780   echo $ECHO_N "(cached) $ECHO_C" >&6
    4338 @@ -5889,13 +6109,13 @@
     4781@@ -5889,13 +5943,13 @@
    43394782 
    43404783 cf_cv_ncurses_header=none
     
    43514794 cat >conftest.$ac_ext <<_ACEOF
    43524795-#line 5898 "configure"
    4353 +#line 6118 "configure"
     4796+#line 5952 "configure"
    43544797 #include "confdefs.h"
    43554798 #include <${cf_header}>
    43564799 int
    4357 @@ -5907,16 +6127,16 @@
     4800@@ -5907,16 +5961,16 @@
    43584801 }
    43594802 _ACEOF
    43604803 rm -f conftest.$ac_objext
    43614804-if { (eval echo "$as_me:5910: \"$ac_compile\"") >&5
    4362 +if { (eval echo "$as_me:6130: \"$ac_compile\"") >&5
     4805+if { (eval echo "$as_me:5964: \"$ac_compile\"") >&5
    43634806   (eval $ac_compile) 2>&5
    43644807   ac_status=$?
    43654808-  echo "$as_me:5913: \$? = $ac_status" >&5
    4366 +  echo "$as_me:6133: \$? = $ac_status" >&5
     4809+  echo "$as_me:5967: \$? = $ac_status" >&5
    43674810   (exit $ac_status); } &&
    43684811          { ac_try='test -s conftest.$ac_objext'
    43694812-  { (eval echo "$as_me:5916: \"$ac_try\"") >&5
    4370 +  { (eval echo "$as_me:6136: \"$ac_try\"") >&5
     4813+  { (eval echo "$as_me:5970: \"$ac_try\"") >&5
    43714814   (eval $ac_try) 2>&5
    43724815   ac_status=$?
    43734816-  echo "$as_me:5919: \$? = $ac_status" >&5
    4374 +  echo "$as_me:6139: \$? = $ac_status" >&5
     4817+  echo "$as_me:5973: \$? = $ac_status" >&5
    43754818   (exit $ac_status); }; }; then
    43764819   cf_cv_ncurses_header=$cf_header; break
    43774820 else
    4378 @@ -5927,11 +6147,11 @@
     4821@@ -5927,11 +5981,11 @@
    43794822 done
    43804823 
    43814824 fi
    43824825-echo "$as_me:5930: result: $cf_cv_ncurses_header" >&5
    4383 +echo "$as_me:6150: result: $cf_cv_ncurses_header" >&5
     4826+echo "$as_me:5984: result: $cf_cv_ncurses_header" >&5
    43844827 echo "${ECHO_T}$cf_cv_ncurses_header" >&6
    43854828 
    43864829 if test "$cf_cv_ncurses_header" = none ; then
    43874830-       { { echo "$as_me:5934: error: No curses header-files found" >&5
    4388 +       { { echo "$as_me:6154: error: No curses header-files found" >&5
     4831+       { { echo "$as_me:5988: error: No curses header-files found" >&5
    43894832 echo "$as_me: error: No curses header-files found" >&2;}
    43904833    { (exit 1); exit 1; }; }
    43914834 fi
    4392 @@ -5941,23 +6161,23 @@
     4835@@ -5941,23 +5995,23 @@
    43934836 for ac_header in $cf_cv_ncurses_header
    43944837 do
    43954838 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
    43964839-echo "$as_me:5944: checking for $ac_header" >&5
    4397 +echo "$as_me:6164: checking for $ac_header" >&5
     4840+echo "$as_me:5998: checking for $ac_header" >&5
    43984841 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
    43994842 if eval "test \"\${$as_ac_Header+set}\" = set"; then
     
    44024845   cat >conftest.$ac_ext <<_ACEOF
    44034846-#line 5950 "configure"
    4404 +#line 6170 "configure"
     4847+#line 6004 "configure"
    44054848 #include "confdefs.h"
    44064849 #include <$ac_header>
    44074850 _ACEOF
    44084851-if { (eval echo "$as_me:5954: \"$ac_cpp conftest.$ac_ext\"") >&5
    4409 +if { (eval echo "$as_me:6174: \"$ac_cpp conftest.$ac_ext\"") >&5
     4852+if { (eval echo "$as_me:6008: \"$ac_cpp conftest.$ac_ext\"") >&5
    44104853   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
    44114854   ac_status=$?
     
    44144857   cat conftest.err >&5
    44154858-  echo "$as_me:5960: \$? = $ac_status" >&5
    4416 +  echo "$as_me:6180: \$? = $ac_status" >&5
     4859+  echo "$as_me:6014: \$? = $ac_status" >&5
    44174860   (exit $ac_status); } >/dev/null; then
    44184861   if test -s conftest.err; then
    44194862     ac_cpp_err=$ac_c_preproc_warn_flag
    4420 @@ -5976,7 +6196,7 @@
     4863@@ -5976,7 +6030,7 @@
    44214864 fi
    44224865 rm -f conftest.err conftest.$ac_ext
    44234866 fi
    44244867-echo "$as_me:5979: result: `eval echo '${'$as_ac_Header'}'`" >&5
    4425 +echo "$as_me:6199: result: `eval echo '${'$as_ac_Header'}'`" >&5
     4868+echo "$as_me:6033: result: `eval echo '${'$as_ac_Header'}'`" >&5
    44264869 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
    44274870 if test `eval echo '${'$as_ac_Header'}'` = yes; then
    44284871   cat >>confdefs.h <<EOF
    4429 @@ -6029,7 +6249,7 @@
     4872@@ -6029,7 +6083,7 @@
    44304873                          cf_save_CPPFLAGS=$CPPFLAGS
    44314874                          CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
    44324875                          cat >conftest.$ac_ext <<_ACEOF
    44334876-#line 6032 "configure"
    4434 +#line 6252 "configure"
     4877+#line 6086 "configure"
    44354878 #include "confdefs.h"
    44364879 #include <stdio.h>
    44374880 int
    4438 @@ -6041,16 +6261,16 @@
     4881@@ -6041,16 +6095,16 @@
    44394882 }
    44404883 _ACEOF
    44414884 rm -f conftest.$ac_objext
    44424885-if { (eval echo "$as_me:6044: \"$ac_compile\"") >&5
    4443 +if { (eval echo "$as_me:6264: \"$ac_compile\"") >&5
     4886+if { (eval echo "$as_me:6098: \"$ac_compile\"") >&5
    44444887   (eval $ac_compile) 2>&5
    44454888   ac_status=$?
    44464889-  echo "$as_me:6047: \$? = $ac_status" >&5
    4447 +  echo "$as_me:6267: \$? = $ac_status" >&5
     4890+  echo "$as_me:6101: \$? = $ac_status" >&5
    44484891   (exit $ac_status); } &&
    44494892          { ac_try='test -s conftest.$ac_objext'
    44504893-  { (eval echo "$as_me:6050: \"$ac_try\"") >&5
    4451 +  { (eval echo "$as_me:6270: \"$ac_try\"") >&5
     4894+  { (eval echo "$as_me:6104: \"$ac_try\"") >&5
    44524895   (eval $ac_try) 2>&5
    44534896   ac_status=$?
    44544897-  echo "$as_me:6053: \$? = $ac_status" >&5
    4455 +  echo "$as_me:6273: \$? = $ac_status" >&5
     4898+  echo "$as_me:6107: \$? = $ac_status" >&5
    44564899   (exit $ac_status); }; }; then
    44574900   :
    44584901 else
    4459 @@ -6067,7 +6287,7 @@
     4902@@ -6067,7 +6121,7 @@
    44604903                if test "$cf_have_incdir" = no ; then
    44614904                  test -n "$verbose" && echo "  adding $cf_add_incdir to include-path" 1>&6
    44624905 
    44634906-echo "${as_me:-configure}:6070: testing adding $cf_add_incdir to include-path ..." 1>&5
    4464 +echo "${as_me:-configure}:6290: testing adding $cf_add_incdir to include-path ..." 1>&5
     4907+echo "${as_me:-configure}:6124: testing adding $cf_add_incdir to include-path ..." 1>&5
    44654908 
    44664909                  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
    44674910 
    4468 @@ -6084,7 +6304,7 @@
     4911@@ -6084,7 +6138,7 @@
    44694912 
    44704913 }
    44714914 
    44724915-echo "$as_me:6087: checking for $cf_ncuhdr_root header in include-path" >&5
    4473 +echo "$as_me:6307: checking for $cf_ncuhdr_root header in include-path" >&5
     4916+echo "$as_me:6141: checking for $cf_ncuhdr_root header in include-path" >&5
    44744917 echo $ECHO_N "checking for $cf_ncuhdr_root header in include-path... $ECHO_C" >&6
    44754918 if test "${cf_cv_ncurses_h+set}" = set; then
    44764919   echo $ECHO_N "(cached) $ECHO_C" >&6
    4477 @@ -6096,7 +6316,7 @@
     4920@@ -6096,7 +6150,7 @@
    44784921        do
    44794922 
    44804923        cat >conftest.$ac_ext <<_ACEOF
    44814924-#line 6099 "configure"
    4482 +#line 6319 "configure"
     4925+#line 6153 "configure"
    44834926 #include "confdefs.h"
    44844927 
    44854928 #include <$cf_header>
    4486 @@ -6120,16 +6340,16 @@
     4929@@ -6120,16 +6174,16 @@
    44874930 }
    44884931 _ACEOF
    44894932 rm -f conftest.$ac_objext
    44904933-if { (eval echo "$as_me:6123: \"$ac_compile\"") >&5
    4491 +if { (eval echo "$as_me:6343: \"$ac_compile\"") >&5
     4934+if { (eval echo "$as_me:6177: \"$ac_compile\"") >&5
    44924935   (eval $ac_compile) 2>&5
    44934936   ac_status=$?
    44944937-  echo "$as_me:6126: \$? = $ac_status" >&5
    4495 +  echo "$as_me:6346: \$? = $ac_status" >&5
     4938+  echo "$as_me:6180: \$? = $ac_status" >&5
    44964939   (exit $ac_status); } &&
    44974940          { ac_try='test -s conftest.$ac_objext'
    44984941-  { (eval echo "$as_me:6129: \"$ac_try\"") >&5
    4499 +  { (eval echo "$as_me:6349: \"$ac_try\"") >&5
     4942+  { (eval echo "$as_me:6183: \"$ac_try\"") >&5
    45004943   (eval $ac_try) 2>&5
    45014944   ac_status=$?
    45024945-  echo "$as_me:6132: \$? = $ac_status" >&5
    4503 +  echo "$as_me:6352: \$? = $ac_status" >&5
     4946+  echo "$as_me:6186: \$? = $ac_status" >&5
    45044947   (exit $ac_status); }; }; then
    45054948   cf_cv_ncurses_h=$cf_header
    45064949 
    4507 @@ -6144,14 +6364,14 @@
     4950@@ -6144,14 +6198,14 @@
    45084951        done
    45094952 
    45104953 fi
    45114954-echo "$as_me:6147: result: $cf_cv_ncurses_h" >&5
    4512 +echo "$as_me:6367: result: $cf_cv_ncurses_h" >&5
     4955+echo "$as_me:6201: result: $cf_cv_ncurses_h" >&5
    45134956 echo "${ECHO_T}$cf_cv_ncurses_h" >&6
    45144957 
     
    45184961 
    45194962-echo "$as_me:6154: checking for $cf_ncuhdr_root include-path" >&5
    4520 +echo "$as_me:6374: checking for $cf_ncuhdr_root include-path" >&5
     4963+echo "$as_me:6208: checking for $cf_ncuhdr_root include-path" >&5
    45214964 echo $ECHO_N "checking for $cf_ncuhdr_root include-path... $ECHO_C" >&6
    45224965 if test "${cf_cv_ncurses_h2+set}" = set; then
    45234966   echo $ECHO_N "(cached) $ECHO_C" >&6
    4524 @@ -6291,7 +6511,7 @@
     4967@@ -6291,7 +6345,7 @@
    45254968                          cf_save_CPPFLAGS=$CPPFLAGS
    45264969                          CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
    45274970                          cat >conftest.$ac_ext <<_ACEOF
    45284971-#line 6294 "configure"
    4529 +#line 6514 "configure"
     4972+#line 6348 "configure"
    45304973 #include "confdefs.h"
    45314974 #include <stdio.h>
    45324975 int
    4533 @@ -6303,16 +6523,16 @@
     4976@@ -6303,16 +6357,16 @@
    45344977 }
    45354978 _ACEOF
    45364979 rm -f conftest.$ac_objext
    45374980-if { (eval echo "$as_me:6306: \"$ac_compile\"") >&5
    4538 +if { (eval echo "$as_me:6526: \"$ac_compile\"") >&5
     4981+if { (eval echo "$as_me:6360: \"$ac_compile\"") >&5
    45394982   (eval $ac_compile) 2>&5
    45404983   ac_status=$?
    45414984-  echo "$as_me:6309: \$? = $ac_status" >&5
    4542 +  echo "$as_me:6529: \$? = $ac_status" >&5
     4985+  echo "$as_me:6363: \$? = $ac_status" >&5
    45434986   (exit $ac_status); } &&
    45444987          { ac_try='test -s conftest.$ac_objext'
    45454988-  { (eval echo "$as_me:6312: \"$ac_try\"") >&5
    4546 +  { (eval echo "$as_me:6532: \"$ac_try\"") >&5
     4989+  { (eval echo "$as_me:6366: \"$ac_try\"") >&5
    45474990   (eval $ac_try) 2>&5
    45484991   ac_status=$?
    45494992-  echo "$as_me:6315: \$? = $ac_status" >&5
    4550 +  echo "$as_me:6535: \$? = $ac_status" >&5
     4993+  echo "$as_me:6369: \$? = $ac_status" >&5
    45514994   (exit $ac_status); }; }; then
    45524995   :
    45534996 else
    4554 @@ -6329,7 +6549,7 @@
     4997@@ -6329,7 +6383,7 @@
    45554998                if test "$cf_have_incdir" = no ; then
    45564999                  test -n "$verbose" && echo "  adding $cf_add_incdir to include-path" 1>&6
    45575000 
    45585001-echo "${as_me:-configure}:6332: testing adding $cf_add_incdir to include-path ..." 1>&5
    4559 +echo "${as_me:-configure}:6552: testing adding $cf_add_incdir to include-path ..." 1>&5
     5002+echo "${as_me:-configure}:6386: testing adding $cf_add_incdir to include-path ..." 1>&5
    45605003 
    45615004                  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
    45625005 
    4563 @@ -6350,7 +6570,7 @@
     5006@@ -6350,7 +6404,7 @@
    45645007                do
    45655008 
    45665009        cat >conftest.$ac_ext <<_ACEOF
    45675010-#line 6353 "configure"
    4568 +#line 6573 "configure"
     5011+#line 6407 "configure"
    45695012 #include "confdefs.h"
    45705013 
    45715014 #include <$cf_header>
    4572 @@ -6374,16 +6594,16 @@
     5015@@ -6374,16 +6428,16 @@
    45735016 }
    45745017 _ACEOF
    45755018 rm -f conftest.$ac_objext
    45765019-if { (eval echo "$as_me:6377: \"$ac_compile\"") >&5
    4577 +if { (eval echo "$as_me:6597: \"$ac_compile\"") >&5
     5020+if { (eval echo "$as_me:6431: \"$ac_compile\"") >&5
    45785021   (eval $ac_compile) 2>&5
    45795022   ac_status=$?
    45805023-  echo "$as_me:6380: \$? = $ac_status" >&5
    4581 +  echo "$as_me:6600: \$? = $ac_status" >&5
     5024+  echo "$as_me:6434: \$? = $ac_status" >&5
    45825025   (exit $ac_status); } &&
    45835026          { ac_try='test -s conftest.$ac_objext'
    45845027-  { (eval echo "$as_me:6383: \"$ac_try\"") >&5
    4585 +  { (eval echo "$as_me:6603: \"$ac_try\"") >&5
     5028+  { (eval echo "$as_me:6437: \"$ac_try\"") >&5
    45865029   (eval $ac_try) 2>&5
    45875030   ac_status=$?
    45885031-  echo "$as_me:6386: \$? = $ac_status" >&5
    4589 +  echo "$as_me:6606: \$? = $ac_status" >&5
     5032+  echo "$as_me:6440: \$? = $ac_status" >&5
    45905033   (exit $ac_status); }; }; then
    45915034   cf_cv_ncurses_h2=$cf_header
    45925035 
    4593 @@ -6404,12 +6624,12 @@
     5036@@ -6404,12 +6458,12 @@
    45945037                CPPFLAGS="$cf_save2_CPPFLAGS"
    45955038                test "$cf_cv_ncurses_h2" != no && break
    45965039        done
    45975040-       test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:6407: error: not found" >&5
    4598 +       test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:6627: error: not found" >&5
     5041+       test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:6461: error: not found" >&5
    45995042 echo "$as_me: error: not found" >&2;}
    46005043    { (exit 1); exit 1; }; }
     
    46025045 fi
    46035046-echo "$as_me:6412: result: $cf_cv_ncurses_h2" >&5
    4604 +echo "$as_me:6632: result: $cf_cv_ncurses_h2" >&5
     5047+echo "$as_me:6466: result: $cf_cv_ncurses_h2" >&5
    46055048 echo "${ECHO_T}$cf_cv_ncurses_h2" >&6
    46065049 
    46075050        cf_1st_incdir=`echo $cf_cv_ncurses_h2 | sed -e 's%/[^/]*$%%'`
    4608 @@ -6442,7 +6662,7 @@
     5051@@ -6442,7 +6496,7 @@
    46095052                          cf_save_CPPFLAGS=$CPPFLAGS
    46105053                          CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
    46115054                          cat >conftest.$ac_ext <<_ACEOF
    46125055-#line 6445 "configure"
    4613 +#line 6665 "configure"
     5056+#line 6499 "configure"
    46145057 #include "confdefs.h"
    46155058 #include <stdio.h>
    46165059 int
    4617 @@ -6454,16 +6674,16 @@
     5060@@ -6454,16 +6508,16 @@
    46185061 }
    46195062 _ACEOF
    46205063 rm -f conftest.$ac_objext
    46215064-if { (eval echo "$as_me:6457: \"$ac_compile\"") >&5
    4622 +if { (eval echo "$as_me:6677: \"$ac_compile\"") >&5
     5065+if { (eval echo "$as_me:6511: \"$ac_compile\"") >&5
    46235066   (eval $ac_compile) 2>&5
    46245067   ac_status=$?
    46255068-  echo "$as_me:6460: \$? = $ac_status" >&5
    4626 +  echo "$as_me:6680: \$? = $ac_status" >&5
     5069+  echo "$as_me:6514: \$? = $ac_status" >&5
    46275070   (exit $ac_status); } &&
    46285071          { ac_try='test -s conftest.$ac_objext'
    46295072-  { (eval echo "$as_me:6463: \"$ac_try\"") >&5
    4630 +  { (eval echo "$as_me:6683: \"$ac_try\"") >&5
     5073+  { (eval echo "$as_me:6517: \"$ac_try\"") >&5
    46315074   (eval $ac_try) 2>&5
    46325075   ac_status=$?
    46335076-  echo "$as_me:6466: \$? = $ac_status" >&5
    4634 +  echo "$as_me:6686: \$? = $ac_status" >&5
     5077+  echo "$as_me:6520: \$? = $ac_status" >&5
    46355078   (exit $ac_status); }; }; then
    46365079   :
    46375080 else
    4638 @@ -6480,7 +6700,7 @@
     5081@@ -6480,7 +6534,7 @@
    46395082                if test "$cf_have_incdir" = no ; then
    46405083                  test -n "$verbose" && echo "  adding $cf_add_incdir to include-path" 1>&6
    46415084 
    46425085-echo "${as_me:-configure}:6483: testing adding $cf_add_incdir to include-path ..." 1>&5
    4643 +echo "${as_me:-configure}:6703: testing adding $cf_add_incdir to include-path ..." 1>&5
     5086+echo "${as_me:-configure}:6537: testing adding $cf_add_incdir to include-path ..." 1>&5
    46445087 
    46455088                  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
    46465089 
    4647 @@ -6523,7 +6743,7 @@
     5090@@ -6523,7 +6577,7 @@
    46485091        ;;
    46495092 esac
    46505093 
    46515094-echo "$as_me:6526: checking for terminfo header" >&5
    4652 +echo "$as_me:6746: checking for terminfo header" >&5
     5095+echo "$as_me:6580: checking for terminfo header" >&5
    46535096 echo $ECHO_N "checking for terminfo header... $ECHO_C" >&6
    46545097 if test "${cf_cv_term_header+set}" = set; then
    46555098   echo $ECHO_N "(cached) $ECHO_C" >&6
    4656 @@ -6541,7 +6761,7 @@
     5099@@ -6541,7 +6595,7 @@
    46575100 for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h"
    46585101 do
    46595102 cat >conftest.$ac_ext <<_ACEOF
    46605103-#line 6544 "configure"
    4661 +#line 6764 "configure"
     5104+#line 6598 "configure"
    46625105 #include "confdefs.h"
    46635106 #include <stdio.h>
    46645107 #include <${cf_cv_ncurses_header:-curses.h}>
    4665 @@ -6556,16 +6776,16 @@
     5108@@ -6556,16 +6610,16 @@
    46665109 }
    46675110 _ACEOF
    46685111 rm -f conftest.$ac_objext
    46695112-if { (eval echo "$as_me:6559: \"$ac_compile\"") >&5
    4670 +if { (eval echo "$as_me:6779: \"$ac_compile\"") >&5
     5113+if { (eval echo "$as_me:6613: \"$ac_compile\"") >&5
    46715114   (eval $ac_compile) 2>&5
    46725115   ac_status=$?
    46735116-  echo "$as_me:6562: \$? = $ac_status" >&5
    4674 +  echo "$as_me:6782: \$? = $ac_status" >&5
     5117+  echo "$as_me:6616: \$? = $ac_status" >&5
    46755118   (exit $ac_status); } &&
    46765119          { ac_try='test -s conftest.$ac_objext'
    46775120-  { (eval echo "$as_me:6565: \"$ac_try\"") >&5
    4678 +  { (eval echo "$as_me:6785: \"$ac_try\"") >&5
     5121+  { (eval echo "$as_me:6619: \"$ac_try\"") >&5
    46795122   (eval $ac_try) 2>&5
    46805123   ac_status=$?
    46815124-  echo "$as_me:6568: \$? = $ac_status" >&5
    4682 +  echo "$as_me:6788: \$? = $ac_status" >&5
     5125+  echo "$as_me:6622: \$? = $ac_status" >&5
    46835126   (exit $ac_status); }; }; then
    46845127 
    46855128        cf_cv_term_header="$cf_test"
    4686 @@ -6581,7 +6801,7 @@
     5129@@ -6581,7 +6635,7 @@
    46875130 done
    46885131 
    46895132 fi
    46905133-echo "$as_me:6584: result: $cf_cv_term_header" >&5
    4691 +echo "$as_me:6804: result: $cf_cv_term_header" >&5
     5134+echo "$as_me:6638: result: $cf_cv_term_header" >&5
    46925135 echo "${ECHO_T}$cf_cv_term_header" >&6
    46935136 
    46945137 # Set definitions to allow ifdef'ing to accommodate subdirectories
    4695 @@ -6615,7 +6835,7 @@
     5138@@ -6615,7 +6669,7 @@
    46965139 #define NCURSES 1
    46975140 EOF
    46985141 
    46995142-echo "$as_me:6618: checking for ncurses version" >&5
    4700 +echo "$as_me:6838: checking for ncurses version" >&5
     5143+echo "$as_me:6672: checking for ncurses version" >&5
    47015144 echo $ECHO_N "checking for ncurses version... $ECHO_C" >&6
    47025145 if test "${cf_cv_ncurses_version+set}" = set; then
    47035146   echo $ECHO_N "(cached) $ECHO_C" >&6
    4704 @@ -6641,10 +6861,10 @@
     5147@@ -6641,10 +6695,10 @@
    47055148 #endif
    47065149 EOF
    47075150        cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out"
    47085151-       { (eval echo "$as_me:6644: \"$cf_try\"") >&5
    4709 +       { (eval echo "$as_me:6864: \"$cf_try\"") >&5
     5152+       { (eval echo "$as_me:6698: \"$cf_try\"") >&5
    47105153   (eval $cf_try) 2>&5
    47115154   ac_status=$?
    47125155-  echo "$as_me:6647: \$? = $ac_status" >&5
    4713 +  echo "$as_me:6867: \$? = $ac_status" >&5
     5156+  echo "$as_me:6701: \$? = $ac_status" >&5
    47145157   (exit $ac_status); }
    47155158        if test -f conftest.out ; then
    47165159                cf_out=`cat conftest.out | sed -e 's%^Autoconf %%' -e 's%^[^"]*"%%' -e 's%".*%%'`
    4717 @@ -6654,7 +6874,7 @@
     5160@@ -6654,7 +6708,7 @@
    47185161 
    47195162 else
    47205163   cat >conftest.$ac_ext <<_ACEOF
    47215164-#line 6657 "configure"
    4722 +#line 6877 "configure"
     5165+#line 6711 "configure"
    47235166 #include "confdefs.h"
    47245167 
    47255168 #include <${cf_cv_ncurses_header:-curses.h}>
    4726 @@ -6679,15 +6899,15 @@
     5169@@ -6679,15 +6733,15 @@
    47275170 }
    47285171 _ACEOF
    47295172 rm -f conftest$ac_exeext
    47305173-if { (eval echo "$as_me:6682: \"$ac_link\"") >&5
    4731 +if { (eval echo "$as_me:6902: \"$ac_link\"") >&5
     5174+if { (eval echo "$as_me:6736: \"$ac_link\"") >&5
    47325175   (eval $ac_link) 2>&5
    47335176   ac_status=$?
    47345177-  echo "$as_me:6685: \$? = $ac_status" >&5
    4735 +  echo "$as_me:6905: \$? = $ac_status" >&5
     5178+  echo "$as_me:6739: \$? = $ac_status" >&5
    47365179   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
    47375180-  { (eval echo "$as_me:6687: \"$ac_try\"") >&5
    4738 +  { (eval echo "$as_me:6907: \"$ac_try\"") >&5
     5181+  { (eval echo "$as_me:6741: \"$ac_try\"") >&5
    47395182   (eval $ac_try) 2>&5
    47405183   ac_status=$?
    47415184-  echo "$as_me:6690: \$? = $ac_status" >&5
    4742 +  echo "$as_me:6910: \$? = $ac_status" >&5
     5185+  echo "$as_me:6744: \$? = $ac_status" >&5
    47435186   (exit $ac_status); }; }; then
    47445187 
    47455188        cf_cv_ncurses_version=`cat $cf_tempfile`
    4746 @@ -6701,7 +6921,7 @@
     5189@@ -6701,7 +6755,7 @@
    47475190        rm -f $cf_tempfile
    47485191 
    47495192 fi
    47505193-echo "$as_me:6704: result: $cf_cv_ncurses_version" >&5
    4751 +echo "$as_me:6924: result: $cf_cv_ncurses_version" >&5
     5194+echo "$as_me:6758: result: $cf_cv_ncurses_version" >&5
    47525195 echo "${ECHO_T}$cf_cv_ncurses_version" >&6
    47535196 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF
    47545197 #define NCURSES 1
    4755 @@ -6713,7 +6933,7 @@
     5198@@ -6713,7 +6767,7 @@
    47565199        # to link gpm.
    47575200 cf_ncurses_LIBS=""
    47585201 cf_ncurses_SAVE="$LIBS"
    47595202-echo "$as_me:6716: checking for Gpm_Open in -lgpm" >&5
    4760 +echo "$as_me:6936: checking for Gpm_Open in -lgpm" >&5
     5203+echo "$as_me:6770: checking for Gpm_Open in -lgpm" >&5
    47615204 echo $ECHO_N "checking for Gpm_Open in -lgpm... $ECHO_C" >&6
    47625205 if test "${ac_cv_lib_gpm_Gpm_Open+set}" = set; then
    47635206   echo $ECHO_N "(cached) $ECHO_C" >&6
    4764 @@ -6721,7 +6941,7 @@
     5207@@ -6721,7 +6775,7 @@
    47655208   ac_check_lib_save_LIBS=$LIBS
    47665209 LIBS="-lgpm  $LIBS"
    47675210 cat >conftest.$ac_ext <<_ACEOF
    47685211-#line 6724 "configure"
    4769 +#line 6944 "configure"
     5212+#line 6778 "configure"
    47705213 #include "confdefs.h"
    47715214 
    47725215 /* Override any gcc2 internal prototype to avoid an error.  */
    4773 @@ -6740,16 +6960,16 @@
     5216@@ -6740,16 +6794,16 @@
    47745217 }
    47755218 _ACEOF
    47765219 rm -f conftest.$ac_objext conftest$ac_exeext
    47775220-if { (eval echo "$as_me:6743: \"$ac_link\"") >&5
    4778 +if { (eval echo "$as_me:6963: \"$ac_link\"") >&5
     5221+if { (eval echo "$as_me:6797: \"$ac_link\"") >&5
    47795222   (eval $ac_link) 2>&5
    47805223   ac_status=$?
    47815224-  echo "$as_me:6746: \$? = $ac_status" >&5
    4782 +  echo "$as_me:6966: \$? = $ac_status" >&5
     5225+  echo "$as_me:6800: \$? = $ac_status" >&5
    47835226   (exit $ac_status); } &&
    47845227          { ac_try='test -s conftest$ac_exeext'
    47855228-  { (eval echo "$as_me:6749: \"$ac_try\"") >&5
    4786 +  { (eval echo "$as_me:6969: \"$ac_try\"") >&5
     5229+  { (eval echo "$as_me:6803: \"$ac_try\"") >&5
    47875230   (eval $ac_try) 2>&5
    47885231   ac_status=$?
    47895232-  echo "$as_me:6752: \$? = $ac_status" >&5
    4790 +  echo "$as_me:6972: \$? = $ac_status" >&5
     5233+  echo "$as_me:6806: \$? = $ac_status" >&5
    47915234   (exit $ac_status); }; }; then
    47925235   ac_cv_lib_gpm_Gpm_Open=yes
    47935236 else
    4794 @@ -6760,10 +6980,10 @@
     5237@@ -6760,10 +6814,10 @@
    47955238 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    47965239 LIBS=$ac_check_lib_save_LIBS
    47975240 fi
    47985241-echo "$as_me:6763: result: $ac_cv_lib_gpm_Gpm_Open" >&5
    4799 +echo "$as_me:6983: result: $ac_cv_lib_gpm_Gpm_Open" >&5
     5242+echo "$as_me:6817: result: $ac_cv_lib_gpm_Gpm_Open" >&5
    48005243 echo "${ECHO_T}$ac_cv_lib_gpm_Gpm_Open" >&6
    48015244 if test $ac_cv_lib_gpm_Gpm_Open = yes; then
    48025245-  echo "$as_me:6766: checking for initscr in -lgpm" >&5
    4803 +  echo "$as_me:6986: checking for initscr in -lgpm" >&5
     5246+  echo "$as_me:6820: checking for initscr in -lgpm" >&5
    48045247 echo $ECHO_N "checking for initscr in -lgpm... $ECHO_C" >&6
    48055248 if test "${ac_cv_lib_gpm_initscr+set}" = set; then
    48065249   echo $ECHO_N "(cached) $ECHO_C" >&6
    4807 @@ -6771,7 +6991,7 @@
     5250@@ -6771,7 +6825,7 @@
    48085251   ac_check_lib_save_LIBS=$LIBS
    48095252 LIBS="-lgpm  $LIBS"
    48105253 cat >conftest.$ac_ext <<_ACEOF
    48115254-#line 6774 "configure"
    4812 +#line 6994 "configure"
     5255+#line 6828 "configure"
    48135256 #include "confdefs.h"
    48145257 
    48155258 /* Override any gcc2 internal prototype to avoid an error.  */
    4816 @@ -6790,16 +7010,16 @@
     5259@@ -6790,16 +6844,16 @@
    48175260 }
    48185261 _ACEOF
    48195262 rm -f conftest.$ac_objext conftest$ac_exeext
    48205263-if { (eval echo "$as_me:6793: \"$ac_link\"") >&5
    4821 +if { (eval echo "$as_me:7013: \"$ac_link\"") >&5
     5264+if { (eval echo "$as_me:6847: \"$ac_link\"") >&5
    48225265   (eval $ac_link) 2>&5
    48235266   ac_status=$?
    48245267-  echo "$as_me:6796: \$? = $ac_status" >&5
    4825 +  echo "$as_me:7016: \$? = $ac_status" >&5
     5268+  echo "$as_me:6850: \$? = $ac_status" >&5
    48265269   (exit $ac_status); } &&
    48275270          { ac_try='test -s conftest$ac_exeext'
    48285271-  { (eval echo "$as_me:6799: \"$ac_try\"") >&5
    4829 +  { (eval echo "$as_me:7019: \"$ac_try\"") >&5
     5272+  { (eval echo "$as_me:6853: \"$ac_try\"") >&5
    48305273   (eval $ac_try) 2>&5
    48315274   ac_status=$?
    48325275-  echo "$as_me:6802: \$? = $ac_status" >&5
    4833 +  echo "$as_me:7022: \$? = $ac_status" >&5
     5276+  echo "$as_me:6856: \$? = $ac_status" >&5
    48345277   (exit $ac_status); }; }; then
    48355278   ac_cv_lib_gpm_initscr=yes
    48365279 else
    4837 @@ -6810,7 +7030,7 @@
     5280@@ -6810,7 +6864,7 @@
    48385281 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    48395282 LIBS=$ac_check_lib_save_LIBS
    48405283 fi
    48415284-echo "$as_me:6813: result: $ac_cv_lib_gpm_initscr" >&5
    4842 +echo "$as_me:7033: result: $ac_cv_lib_gpm_initscr" >&5
     5285+echo "$as_me:6867: result: $ac_cv_lib_gpm_initscr" >&5
    48435286 echo "${ECHO_T}$ac_cv_lib_gpm_initscr" >&6
    48445287 if test $ac_cv_lib_gpm_initscr = yes; then
    48455288   LIBS="$cf_ncurses_SAVE"
    4846 @@ -6825,7 +7045,7 @@
     5289@@ -6825,7 +6879,7 @@
    48475290        # This is only necessary if you are linking against an obsolete
    48485291        # version of ncurses (but it should do no harm, since it's static).
    48495292        if test "$cf_nculib_root" = ncurses ; then
    48505293-               echo "$as_me:6828: checking for tgoto in -lmytinfo" >&5
    4851 +               echo "$as_me:7048: checking for tgoto in -lmytinfo" >&5
     5294+               echo "$as_me:6882: checking for tgoto in -lmytinfo" >&5
    48525295 echo $ECHO_N "checking for tgoto in -lmytinfo... $ECHO_C" >&6
    48535296 if test "${ac_cv_lib_mytinfo_tgoto+set}" = set; then
    48545297   echo $ECHO_N "(cached) $ECHO_C" >&6
    4855 @@ -6833,7 +7053,7 @@
     5298@@ -6833,7 +6887,7 @@
    48565299   ac_check_lib_save_LIBS=$LIBS
    48575300 LIBS="-lmytinfo  $LIBS"
    48585301 cat >conftest.$ac_ext <<_ACEOF
    48595302-#line 6836 "configure"
    4860 +#line 7056 "configure"
     5303+#line 6890 "configure"
    48615304 #include "confdefs.h"
    48625305 
    48635306 /* Override any gcc2 internal prototype to avoid an error.  */
    4864 @@ -6852,16 +7072,16 @@
     5307@@ -6852,16 +6906,16 @@
    48655308 }
    48665309 _ACEOF
    48675310 rm -f conftest.$ac_objext conftest$ac_exeext
    48685311-if { (eval echo "$as_me:6855: \"$ac_link\"") >&5
    4869 +if { (eval echo "$as_me:7075: \"$ac_link\"") >&5
     5312+if { (eval echo "$as_me:6909: \"$ac_link\"") >&5
    48705313   (eval $ac_link) 2>&5
    48715314   ac_status=$?
    48725315-  echo "$as_me:6858: \$? = $ac_status" >&5
    4873 +  echo "$as_me:7078: \$? = $ac_status" >&5
     5316+  echo "$as_me:6912: \$? = $ac_status" >&5
    48745317   (exit $ac_status); } &&
    48755318          { ac_try='test -s conftest$ac_exeext'
    48765319-  { (eval echo "$as_me:6861: \"$ac_try\"") >&5
    4877 +  { (eval echo "$as_me:7081: \"$ac_try\"") >&5
     5320+  { (eval echo "$as_me:6915: \"$ac_try\"") >&5
    48785321   (eval $ac_try) 2>&5
    48795322   ac_status=$?
    48805323-  echo "$as_me:6864: \$? = $ac_status" >&5
    4881 +  echo "$as_me:7084: \$? = $ac_status" >&5
     5324+  echo "$as_me:6918: \$? = $ac_status" >&5
    48825325   (exit $ac_status); }; }; then
    48835326   ac_cv_lib_mytinfo_tgoto=yes
    48845327 else
    4885 @@ -6872,7 +7092,7 @@
     5328@@ -6872,7 +6926,7 @@
    48865329 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    48875330 LIBS=$ac_check_lib_save_LIBS
    48885331 fi
    48895332-echo "$as_me:6875: result: $ac_cv_lib_mytinfo_tgoto" >&5
    4890 +echo "$as_me:7095: result: $ac_cv_lib_mytinfo_tgoto" >&5
     5333+echo "$as_me:6929: result: $ac_cv_lib_mytinfo_tgoto" >&5
    48915334 echo "${ECHO_T}$ac_cv_lib_mytinfo_tgoto" >&6
    48925335 if test $ac_cv_lib_mytinfo_tgoto = yes; then
    48935336   cf_ncurses_LIBS="-lmytinfo $cf_ncurses_LIBS"
    4894 @@ -6891,13 +7111,13 @@
     5337@@ -6891,13 +6945,13 @@
    48955338 
    48965339        eval 'cf_cv_have_lib_'$cf_nculib_root'=no'
    48975340        cf_libdir=""
    48985341-       echo "$as_me:6894: checking for initscr" >&5
    4899 +       echo "$as_me:7114: checking for initscr" >&5
     5342+       echo "$as_me:6948: checking for initscr" >&5
    49005343 echo $ECHO_N "checking for initscr... $ECHO_C" >&6
    49015344 if test "${ac_cv_func_initscr+set}" = set; then
     
    49045347   cat >conftest.$ac_ext <<_ACEOF
    49055348-#line 6900 "configure"
    4906 +#line 7120 "configure"
     5349+#line 6954 "configure"
    49075350 #include "confdefs.h"
    49085351 /* System header to define __stub macros and hopefully few prototypes,
    49095352     which can conflict with char initscr (); below.  */
    4910 @@ -6928,16 +7148,16 @@
     5353@@ -6920,7 +6974,7 @@
     5354 #if defined (__stub_initscr) || defined (__stub___initscr)
     5355 choke me
     5356 #else
     5357-f = initscr;
     5358+f = initscr; /* workaround for ICC 12.0.3 */ if (f == 0) return 1;
     5359 #endif
     5360 
     5361   ;
     5362@@ -6928,16 +6982,16 @@
    49115363 }
    49125364 _ACEOF
    49135365 rm -f conftest.$ac_objext conftest$ac_exeext
    49145366-if { (eval echo "$as_me:6931: \"$ac_link\"") >&5
    4915 +if { (eval echo "$as_me:7151: \"$ac_link\"") >&5
     5367+if { (eval echo "$as_me:6985: \"$ac_link\"") >&5
    49165368   (eval $ac_link) 2>&5
    49175369   ac_status=$?
    49185370-  echo "$as_me:6934: \$? = $ac_status" >&5
    4919 +  echo "$as_me:7154: \$? = $ac_status" >&5
     5371+  echo "$as_me:6988: \$? = $ac_status" >&5
    49205372   (exit $ac_status); } &&
    49215373          { ac_try='test -s conftest$ac_exeext'
    49225374-  { (eval echo "$as_me:6937: \"$ac_try\"") >&5
    4923 +  { (eval echo "$as_me:7157: \"$ac_try\"") >&5
     5375+  { (eval echo "$as_me:6991: \"$ac_try\"") >&5
    49245376   (eval $ac_try) 2>&5
    49255377   ac_status=$?
    49265378-  echo "$as_me:6940: \$? = $ac_status" >&5
    4927 +  echo "$as_me:7160: \$? = $ac_status" >&5
     5379+  echo "$as_me:6994: \$? = $ac_status" >&5
    49285380   (exit $ac_status); }; }; then
    49295381   ac_cv_func_initscr=yes
    49305382 else
    4931 @@ -6947,18 +7167,18 @@
     5383@@ -6947,18 +7001,18 @@
    49325384 fi
    49335385 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    49345386 fi
    49355387-echo "$as_me:6950: result: $ac_cv_func_initscr" >&5
    4936 +echo "$as_me:7170: result: $ac_cv_func_initscr" >&5
     5388+echo "$as_me:7004: result: $ac_cv_func_initscr" >&5
    49375389 echo "${ECHO_T}$ac_cv_func_initscr" >&6
    49385390 if test $ac_cv_func_initscr = yes; then
     
    49425394                cf_save_LIBS="$LIBS"
    49435395-               echo "$as_me:6957: checking for initscr in -l$cf_nculib_root" >&5
    4944 +               echo "$as_me:7177: checking for initscr in -l$cf_nculib_root" >&5
     5396+               echo "$as_me:7011: checking for initscr in -l$cf_nculib_root" >&5
    49455397 echo $ECHO_N "checking for initscr in -l$cf_nculib_root... $ECHO_C" >&6
    49465398                LIBS="-l$cf_nculib_root $LIBS"
    49475399                cat >conftest.$ac_ext <<_ACEOF
    49485400-#line 6961 "configure"
    4949 +#line 7181 "configure"
     5401+#line 7015 "configure"
    49505402 #include "confdefs.h"
    49515403 #include <${cf_cv_ncurses_header:-curses.h}>
    49525404 int
    4953 @@ -6970,25 +7190,25 @@
     5405@@ -6970,25 +7024,25 @@
    49545406 }
    49555407 _ACEOF
    49565408 rm -f conftest.$ac_objext conftest$ac_exeext
    49575409-if { (eval echo "$as_me:6973: \"$ac_link\"") >&5
    4958 +if { (eval echo "$as_me:7193: \"$ac_link\"") >&5
     5410+if { (eval echo "$as_me:7027: \"$ac_link\"") >&5
    49595411   (eval $ac_link) 2>&5
    49605412   ac_status=$?
    49615413-  echo "$as_me:6976: \$? = $ac_status" >&5
    4962 +  echo "$as_me:7196: \$? = $ac_status" >&5
     5414+  echo "$as_me:7030: \$? = $ac_status" >&5
    49635415   (exit $ac_status); } &&
    49645416          { ac_try='test -s conftest$ac_exeext'
    49655417-  { (eval echo "$as_me:6979: \"$ac_try\"") >&5
    4966 +  { (eval echo "$as_me:7199: \"$ac_try\"") >&5
     5418+  { (eval echo "$as_me:7033: \"$ac_try\"") >&5
    49675419   (eval $ac_try) 2>&5
    49685420   ac_status=$?
    49695421-  echo "$as_me:6982: \$? = $ac_status" >&5
    4970 +  echo "$as_me:7202: \$? = $ac_status" >&5
     5422+  echo "$as_me:7036: \$? = $ac_status" >&5
    49715423   (exit $ac_status); }; }; then
    49725424-  echo "$as_me:6984: result: yes" >&5
    4973 +  echo "$as_me:7204: result: yes" >&5
     5425+  echo "$as_me:7038: result: yes" >&5
    49745426 echo "${ECHO_T}yes" >&6
    49755427                         eval 'cf_cv_have_lib_'$cf_nculib_root'=yes'
     
    49795431 cat conftest.$ac_ext >&5
    49805432-echo "$as_me:6991: result: no" >&5
    4981 +echo "$as_me:7211: result: no" >&5
     5433+echo "$as_me:7045: result: no" >&5
    49825434 echo "${ECHO_T}no" >&6
    49835435 
    49845436 cf_search=
    4985 @@ -7078,11 +7298,11 @@
     5437@@ -7078,11 +7132,11 @@
    49865438 
    49875439                        for cf_libdir in $cf_search
    49885440                        do
    49895441-                               echo "$as_me:7081: checking for -l$cf_nculib_root in $cf_libdir" >&5
    4990 +                               echo "$as_me:7301: checking for -l$cf_nculib_root in $cf_libdir" >&5
     5442+                               echo "$as_me:7135: checking for -l$cf_nculib_root in $cf_libdir" >&5
    49915443 echo $ECHO_N "checking for -l$cf_nculib_root in $cf_libdir... $ECHO_C" >&6
    49925444                                LIBS="-L$cf_libdir -l$cf_nculib_root $cf_save_LIBS"
    49935445                                cat >conftest.$ac_ext <<_ACEOF
    49945446-#line 7085 "configure"
    4995 +#line 7305 "configure"
     5447+#line 7139 "configure"
    49965448 #include "confdefs.h"
    49975449 #include <${cf_cv_ncurses_header:-curses.h}>
    49985450 int
    4999 @@ -7094,25 +7314,25 @@
     5451@@ -7094,25 +7148,25 @@
    50005452 }
    50015453 _ACEOF
    50025454 rm -f conftest.$ac_objext conftest$ac_exeext
    50035455-if { (eval echo "$as_me:7097: \"$ac_link\"") >&5
    5004 +if { (eval echo "$as_me:7317: \"$ac_link\"") >&5
     5456+if { (eval echo "$as_me:7151: \"$ac_link\"") >&5
    50055457   (eval $ac_link) 2>&5
    50065458   ac_status=$?
    50075459-  echo "$as_me:7100: \$? = $ac_status" >&5
    5008 +  echo "$as_me:7320: \$? = $ac_status" >&5
     5460+  echo "$as_me:7154: \$? = $ac_status" >&5
    50095461   (exit $ac_status); } &&
    50105462          { ac_try='test -s conftest$ac_exeext'
    50115463-  { (eval echo "$as_me:7103: \"$ac_try\"") >&5
    5012 +  { (eval echo "$as_me:7323: \"$ac_try\"") >&5
     5464+  { (eval echo "$as_me:7157: \"$ac_try\"") >&5
    50135465   (eval $ac_try) 2>&5
    50145466   ac_status=$?
    50155467-  echo "$as_me:7106: \$? = $ac_status" >&5
    5016 +  echo "$as_me:7326: \$? = $ac_status" >&5
     5468+  echo "$as_me:7160: \$? = $ac_status" >&5
    50175469   (exit $ac_status); }; }; then
    50185470-  echo "$as_me:7108: result: yes" >&5
    5019 +  echo "$as_me:7328: result: yes" >&5
     5471+  echo "$as_me:7162: result: yes" >&5
    50205472 echo "${ECHO_T}yes" >&6
    50215473                                         eval 'cf_cv_have_lib_'$cf_nculib_root'=yes'
     
    50255477 cat conftest.$ac_ext >&5
    50265478-echo "$as_me:7115: result: no" >&5
    5027 +echo "$as_me:7335: result: no" >&5
     5479+echo "$as_me:7169: result: no" >&5
    50285480 echo "${ECHO_T}no" >&6
    50295481                                         LIBS="$cf_save_LIBS"
    50305482 fi
    5031 @@ -7127,7 +7347,7 @@
     5483@@ -7127,7 +7181,7 @@
    50325484 eval 'cf_found_library=$cf_cv_have_lib_'$cf_nculib_root
    50335485 
    50345486 if test $cf_found_library = no ; then
    50355487-       { { echo "$as_me:7130: error: Cannot link $cf_nculib_root library" >&5
    5036 +       { { echo "$as_me:7350: error: Cannot link $cf_nculib_root library" >&5
     5488+       { { echo "$as_me:7184: error: Cannot link $cf_nculib_root library" >&5
    50375489 echo "$as_me: error: Cannot link $cf_nculib_root library" >&2;}
    50385490    { (exit 1); exit 1; }; }
    50395491 fi
    5040 @@ -7135,7 +7355,7 @@
     5492@@ -7135,7 +7189,7 @@
    50415493 fi
    50425494 
    50435495 if test -n "$cf_ncurses_LIBS" ; then
    50445496-       echo "$as_me:7138: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5
    5045 +       echo "$as_me:7358: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5
     5497+       echo "$as_me:7192: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5
    50465498 echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS... $ECHO_C" >&6
    50475499        cf_ncurses_SAVE="$LIBS"
    50485500        for p in $cf_ncurses_LIBS ; do
    5049 @@ -7145,7 +7365,7 @@
     5501@@ -7145,7 +7199,7 @@
    50505502                fi
    50515503        done
    50525504        cat >conftest.$ac_ext <<_ACEOF
    50535505-#line 7148 "configure"
    5054 +#line 7368 "configure"
     5506+#line 7202 "configure"
    50555507 #include "confdefs.h"
    50565508 #include <${cf_cv_ncurses_header:-curses.h}>
    50575509 int
    5058 @@ -7157,23 +7377,23 @@
     5510@@ -7157,23 +7211,23 @@
    50595511 }
    50605512 _ACEOF
    50615513 rm -f conftest.$ac_objext conftest$ac_exeext
    50625514-if { (eval echo "$as_me:7160: \"$ac_link\"") >&5
    5063 +if { (eval echo "$as_me:7380: \"$ac_link\"") >&5
     5515+if { (eval echo "$as_me:7214: \"$ac_link\"") >&5
    50645516   (eval $ac_link) 2>&5
    50655517   ac_status=$?
    50665518-  echo "$as_me:7163: \$? = $ac_status" >&5
    5067 +  echo "$as_me:7383: \$? = $ac_status" >&5
     5519+  echo "$as_me:7217: \$? = $ac_status" >&5
    50685520   (exit $ac_status); } &&
    50695521          { ac_try='test -s conftest$ac_exeext'
    50705522-  { (eval echo "$as_me:7166: \"$ac_try\"") >&5
    5071 +  { (eval echo "$as_me:7386: \"$ac_try\"") >&5
     5523+  { (eval echo "$as_me:7220: \"$ac_try\"") >&5
    50725524   (eval $ac_try) 2>&5
    50735525   ac_status=$?
    50745526-  echo "$as_me:7169: \$? = $ac_status" >&5
    5075 +  echo "$as_me:7389: \$? = $ac_status" >&5
     5527+  echo "$as_me:7223: \$? = $ac_status" >&5
    50765528   (exit $ac_status); }; }; then
    50775529-  echo "$as_me:7171: result: yes" >&5
    5078 +  echo "$as_me:7391: result: yes" >&5
     5530+  echo "$as_me:7225: result: yes" >&5
    50795531 echo "${ECHO_T}yes" >&6
    50805532 else
     
    50825534 cat conftest.$ac_ext >&5
    50835535-echo "$as_me:7176: result: no" >&5
    5084 +echo "$as_me:7396: result: no" >&5
     5536+echo "$as_me:7230: result: no" >&5
    50855537 echo "${ECHO_T}no" >&6
    50865538                 LIBS="$cf_ncurses_SAVE"
    50875539 fi
    5088 @@ -7210,10 +7430,10 @@
     5540@@ -7210,10 +7264,10 @@
    50895541 AUTOCONF_$cf_name NCURSES_VERSION_$cf_name
    50905542 CF_EOF
    50915543        cf_try="$ac_cpp conftest.$ac_ext 2>&5 | fgrep AUTOCONF_$cf_name >conftest.out"
    50925544-       { (eval echo "$as_me:7213: \"$cf_try\"") >&5
    5093 +       { (eval echo "$as_me:7433: \"$cf_try\"") >&5
     5545+       { (eval echo "$as_me:7267: \"$cf_try\"") >&5
    50945546   (eval $cf_try) 2>&5
    50955547   ac_status=$?
    50965548-  echo "$as_me:7216: \$? = $ac_status" >&5
    5097 +  echo "$as_me:7436: \$? = $ac_status" >&5
     5549+  echo "$as_me:7270: \$? = $ac_status" >&5
    50985550   (exit $ac_status); }
    50995551        if test -f conftest.out ; then
    51005552                cf_result=`cat conftest.out | sed -e "s/^.*AUTOCONF_$cf_name[   ][      ]*//"`
    5101 @@ -7231,9 +7451,25 @@
     5553@@ -7231,9 +7285,25 @@
    51025554 
    51035555 cf_cv_timestamp=`date`
    51045556 
    51055557-echo "$as_me:7234: result: Configuring NCURSES $cf_cv_rel_version ABI $cf_cv_abi_version ($cf_cv_timestamp)" >&5
    5106 +echo "$as_me:7454: result: Configuring NCURSES $cf_cv_rel_version ABI $cf_cv_abi_version ($cf_cv_timestamp)" >&5
     5558+echo "$as_me:7288: result: Configuring NCURSES $cf_cv_rel_version ABI $cf_cv_abi_version ($cf_cv_timestamp)" >&5
    51075559 echo "${ECHO_T}Configuring NCURSES $cf_cv_rel_version ABI $cf_cv_abi_version ($cf_cv_timestamp)" >&6
    51085560 
    5109 +echo "$as_me:7457: checking if you want to have a library-prefix" >&5
     5561+echo "$as_me:7291: checking if you want to have a library-prefix" >&5
    51105562+echo $ECHO_N "checking if you want to have a library-prefix... $ECHO_C" >&6
    51115563+
     
    51175569+  with_lib_prefix=auto
    51185570+fi;
    5119 +echo "$as_me:7467: result: $with_lib_prefix" >&5
     5571+echo "$as_me:7301: result: $with_lib_prefix" >&5
    51205572+echo "${ECHO_T}$with_lib_prefix" >&6
    51215573+
     
    51265578        OS/2*|os2*) #(vi
    51275579         LIB_PREFIX=''
    5128 @@ -7243,7 +7479,12 @@
     5580@@ -7243,7 +7313,12 @@
    51295581        esac
    51305582 cf_prefix=$LIB_PREFIX
     
    51405592 LIB_SUFFIX=
    51415593 
    5142 @@ -7254,7 +7495,7 @@
     5594@@ -7254,7 +7329,7 @@
    51435595        test -n "$GCC" && test "${ac_cv_prog_cc_g}" != yes && CC_G_OPT=''
    51445596 fi
    51455597 
    51465598-echo "$as_me:7257: checking for default loader flags" >&5
    5147 +echo "$as_me:7498: checking for default loader flags" >&5
     5599+echo "$as_me:7332: checking for default loader flags" >&5
    51485600 echo $ECHO_N "checking for default loader flags... $ECHO_C" >&6
    51495601 case $DFT_LWR_MODEL in
    51505602 normal)  LD_MODEL=''   ;;
    5151 @@ -7262,11 +7503,11 @@
     5603@@ -7262,11 +7337,11 @@
    51525604 profile) LD_MODEL='-pg';;
    51535605 shared)  LD_MODEL=''   ;;
    51545606 esac
    51555607-echo "$as_me:7265: result: $LD_MODEL" >&5
    5156 +echo "$as_me:7506: result: $LD_MODEL" >&5
     5608+echo "$as_me:7340: result: $LD_MODEL" >&5
    51575609 echo "${ECHO_T}$LD_MODEL" >&6
    51585610 
    51595611 LD_RPATH_OPT=
    51605612-echo "$as_me:7269: checking for an rpath option" >&5
    5161 +echo "$as_me:7510: checking for an rpath option" >&5
     5613+echo "$as_me:7344: checking for an rpath option" >&5
    51625614 echo $ECHO_N "checking for an rpath option... $ECHO_C" >&6
    51635615 case $cf_cv_system_name in #(vi
    51645616 irix*) #(vi
    5165 @@ -7279,10 +7520,10 @@
     5617@@ -7279,10 +7354,10 @@
    51665618 linux*|gnu*|k*bsd*-gnu) #(vi
    51675619        LD_RPATH_OPT="-Wl,-rpath,"
     
    51765628        ;;
    51775629 netbsd*) #(vi
    5178 @@ -7297,17 +7538,17 @@
     5630@@ -7297,17 +7372,17 @@
    51795631 *)
    51805632        ;;
    51815633 esac
    51825634-echo "$as_me:7300: result: $LD_RPATH_OPT" >&5
    5183 +echo "$as_me:7541: result: $LD_RPATH_OPT" >&5
     5635+echo "$as_me:7375: result: $LD_RPATH_OPT" >&5
    51845636 echo "${ECHO_T}$LD_RPATH_OPT" >&6
    51855637 
     
    51875639 x-R*)
    51885640-       echo "$as_me:7305: checking if we need a space after rpath option" >&5
    5189 +       echo "$as_me:7546: checking if we need a space after rpath option" >&5
     5641+       echo "$as_me:7380: checking if we need a space after rpath option" >&5
    51905642 echo $ECHO_N "checking if we need a space after rpath option... $ECHO_C" >&6
    51915643        cf_save_LIBS="$LIBS"
     
    51935645        cat >conftest.$ac_ext <<_ACEOF
    51945646-#line 7310 "configure"
    5195 +#line 7551 "configure"
     5647+#line 7385 "configure"
    51965648 #include "confdefs.h"
    51975649 
    51985650 int
    5199 @@ -7319,16 +7560,16 @@
     5651@@ -7319,16 +7394,16 @@
    52005652 }
    52015653 _ACEOF
    52025654 rm -f conftest.$ac_objext conftest$ac_exeext
    52035655-if { (eval echo "$as_me:7322: \"$ac_link\"") >&5
    5204 +if { (eval echo "$as_me:7563: \"$ac_link\"") >&5
     5656+if { (eval echo "$as_me:7397: \"$ac_link\"") >&5
    52055657   (eval $ac_link) 2>&5
    52065658   ac_status=$?
    52075659-  echo "$as_me:7325: \$? = $ac_status" >&5
    5208 +  echo "$as_me:7566: \$? = $ac_status" >&5
     5660+  echo "$as_me:7400: \$? = $ac_status" >&5
    52095661   (exit $ac_status); } &&
    52105662          { ac_try='test -s conftest$ac_exeext'
    52115663-  { (eval echo "$as_me:7328: \"$ac_try\"") >&5
    5212 +  { (eval echo "$as_me:7569: \"$ac_try\"") >&5
     5664+  { (eval echo "$as_me:7403: \"$ac_try\"") >&5
    52135665   (eval $ac_try) 2>&5
    52145666   ac_status=$?
    52155667-  echo "$as_me:7331: \$? = $ac_status" >&5
    5216 +  echo "$as_me:7572: \$? = $ac_status" >&5
     5668+  echo "$as_me:7406: \$? = $ac_status" >&5
    52175669   (exit $ac_status); }; }; then
    52185670   cf_rpath_space=no
    52195671 else
    5220 @@ -7338,7 +7579,7 @@
     5672@@ -7338,7 +7413,7 @@
    52215673 fi
    52225674 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    52235675        LIBS="$cf_save_LIBS"
    52245676-       echo "$as_me:7341: result: $cf_rpath_space" >&5
    5225 +       echo "$as_me:7582: result: $cf_rpath_space" >&5
     5677+       echo "$as_me:7416: result: $cf_rpath_space" >&5
    52265678 echo "${ECHO_T}$cf_rpath_space" >&6
    52275679        test "$cf_rpath_space" = yes && LD_RPATH_OPT="$LD_RPATH_OPT "
    52285680        ;;
    5229 @@ -7353,7 +7594,7 @@
     5681@@ -7353,7 +7428,7 @@
    52305682        cf_ld_rpath_opt=
    52315683        test "$cf_cv_enable_rpath" = yes && cf_ld_rpath_opt="$LD_RPATH_OPT"
    52325684 
    52335685-       echo "$as_me:7356: checking if release/abi version should be used for shared libs" >&5
    5234 +       echo "$as_me:7597: checking if release/abi version should be used for shared libs" >&5
     5686+       echo "$as_me:7431: checking if release/abi version should be used for shared libs" >&5
    52355687 echo $ECHO_N "checking if release/abi version should be used for shared libs... $ECHO_C" >&6
    52365688 
    52375689 # Check whether --with-shlib-version or --without-shlib-version was given.
    5238 @@ -7368,7 +7609,7 @@
     5690@@ -7368,7 +7443,7 @@
    52395691                cf_cv_shlib_version=$withval
    52405692                ;;
    52415693        *)
    52425694-               { { echo "$as_me:7371: error: option value must be one of: rel, abi, auto or no" >&5
    5243 +               { { echo "$as_me:7612: error: option value must be one of: rel, abi, auto or no" >&5
     5695+               { { echo "$as_me:7446: error: option value must be one of: rel, abi, auto or no" >&5
    52445696 echo "$as_me: error: option value must be one of: rel, abi, auto or no" >&2;}
    52455697    { (exit 1); exit 1; }; }
    52465698                ;;
    5247 @@ -7377,7 +7618,7 @@
     5699@@ -7377,7 +7452,7 @@
    52485700 else
    52495701   cf_cv_shlib_version=auto
    52505702 fi;
    52515703-       echo "$as_me:7380: result: $cf_cv_shlib_version" >&5
    5252 +       echo "$as_me:7621: result: $cf_cv_shlib_version" >&5
     5704+       echo "$as_me:7455: result: $cf_cv_shlib_version" >&5
    52535705 echo "${ECHO_T}$cf_cv_shlib_version" >&6
    52545706 
    52555707        cf_cv_rm_so_locs=no
    5256 @@ -7386,14 +7627,14 @@
     5708@@ -7386,14 +7461,14 @@
    52575709        CC_SHARED_OPTS=
    52585710        if test "$GCC" = yes
    52595711        then
    52605712-               echo "$as_me:7389: checking which $CC option to use" >&5
    5261 +               echo "$as_me:7630: checking which $CC option to use" >&5
     5713+               echo "$as_me:7464: checking which $CC option to use" >&5
    52625714 echo $ECHO_N "checking which $CC option to use... $ECHO_C" >&6
    52635715                cf_save_CFLAGS="$CFLAGS"
     
    52675719                        cat >conftest.$ac_ext <<_ACEOF
    52685720-#line 7396 "configure"
    5269 +#line 7637 "configure"
     5721+#line 7471 "configure"
    52705722 #include "confdefs.h"
    52715723 #include <stdio.h>
    52725724 int
    5273 @@ -7405,16 +7646,16 @@
     5725@@ -7405,16 +7480,16 @@
    52745726 }
    52755727 _ACEOF
    52765728 rm -f conftest.$ac_objext
    52775729-if { (eval echo "$as_me:7408: \"$ac_compile\"") >&5
    5278 +if { (eval echo "$as_me:7649: \"$ac_compile\"") >&5
     5730+if { (eval echo "$as_me:7483: \"$ac_compile\"") >&5
    52795731   (eval $ac_compile) 2>&5
    52805732   ac_status=$?
    52815733-  echo "$as_me:7411: \$? = $ac_status" >&5
    5282 +  echo "$as_me:7652: \$? = $ac_status" >&5
     5734+  echo "$as_me:7486: \$? = $ac_status" >&5
    52835735   (exit $ac_status); } &&
    52845736          { ac_try='test -s conftest.$ac_objext'
    52855737-  { (eval echo "$as_me:7414: \"$ac_try\"") >&5
    5286 +  { (eval echo "$as_me:7655: \"$ac_try\"") >&5
     5738+  { (eval echo "$as_me:7489: \"$ac_try\"") >&5
    52875739   (eval $ac_try) 2>&5
    52885740   ac_status=$?
    52895741-  echo "$as_me:7417: \$? = $ac_status" >&5
    5290 +  echo "$as_me:7658: \$? = $ac_status" >&5
     5742+  echo "$as_me:7492: \$? = $ac_status" >&5
    52915743   (exit $ac_status); }; }; then
    52925744   break
    52935745 else
    5294 @@ -7423,7 +7664,7 @@
     5746@@ -7423,7 +7498,7 @@
    52955747 fi
    52965748 rm -f conftest.$ac_objext conftest.$ac_ext
    52975749                done
    52985750-               echo "$as_me:7426: result: $CC_SHARED_OPTS" >&5
    5299 +               echo "$as_me:7667: result: $CC_SHARED_OPTS" >&5
     5751+               echo "$as_me:7501: result: $CC_SHARED_OPTS" >&5
    53005752 echo "${ECHO_T}$CC_SHARED_OPTS" >&6
    53015753                CFLAGS="$cf_save_CFLAGS"
    53025754        fi
    5303 @@ -7431,10 +7672,14 @@
     5755@@ -7431,10 +7506,14 @@
    53045756        cf_cv_shlib_version_infix=no
    53055757 
     
    53185770                ;;
    53195771        beos*) #(vi
    5320 @@ -7465,7 +7710,7 @@
     5772@@ -7465,7 +7544,7 @@
    53215773                MK_SHARED_LIB='${CC} ${CFLAGS} -dynamiclib -install_name ${libdir}/`basename $@` -compatibility_version ${ABI_VERSION} -current_version ${ABI_VERSION} -o $@'
    53225774                test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=abi
    53235775                cf_cv_shlib_version_infix=yes
    53245776-               echo "$as_me:7468: checking if ld -search_paths_first works" >&5
    5325 +               echo "$as_me:7713: checking if ld -search_paths_first works" >&5
     5777+               echo "$as_me:7547: checking if ld -search_paths_first works" >&5
    53265778 echo $ECHO_N "checking if ld -search_paths_first works... $ECHO_C" >&6
    53275779 if test "${cf_cv_ldflags_search_paths_first+set}" = set; then
    53285780   echo $ECHO_N "(cached) $ECHO_C" >&6
    5329 @@ -7474,7 +7719,7 @@
     5781@@ -7474,7 +7553,7 @@
    53305782                        cf_save_LDFLAGS=$LDFLAGS
    53315783                        LDFLAGS="$LDFLAGS -Wl,-search_paths_first"
    53325784                        cat >conftest.$ac_ext <<_ACEOF
    53335785-#line 7477 "configure"
    5334 +#line 7722 "configure"
     5786+#line 7556 "configure"
    53355787 #include "confdefs.h"
    53365788 
    53375789 int
    5338 @@ -7486,16 +7731,16 @@
     5790@@ -7486,16 +7565,16 @@
    53395791 }
    53405792 _ACEOF
    53415793 rm -f conftest.$ac_objext conftest$ac_exeext
    53425794-if { (eval echo "$as_me:7489: \"$ac_link\"") >&5
    5343 +if { (eval echo "$as_me:7734: \"$ac_link\"") >&5
     5795+if { (eval echo "$as_me:7568: \"$ac_link\"") >&5
    53445796   (eval $ac_link) 2>&5
    53455797   ac_status=$?
    53465798-  echo "$as_me:7492: \$? = $ac_status" >&5
    5347 +  echo "$as_me:7737: \$? = $ac_status" >&5
     5799+  echo "$as_me:7571: \$? = $ac_status" >&5
    53485800   (exit $ac_status); } &&
    53495801          { ac_try='test -s conftest$ac_exeext'
    53505802-  { (eval echo "$as_me:7495: \"$ac_try\"") >&5
    5351 +  { (eval echo "$as_me:7740: \"$ac_try\"") >&5
     5803+  { (eval echo "$as_me:7574: \"$ac_try\"") >&5
    53525804   (eval $ac_try) 2>&5
    53535805   ac_status=$?
    53545806-  echo "$as_me:7498: \$? = $ac_status" >&5
    5355 +  echo "$as_me:7743: \$? = $ac_status" >&5
     5807+  echo "$as_me:7577: \$? = $ac_status" >&5
    53565808   (exit $ac_status); }; }; then
    53575809   cf_cv_ldflags_search_paths_first=yes
    53585810 else
    5359 @@ -7506,7 +7751,7 @@
     5811@@ -7506,7 +7585,7 @@
    53605812 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    53615813                                LDFLAGS=$cf_save_LDFLAGS
    53625814 fi
    53635815-echo "$as_me:7509: result: $cf_cv_ldflags_search_paths_first" >&5
    5364 +echo "$as_me:7754: result: $cf_cv_ldflags_search_paths_first" >&5
     5816+echo "$as_me:7588: result: $cf_cv_ldflags_search_paths_first" >&5
    53655817 echo "${ECHO_T}$cf_cv_ldflags_search_paths_first" >&6
    53665818                if test $cf_cv_ldflags_search_paths_first = yes; then
    53675819                        LDFLAGS="$LDFLAGS -Wl,-search_paths_first"
    5368 @@ -7525,9 +7770,19 @@
     5820@@ -7525,9 +7604,19 @@
    53695821                # readonly to exploit a quirk in the memory manager.
    53705822                INSTALL_LIB="-m 555"
     
    53875839                # tested with IRIX 5.2 and 'cc'.
    53885840                if test "$GCC" != yes; then
    5389 @@ -7544,7 +7799,7 @@
     5841@@ -7544,7 +7633,7 @@
    53905842                        LOCAL_LDFLAGS2="$LOCAL_LDFLAGS"
    53915843                fi
     
    53965848 
    53975849        test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=rel
    5398 @@ -7556,13 +7811,13 @@
     5850@@ -7556,13 +7645,34 @@
    53995851 
    54005852                MK_SHARED_LIB='${CC} ${CFLAGS} -shared -Wl,-soname,'$cf_cv_shared_soname',-stats,-lc -o $@'
    54015853                ;;
    54025854-       openbsd[2-9].*) #(vi
     5855+       mingw*) #(vi
     5856+               cf_cv_shlib_version=mingw
     5857+               cf_cv_shlib_version_infix=mingw
     5858+               CC_SHARED_OPTS=
     5859+               MK_SHARED_LIB='sh ../mk_shared_lib.sh $@ ${CC} ${CFLAGS}'
     5860+               #MK_SHARED_LIB='${CC} ${CFLAGS} -mdll -Wl,-soname,'$cf_cv_shared_soname',-stats -o $[@]'
     5861+               #MK_SHARED_LIB='${DLLTOOL} --export-all-symbols --output-exp --output-lib $[@]'
     5862+               cat >mk_shared_lib.sh <<-CF_EOF
     5863+               #!/bin/sh
     5864+               SHARED_LIB=\$1
     5865+               IMPORT_LIB=\`echo "\$1" | sed -e 's/[0-9]*\.dll$/.dll.a/'\`
     5866+               shift
     5867+               cat <<-EOF
     5868+               Linking shared library
     5869+               ** SHARED_LIB \$SHARED_LIB
     5870+               ** IMPORT_LIB \$IMPORT_LIB
     5871+EOF
     5872+               exec \$* -shared -Wl,--out-implib=../lib/\${IMPORT_LIB} -Wl,--export-all-symbols -o ../lib/\${SHARED_LIB}
     5873+CF_EOF
     5874+               chmod +x mk_shared_lib.sh
     5875+               ;;
    54035876+       openbsd[2-9].*|mirbsd*) #(vi
    54045877                if test "$DFT_LWR_MODEL" = "shared" ; then
     
    54125885                CC_SHARED_OPTS="$CC_SHARED_OPTS -DPIC"
    54135886 
    5414 @@ -7580,12 +7835,12 @@
     5887@@ -7580,12 +7690,12 @@
    54155888                MK_SHARED_LIB='${LD} -Bshareable -o $@'
    54165889                test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=rel
     
    54285901 
    54295902        test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=rel
    5430 @@ -7602,7 +7857,7 @@
     5903@@ -7602,7 +7712,7 @@
    54315904                if test "$DFT_LWR_MODEL" = "shared" && test "$cf_cv_enable_rpath" = yes ; then
    54325905                        LOCAL_LDFLAGS="${cf_ld_rpath_opt}\$(LOCAL_LIBDIR)"
     
    54375910                        if test -f /usr/libexec/ld.elf_so; then
    54385911                                cf_cv_shlib_version=abi
    5439 @@ -7686,7 +7941,7 @@
     5912@@ -7686,7 +7796,7 @@
    54405913                        do
    54415914                                CFLAGS="$cf_shared_opts $cf_save_CFLAGS"
    54425915                                cat >conftest.$ac_ext <<_ACEOF
    54435916-#line 7689 "configure"
    5444 +#line 7944 "configure"
     5917+#line 7799 "configure"
    54455918 #include "confdefs.h"
    54465919 #include <stdio.h>
    54475920 int
    5448 @@ -7698,16 +7953,16 @@
     5921@@ -7698,16 +7808,16 @@
    54495922 }
    54505923 _ACEOF
    54515924 rm -f conftest.$ac_objext
    54525925-if { (eval echo "$as_me:7701: \"$ac_compile\"") >&5
    5453 +if { (eval echo "$as_me:7956: \"$ac_compile\"") >&5
     5926+if { (eval echo "$as_me:7811: \"$ac_compile\"") >&5
    54545927   (eval $ac_compile) 2>&5
    54555928   ac_status=$?
    54565929-  echo "$as_me:7704: \$? = $ac_status" >&5
    5457 +  echo "$as_me:7959: \$? = $ac_status" >&5
     5930+  echo "$as_me:7814: \$? = $ac_status" >&5
    54585931   (exit $ac_status); } &&
    54595932          { ac_try='test -s conftest.$ac_objext'
    54605933-  { (eval echo "$as_me:7707: \"$ac_try\"") >&5
    5461 +  { (eval echo "$as_me:7962: \"$ac_try\"") >&5
     5934+  { (eval echo "$as_me:7817: \"$ac_try\"") >&5
    54625935   (eval $ac_try) 2>&5
    54635936   ac_status=$?
    54645937-  echo "$as_me:7710: \$? = $ac_status" >&5
    5465 +  echo "$as_me:7965: \$? = $ac_status" >&5
     5938+  echo "$as_me:7820: \$? = $ac_status" >&5
    54665939   (exit $ac_status); }; }; then
    54675940   break
    54685941 else
    5469 @@ -7744,22 +7999,22 @@
     5942@@ -7744,22 +7854,30 @@
    54705943                        test "$cf_cv_do_symlinks" = no && cf_cv_do_symlinks=yes
    54715944                        ;;
    54725945                *)
    54735946-                       { echo "$as_me:7747: WARNING: ignored --with-shlib-version" >&5
    5474 +                       { echo "$as_me:8002: WARNING: ignored --with-shlib-version" >&5
     5947+                       { echo "$as_me:7857: WARNING: ignored --with-shlib-version" >&5
    54755948 echo "$as_me: WARNING: ignored --with-shlib-version" >&2;}
    54765949                        ;;
     
    54855958+       test -n "$cf_ld_rpath_opt" && MK_SHARED_LIB="$MK_SHARED_LIB $cf_ld_rpath_opt\${RPATH_LIST}"
    54865959+       test -z "$RPATH_LIST" && RPATH_LIST="\${libdir}"
     5960+
     5961+       test -n "$verbose" && echo "    CC_SHARED_OPTS: $CC_SHARED_OPTS" 1>&6
     5962+
     5963+echo "${as_me:-configure}:7870: testing CC_SHARED_OPTS: $CC_SHARED_OPTS ..." 1>&5
     5964+
     5965+       test -n "$verbose" && echo "    MK_SHARED_LIB:  $MK_SHARED_LIB" 1>&6
     5966+
     5967+echo "${as_me:-configure}:7874: testing MK_SHARED_LIB:  $MK_SHARED_LIB ..." 1>&5
    54875968 
    54885969 # The test/sample programs in the original tree link using rpath option.
     
    54915972 then
    54925973-       echo "$as_me:7762: checking if you want to link sample programs with rpath option" >&5
    5493 +       echo "$as_me:8017: checking if you want to link sample programs with rpath option" >&5
     5974+       echo "$as_me:7880: checking if you want to link sample programs with rpath option" >&5
    54945975 echo $ECHO_N "checking if you want to link sample programs with rpath option... $ECHO_C" >&6
    54955976 
    54965977 # Check whether --enable-rpath-link or --disable-rpath-link was given.
    5497 @@ -7769,7 +8024,7 @@
     5978@@ -7769,7 +7887,7 @@
    54985979 else
    54995980   with_rpath_link=yes
    55005981 fi;
    55015982-       echo "$as_me:7772: result: $with_rpath_link" >&5
    5502 +       echo "$as_me:8027: result: $with_rpath_link" >&5
     5983+       echo "$as_me:7890: result: $with_rpath_link" >&5
    55035984 echo "${ECHO_T}$with_rpath_link" >&6
    55045985        if test "$with_rpath_link" = no
    55055986        then
    5506 @@ -7780,13 +8035,8 @@
     5987@@ -7780,13 +7898,8 @@
    55075988 
    55085989 ###############################################################################
     
    55155996 ###   use option --enable-broken-linker to force on use of broken-linker support
    55165997-echo "$as_me:7789: checking if you want broken-linker support code" >&5
    5517 +echo "$as_me:8039: checking if you want broken-linker support code" >&5
     5998+echo "$as_me:7902: checking if you want broken-linker support code" >&5
    55185999 echo $ECHO_N "checking if you want broken-linker support code... $ECHO_C" >&6
    55196000 
    55206001 # Check whether --enable-broken_linker or --disable-broken_linker was given.
    5521 @@ -7796,7 +8046,7 @@
     6002@@ -7796,7 +7909,7 @@
    55226003 else
    55236004   with_broken_linker=${BROKEN_LINKER:-no}
    55246005 fi;
    55256006-echo "$as_me:7799: result: $with_broken_linker" >&5
    5526 +echo "$as_me:8049: result: $with_broken_linker" >&5
     6007+echo "$as_me:7912: result: $with_broken_linker" >&5
    55276008 echo "${ECHO_T}$with_broken_linker" >&6
    55286009 
    55296010 BROKEN_LINKER=0
    5530 @@ -7816,7 +8066,7 @@
     6011@@ -7816,7 +7929,7 @@
    55316012                BROKEN_LINKER=1
    55326013                test -n "$verbose" && echo "    cygwin linker is broken anyway" 1>&6
    55336014 
    55346015-echo "${as_me:-configure}:7819: testing cygwin linker is broken anyway ..." 1>&5
    5535 +echo "${as_me:-configure}:8069: testing cygwin linker is broken anyway ..." 1>&5
     6016+echo "${as_me:-configure}:7932: testing cygwin linker is broken anyway ..." 1>&5
    55366017 
    55376018                ;;
    55386019        esac
    5539 @@ -7829,7 +8079,7 @@
     6020@@ -7829,7 +7942,7 @@
    55406021 cf_xopen_source=
    55416022 
     
    55466027        ;;
    55476028 cygwin) #(vi
    5548 @@ -7840,6 +8090,7 @@
     6029@@ -7840,6 +7953,7 @@
    55496030        ;;
    55506031 darwin*) #(vi
     
    55546035 freebsd*|dragonfly*) #(vi
    55556036        # 5.x headers associate
    5556 @@ -7857,17 +8108,18 @@
     6037@@ -7857,17 +7971,18 @@
    55576038        ;;
    55586039 irix[56].*) #(vi
     
    55636044 
    55646045-echo "$as_me:7863: checking if we must define _GNU_SOURCE" >&5
    5565 +echo "$as_me:8115: checking if we must define _GNU_SOURCE" >&5
     6046+echo "$as_me:7978: checking if we must define _GNU_SOURCE" >&5
    55666047 echo $ECHO_N "checking if we must define _GNU_SOURCE... $ECHO_C" >&6
    55676048 if test "${cf_cv_gnu_source+set}" = set; then
     
    55716052 cat >conftest.$ac_ext <<_ACEOF
    55726053-#line 7870 "configure"
    5573 +#line 8122 "configure"
     6054+#line 7985 "configure"
    55746055 #include "confdefs.h"
    55756056 #include <sys/types.h>
    55766057 int
    5577 @@ -7882,16 +8134,16 @@
     6058@@ -7882,16 +7997,16 @@
    55786059 }
    55796060 _ACEOF
    55806061 rm -f conftest.$ac_objext
    55816062-if { (eval echo "$as_me:7885: \"$ac_compile\"") >&5
    5582 +if { (eval echo "$as_me:8137: \"$ac_compile\"") >&5
     6063+if { (eval echo "$as_me:8000: \"$ac_compile\"") >&5
    55836064   (eval $ac_compile) 2>&5
    55846065   ac_status=$?
    55856066-  echo "$as_me:7888: \$? = $ac_status" >&5
    5586 +  echo "$as_me:8140: \$? = $ac_status" >&5
     6067+  echo "$as_me:8003: \$? = $ac_status" >&5
    55876068   (exit $ac_status); } &&
    55886069          { ac_try='test -s conftest.$ac_objext'
    55896070-  { (eval echo "$as_me:7891: \"$ac_try\"") >&5
    5590 +  { (eval echo "$as_me:8143: \"$ac_try\"") >&5
     6071+  { (eval echo "$as_me:8006: \"$ac_try\"") >&5
    55916072   (eval $ac_try) 2>&5
    55926073   ac_status=$?
    55936074-  echo "$as_me:7894: \$? = $ac_status" >&5
    5594 +  echo "$as_me:8146: \$? = $ac_status" >&5
     6075+  echo "$as_me:8009: \$? = $ac_status" >&5
    55956076   (exit $ac_status); }; }; then
    55966077   cf_cv_gnu_source=no
    55976078 else
    5598 @@ -7900,7 +8152,7 @@
     6079@@ -7900,7 +8015,7 @@
    55996080 cf_save="$CPPFLAGS"
    56006081         CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
    56016082         cat >conftest.$ac_ext <<_ACEOF
    56026083-#line 7903 "configure"
    5603 +#line 8155 "configure"
     6084+#line 8018 "configure"
    56046085 #include "confdefs.h"
    56056086 #include <sys/types.h>
    56066087 int
    5607 @@ -7915,16 +8167,16 @@
     6088@@ -7915,16 +8030,16 @@
    56086089 }
    56096090 _ACEOF
    56106091 rm -f conftest.$ac_objext
    56116092-if { (eval echo "$as_me:7918: \"$ac_compile\"") >&5
    5612 +if { (eval echo "$as_me:8170: \"$ac_compile\"") >&5
     6093+if { (eval echo "$as_me:8033: \"$ac_compile\"") >&5
    56136094   (eval $ac_compile) 2>&5
    56146095   ac_status=$?
    56156096-  echo "$as_me:7921: \$? = $ac_status" >&5
    5616 +  echo "$as_me:8173: \$? = $ac_status" >&5
     6097+  echo "$as_me:8036: \$? = $ac_status" >&5
    56176098   (exit $ac_status); } &&
    56186099          { ac_try='test -s conftest.$ac_objext'
    56196100-  { (eval echo "$as_me:7924: \"$ac_try\"") >&5
    5620 +  { (eval echo "$as_me:8176: \"$ac_try\"") >&5
     6101+  { (eval echo "$as_me:8039: \"$ac_try\"") >&5
    56216102   (eval $ac_try) 2>&5
    56226103   ac_status=$?
    56236104-  echo "$as_me:7927: \$? = $ac_status" >&5
    5624 +  echo "$as_me:8179: \$? = $ac_status" >&5
     6105+  echo "$as_me:8042: \$? = $ac_status" >&5
    56256106   (exit $ac_status); }; }; then
    56266107   cf_cv_gnu_source=no
    56276108 else
    5628 @@ -7939,47 +8191,293 @@
     6109@@ -7939,51 +8054,45 @@
    56296110 rm -f conftest.$ac_objext conftest.$ac_ext
    56306111 
    56316112 fi
    56326113-echo "$as_me:7942: result: $cf_cv_gnu_source" >&5
    5633 +echo "$as_me:8194: result: $cf_cv_gnu_source" >&5
     6114+echo "$as_me:8057: result: $cf_cv_gnu_source" >&5
    56346115 echo "${ECHO_T}$cf_cv_gnu_source" >&6
    56356116 test "$cf_cv_gnu_source" = yes && CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
     
    56646145-echo $ECHO_N "checking if we should define _XOPEN_SOURCE... $ECHO_C" >&6
    56656146-if test "${cf_cv_xopen_source+set}" = set; then
    5666 -  echo $ECHO_N "(cached) $ECHO_C" >&6
    5667 -else
    56686147+       # setting _XOPEN_SOURCE or _POSIX_SOURCE breaks <sys/select.h> and other headers which use u_int / u_short types
    56696148+       cf_XOPEN_SOURCE=
    5670  
    5671 -       cat >conftest.$ac_ext <<_ACEOF
    5672 -#line 7979 "configure"
    5673 -#include "confdefs.h"
    5674 -#include <sys/types.h>
    5675 -int
     6149+
    56766150+cf_POSIX_C_SOURCE=$cf_POSIX_C_SOURCE
    56776151+
     
    56876161+               -e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^     ]*\)\?$//g'`
    56886162+
    5689 +echo "$as_me:8216: checking if we should define _POSIX_C_SOURCE" >&5
     6163+echo "$as_me:8079: checking if we should define _POSIX_C_SOURCE" >&5
    56906164+echo $ECHO_N "checking if we should define _POSIX_C_SOURCE... $ECHO_C" >&6
    56916165+if test "${cf_cv_posix_c_source+set}" = set; then
    5692 +  echo $ECHO_N "(cached) $ECHO_C" >&6
    5693 +else
    5694 +
    5695 +echo "${as_me:-configure}:8222: testing if the symbol is already defined go no further ..." 1>&5
    5696 +
    5697 +       cat >conftest.$ac_ext <<_ACEOF
    5698 +#line 8225 "configure"
    5699 +#include "confdefs.h"
    5700 +#include <sys/types.h>
    5701 +int
    5702 +main ()
    5703 +{
    5704 +
     6166   echo $ECHO_N "(cached) $ECHO_C" >&6
     6167 else
     6168 
     6169+echo "${as_me:-configure}:8085: testing if the symbol is already defined go no further ..." 1>&5
     6170+
     6171        cat >conftest.$ac_ext <<_ACEOF
     6172-#line 7979 "configure"
     6173+#line 8088 "configure"
     6174 #include "confdefs.h"
     6175 #include <sys/types.h>
     6176 int
     6177 main ()
     6178 {
     6179 
     6180-#ifndef _XOPEN_SOURCE
    57056181+#ifndef _POSIX_C_SOURCE
    5706 +make an error
    5707 +#endif
    5708 +  ;
    5709 +  return 0;
    5710 +}
    5711 +_ACEOF
    5712 +rm -f conftest.$ac_objext
    5713 +if { (eval echo "$as_me:8240: \"$ac_compile\"") >&5
    5714 +  (eval $ac_compile) 2>&5
    5715 +  ac_status=$?
    5716 +  echo "$as_me:8243: \$? = $ac_status" >&5
    5717 +  (exit $ac_status); } &&
    5718 +         { ac_try='test -s conftest.$ac_objext'
    5719 +  { (eval echo "$as_me:8246: \"$ac_try\"") >&5
    5720 +  (eval $ac_try) 2>&5
    5721 +  ac_status=$?
    5722 +  echo "$as_me:8249: \$? = $ac_status" >&5
    5723 +  (exit $ac_status); }; }; then
     6182 make an error
     6183 #endif
     6184   ;
     6185@@ -7991,32 +8100,44 @@
     6186 }
     6187 _ACEOF
     6188 rm -f conftest.$ac_objext
     6189-if { (eval echo "$as_me:7994: \"$ac_compile\"") >&5
     6190+if { (eval echo "$as_me:8103: \"$ac_compile\"") >&5
     6191   (eval $ac_compile) 2>&5
     6192   ac_status=$?
     6193-  echo "$as_me:7997: \$? = $ac_status" >&5
     6194+  echo "$as_me:8106: \$? = $ac_status" >&5
     6195   (exit $ac_status); } &&
     6196          { ac_try='test -s conftest.$ac_objext'
     6197-  { (eval echo "$as_me:8000: \"$ac_try\"") >&5
     6198+  { (eval echo "$as_me:8109: \"$ac_try\"") >&5
     6199   (eval $ac_try) 2>&5
     6200   ac_status=$?
     6201-  echo "$as_me:8003: \$? = $ac_status" >&5
     6202+  echo "$as_me:8112: \$? = $ac_status" >&5
     6203   (exit $ac_status); }; }; then
     6204-  cf_cv_xopen_source=no
    57246205+  cf_cv_posix_c_source=no
    5725 +else
    5726 +  echo "$as_me: failed program was:" >&5
    5727 +cat conftest.$ac_ext >&5
     6206 else
     6207   echo "$as_me: failed program was:" >&5
     6208 cat conftest.$ac_ext >&5
     6209-cf_save="$CPPFLAGS"
     6210-        CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=$cf_XOPEN_SOURCE"
     6211-        cat >conftest.$ac_ext <<_ACEOF
     6212-#line 8012 "configure"
    57286213+cf_want_posix_source=no
    57296214+        case .$cf_POSIX_C_SOURCE in #(vi
     
    57416226+        if test "$cf_want_posix_source" = yes ; then
    57426227+               cat >conftest.$ac_ext <<_ACEOF
    5743 +#line 8270 "configure"
    5744 +#include "confdefs.h"
    5745 +#include <sys/types.h>
    5746 +int
    5747 +main ()
    5748 +{
    5749 +
     6228+#line 8133 "configure"
     6229 #include "confdefs.h"
     6230 #include <sys/types.h>
     6231 int
     6232 main ()
     6233 {
     6234 
     6235-#ifdef _XOPEN_SOURCE
    57506236+#ifdef _POSIX_SOURCE
    5751 +make an error
    5752 +#endif
    5753 +  ;
    5754 +  return 0;
    5755 +}
    5756 +_ACEOF
    5757 +rm -f conftest.$ac_objext
    5758 +if { (eval echo "$as_me:8285: \"$ac_compile\"") >&5
    5759 +  (eval $ac_compile) 2>&5
    5760 +  ac_status=$?
    5761 +  echo "$as_me:8288: \$? = $ac_status" >&5
    5762 +  (exit $ac_status); } &&
    5763 +         { ac_try='test -s conftest.$ac_objext'
    5764 +  { (eval echo "$as_me:8291: \"$ac_try\"") >&5
    5765 +  (eval $ac_try) 2>&5
    5766 +  ac_status=$?
    5767 +  echo "$as_me:8294: \$? = $ac_status" >&5
    5768 +  (exit $ac_status); }; }; then
     6237 make an error
     6238 #endif
     6239   ;
     6240@@ -8024,33 +8145,278 @@
     6241 }
     6242 _ACEOF
     6243 rm -f conftest.$ac_objext
     6244-if { (eval echo "$as_me:8027: \"$ac_compile\"") >&5
     6245+if { (eval echo "$as_me:8148: \"$ac_compile\"") >&5
     6246   (eval $ac_compile) 2>&5
     6247   ac_status=$?
     6248-  echo "$as_me:8030: \$? = $ac_status" >&5
     6249+  echo "$as_me:8151: \$? = $ac_status" >&5
     6250   (exit $ac_status); } &&
     6251          { ac_try='test -s conftest.$ac_objext'
     6252-  { (eval echo "$as_me:8033: \"$ac_try\"") >&5
     6253+  { (eval echo "$as_me:8154: \"$ac_try\"") >&5
     6254   (eval $ac_try) 2>&5
     6255   ac_status=$?
     6256-  echo "$as_me:8036: \$? = $ac_status" >&5
     6257+  echo "$as_me:8157: \$? = $ac_status" >&5
     6258   (exit $ac_status); }; }; then
     6259-  cf_cv_xopen_source=no
    57696260+  :
    5770 +else
    5771 +  echo "$as_me: failed program was:" >&5
    5772 +cat conftest.$ac_ext >&5
     6261 else
     6262   echo "$as_me: failed program was:" >&5
     6263 cat conftest.$ac_ext >&5
     6264-cf_cv_xopen_source=$cf_XOPEN_SOURCE
    57736265+cf_cv_posix_c_source="$cf_cv_posix_c_source -D_POSIX_SOURCE"
    5774 +fi
    5775 +rm -f conftest.$ac_objext conftest.$ac_ext
     6266 fi
     6267 rm -f conftest.$ac_objext conftest.$ac_ext
     6268-       CPPFLAGS="$cf_save"
    57766269+        fi
    57776270+
    5778 +echo "${as_me:-configure}:8305: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5
     6271+echo "${as_me:-configure}:8168: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5
    57796272+
    57806273+        CFLAGS="$cf_trim_CFLAGS"
    57816274+        CPPFLAGS="$cf_trim_CPPFLAGS $cf_cv_posix_c_source"
    57826275+
    5783 +echo "${as_me:-configure}:8310: testing if the second compile does not leave our definition intact error ..." 1>&5
     6276+echo "${as_me:-configure}:8173: testing if the second compile does not leave our definition intact error ..." 1>&5
    57846277+
    57856278+        cat >conftest.$ac_ext <<_ACEOF
    5786 +#line 8313 "configure"
     6279+#line 8176 "configure"
    57876280+#include "confdefs.h"
    57886281+#include <sys/types.h>
     
    57996292+_ACEOF
    58006293+rm -f conftest.$ac_objext
    5801 +if { (eval echo "$as_me:8328: \"$ac_compile\"") >&5
     6294+if { (eval echo "$as_me:8191: \"$ac_compile\"") >&5
    58026295+  (eval $ac_compile) 2>&5
    58036296+  ac_status=$?
    5804 +  echo "$as_me:8331: \$? = $ac_status" >&5
     6297+  echo "$as_me:8194: \$? = $ac_status" >&5
    58056298+  (exit $ac_status); } &&
    58066299+         { ac_try='test -s conftest.$ac_objext'
    5807 +  { (eval echo "$as_me:8334: \"$ac_try\"") >&5
     6300+  { (eval echo "$as_me:8197: \"$ac_try\"") >&5
    58086301+  (eval $ac_try) 2>&5
    58096302+  ac_status=$?
    5810 +  echo "$as_me:8337: \$? = $ac_status" >&5
     6303+  echo "$as_me:8200: \$? = $ac_status" >&5
    58116304+  (exit $ac_status); }; }; then
    58126305+  :
     
    58246317+
    58256318+fi
    5826 +echo "$as_me:8353: result: $cf_cv_posix_c_source" >&5
     6319+echo "$as_me:8216: result: $cf_cv_posix_c_source" >&5
    58276320+echo "${ECHO_T}$cf_cv_posix_c_source" >&6
    58286321+
     
    59376430+*)
    59386431+
    5939 +echo "$as_me:8466: checking if we should define _XOPEN_SOURCE" >&5
     6432+echo "$as_me:8329: checking if we should define _XOPEN_SOURCE" >&5
    59406433+echo $ECHO_N "checking if we should define _XOPEN_SOURCE... $ECHO_C" >&6
    59416434+if test "${cf_cv_xopen_source+set}" = set; then
     
    59446437+
    59456438+       cat >conftest.$ac_ext <<_ACEOF
    5946 +#line 8473 "configure"
     6439+#line 8336 "configure"
    59476440+#include "confdefs.h"
    59486441+
     
    59516444+#include <sys/types.h>
    59526445+
    5953 +int
    5954  main ()
    5955  {
    5956  
    5957 @@ -7991,16 +8489,16 @@
    5958  }
    5959  _ACEOF
    5960  rm -f conftest.$ac_objext
    5961 -if { (eval echo "$as_me:7994: \"$ac_compile\"") >&5
    5962 +if { (eval echo "$as_me:8492: \"$ac_compile\"") >&5
    5963    (eval $ac_compile) 2>&5
    5964    ac_status=$?
    5965 -  echo "$as_me:7997: \$? = $ac_status" >&5
    5966 +  echo "$as_me:8495: \$? = $ac_status" >&5
    5967    (exit $ac_status); } &&
    5968           { ac_try='test -s conftest.$ac_objext'
    5969 -  { (eval echo "$as_me:8000: \"$ac_try\"") >&5
    5970 +  { (eval echo "$as_me:8498: \"$ac_try\"") >&5
    5971    (eval $ac_try) 2>&5
    5972    ac_status=$?
    5973 -  echo "$as_me:8003: \$? = $ac_status" >&5
    5974 +  echo "$as_me:8501: \$? = $ac_status" >&5
    5975    (exit $ac_status); }; }; then
    5976    cf_cv_xopen_source=no
    5977  else
    5978 @@ -8009,9 +8507,13 @@
    5979  cf_save="$CPPFLAGS"
    5980          CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=$cf_XOPEN_SOURCE"
    5981          cat >conftest.$ac_ext <<_ACEOF
    5982 -#line 8012 "configure"
    5983 +#line 8510 "configure"
    5984  #include "confdefs.h"
    5985 +
    5986 +#include <stdlib.h>
    5987 +#include <string.h>
    5988  #include <sys/types.h>
    5989 +
    5990  int
    5991  main ()
    5992  {
    5993 @@ -8024,16 +8526,16 @@
    5994  }
    5995  _ACEOF
    5996  rm -f conftest.$ac_objext
    5997 -if { (eval echo "$as_me:8027: \"$ac_compile\"") >&5
    5998 +if { (eval echo "$as_me:8529: \"$ac_compile\"") >&5
    5999    (eval $ac_compile) 2>&5
    6000    ac_status=$?
    6001 -  echo "$as_me:8030: \$? = $ac_status" >&5
    6002 +  echo "$as_me:8532: \$? = $ac_status" >&5
    6003    (exit $ac_status); } &&
    6004           { ac_try='test -s conftest.$ac_objext'
    6005 -  { (eval echo "$as_me:8033: \"$ac_try\"") >&5
    6006 +  { (eval echo "$as_me:8535: \"$ac_try\"") >&5
    6007    (eval $ac_try) 2>&5
    6008    ac_status=$?
    6009 -  echo "$as_me:8036: \$? = $ac_status" >&5
    6010 +  echo "$as_me:8538: \$? = $ac_status" >&5
    6011    (exit $ac_status); }; }; then
    6012    cf_cv_xopen_source=no
    6013  else
    6014 @@ -8048,9 +8550,10 @@
    6015  rm -f conftest.$ac_objext conftest.$ac_ext
    6016  
    6017  fi
    6018 -echo "$as_me:8051: result: $cf_cv_xopen_source" >&5
    6019 +echo "$as_me:8553: result: $cf_cv_xopen_source" >&5
    6020  echo "${ECHO_T}$cf_cv_xopen_source" >&6
    6021 -       if test "$cf_cv_xopen_source" != no ; then
    6022 +
    6023 +if test "$cf_cv_xopen_source" != no ; then
    6024  
    6025  CFLAGS=`echo "$CFLAGS" | \
    6026         sed     -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^       ]*\)\?[         ]/ /g' \
    6027 @@ -8060,7 +8563,7 @@
    6028         sed     -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^       ]*\)\?[         ]/ /g' \
    6029                 -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^       ]*\)\?$//g'`
    6030  
    6031 -               cf_temp_xopen_source="-D_XOPEN_SOURCE=$cf_cv_xopen_source"
    6032 +       cf_temp_xopen_source="-D_XOPEN_SOURCE=$cf_cv_xopen_source"
    6033  
    6034  cf_fix_cppflags=no
    6035  cf_new_cflags=
    6036 @@ -8140,7 +8643,7 @@
    6037         EXTRA_CPPFLAGS="$cf_new_extra_cppflags $EXTRA_CPPFLAGS"
    6038  fi
    6039  
    6040 -       fi
    6041 +fi
    6042  
    6043  cf_POSIX_C_SOURCE=$cf_POSIX_C_SOURCE
    6044  
    6045 @@ -8155,16 +8658,16 @@
    6046         sed     -e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^     ]*\)\?[         ]/ /g' \
    6047                 -e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^     ]*\)\?$//g'`
    6048  
    6049 -echo "$as_me:8158: checking if we should define _POSIX_C_SOURCE" >&5
    6050 +echo "$as_me:8661: checking if we should define _POSIX_C_SOURCE" >&5
    6051  echo $ECHO_N "checking if we should define _POSIX_C_SOURCE... $ECHO_C" >&6
    6052  if test "${cf_cv_posix_c_source+set}" = set; then
    6053    echo $ECHO_N "(cached) $ECHO_C" >&6
    6054  else
    6055  
    6056 -echo "${as_me:-configure}:8164: testing if the symbol is already defined go no further ..." 1>&5
    6057 +echo "${as_me:-configure}:8667: testing if the symbol is already defined go no further ..." 1>&5
    6058  
    6059         cat >conftest.$ac_ext <<_ACEOF
    6060 -#line 8167 "configure"
    6061 +#line 8670 "configure"
    6062  #include "confdefs.h"
    6063  #include <sys/types.h>
    6064  int
    6065 @@ -8179,16 +8682,16 @@
    6066  }
    6067  _ACEOF
    6068  rm -f conftest.$ac_objext
    6069 -if { (eval echo "$as_me:8182: \"$ac_compile\"") >&5
    6070 +if { (eval echo "$as_me:8685: \"$ac_compile\"") >&5
    6071    (eval $ac_compile) 2>&5
    6072    ac_status=$?
    6073 -  echo "$as_me:8185: \$? = $ac_status" >&5
    6074 +  echo "$as_me:8688: \$? = $ac_status" >&5
    6075    (exit $ac_status); } &&
    6076           { ac_try='test -s conftest.$ac_objext'
    6077 -  { (eval echo "$as_me:8188: \"$ac_try\"") >&5
    6078 +  { (eval echo "$as_me:8691: \"$ac_try\"") >&5
    6079    (eval $ac_try) 2>&5
    6080    ac_status=$?
    6081 -  echo "$as_me:8191: \$? = $ac_status" >&5
    6082 +  echo "$as_me:8694: \$? = $ac_status" >&5
    6083    (exit $ac_status); }; }; then
    6084    cf_cv_posix_c_source=no
    6085  else
    6086 @@ -8209,7 +8712,7 @@
    6087          esac
    6088          if test "$cf_want_posix_source" = yes ; then
    6089                 cat >conftest.$ac_ext <<_ACEOF
    6090 -#line 8212 "configure"
    6091 +#line 8715 "configure"
    6092  #include "confdefs.h"
    6093  #include <sys/types.h>
    6094  int
    6095 @@ -8224,16 +8727,16 @@
    6096  }
    6097  _ACEOF
    6098  rm -f conftest.$ac_objext
    6099 -if { (eval echo "$as_me:8227: \"$ac_compile\"") >&5
    6100 +if { (eval echo "$as_me:8730: \"$ac_compile\"") >&5
    6101    (eval $ac_compile) 2>&5
    6102    ac_status=$?
    6103 -  echo "$as_me:8230: \$? = $ac_status" >&5
    6104 +  echo "$as_me:8733: \$? = $ac_status" >&5
    6105    (exit $ac_status); } &&
    6106           { ac_try='test -s conftest.$ac_objext'
    6107 -  { (eval echo "$as_me:8233: \"$ac_try\"") >&5
    6108 +  { (eval echo "$as_me:8736: \"$ac_try\"") >&5
    6109    (eval $ac_try) 2>&5
    6110    ac_status=$?
    6111 -  echo "$as_me:8236: \$? = $ac_status" >&5
    6112 +  echo "$as_me:8739: \$? = $ac_status" >&5
    6113    (exit $ac_status); }; }; then
    6114    :
    6115  else
    6116 @@ -8244,15 +8747,15 @@
    6117  rm -f conftest.$ac_objext conftest.$ac_ext
    6118          fi
    6119  
    6120 -echo "${as_me:-configure}:8247: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5
    6121 +echo "${as_me:-configure}:8750: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5
    6122  
    6123          CFLAGS="$cf_trim_CFLAGS"
    6124          CPPFLAGS="$cf_trim_CPPFLAGS $cf_cv_posix_c_source"
    6125  
    6126 -echo "${as_me:-configure}:8252: testing if the second compile does not leave our definition intact error ..." 1>&5
    6127 +echo "${as_me:-configure}:8755: testing if the second compile does not leave our definition intact error ..." 1>&5
    6128  
    6129          cat >conftest.$ac_ext <<_ACEOF
    6130 -#line 8255 "configure"
    6131 +#line 8758 "configure"
    6132  #include "confdefs.h"
    6133  #include <sys/types.h>
    6134  int
    6135 @@ -8267,16 +8770,16 @@
    6136  }
    6137  _ACEOF
    6138  rm -f conftest.$ac_objext
    6139 -if { (eval echo "$as_me:8270: \"$ac_compile\"") >&5
    6140 +if { (eval echo "$as_me:8773: \"$ac_compile\"") >&5
    6141    (eval $ac_compile) 2>&5
    6142    ac_status=$?
    6143 -  echo "$as_me:8273: \$? = $ac_status" >&5
    6144 +  echo "$as_me:8776: \$? = $ac_status" >&5
    6145    (exit $ac_status); } &&
    6146           { ac_try='test -s conftest.$ac_objext'
    6147 -  { (eval echo "$as_me:8276: \"$ac_try\"") >&5
    6148 +  { (eval echo "$as_me:8779: \"$ac_try\"") >&5
    6149    (eval $ac_try) 2>&5
    6150    ac_status=$?
    6151 -  echo "$as_me:8279: \$? = $ac_status" >&5
    6152 +  echo "$as_me:8782: \$? = $ac_status" >&5
    6153    (exit $ac_status); }; }; then
    6154    :
    6155  else
    6156 @@ -8292,7 +8795,7 @@
    6157  rm -f conftest.$ac_objext conftest.$ac_ext
    6158  
    6159  fi
    6160 -echo "$as_me:8295: result: $cf_cv_posix_c_source" >&5
    6161 +echo "$as_me:8798: result: $cf_cv_posix_c_source" >&5
    6162  echo "${ECHO_T}$cf_cv_posix_c_source" >&6
    6163  
    6164  if test "$cf_cv_posix_c_source" != no ; then
    6165 @@ -8464,6 +8967,273 @@
    6166  
    6167  fi
    6168  
    6169 +if test -n "$cf_XOPEN_SOURCE" && test -z "$cf_cv_xopen_source" ; then
    6170 +       echo "$as_me:8971: checking if _XOPEN_SOURCE really is set" >&5
    6171 +echo $ECHO_N "checking if _XOPEN_SOURCE really is set... $ECHO_C" >&6
    6172 +       cat >conftest.$ac_ext <<_ACEOF
    6173 +#line 8974 "configure"
    6174 +#include "confdefs.h"
    6175 +#include <stdlib.h>
    61766446+int
    61776447+main ()
     
    61866456+_ACEOF
    61876457+rm -f conftest.$ac_objext
    6188 +if { (eval echo "$as_me:8989: \"$ac_compile\"") >&5
     6458+if { (eval echo "$as_me:8355: \"$ac_compile\"") >&5
    61896459+  (eval $ac_compile) 2>&5
    61906460+  ac_status=$?
    6191 +  echo "$as_me:8992: \$? = $ac_status" >&5
     6461+  echo "$as_me:8358: \$? = $ac_status" >&5
    61926462+  (exit $ac_status); } &&
    61936463+         { ac_try='test -s conftest.$ac_objext'
    6194 +  { (eval echo "$as_me:8995: \"$ac_try\"") >&5
     6464+  { (eval echo "$as_me:8361: \"$ac_try\"") >&5
    61956465+  (eval $ac_try) 2>&5
    61966466+  ac_status=$?
    6197 +  echo "$as_me:8998: \$? = $ac_status" >&5
    6198 +  (exit $ac_status); }; }; then
    6199 +  cf_XOPEN_SOURCE_set=yes
    6200 +else
    6201 +  echo "$as_me: failed program was:" >&5
    6202 +cat conftest.$ac_ext >&5
    6203 +cf_XOPEN_SOURCE_set=no
    6204 +fi
    6205 +rm -f conftest.$ac_objext conftest.$ac_ext
    6206 +       echo "$as_me:9007: result: $cf_XOPEN_SOURCE_set" >&5
    6207 +echo "${ECHO_T}$cf_XOPEN_SOURCE_set" >&6
    6208 +       if test $cf_XOPEN_SOURCE_set = yes
    6209 +       then
    6210 +               cat >conftest.$ac_ext <<_ACEOF
    6211 +#line 9012 "configure"
    6212 +#include "confdefs.h"
    6213 +#include <stdlib.h>
    6214 +int
    6215 +main ()
    6216 +{
    6217 +
    6218 +#if (_XOPEN_SOURCE - 0) < $cf_XOPEN_SOURCE
    6219 +make an error
    6220 +#endif
    6221 +  ;
    6222 +  return 0;
    6223 +}
    6224 +_ACEOF
    6225 +rm -f conftest.$ac_objext
    6226 +if { (eval echo "$as_me:9027: \"$ac_compile\"") >&5
    6227 +  (eval $ac_compile) 2>&5
    6228 +  ac_status=$?
    6229 +  echo "$as_me:9030: \$? = $ac_status" >&5
    6230 +  (exit $ac_status); } &&
    6231 +         { ac_try='test -s conftest.$ac_objext'
    6232 +  { (eval echo "$as_me:9033: \"$ac_try\"") >&5
    6233 +  (eval $ac_try) 2>&5
    6234 +  ac_status=$?
    6235 +  echo "$as_me:9036: \$? = $ac_status" >&5
    6236 +  (exit $ac_status); }; }; then
    6237 +  cf_XOPEN_SOURCE_set_ok=yes
    6238 +else
    6239 +  echo "$as_me: failed program was:" >&5
    6240 +cat conftest.$ac_ext >&5
    6241 +cf_XOPEN_SOURCE_set_ok=no
    6242 +fi
    6243 +rm -f conftest.$ac_objext conftest.$ac_ext
    6244 +               if test $cf_XOPEN_SOURCE_set_ok = no
    6245 +               then
    6246 +                       { echo "$as_me:9047: WARNING: _XOPEN_SOURCE is lower than requested" >&5
    6247 +echo "$as_me: WARNING: _XOPEN_SOURCE is lower than requested" >&2;}
    6248 +               fi
    6249 +       else
    6250 +
    6251 +echo "$as_me:9052: checking if we should define _XOPEN_SOURCE" >&5
    6252 +echo $ECHO_N "checking if we should define _XOPEN_SOURCE... $ECHO_C" >&6
    6253 +if test "${cf_cv_xopen_source+set}" = set; then
    6254 +  echo $ECHO_N "(cached) $ECHO_C" >&6
    6255 +else
    6256 +
    6257 +       cat >conftest.$ac_ext <<_ACEOF
    6258 +#line 9059 "configure"
    6259 +#include "confdefs.h"
    6260 +
    6261 +#include <stdlib.h>
    6262 +#include <string.h>
    6263 +#include <sys/types.h>
    6264 +
    6265 +int
    6266 +main ()
    6267 +{
    6268 +
    6269 +#ifndef _XOPEN_SOURCE
    6270 +make an error
    6271 +#endif
    6272 +  ;
    6273 +  return 0;
    6274 +}
    6275 +_ACEOF
    6276 +rm -f conftest.$ac_objext
    6277 +if { (eval echo "$as_me:9078: \"$ac_compile\"") >&5
    6278 +  (eval $ac_compile) 2>&5
    6279 +  ac_status=$?
    6280 +  echo "$as_me:9081: \$? = $ac_status" >&5
    6281 +  (exit $ac_status); } &&
    6282 +         { ac_try='test -s conftest.$ac_objext'
    6283 +  { (eval echo "$as_me:9084: \"$ac_try\"") >&5
    6284 +  (eval $ac_try) 2>&5
    6285 +  ac_status=$?
    6286 +  echo "$as_me:9087: \$? = $ac_status" >&5
     6467+  echo "$as_me:8364: \$? = $ac_status" >&5
    62876468+  (exit $ac_status); }; }; then
    62886469+  cf_cv_xopen_source=no
     
    62936474+        CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=$cf_XOPEN_SOURCE"
    62946475+        cat >conftest.$ac_ext <<_ACEOF
    6295 +#line 9096 "configure"
     6476+#line 8373 "configure"
    62966477+#include "confdefs.h"
    62976478+
     
    63126493+_ACEOF
    63136494+rm -f conftest.$ac_objext
    6314 +if { (eval echo "$as_me:9115: \"$ac_compile\"") >&5
     6495+if { (eval echo "$as_me:8392: \"$ac_compile\"") >&5
    63156496+  (eval $ac_compile) 2>&5
    63166497+  ac_status=$?
    6317 +  echo "$as_me:9118: \$? = $ac_status" >&5
     6498+  echo "$as_me:8395: \$? = $ac_status" >&5
    63186499+  (exit $ac_status); } &&
    63196500+         { ac_try='test -s conftest.$ac_objext'
    6320 +  { (eval echo "$as_me:9121: \"$ac_try\"") >&5
     6501+  { (eval echo "$as_me:8398: \"$ac_try\"") >&5
    63216502+  (eval $ac_try) 2>&5
    63226503+  ac_status=$?
    6323 +  echo "$as_me:9124: \$? = $ac_status" >&5
     6504+  echo "$as_me:8401: \$? = $ac_status" >&5
    63246505+  (exit $ac_status); }; }; then
    63256506+  cf_cv_xopen_source=no
     
    63316512+rm -f conftest.$ac_objext conftest.$ac_ext
    63326513+       CPPFLAGS="$cf_save"
    6333 +
     6514 
     6515 fi
     6516 rm -f conftest.$ac_objext conftest.$ac_ext
     6517 
     6518 fi
     6519-echo "$as_me:8051: result: $cf_cv_xopen_source" >&5
     6520+echo "$as_me:8416: result: $cf_cv_xopen_source" >&5
     6521 echo "${ECHO_T}$cf_cv_xopen_source" >&6
     6522-       if test "$cf_cv_xopen_source" != no ; then
     6523+
     6524+if test "$cf_cv_xopen_source" != no ; then
     6525 
     6526 CFLAGS=`echo "$CFLAGS" | \
     6527        sed     -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^       ]*\)\?[         ]/ /g' \
     6528@@ -8060,7 +8426,7 @@
     6529        sed     -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^       ]*\)\?[         ]/ /g' \
     6530                -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^       ]*\)\?$//g'`
     6531 
     6532-               cf_temp_xopen_source="-D_XOPEN_SOURCE=$cf_cv_xopen_source"
     6533+       cf_temp_xopen_source="-D_XOPEN_SOURCE=$cf_cv_xopen_source"
     6534 
     6535 cf_fix_cppflags=no
     6536 cf_new_cflags=
     6537@@ -8140,7 +8506,7 @@
     6538        EXTRA_CPPFLAGS="$cf_new_extra_cppflags $EXTRA_CPPFLAGS"
     6539 fi
     6540 
     6541-       fi
    63346542+fi
    6335 +rm -f conftest.$ac_objext conftest.$ac_ext
    6336 +
     6543 
     6544 cf_POSIX_C_SOURCE=$cf_POSIX_C_SOURCE
     6545 
     6546@@ -8155,16 +8521,16 @@
     6547        sed     -e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^     ]*\)\?[         ]/ /g' \
     6548                -e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^     ]*\)\?$//g'`
     6549 
     6550-echo "$as_me:8158: checking if we should define _POSIX_C_SOURCE" >&5
     6551+echo "$as_me:8524: checking if we should define _POSIX_C_SOURCE" >&5
     6552 echo $ECHO_N "checking if we should define _POSIX_C_SOURCE... $ECHO_C" >&6
     6553 if test "${cf_cv_posix_c_source+set}" = set; then
     6554   echo $ECHO_N "(cached) $ECHO_C" >&6
     6555 else
     6556 
     6557-echo "${as_me:-configure}:8164: testing if the symbol is already defined go no further ..." 1>&5
     6558+echo "${as_me:-configure}:8530: testing if the symbol is already defined go no further ..." 1>&5
     6559 
     6560        cat >conftest.$ac_ext <<_ACEOF
     6561-#line 8167 "configure"
     6562+#line 8533 "configure"
     6563 #include "confdefs.h"
     6564 #include <sys/types.h>
     6565 int
     6566@@ -8179,16 +8545,16 @@
     6567 }
     6568 _ACEOF
     6569 rm -f conftest.$ac_objext
     6570-if { (eval echo "$as_me:8182: \"$ac_compile\"") >&5
     6571+if { (eval echo "$as_me:8548: \"$ac_compile\"") >&5
     6572   (eval $ac_compile) 2>&5
     6573   ac_status=$?
     6574-  echo "$as_me:8185: \$? = $ac_status" >&5
     6575+  echo "$as_me:8551: \$? = $ac_status" >&5
     6576   (exit $ac_status); } &&
     6577          { ac_try='test -s conftest.$ac_objext'
     6578-  { (eval echo "$as_me:8188: \"$ac_try\"") >&5
     6579+  { (eval echo "$as_me:8554: \"$ac_try\"") >&5
     6580   (eval $ac_try) 2>&5
     6581   ac_status=$?
     6582-  echo "$as_me:8191: \$? = $ac_status" >&5
     6583+  echo "$as_me:8557: \$? = $ac_status" >&5
     6584   (exit $ac_status); }; }; then
     6585   cf_cv_posix_c_source=no
     6586 else
     6587@@ -8209,7 +8575,7 @@
     6588         esac
     6589         if test "$cf_want_posix_source" = yes ; then
     6590                cat >conftest.$ac_ext <<_ACEOF
     6591-#line 8212 "configure"
     6592+#line 8578 "configure"
     6593 #include "confdefs.h"
     6594 #include <sys/types.h>
     6595 int
     6596@@ -8224,16 +8590,16 @@
     6597 }
     6598 _ACEOF
     6599 rm -f conftest.$ac_objext
     6600-if { (eval echo "$as_me:8227: \"$ac_compile\"") >&5
     6601+if { (eval echo "$as_me:8593: \"$ac_compile\"") >&5
     6602   (eval $ac_compile) 2>&5
     6603   ac_status=$?
     6604-  echo "$as_me:8230: \$? = $ac_status" >&5
     6605+  echo "$as_me:8596: \$? = $ac_status" >&5
     6606   (exit $ac_status); } &&
     6607          { ac_try='test -s conftest.$ac_objext'
     6608-  { (eval echo "$as_me:8233: \"$ac_try\"") >&5
     6609+  { (eval echo "$as_me:8599: \"$ac_try\"") >&5
     6610   (eval $ac_try) 2>&5
     6611   ac_status=$?
     6612-  echo "$as_me:8236: \$? = $ac_status" >&5
     6613+  echo "$as_me:8602: \$? = $ac_status" >&5
     6614   (exit $ac_status); }; }; then
     6615   :
     6616 else
     6617@@ -8244,15 +8610,15 @@
     6618 rm -f conftest.$ac_objext conftest.$ac_ext
     6619         fi
     6620 
     6621-echo "${as_me:-configure}:8247: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5
     6622+echo "${as_me:-configure}:8613: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5
     6623 
     6624         CFLAGS="$cf_trim_CFLAGS"
     6625         CPPFLAGS="$cf_trim_CPPFLAGS $cf_cv_posix_c_source"
     6626 
     6627-echo "${as_me:-configure}:8252: testing if the second compile does not leave our definition intact error ..." 1>&5
     6628+echo "${as_me:-configure}:8618: testing if the second compile does not leave our definition intact error ..." 1>&5
     6629 
     6630         cat >conftest.$ac_ext <<_ACEOF
     6631-#line 8255 "configure"
     6632+#line 8621 "configure"
     6633 #include "confdefs.h"
     6634 #include <sys/types.h>
     6635 int
     6636@@ -8267,16 +8633,16 @@
     6637 }
     6638 _ACEOF
     6639 rm -f conftest.$ac_objext
     6640-if { (eval echo "$as_me:8270: \"$ac_compile\"") >&5
     6641+if { (eval echo "$as_me:8636: \"$ac_compile\"") >&5
     6642   (eval $ac_compile) 2>&5
     6643   ac_status=$?
     6644-  echo "$as_me:8273: \$? = $ac_status" >&5
     6645+  echo "$as_me:8639: \$? = $ac_status" >&5
     6646   (exit $ac_status); } &&
     6647          { ac_try='test -s conftest.$ac_objext'
     6648-  { (eval echo "$as_me:8276: \"$ac_try\"") >&5
     6649+  { (eval echo "$as_me:8642: \"$ac_try\"") >&5
     6650   (eval $ac_try) 2>&5
     6651   ac_status=$?
     6652-  echo "$as_me:8279: \$? = $ac_status" >&5
     6653+  echo "$as_me:8645: \$? = $ac_status" >&5
     6654   (exit $ac_status); }; }; then
     6655   :
     6656 else
     6657@@ -8292,7 +8658,7 @@
     6658 rm -f conftest.$ac_objext conftest.$ac_ext
     6659 
     6660 fi
     6661-echo "$as_me:8295: result: $cf_cv_posix_c_source" >&5
     6662+echo "$as_me:8661: result: $cf_cv_posix_c_source" >&5
     6663 echo "${ECHO_T}$cf_cv_posix_c_source" >&6
     6664 
     6665 if test "$cf_cv_posix_c_source" != no ; then
     6666@@ -8362,34 +8728,298 @@
     6667 esac
     6668 done
     6669 
     6670-if test -n "$cf_new_cflags" ; then
     6671+if test -n "$cf_new_cflags" ; then
     6672+
     6673+       CFLAGS="$CFLAGS $cf_new_cflags"
    63376674+fi
    6338 +echo "$as_me:9139: result: $cf_cv_xopen_source" >&5
    6339 +echo "${ECHO_T}$cf_cv_xopen_source" >&6
    6340 +
    6341 +if test "$cf_cv_xopen_source" != no ; then
    6342 +
    6343 +CFLAGS=`echo "$CFLAGS" | \
    6344 +       sed     -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^       ]*\)\?[         ]/ /g' \
    6345 +               -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^       ]*\)\?$//g'`
    6346 +
    6347 +CPPFLAGS=`echo "$CPPFLAGS" | \
    6348 +       sed     -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^       ]*\)\?[         ]/ /g' \
    6349 +               -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^       ]*\)\?$//g'`
    6350 +
    6351 +       cf_temp_xopen_source="-D_XOPEN_SOURCE=$cf_cv_xopen_source"
     6675+
     6676+if test -n "$cf_new_cppflags" ; then
     6677+
     6678+       CPPFLAGS="$CPPFLAGS $cf_new_cppflags"
     6679+fi
     6680+
     6681+if test -n "$cf_new_extra_cppflags" ; then
     6682+
     6683+       EXTRA_CPPFLAGS="$cf_new_extra_cppflags $EXTRA_CPPFLAGS"
     6684+fi
     6685+
     6686+fi
     6687+
     6688+       ;;
     6689+esac
     6690+
     6691+if test -n "$cf_xopen_source" ; then
    63526692+
    63536693+cf_fix_cppflags=no
     
    63566696+cf_new_extra_cppflags=
    63576697+
    6358 +for cf_add_cflags in $cf_temp_xopen_source
     6698+for cf_add_cflags in $cf_xopen_source
    63596699+do
    63606700+case $cf_fix_cppflags in
     
    64316771+fi
    64326772+
     6773+if test -n "$cf_XOPEN_SOURCE" && test -z "$cf_cv_xopen_source" ; then
     6774+       echo "$as_me:8834: checking if _XOPEN_SOURCE really is set" >&5
     6775+echo $ECHO_N "checking if _XOPEN_SOURCE really is set... $ECHO_C" >&6
     6776+       cat >conftest.$ac_ext <<_ACEOF
     6777+#line 8837 "configure"
     6778+#include "confdefs.h"
     6779+#include <stdlib.h>
     6780+int
     6781+main ()
     6782+{
     6783+
     6784+#ifndef _XOPEN_SOURCE
     6785+make an error
     6786+#endif
     6787+  ;
     6788+  return 0;
     6789+}
     6790+_ACEOF
     6791+rm -f conftest.$ac_objext
     6792+if { (eval echo "$as_me:8852: \"$ac_compile\"") >&5
     6793+  (eval $ac_compile) 2>&5
     6794+  ac_status=$?
     6795+  echo "$as_me:8855: \$? = $ac_status" >&5
     6796+  (exit $ac_status); } &&
     6797+         { ac_try='test -s conftest.$ac_objext'
     6798+  { (eval echo "$as_me:8858: \"$ac_try\"") >&5
     6799+  (eval $ac_try) 2>&5
     6800+  ac_status=$?
     6801+  echo "$as_me:8861: \$? = $ac_status" >&5
     6802+  (exit $ac_status); }; }; then
     6803+  cf_XOPEN_SOURCE_set=yes
     6804+else
     6805+  echo "$as_me: failed program was:" >&5
     6806+cat conftest.$ac_ext >&5
     6807+cf_XOPEN_SOURCE_set=no
     6808+fi
     6809+rm -f conftest.$ac_objext conftest.$ac_ext
     6810+       echo "$as_me:8870: result: $cf_XOPEN_SOURCE_set" >&5
     6811+echo "${ECHO_T}$cf_XOPEN_SOURCE_set" >&6
     6812+       if test $cf_XOPEN_SOURCE_set = yes
     6813+       then
     6814+               cat >conftest.$ac_ext <<_ACEOF
     6815+#line 8875 "configure"
     6816+#include "confdefs.h"
     6817+#include <stdlib.h>
     6818+int
     6819+main ()
     6820+{
     6821+
     6822+#if (_XOPEN_SOURCE - 0) < $cf_XOPEN_SOURCE
     6823+make an error
     6824+#endif
     6825+  ;
     6826+  return 0;
     6827+}
     6828+_ACEOF
     6829+rm -f conftest.$ac_objext
     6830+if { (eval echo "$as_me:8890: \"$ac_compile\"") >&5
     6831+  (eval $ac_compile) 2>&5
     6832+  ac_status=$?
     6833+  echo "$as_me:8893: \$? = $ac_status" >&5
     6834+  (exit $ac_status); } &&
     6835+         { ac_try='test -s conftest.$ac_objext'
     6836+  { (eval echo "$as_me:8896: \"$ac_try\"") >&5
     6837+  (eval $ac_try) 2>&5
     6838+  ac_status=$?
     6839+  echo "$as_me:8899: \$? = $ac_status" >&5
     6840+  (exit $ac_status); }; }; then
     6841+  cf_XOPEN_SOURCE_set_ok=yes
     6842+else
     6843+  echo "$as_me: failed program was:" >&5
     6844+cat conftest.$ac_ext >&5
     6845+cf_XOPEN_SOURCE_set_ok=no
     6846+fi
     6847+rm -f conftest.$ac_objext conftest.$ac_ext
     6848+               if test $cf_XOPEN_SOURCE_set_ok = no
     6849+               then
     6850+                       { echo "$as_me:8910: WARNING: _XOPEN_SOURCE is lower than requested" >&5
     6851+echo "$as_me: WARNING: _XOPEN_SOURCE is lower than requested" >&2;}
     6852+               fi
     6853+       else
     6854+
     6855+echo "$as_me:8915: checking if we should define _XOPEN_SOURCE" >&5
     6856+echo $ECHO_N "checking if we should define _XOPEN_SOURCE... $ECHO_C" >&6
     6857+if test "${cf_cv_xopen_source+set}" = set; then
     6858+  echo $ECHO_N "(cached) $ECHO_C" >&6
     6859+else
     6860+
     6861+       cat >conftest.$ac_ext <<_ACEOF
     6862+#line 8922 "configure"
     6863+#include "confdefs.h"
     6864+
     6865+#include <stdlib.h>
     6866+#include <string.h>
     6867+#include <sys/types.h>
     6868+
     6869+int
     6870+main ()
     6871+{
     6872+
     6873+#ifndef _XOPEN_SOURCE
     6874+make an error
     6875+#endif
     6876+  ;
     6877+  return 0;
     6878+}
     6879+_ACEOF
     6880+rm -f conftest.$ac_objext
     6881+if { (eval echo "$as_me:8941: \"$ac_compile\"") >&5
     6882+  (eval $ac_compile) 2>&5
     6883+  ac_status=$?
     6884+  echo "$as_me:8944: \$? = $ac_status" >&5
     6885+  (exit $ac_status); } &&
     6886+         { ac_try='test -s conftest.$ac_objext'
     6887+  { (eval echo "$as_me:8947: \"$ac_try\"") >&5
     6888+  (eval $ac_try) 2>&5
     6889+  ac_status=$?
     6890+  echo "$as_me:8950: \$? = $ac_status" >&5
     6891+  (exit $ac_status); }; }; then
     6892+  cf_cv_xopen_source=no
     6893+else
     6894+  echo "$as_me: failed program was:" >&5
     6895+cat conftest.$ac_ext >&5
     6896+cf_save="$CPPFLAGS"
     6897+        CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=$cf_XOPEN_SOURCE"
     6898+        cat >conftest.$ac_ext <<_ACEOF
     6899+#line 8959 "configure"
     6900+#include "confdefs.h"
     6901 
     6902-       CFLAGS="$CFLAGS $cf_new_cflags"
     6903-fi
     6904+#include <stdlib.h>
     6905+#include <string.h>
     6906+#include <sys/types.h>
     6907 
     6908-if test -n "$cf_new_cppflags" ; then
     6909+int
     6910+main ()
     6911+{
     6912 
     6913-       CPPFLAGS="$CPPFLAGS $cf_new_cppflags"
     6914+#ifdef _XOPEN_SOURCE
     6915+make an error
     6916+#endif
     6917+  ;
     6918+  return 0;
     6919+}
     6920+_ACEOF
     6921+rm -f conftest.$ac_objext
     6922+if { (eval echo "$as_me:8978: \"$ac_compile\"") >&5
     6923+  (eval $ac_compile) 2>&5
     6924+  ac_status=$?
     6925+  echo "$as_me:8981: \$? = $ac_status" >&5
     6926+  (exit $ac_status); } &&
     6927+         { ac_try='test -s conftest.$ac_objext'
     6928+  { (eval echo "$as_me:8984: \"$ac_try\"") >&5
     6929+  (eval $ac_try) 2>&5
     6930+  ac_status=$?
     6931+  echo "$as_me:8987: \$? = $ac_status" >&5
     6932+  (exit $ac_status); }; }; then
     6933+  cf_cv_xopen_source=no
     6934+else
     6935+  echo "$as_me: failed program was:" >&5
     6936+cat conftest.$ac_ext >&5
     6937+cf_cv_xopen_source=$cf_XOPEN_SOURCE
     6938 fi
     6939+rm -f conftest.$ac_objext conftest.$ac_ext
     6940+       CPPFLAGS="$cf_save"
     6941 
     6942-if test -n "$cf_new_extra_cppflags" ; then
     6943-
     6944-       EXTRA_CPPFLAGS="$cf_new_extra_cppflags $EXTRA_CPPFLAGS"
     6945 fi
     6946+rm -f conftest.$ac_objext conftest.$ac_ext
     6947 
     6948 fi
     6949+echo "$as_me:9002: result: $cf_cv_xopen_source" >&5
     6950+echo "${ECHO_T}$cf_cv_xopen_source" >&6
     6951 
     6952-       ;;
     6953-esac
     6954+if test "$cf_cv_xopen_source" != no ; then
     6955 
     6956-if test -n "$cf_xopen_source" ; then
     6957+CFLAGS=`echo "$CFLAGS" | \
     6958+       sed     -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^       ]*\)\?[         ]/ /g' \
     6959+               -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^       ]*\)\?$//g'`
     6960+
     6961+CPPFLAGS=`echo "$CPPFLAGS" | \
     6962+       sed     -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^       ]*\)\?[         ]/ /g' \
     6963+               -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^       ]*\)\?$//g'`
     6964+
     6965+       cf_temp_xopen_source="-D_XOPEN_SOURCE=$cf_cv_xopen_source"
     6966 
     6967 cf_fix_cppflags=no
     6968 cf_new_cflags=
     6969 cf_new_cppflags=
     6970 cf_new_extra_cppflags=
     6971 
     6972-for cf_add_cflags in $cf_xopen_source
     6973+for cf_add_cflags in $cf_temp_xopen_source
     6974 do
     6975 case $cf_fix_cppflags in
     6976 no)
     6977@@ -8464,6 +9094,9 @@
     6978 
     6979 fi
     6980 
    64336981+       fi
    64346982+fi
     
    64376985 if test "${enable_largefile+set}" = set; then
    64386986   enableval="$enable_largefile"
    6439 @@ -8471,7 +9241,7 @@
     6987@@ -8471,7 +9104,7 @@
    64406988 fi;
    64416989 if test "$enable_largefile" != no; then
    64426990 
    64436991-  echo "$as_me:8474: checking for special C compiler options needed for large files" >&5
    6444 +  echo "$as_me:9244: checking for special C compiler options needed for large files" >&5
     6992+  echo "$as_me:9107: checking for special C compiler options needed for large files" >&5
    64456993 echo $ECHO_N "checking for special C compiler options needed for large files... $ECHO_C" >&6
    64466994 if test "${ac_cv_sys_largefile_CC+set}" = set; then
    64476995   echo $ECHO_N "(cached) $ECHO_C" >&6
    6448 @@ -8483,7 +9253,7 @@
     6996@@ -8483,7 +9116,7 @@
    64496997         # IRIX 6.2 and later do not support large files by default,
    64506998         # so use the C compiler's -n32 option if that helps.
    64516999          cat >conftest.$ac_ext <<_ACEOF
    64527000-#line 8486 "configure"
    6453 +#line 9256 "configure"
     7001+#line 9119 "configure"
    64547002 #include "confdefs.h"
    64557003 #include <sys/types.h>
    64567004  /* Check that off_t can represent 2**63 - 1 correctly.
    6457 @@ -8503,16 +9273,16 @@
     7005@@ -8503,16 +9136,16 @@
    64587006 }
    64597007 _ACEOF
    64607008         rm -f conftest.$ac_objext
    64617009-if { (eval echo "$as_me:8506: \"$ac_compile\"") >&5
    6462 +if { (eval echo "$as_me:9276: \"$ac_compile\"") >&5
     7010+if { (eval echo "$as_me:9139: \"$ac_compile\"") >&5
    64637011   (eval $ac_compile) 2>&5
    64647012   ac_status=$?
    64657013-  echo "$as_me:8509: \$? = $ac_status" >&5
    6466 +  echo "$as_me:9279: \$? = $ac_status" >&5
     7014+  echo "$as_me:9142: \$? = $ac_status" >&5
    64677015   (exit $ac_status); } &&
    64687016          { ac_try='test -s conftest.$ac_objext'
    64697017-  { (eval echo "$as_me:8512: \"$ac_try\"") >&5
    6470 +  { (eval echo "$as_me:9282: \"$ac_try\"") >&5
     7018+  { (eval echo "$as_me:9145: \"$ac_try\"") >&5
    64717019   (eval $ac_try) 2>&5
    64727020   ac_status=$?
    64737021-  echo "$as_me:8515: \$? = $ac_status" >&5
    6474 +  echo "$as_me:9285: \$? = $ac_status" >&5
     7022+  echo "$as_me:9148: \$? = $ac_status" >&5
    64757023   (exit $ac_status); }; }; then
    64767024   break
    64777025 else
    6478 @@ -8522,16 +9292,16 @@
     7026@@ -8522,16 +9155,16 @@
    64797027 rm -f conftest.$ac_objext
    64807028         CC="$CC -n32"
    64817029         rm -f conftest.$ac_objext
    64827030-if { (eval echo "$as_me:8525: \"$ac_compile\"") >&5
    6483 +if { (eval echo "$as_me:9295: \"$ac_compile\"") >&5
     7031+if { (eval echo "$as_me:9158: \"$ac_compile\"") >&5
    64847032   (eval $ac_compile) 2>&5
    64857033   ac_status=$?
    64867034-  echo "$as_me:8528: \$? = $ac_status" >&5
    6487 +  echo "$as_me:9298: \$? = $ac_status" >&5
     7035+  echo "$as_me:9161: \$? = $ac_status" >&5
    64887036   (exit $ac_status); } &&
    64897037          { ac_try='test -s conftest.$ac_objext'
    64907038-  { (eval echo "$as_me:8531: \"$ac_try\"") >&5
    6491 +  { (eval echo "$as_me:9301: \"$ac_try\"") >&5
     7039+  { (eval echo "$as_me:9164: \"$ac_try\"") >&5
    64927040   (eval $ac_try) 2>&5
    64937041   ac_status=$?
    64947042-  echo "$as_me:8534: \$? = $ac_status" >&5
    6495 +  echo "$as_me:9304: \$? = $ac_status" >&5
     7043+  echo "$as_me:9167: \$? = $ac_status" >&5
    64967044   (exit $ac_status); }; }; then
    64977045   ac_cv_sys_largefile_CC=' -n32'; break
    64987046 else
    6499 @@ -8545,13 +9315,13 @@
     7047@@ -8545,13 +9178,13 @@
    65007048        rm -f conftest.$ac_ext
    65017049     fi
    65027050 fi
    65037051-echo "$as_me:8548: result: $ac_cv_sys_largefile_CC" >&5
    6504 +echo "$as_me:9318: result: $ac_cv_sys_largefile_CC" >&5
     7052+echo "$as_me:9181: result: $ac_cv_sys_largefile_CC" >&5
    65057053 echo "${ECHO_T}$ac_cv_sys_largefile_CC" >&6
    65067054   if test "$ac_cv_sys_largefile_CC" != no; then
     
    65097057 
    65107058-  echo "$as_me:8554: checking for _FILE_OFFSET_BITS value needed for large files" >&5
    6511 +  echo "$as_me:9324: checking for _FILE_OFFSET_BITS value needed for large files" >&5
     7059+  echo "$as_me:9187: checking for _FILE_OFFSET_BITS value needed for large files" >&5
    65127060 echo $ECHO_N "checking for _FILE_OFFSET_BITS value needed for large files... $ECHO_C" >&6
    65137061 if test "${ac_cv_sys_file_offset_bits+set}" = set; then
    65147062   echo $ECHO_N "(cached) $ECHO_C" >&6
    6515 @@ -8559,7 +9329,7 @@
     7063@@ -8559,7 +9192,7 @@
    65167064   while :; do
    65177065   ac_cv_sys_file_offset_bits=no
    65187066   cat >conftest.$ac_ext <<_ACEOF
    65197067-#line 8562 "configure"
    6520 +#line 9332 "configure"
     7068+#line 9195 "configure"
    65217069 #include "confdefs.h"
    65227070 #include <sys/types.h>
    65237071  /* Check that off_t can represent 2**63 - 1 correctly.
    6524 @@ -8579,16 +9349,16 @@
     7072@@ -8579,16 +9212,16 @@
    65257073 }
    65267074 _ACEOF
    65277075 rm -f conftest.$ac_objext
    65287076-if { (eval echo "$as_me:8582: \"$ac_compile\"") >&5
    6529 +if { (eval echo "$as_me:9352: \"$ac_compile\"") >&5
     7077+if { (eval echo "$as_me:9215: \"$ac_compile\"") >&5
    65307078   (eval $ac_compile) 2>&5
    65317079   ac_status=$?
    65327080-  echo "$as_me:8585: \$? = $ac_status" >&5
    6533 +  echo "$as_me:9355: \$? = $ac_status" >&5
     7081+  echo "$as_me:9218: \$? = $ac_status" >&5
    65347082   (exit $ac_status); } &&
    65357083          { ac_try='test -s conftest.$ac_objext'
    65367084-  { (eval echo "$as_me:8588: \"$ac_try\"") >&5
    6537 +  { (eval echo "$as_me:9358: \"$ac_try\"") >&5
     7085+  { (eval echo "$as_me:9221: \"$ac_try\"") >&5
    65387086   (eval $ac_try) 2>&5
    65397087   ac_status=$?
    65407088-  echo "$as_me:8591: \$? = $ac_status" >&5
    6541 +  echo "$as_me:9361: \$? = $ac_status" >&5
     7089+  echo "$as_me:9224: \$? = $ac_status" >&5
    65427090   (exit $ac_status); }; }; then
    65437091   break
    65447092 else
    6545 @@ -8597,7 +9367,7 @@
     7093@@ -8597,7 +9230,7 @@
    65467094 fi
    65477095 rm -f conftest.$ac_objext conftest.$ac_ext
    65487096   cat >conftest.$ac_ext <<_ACEOF
    65497097-#line 8600 "configure"
    6550 +#line 9370 "configure"
     7098+#line 9233 "configure"
    65517099 #include "confdefs.h"
    65527100 #define _FILE_OFFSET_BITS 64
    65537101 #include <sys/types.h>
    6554 @@ -8618,16 +9388,16 @@
     7102@@ -8618,16 +9251,16 @@
    65557103 }
    65567104 _ACEOF
    65577105 rm -f conftest.$ac_objext
    65587106-if { (eval echo "$as_me:8621: \"$ac_compile\"") >&5
    6559 +if { (eval echo "$as_me:9391: \"$ac_compile\"") >&5
     7107+if { (eval echo "$as_me:9254: \"$ac_compile\"") >&5
    65607108   (eval $ac_compile) 2>&5
    65617109   ac_status=$?
    65627110-  echo "$as_me:8624: \$? = $ac_status" >&5
    6563 +  echo "$as_me:9394: \$? = $ac_status" >&5
     7111+  echo "$as_me:9257: \$? = $ac_status" >&5
    65647112   (exit $ac_status); } &&
    65657113          { ac_try='test -s conftest.$ac_objext'
    65667114-  { (eval echo "$as_me:8627: \"$ac_try\"") >&5
    6567 +  { (eval echo "$as_me:9397: \"$ac_try\"") >&5
     7115+  { (eval echo "$as_me:9260: \"$ac_try\"") >&5
    65687116   (eval $ac_try) 2>&5
    65697117   ac_status=$?
    65707118-  echo "$as_me:8630: \$? = $ac_status" >&5
    6571 +  echo "$as_me:9400: \$? = $ac_status" >&5
     7119+  echo "$as_me:9263: \$? = $ac_status" >&5
    65727120   (exit $ac_status); }; }; then
    65737121   ac_cv_sys_file_offset_bits=64; break
    65747122 else
    6575 @@ -8638,7 +9408,7 @@
     7123@@ -8638,7 +9271,7 @@
    65767124   break
    65777125 done
    65787126 fi
    65797127-echo "$as_me:8641: result: $ac_cv_sys_file_offset_bits" >&5
    6580 +echo "$as_me:9411: result: $ac_cv_sys_file_offset_bits" >&5
     7128+echo "$as_me:9274: result: $ac_cv_sys_file_offset_bits" >&5
    65817129 echo "${ECHO_T}$ac_cv_sys_file_offset_bits" >&6
    65827130 if test "$ac_cv_sys_file_offset_bits" != no; then
    65837131 
    6584 @@ -8648,7 +9418,7 @@
     7132@@ -8648,7 +9281,7 @@
    65857133 
    65867134 fi
    65877135 rm -rf conftest*
    65887136-  echo "$as_me:8651: checking for _LARGE_FILES value needed for large files" >&5
    6589 +  echo "$as_me:9421: checking for _LARGE_FILES value needed for large files" >&5
     7137+  echo "$as_me:9284: checking for _LARGE_FILES value needed for large files" >&5
    65907138 echo $ECHO_N "checking for _LARGE_FILES value needed for large files... $ECHO_C" >&6
    65917139 if test "${ac_cv_sys_large_files+set}" = set; then
    65927140   echo $ECHO_N "(cached) $ECHO_C" >&6
    6593 @@ -8656,7 +9426,7 @@
     7141@@ -8656,7 +9289,7 @@
    65947142   while :; do
    65957143   ac_cv_sys_large_files=no
    65967144   cat >conftest.$ac_ext <<_ACEOF
    65977145-#line 8659 "configure"
    6598 +#line 9429 "configure"
     7146+#line 9292 "configure"
    65997147 #include "confdefs.h"
    66007148 #include <sys/types.h>
    66017149  /* Check that off_t can represent 2**63 - 1 correctly.
    6602 @@ -8676,16 +9446,16 @@
     7150@@ -8676,16 +9309,16 @@
    66037151 }
    66047152 _ACEOF
    66057153 rm -f conftest.$ac_objext
    66067154-if { (eval echo "$as_me:8679: \"$ac_compile\"") >&5
    6607 +if { (eval echo "$as_me:9449: \"$ac_compile\"") >&5
     7155+if { (eval echo "$as_me:9312: \"$ac_compile\"") >&5
    66087156   (eval $ac_compile) 2>&5
    66097157   ac_status=$?
    66107158-  echo "$as_me:8682: \$? = $ac_status" >&5
    6611 +  echo "$as_me:9452: \$? = $ac_status" >&5
     7159+  echo "$as_me:9315: \$? = $ac_status" >&5
    66127160   (exit $ac_status); } &&
    66137161          { ac_try='test -s conftest.$ac_objext'
    66147162-  { (eval echo "$as_me:8685: \"$ac_try\"") >&5
    6615 +  { (eval echo "$as_me:9455: \"$ac_try\"") >&5
     7163+  { (eval echo "$as_me:9318: \"$ac_try\"") >&5
    66167164   (eval $ac_try) 2>&5
    66177165   ac_status=$?
    66187166-  echo "$as_me:8688: \$? = $ac_status" >&5
    6619 +  echo "$as_me:9458: \$? = $ac_status" >&5
     7167+  echo "$as_me:9321: \$? = $ac_status" >&5
    66207168   (exit $ac_status); }; }; then
    66217169   break
    66227170 else
    6623 @@ -8694,7 +9464,7 @@
     7171@@ -8694,7 +9327,7 @@
    66247172 fi
    66257173 rm -f conftest.$ac_objext conftest.$ac_ext
    66267174   cat >conftest.$ac_ext <<_ACEOF
    66277175-#line 8697 "configure"
    6628 +#line 9467 "configure"
     7176+#line 9330 "configure"
    66297177 #include "confdefs.h"
    66307178 #define _LARGE_FILES 1
    66317179 #include <sys/types.h>
    6632 @@ -8715,16 +9485,16 @@
     7180@@ -8715,16 +9348,16 @@
    66337181 }
    66347182 _ACEOF
    66357183 rm -f conftest.$ac_objext
    66367184-if { (eval echo "$as_me:8718: \"$ac_compile\"") >&5
    6637 +if { (eval echo "$as_me:9488: \"$ac_compile\"") >&5
     7185+if { (eval echo "$as_me:9351: \"$ac_compile\"") >&5
    66387186   (eval $ac_compile) 2>&5
    66397187   ac_status=$?
    66407188-  echo "$as_me:8721: \$? = $ac_status" >&5
    6641 +  echo "$as_me:9491: \$? = $ac_status" >&5
     7189+  echo "$as_me:9354: \$? = $ac_status" >&5
    66427190   (exit $ac_status); } &&
    66437191          { ac_try='test -s conftest.$ac_objext'
    66447192-  { (eval echo "$as_me:8724: \"$ac_try\"") >&5
    6645 +  { (eval echo "$as_me:9494: \"$ac_try\"") >&5
     7193+  { (eval echo "$as_me:9357: \"$ac_try\"") >&5
    66467194   (eval $ac_try) 2>&5
    66477195   ac_status=$?
    66487196-  echo "$as_me:8727: \$? = $ac_status" >&5
    6649 +  echo "$as_me:9497: \$? = $ac_status" >&5
     7197+  echo "$as_me:9360: \$? = $ac_status" >&5
    66507198   (exit $ac_status); }; }; then
    66517199   ac_cv_sys_large_files=1; break
    66527200 else
    6653 @@ -8735,7 +9505,7 @@
     7201@@ -8735,7 +9368,7 @@
    66547202   break
    66557203 done
    66567204 fi
    66577205-echo "$as_me:8738: result: $ac_cv_sys_large_files" >&5
    6658 +echo "$as_me:9508: result: $ac_cv_sys_large_files" >&5
     7206+echo "$as_me:9371: result: $ac_cv_sys_large_files" >&5
    66597207 echo "${ECHO_T}$ac_cv_sys_large_files" >&6
    66607208 if test "$ac_cv_sys_large_files" != no; then
    66617209 
    6662 @@ -8748,7 +9518,7 @@
     7210@@ -8748,7 +9381,7 @@
    66637211 fi
    66647212 
    66657213     if test "$enable_largefile" != no ; then
    66667214-       echo "$as_me:8751: checking for _LARGEFILE_SOURCE value needed for large files" >&5
    6667 +       echo "$as_me:9521: checking for _LARGEFILE_SOURCE value needed for large files" >&5
     7215+       echo "$as_me:9384: checking for _LARGEFILE_SOURCE value needed for large files" >&5
    66687216 echo $ECHO_N "checking for _LARGEFILE_SOURCE value needed for large files... $ECHO_C" >&6
    66697217 if test "${ac_cv_sys_largefile_source+set}" = set; then
    66707218   echo $ECHO_N "(cached) $ECHO_C" >&6
    6671 @@ -8756,7 +9526,7 @@
     7219@@ -8756,7 +9389,7 @@
    66727220   while :; do
    66737221   ac_cv_sys_largefile_source=no
    66747222   cat >conftest.$ac_ext <<_ACEOF
    66757223-#line 8759 "configure"
    6676 +#line 9529 "configure"
     7224+#line 9392 "configure"
    66777225 #include "confdefs.h"
    66787226 #include <stdio.h>
    66797227 int
    6680 @@ -8768,16 +9538,16 @@
     7228@@ -8768,16 +9401,16 @@
    66817229 }
    66827230 _ACEOF
    66837231 rm -f conftest.$ac_objext
    66847232-if { (eval echo "$as_me:8771: \"$ac_compile\"") >&5
    6685 +if { (eval echo "$as_me:9541: \"$ac_compile\"") >&5
     7233+if { (eval echo "$as_me:9404: \"$ac_compile\"") >&5
    66867234   (eval $ac_compile) 2>&5
    66877235   ac_status=$?
    66887236-  echo "$as_me:8774: \$? = $ac_status" >&5
    6689 +  echo "$as_me:9544: \$? = $ac_status" >&5
     7237+  echo "$as_me:9407: \$? = $ac_status" >&5
    66907238   (exit $ac_status); } &&
    66917239          { ac_try='test -s conftest.$ac_objext'
    66927240-  { (eval echo "$as_me:8777: \"$ac_try\"") >&5
    6693 +  { (eval echo "$as_me:9547: \"$ac_try\"") >&5
     7241+  { (eval echo "$as_me:9410: \"$ac_try\"") >&5
    66947242   (eval $ac_try) 2>&5
    66957243   ac_status=$?
    66967244-  echo "$as_me:8780: \$? = $ac_status" >&5
    6697 +  echo "$as_me:9550: \$? = $ac_status" >&5
     7245+  echo "$as_me:9413: \$? = $ac_status" >&5
    66987246   (exit $ac_status); }; }; then
    66997247   break
    67007248 else
    6701 @@ -8786,7 +9556,7 @@
     7249@@ -8786,7 +9419,7 @@
    67027250 fi
    67037251 rm -f conftest.$ac_objext conftest.$ac_ext
    67047252   cat >conftest.$ac_ext <<_ACEOF
    67057253-#line 8789 "configure"
    6706 +#line 9559 "configure"
     7254+#line 9422 "configure"
    67077255 #include "confdefs.h"
    67087256 #define _LARGEFILE_SOURCE 1
    67097257 #include <stdio.h>
    6710 @@ -8799,16 +9569,16 @@
     7258@@ -8799,16 +9432,16 @@
    67117259 }
    67127260 _ACEOF
    67137261 rm -f conftest.$ac_objext
    67147262-if { (eval echo "$as_me:8802: \"$ac_compile\"") >&5
    6715 +if { (eval echo "$as_me:9572: \"$ac_compile\"") >&5
     7263+if { (eval echo "$as_me:9435: \"$ac_compile\"") >&5
    67167264   (eval $ac_compile) 2>&5
    67177265   ac_status=$?
    67187266-  echo "$as_me:8805: \$? = $ac_status" >&5
    6719 +  echo "$as_me:9575: \$? = $ac_status" >&5
     7267+  echo "$as_me:9438: \$? = $ac_status" >&5
    67207268   (exit $ac_status); } &&
    67217269          { ac_try='test -s conftest.$ac_objext'
    67227270-  { (eval echo "$as_me:8808: \"$ac_try\"") >&5
    6723 +  { (eval echo "$as_me:9578: \"$ac_try\"") >&5
     7271+  { (eval echo "$as_me:9441: \"$ac_try\"") >&5
    67247272   (eval $ac_try) 2>&5
    67257273   ac_status=$?
    67267274-  echo "$as_me:8811: \$? = $ac_status" >&5
    6727 +  echo "$as_me:9581: \$? = $ac_status" >&5
     7275+  echo "$as_me:9444: \$? = $ac_status" >&5
    67287276   (exit $ac_status); }; }; then
    67297277   ac_cv_sys_largefile_source=1; break
    67307278 else
    6731 @@ -8819,7 +9589,7 @@
     7279@@ -8819,7 +9452,7 @@
    67327280   break
    67337281 done
    67347282 fi
    67357283-echo "$as_me:8822: result: $ac_cv_sys_largefile_source" >&5
    6736 +echo "$as_me:9592: result: $ac_cv_sys_largefile_source" >&5
     7284+echo "$as_me:9455: result: $ac_cv_sys_largefile_source" >&5
    67377285 echo "${ECHO_T}$ac_cv_sys_largefile_source" >&6
    67387286 if test "$ac_cv_sys_largefile_source" != no; then
    67397287 
    6740 @@ -8833,13 +9603,13 @@
     7288@@ -8833,13 +9466,13 @@
    67417289 # We used to try defining _XOPEN_SOURCE=500 too, to work around a bug
    67427290 # in glibc 2.1.3, but that breaks too many other things.
    67437291 # If you want fseeko and ftello with glibc, upgrade to a fixed glibc.
    67447292-echo "$as_me:8836: checking for fseeko" >&5
    6745 +echo "$as_me:9606: checking for fseeko" >&5
     7293+echo "$as_me:9469: checking for fseeko" >&5
    67467294 echo $ECHO_N "checking for fseeko... $ECHO_C" >&6
    67477295 if test "${ac_cv_func_fseeko+set}" = set; then
     
    67507298   cat >conftest.$ac_ext <<_ACEOF
    67517299-#line 8842 "configure"
    6752 +#line 9612 "configure"
     7300+#line 9475 "configure"
    67537301 #include "confdefs.h"
    67547302 #include <stdio.h>
    67557303 int
    6756 @@ -8851,16 +9621,16 @@
     7304@@ -8851,16 +9484,16 @@
    67577305 }
    67587306 _ACEOF
    67597307 rm -f conftest.$ac_objext conftest$ac_exeext
    67607308-if { (eval echo "$as_me:8854: \"$ac_link\"") >&5
    6761 +if { (eval echo "$as_me:9624: \"$ac_link\"") >&5
     7309+if { (eval echo "$as_me:9487: \"$ac_link\"") >&5
    67627310   (eval $ac_link) 2>&5
    67637311   ac_status=$?
    67647312-  echo "$as_me:8857: \$? = $ac_status" >&5
    6765 +  echo "$as_me:9627: \$? = $ac_status" >&5
     7313+  echo "$as_me:9490: \$? = $ac_status" >&5
    67667314   (exit $ac_status); } &&
    67677315          { ac_try='test -s conftest$ac_exeext'
    67687316-  { (eval echo "$as_me:8860: \"$ac_try\"") >&5
    6769 +  { (eval echo "$as_me:9630: \"$ac_try\"") >&5
     7317+  { (eval echo "$as_me:9493: \"$ac_try\"") >&5
    67707318   (eval $ac_try) 2>&5
    67717319   ac_status=$?
    67727320-  echo "$as_me:8863: \$? = $ac_status" >&5
    6773 +  echo "$as_me:9633: \$? = $ac_status" >&5
     7321+  echo "$as_me:9496: \$? = $ac_status" >&5
    67747322   (exit $ac_status); }; }; then
    67757323   ac_cv_func_fseeko=yes
    67767324 else
    6777 @@ -8870,7 +9640,7 @@
     7325@@ -8870,7 +9503,7 @@
    67787326 fi
    67797327 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    67807328 fi
    67817329-echo "$as_me:8873: result: $ac_cv_func_fseeko" >&5
    6782 +echo "$as_me:9643: result: $ac_cv_func_fseeko" >&5
     7330+echo "$as_me:9506: result: $ac_cv_func_fseeko" >&5
    67837331 echo "${ECHO_T}$ac_cv_func_fseeko" >&6
    67847332 if test $ac_cv_func_fseeko = yes; then
    67857333 
    6786 @@ -8891,14 +9661,14 @@
     7334@@ -8891,14 +9524,14 @@
    67877335        test "$ac_cv_sys_largefile_source" != no && CPPFLAGS="$CPPFLAGS -D_LARGEFILE_SOURCE "
    67887336        test "$ac_cv_sys_file_offset_bits" != no && CPPFLAGS="$CPPFLAGS -D_FILE_OFFSET_BITS=$ac_cv_sys_file_offset_bits "
    67897337 
    67907338-       echo "$as_me:8894: checking whether to use struct dirent64" >&5
    6791 +       echo "$as_me:9664: checking whether to use struct dirent64" >&5
     7339+       echo "$as_me:9527: checking whether to use struct dirent64" >&5
    67927340 echo $ECHO_N "checking whether to use struct dirent64... $ECHO_C" >&6
    67937341 if test "${cf_cv_struct_dirent64+set}" = set; then
     
    67977345                cat >conftest.$ac_ext <<_ACEOF
    67987346-#line 8901 "configure"
    6799 +#line 9671 "configure"
     7347+#line 9534 "configure"
    68007348 #include "confdefs.h"
    68017349 
    68027350 #include <sys/types.h>
    6803 @@ -8919,16 +9689,16 @@
     7351@@ -8919,16 +9552,16 @@
    68047352 }
    68057353 _ACEOF
    68067354 rm -f conftest.$ac_objext
    68077355-if { (eval echo "$as_me:8922: \"$ac_compile\"") >&5
    6808 +if { (eval echo "$as_me:9692: \"$ac_compile\"") >&5
     7356+if { (eval echo "$as_me:9555: \"$ac_compile\"") >&5
    68097357   (eval $ac_compile) 2>&5
    68107358   ac_status=$?
    68117359-  echo "$as_me:8925: \$? = $ac_status" >&5
    6812 +  echo "$as_me:9695: \$? = $ac_status" >&5
     7360+  echo "$as_me:9558: \$? = $ac_status" >&5
    68137361   (exit $ac_status); } &&
    68147362          { ac_try='test -s conftest.$ac_objext'
    68157363-  { (eval echo "$as_me:8928: \"$ac_try\"") >&5
    6816 +  { (eval echo "$as_me:9698: \"$ac_try\"") >&5
     7364+  { (eval echo "$as_me:9561: \"$ac_try\"") >&5
    68177365   (eval $ac_try) 2>&5
    68187366   ac_status=$?
    68197367-  echo "$as_me:8931: \$? = $ac_status" >&5
    6820 +  echo "$as_me:9701: \$? = $ac_status" >&5
     7368+  echo "$as_me:9564: \$? = $ac_status" >&5
    68217369   (exit $ac_status); }; }; then
    68227370   cf_cv_struct_dirent64=yes
    68237371 else
    6824 @@ -8939,7 +9709,7 @@
     7372@@ -8939,7 +9572,7 @@
    68257373 rm -f conftest.$ac_objext conftest.$ac_ext
    68267374 
    68277375 fi
    68287376-echo "$as_me:8942: result: $cf_cv_struct_dirent64" >&5
    6829 +echo "$as_me:9712: result: $cf_cv_struct_dirent64" >&5
     7377+echo "$as_me:9575: result: $cf_cv_struct_dirent64" >&5
    68307378 echo "${ECHO_T}$cf_cv_struct_dirent64" >&6
    68317379        test "$cf_cv_struct_dirent64" = yes && cat >>confdefs.h <<\EOF
    68327380 #define HAVE_STRUCT_DIRENT64 1
    6833 @@ -8948,7 +9718,7 @@
     7381@@ -8948,7 +9581,7 @@
    68347382     fi
    68357383 
    68367384 ### Enable compiling-in rcs id's
    68377385-echo "$as_me:8951: checking if RCS identifiers should be compiled-in" >&5
    6838 +echo "$as_me:9721: checking if RCS identifiers should be compiled-in" >&5
     7386+echo "$as_me:9584: checking if RCS identifiers should be compiled-in" >&5
    68397387 echo $ECHO_N "checking if RCS identifiers should be compiled-in... $ECHO_C" >&6
    68407388 
    68417389 # Check whether --with-rcs-ids or --without-rcs-ids was given.
    6842 @@ -8958,7 +9728,7 @@
     7390@@ -8958,7 +9591,7 @@
    68437391 else
    68447392   with_rcs_ids=no
    68457393 fi;
    68467394-echo "$as_me:8961: result: $with_rcs_ids" >&5
    6847 +echo "$as_me:9731: result: $with_rcs_ids" >&5
     7395+echo "$as_me:9594: result: $with_rcs_ids" >&5
    68487396 echo "${ECHO_T}$with_rcs_ids" >&6
    68497397 test "$with_rcs_ids" = yes && cat >>confdefs.h <<\EOF
    68507398 #define USE_RCS_IDS 1
    6851 @@ -8967,7 +9737,7 @@
     7399@@ -8967,7 +9600,7 @@
    68527400 ###############################################################################
    68537401 
    68547402 ### Note that some functions (such as const) are normally disabled anyway.
    68557403-echo "$as_me:8970: checking if you want to build with function extensions" >&5
    6856 +echo "$as_me:9740: checking if you want to build with function extensions" >&5
     7404+echo "$as_me:9603: checking if you want to build with function extensions" >&5
    68577405 echo $ECHO_N "checking if you want to build with function extensions... $ECHO_C" >&6
    68587406 
    68597407 # Check whether --enable-ext-funcs or --disable-ext-funcs was given.
    6860 @@ -8977,7 +9747,7 @@
     7408@@ -8977,7 +9610,7 @@
    68617409 else
    68627410   with_ext_funcs=yes
    68637411 fi;
    68647412-echo "$as_me:8980: result: $with_ext_funcs" >&5
    6865 +echo "$as_me:9750: result: $with_ext_funcs" >&5
     7413+echo "$as_me:9613: result: $with_ext_funcs" >&5
    68667414 echo "${ECHO_T}$with_ext_funcs" >&6
    68677415 if test "$with_ext_funcs" = yes ; then
    68687416        NCURSES_EXT_FUNCS=1
    6869 @@ -8994,7 +9764,7 @@
     7417@@ -8994,7 +9627,7 @@
    68707418 fi
    68717419 
    68727420 ###   use option --enable-const to turn on use of const beyond that in XSI.
    68737421-echo "$as_me:8997: checking for extended use of const keyword" >&5
    6874 +echo "$as_me:9767: checking for extended use of const keyword" >&5
     7422+echo "$as_me:9630: checking for extended use of const keyword" >&5
    68757423 echo $ECHO_N "checking for extended use of const keyword... $ECHO_C" >&6
    68767424 
    68777425 # Check whether --enable-const or --disable-const was given.
    6878 @@ -9004,7 +9774,7 @@
     7426@@ -9004,7 +9637,7 @@
    68797427 else
    68807428   with_ext_const=no
    68817429 fi;
    68827430-echo "$as_me:9007: result: $with_ext_const" >&5
    6883 +echo "$as_me:9777: result: $with_ext_const" >&5
     7431+echo "$as_me:9640: result: $with_ext_const" >&5
    68847432 echo "${ECHO_T}$with_ext_const" >&6
    68857433 NCURSES_CONST='/*nothing*/'
    68867434 if test "$with_ext_const" = yes ; then
    6887 @@ -9014,7 +9784,7 @@
     7435@@ -9014,7 +9647,7 @@
    68887436 ###############################################################################
    68897437 # These options are relatively safe to experiment with.
    68907438 
    68917439-echo "$as_me:9017: checking if you want all development code" >&5
    6892 +echo "$as_me:9787: checking if you want all development code" >&5
     7440+echo "$as_me:9650: checking if you want all development code" >&5
    68937441 echo $ECHO_N "checking if you want all development code... $ECHO_C" >&6
    68947442 
    68957443 # Check whether --with-develop or --without-develop was given.
    6896 @@ -9024,7 +9794,7 @@
     7444@@ -9024,7 +9657,7 @@
    68977445 else
    68987446   with_develop=no
    68997447 fi;
    69007448-echo "$as_me:9027: result: $with_develop" >&5
    6901 +echo "$as_me:9797: result: $with_develop" >&5
     7449+echo "$as_me:9660: result: $with_develop" >&5
    69027450 echo "${ECHO_T}$with_develop" >&6
    69037451 
    69047452 ###############################################################################
    6905 @@ -9033,7 +9803,7 @@
     7453@@ -9033,7 +9666,7 @@
    69067454 # This is still experimental (20080329), but should ultimately be moved to
    69077455 # the script-block --with-normal, etc.
    69087456 
    69097457-echo "$as_me:9036: checking if you want to link with the pthread library" >&5
    6910 +echo "$as_me:9806: checking if you want to link with the pthread library" >&5
     7458+echo "$as_me:9669: checking if you want to link with the pthread library" >&5
    69117459 echo $ECHO_N "checking if you want to link with the pthread library... $ECHO_C" >&6
    69127460 
    69137461 # Check whether --with-pthread or --without-pthread was given.
    6914 @@ -9043,27 +9813,27 @@
     7462@@ -9043,27 +9676,27 @@
    69157463 else
    69167464   with_pthread=no
    69177465 fi;
    69187466-echo "$as_me:9046: result: $with_pthread" >&5
    6919 +echo "$as_me:9816: result: $with_pthread" >&5
     7467+echo "$as_me:9679: result: $with_pthread" >&5
    69207468 echo "${ECHO_T}$with_pthread" >&6
    69217469 
    69227470 if test "$with_pthread" != no ; then
    69237471-    echo "$as_me:9050: checking for pthread.h" >&5
    6924 +    echo "$as_me:9820: checking for pthread.h" >&5
     7472+    echo "$as_me:9683: checking for pthread.h" >&5
    69257473 echo $ECHO_N "checking for pthread.h... $ECHO_C" >&6
    69267474 if test "${ac_cv_header_pthread_h+set}" = set; then
     
    69297477   cat >conftest.$ac_ext <<_ACEOF
    69307478-#line 9056 "configure"
    6931 +#line 9826 "configure"
     7479+#line 9689 "configure"
    69327480 #include "confdefs.h"
    69337481 #include <pthread.h>
    69347482 _ACEOF
    69357483-if { (eval echo "$as_me:9060: \"$ac_cpp conftest.$ac_ext\"") >&5
    6936 +if { (eval echo "$as_me:9830: \"$ac_cpp conftest.$ac_ext\"") >&5
     7484+if { (eval echo "$as_me:9693: \"$ac_cpp conftest.$ac_ext\"") >&5
    69377485   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
    69387486   ac_status=$?
     
    69417489   cat conftest.err >&5
    69427490-  echo "$as_me:9066: \$? = $ac_status" >&5
    6943 +  echo "$as_me:9836: \$? = $ac_status" >&5
     7491+  echo "$as_me:9699: \$? = $ac_status" >&5
    69447492   (exit $ac_status); } >/dev/null; then
    69457493   if test -s conftest.err; then
    69467494     ac_cpp_err=$ac_c_preproc_warn_flag
    6947 @@ -9082,7 +9852,7 @@
     7495@@ -9082,7 +9715,7 @@
    69487496 fi
    69497497 rm -f conftest.err conftest.$ac_ext
    69507498 fi
    69517499-echo "$as_me:9085: result: $ac_cv_header_pthread_h" >&5
    6952 +echo "$as_me:9855: result: $ac_cv_header_pthread_h" >&5
     7500+echo "$as_me:9718: result: $ac_cv_header_pthread_h" >&5
    69537501 echo "${ECHO_T}$ac_cv_header_pthread_h" >&6
    69547502 if test $ac_cv_header_pthread_h = yes; then
    69557503 
    6956 @@ -9090,12 +9860,14 @@
     7504@@ -9090,12 +9723,14 @@
    69577505 #define HAVE_PTHREADS_H 1
    69587506 EOF
     
    69667514+       for cf_lib_pthread in pthread c_r
    69677515+       do
    6968 +           echo "$as_me:9865: checking if we can link with the $cf_lib_pthread library" >&5
     7516+           echo "$as_me:9728: checking if we can link with the $cf_lib_pthread library" >&5
    69697517+echo $ECHO_N "checking if we can link with the $cf_lib_pthread library... $ECHO_C" >&6
    69707518+           cf_save_LIBS="$LIBS"
    69717519+           LIBS="-l$cf_lib_pthread $LIBS"
    69727520+           cat >conftest.$ac_ext <<_ACEOF
    6973 +#line 9870 "configure"
     7521+#line 9733 "configure"
    69747522 #include "confdefs.h"
    69757523 
    69767524 #include <pthread.h>
    6977 @@ -9104,23 +9876,24 @@
     7525@@ -9104,23 +9739,24 @@
    69787526 main ()
    69797527 {
     
    69897537 rm -f conftest.$ac_objext conftest$ac_exeext
    69907538-if { (eval echo "$as_me:9114: \"$ac_link\"") >&5
    6991 +if { (eval echo "$as_me:9887: \"$ac_link\"") >&5
     7539+if { (eval echo "$as_me:9750: \"$ac_link\"") >&5
    69927540   (eval $ac_link) 2>&5
    69937541   ac_status=$?
    69947542-  echo "$as_me:9117: \$? = $ac_status" >&5
    6995 +  echo "$as_me:9890: \$? = $ac_status" >&5
     7543+  echo "$as_me:9753: \$? = $ac_status" >&5
    69967544   (exit $ac_status); } &&
    69977545          { ac_try='test -s conftest$ac_exeext'
    69987546-  { (eval echo "$as_me:9120: \"$ac_try\"") >&5
    6999 +  { (eval echo "$as_me:9893: \"$ac_try\"") >&5
     7547+  { (eval echo "$as_me:9756: \"$ac_try\"") >&5
    70007548   (eval $ac_try) 2>&5
    70017549   ac_status=$?
    70027550-  echo "$as_me:9123: \$? = $ac_status" >&5
    7003 +  echo "$as_me:9896: \$? = $ac_status" >&5
     7551+  echo "$as_me:9759: \$? = $ac_status" >&5
    70047552   (exit $ac_status); }; }; then
    70057553   with_pthread=yes
    70067554 else
    7007 @@ -9129,27 +9902,29 @@
     7555@@ -9129,27 +9765,29 @@
    70087556 with_pthread=no
    70097557 fi
     
    70127560-        echo "$as_me:9133: result: $with_pthread" >&5
    70137561+           LIBS="$cf_save_LIBS"
    7014 +           echo "$as_me:9906: result: $with_pthread" >&5
     7562+           echo "$as_me:9769: result: $with_pthread" >&5
    70157563 echo "${ECHO_T}$with_pthread" >&6
    70167564+           test "$with_pthread" = yes && break
     
    70297577-            { { echo "$as_me:9143: error: Cannot link with pthread library" >&5
    70307578+       else
    7031 +           { { echo "$as_me:9918: error: Cannot link with pthread library" >&5
     7579+           { { echo "$as_me:9781: error: Cannot link with pthread library" >&5
    70327580 echo "$as_me: error: Cannot link with pthread library" >&2;}
    70337581    { (exit 1); exit 1; }; }
     
    70407588 
    70417589-echo "$as_me:9152: checking if you want to use weak-symbols for pthreads" >&5
    7042 +echo "$as_me:9927: checking if you want to use weak-symbols for pthreads" >&5
     7590+echo "$as_me:9790: checking if you want to use weak-symbols for pthreads" >&5
    70437591 echo $ECHO_N "checking if you want to use weak-symbols for pthreads... $ECHO_C" >&6
    70447592 
    70457593 # Check whether --enable-weak-symbols or --disable-weak-symbols was given.
    7046 @@ -9159,18 +9934,18 @@
     7594@@ -9159,18 +9797,18 @@
    70477595 else
    70487596   use_weak_symbols=no
    70497597 fi;
    70507598-echo "$as_me:9162: result: $use_weak_symbols" >&5
    7051 +echo "$as_me:9937: result: $use_weak_symbols" >&5
     7599+echo "$as_me:9800: result: $use_weak_symbols" >&5
    70527600 echo "${ECHO_T}$use_weak_symbols" >&6
    70537601 if test "$use_weak_symbols" = yes ; then
    70547602 
    70557603-echo "$as_me:9166: checking if $CC supports weak symbols" >&5
    7056 +echo "$as_me:9941: checking if $CC supports weak symbols" >&5
     7604+echo "$as_me:9804: checking if $CC supports weak symbols" >&5
    70577605 echo $ECHO_N "checking if $CC supports weak symbols... $ECHO_C" >&6
    70587606 if test "${cf_cv_weak_symbols+set}" = set; then
     
    70627610 cat >conftest.$ac_ext <<_ACEOF
    70637611-#line 9173 "configure"
    7064 +#line 9948 "configure"
     7612+#line 9811 "configure"
    70657613 #include "confdefs.h"
    70667614 
    70677615 #include <stdio.h>
    7068 @@ -9196,16 +9971,16 @@
     7616@@ -9196,16 +9834,16 @@
    70697617 }
    70707618 _ACEOF
    70717619 rm -f conftest.$ac_objext
    70727620-if { (eval echo "$as_me:9199: \"$ac_compile\"") >&5
    7073 +if { (eval echo "$as_me:9974: \"$ac_compile\"") >&5
     7621+if { (eval echo "$as_me:9837: \"$ac_compile\"") >&5
    70747622   (eval $ac_compile) 2>&5
    70757623   ac_status=$?
    70767624-  echo "$as_me:9202: \$? = $ac_status" >&5
    7077 +  echo "$as_me:9977: \$? = $ac_status" >&5
     7625+  echo "$as_me:9840: \$? = $ac_status" >&5
    70787626   (exit $ac_status); } &&
    70797627          { ac_try='test -s conftest.$ac_objext'
    70807628-  { (eval echo "$as_me:9205: \"$ac_try\"") >&5
    7081 +  { (eval echo "$as_me:9980: \"$ac_try\"") >&5
     7629+  { (eval echo "$as_me:9843: \"$ac_try\"") >&5
    70827630   (eval $ac_try) 2>&5
    70837631   ac_status=$?
    70847632-  echo "$as_me:9208: \$? = $ac_status" >&5
    7085 +  echo "$as_me:9983: \$? = $ac_status" >&5
     7633+  echo "$as_me:9846: \$? = $ac_status" >&5
    70867634   (exit $ac_status); }; }; then
    70877635   cf_cv_weak_symbols=yes
    70887636 else
    7089 @@ -9216,7 +9991,7 @@
     7637@@ -9216,7 +9854,7 @@
    70907638 rm -f conftest.$ac_objext conftest.$ac_ext
    70917639 
    70927640 fi
    70937641-echo "$as_me:9219: result: $cf_cv_weak_symbols" >&5
    7094 +echo "$as_me:9994: result: $cf_cv_weak_symbols" >&5
     7642+echo "$as_me:9857: result: $cf_cv_weak_symbols" >&5
    70957643 echo "${ECHO_T}$cf_cv_weak_symbols" >&6
    70967644 
    70977645 else
    7098 @@ -9243,13 +10018,13 @@
     7646@@ -9243,13 +9881,13 @@
    70997647 fi
    71007648 
    71017649 # OpenSUSE is installing ncurses6, using reentrant option.
    71027650-echo "$as_me:9246: checking for _nc_TABSIZE" >&5
    7103 +echo "$as_me:10021: checking for _nc_TABSIZE" >&5
     7651+echo "$as_me:9884: checking for _nc_TABSIZE" >&5
    71047652 echo $ECHO_N "checking for _nc_TABSIZE... $ECHO_C" >&6
    71057653 if test "${ac_cv_func__nc_TABSIZE+set}" = set; then
     
    71087656   cat >conftest.$ac_ext <<_ACEOF
    71097657-#line 9252 "configure"
    7110 +#line 10027 "configure"
     7658+#line 9890 "configure"
    71117659 #include "confdefs.h"
    71127660 /* System header to define __stub macros and hopefully few prototypes,
    71137661     which can conflict with char _nc_TABSIZE (); below.  */
    7114 @@ -9280,16 +10055,16 @@
     7662@@ -9272,7 +9910,7 @@
     7663 #if defined (__stub__nc_TABSIZE) || defined (__stub____nc_TABSIZE)
     7664 choke me
     7665 #else
     7666-f = _nc_TABSIZE;
     7667+f = _nc_TABSIZE; /* workaround for ICC 12.0.3 */ if (f == 0) return 1;
     7668 #endif
     7669 
     7670   ;
     7671@@ -9280,16 +9918,16 @@
    71157672 }
    71167673 _ACEOF
    71177674 rm -f conftest.$ac_objext conftest$ac_exeext
    71187675-if { (eval echo "$as_me:9283: \"$ac_link\"") >&5
    7119 +if { (eval echo "$as_me:10058: \"$ac_link\"") >&5
     7676+if { (eval echo "$as_me:9921: \"$ac_link\"") >&5
    71207677   (eval $ac_link) 2>&5
    71217678   ac_status=$?
    71227679-  echo "$as_me:9286: \$? = $ac_status" >&5
    7123 +  echo "$as_me:10061: \$? = $ac_status" >&5
     7680+  echo "$as_me:9924: \$? = $ac_status" >&5
    71247681   (exit $ac_status); } &&
    71257682          { ac_try='test -s conftest$ac_exeext'
    71267683-  { (eval echo "$as_me:9289: \"$ac_try\"") >&5
    7127 +  { (eval echo "$as_me:10064: \"$ac_try\"") >&5
     7684+  { (eval echo "$as_me:9927: \"$ac_try\"") >&5
    71287685   (eval $ac_try) 2>&5
    71297686   ac_status=$?
    71307687-  echo "$as_me:9292: \$? = $ac_status" >&5
    7131 +  echo "$as_me:10067: \$? = $ac_status" >&5
     7688+  echo "$as_me:9930: \$? = $ac_status" >&5
    71327689   (exit $ac_status); }; }; then
    71337690   ac_cv_func__nc_TABSIZE=yes
    71347691 else
    7135 @@ -9299,7 +10074,7 @@
     7692@@ -9299,7 +9937,7 @@
    71367693 fi
    71377694 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    71387695 fi
    71397696-echo "$as_me:9302: result: $ac_cv_func__nc_TABSIZE" >&5
    7140 +echo "$as_me:10077: result: $ac_cv_func__nc_TABSIZE" >&5
     7697+echo "$as_me:9940: result: $ac_cv_func__nc_TABSIZE" >&5
    71417698 echo "${ECHO_T}$ac_cv_func__nc_TABSIZE" >&6
    71427699 if test $ac_cv_func__nc_TABSIZE = yes; then
    71437700   assume_reentrant=yes
    7144 @@ -9311,7 +10086,7 @@
     7701@@ -9311,7 +9949,7 @@
    71457702 # opaque outside of that, so there is no --enable-opaque option.  We can use
    71467703 # this option without --with-pthreads, but this will be always set for
    71477704 # pthreads.
    71487705-echo "$as_me:9314: checking if you want experimental reentrant code" >&5
    7149 +echo "$as_me:10089: checking if you want experimental reentrant code" >&5
     7706+echo "$as_me:9952: checking if you want experimental reentrant code" >&5
    71507707 echo $ECHO_N "checking if you want experimental reentrant code... $ECHO_C" >&6
    71517708 
    71527709 # Check whether --enable-reentrant or --disable-reentrant was given.
    7153 @@ -9321,7 +10096,7 @@
     7710@@ -9321,7 +9959,7 @@
    71547711 else
    71557712   with_reentrant=$assume_reentrant
    71567713 fi;
    71577714-echo "$as_me:9324: result: $with_reentrant" >&5
    7158 +echo "$as_me:10099: result: $with_reentrant" >&5
     7715+echo "$as_me:9962: result: $with_reentrant" >&5
    71597716 echo "${ECHO_T}$with_reentrant" >&6
    71607717 if test "$with_reentrant" = yes ; then
    71617718        cf_cv_enable_reentrant=1
    7162 @@ -9343,7 +10118,7 @@
     7719@@ -9343,7 +9981,7 @@
    71637720 
    71647721 ### Allow using a different wrap-prefix
    71657722 if test "$cf_cv_enable_reentrant" != 0 || test "$BROKEN_LINKER" = 1 ; then
    71667723-       echo "$as_me:9346: checking for prefix used to wrap public variables" >&5
    7167 +       echo "$as_me:10121: checking for prefix used to wrap public variables" >&5
     7724+       echo "$as_me:9984: checking for prefix used to wrap public variables" >&5
    71687725 echo $ECHO_N "checking for prefix used to wrap public variables... $ECHO_C" >&6
    71697726 
    71707727 # Check whether --with-wrap-prefix or --without-wrap-prefix was given.
    7171 @@ -9353,7 +10128,7 @@
     7728@@ -9353,7 +9991,7 @@
    71727729 else
    71737730   NCURSES_WRAP_PREFIX=_nc_
    71747731 fi;
    71757732-       echo "$as_me:9356: result: $NCURSES_WRAP_PREFIX" >&5
    7176 +       echo "$as_me:10131: result: $NCURSES_WRAP_PREFIX" >&5
     7733+       echo "$as_me:9994: result: $NCURSES_WRAP_PREFIX" >&5
    71777734 echo "${ECHO_T}$NCURSES_WRAP_PREFIX" >&6
    71787735 else
    71797736        NCURSES_WRAP_PREFIX=_nc_
    7180 @@ -9366,7 +10141,7 @@
     7737@@ -9366,26 +10004,46 @@
    71817738 ###############################################################################
    71827739 
    71837740 ###    use option --disable-echo to suppress full display compiling commands
    71847741-echo "$as_me:9369: checking if you want to display full commands during build" >&5
    7185 +echo "$as_me:10144: checking if you want to display full commands during build" >&5
    7186  echo $ECHO_N "checking if you want to display full commands during build... $ECHO_C" >&6
     7742-echo $ECHO_N "checking if you want to display full commands during build... $ECHO_C" >&6
     7743+
     7744+echo "$as_me:10008: checking if you want to see long compiling messages" >&5
     7745+echo $ECHO_N "checking if you want to see long compiling messages... $ECHO_C" >&6
    71877746 
    71887747 # Check whether --enable-echo or --disable-echo was given.
    7189 @@ -9381,11 +10156,11 @@
     7748 if test "${enable_echo+set}" = set; then
     7749   enableval="$enable_echo"
     7750-  with_echo=$enableval
     7751+  test "$enableval" != no && enableval=yes
     7752+  if test "$enableval" != "yes" ; then
     7753+
     7754+    ECHO_LT='--silent'
     7755+    ECHO_LD='@echo linking $@;'
     7756+    RULE_CC='@echo compiling $<'
     7757+    SHOW_CC='@echo compiling $@'
     7758+    ECHO_CC='@'
     7759+
     7760+  else
     7761+
     7762+    ECHO_LT=''
     7763+    ECHO_LD=''
     7764+    RULE_CC=''
     7765+    SHOW_CC=''
     7766+    ECHO_CC=''
     7767+
     7768+  fi
    71907769 else
    7191         ECHO_LINK='@ echo linking $@ ... ;'
    7192  fi
     7770-  with_echo=yes
     7771+  enableval=yes
     7772+
     7773+    ECHO_LT=''
     7774+    ECHO_LD=''
     7775+    RULE_CC=''
     7776+    SHOW_CC=''
     7777+    ECHO_CC=''
     7778+
     7779 fi;
     7780-if test "$with_echo" = yes; then
     7781-       ECHO_LINK=
     7782-else
     7783-       ECHO_LINK='@ echo linking $@ ... ;'
     7784-fi
    71937785-echo "$as_me:9384: result: $with_echo" >&5
    7194 +echo "$as_me:10159: result: $with_echo" >&5
    7195  echo "${ECHO_T}$with_echo" >&6
     7786-echo "${ECHO_T}$with_echo" >&6
     7787+echo "$as_me:10042: result: $enableval" >&5
     7788+echo "${ECHO_T}$enableval" >&6
    71967789 
    71977790 ###    use option --enable-warnings to turn on all gcc warnings
    71987791-echo "$as_me:9388: checking if you want to see compiler warnings" >&5
    7199 +echo "$as_me:10163: checking if you want to see compiler warnings" >&5
     7792+echo "$as_me:10046: checking if you want to see compiler warnings" >&5
    72007793 echo $ECHO_N "checking if you want to see compiler warnings... $ECHO_C" >&6
    72017794 
    72027795 # Check whether --enable-warnings or --disable-warnings was given.
    7203 @@ -9393,7 +10168,7 @@
     7796@@ -9393,7 +10051,7 @@
    72047797   enableval="$enable_warnings"
    72057798   with_warnings=$enableval
    72067799 fi;
    72077800-echo "$as_me:9396: result: $with_warnings" >&5
    7208 +echo "$as_me:10171: result: $with_warnings" >&5
     7801+echo "$as_me:10054: result: $with_warnings" >&5
    72097802 echo "${ECHO_T}$with_warnings" >&6
    72107803 
    72117804 if test "x$with_warnings" = "xyes"; then
    7212 @@ -9405,12 +10180,12 @@
     7805@@ -9405,12 +10063,12 @@
    72137806 if test "$GCC" = yes ; then
    72147807        case $host_os in
    72157808        linux*|gnu*)
    72167809-               echo "$as_me:9408: checking if this is really Intel C compiler" >&5
    7217 +               echo "$as_me:10183: checking if this is really Intel C compiler" >&5
     7810+               echo "$as_me:10066: checking if this is really Intel C compiler" >&5
    72187811 echo $ECHO_N "checking if this is really Intel C compiler... $ECHO_C" >&6
    72197812                cf_save_CFLAGS="$CFLAGS"
     
    72217814                cat >conftest.$ac_ext <<_ACEOF
    72227815-#line 9413 "configure"
    7223 +#line 10188 "configure"
     7816+#line 10071 "configure"
    72247817 #include "confdefs.h"
    72257818 
    72267819 int
    7227 @@ -9427,16 +10202,16 @@
     7820@@ -9427,16 +10085,16 @@
    72287821 }
    72297822 _ACEOF
    72307823 rm -f conftest.$ac_objext
    72317824-if { (eval echo "$as_me:9430: \"$ac_compile\"") >&5
    7232 +if { (eval echo "$as_me:10205: \"$ac_compile\"") >&5
     7825+if { (eval echo "$as_me:10088: \"$ac_compile\"") >&5
    72337826   (eval $ac_compile) 2>&5
    72347827   ac_status=$?
    72357828-  echo "$as_me:9433: \$? = $ac_status" >&5
    7236 +  echo "$as_me:10208: \$? = $ac_status" >&5
     7829+  echo "$as_me:10091: \$? = $ac_status" >&5
    72377830   (exit $ac_status); } &&
    72387831          { ac_try='test -s conftest.$ac_objext'
    72397832-  { (eval echo "$as_me:9436: \"$ac_try\"") >&5
    7240 +  { (eval echo "$as_me:10211: \"$ac_try\"") >&5
     7833+  { (eval echo "$as_me:10094: \"$ac_try\"") >&5
    72417834   (eval $ac_try) 2>&5
    72427835   ac_status=$?
    72437836-  echo "$as_me:9439: \$? = $ac_status" >&5
    7244 +  echo "$as_me:10214: \$? = $ac_status" >&5
     7837+  echo "$as_me:10097: \$? = $ac_status" >&5
    72457838   (exit $ac_status); }; }; then
    72467839   INTEL_COMPILER=yes
    72477840 cf_save_CFLAGS="$cf_save_CFLAGS -we147 -no-gcc"
    7248 @@ -9447,14 +10222,14 @@
     7841@@ -9447,14 +10105,63 @@
    72497842 fi
    72507843 rm -f conftest.$ac_objext conftest.$ac_ext
    72517844                CFLAGS="$cf_save_CFLAGS"
    72527845-               echo "$as_me:9450: result: $INTEL_COMPILER" >&5
    7253 +               echo "$as_me:10225: result: $INTEL_COMPILER" >&5
     7846+               echo "$as_me:10108: result: $INTEL_COMPILER" >&5
    72547847 echo "${ECHO_T}$INTEL_COMPILER" >&6
    72557848                ;;
     
    72577850 fi
    72587851 
     7852+CLANG_COMPILER=no
     7853+
     7854+if test "$GCC" = yes ; then
     7855+       echo "$as_me:10117: checking if this is really Clang C compiler" >&5
     7856+echo $ECHO_N "checking if this is really Clang C compiler... $ECHO_C" >&6
     7857+       cf_save_CFLAGS="$CFLAGS"
     7858+       CFLAGS="$CFLAGS -Qunused-arguments"
     7859+       cat >conftest.$ac_ext <<_ACEOF
     7860+#line 10122 "configure"
     7861+#include "confdefs.h"
     7862+
     7863+int
     7864+main ()
     7865+{
     7866+
     7867+#ifdef __clang__
     7868+#else
     7869+make an error
     7870+#endif
     7871+
     7872+  ;
     7873+  return 0;
     7874+}
     7875+_ACEOF
     7876+rm -f conftest.$ac_objext
     7877+if { (eval echo "$as_me:10139: \"$ac_compile\"") >&5
     7878+  (eval $ac_compile) 2>&5
     7879+  ac_status=$?
     7880+  echo "$as_me:10142: \$? = $ac_status" >&5
     7881+  (exit $ac_status); } &&
     7882+         { ac_try='test -s conftest.$ac_objext'
     7883+  { (eval echo "$as_me:10145: \"$ac_try\"") >&5
     7884+  (eval $ac_try) 2>&5
     7885+  ac_status=$?
     7886+  echo "$as_me:10148: \$? = $ac_status" >&5
     7887+  (exit $ac_status); }; }; then
     7888+  CLANG_COMPILER=yes
     7889+cf_save_CFLAGS="$cf_save_CFLAGS -Qunused-arguments"
     7890+
     7891+else
     7892+  echo "$as_me: failed program was:" >&5
     7893+cat conftest.$ac_ext >&5
     7894+fi
     7895+rm -f conftest.$ac_objext conftest.$ac_ext
     7896+       CFLAGS="$cf_save_CFLAGS"
     7897+       echo "$as_me:10159: result: $CLANG_COMPILER" >&5
     7898+echo "${ECHO_T}$CLANG_COMPILER" >&6
     7899+fi
     7900+
    72597901 cat > conftest.$ac_ext <<EOF
    72607902-#line 9457 "${as_me:-configure}"
    7261 +#line 10232 "${as_me:-configure}"
     7903+#line 10164 "${as_me:-configure}"
    72627904 int main(int argc, char *argv[]) { return (argv[argc-1] == 0) ; }
    72637905 EOF
    72647906 
    7265 @@ -9471,7 +10246,7 @@
     7907@@ -9471,7 +10178,7 @@
    72667908 # remark #981: operands are evaluated in unspecified order
    72677909 # warning #279: controlling expression is constant
    72687910 
    72697911-       { echo "$as_me:9474: checking for $CC warning options..." >&5
    7270 +       { echo "$as_me:10249: checking for $CC warning options..." >&5
     7912+       { echo "$as_me:10181: checking for $CC warning options..." >&5
    72717913 echo "$as_me: checking for $CC warning options..." >&6;}
    72727914        cf_save_CFLAGS="$CFLAGS"
    72737915        EXTRA_CFLAGS="-Wall"
    7274 @@ -9487,12 +10262,12 @@
     7916@@ -9487,12 +10194,12 @@
    72757917                wd981
    72767918        do
    72777919                CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt"
    72787920-               if { (eval echo "$as_me:9490: \"$ac_compile\"") >&5
    7279 +               if { (eval echo "$as_me:10265: \"$ac_compile\"") >&5
     7921+               if { (eval echo "$as_me:10197: \"$ac_compile\"") >&5
    72807922   (eval $ac_compile) 2>&5
    72817923   ac_status=$?
    72827924-  echo "$as_me:9493: \$? = $ac_status" >&5
    7283 +  echo "$as_me:10268: \$? = $ac_status" >&5
     7925+  echo "$as_me:10200: \$? = $ac_status" >&5
    72847926   (exit $ac_status); }; then
    72857927-                       test -n "$verbose" && echo "$as_me:9495: result: ... -$cf_opt" >&5
    7286 +                       test -n "$verbose" && echo "$as_me:10270: result: ... -$cf_opt" >&5
     7928+                       test -n "$verbose" && echo "$as_me:10202: result: ... -$cf_opt" >&5
    72877929 echo "${ECHO_T}... -$cf_opt" >&6
    72887930                        EXTRA_CFLAGS="$EXTRA_CFLAGS -$cf_opt"
    72897931                fi
    7290 @@ -9501,7 +10276,7 @@
     7932@@ -9501,7 +10208,7 @@
    72917933 
    72927934 elif test "$GCC" = yes
    72937935 then
    72947936-       { echo "$as_me:9504: checking for $CC warning options..." >&5
    7295 +       { echo "$as_me:10279: checking for $CC warning options..." >&5
     7937+       { echo "$as_me:10211: checking for $CC warning options..." >&5
    72967938 echo "$as_me: checking for $CC warning options..." >&6;}
    72977939        cf_save_CFLAGS="$CFLAGS"
    72987940        EXTRA_CFLAGS=
    7299 @@ -9521,12 +10296,12 @@
     7941@@ -9521,12 +10228,12 @@
    73007942                Wundef $cf_warn_CONST Wdeclaration-after-statement Wextra Wno-unknown-pragmas Wswitch-enum
    73017943        do
    73027944                CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt"
    73037945-               if { (eval echo "$as_me:9524: \"$ac_compile\"") >&5
    7304 +               if { (eval echo "$as_me:10299: \"$ac_compile\"") >&5
     7946+               if { (eval echo "$as_me:10231: \"$ac_compile\"") >&5
    73057947   (eval $ac_compile) 2>&5
    73067948   ac_status=$?
    73077949-  echo "$as_me:9527: \$? = $ac_status" >&5
    7308 +  echo "$as_me:10302: \$? = $ac_status" >&5
     7950+  echo "$as_me:10234: \$? = $ac_status" >&5
    73097951   (exit $ac_status); }; then
    73107952-                       test -n "$verbose" && echo "$as_me:9529: result: ... -$cf_opt" >&5
    7311 +                       test -n "$verbose" && echo "$as_me:10304: result: ... -$cf_opt" >&5
     7953+                       test -n "$verbose" && echo "$as_me:10236: result: ... -$cf_opt" >&5
    73127954 echo "${ECHO_T}... -$cf_opt" >&6
    73137955                        case $cf_opt in #(vi
    73147956                        Wcast-qual) #(vi
    7315 @@ -9537,7 +10312,7 @@
     7957@@ -9537,7 +10244,17 @@
    73167958                                [34].*)
    73177959                                        test -n "$verbose" && echo "    feature is broken in gcc $GCC_VERSION" 1>&6
    73187960 
    73197961-echo "${as_me:-configure}:9540: testing feature is broken in gcc $GCC_VERSION ..." 1>&5
    7320 +echo "${as_me:-configure}:10315: testing feature is broken in gcc $GCC_VERSION ..." 1>&5
     7962+echo "${as_me:-configure}:10247: testing feature is broken in gcc $GCC_VERSION ..." 1>&5
     7963+
     7964+                                       continue;;
     7965+                               esac
     7966+                               ;;
     7967+                       Wpointer-arith) #(vi
     7968+                               case $GCC_VERSION in
     7969+                               [12].*)
     7970+                                       test -n "$verbose" && echo "    feature is broken in gcc $GCC_VERSION" 1>&6
     7971+
     7972+echo "${as_me:-configure}:10257: testing feature is broken in gcc $GCC_VERSION ..." 1>&5
    73217973 
    73227974                                        continue;;
    73237975                                esac
    7324 @@ -9570,10 +10345,10 @@
     7976@@ -9570,10 +10287,10 @@
    73257977 EOF
    73267978 if test "$GCC" = yes
    73277979 then
    73287980-       { echo "$as_me:9573: checking for $CC __attribute__ directives..." >&5
    7329 +       { echo "$as_me:10348: checking for $CC __attribute__ directives..." >&5
     7981+       { echo "$as_me:10290: checking for $CC __attribute__ directives..." >&5
    73307982 echo "$as_me: checking for $CC __attribute__ directives..." >&6;}
    73317983 cat > conftest.$ac_ext <<EOF
    73327984-#line 9576 "${as_me:-configure}"
    7333 +#line 10351 "${as_me:-configure}"
     7985+#line 10293 "${as_me:-configure}"
    73347986 #include "confdefs.h"
    73357987 #include "conftest.h"
    73367988 #include "conftest.i"
    7337 @@ -9622,12 +10397,12 @@
     7989@@ -9622,12 +10339,12 @@
    73387990                        ;;
    73397991                esac
    73407992 
    73417993-               if { (eval echo "$as_me:9625: \"$ac_compile\"") >&5
    7342 +               if { (eval echo "$as_me:10400: \"$ac_compile\"") >&5
     7994+               if { (eval echo "$as_me:10342: \"$ac_compile\"") >&5
    73437995   (eval $ac_compile) 2>&5
    73447996   ac_status=$?
    73457997-  echo "$as_me:9628: \$? = $ac_status" >&5
    7346 +  echo "$as_me:10403: \$? = $ac_status" >&5
     7998+  echo "$as_me:10345: \$? = $ac_status" >&5
    73477999   (exit $ac_status); }; then
    73488000-                       test -n "$verbose" && echo "$as_me:9630: result: ... $cf_attribute" >&5
    7349 +                       test -n "$verbose" && echo "$as_me:10405: result: ... $cf_attribute" >&5
     8001+                       test -n "$verbose" && echo "$as_me:10347: result: ... $cf_attribute" >&5
    73508002 echo "${ECHO_T}... $cf_attribute" >&6
    73518003                        cat conftest.h >>confdefs.h
    73528004                        case $cf_attribute in #(vi
    7353 @@ -9663,7 +10438,7 @@
     8005@@ -9663,7 +10380,7 @@
    73548006 fi
    73558007 
    73568008 ###    use option --enable-assertions to turn on generation of assertion code
    73578009-echo "$as_me:9666: checking if you want to enable runtime assertions" >&5
    7358 +echo "$as_me:10441: checking if you want to enable runtime assertions" >&5
     8010+echo "$as_me:10383: checking if you want to enable runtime assertions" >&5
    73598011 echo $ECHO_N "checking if you want to enable runtime assertions... $ECHO_C" >&6
    73608012 
    73618013 # Check whether --enable-assertions or --disable-assertions was given.
    7362 @@ -9673,7 +10448,7 @@
     8014@@ -9673,16 +10390,12 @@
    73638015 else
    73648016   with_assertions=no
    73658017 fi;
    73668018-echo "$as_me:9676: result: $with_assertions" >&5
    7367 +echo "$as_me:10451: result: $with_assertions" >&5
     8019+echo "$as_me:10393: result: $with_assertions" >&5
    73688020 echo "${ECHO_T}$with_assertions" >&6
    73698021 if test -n "$GCC"
    73708022 then
    7371 @@ -9727,7 +10502,7 @@
     8023        if test "$with_assertions" = no
     8024        then
     8025-               cat >>confdefs.h <<\EOF
     8026-#define NDEBUG 1
     8027-EOF
     8028-
     8029                CPPFLAGS="$CPPFLAGS -DNDEBUG"
     8030        else
     8031 
     8032@@ -9727,7 +10440,7 @@
    73728033        ;;
    73738034 esac
    73748035 
    73758036-echo "$as_me:9730: checking whether to add trace feature to all models" >&5
    7376 +echo "$as_me:10505: checking whether to add trace feature to all models" >&5
     8037+echo "$as_me:10443: checking whether to add trace feature to all models" >&5
    73778038 echo $ECHO_N "checking whether to add trace feature to all models... $ECHO_C" >&6
    73788039 
    73798040 # Check whether --with-trace or --without-trace was given.
    7380 @@ -9737,7 +10512,7 @@
     8041@@ -9737,7 +10450,7 @@
    73818042 else
    73828043   cf_with_trace=$cf_all_traces
    73838044 fi;
    73848045-echo "$as_me:9740: result: $cf_with_trace" >&5
    7385 +echo "$as_me:10515: result: $cf_with_trace" >&5
     8046+echo "$as_me:10453: result: $cf_with_trace" >&5
    73868047 echo "${ECHO_T}$cf_with_trace" >&6
    73878048 
    73888049 if test "$cf_with_trace" = yes ; then
    7389 @@ -9830,13 +10605,13 @@
     8050@@ -9830,13 +10543,13 @@
    73908051 *mingw32*) #(vi
    73918052        ;;
    73928053 *)
    73938054-echo "$as_me:9833: checking for gettimeofday" >&5
    7394 +echo "$as_me:10608: checking for gettimeofday" >&5
     8055+echo "$as_me:10546: checking for gettimeofday" >&5
    73958056 echo $ECHO_N "checking for gettimeofday... $ECHO_C" >&6
    73968057 if test "${ac_cv_func_gettimeofday+set}" = set; then
     
    73998060   cat >conftest.$ac_ext <<_ACEOF
    74008061-#line 9839 "configure"
    7401 +#line 10614 "configure"
     8062+#line 10552 "configure"
    74028063 #include "confdefs.h"
    74038064 /* System header to define __stub macros and hopefully few prototypes,
    74048065     which can conflict with char gettimeofday (); below.  */
    7405 @@ -9867,16 +10642,16 @@
     8066@@ -9859,7 +10572,7 @@
     8067 #if defined (__stub_gettimeofday) || defined (__stub___gettimeofday)
     8068 choke me
     8069 #else
     8070-f = gettimeofday;
     8071+f = gettimeofday; /* workaround for ICC 12.0.3 */ if (f == 0) return 1;
     8072 #endif
     8073 
     8074   ;
     8075@@ -9867,16 +10580,16 @@
    74068076 }
    74078077 _ACEOF
    74088078 rm -f conftest.$ac_objext conftest$ac_exeext
    74098079-if { (eval echo "$as_me:9870: \"$ac_link\"") >&5
    7410 +if { (eval echo "$as_me:10645: \"$ac_link\"") >&5
     8080+if { (eval echo "$as_me:10583: \"$ac_link\"") >&5
    74118081   (eval $ac_link) 2>&5
    74128082   ac_status=$?
    74138083-  echo "$as_me:9873: \$? = $ac_status" >&5
    7414 +  echo "$as_me:10648: \$? = $ac_status" >&5
     8084+  echo "$as_me:10586: \$? = $ac_status" >&5
    74158085   (exit $ac_status); } &&
    74168086          { ac_try='test -s conftest$ac_exeext'
    74178087-  { (eval echo "$as_me:9876: \"$ac_try\"") >&5
    7418 +  { (eval echo "$as_me:10651: \"$ac_try\"") >&5
     8088+  { (eval echo "$as_me:10589: \"$ac_try\"") >&5
    74198089   (eval $ac_try) 2>&5
    74208090   ac_status=$?
    74218091-  echo "$as_me:9879: \$? = $ac_status" >&5
    7422 +  echo "$as_me:10654: \$? = $ac_status" >&5
     8092+  echo "$as_me:10592: \$? = $ac_status" >&5
    74238093   (exit $ac_status); }; }; then
    74248094   ac_cv_func_gettimeofday=yes
    74258095 else
    7426 @@ -9886,7 +10661,7 @@
     8096@@ -9886,7 +10599,7 @@
    74278097 fi
    74288098 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    74298099 fi
    74308100-echo "$as_me:9889: result: $ac_cv_func_gettimeofday" >&5
    7431 +echo "$as_me:10664: result: $ac_cv_func_gettimeofday" >&5
     8101+echo "$as_me:10602: result: $ac_cv_func_gettimeofday" >&5
    74328102 echo "${ECHO_T}$ac_cv_func_gettimeofday" >&6
    74338103 if test $ac_cv_func_gettimeofday = yes; then
    74348104   cat >>confdefs.h <<\EOF
    7435 @@ -9895,7 +10670,7 @@
     8105@@ -9895,7 +10608,7 @@
    74368106 
    74378107 else
    74388108 
    74398109-echo "$as_me:9898: checking for gettimeofday in -lbsd" >&5
    7440 +echo "$as_me:10673: checking for gettimeofday in -lbsd" >&5
     8110+echo "$as_me:10611: checking for gettimeofday in -lbsd" >&5
    74418111 echo $ECHO_N "checking for gettimeofday in -lbsd... $ECHO_C" >&6
    74428112 if test "${ac_cv_lib_bsd_gettimeofday+set}" = set; then
    74438113   echo $ECHO_N "(cached) $ECHO_C" >&6
    7444 @@ -9903,7 +10678,7 @@
     8114@@ -9903,7 +10616,7 @@
    74458115   ac_check_lib_save_LIBS=$LIBS
    74468116 LIBS="-lbsd  $LIBS"
    74478117 cat >conftest.$ac_ext <<_ACEOF
    74488118-#line 9906 "configure"
    7449 +#line 10681 "configure"
     8119+#line 10619 "configure"
    74508120 #include "confdefs.h"
    74518121 
    74528122 /* Override any gcc2 internal prototype to avoid an error.  */
    7453 @@ -9922,16 +10697,16 @@
     8123@@ -9922,16 +10635,16 @@
    74548124 }
    74558125 _ACEOF
    74568126 rm -f conftest.$ac_objext conftest$ac_exeext
    74578127-if { (eval echo "$as_me:9925: \"$ac_link\"") >&5
    7458 +if { (eval echo "$as_me:10700: \"$ac_link\"") >&5
     8128+if { (eval echo "$as_me:10638: \"$ac_link\"") >&5
    74598129   (eval $ac_link) 2>&5
    74608130   ac_status=$?
    74618131-  echo "$as_me:9928: \$? = $ac_status" >&5
    7462 +  echo "$as_me:10703: \$? = $ac_status" >&5
     8132+  echo "$as_me:10641: \$? = $ac_status" >&5
    74638133   (exit $ac_status); } &&
    74648134          { ac_try='test -s conftest$ac_exeext'
    74658135-  { (eval echo "$as_me:9931: \"$ac_try\"") >&5
    7466 +  { (eval echo "$as_me:10706: \"$ac_try\"") >&5
     8136+  { (eval echo "$as_me:10644: \"$ac_try\"") >&5
    74678137   (eval $ac_try) 2>&5
    74688138   ac_status=$?
    74698139-  echo "$as_me:9934: \$? = $ac_status" >&5
    7470 +  echo "$as_me:10709: \$? = $ac_status" >&5
     8140+  echo "$as_me:10647: \$? = $ac_status" >&5
    74718141   (exit $ac_status); }; }; then
    74728142   ac_cv_lib_bsd_gettimeofday=yes
    74738143 else
    7474 @@ -9942,7 +10717,7 @@
     8144@@ -9942,7 +10655,7 @@
    74758145 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    74768146 LIBS=$ac_check_lib_save_LIBS
    74778147 fi
    74788148-echo "$as_me:9945: result: $ac_cv_lib_bsd_gettimeofday" >&5
    7479 +echo "$as_me:10720: result: $ac_cv_lib_bsd_gettimeofday" >&5
     8149+echo "$as_me:10658: result: $ac_cv_lib_bsd_gettimeofday" >&5
    74808150 echo "${ECHO_T}$ac_cv_lib_bsd_gettimeofday" >&6
    74818151 if test $ac_cv_lib_bsd_gettimeofday = yes; then
    74828152   cat >>confdefs.h <<\EOF
    7483 @@ -9957,13 +10732,13 @@
     8153@@ -9957,13 +10670,13 @@
    74848154 esac
    74858155 
    74868156 ###    Checks for header files.
    74878157-echo "$as_me:9960: checking for ANSI C header files" >&5
    7488 +echo "$as_me:10735: checking for ANSI C header files" >&5
     8158+echo "$as_me:10673: checking for ANSI C header files" >&5
    74898159 echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6
    74908160 if test "${ac_cv_header_stdc+set}" = set; then
     
    74938163   cat >conftest.$ac_ext <<_ACEOF
    74948164-#line 9966 "configure"
    7495 +#line 10741 "configure"
     8165+#line 10679 "configure"
    74968166 #include "confdefs.h"
    74978167 #include <stdlib.h>
    74988168 #include <stdarg.h>
    7499 @@ -9971,13 +10746,13 @@
     8169@@ -9971,13 +10684,13 @@
    75008170 #include <float.h>
    75018171 
    75028172 _ACEOF
    75038173-if { (eval echo "$as_me:9974: \"$ac_cpp conftest.$ac_ext\"") >&5
    7504 +if { (eval echo "$as_me:10749: \"$ac_cpp conftest.$ac_ext\"") >&5
     8174+if { (eval echo "$as_me:10687: \"$ac_cpp conftest.$ac_ext\"") >&5
    75058175   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
    75068176   ac_status=$?
     
    75098179   cat conftest.err >&5
    75108180-  echo "$as_me:9980: \$? = $ac_status" >&5
    7511 +  echo "$as_me:10755: \$? = $ac_status" >&5
     8181+  echo "$as_me:10693: \$? = $ac_status" >&5
    75128182   (exit $ac_status); } >/dev/null; then
    75138183   if test -s conftest.err; then
    75148184     ac_cpp_err=$ac_c_preproc_warn_flag
    7515 @@ -9999,7 +10774,7 @@
     8185@@ -9999,7 +10712,7 @@
    75168186 if test $ac_cv_header_stdc = yes; then
    75178187   # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
    75188188   cat >conftest.$ac_ext <<_ACEOF
    75198189-#line 10002 "configure"
    7520 +#line 10777 "configure"
     8190+#line 10715 "configure"
    75218191 #include "confdefs.h"
    75228192 #include <string.h>
    75238193 
    7524 @@ -10017,7 +10792,7 @@
     8194@@ -10017,7 +10730,7 @@
    75258195 if test $ac_cv_header_stdc = yes; then
    75268196   # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
    75278197   cat >conftest.$ac_ext <<_ACEOF
    75288198-#line 10020 "configure"
    7529 +#line 10795 "configure"
     8199+#line 10733 "configure"
    75308200 #include "confdefs.h"
    75318201 #include <stdlib.h>
    75328202 
    7533 @@ -10038,7 +10813,7 @@
     8203@@ -10038,7 +10751,7 @@
    75348204   :
    75358205 else
    75368206   cat >conftest.$ac_ext <<_ACEOF
    75378207-#line 10041 "configure"
    7538 +#line 10816 "configure"
     8208+#line 10754 "configure"
    75398209 #include "confdefs.h"
    75408210 #include <ctype.h>
    75418211 #if ((' ' & 0x0FF) == 0x020)
    7542 @@ -10064,15 +10839,15 @@
     8212@@ -10064,15 +10777,15 @@
    75438213 }
    75448214 _ACEOF
    75458215 rm -f conftest$ac_exeext
    75468216-if { (eval echo "$as_me:10067: \"$ac_link\"") >&5
    7547 +if { (eval echo "$as_me:10842: \"$ac_link\"") >&5
     8217+if { (eval echo "$as_me:10780: \"$ac_link\"") >&5
    75488218   (eval $ac_link) 2>&5
    75498219   ac_status=$?
    75508220-  echo "$as_me:10070: \$? = $ac_status" >&5
    7551 +  echo "$as_me:10845: \$? = $ac_status" >&5
     8221+  echo "$as_me:10783: \$? = $ac_status" >&5
    75528222   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
    75538223-  { (eval echo "$as_me:10072: \"$ac_try\"") >&5
    7554 +  { (eval echo "$as_me:10847: \"$ac_try\"") >&5
     8224+  { (eval echo "$as_me:10785: \"$ac_try\"") >&5
    75558225   (eval $ac_try) 2>&5
    75568226   ac_status=$?
    75578227-  echo "$as_me:10075: \$? = $ac_status" >&5
    7558 +  echo "$as_me:10850: \$? = $ac_status" >&5
     8228+  echo "$as_me:10788: \$? = $ac_status" >&5
    75598229   (exit $ac_status); }; }; then
    75608230   :
    75618231 else
    7562 @@ -10085,7 +10860,7 @@
     8232@@ -10085,7 +10798,7 @@
    75638233 fi
    75648234 fi
    75658235 fi
    75668236-echo "$as_me:10088: result: $ac_cv_header_stdc" >&5
    7567 +echo "$as_me:10863: result: $ac_cv_header_stdc" >&5
     8237+echo "$as_me:10801: result: $ac_cv_header_stdc" >&5
    75688238 echo "${ECHO_T}$ac_cv_header_stdc" >&6
    75698239 if test $ac_cv_header_stdc = yes; then
    75708240 
    7571 @@ -10098,13 +10873,13 @@
     8241@@ -10098,13 +10811,13 @@
    75728242 ac_header_dirent=no
    75738243 for ac_hdr in dirent.h sys/ndir.h sys/dir.h ndir.h; do
    75748244   as_ac_Header=`echo "ac_cv_header_dirent_$ac_hdr" | $as_tr_sh`
    75758245-echo "$as_me:10101: checking for $ac_hdr that defines DIR" >&5
    7576 +echo "$as_me:10876: checking for $ac_hdr that defines DIR" >&5
     8246+echo "$as_me:10814: checking for $ac_hdr that defines DIR" >&5
    75778247 echo $ECHO_N "checking for $ac_hdr that defines DIR... $ECHO_C" >&6
    75788248 if eval "test \"\${$as_ac_Header+set}\" = set"; then
     
    75818251   cat >conftest.$ac_ext <<_ACEOF
    75828252-#line 10107 "configure"
    7583 +#line 10882 "configure"
     8253+#line 10820 "configure"
    75848254 #include "confdefs.h"
    75858255 #include <sys/types.h>
    75868256 #include <$ac_hdr>
    7587 @@ -10119,16 +10894,16 @@
     8257@@ -10119,16 +10832,16 @@
    75888258 }
    75898259 _ACEOF
    75908260 rm -f conftest.$ac_objext
    75918261-if { (eval echo "$as_me:10122: \"$ac_compile\"") >&5
    7592 +if { (eval echo "$as_me:10897: \"$ac_compile\"") >&5
     8262+if { (eval echo "$as_me:10835: \"$ac_compile\"") >&5
    75938263   (eval $ac_compile) 2>&5
    75948264   ac_status=$?
    75958265-  echo "$as_me:10125: \$? = $ac_status" >&5
    7596 +  echo "$as_me:10900: \$? = $ac_status" >&5
     8266+  echo "$as_me:10838: \$? = $ac_status" >&5
    75978267   (exit $ac_status); } &&
    75988268          { ac_try='test -s conftest.$ac_objext'
    75998269-  { (eval echo "$as_me:10128: \"$ac_try\"") >&5
    7600 +  { (eval echo "$as_me:10903: \"$ac_try\"") >&5
     8270+  { (eval echo "$as_me:10841: \"$ac_try\"") >&5
    76018271   (eval $ac_try) 2>&5
    76028272   ac_status=$?
    76038273-  echo "$as_me:10131: \$? = $ac_status" >&5
    7604 +  echo "$as_me:10906: \$? = $ac_status" >&5
     8274+  echo "$as_me:10844: \$? = $ac_status" >&5
    76058275   (exit $ac_status); }; }; then
    76068276   eval "$as_ac_Header=yes"
    76078277 else
    7608 @@ -10138,7 +10913,7 @@
     8278@@ -10138,7 +10851,7 @@
    76098279 fi
    76108280 rm -f conftest.$ac_objext conftest.$ac_ext
    76118281 fi
    76128282-echo "$as_me:10141: result: `eval echo '${'$as_ac_Header'}'`" >&5
    7613 +echo "$as_me:10916: result: `eval echo '${'$as_ac_Header'}'`" >&5
     8283+echo "$as_me:10854: result: `eval echo '${'$as_ac_Header'}'`" >&5
    76148284 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
    76158285 if test `eval echo '${'$as_ac_Header'}'` = yes; then
    76168286   cat >>confdefs.h <<EOF
    7617 @@ -10151,7 +10926,7 @@
     8287@@ -10151,7 +10864,7 @@
    76188288 done
    76198289 # Two versions of opendir et al. are in -ldir and -lx on SCO Xenix.
    76208290 if test $ac_header_dirent = dirent.h; then
    76218291-  echo "$as_me:10154: checking for opendir in -ldir" >&5
    7622 +  echo "$as_me:10929: checking for opendir in -ldir" >&5
     8292+  echo "$as_me:10867: checking for opendir in -ldir" >&5
    76238293 echo $ECHO_N "checking for opendir in -ldir... $ECHO_C" >&6
    76248294 if test "${ac_cv_lib_dir_opendir+set}" = set; then
    76258295   echo $ECHO_N "(cached) $ECHO_C" >&6
    7626 @@ -10159,7 +10934,7 @@
     8296@@ -10159,7 +10872,7 @@
    76278297   ac_check_lib_save_LIBS=$LIBS
    76288298 LIBS="-ldir  $LIBS"
    76298299 cat >conftest.$ac_ext <<_ACEOF
    76308300-#line 10162 "configure"
    7631 +#line 10937 "configure"
     8301+#line 10875 "configure"
    76328302 #include "confdefs.h"
    76338303 
    76348304 /* Override any gcc2 internal prototype to avoid an error.  */
    7635 @@ -10178,16 +10953,16 @@
     8305@@ -10178,16 +10891,16 @@
    76368306 }
    76378307 _ACEOF
    76388308 rm -f conftest.$ac_objext conftest$ac_exeext
    76398309-if { (eval echo "$as_me:10181: \"$ac_link\"") >&5
    7640 +if { (eval echo "$as_me:10956: \"$ac_link\"") >&5
     8310+if { (eval echo "$as_me:10894: \"$ac_link\"") >&5
    76418311   (eval $ac_link) 2>&5
    76428312   ac_status=$?
    76438313-  echo "$as_me:10184: \$? = $ac_status" >&5
    7644 +  echo "$as_me:10959: \$? = $ac_status" >&5
     8314+  echo "$as_me:10897: \$? = $ac_status" >&5
    76458315   (exit $ac_status); } &&
    76468316          { ac_try='test -s conftest$ac_exeext'
    76478317-  { (eval echo "$as_me:10187: \"$ac_try\"") >&5
    7648 +  { (eval echo "$as_me:10962: \"$ac_try\"") >&5
     8318+  { (eval echo "$as_me:10900: \"$ac_try\"") >&5
    76498319   (eval $ac_try) 2>&5
    76508320   ac_status=$?
    76518321-  echo "$as_me:10190: \$? = $ac_status" >&5
    7652 +  echo "$as_me:10965: \$? = $ac_status" >&5
     8322+  echo "$as_me:10903: \$? = $ac_status" >&5
    76538323   (exit $ac_status); }; }; then
    76548324   ac_cv_lib_dir_opendir=yes
    76558325 else
    7656 @@ -10198,14 +10973,14 @@
     8326@@ -10198,14 +10911,14 @@
    76578327 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    76588328 LIBS=$ac_check_lib_save_LIBS
    76598329 fi
    76608330-echo "$as_me:10201: result: $ac_cv_lib_dir_opendir" >&5
    7661 +echo "$as_me:10976: result: $ac_cv_lib_dir_opendir" >&5
     8331+echo "$as_me:10914: result: $ac_cv_lib_dir_opendir" >&5
    76628332 echo "${ECHO_T}$ac_cv_lib_dir_opendir" >&6
    76638333 if test $ac_cv_lib_dir_opendir = yes; then
     
    76678337 else
    76688338-  echo "$as_me:10208: checking for opendir in -lx" >&5
    7669 +  echo "$as_me:10983: checking for opendir in -lx" >&5
     8339+  echo "$as_me:10921: checking for opendir in -lx" >&5
    76708340 echo $ECHO_N "checking for opendir in -lx... $ECHO_C" >&6
    76718341 if test "${ac_cv_lib_x_opendir+set}" = set; then
    76728342   echo $ECHO_N "(cached) $ECHO_C" >&6
    7673 @@ -10213,7 +10988,7 @@
     8343@@ -10213,7 +10926,7 @@
    76748344   ac_check_lib_save_LIBS=$LIBS
    76758345 LIBS="-lx  $LIBS"
    76768346 cat >conftest.$ac_ext <<_ACEOF
    76778347-#line 10216 "configure"
    7678 +#line 10991 "configure"
     8348+#line 10929 "configure"
    76798349 #include "confdefs.h"
    76808350 
    76818351 /* Override any gcc2 internal prototype to avoid an error.  */
    7682 @@ -10232,16 +11007,16 @@
     8352@@ -10232,16 +10945,16 @@
    76838353 }
    76848354 _ACEOF
    76858355 rm -f conftest.$ac_objext conftest$ac_exeext
    76868356-if { (eval echo "$as_me:10235: \"$ac_link\"") >&5
    7687 +if { (eval echo "$as_me:11010: \"$ac_link\"") >&5
     8357+if { (eval echo "$as_me:10948: \"$ac_link\"") >&5
    76888358   (eval $ac_link) 2>&5
    76898359   ac_status=$?
    76908360-  echo "$as_me:10238: \$? = $ac_status" >&5
    7691 +  echo "$as_me:11013: \$? = $ac_status" >&5
     8361+  echo "$as_me:10951: \$? = $ac_status" >&5
    76928362   (exit $ac_status); } &&
    76938363          { ac_try='test -s conftest$ac_exeext'
    76948364-  { (eval echo "$as_me:10241: \"$ac_try\"") >&5
    7695 +  { (eval echo "$as_me:11016: \"$ac_try\"") >&5
     8365+  { (eval echo "$as_me:10954: \"$ac_try\"") >&5
    76968366   (eval $ac_try) 2>&5
    76978367   ac_status=$?
    76988368-  echo "$as_me:10244: \$? = $ac_status" >&5
    7699 +  echo "$as_me:11019: \$? = $ac_status" >&5
     8369+  echo "$as_me:10957: \$? = $ac_status" >&5
    77008370   (exit $ac_status); }; }; then
    77018371   ac_cv_lib_x_opendir=yes
    77028372 else
    7703 @@ -10252,7 +11027,7 @@
     8373@@ -10252,7 +10965,7 @@
    77048374 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    77058375 LIBS=$ac_check_lib_save_LIBS
    77068376 fi
    77078377-echo "$as_me:10255: result: $ac_cv_lib_x_opendir" >&5
    7708 +echo "$as_me:11030: result: $ac_cv_lib_x_opendir" >&5
     8378+echo "$as_me:10968: result: $ac_cv_lib_x_opendir" >&5
    77098379 echo "${ECHO_T}$ac_cv_lib_x_opendir" >&6
    77108380 if test $ac_cv_lib_x_opendir = yes; then
    77118381   LIBS="$LIBS -lx"
    7712 @@ -10260,13 +11035,13 @@
     8382@@ -10260,13 +10973,13 @@
    77138383 
    77148384 fi
    77158385 
    77168386-echo "$as_me:10263: checking whether time.h and sys/time.h may both be included" >&5
    7717 +echo "$as_me:11038: checking whether time.h and sys/time.h may both be included" >&5
     8387+echo "$as_me:10976: checking whether time.h and sys/time.h may both be included" >&5
    77188388 echo $ECHO_N "checking whether time.h and sys/time.h may both be included... $ECHO_C" >&6
    77198389 if test "${ac_cv_header_time+set}" = set; then
     
    77228392   cat >conftest.$ac_ext <<_ACEOF
    77238393-#line 10269 "configure"
    7724 +#line 11044 "configure"
     8394+#line 10982 "configure"
    77258395 #include "confdefs.h"
    77268396 #include <sys/types.h>
    77278397 #include <sys/time.h>
    7728 @@ -10282,16 +11057,16 @@
     8398@@ -10282,16 +10995,16 @@
    77298399 }
    77308400 _ACEOF
    77318401 rm -f conftest.$ac_objext
    77328402-if { (eval echo "$as_me:10285: \"$ac_compile\"") >&5
    7733 +if { (eval echo "$as_me:11060: \"$ac_compile\"") >&5
     8403+if { (eval echo "$as_me:10998: \"$ac_compile\"") >&5
    77348404   (eval $ac_compile) 2>&5
    77358405   ac_status=$?
    77368406-  echo "$as_me:10288: \$? = $ac_status" >&5
    7737 +  echo "$as_me:11063: \$? = $ac_status" >&5
     8407+  echo "$as_me:11001: \$? = $ac_status" >&5
    77388408   (exit $ac_status); } &&
    77398409          { ac_try='test -s conftest.$ac_objext'
    77408410-  { (eval echo "$as_me:10291: \"$ac_try\"") >&5
    7741 +  { (eval echo "$as_me:11066: \"$ac_try\"") >&5
     8411+  { (eval echo "$as_me:11004: \"$ac_try\"") >&5
    77428412   (eval $ac_try) 2>&5
    77438413   ac_status=$?
    77448414-  echo "$as_me:10294: \$? = $ac_status" >&5
    7745 +  echo "$as_me:11069: \$? = $ac_status" >&5
     8415+  echo "$as_me:11007: \$? = $ac_status" >&5
    77468416   (exit $ac_status); }; }; then
    77478417   ac_cv_header_time=yes
    77488418 else
    7749 @@ -10301,7 +11076,7 @@
     8419@@ -10301,7 +11014,7 @@
    77508420 fi
    77518421 rm -f conftest.$ac_objext conftest.$ac_ext
    77528422 fi
    77538423-echo "$as_me:10304: result: $ac_cv_header_time" >&5
    7754 +echo "$as_me:11079: result: $ac_cv_header_time" >&5
     8424+echo "$as_me:11017: result: $ac_cv_header_time" >&5
    77558425 echo "${ECHO_T}$ac_cv_header_time" >&6
    77568426 if test $ac_cv_header_time = yes; then
    77578427 
    7758 @@ -10319,7 +11094,7 @@
     8428@@ -10319,7 +11032,7 @@
    77598429 ac_compiler_gnu=$ac_cv_c_compiler_gnu
    77608430 ac_main_return=return
    77618431 
    77628432-echo "$as_me:10322: checking for $CC option to accept ANSI C" >&5
    7763 +echo "$as_me:11097: checking for $CC option to accept ANSI C" >&5
     8433+echo "$as_me:11035: checking for $CC option to accept ANSI C" >&5
    77648434 echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6
    77658435 if test "${ac_cv_prog_cc_stdc+set}" = set; then
    77668436   echo $ECHO_N "(cached) $ECHO_C" >&6
    7767 @@ -10327,7 +11102,7 @@
     8437@@ -10327,7 +11040,7 @@
    77688438   ac_cv_prog_cc_stdc=no
    77698439 ac_save_CC=$CC
    77708440 cat >conftest.$ac_ext <<_ACEOF
    77718441-#line 10330 "configure"
    7772 +#line 11105 "configure"
     8442+#line 11043 "configure"
    77738443 #include "confdefs.h"
    77748444 #include <stdarg.h>
    77758445 #include <stdio.h>
    7776 @@ -10376,16 +11151,16 @@
     8446@@ -10376,16 +11089,16 @@
    77778447 do
    77788448   CC="$ac_save_CC $ac_arg"
    77798449   rm -f conftest.$ac_objext
    77808450-if { (eval echo "$as_me:10379: \"$ac_compile\"") >&5
    7781 +if { (eval echo "$as_me:11154: \"$ac_compile\"") >&5
     8451+if { (eval echo "$as_me:11092: \"$ac_compile\"") >&5
    77828452   (eval $ac_compile) 2>&5
    77838453   ac_status=$?
    77848454-  echo "$as_me:10382: \$? = $ac_status" >&5
    7785 +  echo "$as_me:11157: \$? = $ac_status" >&5
     8455+  echo "$as_me:11095: \$? = $ac_status" >&5
    77868456   (exit $ac_status); } &&
    77878457          { ac_try='test -s conftest.$ac_objext'
    77888458-  { (eval echo "$as_me:10385: \"$ac_try\"") >&5
    7789 +  { (eval echo "$as_me:11160: \"$ac_try\"") >&5
     8459+  { (eval echo "$as_me:11098: \"$ac_try\"") >&5
    77908460   (eval $ac_try) 2>&5
    77918461   ac_status=$?
    77928462-  echo "$as_me:10388: \$? = $ac_status" >&5
    7793 +  echo "$as_me:11163: \$? = $ac_status" >&5
     8463+  echo "$as_me:11101: \$? = $ac_status" >&5
    77948464   (exit $ac_status); }; }; then
    77958465   ac_cv_prog_cc_stdc=$ac_arg
    77968466 break
    7797 @@ -10402,21 +11177,21 @@
     8467@@ -10402,21 +11115,21 @@
    77988468 
    77998469 case "x$ac_cv_prog_cc_stdc" in
    78008470   x|xno)
    78018471-    echo "$as_me:10405: result: none needed" >&5
    7802 +    echo "$as_me:11180: result: none needed" >&5
     8472+    echo "$as_me:11118: result: none needed" >&5
    78038473 echo "${ECHO_T}none needed" >&6 ;;
    78048474   *)
    78058475-    echo "$as_me:10408: result: $ac_cv_prog_cc_stdc" >&5
    7806 +    echo "$as_me:11183: result: $ac_cv_prog_cc_stdc" >&5
     8476+    echo "$as_me:11121: result: $ac_cv_prog_cc_stdc" >&5
    78078477 echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6
    78088478     CC="$CC $ac_cv_prog_cc_stdc" ;;
     
    78108480 
    78118481-echo "$as_me:10413: checking for an ANSI C-conforming const" >&5
    7812 +echo "$as_me:11188: checking for an ANSI C-conforming const" >&5
     8482+echo "$as_me:11126: checking for an ANSI C-conforming const" >&5
    78138483 echo $ECHO_N "checking for an ANSI C-conforming const... $ECHO_C" >&6
    78148484 if test "${ac_cv_c_const+set}" = set; then
     
    78178487   cat >conftest.$ac_ext <<_ACEOF
    78188488-#line 10419 "configure"
    7819 +#line 11194 "configure"
     8489+#line 11132 "configure"
    78208490 #include "confdefs.h"
    78218491 
    78228492 int
    7823 @@ -10474,16 +11249,16 @@
     8493@@ -10474,16 +11187,16 @@
    78248494 }
    78258495 _ACEOF
    78268496 rm -f conftest.$ac_objext
    78278497-if { (eval echo "$as_me:10477: \"$ac_compile\"") >&5
    7828 +if { (eval echo "$as_me:11252: \"$ac_compile\"") >&5
     8498+if { (eval echo "$as_me:11190: \"$ac_compile\"") >&5
    78298499   (eval $ac_compile) 2>&5
    78308500   ac_status=$?
    78318501-  echo "$as_me:10480: \$? = $ac_status" >&5
    7832 +  echo "$as_me:11255: \$? = $ac_status" >&5
     8502+  echo "$as_me:11193: \$? = $ac_status" >&5
    78338503   (exit $ac_status); } &&
    78348504          { ac_try='test -s conftest.$ac_objext'
    78358505-  { (eval echo "$as_me:10483: \"$ac_try\"") >&5
    7836 +  { (eval echo "$as_me:11258: \"$ac_try\"") >&5
     8506+  { (eval echo "$as_me:11196: \"$ac_try\"") >&5
    78378507   (eval $ac_try) 2>&5
    78388508   ac_status=$?
    78398509-  echo "$as_me:10486: \$? = $ac_status" >&5
    7840 +  echo "$as_me:11261: \$? = $ac_status" >&5
     8510+  echo "$as_me:11199: \$? = $ac_status" >&5
    78418511   (exit $ac_status); }; }; then
    78428512   ac_cv_c_const=yes
    78438513 else
    7844 @@ -10493,7 +11268,7 @@
     8514@@ -10493,7 +11206,7 @@
    78458515 fi
    78468516 rm -f conftest.$ac_objext conftest.$ac_ext
    78478517 fi
    78488518-echo "$as_me:10496: result: $ac_cv_c_const" >&5
    7849 +echo "$as_me:11271: result: $ac_cv_c_const" >&5
     8519+echo "$as_me:11209: result: $ac_cv_c_const" >&5
    78508520 echo "${ECHO_T}$ac_cv_c_const" >&6
    78518521 if test $ac_cv_c_const = no; then
    78528522 
    7853 @@ -10505,7 +11280,7 @@
     8523@@ -10505,7 +11218,7 @@
    78548524 
    78558525 ###    Checks for external-data
    78568526 
    78578527-echo "$as_me:10508: checking if data-only library module links" >&5
    7858 +echo "$as_me:11283: checking if data-only library module links" >&5
     8528+echo "$as_me:11221: checking if data-only library module links" >&5
    78598529 echo $ECHO_N "checking if data-only library module links... $ECHO_C" >&6
    78608530 if test "${cf_cv_link_dataonly+set}" = set; then
    78618531   echo $ECHO_N "(cached) $ECHO_C" >&6
    7862 @@ -10513,20 +11288,20 @@
     8532@@ -10513,20 +11226,20 @@
    78638533 
    78648534        rm -f conftest.a
    78658535        cat >conftest.$ac_ext <<EOF
    78668536-#line 10516 "configure"
    7867 +#line 11291 "configure"
     8537+#line 11229 "configure"
    78688538 int    testdata[3] = { 123, 456, 789 };
    78698539 EOF
    78708540-       if { (eval echo "$as_me:10519: \"$ac_compile\"") >&5
    7871 +       if { (eval echo "$as_me:11294: \"$ac_compile\"") >&5
     8541+       if { (eval echo "$as_me:11232: \"$ac_compile\"") >&5
    78728542   (eval $ac_compile) 2>&5
    78738543   ac_status=$?
    78748544-  echo "$as_me:10522: \$? = $ac_status" >&5
    7875 +  echo "$as_me:11297: \$? = $ac_status" >&5
     8545+  echo "$as_me:11235: \$? = $ac_status" >&5
    78768546   (exit $ac_status); } ; then
    78778547                mv conftest.o data.o && \
     
    78818551        cat >conftest.$ac_ext <<EOF
    78828552-#line 10529 "configure"
    7883 +#line 11304 "configure"
     8553+#line 11242 "configure"
    78848554 int    testfunc()
    78858555 {
    78868556 #if defined(NeXT)
    7887 @@ -10539,10 +11314,10 @@
     8557@@ -10539,10 +11252,10 @@
    78888558 #endif
    78898559 }
    78908560 EOF
    78918561-       if { (eval echo "$as_me:10542: \"$ac_compile\"") >&5
    7892 +       if { (eval echo "$as_me:11317: \"$ac_compile\"") >&5
     8562+       if { (eval echo "$as_me:11255: \"$ac_compile\"") >&5
    78938563   (eval $ac_compile) 2>&5
    78948564   ac_status=$?
    78958565-  echo "$as_me:10545: \$? = $ac_status" >&5
    7896 +  echo "$as_me:11320: \$? = $ac_status" >&5
     8566+  echo "$as_me:11258: \$? = $ac_status" >&5
    78978567   (exit $ac_status); }; then
    78988568                mv conftest.o func.o && \
    78998569                ( $AR $ARFLAGS conftest.a func.o ) 2>&5 1>/dev/null
    7900 @@ -10555,7 +11330,7 @@
     8570@@ -10555,7 +11268,7 @@
    79018571   cf_cv_link_dataonly=unknown
    79028572 else
    79038573   cat >conftest.$ac_ext <<_ACEOF
    79048574-#line 10558 "configure"
    7905 +#line 11333 "configure"
     8575+#line 11271 "configure"
    79068576 #include "confdefs.h"
    79078577 
    79088578        int main()
    7909 @@ -10566,15 +11341,15 @@
     8579@@ -10566,15 +11279,15 @@
    79108580 
    79118581 _ACEOF
    79128582 rm -f conftest$ac_exeext
    79138583-if { (eval echo "$as_me:10569: \"$ac_link\"") >&5
    7914 +if { (eval echo "$as_me:11344: \"$ac_link\"") >&5
     8584+if { (eval echo "$as_me:11282: \"$ac_link\"") >&5
    79158585   (eval $ac_link) 2>&5
    79168586   ac_status=$?
    79178587-  echo "$as_me:10572: \$? = $ac_status" >&5
    7918 +  echo "$as_me:11347: \$? = $ac_status" >&5
     8588+  echo "$as_me:11285: \$? = $ac_status" >&5
    79198589   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
    79208590-  { (eval echo "$as_me:10574: \"$ac_try\"") >&5
    7921 +  { (eval echo "$as_me:11349: \"$ac_try\"") >&5
     8591+  { (eval echo "$as_me:11287: \"$ac_try\"") >&5
    79228592   (eval $ac_try) 2>&5
    79238593   ac_status=$?
    79248594-  echo "$as_me:10577: \$? = $ac_status" >&5
    7925 +  echo "$as_me:11352: \$? = $ac_status" >&5
     8595+  echo "$as_me:11290: \$? = $ac_status" >&5
    79268596   (exit $ac_status); }; }; then
    79278597   cf_cv_link_dataonly=yes
    79288598 else
    7929 @@ -10589,7 +11364,7 @@
     8599@@ -10589,7 +11302,7 @@
    79308600 
    79318601 fi
    79328602 
    79338603-echo "$as_me:10592: result: $cf_cv_link_dataonly" >&5
    7934 +echo "$as_me:11367: result: $cf_cv_link_dataonly" >&5
     8604+echo "$as_me:11305: result: $cf_cv_link_dataonly" >&5
    79358605 echo "${ECHO_T}$cf_cv_link_dataonly" >&6
    79368606 
    79378607 if test "$cf_cv_link_dataonly" = no ; then
    7938 @@ -10602,7 +11377,7 @@
     8608@@ -10602,7 +11315,7 @@
    79398609 
    79408610 ###    Checks for library functions.
    79418611 
    79428612-echo "$as_me:10605: checking for working mkstemp" >&5
    7943 +echo "$as_me:11380: checking for working mkstemp" >&5
     8613+echo "$as_me:11318: checking for working mkstemp" >&5
    79448614 echo $ECHO_N "checking for working mkstemp... $ECHO_C" >&6
    79458615 if test "${cf_cv_func_mkstemp+set}" = set; then
    79468616   echo $ECHO_N "(cached) $ECHO_C" >&6
    7947 @@ -10610,13 +11385,13 @@
     8617@@ -10610,68 +11323,10 @@
    79488618 
    79498619 rm -rf conftest*
    79508620 if test "$cross_compiling" = yes; then
    79518621-  echo "$as_me:10613: checking for mkstemp" >&5
    7952 +  echo "$as_me:11388: checking for mkstemp" >&5
    7953  echo $ECHO_N "checking for mkstemp... $ECHO_C" >&6
    7954  if test "${ac_cv_func_mkstemp+set}" = set; then
    7955    echo $ECHO_N "(cached) $ECHO_C" >&6
    7956  else
    7957    cat >conftest.$ac_ext <<_ACEOF
     8622-echo $ECHO_N "checking for mkstemp... $ECHO_C" >&6
     8623-if test "${ac_cv_func_mkstemp+set}" = set; then
     8624-  echo $ECHO_N "(cached) $ECHO_C" >&6
     8625-else
     8626-  cat >conftest.$ac_ext <<_ACEOF
    79588627-#line 10619 "configure"
    7959 +#line 11394 "configure"
    7960  #include "confdefs.h"
    7961  /* System header to define __stub macros and hopefully few prototypes,
    7962      which can conflict with char mkstemp (); below.  */
    7963 @@ -10647,16 +11422,16 @@
    7964  }
    7965  _ACEOF
    7966  rm -f conftest.$ac_objext conftest$ac_exeext
     8628-#include "confdefs.h"
     8629-/* System header to define __stub macros and hopefully few prototypes,
     8630-    which can conflict with char mkstemp (); below.  */
     8631-#include <assert.h>
     8632-/* Override any gcc2 internal prototype to avoid an error.  */
     8633-#ifdef __cplusplus
     8634-extern "C"
     8635-#endif
     8636-/* We use char because int might match the return type of a gcc2
     8637-   builtin and then its argument prototype would still apply.  */
     8638-char mkstemp ();
     8639-char (*f) ();
     8640-
     8641-int
     8642-main ()
     8643-{
     8644-/* The GNU C library defines this for functions which it implements
     8645-    to always fail with ENOSYS.  Some functions are actually named
     8646-    something starting with __ and the normal name is an alias.  */
     8647-#if defined (__stub_mkstemp) || defined (__stub___mkstemp)
     8648-choke me
     8649-#else
     8650-f = mkstemp;
     8651-#endif
     8652-
     8653-  ;
     8654-  return 0;
     8655-}
     8656-_ACEOF
     8657-rm -f conftest.$ac_objext conftest$ac_exeext
    79678658-if { (eval echo "$as_me:10650: \"$ac_link\"") >&5
    7968 +if { (eval echo "$as_me:11425: \"$ac_link\"") >&5
    7969    (eval $ac_link) 2>&5
    7970    ac_status=$?
     8659-  (eval $ac_link) 2>&5
     8660-  ac_status=$?
    79718661-  echo "$as_me:10653: \$? = $ac_status" >&5
    7972 +  echo "$as_me:11428: \$? = $ac_status" >&5
    7973    (exit $ac_status); } &&
    7974           { ac_try='test -s conftest$ac_exeext'
     8662-  (exit $ac_status); } &&
     8663-         { ac_try='test -s conftest$ac_exeext'
    79758664-  { (eval echo "$as_me:10656: \"$ac_try\"") >&5
    7976 +  { (eval echo "$as_me:11431: \"$ac_try\"") >&5
    7977    (eval $ac_try) 2>&5
    7978    ac_status=$?
     8665-  (eval $ac_try) 2>&5
     8666-  ac_status=$?
    79798667-  echo "$as_me:10659: \$? = $ac_status" >&5
    7980 +  echo "$as_me:11434: \$? = $ac_status" >&5
    7981    (exit $ac_status); }; }; then
    7982    ac_cv_func_mkstemp=yes
    7983  else
    7984 @@ -10666,12 +11441,12 @@
    7985  fi
    7986  rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    7987  fi
     8668-  (exit $ac_status); }; }; then
     8669-  ac_cv_func_mkstemp=yes
     8670-else
     8671-  echo "$as_me: failed program was:" >&5
     8672-cat conftest.$ac_ext >&5
     8673-ac_cv_func_mkstemp=no
     8674-fi
     8675-rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
     8676-fi
    79888677-echo "$as_me:10669: result: $ac_cv_func_mkstemp" >&5
    7989 +echo "$as_me:11444: result: $ac_cv_func_mkstemp" >&5
    7990  echo "${ECHO_T}$ac_cv_func_mkstemp" >&6
    7991  
     8678-echo "${ECHO_T}$ac_cv_func_mkstemp" >&6
     8679-
     8680+  cf_cv_func_mkstemp=maybe
    79928681 else
    79938682   cat >conftest.$ac_ext <<_ACEOF
    79948683-#line 10674 "configure"
    7995 +#line 11449 "configure"
     8684+#line 11329 "configure"
    79968685 #include "confdefs.h"
    79978686 
    79988687 #include <sys/types.h>
    7999 @@ -10709,15 +11484,15 @@
     8688@@ -10709,15 +11364,15 @@
    80008689 
    80018690 _ACEOF
    80028691 rm -f conftest$ac_exeext
    80038692-if { (eval echo "$as_me:10712: \"$ac_link\"") >&5
    8004 +if { (eval echo "$as_me:11487: \"$ac_link\"") >&5
     8693+if { (eval echo "$as_me:11367: \"$ac_link\"") >&5
    80058694   (eval $ac_link) 2>&5
    80068695   ac_status=$?
    80078696-  echo "$as_me:10715: \$? = $ac_status" >&5
    8008 +  echo "$as_me:11490: \$? = $ac_status" >&5
     8697+  echo "$as_me:11370: \$? = $ac_status" >&5
    80098698   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
    80108699-  { (eval echo "$as_me:10717: \"$ac_try\"") >&5
    8011 +  { (eval echo "$as_me:11492: \"$ac_try\"") >&5
     8700+  { (eval echo "$as_me:11372: \"$ac_try\"") >&5
    80128701   (eval $ac_try) 2>&5
    80138702   ac_status=$?
    80148703-  echo "$as_me:10720: \$? = $ac_status" >&5
    8015 +  echo "$as_me:11495: \$? = $ac_status" >&5
     8704+  echo "$as_me:11375: \$? = $ac_status" >&5
    80168705   (exit $ac_status); }; }; then
    80178706   cf_cv_func_mkstemp=yes
    80188707 
    8019 @@ -10732,7 +11507,7 @@
     8708@@ -10732,8 +11387,69 @@
    80208709 fi
    80218710 
    80228711 fi
    80238712-echo "$as_me:10735: result: $cf_cv_func_mkstemp" >&5
    8024 +echo "$as_me:11510: result: $cf_cv_func_mkstemp" >&5
     8713+echo "$as_me:11390: result: $cf_cv_func_mkstemp" >&5
    80258714 echo "${ECHO_T}$cf_cv_func_mkstemp" >&6
     8715+if test "x$cf_cv_func_mkstemp" = xmaybe ; then
     8716+       echo "$as_me:11393: checking for mkstemp" >&5
     8717+echo $ECHO_N "checking for mkstemp... $ECHO_C" >&6
     8718+if test "${ac_cv_func_mkstemp+set}" = set; then
     8719+  echo $ECHO_N "(cached) $ECHO_C" >&6
     8720+else
     8721+  cat >conftest.$ac_ext <<_ACEOF
     8722+#line 11399 "configure"
     8723+#include "confdefs.h"
     8724+/* System header to define __stub macros and hopefully few prototypes,
     8725+    which can conflict with char mkstemp (); below.  */
     8726+#include <assert.h>
     8727+/* Override any gcc2 internal prototype to avoid an error.  */
     8728+#ifdef __cplusplus
     8729+extern "C"
     8730+#endif
     8731+/* We use char because int might match the return type of a gcc2
     8732+   builtin and then its argument prototype would still apply.  */
     8733+char mkstemp ();
     8734+char (*f) ();
     8735+
     8736+int
     8737+main ()
     8738+{
     8739+/* The GNU C library defines this for functions which it implements
     8740+    to always fail with ENOSYS.  Some functions are actually named
     8741+    something starting with __ and the normal name is an alias.  */
     8742+#if defined (__stub_mkstemp) || defined (__stub___mkstemp)
     8743+choke me
     8744+#else
     8745+f = mkstemp; /* workaround for ICC 12.0.3 */ if (f == 0) return 1;
     8746+#endif
     8747+
     8748+  ;
     8749+  return 0;
     8750+}
     8751+_ACEOF
     8752+rm -f conftest.$ac_objext conftest$ac_exeext
     8753+if { (eval echo "$as_me:11430: \"$ac_link\"") >&5
     8754+  (eval $ac_link) 2>&5
     8755+  ac_status=$?
     8756+  echo "$as_me:11433: \$? = $ac_status" >&5
     8757+  (exit $ac_status); } &&
     8758+         { ac_try='test -s conftest$ac_exeext'
     8759+  { (eval echo "$as_me:11436: \"$ac_try\"") >&5
     8760+  (eval $ac_try) 2>&5
     8761+  ac_status=$?
     8762+  echo "$as_me:11439: \$? = $ac_status" >&5
     8763+  (exit $ac_status); }; }; then
     8764+  ac_cv_func_mkstemp=yes
     8765+else
     8766+  echo "$as_me: failed program was:" >&5
     8767+cat conftest.$ac_ext >&5
     8768+ac_cv_func_mkstemp=no
     8769+fi
     8770+rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
     8771+fi
     8772+echo "$as_me:11449: result: $ac_cv_func_mkstemp" >&5
     8773+echo "${ECHO_T}$ac_cv_func_mkstemp" >&6
     8774+
     8775+fi
    80268776 if test "x$cf_cv_func_mkstemp" = xyes || test "x$ac_cv_func_mkstemp" = xyes ; then
    80278777        cat >>confdefs.h <<\EOF
    8028 @@ -10741,13 +11516,13 @@
     8778 #define HAVE_MKSTEMP 1
     8779@@ -10741,13 +11457,13 @@
    80298780 
    80308781 fi
    80318782 
    80328783-echo "$as_me:10744: checking return type of signal handlers" >&5
    8033 +echo "$as_me:11519: checking return type of signal handlers" >&5
     8784+echo "$as_me:11460: checking return type of signal handlers" >&5
    80348785 echo $ECHO_N "checking return type of signal handlers... $ECHO_C" >&6
    80358786 if test "${ac_cv_type_signal+set}" = set; then
     
    80388789   cat >conftest.$ac_ext <<_ACEOF
    80398790-#line 10750 "configure"
    8040 +#line 11525 "configure"
     8791+#line 11466 "configure"
    80418792 #include "confdefs.h"
    80428793 #include <sys/types.h>
    80438794 #include <signal.h>
    8044 @@ -10769,16 +11544,16 @@
     8795@@ -10769,16 +11485,16 @@
    80458796 }
    80468797 _ACEOF
    80478798 rm -f conftest.$ac_objext
    80488799-if { (eval echo "$as_me:10772: \"$ac_compile\"") >&5
    8049 +if { (eval echo "$as_me:11547: \"$ac_compile\"") >&5
     8800+if { (eval echo "$as_me:11488: \"$ac_compile\"") >&5
    80508801   (eval $ac_compile) 2>&5
    80518802   ac_status=$?
    80528803-  echo "$as_me:10775: \$? = $ac_status" >&5
    8053 +  echo "$as_me:11550: \$? = $ac_status" >&5
     8804+  echo "$as_me:11491: \$? = $ac_status" >&5
    80548805   (exit $ac_status); } &&
    80558806          { ac_try='test -s conftest.$ac_objext'
    80568807-  { (eval echo "$as_me:10778: \"$ac_try\"") >&5
    8057 +  { (eval echo "$as_me:11553: \"$ac_try\"") >&5
     8808+  { (eval echo "$as_me:11494: \"$ac_try\"") >&5
    80588809   (eval $ac_try) 2>&5
    80598810   ac_status=$?
    80608811-  echo "$as_me:10781: \$? = $ac_status" >&5
    8061 +  echo "$as_me:11556: \$? = $ac_status" >&5
     8812+  echo "$as_me:11497: \$? = $ac_status" >&5
    80628813   (exit $ac_status); }; }; then
    80638814   ac_cv_type_signal=void
    80648815 else
    8065 @@ -10788,7 +11563,7 @@
     8816@@ -10788,7 +11504,7 @@
    80668817 fi
    80678818 rm -f conftest.$ac_objext conftest.$ac_ext
    80688819 fi
    80698820-echo "$as_me:10791: result: $ac_cv_type_signal" >&5
    8070 +echo "$as_me:11566: result: $ac_cv_type_signal" >&5
     8821+echo "$as_me:11507: result: $ac_cv_type_signal" >&5
    80718822 echo "${ECHO_T}$ac_cv_type_signal" >&6
    80728823 
    80738824 cat >>confdefs.h <<EOF
    8074 @@ -10800,12 +11575,13 @@
     8825@@ -10800,12 +11516,13 @@
    80758826        CXXFLAGS=`echo ${CXXFLAGS} | sed -e 's%-g %%' -e 's%-g$%%'`
    80768827 fi
     
    80838834 set dummy $cf_ada_make; ac_word=$2
    80848835-echo "$as_me:10808: checking for $ac_word" >&5
    8085 +echo "$as_me:11584: checking for $ac_word" >&5
     8836+echo "$as_me:11525: checking for $ac_word" >&5
    80868837 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    80878838 if test "${ac_cv_prog_gnat_exists+set}" = set; then
    80888839   echo $ECHO_N "(cached) $ECHO_C" >&6
    8089 @@ -10820,7 +11596,7 @@
     8840@@ -10820,7 +11537,7 @@
    80908841   test -z "$ac_dir" && ac_dir=.
    80918842   $as_executable_p "$ac_dir/$ac_word" || continue
    80928843 ac_cv_prog_gnat_exists="yes"
    80938844-echo "$as_me:10823: found $ac_dir/$ac_word" >&5
    8094 +echo "$as_me:11599: found $ac_dir/$ac_word" >&5
     8845+echo "$as_me:11540: found $ac_dir/$ac_word" >&5
    80958846 break
    80968847 done
    80978848 
    8098 @@ -10829,31 +11605,32 @@
     8849@@ -10829,31 +11546,32 @@
    80998850 fi
    81008851 gnat_exists=$ac_cv_prog_gnat_exists
    81018852 if test -n "$gnat_exists"; then
    81028853-  echo "$as_me:10832: result: $gnat_exists" >&5
    8103 +  echo "$as_me:11608: result: $gnat_exists" >&5
     8854+  echo "$as_me:11549: result: $gnat_exists" >&5
    81048855 echo "${ECHO_T}$gnat_exists" >&6
    81058856 else
    81068857-  echo "$as_me:10835: result: no" >&5
    8107 +  echo "$as_me:11611: result: no" >&5
     8858+  echo "$as_me:11552: result: no" >&5
    81088859 echo "${ECHO_T}no" >&6
    81098860 fi
     
    81158866 
    81168867-echo "$as_me:10843: checking for gnat version" >&5
    8117 +echo "$as_me:11620: checking for gnat version" >&5
     8868+echo "$as_me:11561: checking for gnat version" >&5
    81188869 echo $ECHO_N "checking for gnat version... $ECHO_C" >&6
    81198870 cf_gnat_version=`${cf_ada_make:-gnatmake} -v 2>&1 | \
     
    81218872     sed -e '2,$d' -e 's/[^0-9 \.]//g' -e 's/^[ ]*//' -e 's/ .*//'`
    81228873-echo "$as_me:10848: result: $cf_gnat_version" >&5
    8123 +echo "$as_me:11625: result: $cf_gnat_version" >&5
     8874+echo "$as_me:11566: result: $cf_gnat_version" >&5
    81248875 echo "${ECHO_T}$cf_gnat_version" >&6
    81258876 
     
    81318882 *)
    81328883-       { echo "$as_me:10856: WARNING: Unsupported GNAT version $cf_gnat_version. We require 3.11 or better. Disabling Ada95 binding." >&5
    8133 +       { echo "$as_me:11633: WARNING: Unsupported GNAT version $cf_gnat_version. We require 3.11 or better. Disabling Ada95 binding." >&5
     8884+       { echo "$as_me:11574: WARNING: Unsupported GNAT version $cf_gnat_version. We require 3.11 or better. Disabling Ada95 binding." >&5
    81348885 echo "$as_me: WARNING: Unsupported GNAT version $cf_gnat_version. We require 3.11 or better. Disabling Ada95 binding." >&2;}
    81358886        cf_cv_prog_gnat_correct=no
    81368887        ;;
    8137 @@ -10861,7 +11638,7 @@
     8888@@ -10861,7 +11579,7 @@
    81388889 
    81398890    # Extract the first word of "m4", so it can be a program name with args.
    81408891 set dummy m4; ac_word=$2
    81418892-echo "$as_me:10864: checking for $ac_word" >&5
    8142 +echo "$as_me:11641: checking for $ac_word" >&5
     8893+echo "$as_me:11582: checking for $ac_word" >&5
    81438894 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    81448895 if test "${ac_cv_prog_M4_exists+set}" = set; then
    81458896   echo $ECHO_N "(cached) $ECHO_C" >&6
    8146 @@ -10876,7 +11653,7 @@
     8897@@ -10876,7 +11594,7 @@
    81478898   test -z "$ac_dir" && ac_dir=.
    81488899   $as_executable_p "$ac_dir/$ac_word" || continue
    81498900 ac_cv_prog_M4_exists="yes"
    81508901-echo "$as_me:10879: found $ac_dir/$ac_word" >&5
    8151 +echo "$as_me:11656: found $ac_dir/$ac_word" >&5
     8902+echo "$as_me:11597: found $ac_dir/$ac_word" >&5
    81528903 break
    81538904 done
    81548905 
    8155 @@ -10885,10 +11662,10 @@
     8906@@ -10885,10 +11603,10 @@
    81568907 fi
    81578908 M4_exists=$ac_cv_prog_M4_exists
    81588909 if test -n "$M4_exists"; then
    81598910-  echo "$as_me:10888: result: $M4_exists" >&5
    8160 +  echo "$as_me:11665: result: $M4_exists" >&5
     8911+  echo "$as_me:11606: result: $M4_exists" >&5
    81618912 echo "${ECHO_T}$M4_exists" >&6
    81628913 else
    81638914-  echo "$as_me:10891: result: no" >&5
    8164 +  echo "$as_me:11668: result: no" >&5
     8915+  echo "$as_me:11609: result: no" >&5
    81658916 echo "${ECHO_T}no" >&6
    81668917 fi
    81678918 
    8168 @@ -10897,7 +11674,7 @@
     8919@@ -10897,7 +11615,7 @@
    81698920       echo Ada95 binding required program m4 not found. Ada95 binding disabled.
    81708921    fi
    81718922    if test "$cf_cv_prog_gnat_correct" = yes; then
    81728923-      echo "$as_me:10900: checking if GNAT works" >&5
    8173 +      echo "$as_me:11677: checking if GNAT works" >&5
     8924+      echo "$as_me:11618: checking if GNAT works" >&5
    81748925 echo $ECHO_N "checking if GNAT works... $ECHO_C" >&6
    81758926 
    81768927 rm -rf conftest* *~conftest*
    8177 @@ -10925,7 +11702,7 @@
     8928@@ -10925,30 +11643,34 @@
    81788929 fi
    81798930 rm -rf conftest* *~conftest*
    81808931 
    81818932-      echo "$as_me:10928: result: $cf_cv_prog_gnat_correct" >&5
    8182 +      echo "$as_me:11705: result: $cf_cv_prog_gnat_correct" >&5
     8933+      echo "$as_me:11646: result: $cf_cv_prog_gnat_correct" >&5
    81838934 echo "${ECHO_T}$cf_cv_prog_gnat_correct" >&6
    81848935    fi
    81858936 fi
    8186 @@ -10948,7 +11725,7 @@
    8187                         ;;
    8188                 esac
     8937 
     8938        if test "$cf_cv_prog_gnat_correct" = yes; then
     8939 
     8940-               # make ADAFLAGS consistent with CFLAGS
     8941-               case "$CFLAGS" in
     8942-               *-g*)
     8943+       echo "$as_me:11653: checking optimization options for ADAFLAGS" >&5
     8944+echo $ECHO_N "checking optimization options for ADAFLAGS... $ECHO_C" >&6
     8945+       case "$CFLAGS" in
     8946+       *-g*)
     8947 
     8948        ADAFLAGS="$ADAFLAGS -g"
     8949 
     8950-                       ;;
     8951-               esac
     8952-               case "$CFLAGS" in
     8953-               *-O*)
     8954+               ;;
     8955+       esac
     8956+       case "$CFLAGS" in
     8957+       *-O*)
     8958+               cf_O_flag=`echo "$CFLAGS" |sed -e 's/^.*-O/-O/' -e 's/[         ].*//'`
     8959 
     8960-       ADAFLAGS="$ADAFLAGS -O3"
     8961+       ADAFLAGS="$ADAFLAGS $cf_O_flag"
     8962 
     8963-                       ;;
     8964-               esac
     8965+               ;;
     8966+       esac
     8967+       echo "$as_me:11670: result: $ADAFLAGS" >&5
     8968+echo "${ECHO_T}$ADAFLAGS" >&6
    81898969 
    81908970-echo "$as_me:10951: checking if GNAT supports generics" >&5
    8191 +echo "$as_me:11728: checking if GNAT supports generics" >&5
     8971+echo "$as_me:11673: checking if GNAT supports generics" >&5
    81928972 echo $ECHO_N "checking if GNAT supports generics... $ECHO_C" >&6
    81938973 case $cf_gnat_version in #(vi
    81948974 3.[1-9]*|[4-9].*) #(vi
    8195 @@ -10958,7 +11735,7 @@
     8975@@ -10958,7 +11680,7 @@
    81968976        cf_gnat_generics=no
    81978977        ;;
    81988978 esac
    81998979-echo "$as_me:10961: result: $cf_gnat_generics" >&5
    8200 +echo "$as_me:11738: result: $cf_gnat_generics" >&5
     8980+echo "$as_me:11683: result: $cf_gnat_generics" >&5
    82018981 echo "${ECHO_T}$cf_gnat_generics" >&6
    82028982 
    82038983 if test "$cf_gnat_generics" = yes
    8204 @@ -10970,7 +11747,7 @@
     8984@@ -10970,7 +11692,7 @@
    82058985        cf_generic_objects=
    82068986 fi
    82078987 
    82088988-echo "$as_me:10973: checking if GNAT supports SIGINT" >&5
    8209 +echo "$as_me:11750: checking if GNAT supports SIGINT" >&5
     8989+echo "$as_me:11695: checking if GNAT supports SIGINT" >&5
    82108990 echo $ECHO_N "checking if GNAT supports SIGINT... $ECHO_C" >&6
    82118991 if test "${cf_cv_gnat_sigint+set}" = set; then
    82128992   echo $ECHO_N "(cached) $ECHO_C" >&6
    8213 @@ -11018,7 +11795,7 @@
     8993@@ -11018,7 +11740,7 @@
    82148994 rm -rf conftest* *~conftest*
    82158995 
    82168996 fi
    82178997-echo "$as_me:11021: result: $cf_cv_gnat_sigint" >&5
    8218 +echo "$as_me:11798: result: $cf_cv_gnat_sigint" >&5
     8998+echo "$as_me:11743: result: $cf_cv_gnat_sigint" >&5
    82198999 echo "${ECHO_T}$cf_cv_gnat_sigint" >&6
    82209000 
    82219001 if test $cf_cv_gnat_sigint = yes ; then
    8222 @@ -11027,7 +11804,7 @@
     9002@@ -11027,7 +11749,7 @@
    82239003        USE_GNAT_SIGINT="#"
    82249004 fi
    82259005 
    82269006-echo "$as_me:11030: checking if GNAT pragma Unreferenced works" >&5
    8227 +echo "$as_me:11807: checking if GNAT pragma Unreferenced works" >&5
     9007+echo "$as_me:11752: checking if GNAT pragma Unreferenced works" >&5
    82289008 echo $ECHO_N "checking if GNAT pragma Unreferenced works... $ECHO_C" >&6
    82299009 if test "${cf_cv_pragma_unreferenced+set}" = set; then
    82309010   echo $ECHO_N "(cached) $ECHO_C" >&6
    8231 @@ -11058,7 +11835,7 @@
     9011@@ -11058,7 +11780,7 @@
    82329012 rm -rf conftest* *~conftest*
    82339013 
    82349014 fi
    82359015-echo "$as_me:11061: result: $cf_cv_pragma_unreferenced" >&5
    8236 +echo "$as_me:11838: result: $cf_cv_pragma_unreferenced" >&5
     9016+echo "$as_me:11783: result: $cf_cv_pragma_unreferenced" >&5
    82379017 echo "${ECHO_T}$cf_cv_pragma_unreferenced" >&6
    82389018 
    82399019 # if the pragma is supported, use it (needed in the Trace code).
    8240 @@ -11071,7 +11848,7 @@
     9020@@ -11071,7 +11793,7 @@
    82419021 cf_gnat_libraries=no
    82429022 cf_gnat_projects=no
    82439023 
    82449024-echo "$as_me:11074: checking if GNAT supports project files" >&5
    8245 +echo "$as_me:11851: checking if GNAT supports project files" >&5
     9025+echo "$as_me:11796: checking if GNAT supports project files" >&5
    82469026 echo $ECHO_N "checking if GNAT supports project files... $ECHO_C" >&6
    82479027 case $cf_gnat_version in #(vi
    82489028 3.[0-9]*) #(vi
    8249 @@ -11139,14 +11916,14 @@
     9029@@ -11139,14 +11861,14 @@
    82509030        esac
    82519031        ;;
    82529032 esac
    82539033-echo "$as_me:11142: result: $cf_gnat_projects" >&5
    8254 +echo "$as_me:11919: result: $cf_gnat_projects" >&5
     9034+echo "$as_me:11864: result: $cf_gnat_projects" >&5
    82559035 echo "${ECHO_T}$cf_gnat_projects" >&6
    82569036 
     
    82589038 then
    82599039-       echo "$as_me:11147: checking if GNAT supports libraries" >&5
    8260 +       echo "$as_me:11924: checking if GNAT supports libraries" >&5
     9040+       echo "$as_me:11869: checking if GNAT supports libraries" >&5
    82619041 echo $ECHO_N "checking if GNAT supports libraries... $ECHO_C" >&6
    82629042-       echo "$as_me:11149: result: $cf_gnat_libraries" >&5
    8263 +       echo "$as_me:11926: result: $cf_gnat_libraries" >&5
     9043+       echo "$as_me:11871: result: $cf_gnat_libraries" >&5
    82649044 echo "${ECHO_T}$cf_gnat_libraries" >&6
    82659045 fi
    82669046 
    8267 @@ -11166,7 +11943,7 @@
     9047@@ -11166,7 +11888,7 @@
    82689048        USE_GNAT_LIBRARIES="#"
    82699049 fi
    82709050 
    82719051-echo "$as_me:11169: checking for ada-compiler" >&5
    8272 +echo "$as_me:11946: checking for ada-compiler" >&5
     9052+echo "$as_me:11891: checking for ada-compiler" >&5
    82739053 echo $ECHO_N "checking for ada-compiler... $ECHO_C" >&6
    82749054 
    82759055 # Check whether --with-ada-compiler or --without-ada-compiler was given.
    8276 @@ -11177,12 +11954,12 @@
     9056@@ -11177,12 +11899,12 @@
    82779057   cf_ada_compiler=gnatmake
    82789058 fi;
    82799059 
    82809060-echo "$as_me:11180: result: $cf_ada_compiler" >&5
    8281 +echo "$as_me:11957: result: $cf_ada_compiler" >&5
     9061+echo "$as_me:11902: result: $cf_ada_compiler" >&5
    82829062 echo "${ECHO_T}$cf_ada_compiler" >&6
    82839063 
     
    82859065 
    82869066-echo "$as_me:11185: checking for ada-include" >&5
    8287 +echo "$as_me:11962: checking for ada-include" >&5
     9067+echo "$as_me:11907: checking for ada-include" >&5
    82889068 echo $ECHO_N "checking for ada-include... $ECHO_C" >&6
    82899069 
    82909070 # Check whether --with-ada-include or --without-ada-include was given.
    8291 @@ -11218,7 +11995,7 @@
     9071@@ -11206,7 +11928,7 @@
     9072   ;;
     9073 .[a-zA-Z]:[\\/]*) #(vi OS/2 EMX
     9074   ;;
     9075-.\${*prefix}*) #(vi
     9076+.\${*prefix}*|.\${*dir}*) #(vi
     9077   eval withval="$withval"
     9078   case ".$withval" in #(vi
     9079   .NONE/*)
     9080@@ -11218,7 +11940,7 @@
    82929081   withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%`
    82939082   ;;
    82949083 *)
    82959084-  { { echo "$as_me:11221: error: expected a pathname, not \"$withval\"" >&5
    8296 +  { { echo "$as_me:11998: error: expected a pathname, not \"$withval\"" >&5
     9085+  { { echo "$as_me:11943: error: expected a pathname, not \"$withval\"" >&5
    82979086 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;}
    82989087    { (exit 1); exit 1; }; }
    82999088   ;;
    8300 @@ -11227,10 +12004,10 @@
     9089@@ -11227,10 +11949,10 @@
    83019090 fi
    83029091 ADA_INCLUDE="$withval"
    83039092 
    83049093-echo "$as_me:11230: result: $ADA_INCLUDE" >&5
    8305 +echo "$as_me:12007: result: $ADA_INCLUDE" >&5
     9094+echo "$as_me:11952: result: $ADA_INCLUDE" >&5
    83069095 echo "${ECHO_T}$ADA_INCLUDE" >&6
    83079096 
    83089097-echo "$as_me:11233: checking for ada-objects" >&5
    8309 +echo "$as_me:12010: checking for ada-objects" >&5
     9098+echo "$as_me:11955: checking for ada-objects" >&5
    83109099 echo $ECHO_N "checking for ada-objects... $ECHO_C" >&6
    83119100 
    83129101 # Check whether --with-ada-objects or --without-ada-objects was given.
    8313 @@ -11266,7 +12043,7 @@
     9102@@ -11254,7 +11976,7 @@
     9103   ;;
     9104 .[a-zA-Z]:[\\/]*) #(vi OS/2 EMX
     9105   ;;
     9106-.\${*prefix}*) #(vi
     9107+.\${*prefix}*|.\${*dir}*) #(vi
     9108   eval withval="$withval"
     9109   case ".$withval" in #(vi
     9110   .NONE/*)
     9111@@ -11266,7 +11988,7 @@
    83149112   withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%`
    83159113   ;;
    83169114 *)
    83179115-  { { echo "$as_me:11269: error: expected a pathname, not \"$withval\"" >&5
    8318 +  { { echo "$as_me:12046: error: expected a pathname, not \"$withval\"" >&5
     9116+  { { echo "$as_me:11991: error: expected a pathname, not \"$withval\"" >&5
    83199117 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;}
    83209118    { (exit 1); exit 1; }; }
    83219119   ;;
    8322 @@ -11275,10 +12052,10 @@
     9120@@ -11275,10 +11997,10 @@
    83239121 fi
    83249122 ADA_OBJECTS="$withval"
    83259123 
    83269124-echo "$as_me:11278: result: $ADA_OBJECTS" >&5
    8327 +echo "$as_me:12055: result: $ADA_OBJECTS" >&5
     9125+echo "$as_me:12000: result: $ADA_OBJECTS" >&5
    83289126 echo "${ECHO_T}$ADA_OBJECTS" >&6
    83299127 
    83309128-echo "$as_me:11281: checking if an Ada95 shared-library should be built" >&5
    8331 +echo "$as_me:12058: checking if an Ada95 shared-library should be built" >&5
     9129+echo "$as_me:12003: checking if an Ada95 shared-library should be built" >&5
    83329130 echo $ECHO_N "checking if an Ada95 shared-library should be built... $ECHO_C" >&6
    83339131 
    83349132 # Check whether --with-ada-sharedlib or --without-ada-sharedlib was given.
    8335 @@ -11288,7 +12065,7 @@
     9133@@ -11288,7 +12010,7 @@
    83369134 else
    83379135   with_ada_sharedlib=no
    83389136 fi;
    83399137-echo "$as_me:11291: result: $with_ada_sharedlib" >&5
    8340 +echo "$as_me:12068: result: $with_ada_sharedlib" >&5
     9138+echo "$as_me:12013: result: $with_ada_sharedlib" >&5
    83419139 echo "${ECHO_T}$with_ada_sharedlib" >&6
    83429140 
    83439141 ADA_SHAREDLIB='lib$(LIB_NAME).so.1'
    8344 @@ -11304,12 +12081,12 @@
     9142@@ -11304,12 +12026,12 @@
    83459143 fi
    83469144 
    83479145        else
    83489146-               { { echo "$as_me:11307: error: No usable Ada compiler found" >&5
    8349 +               { { echo "$as_me:12084: error: No usable Ada compiler found" >&5
     9147+               { { echo "$as_me:12029: error: No usable Ada compiler found" >&5
    83509148 echo "$as_me: error: No usable Ada compiler found" >&2;}
    83519149    { (exit 1); exit 1; }; }
     
    83539151 else
    83549152-       { { echo "$as_me:11312: error: The Ada compiler is needed for this package" >&5
    8355 +       { { echo "$as_me:12089: error: The Ada compiler is needed for this package" >&5
     9153+       { { echo "$as_me:12034: error: The Ada compiler is needed for this package" >&5
    83569154 echo "$as_me: error: The Ada compiler is needed for this package" >&2;}
    83579155    { (exit 1); exit 1; }; }
    83589156 fi
    8359 @@ -11317,7 +12094,9 @@
     9157@@ -11317,7 +12039,9 @@
    83609158 ################################################################################
    83619159 
     
    83689166 ### Construct the list of include-directories to be generated
    83699167 
    8370 @@ -11354,7 +12133,7 @@
     9168@@ -11354,7 +12078,7 @@
    83719169 fi
    83729170 
    83739171 ### Build up pieces for makefile rules
    83749172-echo "$as_me:11357: checking default library suffix" >&5
    8375 +echo "$as_me:12136: checking default library suffix" >&5
     9173+echo "$as_me:12081: checking default library suffix" >&5
    83769174 echo $ECHO_N "checking default library suffix... $ECHO_C" >&6
    83779175 
    83789176        case $DFT_LWR_MODEL in
    8379 @@ -11365,10 +12144,10 @@
     9177@@ -11365,10 +12089,10 @@
    83809178        shared)  DFT_ARG_SUFFIX=''   ;;
    83819179        esac
    83829180        test -n "$LIB_SUFFIX" && DFT_ARG_SUFFIX="${LIB_SUFFIX}${DFT_ARG_SUFFIX}"
    83839181-echo "$as_me:11368: result: $DFT_ARG_SUFFIX" >&5
    8384 +echo "$as_me:12147: result: $DFT_ARG_SUFFIX" >&5
     9182+echo "$as_me:12092: result: $DFT_ARG_SUFFIX" >&5
    83859183 echo "${ECHO_T}$DFT_ARG_SUFFIX" >&6
    83869184 
    83879185-echo "$as_me:11371: checking default library-dependency suffix" >&5
    8388 +echo "$as_me:12150: checking default library-dependency suffix" >&5
     9186+echo "$as_me:12095: checking default library-dependency suffix" >&5
    83899187 echo $ECHO_N "checking default library-dependency suffix... $ECHO_C" >&6
    83909188 
    83919189        case $DFT_LWR_MODEL in #(vi
    8392 @@ -11390,7 +12169,7 @@
     9190@@ -11390,11 +12114,11 @@
    83939191                ;;
    83949192        shared) #(vi
     
    83999197                        DFT_DEP_SUFFIX=$DFT_LIB_SUFFIX
    84009198                        ;;
    8401 @@ -11421,10 +12200,10 @@
     9199-               cygwin*) #(vi
     9200+               cygwin*|mingw*) #(vi
     9201                        DFT_LIB_SUFFIX='.dll'
     9202                        DFT_DEP_SUFFIX='.dll.a'
     9203                        ;;
     9204@@ -11421,10 +12145,10 @@
    84029205        esac
    84039206        test -n "$LIB_SUFFIX" && DFT_LIB_SUFFIX="${LIB_SUFFIX}${DFT_LIB_SUFFIX}"
    84049207        test -n "$LIB_SUFFIX" && DFT_DEP_SUFFIX="${LIB_SUFFIX}${DFT_DEP_SUFFIX}"
    84059208-echo "$as_me:11424: result: $DFT_DEP_SUFFIX" >&5
    8406 +echo "$as_me:12203: result: $DFT_DEP_SUFFIX" >&5
     9209+echo "$as_me:12148: result: $DFT_DEP_SUFFIX" >&5
    84079210 echo "${ECHO_T}$DFT_DEP_SUFFIX" >&6
    84089211 
    84099212-echo "$as_me:11427: checking default object directory" >&5
    8410 +echo "$as_me:12206: checking default object directory" >&5
     9213+echo "$as_me:12151: checking default object directory" >&5
    84119214 echo $ECHO_N "checking default object directory... $ECHO_C" >&6
    84129215 
    84139216        case $DFT_LWR_MODEL in
    8414 @@ -11440,7 +12219,7 @@
     9217@@ -11440,7 +12164,7 @@
    84159218                        DFT_OBJ_SUBDIR='obj_s' ;;
    84169219                esac
    84179220        esac
    84189221-echo "$as_me:11443: result: $DFT_OBJ_SUBDIR" >&5
    8419 +echo "$as_me:12222: result: $DFT_OBJ_SUBDIR" >&5
     9222+echo "$as_me:12167: result: $DFT_OBJ_SUBDIR" >&5
    84209223 echo "${ECHO_T}$DFT_OBJ_SUBDIR" >&6
    84219224 
    84229225 ### Set up low-level terminfo dependencies for makefiles.
    8423 @@ -11656,7 +12435,7 @@
     9226@@ -11656,7 +12380,7 @@
    84249227 : ${CONFIG_STATUS=./config.status}
    84259228 ac_clean_files_save=$ac_clean_files
    84269229 ac_clean_files="$ac_clean_files $CONFIG_STATUS"
    84279230-{ echo "$as_me:11659: creating $CONFIG_STATUS" >&5
    8428 +{ echo "$as_me:12438: creating $CONFIG_STATUS" >&5
     9231+{ echo "$as_me:12383: creating $CONFIG_STATUS" >&5
    84299232 echo "$as_me: creating $CONFIG_STATUS" >&6;}
    84309233 cat >$CONFIG_STATUS <<_ACEOF
    84319234 #! $SHELL
    8432 @@ -11832,7 +12611,7 @@
     9235@@ -11788,7 +12512,7 @@
     9236 cat >>$CONFIG_STATUS <<EOF
     9237 ac_cs_version="\\
     9238 config.status
     9239-configured by $0, generated by GNU Autoconf 2.52.20101002,
     9240+configured by $0, generated by GNU Autoconf 2.52.20120811,
     9241   with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
     9242 
     9243 Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001
     9244@@ -11832,7 +12556,7 @@
    84339245     echo "$ac_cs_version"; exit 0 ;;
    84349246   --he | --h)
    84359247     # Conflict between --help and --header
    84369248-    { { echo "$as_me:11835: error: ambiguous option: $1
    8437 +    { { echo "$as_me:12614: error: ambiguous option: $1
     9249+    { { echo "$as_me:12559: error: ambiguous option: $1
    84389250 Try \`$0 --help' for more information." >&5
    84399251 echo "$as_me: error: ambiguous option: $1
    84409252 Try \`$0 --help' for more information." >&2;}
    8441 @@ -11851,7 +12630,7 @@
     9253@@ -11851,7 +12575,7 @@
    84429254     ac_need_defaults=false;;
    84439255 
    84449256   # This is an error.
    84459257-  -*) { { echo "$as_me:11854: error: unrecognized option: $1
    8446 +  -*) { { echo "$as_me:12633: error: unrecognized option: $1
     9258+  -*) { { echo "$as_me:12578: error: unrecognized option: $1
    84479259 Try \`$0 --help' for more information." >&5
    84489260 echo "$as_me: error: unrecognized option: $1
    84499261 Try \`$0 --help' for more information." >&2;}
    8450 @@ -11894,6 +12673,7 @@
     9262@@ -11870,7 +12594,7 @@
     9263 ## Running config.status.  ##
     9264 ## ----------------------- ##
     9265 
     9266-This file was extended by $as_me 2.52.20101002, executed with
     9267+This file was extended by $as_me 2.52.20120811, executed with
     9268   CONFIG_FILES    = $CONFIG_FILES
     9269   CONFIG_HEADERS  = $CONFIG_HEADERS
     9270   CONFIG_LINKS    = $CONFIG_LINKS
     9271@@ -11892,8 +12616,8 @@
     9272 AWK="$AWK"
     9273 DFT_ARG_SUFFIX="$DFT_ARG_SUFFIX"
    84519274 DFT_LWR_MODEL="$DFT_LWR_MODEL"
    8452  ECHO_LINK="$ECHO_LINK"
     9275-ECHO_LINK="$ECHO_LINK"
    84539276 LIB_NAME="$LIB_NAME"
    84549277+LIB_PREFIX="$LIB_PREFIX"
     
    84569279 LN_S="$LN_S"
    84579280 NCURSES_MAJOR="$NCURSES_MAJOR"
    8458 @@ -11922,7 +12702,7 @@
     9281@@ -11922,7 +12646,7 @@
    84599282   "Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;;
    84609283   "default" ) CONFIG_COMMANDS="$CONFIG_COMMANDS default" ;;
    84619284   "include/ncurses_cfg.h" ) CONFIG_HEADERS="$CONFIG_HEADERS include/ncurses_cfg.h:include/ncurses_cfg.hin" ;;
    84629285-  *) { { echo "$as_me:11925: error: invalid argument: $ac_config_target" >&5
    8463 +  *) { { echo "$as_me:12705: error: invalid argument: $ac_config_target" >&5
     9286+  *) { { echo "$as_me:12649: error: invalid argument: $ac_config_target" >&5
    84649287 echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
    84659288    { (exit 1); exit 1; }; };;
    84669289   esac
    8467 @@ -12061,6 +12841,7 @@
     9290@@ -11981,6 +12705,7 @@
     9291 s,@bindir@,$bindir,;t t
     9292 s,@sbindir@,$sbindir,;t t
     9293 s,@libexecdir@,$libexecdir,;t t
     9294+s,@datarootdir@,$datarootdir,;t t
     9295 s,@datadir@,$datadir,;t t
     9296 s,@sysconfdir@,$sysconfdir,;t t
     9297 s,@sharedstatedir@,$sharedstatedir,;t t
     9298@@ -12061,6 +12786,7 @@
    84689299 s,@DFT_LWR_MODEL@,$DFT_LWR_MODEL,;t t
    84699300 s,@DFT_UPR_MODEL@,$DFT_UPR_MODEL,;t t
     
    84739304 s,@NCURSES_MINOR@,$NCURSES_MINOR,;t t
    84749305 s,@NCURSES_PATCH@,$NCURSES_PATCH,;t t
    8475 @@ -12083,6 +12864,7 @@
     9306@@ -12083,13 +12809,18 @@
    84769307 s,@LOCAL_LDFLAGS@,$LOCAL_LDFLAGS,;t t
    84779308 s,@LOCAL_LDFLAGS2@,$LOCAL_LDFLAGS2,;t t
     
    84819312 s,@NCURSES_EXT_FUNCS@,$NCURSES_EXT_FUNCS,;t t
    84829313 s,@NCURSES_CONST@,$NCURSES_CONST,;t t
    8483 @@ -12109,7 +12891,8 @@
     9314 s,@PTHREAD@,$PTHREAD,;t t
     9315 s,@cf_cv_enable_reentrant@,$cf_cv_enable_reentrant,;t t
     9316 s,@NCURSES_WRAP_PREFIX@,$NCURSES_WRAP_PREFIX,;t t
     9317-s,@ECHO_LINK@,$ECHO_LINK,;t t
     9318+s,@ECHO_LT@,$ECHO_LT,;t t
     9319+s,@ECHO_LD@,$ECHO_LD,;t t
     9320+s,@RULE_CC@,$RULE_CC,;t t
     9321+s,@SHOW_CC@,$SHOW_CC,;t t
     9322+s,@ECHO_CC@,$ECHO_CC,;t t
     9323 s,@ADAFLAGS@,$ADAFLAGS,;t t
     9324 s,@EXTRA_CFLAGS@,$EXTRA_CFLAGS,;t t
     9325 s,@ADA_TRACE@,$ADA_TRACE,;t t
     9326@@ -12109,7 +12840,8 @@
    84849327 s,@ADA_OBJECTS@,$ADA_OBJECTS,;t t
    84859328 s,@ADA_SHAREDLIB@,$ADA_SHAREDLIB,;t t
     
    84919334 s,@DFT_ARG_SUFFIX@,$DFT_ARG_SUFFIX,;t t
    84929335 s,@DFT_DEP_SUFFIX@,$DFT_DEP_SUFFIX,;t t
    8493 @@ -12237,7 +13020,7 @@
     9336@@ -12237,7 +12969,7 @@
    84949337   esac
    84959338 
    84969339   if test x"$ac_file" != x-; then
    84979340-    { echo "$as_me:12240: creating $ac_file" >&5
    8498 +    { echo "$as_me:13023: creating $ac_file" >&5
     9341+    { echo "$as_me:12972: creating $ac_file" >&5
    84999342 echo "$as_me: creating $ac_file" >&6;}
    85009343     rm -f "$ac_file"
    85019344   fi
    8502 @@ -12255,7 +13038,7 @@
     9345@@ -12255,7 +12987,7 @@
    85039346       -) echo $tmp/stdin ;;
    85049347       [\\/$]*)
    85059348          # Absolute (can't be DOS-style, as IFS=:)
    85069349-         test -f "$f" || { { echo "$as_me:12258: error: cannot find input file: $f" >&5
    8507 +         test -f "$f" || { { echo "$as_me:13041: error: cannot find input file: $f" >&5
     9350+         test -f "$f" || { { echo "$as_me:12990: error: cannot find input file: $f" >&5
    85089351 echo "$as_me: error: cannot find input file: $f" >&2;}
    85099352    { (exit 1); exit 1; }; }
    85109353          echo $f;;
    8511 @@ -12268,7 +13051,7 @@
     9354@@ -12268,7 +13000,7 @@
    85129355            echo $srcdir/$f
    85139356          else
    85149357            # /dev/null tree
    85159358-           { { echo "$as_me:12271: error: cannot find input file: $f" >&5
    8516 +           { { echo "$as_me:13054: error: cannot find input file: $f" >&5
     9359+           { { echo "$as_me:13003: error: cannot find input file: $f" >&5
    85179360 echo "$as_me: error: cannot find input file: $f" >&2;}
    85189361    { (exit 1); exit 1; }; }
    85199362          fi;;
    8520 @@ -12334,7 +13117,7 @@
     9363@@ -12334,7 +13066,7 @@
    85219364   * )   ac_file_in=$ac_file.in ;;
    85229365   esac
    85239366 
    85249367-  test x"$ac_file" != x- && { echo "$as_me:12337: creating $ac_file" >&5
    8525 +  test x"$ac_file" != x- && { echo "$as_me:13120: creating $ac_file" >&5
     9368+  test x"$ac_file" != x- && { echo "$as_me:13069: creating $ac_file" >&5
    85269369 echo "$as_me: creating $ac_file" >&6;}
    85279370 
    85289371   # First look for the input files in the build tree, otherwise in the
    8529 @@ -12345,7 +13128,7 @@
     9372@@ -12345,7 +13077,7 @@
    85309373       -) echo $tmp/stdin ;;
    85319374       [\\/$]*)
    85329375          # Absolute (can't be DOS-style, as IFS=:)
    85339376-         test -f "$f" || { { echo "$as_me:12348: error: cannot find input file: $f" >&5
    8534 +         test -f "$f" || { { echo "$as_me:13131: error: cannot find input file: $f" >&5
     9377+         test -f "$f" || { { echo "$as_me:13080: error: cannot find input file: $f" >&5
    85359378 echo "$as_me: error: cannot find input file: $f" >&2;}
    85369379    { (exit 1); exit 1; }; }
    85379380          echo $f;;
    8538 @@ -12358,7 +13141,7 @@
     9381@@ -12358,7 +13090,7 @@
    85399382            echo $srcdir/$f
    85409383          else
    85419384            # /dev/null tree
    85429385-           { { echo "$as_me:12361: error: cannot find input file: $f" >&5
    8543 +           { { echo "$as_me:13144: error: cannot find input file: $f" >&5
     9386+           { { echo "$as_me:13093: error: cannot find input file: $f" >&5
    85449387 echo "$as_me: error: cannot find input file: $f" >&2;}
    85459388    { (exit 1); exit 1; }; }
    85469389          fi;;
    8547 @@ -12416,7 +13199,7 @@
     9390@@ -12416,7 +13148,7 @@
    85489391   rm -f $tmp/in
    85499392   if test x"$ac_file" != x-; then
    85509393     if cmp -s $ac_file $tmp/config.h 2>/dev/null; then
    85519394-      { echo "$as_me:12419: $ac_file is unchanged" >&5
    8552 +      { echo "$as_me:13202: $ac_file is unchanged" >&5
     9395+      { echo "$as_me:13151: $ac_file is unchanged" >&5
    85539396 echo "$as_me: $ac_file is unchanged" >&6;}
    85549397     else
    85559398       ac_dir=`$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
    85569399diff -Naur ncurses-5.9.orig/Ada95/configure.in ncurses-5.9/Ada95/configure.in
    8557 --- ncurses-5.9.orig/Ada95/configure.in 2012-02-16 18:25:12.619808985 +0000
    8558 +++ ncurses-5.9/Ada95/configure.in      2012-02-16 18:25:13.179823762 +0000
     9400--- ncurses-5.9.orig/Ada95/configure.in 2012-08-25 19:57:59.379901042 +0000
     9401+++ ncurses-5.9/Ada95/configure.in      2012-08-25 19:58:01.333225137 +0000
    85599402@@ -1,5 +1,5 @@
    85609403 dnl***************************************************************************
     
    85699412 dnl
    85709413-dnl $Id: configure.in,v 1.30 2011/03/31 22:49:22 tom Exp $
    8571 +dnl $Id: configure.in,v 1.38 2012/01/22 00:50:42 tom Exp $
     9414+dnl $Id: configure.in,v 1.41 2012/05/05 20:54:52 tom Exp $
    85729415 dnl Process this file with autoconf to produce a configure script.
    85739416 dnl
     
    85779420 AC_PREREQ(2.13.20020210)
    85789421-AC_REVISION($Revision: 1.30 $)
    8579 +AC_REVISION($Revision: 1.38 $)
     9422+AC_REVISION($Revision: 1.41 $)
    85809423 AC_INIT(gen/gen.c)
    85819424 AC_CONFIG_HEADER(include/ncurses_cfg.h:include/ncurses_cfg.hin)
    85829425 
     9426@@ -54,7 +54,7 @@
     9427 CF_CFG_DEFAULTS
     9428 
     9429 ###    Checks for programs.
     9430-AC_PROG_CC
     9431+AC_PROG_CC(gnatgcc gcc cc)
     9432 CF_GCC_VERSION
     9433 
     9434 AC_PROG_CPP
    85839435@@ -75,28 +75,8 @@
    85849436 
     
    86329484 AC_MSG_CHECKING(if you want broken-linker support code)
    86339485 AC_ARG_ENABLE(broken_linker,
    8634 @@ -514,7 +490,7 @@
     9486@@ -394,18 +370,7 @@
     9487 CF_HELP_MESSAGE(Testing/development Options:)
     9488 
     9489 ###    use option --disable-echo to suppress full display compiling commands
     9490-AC_MSG_CHECKING(if you want to display full commands during build)
     9491-AC_ARG_ENABLE(echo,
     9492-       [  --enable-echo           build: display "compiling" commands (default)],
     9493-       [with_echo=$enableval],
     9494-       [with_echo=yes])
     9495-if test "$with_echo" = yes; then
     9496-       ECHO_LINK=
     9497-else
     9498-       ECHO_LINK='@ echo linking $@ ... ;'
     9499-fi
     9500-AC_MSG_RESULT($with_echo)
     9501-AC_SUBST(ECHO_LINK)
     9502+CF_DISABLE_ECHO
     9503 
     9504 ###    use option --enable-warnings to turn on all gcc warnings
     9505 AC_MSG_CHECKING(if you want to see compiler warnings)
     9506@@ -431,7 +396,6 @@
     9507 then
     9508        if test "$with_assertions" = no
     9509        then
     9510-               AC_DEFINE(NDEBUG)
     9511                CPPFLAGS="$CPPFLAGS -DNDEBUG"
     9512        else
     9513                CF_ADD_ADAFLAGS(-gnata)
     9514@@ -514,24 +478,13 @@
    86359515 fi
    86369516 
     
    86419521 dnl At the moment we support no other Ada95 compiler.
    86429522 if test "$cf_with_ada" != "no" ; then
    8643 @@ -556,8 +532,10 @@
     9523        CF_PROG_GNAT
     9524        if test "$cf_cv_prog_gnat_correct" = yes; then
     9525-
     9526-               # make ADAFLAGS consistent with CFLAGS
     9527-               case "$CFLAGS" in
     9528-               *-g*)
     9529-                       CF_ADD_ADAFLAGS(-g)
     9530-                       ;;
     9531-               esac
     9532-               case "$CFLAGS" in
     9533-               *-O*)
     9534-                       CF_ADD_ADAFLAGS(-O3)
     9535-                       ;;
     9536-               esac
     9537+               CF_FIXUP_ADAFLAGS
     9538 
     9539                CF_GNAT_GENERICS
     9540                CF_GNAT_SIGINT
     9541@@ -556,8 +509,10 @@
    86449542 ################################################################################
    86459543 
     
    86549552 ### Construct the list of include-directories to be generated
    86559553 CF_INCLUDE_DIRS
    8656 @@ -658,6 +636,7 @@
     9554@@ -656,8 +611,8 @@
     9555 AWK="$AWK"
     9556 DFT_ARG_SUFFIX="$DFT_ARG_SUFFIX"
    86579557 DFT_LWR_MODEL="$DFT_LWR_MODEL"
    8658  ECHO_LINK="$ECHO_LINK"
     9558-ECHO_LINK="$ECHO_LINK"
    86599559 LIB_NAME="$LIB_NAME"
    86609560+LIB_PREFIX="$LIB_PREFIX"
     
    86629562 LN_S="$LN_S"
    86639563 NCURSES_MAJOR="$NCURSES_MAJOR"
     9564diff -Naur ncurses-5.9.orig/Ada95/doc/Makefile.in ncurses-5.9/Ada95/doc/Makefile.in
     9565--- ncurses-5.9.orig/Ada95/doc/Makefile.in      2012-08-25 19:57:59.376567724 +0000
     9566+++ ncurses-5.9/Ada95/doc/Makefile.in   2012-08-25 19:58:02.286553964 +0000
     9567@@ -1,4 +1,4 @@
     9568-# $Id: Makefile.in,v 1.2 2011/03/26 19:26:17 tom Exp $
     9569+# $Id: Makefile.in,v 1.3 2012/08/11 21:31:56 tom Exp $
     9570 ##############################################################################
     9571 # Copyright (c) 2011 Free Software Foundation, Inc.                          #
     9572 #                                                                            #
     9573@@ -38,6 +38,7 @@
     9574 srcdir         = @srcdir@
     9575 prefix         = @prefix@
     9576 exec_prefix    = @exec_prefix@
     9577+datarootdir    = @datarootdir@
     9578 datadir                = @datadir@
     9579 mandir         = @mandir@
     9580 
    86649581diff -Naur ncurses-5.9.orig/Ada95/gen/Makefile.in ncurses-5.9/Ada95/gen/Makefile.in
    8665 --- ncurses-5.9.orig/Ada95/gen/Makefile.in      2012-02-16 18:25:12.619808985 +0000
    8666 +++ ncurses-5.9/Ada95/gen/Makefile.in   2012-02-16 18:25:12.907816584 +0000
     9582--- ncurses-5.9.orig/Ada95/gen/Makefile.in      2012-08-25 19:57:59.379901042 +0000
     9583+++ ncurses-5.9/Ada95/gen/Makefile.in   2012-08-25 19:58:01.003226698 +0000
     9584@@ -1,5 +1,5 @@
     9585 ##############################################################################
     9586-# Copyright (c) 1998-2010,2011 Free Software Foundation, Inc.                #
     9587+# Copyright (c) 1998-2011,2012 Free Software Foundation, Inc.                #
     9588 #                                                                            #
     9589 # Permission is hereby granted, free of charge, to any person obtaining a    #
     9590 # copy of this software and associated documentation files (the "Software"), #
    86679591@@ -28,7 +28,7 @@
    86689592 #
     
    86709594 #
    86719595-#  $Id: Makefile.in,v 1.74 2011/03/26 23:36:30 tom Exp $
    8672 +#  $Id: Makefile.in,v 1.75 2011/09/24 14:41:24 nix Exp $
     9596+#  $Id: Makefile.in,v 1.76 2012/03/17 16:45:38 tom Exp $
    86739597 #
    86749598 .SUFFIXES:
     
    86839607 RANLIB         = @RANLIB@
    86849608 
     9609@@ -179,7 +179,7 @@
     9610        -rm -f $(DESTDIR)$(bindir)/$(ADACURSES_CONFIG)
     9611 
     9612 $(PROG_GENERATE):  gen.o
     9613-       @ECHO_LINK@ $(LINK) $(CFLAGS_NORMAL) gen.o $(LD_FLAGS) -o $@
     9614+       @ECHO_LD@ $(LINK) $(CFLAGS_NORMAL) gen.o $(LD_FLAGS) -o $@
     9615 
     9616 gen.o: $(srcdir)/gen.c
     9617        $(HOST_CC) $(CFLAGS_NORMAL) -c -o $@ $(srcdir)/gen.c
    86859618@@ -411,7 +411,7 @@
    86869619        @mkdir -p $(HTML_DIR)
     
    86939626           h=`basename $$f` ;\
    86949627diff -Naur ncurses-5.9.orig/Ada95/gen/gen.c ncurses-5.9/Ada95/gen/gen.c
    8695 --- ncurses-5.9.orig/Ada95/gen/gen.c    2012-02-16 18:25:12.619808985 +0000
    8696 +++ ncurses-5.9/Ada95/gen/gen.c 2012-02-16 18:25:12.907816584 +0000
     9628--- ncurses-5.9.orig/Ada95/gen/gen.c    2012-08-25 19:57:59.379901042 +0000
     9629+++ ncurses-5.9/Ada95/gen/gen.c 2012-08-25 19:57:59.859898773 +0000
    86979630@@ -32,7 +32,7 @@
    86989631 
     
    87799712   printf("   --               different on your system.");
    87809713 }
     9714diff -Naur ncurses-5.9.orig/Ada95/samples/Makefile.in ncurses-5.9/Ada95/samples/Makefile.in
     9715--- ncurses-5.9.orig/Ada95/samples/Makefile.in  2012-08-25 19:57:59.376567724 +0000
     9716+++ ncurses-5.9/Ada95/samples/Makefile.in       2012-08-25 19:58:02.286553964 +0000
     9717@@ -28,7 +28,7 @@
     9718 #
     9719 #  Author:  Juergen Pfeifer, 1996
     9720 #
     9721-#  $Id: Makefile.in,v 1.46 2011/03/28 23:45:08 tom Exp $
     9722+#  $Id: Makefile.in,v 1.47 2012/08/11 21:31:56 tom Exp $
     9723 #
     9724 .SUFFIXES:
     9725 
     9726@@ -42,6 +42,7 @@
     9727 prefix         = @prefix@
     9728 exec_prefix    = @exec_prefix@
     9729 bindir         = @bindir@
     9730+datarootdir    = @datarootdir@
     9731 datadir                = @datadir@
     9732 libdir         = @libdir@
     9733 includedir     = @includedir@
    87819734diff -Naur ncurses-5.9.orig/Ada95/src/Makefile.in ncurses-5.9/Ada95/src/Makefile.in
    8782 --- ncurses-5.9.orig/Ada95/src/Makefile.in      2012-02-16 18:25:12.619808985 +0000
    8783 +++ ncurses-5.9/Ada95/src/Makefile.in   2012-02-16 18:25:12.907816584 +0000
     9735--- ncurses-5.9.orig/Ada95/src/Makefile.in      2012-08-25 19:57:59.383234360 +0000
     9736+++ ncurses-5.9/Ada95/src/Makefile.in   2012-08-25 19:57:59.859898773 +0000
    87849737@@ -28,7 +28,7 @@
    87859738 #
     
    88569809 install \
    88579810diff -Naur ncurses-5.9.orig/INSTALL ncurses-5.9/INSTALL
    8858 --- ncurses-5.9.orig/INSTALL    2012-02-16 18:25:12.635809407 +0000
    8859 +++ ncurses-5.9/INSTALL 2012-02-16 18:25:13.251825661 +0000
     9811--- ncurses-5.9.orig/INSTALL    2012-08-25 19:57:59.396567629 +0000
     9812+++ ncurses-5.9/INSTALL 2012-08-25 19:58:02.289887281 +0000
    88609813@@ -1,5 +1,5 @@
    88619814 -------------------------------------------------------------------------------
     
    88709823 -------------------------------------------------------------------------------
    88719824--- $Id: INSTALL,v 1.155 2011/03/31 08:27:24 tom Exp $
    8872 +-- $Id: INSTALL,v 1.163 2012/02/11 16:20:42 tom Exp $
     9825+-- $Id: INSTALL,v 1.166 2012/08/11 20:12:34 tom Exp $
    88739826 ---------------------------------------------------------------------
    88749827              How to install Ncurses/Terminfo on your system
     
    88959848                configure --with-ticlib --with-shared --disable-tic-depends
    88969849 
    8897 @@ -616,6 +617,12 @@
     9850@@ -555,6 +556,9 @@
     9851        library by reducing global and static variables.  This option is also
     9852        set if --with-pthread is used.
     9853 
     9854+       Enabling this option adds a "t" to the library names, except for the
     9855+       special case when --enable-weak-symbols is also used.
     9856+
     9857     --enable-rpath
     9858        Use rpath option when generating shared libraries, and (with some
     9859        restrictions) when linking the corresponding programs.  This originally
     9860@@ -595,6 +599,14 @@
     9861        reducing the need for juggling the global SP value with set_term() and
     9862        delscreen().
     9863 
     9864+    --enable-string-hacks
     9865+       Controls whether strlcat and strlcpy may be used.  The same issue
     9866+       applies to OpenBSD's warnings about snprintf, noting that this function
     9867+       is weakly standardized.
     9868+
     9869+       Aside from stifling these warnings, there is no functional improvement
     9870+       in ncurses.
     9871+
     9872     --enable-symlinks
     9873        If your system supports symbolic links, make tic use symbolic links
     9874        rather than hard links to save diskspace when writing aliases in the
     9875@@ -616,6 +628,12 @@
    88989876        match is found in the terminfo database.  See also the --enable-getcap
    88999877        and --enable-getcap-cache options.
     
    89089886        Turn on GCC compiler warnings.  There should be only a few.
    89099887 
    8910 @@ -824,7 +831,17 @@
     9888@@ -824,7 +842,17 @@
    89119889        NOTE: a few systems build shared libraries with fixed pathnames; this
    89129890        option probably will not work for those configurations.
     
    89279905        overrides all other library model specifications.  Note that libtool
    89289906        must already be installed, uses makefile rules dependent on GNU make,
    8929 @@ -904,6 +921,10 @@
     9907@@ -904,6 +932,10 @@
    89309908     --with-pkg-config=[DIR]
    89319909        Check for pkg-config, optionally specifying its path.
     
    89389916        Generate profile-libraries These are named by adding "_p" to the root,
    89399917        e.g., libncurses_p.a
    8940 @@ -1000,6 +1021,14 @@
     9918@@ -996,10 +1028,27 @@
     9919        library dependencies for tic and other programs built with the tic
     9920        library.
     9921 
     9922+    --with-tparm-arg[=XXX]
     9923+       Override the type used for tparm() arguments, which normally is a
     9924+       "long".  However the function must assume that its arguments can hold a
     9925+       pointer to char's which is not always workable for 64-bit platforms.  A
     9926+       better choice would be intptr_t, which was not available at the time
     9927+       tparm's interface was defined.
     9928+
     9929+       If the option is not given, this defaults to "long".
     9930+
     9931     --with-trace
    89419932        Configure the trace() function as part of the all models of the ncurses
    89429933        library.  Normally it is part of the debug (libncurses_g) library only.
     
    89539944        For testing, compile with debug option.
    89549945        This also sets the --disable-leaks option.
    8955 @@ -1024,6 +1053,8 @@
     9946@@ -1024,6 +1073,8 @@
    89569947        install as "ncurses.h" and modify the installed headers and manpages
    89579948        accordingly.
     
    89629953        XSI curses declares "bool" as part of the interface.  C++ also declares
    89639954        "bool".  Neither specifies the size and type of booleans, but both
    8964 @@ -1726,20 +1757,37 @@
     9955@@ -1726,20 +1777,37 @@
    89659956        By default, there are no entries on the fallback list.  After you have
    89669957        built the ncurses suite for the first time, you can change the list
     
    90059996        Any non-empty fallback list is const-ed and therefore lives in sharable
    90069997diff -Naur ncurses-5.9.orig/MANIFEST ncurses-5.9/MANIFEST
    9007 --- ncurses-5.9.orig/MANIFEST   2012-02-16 18:25:12.643809617 +0000
    9008 +++ ncurses-5.9/MANIFEST        2012-02-16 18:25:13.063820699 +0000
    9009 @@ -545,6 +545,7 @@
     9998--- ncurses-5.9.orig/MANIFEST   2012-08-25 19:57:59.429900806 +0000
     9999+++ ncurses-5.9/MANIFEST        2012-08-25 19:58:01.833222773 +0000
     10000@@ -545,6 +545,8 @@
    901010001 ./include/nc_alloc.h
    901110002 ./include/nc_mingw.h
    901210003 ./include/nc_panel.h
     10004+./include/nc_string.h
    901310005+./include/nc_termios.h
    901410006 ./include/nc_tparm.h
    901510007 ./include/ncurses_cfg.hin
    901610008 ./include/ncurses_defs
    9017 @@ -764,7 +765,6 @@
     10009@@ -764,7 +766,6 @@
    901810010 ./mk-0th.awk
    901910011 ./mk-1st.awk
     
    902310015 ./ncurses/Makefile.in
    902410016 ./ncurses/README
    9025 @@ -1022,6 +1022,7 @@
     10017@@ -867,6 +868,12 @@
     10018 ./ncurses/llib-lncursest
     10019 ./ncurses/llib-lncursestw
     10020 ./ncurses/llib-lncursesw
     10021+./ncurses/llib-ltic
     10022+./ncurses/llib-ltictw
     10023+./ncurses/llib-lticw
     10024+./ncurses/llib-ltinfo
     10025+./ncurses/llib-ltinfotw
     10026+./ncurses/llib-ltinfow
     10027 ./ncurses/modules
     10028 ./ncurses/tinfo/MKcaptab.awk
     10029 ./ncurses/tinfo/MKcaptab.sh
     10030@@ -970,6 +977,14 @@
     10031 ./ncurses/win32con/gettimeofday.c
     10032 ./ncurses/win32con/wcwidth.c
     10033 ./ncurses/win32con/win_driver.c
     10034+./package/debian/changelog
     10035+./package/debian/compat
     10036+./package/debian/control
     10037+./package/debian/copyright
     10038+./package/debian/rules
     10039+./package/debian/source/format
     10040+./package/debian/watch
     10041+./package/ncurses.spec
     10042 ./panel/Makefile.in
     10043 ./panel/headers
     10044 ./panel/llib-lpanel
     10045@@ -1022,6 +1037,7 @@
    902610046 ./test/cardfile.dat
    902710047 ./test/chgat.c
     
    903210052 ./test/configure.in
    903310053diff -Naur ncurses-5.9.orig/Makefile.in ncurses-5.9/Makefile.in
    9034 --- ncurses-5.9.orig/Makefile.in        2012-02-16 18:25:12.643809617 +0000
    9035 +++ ncurses-5.9/Makefile.in     2012-02-16 18:25:13.183823867 +0000
     10054--- ncurses-5.9.orig/Makefile.in        2012-08-25 19:57:59.419900852 +0000
     10055+++ ncurses-5.9/Makefile.in     2012-08-25 19:58:02.289887281 +0000
    903610056@@ -1,6 +1,6 @@
    903710057-# $Id: Makefile.in,v 1.30 2010/11/27 21:45:27 tom Exp $
    9038 +# $Id: Makefile.in,v 1.33 2012/01/21 23:54:30 tom Exp $
     10058+# $Id: Makefile.in,v 1.34 2012/08/11 21:41:19 tom Exp $
    903910059 ##############################################################################
    904010060-# Copyright (c) 1998-2008,2010 Free Software Foundation, Inc.                #
     
    905310073 @SET_MAKE@
    905410074 
    9055 @@ -87,12 +88,9 @@
     10075@@ -48,6 +49,7 @@
     10076 
     10077 prefix         = @prefix@
     10078 exec_prefix    = @exec_prefix@
     10079+datarootdir    = @datarootdir@
     10080 
     10081 bindir         = @bindir@
     10082 ticdir         = @TERMINFO@
     10083@@ -87,12 +89,9 @@
    905610084                fgrep NCURSES_VERSION $(includedir)/curses.h >/dev/null || \
    905710085                echo '** Will overwrite non-ncurses curses.h'
     
    906810096 # directories to visit.
    906910097diff -Naur ncurses-5.9.orig/NEWS ncurses-5.9/NEWS
    9070 --- ncurses-5.9.orig/NEWS       2012-02-16 18:25:12.639809512 +0000
    9071 +++ ncurses-5.9/NEWS    2012-02-16 18:25:13.255825766 +0000
     10098--- ncurses-5.9.orig/NEWS       2012-08-25 19:57:59.409900901 +0000
     10099+++ ncurses-5.9/NEWS    2012-08-25 19:58:02.303220551 +0000
    907210100@@ -1,5 +1,5 @@
    907310101 -------------------------------------------------------------------------------
     
    908210110 -------------------------------------------------------------------------------
    908310111--- $Id: NEWS,v 1.1682 2011/04/04 00:02:42 tom Exp $
    9084 +-- $Id: NEWS,v 1.1857 2012/02/11 23:39:31 tom Exp $
     10112+-- $Id: NEWS,v 1.1942 2012/08/11 21:30:05 tom Exp $
    908510113 -------------------------------------------------------------------------------
    908610114 
    908710115 This is a log of changes that ncurses has gone through since Zeyd started
    9088 @@ -45,6 +45,467 @@
     10116@@ -45,6 +45,731 @@
    908910117 Changes through 1.9.9e did not credit all contributions;
    909010118 it is not possible to add this information.
    909110119 
     10120+20120811
     10121+       + update autoconf patch to 2.52.20120811, adding --datarootdir
     10122+         (prompted by discussion with Erwin Waterlander).
     10123+       + improve description of --enable-reentrant option in README and the
     10124+         INSTALL file.
     10125+       + add nsterm-256color, make this the default nsterm -TD
     10126+       + remove bw from nsterm-bce, per testing with tack -TD
     10127+
     10128+20120804
     10129+       + update test/configure, adding check for tinfo library.
     10130+       + improve limit-checks for the getch fifo (report by Werner Fink).
     10131+       + fix a remaining mismatch between $with_echo and the symbols updated
     10132+         by CF_DISABLE_ECHO affecting parameters for mk-2nd.awk (report by
     10133+         Sven Joachim, cf:  20120317).
     10134+       + modify followup check for pkg-config's library directory in the
     10135+         --enable-pc-files option to validate syntax (report by Sven Joachim,
     10136+         cf: 20110716).
     10137+
     10138+20120728
     10139+       + correct path for ncurses_mingw.h in include/headers, in case build
     10140+         is done outside source-tree (patch by Roumen Petrov).
     10141+       + modify some older xterm entries to align with xterm source -TD
     10142+       + separate "xterm-old" alias from "xterm-r6" -TD
     10143+       + add E3 extended capability to xterm-basic and putty -TD
     10144+       + parenthesize parameters of other macros in curses.h -TD
     10145+       + parenthesize parameter of COLOR_PAIR and PAIR_NUMBER in curses.h
     10146+         in case it happens to be a comma-expression, etc.  (patch by Nick
     10147+         Black).
     10148+
     10149+20120721
     10150+       + improved form_request_by_name() and menu_request_by_name().
     10151+       + eliminate two fixed-size buffers in toe.c
     10152+       + extend use_tioctl() to have expected behavior when use_env(FALSE) and
     10153+         use_tioctl(TRUE) are called.
     10154+       + modify ncurses test-program, adding -E and -T options to demonstrate
     10155+         use_env() versus use_tioctl().
     10156+
     10157+20120714
     10158+       + add use_tioctl() function (adapted from patch by Werner Fink,
     10159+         Novell #769788):
     10160+
     10161+20120707
     10162+       + add ncurses_mingw.h to installed headers (prompted by patch by
     10163+         Juergen Pfeifer).
     10164+       + clarify return-codes from wgetch() in response to SIGWINCH (prompted
     10165+         by Novell #769788).
     10166+       + modify resizeterm() to always push a KEY_RESIZE onto the fifo, even
     10167+         if screensize is unchanged.  Modify _nc_update_screensize() to push a
     10168+         KEY_RESIZE if there was a SIGWINCH, even if it does not call
     10169+         resizeterm().  These changes eliminate the case where a SIGWINCH is
     10170+         received, but ERR returned from wgetch or wgetnstr because the screen
     10171+         dimensions did not change (Novell #769788).
     10172+
     10173+20120630
     10174+       + add --enable-interop to sample package scripts (suggested by Juergen
     10175+         Pfeifer).
     10176+       + update CF_PATH_SYNTAX macro, from mawk changes.
     10177+       + modify mk-0th.awk to allow for generating llib-ltic, etc., though
     10178+         some work is needed on cproto to work with lib_gen.c to update
     10179+         llib-lncurses.
     10180+       + remove redundant getenv() cal in database-iterator leftover from
     10181+         cleanup in 20120622 changes (report by Sven Joachim).
     10182+
     10183+20120622
     10184+       + add -d, -e and -q options to test/demo_terminfo and test/demo_termcap
     10185+       + fix caching of environment variables in database-iterator (patch by
     10186+         Philippe Troin, Redhat #831366).
     10187+
     10188+20120616
     10189+       + add configure check to distinguish clang from gcc to eliminate
     10190+         warnings about unused command-line parameters when compiler warnings
     10191+         are enabled.
     10192+       + improve behavior when updating terminfo entries which are hardlinked
     10193+         by allowing for the possibility that an alias has been repurposed to
     10194+         a new primary name.
     10195+       + fix some strict compiler warnings based on package scripts.
     10196+       + further fixes for configure check for working poll (Debian #676461).
     10197+
     10198+20120608
     10199+       + fix an uninitialized variable in -c/-n logic for infocmp changes
     10200+         (cf: 20120526).
     10201+       + corrected fix for building c++ binding with clang 3.0 (report/patch
     10202+         by Richard Yao, Gentoo #417613, cf: 20110409)
     10203+       + correct configure check for working poll, fixing the case where stdin
     10204+         is redirected, e.g., in rpm/dpkg builds (Debian #676461).
     10205+       + add rpm- and dpkg-scripts, to test those build-environments.
     10206+         The resulting packages are used only for testing.
     10207+
     10208+20120602
     10209+       + add kdch1 aka "Remove" to vt220 and vt220-8 entries -TD
     10210+       + add kdch1, etc., to qvt108 -TD
     10211+       + add dl1/il1 to some entries based on dl/il values -TD
     10212+       + add dl to simpleterm -TD
     10213+       + add consistency-checks in tic for insert-line vs delete-line
     10214+         controls, and insert/delete-char keys
     10215+       + correct no-leaks logic in infocmp when doing comparisons, fixing
     10216+         duplicate free of entries given via the command-line, and freeing
     10217+         entries loaded from the last-but-one of files specified on the
     10218+         command-line.
     10219+       + add kdch1 to wsvt25 entry from NetBSD CVS (reported by David Lord,
     10220+         analysis by Martin Husemann).
     10221+       + add cnorm/civis to wsvt25 entry from NetBSD CVS (report/analysis by
     10222+         Onno van der Linden).
     10223+
     10224+20120526
     10225+       + extend -c and -n options of infocmp to allow comparing more than two
     10226+         entries.
     10227+       + correct check in infocmp for number of terminal names when more than
     10228+         two are given.
     10229+       + correct typo in curs_threads.3x (report by Yanhui Shen on
     10230+         freebsd-hackers mailing list).
     10231+
     10232+20120512
     10233+       + corrected 'op' for bterm (report by Samuel Thibault) -TD
     10234+       + modify test/background.c to demonstrate a background character
     10235+         holding a colored ACS_HLINE.  The behavior differs from SVr4 due to
     10236+         the thick- and double-line extension (cf: 20091003).
     10237+       + modify handling of acs characters in PutAttrChar to avoid mapping an
     10238+         unmapped character to a space with A_ALTCHARSET set.
     10239+       + rewrite vt520 entry based on vt420 -TD
     10240+
     10241+20120505
     10242+       + remove p6 (bold) from opus3n1+ for consistency -TD
     10243+       + remove acs stuff from env230 per clues in Ingres termcap -TD
     10244+       + modify env230 sgr/sgr0 to match other capabilities -TD
     10245+       + modify smacs/rmacs in bq300-8 to match sgr/sgr0 -TD
     10246+       + make sgr for dku7202 agree with other caps -TD
     10247+       + make sgr for ibmpc agree with other caps -TD
     10248+       + make sgr for tek4107 agree with other caps -TD
     10249+       + make sgr for ndr9500 agree with other caps -TD
     10250+       + make sgr for sco-ansi agree with other caps -TD
     10251+       + make sgr for d410 agree with other caps -TD
     10252+       + make sgr for d210 agree with other caps -TD
     10253+       + make sgr for d470c, d470c-7b agree with other caps -TD
     10254+       + remove redundant AC_DEFINE for NDEBUG versus Makefile definition.
     10255+       + fix a back-link in _nc_delink_entry(), which is needed if ncurses is
     10256+         configured with --enable-termcap and --disable-getcap.
     10257+
     10258+20120428
     10259+       + fix some inconsistencies between vt320/vt420, e.g., cnorm/civis -TD
     10260+       + add eslok flag to dec+sl -TD
     10261+       + dec+sl applies to vt320 and up -TD
     10262+       + drop wsl width from xterm+sl -TD
     10263+       + reuse xterm+sl in putty and nsca-m -TD
     10264+       + add ansi+tabs to vt520 -TD
     10265+       + add ansi+enq to vt220-vt520 -TD
     10266+       + fix a compiler warning in example in ncurses-intro.doc (Paul Waring).
     10267+       + added paragraph in keyname manpage telling how extended capabilities
     10268+         are interpreted as key definitions.
     10269+       + modify tic's check of conflicting key definitions to include extended
     10270+         capability strings in addition to the existing check on predefined
     10271+         keys.
     10272+
     10273+20120421
     10274+       + improve cleanup of temporary files in tic using atexit().
     10275+       + add msgr to vt420, similar DEC vtXXX entries -TD
     10276+       + add several missing vt420 capabilities from vt220 -TD
     10277+       + factor out ansi+pp from several entries -TD
     10278+       + change xterm+sl and xterm+sl-twm to include only the status-line
     10279+         capabilities and not "use=xterm", making them more generally useful
     10280+         as building-blocks -TD
     10281+       + add dec+sl building block, as example -TD
     10282+
     10283+20120414
     10284+       + add XT to some terminfo entries to improve usefulness for other
     10285+         applications than screen, which would like to pretend that xterm's
     10286+         title is a status-line.  -TD
     10287+       + change use-clauses in ansi-mtabs, hp2626, and hp2622 based on review
     10288+         of ordering and overrides -TD
     10289+       + add consistency check in tic for screen's "XT" capability.
     10290+       + add section in terminfo.src summarizing the user-defined capabilities
     10291+         used in that file -TD
     10292+
     10293+20120407
     10294+       + fix an inconsistency between tic/infocmp "-x" option; tic omits all
     10295+         non-standard capabilities, while infocmp was ignoring only the user
     10296+         definable capabilities.
     10297+       + improve special case in tic parsing of description to allow it to be
     10298+         followed by terminfo capabilities.  Previously the description had to
     10299+         be the last field on an input line to allow tic to distinguish
     10300+         between termcap and terminfo format while still allowing commas to be
     10301+         embedded in the description.
     10302+       + correct variable name in gen_edit.sh which broke configurability of
     10303+         the --with-xterm-kbs option.
     10304+       + revert 2011-07-16 change to "linux" alias, return to "linux2.2" -TD
     10305+       + further amend 20110910 change, providing for configure-script
     10306+         override of the "linux" terminfo entry to install and changing the
     10307+         default for that to "linux2.2" (Debian #665959).
     10308+
     10309+20120331
     10310+       + update Ada95/configure to use CF_DISABLE_ECHO (cf: 20120317).
     10311+       + correct order of use-clauses in st-256color -TD
     10312+       + modify configure script to look for gnatgcc if the Ada95 binding
     10313+         is built, in preference to the default gcc/cc (suggested by
     10314+         Nicolas Boulenguez).
     10315+       + modify configure script to ensure that the same -On option used for
     10316+         the C compiler in CFLAGS is used for ADAFLAGS rather than simply
     10317+         using "-O3" (suggested by Nicolas Boulenguez)
     10318+
     10319+20120324
     10320+       + amend an old fix so that next_char() exits properly for empty files,
     10321+         e.g., from reading /dev/null (cf: 20080804).
     10322+       + modify tic so that it can read from the standard input, or from
     10323+         a character device.  Because tic uses seek's, this requires writing
     10324+         the data to a temporary file first (prompted by remark by Sven
     10325+         Joachim) (cf: 20000923).
     10326+
     10327+20120317
     10328+       + correct a check made in lib_napms.c, so that terminfo applications
     10329+         can again use napms() (cf: 20110604).
     10330+       + add a note in tic.h regarding required casts for ABSENT_BOOLEAN
     10331+         (cf: 20040327).
     10332+       + correct scripting for --disable-echo option in test/configure.
     10333+       + amend check for missing c++ compiler to work when no error is
     10334+         reported, and no variables set (cf: 20021206).
     10335+       + add/use configure macro CF_DISABLE_ECHO.
     10336+
     10337+20120310
     10338+       + fix some strict compiler warnings for abi6 and 64-bits.
     10339+       + use begin_va_copy/end_va_copy macros in lib_printw.c (cf: 20120303).
     10340+       + improve a limit-check in infocmp.c (Werner Fink):
     10341+
     10342+20120303
     10343+       + minor tidying of terminfo.tail, clarify reason for limitation
     10344+         regarding mapping of \0 to \200
     10345+       + minor improvement to _nc_copy_termtype(), using memcpy to replace
     10346+         loops.
     10347+       + fix no-leaks checking in test/demo_termcap.c to account for multiple
     10348+         calls to setupterm().
     10349+       + modified the libgpm change to show previous load as a problem in the
     10350+         debug-trace.
     10351+       > merge some patches from OpenSUSE rpm (Werner Fink):
     10352+       + ncurses-5.7-printw.dif, fixes for varargs handling in lib_printw.c
     10353+       + ncurses-5.7-gpm.dif, do not dlopen libgpm if already loaded by
     10354+         runtime linker
     10355+       + ncurses-5.6-fallback.dif, do not free arrays and strings from static
     10356+         fallback entries
     10357+
     10358+20120228
     10359+       + fix breakage in tic/infocmp from 20120225 (report by Werner Fink).
     10360+
     10361+20120225
     10362+       + modify configure script to allow creating dll's for MinGW when
     10363+         cross-compiling.
     10364+       + add --enable-string-hacks option to control whether strlcat and
     10365+         strlcpy may be used.  The same issue applies to OpenBSD's warnings
     10366+         about snprintf, noting that this function is weakly standardized.
     10367+       + add configure checks for strlcat, strlcpy and snprintf, to help
     10368+         reduce bogus warnings with OpenBSD builds.
     10369+       + build-fix for OpenBSD 4.9 to supply consistent intptr_t declaration
     10370+         (cf:20111231)
     10371+       + update config.guess, config.sub
     10372+
     10373+20120218
     10374+       + correct CF_ETIP_DEFINES configure macro, making it exit properly on
     10375+         the first success (patch by Pierre Labastie).
     10376+       + improve configure macro CF_MKSTEMP by moving existence-check for
     10377+         mkstemp out of the AC_TRY_RUN, to help with cross-compiles.
     10378+       + improve configure macro CF_FUNC_POLL from luit changes to detect
     10379+         broken implementations, e.g., with Mac OS X.
     10380+       + add configure option --with-tparm-arg
     10381+       + build-fix for MinGW cross-compiling, so that make_hash does not
     10382+         depend on TTY definition (cf: 20111008).
     10383+
    909210384+20120211
    909310385+       + make sgr for xterm-pcolor agree with other caps -TD
     
    955410846 
    955510847 20110402
    9556 @@ -155,7 +616,7 @@
     10848@@ -100,7 +825,7 @@
     10849        + modify configure script to provide value for HTML_DIR in
     10850          Ada95/gen/Makefile.in, which depends on whether the Ada95 binding is
     10851          distributed separately (report by Nicolas Boulenguez).
     10852-       + modify configure script to add -g and/or -O3 to ADAFLAGS if the
     10853+       + modify configure script to add "-g" and/or "-O3" to ADAFLAGS if the
     10854          CFLAGS for the build has these options.
     10855        + amend change from 20070324, to not add 1 to the result of getmaxx
     10856          and getmaxy in the Ada binding (report by Nicolas Boulenguez for
     10857@@ -155,7 +880,7 @@
    955710858 20110212
    955810859        + regenerated html manpages.
     
    956310864 20110205
    956410865        + add xterm-utf8 entry as a demo of the U8 feature -TD
    9565 @@ -219,7 +680,7 @@
     10866@@ -219,7 +944,7 @@
    956610867          version which works with termcap.
    956710868        + remove obsolete emacs "Local Variables" section from documentation
     
    957210873 
    957310874 20101128
    9574 @@ -294,8 +755,8 @@
     10875@@ -294,8 +1019,8 @@
    957510876          Sven Joachim).
    957610877        + add parameterized cursor-controls to linux-basic (report by Dae) -TD
     
    958310884          Joachim).
    958410885        + add a check in mk-dlls.sh.in to obtain the size of a pointer to
    9585 @@ -478,7 +939,7 @@
     10886@@ -478,7 +1203,7 @@
    958610887 20100417
    958710888        + modify _nc_capcmp() to work with cancelled strings.
     
    959210893          which adds rpath options for libraries in unusual places.
    959310894        + improve CF_RPATH_HACK_2 by checking if the rpath option for a given
    9594 @@ -8979,15 +9440,18 @@
     10895@@ -6530,7 +7255,7 @@
     10896          handling in lynx (reported by Kim DeVaughn).
     10897 
     10898 990306 pre-release
     10899-       + add -G option to tic and infocmp, to reverse the -g option.
     10900+       + add -G option to tic and infocmp, to reverse the "-g" option.
     10901        + recode functions in name_match.c to avoid use of strncpy, which
     10902          caused a 4-fold slowdown in tic (cf: 980530).
     10903        + correct a few warnings about sign-extension in recent changes.
     10904@@ -6901,7 +7626,7 @@
     10905          since that is a little more efficient.
     10906        + minor correction to infocmp to avoid displaying "difference" between
     10907          two capabilities that are rendered in equivalent forms.
     10908-       + add -g option to tic/infocmp to force character constants to be
     10909+       + add "-g" option to tic/infocmp to force character constants to be
     10910          displayed in quoted form.  Otherwise their decimal values are shown.
     10911        + modify setupterm so that cancelled strings are treated the same as
     10912          absent strings, cancelled and absent booleans false (does not affect
     10913@@ -8979,15 +9704,18 @@
    959510914        + correction to #317.
    959610915        > patch 317 (ESR):
     
    961510934          (lib_getch.c, lib_twait.c).
    961610935        + new function _nc_mvcur_resume()
    9617 @@ -9059,7 +9523,7 @@
     10936@@ -9059,12 +9787,12 @@
    961810937        + corrected typo in dtterm description.
    961910938        > patch 313 (ESR):
     
    962410943 960810 - snapshot
    962510944        + correct nl()/nonl() to work as per SVr4 & XSI.
    9626 @@ -9073,7 +9537,8 @@
     10945        + minor fixes to ncurses.c (use 'noraw()', mvscanw return-code)
     10946-       + refine configure-test for -g option (Tim Mooney).
     10947+       + refine configure-test for "-g" option (Tim Mooney).
     10948        + correct interaction between O_BLANK and NEW_LINE request in form
     10949          library (Juergen Pfeifer)
     10950 
     10951@@ -9073,7 +9801,8 @@
    962710952        > patch 312 (ESR):
    962810953          correct terminfo.src corrupted by #310
     
    963410959 960803 - snapshot
    963510960        + corrected tparm to handle capability strings without explicit pop
    9636 @@ -9083,7 +9548,7 @@
     10961@@ -9083,7 +9812,7 @@
    963710962        > patch 310 (ESR):
    963810963        + documentation and prototyping errors for has_color, immedok and idcok
     
    964310968 960730
    964410969        + eliminate quoted includes in ncurses subdirectory, ensure config.h
    9645 @@ -9095,7 +9560,7 @@
     10970@@ -9095,7 +9824,7 @@
    964610971        + call cbreak() in initscr(), as per XSI & SVr4.
    964710972        + turn off hardware echo in initscr() as per XSI & SVr4
     
    965210977        + add more symbols to infocmp.
    965310978 
    9654 @@ -9114,6 +9579,7 @@
     10979@@ -9114,6 +9843,7 @@
    965510980        > patch 308 (ESR):
    965610981        + terminfo changes (9.3.8)
     
    966010985 960713 - snapshot
    966110986        + always check for <sys/bsdtypes.h> since ISC needs it to declare
    9662 @@ -9122,9 +9588,19 @@
     10987@@ -9122,9 +9852,19 @@
    966310988          by Juergen Pfeifer, Mike Long)
    966410989        + add LOCAL_LDFLAGS2 symbol (Juergen Pfeifer)
     
    968111006 960707
    968211007        + rollback ESR's #305 change to terminfo.src (it breaks existing
    9683 @@ -9139,7 +9615,6 @@
     11008@@ -9139,7 +9879,6 @@
    968411009        + make lib_vidattr.c more readable using macros.
    968511010        + filter out rmul, rmso that conflict with sgr0 when reading terminal
     
    968911014          (reported by Zeyd).
    969011015        + modify man-page install for BSDI to install preformatted .0 files
    9691 @@ -9152,6 +9627,12 @@
     11016@@ -9152,6 +9891,12 @@
    969211017        + disable scrollok during the ncurses 'p' test; if it is enabled the
    969311018          stdscr will scroll when putting the box-corners in the lower-right
     
    970211027 960629 - snapshot
    970311028        + check return code of _nc_mvcur_scrolln() in _nc_scroll_optimize() for
    9704 @@ -9234,6 +9715,7 @@
     11029@@ -9234,6 +9979,7 @@
    970511030        + better fix for nvi refresh-bug (Rick Marshall)
    970611031        + fix for bug in handling of interrupted keystroke waits,
     
    971011035 960601 - snapshot
    971111036        + auto-configure man-page compression-format and renames for Debian.
    9712 @@ -9263,6 +9745,9 @@
     11037@@ -9248,7 +9994,7 @@
     11038        + enhancement to the control over the new PC-style soft key format.
     11039          allow caller now to select whether or not one wants to have
     11040          the index-line; see curs_slk.3x for documentation (Juergen Pfeifer).
     11041-       + typos, don't use inline with -g (Philippe De Muyter)
     11042+       + typos, don't use inline with "-g" (Philippe De Muyter)
     11043        + fixes for menus & wattr-, slk-functions (Juergen Pfeifer)
     11044 
     11045 960526 - snapshot
     11046@@ -9263,6 +10009,9 @@
    971311047        + include sys/types.h in case stdlib.h does not declare size_t.
    971411048        + fixes for makefile (Tim Mooney)
     
    972011054 960518 - snapshot
    972111055        + revised ncurses.c panner test, let pad abut all 4 sides of screen.
    9722 @@ -9275,6 +9760,8 @@
     11056@@ -9275,6 +10024,8 @@
    972311057          confusion, and made this check for the /usr/lib/terminfo pre-existing
    972411058          directory.
     
    972911063        + mods to tracing, especially for ACS chars.
    973011064        + corrected off-by-one in IDCtransform.
    9731 @@ -9294,13 +9781,21 @@
     11065@@ -9294,13 +10045,21 @@
    973211066        > patches 297, 298 (ESR):
    973311067        + implement TERMINFO_DIRS, and -o option of tic
     
    975411088 
    975511089 960504 - snapshot
    9756 @@ -9326,11 +9821,20 @@
     11090@@ -9326,11 +10085,20 @@
    975711091        + make TIOCGWINSZ configure test less stringent, in case user
    975811092          configures via terminal that cannot get screen size.
     
    977811112 960418 - snapshot
    977911113        + use autoconf 2.9
    9780 @@ -9338,10 +9842,22 @@
     11114@@ -9338,10 +10106,22 @@
    978111115          definitions via <termios.h>, modified macros in lib_raw.c to avoid
    978211116          K&R-style substitution)
     
    980511139        + fixes for NeXT, ISC and HPUX auto-configure
    980611140diff -Naur ncurses-5.9.orig/README ncurses-5.9/README
    9807 --- ncurses-5.9.orig/README     2012-02-16 18:25:12.643809617 +0000
    9808 +++ ncurses-5.9/README  2012-02-16 18:25:12.915816795 +0000
     11141--- ncurses-5.9.orig/README     2012-08-25 19:57:59.409900901 +0000
     11142+++ ncurses-5.9/README  2012-08-25 19:58:02.303220551 +0000
    980911143@@ -1,5 +1,5 @@
    981011144 -------------------------------------------------------------------------------
    981111145--- Copyright (c) 1998-2004,2006 Free Software Foundation, Inc.               --
    9812 +-- Copyright (c) 1998-2006,2011 Free Software Foundation, Inc.               --
     11146+-- Copyright (c) 1998-2011,2012 Free Software Foundation, Inc.               --
    981311147 --                                                                           --
    981411148 -- Permission is hereby granted, free of charge, to any person obtaining a   --
     
    981911153 -------------------------------------------------------------------------------
    982011154--- $Id: README,v 1.23 2006/04/22 22:19:37 tom Exp $
    9821 +-- $Id: README,v 1.24 2011/08/20 16:47:16 tom Exp $
     11155+-- $Id: README,v 1.25 2012/08/11 20:11:26 tom Exp $
    982211156 -------------------------------------------------------------------------------
    982311157                README file for the ncurses package
    982411158 
    9825 @@ -153,8 +153,10 @@
     11159@@ -78,6 +78,10 @@
     11160 library interfaces are not binary-compatible with the non-wide-character
     11161 version.
     11162 
     11163+If you configure using the --enable-reentrant option, a "t" is appended to the
     11164+library names (e.g., libncursest.a) and the resulting libraries have a
     11165+different binary interface which makes the ncurses interface more "opaque".
     11166+
     11167 The ncurses libraries implement the curses API.  The panel, menu and forms
     11168 libraries implement clones of the SVr4 panel, menu and forms APIs.  The source
     11169 code for these lives in the `ncurses', `panel', `menu', and `form' directories
     11170@@ -122,8 +126,9 @@
     11171        tic             -- terminfo source to binary compiler
     11172        infocmp         -- terminfo binary to source decompiler/comparator
     11173        clear           -- emits clear-screen for current terminal
     11174+       tabs            -- set tabs on a terminal
     11175        tput            -- shell-script access to terminal capabilities.
     11176-       toe             -- table of entries utility
     11177+       toe             -- table of entries utility
     11178        tset            -- terminal-initialization utility
     11179 
     11180 The first two (tic and infocmp) are used for manipulating terminfo
     11181@@ -153,8 +158,10 @@
    982611182        configuration scripts, porting, mods to adhere to XSI Curses in the
    982711183        areas of background color, terminal modes.  Also memory leak testing,
     
    983711193        Beginning with release 4.2, ncurses is distributed under an MIT-style
    983811194diff -Naur ncurses-5.9.orig/README.MinGW ncurses-5.9/README.MinGW
    9839 --- ncurses-5.9.orig/README.MinGW       2012-02-16 18:25:12.623809091 +0000
    9840 +++ ncurses-5.9/README.MinGW    2012-02-16 18:25:13.187823972 +0000
     11195--- ncurses-5.9.orig/README.MinGW       2012-08-25 19:57:59.419900852 +0000
     11196+++ ncurses-5.9/README.MinGW    2012-08-25 19:58:00.359896408 +0000
    984111197@@ -1,5 +1,5 @@
    984211198 -------------------------------------------------------------------------------
     
    998611342 
    998711343diff -Naur ncurses-5.9.orig/aclocal.m4 ncurses-5.9/aclocal.m4
    9988 --- ncurses-5.9.orig/aclocal.m4 2012-02-16 18:25:12.627809197 +0000
    9989 +++ ncurses-5.9/aclocal.m4      2012-02-16 18:25:13.187823972 +0000
     11344--- ncurses-5.9.orig/aclocal.m4 2012-08-25 19:57:59.429900806 +0000
     11345+++ ncurses-5.9/aclocal.m4      2012-08-25 19:58:02.309887187 +0000
    999011346@@ -1,5 +1,5 @@
    999111347 dnl***************************************************************************
     
    1000011356 dnl
    1000111357-dnl $Id: aclocal.m4,v 1.553 2011/03/31 23:35:38 tom Exp $
    10002 +dnl $Id: aclocal.m4,v 1.604 2012/01/22 00:30:35 tom Exp $
     11358+dnl $Id: aclocal.m4,v 1.621 2012/08/11 23:36:44 tom Exp $
    1000311359 dnl Macros used in NCURSES auto-configuration script.
    1000411360 dnl
     
    1016611522 dnl ---------------------------------------------------------------------------
    1016711523 dnl CF_CHECK_CACHE version: 11 updated: 2008/03/23 14:45:59
    10168 @@ -908,7 +975,28 @@
     11524@@ -908,7 +975,61 @@
    1016911525 fi
    1017011526 ])])dnl
     
    1019211548+])dnl
    1019311549+dnl ---------------------------------------------------------------------------
     11550+dnl CF_CLANG_COMPILER version: 1 updated: 2012/06/16 14:55:39
     11551+dnl -----------------
     11552+dnl Check if the given compiler is really clang.  clang's C driver defines
     11553+dnl __GNUC__ (fooling the configure script into setting $GCC to yes) but does
     11554+dnl not ignore some gcc options.
     11555+dnl
     11556+dnl This macro should be run "soon" after AC_PROG_CC or AC_PROG_CPLUSPLUS, to
     11557+dnl ensure that it is not mistaken for gcc/g++.  It is normally invoked from
     11558+dnl the wrappers for gcc and g++ warnings.
     11559+dnl
     11560+dnl $1 = GCC (default) or GXX
     11561+dnl $2 = INTEL_COMPILER (default) or INTEL_CPLUSPLUS
     11562+dnl $3 = CFLAGS (default) or CXXFLAGS
     11563+AC_DEFUN([CF_CLANG_COMPILER],[
     11564+ifelse([$2],,CLANG_COMPILER,[$2])=no
     11565+
     11566+if test "$ifelse([$1],,[$1],GCC)" = yes ; then
     11567+       AC_MSG_CHECKING(if this is really Clang ifelse([$1],GXX,C++,C) compiler)
     11568+       cf_save_CFLAGS="$ifelse([$3],,CFLAGS,[$3])"
     11569+       ifelse([$3],,CFLAGS,[$3])="$ifelse([$3],,CFLAGS,[$3]) -Qunused-arguments"
     11570+       AC_TRY_COMPILE([],[
     11571+#ifdef __clang__
     11572+#else
     11573+make an error
     11574+#endif
     11575+],[ifelse([$2],,CLANG_COMPILER,[$2])=yes
     11576+cf_save_CFLAGS="$cf_save_CFLAGS -Qunused-arguments"
     11577+],[])
     11578+       ifelse([$3],,CFLAGS,[$3])="$cf_save_CFLAGS"
     11579+       AC_MSG_RESULT($ifelse([$2],,CLANG_COMPILER,[$2]))
     11580+fi
     11581+])
     11582+dnl ---------------------------------------------------------------------------
    1019411583+dnl CF_CPP_PARAM_INIT version: 5 updated: 2011/12/03 16:54:03
    1019511584 dnl -----------------
    1019611585 dnl Check if the C++ compiler accepts duplicate parameter initialization.  This
    1019711586 dnl is a late feature for the standard and is not in some recent compilers
    10198 @@ -932,7 +1020,7 @@
     11587@@ -932,7 +1053,7 @@
    1019911588 {
    1020011589        value = x;
     
    1020511594        [cf_cv_cpp_param_init=yes],
    1020611595        [cf_cv_cpp_param_init=no],
    10207 @@ -999,6 +1087,54 @@
     11596@@ -999,7 +1120,55 @@
    1020811597 test "$cf_cv_cpp_static_cast" = yes && AC_DEFINE(CPP_HAS_STATIC_CAST)
    1020911598 ])dnl
    1021011599 dnl ---------------------------------------------------------------------------
     11600-dnl CF_C_INLINE version: 3 updated: 2010/05/01 15:14:41
    1021111601+dnl CF_CXX_AR_FLAGS version: 1 updated: 2011/10/29 08:35:34
    1021211602+dnl ---------------
     
    1025711647+])dnl
    1025811648+dnl ---------------------------------------------------------------------------
    10259  dnl CF_C_INLINE version: 3 updated: 2010/05/01 15:14:41
     11649+dnl CF_C_INLINE version: 4 updated: 2012/06/16 14:55:39
    1026011650 dnl -----------
    1026111651 dnl Check if the C compiler supports "inline".
    10262 @@ -1123,6 +1259,31 @@
     11652 dnl $1 is the name of a shell variable to set if inline is supported
     11653@@ -1012,6 +1181,9 @@
     11654   if test "$INTEL_COMPILER" = yes
     11655   then
     11656     :
     11657+  elif test "$CLANG_COMPILER" = yes
     11658+  then
     11659+    :
     11660   elif test "$GCC" = yes
     11661   then
     11662     AC_CACHE_CHECK(if $CC supports options to tune inlining,cf_cv_gcc_inline,[
     11663@@ -1057,6 +1229,43 @@
     11664 AC_SUBST(DIRS_TO_MAKE)
     11665 ])dnl
     11666 dnl ---------------------------------------------------------------------------
     11667+dnl CF_DISABLE_ECHO version: 11 updated: 2009/12/13 13:16:57
     11668+dnl ---------------
     11669+dnl You can always use "make -n" to see the actual options, but it's hard to
     11670+dnl pick out/analyze warning messages when the compile-line is long.
     11671+dnl
     11672+dnl Sets:
     11673+dnl    ECHO_LT - symbol to control if libtool is verbose
     11674+dnl    ECHO_LD - symbol to prefix "cc -o" lines
     11675+dnl    RULE_CC - symbol to put before implicit "cc -c" lines (e.g., .c.o)
     11676+dnl    SHOW_CC - symbol to put before explicit "cc -c" lines
     11677+dnl    ECHO_CC - symbol to put before any "cc" line
     11678+dnl
     11679+AC_DEFUN([CF_DISABLE_ECHO],[
     11680+AC_MSG_CHECKING(if you want to see long compiling messages)
     11681+CF_ARG_DISABLE(echo,
     11682+       [  --disable-echo          display "compiling" commands],
     11683+       [
     11684+    ECHO_LT='--silent'
     11685+    ECHO_LD='@echo linking [$]@;'
     11686+    RULE_CC='@echo compiling [$]<'
     11687+    SHOW_CC='@echo compiling [$]@'
     11688+    ECHO_CC='@'
     11689+],[
     11690+    ECHO_LT=''
     11691+    ECHO_LD=''
     11692+    RULE_CC=''
     11693+    SHOW_CC=''
     11694+    ECHO_CC=''
     11695+])
     11696+AC_MSG_RESULT($enableval)
     11697+AC_SUBST(ECHO_LT)
     11698+AC_SUBST(ECHO_LD)
     11699+AC_SUBST(RULE_CC)
     11700+AC_SUBST(SHOW_CC)
     11701+AC_SUBST(ECHO_CC)
     11702+])dnl
     11703+dnl ---------------------------------------------------------------------------
     11704 dnl CF_DISABLE_LEAKS version: 6 updated: 2010/07/23 04:14:32
     11705 dnl ----------------
     11706 dnl Combine no-leak checks with the libraries or tools that are used for the
     11707@@ -1123,6 +1332,30 @@
    1026311708 fi
    1026411709 ])
    1026511710 dnl ---------------------------------------------------------------------------
    10266 +dnl CF_ENABLE_PC_FILES version: 7 updated: 2011/12/10 18:58:47
     11711+dnl CF_ENABLE_PC_FILES version: 9 updated: 2012/08/04 13:59:54
    1026711712+dnl ------------------
    1026811713+dnl This is the "--enable-pc-files" option, which is available if there is a
     
    1027311718+
    1027411719+if test "$PKG_CONFIG" != none ; then
    10275 +       if test -n "$PKG_CONFIG_LIBDIR" && test -d "$PKG_CONFIG_LIBDIR" ; then
    10276 +               AC_MSG_CHECKING(if we should install .pc files for $PKG_CONFIG)
    10277 +               AC_ARG_ENABLE(pc-files,
    10278 +                       [  --enable-pc-files       generate and install .pc files for pkg-config],
    10279 +                       [enable_pc_files=$enableval],
    10280 +                       [enable_pc_files=no])
    10281 +               AC_MSG_RESULT($enable_pc_files)
    10282 +       elif test -z "$PKG_CONFIG_LIBDIR" || test "$PKG_CONFIG_LIBDIR" != no; then
    10283 +               enable_pc_files=no
    10284 +               AC_MSG_WARN(did not find $PKG_CONFIG library)
     11720+       AC_MSG_CHECKING(if we should install .pc files for $PKG_CONFIG)
     11721+       AC_ARG_ENABLE(pc-files,
     11722+               [  --enable-pc-files       generate and install .pc files for pkg-config],
     11723+               [enable_pc_files=$enableval],
     11724+               [enable_pc_files=no])
     11725+       AC_MSG_RESULT($enable_pc_files)
     11726+       if test "$enable_pc_files" != no
     11727+       then
     11728+               CF_PATH_SYNTAX(PKG_CONFIG_LIBDIR)
    1028511729+       fi
    1028611730+else
     
    1029211736 dnl ---------------
    1029311737 dnl Check if the rpath option should be used, setting cache variable
    10294 @@ -1145,7 +1306,7 @@
     11738@@ -1137,6 +1370,37 @@
     11739 AC_MSG_RESULT($cf_cv_enable_rpath)
     11740 ])dnl
     11741 dnl ---------------------------------------------------------------------------
     11742+dnl CF_ENABLE_STRING_HACKS version: 1 updated: 2012/02/25 06:33:21
     11743+dnl ----------------------
     11744+dnl On a few platforms, the compiler and/or loader nags with untruthful
     11745+dnl comments stating that "most" uses of strcat/strcpy/sprintf are incorrect,
     11746+dnl and implying that most uses of the recommended alternatives are correct.
     11747+dnl
     11748+dnl Factually speaking, no one has actually counted the number of uses of these
     11749+dnl functions versus the total of incorrect uses.  Samples of a few thousand
     11750+dnl instances are meaningless compared to the hundreds of millions of lines of
     11751+dnl existing C code.
     11752+dnl
     11753+dnl strlcat/strlcpy are (as of 2012) non-standard, and are available on some
     11754+dnl platforms, in implementations of varying quality.  Likewise, snprintf is
     11755+dnl standard - but evolved through phases, and older implementations are likely
     11756+dnl to yield surprising results, as documented in manpages on various systems.
     11757+AC_DEFUN([CF_ENABLE_STRING_HACKS],
     11758+[
     11759+AC_MSG_CHECKING(if you want to work around bogus compiler/loader warnings)
     11760+AC_ARG_ENABLE(string-hacks,
     11761+       [  --enable-string-hacks  work around bogus compiler/loader warnings],
     11762+       [with_string_hacks=$enableval],
     11763+       [with_string_hacks=no])
     11764+AC_MSG_RESULT($with_string_hacks)
     11765+
     11766+if test "x$with_string_hacks" = "xyes"; then
     11767+       AC_DEFINE(USE_STRING_HACKS)
     11768+       AC_MSG_WARN(enabling string-hacks to work around bogus compiler/loader warnings)
     11769+       AC_CHECK_FUNCS( strlcat strlcpy snprintf )
     11770+fi
     11771+])dnl
     11772+dnl ---------------------------------------------------------------------------
     11773 dnl CF_ERRNO version: 5 updated: 1997/11/30 12:44:39
     11774 dnl --------
     11775 dnl Check if 'errno' is declared in <errno.h>
     11776@@ -1145,7 +1409,7 @@
    1029511777 CF_CHECK_ERRNO(errno)
    1029611778 ])dnl
    1029711779 dnl ---------------------------------------------------------------------------
    1029811780-dnl CF_ETIP_DEFINES version: 3 updated: 2003/03/22 19:13:43
    10299 +dnl CF_ETIP_DEFINES version: 4 updated: 2011/12/03 16:54:03
     11781+dnl CF_ETIP_DEFINES version: 5 updated: 2012/02/18 17:51:07
    1030011782 dnl ---------------
    1030111783 dnl Test for conflicting definitions of exception in gcc 2.8.0, etc., between
    1030211784 dnl math.h and builtin.h, only for ncurses
    10303 @@ -1154,11 +1315,17 @@
     11785@@ -1154,11 +1418,17 @@
    1030411786 AC_MSG_CHECKING(for special defines needed for etip.h)
    1030511787 cf_save_CXXFLAGS="$CXXFLAGS"
     
    1032011802        test -n "$cf_excp" && CXXFLAGS="$CXXFLAGS -DETIP_NEEDS_${cf_excp}"
    1032111803 AC_TRY_COMPILE([
    10322 @@ -1769,6 +1936,29 @@
     11804@@ -1167,7 +1437,7 @@
     11805        test -n "$cf_math" && AC_DEFINE_UNQUOTED(ETIP_NEEDS_${cf_math})
     11806        test -n "$cf_excp" && AC_DEFINE_UNQUOTED(ETIP_NEEDS_${cf_excp})
     11807        cf_result="$cf_math $cf_excp"
     11808-       break
     11809+       break 2
     11810 ],[])
     11811 done
     11812 done
     11813@@ -1305,6 +1575,25 @@
     11814 fi
     11815 ])dnl
     11816 dnl ---------------------------------------------------------------------------
     11817+dnl CF_FIXUP_ADAFLAGS version: 1 updated: 2012/03/31 18:48:10
     11818+dnl -----------------
     11819+dnl make ADAFLAGS consistent with CFLAGS
     11820+AC_DEFUN([CF_FIXUP_ADAFLAGS],[
     11821+       AC_MSG_CHECKING(optimization options for ADAFLAGS)
     11822+       case "$CFLAGS" in
     11823+       *-g*)
     11824+               CF_ADD_ADAFLAGS(-g)
     11825+               ;;
     11826+       esac
     11827+       case "$CFLAGS" in
     11828+       *-O*)
     11829+               cf_O_flag=`echo "$CFLAGS" |sed -e 's/^.*-O/-O/' -e 's/[[        ]].*//'`
     11830+               CF_ADD_ADAFLAGS($cf_O_flag)
     11831+               ;;
     11832+       esac
     11833+       AC_MSG_RESULT($ADAFLAGS)
     11834+])dnl
     11835+dnl ---------------------------------------------------------------------------
     11836 dnl CF_FUNC_DLSYM version: 2 updated: 2010/05/29 16:31:02
     11837 dnl -------------
     11838 dnl Test for dlsym() and related functions, as well as libdl.
     11839@@ -1433,14 +1722,17 @@
     11840 ])
     11841 ])dnl
     11842 dnl ---------------------------------------------------------------------------
     11843-dnl CF_FUNC_POLL version: 4 updated: 2006/12/16 12:33:30
     11844+dnl CF_FUNC_POLL version: 7 updated: 2012/06/09 16:22:17
     11845 dnl ------------
     11846 dnl See if the poll function really works.  Some platforms have poll(), but
     11847 dnl it does not work for terminals or files.
     11848 AC_DEFUN([CF_FUNC_POLL],[
     11849 AC_CACHE_CHECK(if poll really works,cf_cv_working_poll,[
     11850 AC_TRY_RUN([
     11851+#include <stdlib.h>
     11852 #include <stdio.h>
     11853+#include <unistd.h>
     11854+#include <fcntl.h>
     11855 #ifdef HAVE_POLL_H
     11856 #include <poll.h>
     11857 #else
     11858@@ -1450,11 +1742,34 @@
     11859        struct pollfd myfds;
     11860        int ret;
     11861 
     11862-       myfds.fd = 0;
     11863+       /* check for Darwin bug with respect to "devices" */
     11864+       myfds.fd = open("/dev/null", 1);        /* O_WRONLY */
     11865+       if (myfds.fd < 0)
     11866+               myfds.fd = 0;
     11867        myfds.events = POLLIN;
     11868+       myfds.revents = 0;
     11869 
     11870        ret = poll(&myfds, 1, 100);
     11871-       ${cf_cv_main_return:-return}(ret != 0);
     11872+
     11873+       if (ret < 0 || (myfds.revents & POLLNVAL)) {
     11874+               ret = -1;
     11875+       } else {
     11876+               int fd = 0;
     11877+               if (!isatty(fd)) {
     11878+                       fd = open("/dev/tty", 2);       /* O_RDWR */
     11879+               }
     11880+
     11881+               if (fd >= 0) {
     11882+                       /* also check with standard input */
     11883+                       myfds.fd = fd;
     11884+                       myfds.events = POLLIN;
     11885+                       myfds.revents = 0;
     11886+                       ret = poll(&myfds, 1, 100);
     11887+               } else {
     11888+                       ret = -1;
     11889+               }
     11890+       }
     11891+       ${cf_cv_main_return:-return}(ret < 0);
     11892 }],
     11893        [cf_cv_working_poll=yes],
     11894        [cf_cv_working_poll=no],
     11895@@ -1660,7 +1975,7 @@
     11896 fi
     11897 ])dnl
     11898 dnl ---------------------------------------------------------------------------
     11899-dnl CF_GCC_WARNINGS version: 27 updated: 2010/10/23 15:52:32
     11900+dnl CF_GCC_WARNINGS version: 29 updated: 2012/06/16 14:55:39
     11901 dnl ---------------
     11902 dnl Check if the compiler supports useful warning options.  There's a few that
     11903 dnl we don't use, simply because they're too noisy:
     11904@@ -1683,6 +1998,7 @@
     11905 [
     11906 AC_REQUIRE([CF_GCC_VERSION])
     11907 CF_INTEL_COMPILER(GCC,INTEL_COMPILER,CFLAGS)
     11908+CF_CLANG_COMPILER(GCC,CLANG_COMPILER,CFLAGS)
     11909 
     11910 cat > conftest.$ac_ext <<EOF
     11911 #line __oline__ "${as_me:-configure}"
     11912@@ -1758,6 +2074,13 @@
     11913                                        continue;;
     11914                                esac
     11915                                ;;
     11916+                       Wpointer-arith) #(vi
     11917+                               case $GCC_VERSION in
     11918+                               [[12]].*)
     11919+                                       CF_VERBOSE(feature is broken in gcc $GCC_VERSION)
     11920+                                       continue;;
     11921+                               esac
     11922+                               ;;
     11923                        esac
     11924                        EXTRA_CFLAGS="$EXTRA_CFLAGS -$cf_opt"
     11925                fi
     11926@@ -1769,6 +2092,29 @@
    1032311927 AC_SUBST(EXTRA_CFLAGS)
    1032411928 ])dnl
     
    1035011954 dnl ----------------
    1035111955 AC_DEFUN([CF_GNAT_GENERICS],
    10352 @@ -2040,7 +2230,7 @@
     11956@@ -2040,7 +2386,7 @@
    1035311957 rm -rf conftest* *~conftest*
    1035411958 ])dnl
     
    1035911963 dnl Verify version of GNAT.
    1036011964 AC_DEFUN([CF_GNAT_VERSION],
    10361 @@ -2052,7 +2242,7 @@
     11965@@ -2052,7 +2398,7 @@
    1036211966 AC_MSG_RESULT($cf_gnat_version)
    1036311967 
     
    1036811972        ;;
    1036911973 *)
    10370 @@ -2581,7 +2771,7 @@
     11974@@ -2136,21 +2482,21 @@
     11975 fi
     11976 ])dnl
     11977 dnl ---------------------------------------------------------------------------
     11978-dnl CF_GXX_VERSION version: 6 updated: 2010/10/23 15:44:18
     11979+dnl CF_GXX_VERSION version: 7 updated: 2012/06/16 14:55:39
     11980 dnl --------------
     11981 dnl Check for version of g++
     11982 AC_DEFUN([CF_GXX_VERSION],[
     11983 AC_REQUIRE([AC_PROG_CPP])
     11984 GXX_VERSION=none
     11985 if test "$GXX" = yes; then
     11986-       AC_MSG_CHECKING(version of g++)
     11987+       AC_MSG_CHECKING(version of ${CXX:-g++})
     11988        GXX_VERSION="`${CXX:-g++} --version| sed -e '2,$d' -e 's/^.*(GCC) //' -e 's/^[[^0-9.]]*//' -e 's/[[^0-9.]].*//'`"
     11989        test -z "$GXX_VERSION" && GXX_VERSION=unknown
     11990        AC_MSG_RESULT($GXX_VERSION)
     11991 fi
     11992 ])dnl
     11993 dnl ---------------------------------------------------------------------------
     11994-dnl CF_GXX_WARNINGS version: 6 updated: 2010/08/14 18:25:37
     11995+dnl CF_GXX_WARNINGS version: 7 updated: 2012/06/16 14:55:39
     11996 dnl ---------------
     11997 dnl Check if the compiler supports useful warning options.
     11998 dnl
     11999@@ -2173,6 +2519,7 @@
     12000 [
     12001 
     12002 CF_INTEL_COMPILER(GXX,INTEL_CPLUSPLUS,CXXFLAGS)
     12003+CF_CLANG_COMPILER(GXX,CLANG_CPLUSPLUS,CXXFLAGS)
     12004 
     12005 AC_REQUIRE([CF_GXX_VERSION])
     12006 
     12007@@ -2581,7 +2928,7 @@
    1037112008 ])
    1037212009 ])
     
    1037712014 dnl Check for compiler/linker flags used to temporarily force usage of static
    1037812015 dnl libraries.  This depends on the compiler and platform.  Use this to help
    10379 @@ -2602,7 +2792,7 @@
     12016@@ -2602,7 +2949,7 @@
    1038012017     esac
    1038112018 else
     
    1038612023                LDFLAGS_SHARED=-bdynamic
    1038712024                ;;
    10388 @@ -2652,7 +2842,17 @@
     12025@@ -2652,7 +2999,17 @@
    1038912026 int cf_ldflags_static(FILE *fp);
    1039012027 ],[
     
    1040512042        rm -f libconftest.*
    1040612043        LIBS="$cf_save_LIBS"
    10407 @@ -2673,7 +2873,7 @@
     12044@@ -2673,7 +3030,7 @@
    1040812045 AC_SUBST(LDFLAGS_SHARED)
    1040912046 ])
     
    1041412051 dnl For the given system and compiler, find the compiler flags to pass to the
    1041512052 dnl loader to use the "rpath" feature.
    10416 @@ -2694,10 +2894,10 @@
     12053@@ -2694,10 +3051,10 @@
    1041712054 linux*|gnu*|k*bsd*-gnu) #(vi
    1041812055        LD_RPATH_OPT="-Wl,-rpath,"
     
    1042712064        ;;
    1042812065 netbsd*) #(vi
    10429 @@ -2756,11 +2956,11 @@
     12066@@ -2756,11 +3113,11 @@
    1043012067 $1="$cf_library_path_list [$]$1"
    1043112068 ])dnl
     
    1044112078        case $cf_cv_system_name in #(vi
    1044212079        OS/2*|os2*) #(vi
    10443 @@ -2773,7 +2973,7 @@
     12080@@ -2773,7 +3130,7 @@
    1044412081        AC_SUBST(LIB_PREFIX)
    1044512082 ])dnl
    1044612083 dnl ---------------------------------------------------------------------------
    1044712084-dnl CF_LIB_RULES version: 61 updated: 2010/10/23 16:10:30
    10448 +dnl CF_LIB_RULES version: 63 updated: 2012/01/21 19:28:10
     12085+dnl CF_LIB_RULES version: 65 updated: 2012/06/30 17:25:25
    1044912086 dnl ------------
    1045012087 dnl Append definitions and rules for the given models to the subdirectory
    1045112088 dnl Makefiles, and the recursion rule for the top-level Makefile.  If the
    10452 @@ -2788,7 +2988,7 @@
     12089@@ -2788,13 +3145,15 @@
    1045312090 dnl    lib<name>.so.<maj>.<minor>
    1045412091 AC_DEFUN([CF_LIB_RULES],
     
    1045812095 AC_REQUIRE([CF_SUBST_NCURSES_VERSION])
    1045912096 
    10460  if test $cf_cv_shlib_version = cygdll ; then
    10461 @@ -3010,6 +3210,7 @@
     12097-if test $cf_cv_shlib_version = cygdll ; then
     12098+case $cf_cv_shlib_version in #(vi
     12099+cygdll|mingw)
     12100        TINFO_NAME=$TINFO_ARG_SUFFIX
     12101        TINFO_SUFFIX=.dll
     12102-fi
     12103+       ;;
     12104+esac
     12105 
     12106 if test -n "$TINFO_SUFFIX" ; then
     12107        case $TINFO_SUFFIX in
     12108@@ -2880,11 +3239,18 @@
     12109                        # cygwin needs import library, and has unique naming convention
     12110                        # use autodetected ${cf_prefix} for import lib and static lib, but
     12111                        # use 'cyg' prefix for shared lib.
     12112-                       if test $cf_cv_shlib_version = cygdll ; then
     12113+                       case $cf_cv_shlib_version in #(vi
     12114+                       cygdll) #(vi
     12115                                cf_cygsuf=`echo "$cf_suffix" | sed -e 's/\.dll/\${ABI_VERSION}.dll/'`
     12116                                LIBS_TO_MAKE="$LIBS_TO_MAKE ../lib/cyg${cf_dir}${cf_cygsuf}"
     12117                                continue
     12118-                       fi
     12119+                               ;;
     12120+                       mingw)
     12121+                               cf_cygsuf=`echo "$cf_suffix" | sed -e 's/\.dll/\${ABI_VERSION}.dll/'`
     12122+                               LIBS_TO_MAKE="$LIBS_TO_MAKE ../lib/lib${cf_dir}${cf_cygsuf}"
     12123+                               continue
     12124+                               ;;
     12125+                       esac
     12126                        fi
     12127                        LIBS_TO_MAKE="$LIBS_TO_MAKE ../lib/${cf_prefix}${cf_dir}${cf_suffix}"
     12128                done
     12129@@ -2928,7 +3294,7 @@
     12130                mv $cf_dir/Makefile.out $cf_dir/Makefile
     12131 
     12132                $AWK -f $srcdir/mk-0th.awk \
     12133-                       libname="${cf_dir}${LIB_SUFFIX}" subsets="$LIB_SUBSETS" \
     12134+                       libname="${cf_dir}${LIB_SUFFIX}" subsets="$LIB_SUBSETS" ticlib="$TICS_LIB_SUFFIX" termlib="$TINFO_LIB_SUFFIX" \
     12135                        $srcdir/$cf_dir/modules >>$cf_dir/Makefile
     12136 
     12137                for cf_subset in $cf_subsets
     12138@@ -3010,6 +3376,7 @@
    1046212139                                prefix=$cf_prefix \
    1046312140                                suffix=$cf_suffix \
     
    1046712144                                TermlibRoot=$TINFO_NAME \
    1046812145                                TermlibSuffix=$TINFO_SUFFIX \
    10469 @@ -3292,7 +3493,7 @@
     12146@@ -3292,7 +3659,7 @@
    1047012147 ])
    1047112148 ])
    1047212149 dnl ---------------------------------------------------------------------------
    1047312150-dnl CF_LIB_SUFFIX version: 16 updated: 2008/12/27 12:30:03
    10474 +dnl CF_LIB_SUFFIX version: 17 updated: 2011/07/02 15:36:04
     12151+dnl CF_LIB_SUFFIX version: 18 updated: 2012/02/25 15:20:07
    1047512152 dnl -------------
    1047612153 dnl Compute the library file-suffix from the given model name
    1047712154 dnl $1 = model name
    10478 @@ -3321,7 +3522,7 @@
     12155@@ -3321,11 +3688,11 @@
    1047912156                ;;
    1048012157        shared) #(vi
     
    1048512162                        $3=[$]$2
    1048612163                        ;;
    10487 @@ -3799,7 +4000,7 @@
     12164-               cygwin*) #(vi
     12165+               cygwin*|mingw*) #(vi
     12166                        $2='.dll'
     12167                        $3='.dll.a'
     12168                        ;;
     12169@@ -3799,7 +4166,7 @@
    1048812170 AC_MSG_RESULT($MANPAGE_TBL)
    1048912171 ])dnl
    1049012172 dnl ---------------------------------------------------------------------------
    1049112173-dnl CF_MAN_PAGES version: 39 updated: 2010/10/23 15:44:18
    10492 +dnl CF_MAN_PAGES version: 40 updated: 2011/09/10 16:20:21
     12174+dnl CF_MAN_PAGES version: 41 updated: 2012/08/11 19:35:44
    1049312175 dnl ------------
    1049412176 dnl Try to determine if the man-pages on the system are compressed, and if
    1049512177 dnl so, what format is used.  Use this information to construct a script that
    10496 @@ -3949,7 +4150,9 @@
     12178@@ -3856,6 +4223,7 @@
     12179 # this script is generated by the configure-script CF_MAN_PAGES macro.
     12180 
     12181 prefix="$cf_prefix"
     12182+datarootdir="$datarootdir"
     12183 datadir="$datadir"
     12184 
     12185 NCURSES_MAJOR="$NCURSES_MAJOR"
     12186@@ -3949,7 +4317,9 @@
    1049712187 
    1049812188 if test "$MANPAGE_ALIASES" != no ; then
     
    1050512195 fi
    1050612196 
    10507 @@ -3995,6 +4198,13 @@
     12197@@ -3995,6 +4365,13 @@
    1050812198 fi
    1050912199 CF_EOF
     
    1051912209 cat >>$cf_edit_man <<CF_EOF
    1052012210        sed -e "/\#[    ]*include/s,curses.h,ncurses.h," < \$TMP >\$TMP.out
    10521 @@ -4376,7 +4586,7 @@
     12211@@ -4184,7 +4561,7 @@
     12212 test "$cf_cv_mixedcase" = yes && AC_DEFINE(MIXEDCASE_FILENAMES)
     12213 ])dnl
     12214 dnl ---------------------------------------------------------------------------
     12215-dnl CF_MKSTEMP version: 7 updated: 2010/08/14 18:25:37
     12216+dnl CF_MKSTEMP version: 8 updated: 2012/02/13 20:34:56
     12217 dnl ----------
     12218 dnl Check for a working mkstemp.  This creates two files, checks that they are
     12219 dnl successfully created and distinct (AmigaOS apparently fails on the last).
     12220@@ -4226,9 +4603,11 @@
     12221 }
     12222 ],[cf_cv_func_mkstemp=yes
     12223 ],[cf_cv_func_mkstemp=no
     12224-],[AC_CHECK_FUNC(mkstemp)
     12225-])
     12226+],[cf_cv_func_mkstemp=maybe])
     12227 ])
     12228+if test "x$cf_cv_func_mkstemp" = xmaybe ; then
     12229+       AC_CHECK_FUNC(mkstemp)
     12230+fi
     12231 if test "x$cf_cv_func_mkstemp" = xyes || test "x$ac_cv_func_mkstemp" = xyes ; then
     12232        AC_DEFINE(HAVE_MKSTEMP)
     12233 fi
     12234@@ -4339,7 +4718,7 @@
     12235        AC_SUBST(PATH_SEPARATOR)
     12236 ])dnl
     12237 dnl ---------------------------------------------------------------------------
     12238-dnl CF_PATH_SYNTAX version: 13 updated: 2010/05/26 05:38:42
     12239+dnl CF_PATH_SYNTAX version: 14 updated: 2012/06/19 20:58:54
     12240 dnl --------------
     12241 dnl Check the argument to see that it looks like a pathname.  Rewrite it if it
     12242 dnl begins with one of the prefix/exec_prefix variables, and then again if the
     12243@@ -4359,7 +4738,7 @@
     12244   ;;
     12245 .[[a-zA-Z]]:[[\\/]]*) #(vi OS/2 EMX
     12246   ;;
     12247-.\[$]{*prefix}*) #(vi
     12248+.\[$]{*prefix}*|.\[$]{*dir}*) #(vi
     12249   eval $1="[$]$1"
     12250   case ".[$]$1" in #(vi
     12251   .NONE/*)
     12252@@ -4376,7 +4755,7 @@
    1052212253 esac
    1052312254 ])dnl
     
    1052812259 dnl Check for the package-config program, unless disabled by command-line.
    1052912260 AC_DEFUN([CF_PKG_CONFIG],
    10530 @@ -4393,7 +4603,9 @@
     12261@@ -4393,7 +4772,9 @@
    1053112262        PKG_CONFIG=none
    1053212263        ;;
     
    1053912270 *)
    1054012271        PKG_CONFIG=$withval
    10541 @@ -4658,7 +4870,7 @@
     12272@@ -4658,7 +5039,7 @@
    1054212273 test -n "$PROG_EXT" && AC_DEFINE_UNQUOTED(PROG_EXT,"$PROG_EXT")
    1054312274 ])dnl
     
    1054812279 dnl Check for gnatmake, ensure that it is complete.
    1054912280 AC_DEFUN([CF_PROG_GNAT],[
    10550 @@ -4666,6 +4878,7 @@
     12281@@ -4666,6 +5047,7 @@
    1055112282 AC_CHECK_PROG(gnat_exists, $cf_ada_make, yes, no)
    1055212283 if test "$ac_cv_prog_gnat_exists" = no; then
     
    1055612287    CF_GNAT_VERSION
    1055712288    AC_CHECK_PROG(M4_exists, m4, yes, no)
    10558 @@ -4709,7 +4922,7 @@
     12289@@ -4709,7 +5091,7 @@
    1055912290 esac
    1056012291 ])dnl
     
    1056512296 dnl Check for ldconfig, needed to fixup shared libraries that would be built
    1056612297 dnl and then used in the install.
    10567 @@ -4718,7 +4931,7 @@
     12298@@ -4718,7 +5100,7 @@
    1056812299   LDCONFIG=:
    1056912300 else
     
    1057412305   ;;
    1057512306 *) LDPATH=$PATH:/sbin:/usr/sbin
    10576 @@ -4759,7 +4972,7 @@
     12307@@ -4759,7 +5141,7 @@
    1057712308 test "$cf_prog_ln_sf" = yes && LN_S="$LN_S -f"
    1057812309 ])dnl
     
    1058312314 dnl Attempt to determine if we've got one of the flavors of regular-expression
    1058412315 dnl code that we can support.
    10585 @@ -4771,7 +4984,7 @@
     12316@@ -4771,7 +5153,7 @@
    1058612317 cf_regex_libs="regex re"
    1058712318 case $host_os in #(vi
     
    1059212323 esac
    1059312324 
    10594 @@ -4984,7 +5197,7 @@
     12325@@ -4984,7 +5366,7 @@
    1059512326 AC_SUBST(EXTRA_LDFLAGS)
    1059612327 ])dnl
    1059712328 dnl ---------------------------------------------------------------------------
    1059812329-dnl CF_SHARED_OPTS version: 64 updated: 2010/06/05 16:51:16
    10599 +dnl CF_SHARED_OPTS version: 69 updated: 2011/07/30 19:31:39
     12330+dnl CF_SHARED_OPTS version: 70 updated: 2012/02/25 15:20:07
    1060012331 dnl --------------
    1060112332 dnl --------------
    1060212333 dnl Attempt to determine the appropriate CC/LD options for creating a shared
    10603 @@ -5059,10 +5272,14 @@
     12334@@ -5059,10 +5441,14 @@
    1060412335        cf_cv_shlib_version_infix=no
    1060512336 
     
    1061812349                ;;
    1061912350        beos*) #(vi
    10620 @@ -5115,9 +5332,19 @@
     12351@@ -5115,9 +5501,19 @@
    1062112352                # readonly to exploit a quirk in the memory manager.
    1062212353                INSTALL_LIB="-m 555"
     
    1063912370                # tested with IRIX 5.2 and 'cc'.
    1064012371                if test "$GCC" != yes; then
    10641 @@ -5134,18 +5361,18 @@
     12372@@ -5134,18 +5530,39 @@
    1064212373                        LOCAL_LDFLAGS2="$LOCAL_LDFLAGS"
    1064312374                fi
     
    1065012381                ;;
    1065112382-       openbsd[[2-9]].*) #(vi
     12383+       mingw*) #(vi
     12384+               cf_cv_shlib_version=mingw
     12385+               cf_cv_shlib_version_infix=mingw
     12386+               CC_SHARED_OPTS=
     12387+               MK_SHARED_LIB='sh ../mk_shared_lib.sh [$]@ [$]{CC} [$]{CFLAGS}'
     12388+               #MK_SHARED_LIB='${CC} ${CFLAGS} -mdll -Wl,-soname,'$cf_cv_shared_soname',-stats -o $[@]'
     12389+               #MK_SHARED_LIB='${DLLTOOL} --export-all-symbols --output-exp --output-lib $[@]'
     12390+               cat >mk_shared_lib.sh <<-CF_EOF
     12391+               #!/bin/sh
     12392+               SHARED_LIB=\[$]1
     12393+               IMPORT_LIB=\`echo "\[$]1" | sed -e 's/[[0-9]]*\.dll[$]/.dll.a/'\`
     12394+               shift
     12395+               cat <<-EOF
     12396+               Linking shared library
     12397+               ** SHARED_LIB \[$]SHARED_LIB
     12398+               ** IMPORT_LIB \[$]IMPORT_LIB
     12399+EOF
     12400+               exec \[$]* -shared -Wl,--out-implib=../lib/\[$]{IMPORT_LIB} -Wl,--export-all-symbols -o ../lib/\[$]{SHARED_LIB}
     12401+CF_EOF
     12402+               chmod +x mk_shared_lib.sh
     12403+               ;;
    1065212404+       openbsd[[2-9]].*|mirbsd*) #(vi
    1065312405                if test "$DFT_LWR_MODEL" = "shared" ; then
     
    1066112413                CC_SHARED_OPTS="$CC_SHARED_OPTS -DPIC"
    1066212414                CF_SHARED_SONAME
    10663 @@ -5156,12 +5383,12 @@
     12415@@ -5156,12 +5573,12 @@
    1066412416                MK_SHARED_LIB='${LD} -Bshareable -o $[@]'
    1066512417                test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=rel
     
    1067712429                CF_SHARED_SONAME
    1067812430                MK_SHARED_LIB='${LD} -shared -Bshareable -soname=`basename $[@]` -o $[@]'
    10679 @@ -5171,7 +5398,7 @@
     12431@@ -5171,7 +5588,7 @@
    1068012432                if test "$DFT_LWR_MODEL" = "shared" && test "$cf_cv_enable_rpath" = yes ; then
    1068112433                        LOCAL_LDFLAGS="${cf_ld_rpath_opt}\$(LOCAL_LIBDIR)"
     
    1068612438                        if test -f /usr/libexec/ld.elf_so; then
    1068712439                                cf_cv_shlib_version=abi
    10688 @@ -5276,9 +5503,9 @@
     12440@@ -5276,9 +5693,12 @@
    1068912441                ;;
    1069012442        esac
     
    1069612448+       test -n "$cf_ld_rpath_opt" && MK_SHARED_LIB="$MK_SHARED_LIB $cf_ld_rpath_opt\${RPATH_LIST}"
    1069712449+       test -z "$RPATH_LIST" && RPATH_LIST="\${libdir}"
     12450+
     12451+       CF_VERBOSE(CC_SHARED_OPTS: $CC_SHARED_OPTS)
     12452+       CF_VERBOSE(MK_SHARED_LIB:  $MK_SHARED_LIB)
    1069812453 
    1069912454        AC_SUBST(CC_SHARED_OPTS)
    1070012455        AC_SUBST(LD_RPATH_OPT)
    10701 @@ -5290,6 +5517,7 @@
     12456@@ -5290,6 +5710,7 @@
    1070212457        AC_SUBST(LOCAL_LDFLAGS)
    1070312458        AC_SUBST(LOCAL_LDFLAGS2)
     
    1070712462 dnl ---------------------------------------------------------------------------
    1070812463 dnl CF_SHARED_SONAME version: 3 updated: 2008/09/08 18:34:43
    10709 @@ -5474,7 +5702,7 @@
     12464@@ -5474,7 +5895,7 @@
    1071012465 fi
    1071112466 ])dnl
     
    1071612471 dnl For each parameter, test if the source-directory exists, and if it contains
    1071712472 dnl a 'modules' file.  If so, add to the list $cf_cv_src_modules which we'll
    10718 @@ -5497,6 +5725,7 @@
     12473@@ -5497,6 +5918,7 @@
    1071912474        TEST_ARG2="-l${LIB_NAME}${DFT_ARG_SUFFIX} $TEST_ARG2"
    1072012475 fi
     
    1072412479 for cf_dir in $1
    1072512480 do
    10726 @@ -5535,6 +5764,7 @@
     12481@@ -5535,6 +5957,7 @@
    1072712482                                TEST_ARGS="-l${cf_dir}${DFT_ARG_SUFFIX} $TEST_ARGS"
    1072812483                                TEST_ARG2="-l${cf_dir}${DFT_ARG_SUFFIX} $TEST_ARG2"
     
    1073212487        fi
    1073312488 done
    10734 @@ -5562,10 +5792,18 @@
     12489@@ -5562,10 +5985,18 @@
    1073512490        SRC_SUBDIRS="$SRC_SUBDIRS test"
    1073612491 fi
     
    1075312508        ADA_SUBDIRS="gen src"
    1075412509        if test "x$cf_with_tests" != "xno" ; then
    10755 @@ -5624,13 +5862,13 @@
     12510@@ -5624,13 +6055,13 @@
    1075612511 AC_DEFUN([CF_STRIP_G_OPT],
    1075712512 [$1=`echo ${$1} | sed -e 's%-g %%' -e 's%-g$%%'`])dnl
     
    1077012525 AC_MSG_CHECKING(whether sigaction needs _POSIX_SOURCE)
    1077112526 AC_TRY_COMPILE([
    10772 @@ -5645,22 +5883,24 @@
     12527@@ -5645,22 +6076,24 @@
    1077312528 #include <signal.h>],
    1077412529        [struct sigaction act],
     
    1079812553        AC_CHECK_HEADERS( sys/termio.h )
    1079912554 fi
    10800 @@ -5680,7 +5920,7 @@
     12555@@ -5680,7 +6113,7 @@
    1080112556 #include <termios.h>],
    1080212557                        [struct termios foo; int x = foo.c_iflag],
     
    1080712562        AC_MSG_RESULT($termios_bad)
    1080812563        fi
    10809 @@ -5798,6 +6038,45 @@
     12564@@ -5798,6 +6231,45 @@
    1081012565 AC_SUBST(top_builddir)
    1081112566 ])dnl
     
    1085312608 dnl ----------------
    1085412609 dnl Determine the type we should use for chtype (and attr_t, which is treated
    10855 @@ -6182,7 +6461,7 @@
     12610@@ -6182,7 +6654,7 @@
    1085612611 fi
    1085712612 ])
     
    1086212617 dnl Provide a configure option to incorporate libtool.  Define several useful
    1086312618 dnl symbols for the makefile rules.
    10864 @@ -6258,7 +6537,7 @@
     12619@@ -6258,7 +6730,7 @@
    1086512620                AC_MSG_ERROR(Cannot find libtool)
    1086612621        fi
     
    1087112626        LIB_SUFFIX=.la
    1087212627        LIB_CLEAN='${LIBTOOL} --mode=clean'
    10873 @@ -6283,7 +6562,7 @@
     12628@@ -6283,7 +6755,7 @@
    1087412629        # special hack to add -no-undefined (which libtool should do for itself)
    1087512630        LT_UNDEF=
     
    1088012635                ;;
    1088112636        esac
    10882 @@ -6323,6 +6602,32 @@
     12637@@ -6323,6 +6795,32 @@
    1088312638 
    1088412639 ])dnl
     
    1091312668 dnl ------------
    1091412669 dnl Wrapper for AC_ARG_WITH to ensure that user supplies a pathname, not just
    10915 @@ -6386,7 +6691,50 @@
     12670@@ -6386,7 +6884,50 @@
    1091612671 
    1091712672 ])dnl
     
    1096512720 dnl Check for POSIX thread library.
    1096612721 AC_DEFUN([CF_WITH_PTHREAD],
    10967 @@ -6402,23 +6750,28 @@
     12722@@ -6402,23 +6943,28 @@
    1096812723     AC_CHECK_HEADER(pthread.h,[
    1096912724         AC_DEFINE(HAVE_PTHREADS_H)
     
    1100712762 fi
    1100812763 ])
    11009 @@ -6486,7 +6839,7 @@
     12764@@ -6486,7 +7032,7 @@
    1101012765        [USE_VALGRIND])
    1101112766 ])dnl
     
    1101612771 dnl Try to get _XOPEN_SOURCE defined properly that we can use POSIX functions,
    1101712772 dnl or adapt to the vendor's definitions to get equivalent functionality,
    11018 @@ -6502,7 +6855,7 @@
     12773@@ -6502,7 +7048,7 @@
    1101912774 cf_xopen_source=
    1102012775 
     
    1102512780        ;;
    1102612781 cygwin) #(vi
    11027 @@ -6513,6 +6866,7 @@
     12782@@ -6513,6 +7059,7 @@
    1102812783        ;;
    1102912784 darwin*) #(vi
     
    1103312788 freebsd*|dragonfly*) #(vi
    1103412789        # 5.x headers associate
    11035 @@ -6530,15 +6884,23 @@
     12790@@ -6530,15 +7077,23 @@
    1103612791        ;;
    1103712792 irix[[56]].*) #(vi
     
    1105912814 openbsd*) #(vi
    1106012815        # setting _XOPEN_SOURCE breaks xterm on OpenBSD 2.8, is not needed for ncursesw
    11061 @@ -6552,36 +6914,11 @@
     12816@@ -6552,36 +7107,11 @@
    1106212817 sco*) #(vi
    1106312818        # setting _XOPEN_SOURCE breaks Lynx on SCO Unix / OpenServer
     
    1109812853        ;;
    1109912854 esac
    11100 @@ -6589,4 +6926,33 @@
     12855@@ -6589,4 +7119,33 @@
    1110112856 if test -n "$cf_xopen_source" ; then
    1110212857        CF_ADD_CFLAGS($cf_xopen_source)
     
    1113312888 ])
    1113412889diff -Naur ncurses-5.9.orig/announce.html.in ncurses-5.9/announce.html.in
    11135 --- ncurses-5.9.orig/announce.html.in   2012-02-16 18:25:12.639809512 +0000
    11136 +++ ncurses-5.9/announce.html.in        2012-02-16 18:25:12.919816901 +0000
     12890--- ncurses-5.9.orig/announce.html.in   2012-08-25 19:57:59.399900947 +0000
     12891+++ ncurses-5.9/announce.html.in        2012-08-25 19:57:59.893231947 +0000
    1113712892@@ -1,6 +1,6 @@
    1113812893 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
     
    1122012975   <ul>
    1122112976diff -Naur ncurses-5.9.orig/c++/Makefile.in ncurses-5.9/c++/Makefile.in
    11222 --- ncurses-5.9.orig/c++/Makefile.in    2012-02-16 18:25:12.643809617 +0000
    11223 +++ ncurses-5.9/c++/Makefile.in 2012-02-16 18:25:12.919816901 +0000
     12977--- ncurses-5.9.orig/c++/Makefile.in    2012-08-25 19:57:59.426567488 +0000
     12978+++ ncurses-5.9/c++/Makefile.in 2012-08-25 19:58:01.013226651 +0000
    1122412979@@ -1,6 +1,6 @@
    1122512980-# $Id: Makefile.in,v 1.93 2010/11/27 21:45:27 tom Exp $
    11226 +# $Id: Makefile.in,v 1.95 2011/07/30 22:52:07 tom Exp $
     12981+# $Id: Makefile.in,v 1.96 2012/03/17 16:45:38 tom Exp $
    1122712982 ##############################################################################
    1122812983-# Copyright (c) 1998-2009,2010 Free Software Foundation, Inc.                #
    11229 +# Copyright (c) 1998-2010,2011 Free Software Foundation, Inc.                #
     12984+# Copyright (c) 1998-2011,2012 Free Software Foundation, Inc.                #
    1123012985 #                                                                            #
    1123112986 # Permission is hereby granted, free of charge, to any person obtaining a    #
     
    1124813003 OBJS_DEMO = $(MODEL)/demo$o
    1124913004 
     13005@@ -179,7 +180,7 @@
     13006 demo$x:        $(OBJS_DEMO) \
     13007        $(MY_LIBRARY)  \
     13008        @TEST_DEPS@
     13009-       @ECHO_LINK@ $(LINK) -o $@ $(OBJS_DEMO) $(LDFLAGS_DEFAULT)
     13010+       @ECHO_LD@ $(LINK) -o $@ $(OBJS_DEMO) $(LDFLAGS_DEFAULT)
     13011 
     13012 etip.h:        $(srcdir)/etip.h.in $(srcdir)/edit_cfg.sh
     13013        cp $(srcdir)/etip.h.in $@
    1125013014diff -Naur ncurses-5.9.orig/c++/cursesapp.h ncurses-5.9/c++/cursesapp.h
    11251 --- ncurses-5.9.orig/c++/cursesapp.h    2012-02-16 18:25:12.643809617 +0000
    11252 +++ ncurses-5.9/c++/cursesapp.h 2012-02-16 18:25:12.919816901 +0000
     13015--- ncurses-5.9.orig/c++/cursesapp.h    2012-08-25 19:57:59.423234170 +0000
     13016+++ ncurses-5.9/c++/cursesapp.h 2012-08-25 19:57:59.893231947 +0000
    1125313017@@ -1,6 +1,6 @@
    1125413018 // * This makes emacs happy -*-Mode: C++;-*-
     
    1133113095 };
    1133213096diff -Naur ncurses-5.9.orig/c++/cursesf.cc ncurses-5.9/c++/cursesf.cc
    11333 --- ncurses-5.9.orig/c++/cursesf.cc     2012-02-16 18:25:12.639809512 +0000
    11334 +++ ncurses-5.9/c++/cursesf.cc  2012-02-16 18:25:12.919816901 +0000
     13097--- ncurses-5.9.orig/c++/cursesf.cc     2012-08-25 19:57:59.426567488 +0000
     13098+++ ncurses-5.9/c++/cursesf.cc  2012-08-25 19:57:59.896565265 +0000
    1133513099@@ -1,6 +1,6 @@
    1133613100 // * this is for making emacs happy: -*-Mode: C++;-*-
     
    1140913173   UserDefinedFieldType_With_Choice* udf =
    1141013174diff -Naur ncurses-5.9.orig/c++/cursesf.h ncurses-5.9/c++/cursesf.h
    11411 --- ncurses-5.9.orig/c++/cursesf.h      2012-02-16 18:25:12.643809617 +0000
    11412 +++ ncurses-5.9/c++/cursesf.h   2012-02-16 18:25:12.919816901 +0000
     13175--- ncurses-5.9.orig/c++/cursesf.h      2012-08-25 19:57:59.423234170 +0000
     13176+++ ncurses-5.9/c++/cursesf.h   2012-08-25 19:58:01.569890686 +0000
    1141313177@@ -1,6 +1,6 @@
    1141413178 // * This makes emacs happy -*-Mode: C++;-*-
    1141513179 /****************************************************************************
    1141613180- * Copyright (c) 1998-2004,2005 Free Software Foundation, Inc.              *
    11417 + * Copyright (c) 1998-2005,2011 Free Software Foundation, Inc.              *
     13181+ * Copyright (c) 1998-2011,2012 Free Software Foundation, Inc.              *
    1141813182  *                                                                          *
    1141913183  * Permission is hereby granted, free of charge, to any person obtaining a  *
     
    1142413188 
    1142513189-// $Id: cursesf.h,v 1.28 2005/08/13 18:08:24 tom Exp $
    11426 +// $Id: cursesf.h,v 1.29 2011/04/09 18:07:01 Alexander.Kolesen Exp $
     13190+// $Id: cursesf.h,v 1.30 2012/06/08 17:43:56 Richard.Yao Exp $
    1142713191 
    1142813192 #ifndef NCURSES_CURSESF_H_incl
    1142913193 #define NCURSES_CURSESF_H_incl 1
    11430 @@ -681,7 +681,7 @@
     13194@@ -677,7 +677,7 @@
     13195   }
     13196 
     13197 public:
     13198-  NCursesUserForm (NCursesFormField Fields[],
     13199+  NCursesUserForm (NCursesFormField* Fields[],
    1143113200                   const T* p_UserData = STATIC_CAST(T*)(0),
    1143213201                   bool with_frame=FALSE,
    1143313202                   bool autoDelete_Fields=FALSE)
    11434 -    : NCursesForm (Fields, with_frame, autoDelete_Fields) {
    11435 +    : NCursesForm (&Fields, with_frame, autoDelete_Fields) {
    11436        if (form)
     13203@@ -686,7 +686,7 @@
    1143713204        set_user (const_cast<void *>(p_UserData));
    1143813205   };
    11439 @@ -694,7 +694,7 @@
    11440                    const T* p_UserData = STATIC_CAST(T*)(0),
    11441                    bool with_frame=FALSE,
    11442                    bool autoDelete_Fields=FALSE)
    11443 -    : NCursesForm (Fields, nlines, ncols, begin_y, begin_x,
    11444 +    : NCursesForm (&Fields, nlines, ncols, begin_y, begin_x,
    11445                    with_frame, autoDelete_Fields) {
    11446        if (form)
    11447         set_user (const_cast<void *>(p_UserData));
     13206 
     13207-  NCursesUserForm (NCursesFormField Fields[],
     13208+  NCursesUserForm (NCursesFormField* Fields[],
     13209                   int nlines,
     13210                   int ncols,
     13211                   int begin_y = 0,
    1144813212diff -Naur ncurses-5.9.orig/c++/cursesm.cc ncurses-5.9/c++/cursesm.cc
    11449 --- ncurses-5.9.orig/c++/cursesm.cc     2012-02-16 18:25:12.643809617 +0000
    11450 +++ ncurses-5.9/c++/cursesm.cc  2012-02-16 18:25:12.919816901 +0000
     13213--- ncurses-5.9.orig/c++/cursesm.cc     2012-08-25 19:57:59.426567488 +0000
     13214+++ ncurses-5.9/c++/cursesm.cc  2012-08-25 19:57:59.899898583 +0000
    1145113215@@ -1,6 +1,6 @@
    1145213216 // * this is for making emacs happy: -*-Mode: C++;-*-
     
    1150713271 }
    1150813272diff -Naur ncurses-5.9.orig/c++/cursesm.h ncurses-5.9/c++/cursesm.h
    11509 --- ncurses-5.9.orig/c++/cursesm.h      2012-02-16 18:25:12.639809512 +0000
    11510 +++ ncurses-5.9/c++/cursesm.h   2012-02-16 18:25:12.923817007 +0000
     13273--- ncurses-5.9.orig/c++/cursesm.h      2012-08-25 19:57:59.423234170 +0000
     13274+++ ncurses-5.9/c++/cursesm.h   2012-08-25 19:58:01.569890686 +0000
    1151113275@@ -1,6 +1,6 @@
    1151213276 // * This makes emacs happy -*-Mode: C++;-*-
    1151313277 /****************************************************************************
    1151413278- * Copyright (c) 1998-2003,2005 Free Software Foundation, Inc.              *
    11515 + * Copyright (c) 1998-2005,2011 Free Software Foundation, Inc.              *
     13279+ * Copyright (c) 1998-2011,2012 Free Software Foundation, Inc.              *
    1151613280  *                                                                          *
    1151713281  * Permission is hereby granted, free of charge, to any person obtaining a  *
     
    1152213286 
    1152313287-// $Id: cursesm.h,v 1.25 2005/08/13 18:10:36 tom Exp $
    11524 +// $Id: cursesm.h,v 1.27 2011/09/17 21:37:01 tom Exp $
     13288+// $Id: cursesm.h,v 1.28 2012/06/08 17:43:56 Richard.Yao Exp $
    1152513289 
    1152613290 #ifndef NCURSES_CURSESM_H_incl
     
    1153413298 
    1153513299   virtual ~NCursesMenuItem ();
    11536 @@ -639,7 +640,7 @@
     13300@@ -635,7 +636,7 @@
     13301   }
     13302 
     13303 public:
     13304-  NCursesUserMenu (NCursesMenuItem Items[],
     13305+  NCursesUserMenu (NCursesMenuItem* Items[],
    1153713306                   const T* p_UserData = STATIC_CAST(T*)(0),
    1153813307                   bool with_frame=FALSE,
    1153913308                   bool autoDelete_Items=FALSE)
    11540 -    : NCursesMenu (Items, with_frame, autoDelete_Items) {
    11541 +    : NCursesMenu (&Items, with_frame, autoDelete_Items) {
    11542        if (menu)
     13309@@ -644,7 +645,7 @@
    1154313310        set_user (const_cast<void *>(p_UserData));
    1154413311   };
    11545 @@ -651,7 +652,7 @@
    11546                    int begin_x = 0,
    11547                    const T* p_UserData = STATIC_CAST(T*)(0),
    11548                    bool with_frame=FALSE)
    11549 -    : NCursesMenu (Items, nlines, ncols, begin_y, begin_x, with_frame) {
    11550 +    : NCursesMenu (&Items, nlines, ncols, begin_y, begin_x, with_frame) {
    11551        if (menu)
    11552         set_user (const_cast<void *>(p_UserData));
    11553    };
     13312 
     13313-  NCursesUserMenu (NCursesMenuItem Items[],
     13314+  NCursesUserMenu (NCursesMenuItem* Items[],
     13315                   int nlines,
     13316                   int ncols,
     13317                   int begin_y = 0,
    1155413318diff -Naur ncurses-5.9.orig/c++/cursespad.cc ncurses-5.9/c++/cursespad.cc
    11555 --- ncurses-5.9.orig/c++/cursespad.cc   2012-02-16 18:25:12.643809617 +0000
    11556 +++ ncurses-5.9/c++/cursespad.cc        2012-02-16 18:25:12.923817007 +0000
     13319--- ncurses-5.9.orig/c++/cursespad.cc   2012-08-25 19:57:59.426567488 +0000
     13320+++ ncurses-5.9/c++/cursespad.cc        2012-08-25 19:57:59.899898583 +0000
    1155713321@@ -1,6 +1,6 @@
    1155813322 // * this is for making emacs happy: -*-Mode: C++;-*-
     
    1158113345 
    1158213346diff -Naur ncurses-5.9.orig/c++/cursesw.cc ncurses-5.9/c++/cursesw.cc
    11583 --- ncurses-5.9.orig/c++/cursesw.cc     2012-02-16 18:25:12.639809512 +0000
    11584 +++ ncurses-5.9/c++/cursesw.cc  2012-02-16 18:25:12.923817007 +0000
     13347--- ncurses-5.9.orig/c++/cursesw.cc     2012-08-25 19:57:59.426567488 +0000
     13348+++ ncurses-5.9/c++/cursesw.cc  2012-08-25 19:57:59.903231901 +0000
    1158513349@@ -1,6 +1,6 @@
    1158613350 // * this is for making emacs happy: -*-Mode: C++;-*-
     
    1161613380     RIPOFFINIT init = *prip++;
    1161713381diff -Naur ncurses-5.9.orig/c++/cursesw.h ncurses-5.9/c++/cursesw.h
    11618 --- ncurses-5.9.orig/c++/cursesw.h      2012-02-16 18:25:12.643809617 +0000
    11619 +++ ncurses-5.9/c++/cursesw.h   2012-02-16 18:25:12.923817007 +0000
     13382--- ncurses-5.9.orig/c++/cursesw.h      2012-08-25 19:57:59.423234170 +0000
     13383+++ ncurses-5.9/c++/cursesw.h   2012-08-25 19:57:59.903231901 +0000
    1162013384@@ -1,7 +1,7 @@
    1162113385 // * This makes emacs happy -*-Mode: C++;-*-
     
    1167213436   }
    1167313437   // Disable this call; the viewport subwindow is already defined
     13438diff -Naur ncurses-5.9.orig/c++/cursslk.cc ncurses-5.9/c++/cursslk.cc
     13439--- ncurses-5.9.orig/c++/cursslk.cc     2012-08-25 19:57:59.426567488 +0000
     13440+++ ncurses-5.9/c++/cursslk.cc  2012-08-25 19:58:00.879893949 +0000
     13441@@ -1,6 +1,6 @@
     13442 // * this is for making emacs happy: -*-Mode: C++;-*-
     13443 /****************************************************************************
     13444- * Copyright (c) 1998-2003,2005 Free Software Foundation, Inc.              *
     13445+ * Copyright (c) 1998-2005,2012 Free Software Foundation, Inc.              *
     13446  *                                                                          *
     13447  * Permission is hereby granted, free of charge, to any person obtaining a  *
     13448  * copy of this software and associated documentation files (the            *
     13449@@ -35,14 +35,15 @@
     13450 #include "cursslk.h"
     13451 #include "cursesapp.h"
     13452 
     13453-MODULE_ID("$Id: cursslk.cc,v 1.15 2005/08/06 22:12:36 tom Exp $")
     13454+MODULE_ID("$Id: cursslk.cc,v 1.16 2012/02/23 10:41:56 tom Exp $")
     13455 
     13456 Soft_Label_Key_Set::Soft_Label_Key&
     13457   Soft_Label_Key_Set::Soft_Label_Key::operator=(char *text)
     13458 {
     13459   delete[] label;
     13460-  label = new char[1 + ::strlen(text)];
     13461-  (::strcpy)(label,text);
     13462+  size_t need = 1 + ::strlen(text);
     13463+  label = new char[need];
     13464+  ::_nc_STRCPY(label,text,need);
     13465   return *this;
     13466 }
     13467 
    1167413468diff -Naur ncurses-5.9.orig/c++/demo.cc ncurses-5.9/c++/demo.cc
    11675 --- ncurses-5.9.orig/c++/demo.cc        2012-02-16 18:25:12.643809617 +0000
    11676 +++ ncurses-5.9/c++/demo.cc     2012-02-16 18:25:12.923817007 +0000
     13469--- ncurses-5.9.orig/c++/demo.cc        2012-08-25 19:57:59.423234170 +0000
     13470+++ ncurses-5.9/c++/demo.cc     2012-08-25 19:58:00.879893949 +0000
    1167713471@@ -1,6 +1,6 @@
    1167813472 // * This makes emacs happy -*-Mode: C++;-*-
    1167913473 /****************************************************************************
    1168013474- * Copyright (c) 1998-2007,2008 Free Software Foundation, Inc.              *
    11681 + * Copyright (c) 1998-2008,2011 Free Software Foundation, Inc.              *
     13475+ * Copyright (c) 1998-2011,2012 Free Software Foundation, Inc.              *
    1168213476  *                                                                          *
    1168313477  * Permission is hereby granted, free of charge, to any person obtaining a  *
     
    1168813482  *
    1168913483- * $Id: demo.cc,v 1.39 2008/12/07 02:07:34 juergen Exp $
    11690 + * $Id: demo.cc,v 1.40 2011/09/17 22:12:10 tom Exp $
     13484+ * $Id: demo.cc,v 1.41 2012/02/23 10:41:56 tom Exp $
    1169113485  */
    1169213486 
     
    1170013494   }
    1170113495   bool char_check(int c) {
     13496@@ -319,7 +320,7 @@
     13497     for(int i=1; i <= S->labels(); i++) {
     13498       char buf[8];
     13499       assert(i < 100);
     13500-      ::sprintf(buf, "Frm%02d", i);
     13501+      ::_nc_SPRINTF(buf, _nc_SLIMIT(sizeof(buf)) "Frm%02d", i);
     13502       (*S)[i] = buf;                                      // Text
     13503       (*S)[i] = Soft_Label_Key_Set::Soft_Label_Key::Left; // Justification
     13504     }
     13505@@ -539,7 +540,7 @@
     13506   for(int i=1; i <= S.labels(); i++) {
     13507     char buf[8];
     13508     assert(i < 100);
     13509-    ::sprintf(buf, "Key%02d", i);
     13510+    ::_nc_SPRINTF(buf, _nc_SLIMIT(sizeof(buf)) "Key%02d", i);
     13511     S[i] = buf;                                      // Text
     13512     S[i] = Soft_Label_Key_Set::Soft_Label_Key::Left; // Justification
     13513   }
    1170213514diff -Naur ncurses-5.9.orig/c++/etip.h.in ncurses-5.9/c++/etip.h.in
    11703 --- ncurses-5.9.orig/c++/etip.h.in      2012-02-16 18:25:12.639809512 +0000
    11704 +++ ncurses-5.9/c++/etip.h.in   2012-02-16 18:25:12.923817007 +0000
     13515--- ncurses-5.9.orig/c++/etip.h.in      2012-08-25 19:57:59.426567488 +0000
     13516+++ ncurses-5.9/c++/etip.h.in   2012-08-25 19:57:59.906565219 +0000
    1170513517@@ -1,6 +1,6 @@
    1170613518 // * This makes emacs happy -*-Mode: C++;-*-
     
    1177413586 
    1177513587   NCursesFormException (const NCursesForm* form,
     13588diff -Naur ncurses-5.9.orig/c++/internal.h ncurses-5.9/c++/internal.h
     13589--- ncurses-5.9.orig/c++/internal.h     2012-08-25 19:57:59.423234170 +0000
     13590+++ ncurses-5.9/c++/internal.h  2012-08-25 19:58:00.879893949 +0000
     13591@@ -1,6 +1,6 @@
     13592 // * This makes emacs happy -*-Mode: C++;-*-
     13593 /****************************************************************************
     13594- * Copyright (c) 1998-2007,2008 Free Software Foundation, Inc.              *
     13595+ * Copyright (c) 1998-2008,2012 Free Software Foundation, Inc.              *
     13596  *                                                                          *
     13597  * Permission is hereby granted, free of charge, to any person obtaining a  *
     13598  * copy of this software and associated documentation files (the            *
     13599@@ -31,7 +31,7 @@
     13600  *   Author: Juergen Pfeifer, 1997                                          *
     13601  ****************************************************************************/
     13602 
     13603-// $Id: internal.h,v 1.17 2008/12/07 02:07:34 juergen Exp $
     13604+// $Id: internal.h,v 1.18 2012/02/23 10:41:56 tom Exp $
     13605 
     13606 #ifndef NCURSES_CPLUS_INTERNAL_H
     13607 #define NCURSES_CPLUS_INTERNAL_H 1
     13608@@ -62,4 +62,6 @@
     13609 #define NULL 0
     13610 #endif
     13611 
     13612+#include <nc_string.h>
     13613+
     13614 #endif /* NCURSES_CPLUS_INTERNAL_H */
    1177613615diff -Naur ncurses-5.9.orig/config.guess ncurses-5.9/config.guess
    11777 --- ncurses-5.9.orig/config.guess       2012-02-16 18:25:12.607808668 +0000
    11778 +++ ncurses-5.9/config.guess    2012-02-16 18:25:12.923817007 +0000
     13616--- ncurses-5.9.orig/config.guess       2012-08-25 19:57:59.429900806 +0000
     13617+++ ncurses-5.9/config.guess    2012-08-25 19:58:00.879893949 +0000
    1177913618@@ -1,10 +1,10 @@
    1178013619 #! /bin/sh
     
    1178413623-#   Free Software Foundation, Inc.
    1178513624+#   2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
    11786 +#   2911 Free Software Foundation, Inc.
     13625+#   2011, 2012 Free Software Foundation, Inc.
    1178713626 
    1178813627-timestamp='2010-09-24'
    11789 +timestamp='2011-01-01'
     13628+timestamp='2012-02-10'
    1179013629 
    1179113630 # This file is free software; you can redistribute it and/or modify it
    1179213631 # under the terms of the GNU General Public License as published by
    11793 @@ -57,8 +57,8 @@
     13632@@ -17,9 +17,7 @@
     13633 # General Public License for more details.
     13634 #
     13635 # You should have received a copy of the GNU General Public License
     13636-# along with this program; if not, write to the Free Software
     13637-# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
     13638-# 02110-1301, USA.
     13639+# along with this program; if not, see <http://www.gnu.org/licenses/>.
     13640 #
     13641 # As a special exception to the GNU General Public License, if you
     13642 # distribute this file as part of a program that contains a
     13643@@ -57,8 +55,8 @@
    1179413644 
    1179513645 Originally written by Per Bothner.
     
    1179713647-2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free
    1179813648-Software Foundation, Inc.
    11799 +2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
     13649+2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
    1180013650+Free Software Foundation, Inc.
    1180113651 
    1180213652 This is free software; see the source for copying conditions.  There is NO
    1180313653 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
    11804 @@ -92,7 +92,7 @@
     13654@@ -92,7 +90,7 @@
    1180513655   exit 1
    1180613656 fi
     
    1181113661 # CC_FOR_BUILD -- compiler used by this script. Note that the use of a
    1181213662 # compiler to aid in system detection is discouraged as it requires
    11813 @@ -106,7 +106,7 @@
     13663@@ -106,7 +104,7 @@
    1181413664 
    1181513665 set_cc_for_build='
     
    1182013670  { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } ||
    1182113671  { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } ||
    11822 @@ -270,7 +270,10 @@
     13672@@ -145,7 +143,7 @@
     13673 case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
     13674     *:NetBSD:*:*)
     13675        # NetBSD (nbsd) targets should (where applicable) match one or
     13676-       # more of the tupples: *-*-netbsdelf*, *-*-netbsdaout*,
     13677+       # more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*,
     13678        # *-*-netbsdecoff* and *-*-netbsd*.  For targets that recently
     13679        # switched to ELF, *-*-netbsd* would select the old
     13680        # object file format.  This provides both forward
     13681@@ -220,10 +218,10 @@
     13682        exit ;;
     13683     alpha:OSF1:*:*)
     13684        case $UNAME_RELEASE in
     13685-           *4.0)
     13686+       *4.0)
     13687                UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'`
     13688                ;;
     13689-           *5.*)
     13690+       *5.*)
     13691                UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'`
     13692                ;;
     13693        esac
     13694@@ -270,7 +268,10 @@
    1182313695        # A Xn.n version is an unreleased experimental baselevel.
    1182413696        # 1.2 uses "1.2" for uname -r.
     
    1183213704        # How do we know it's Interix rather than the generic POSIX subsystem?
    1183313705        # Should we change UNAME_MACHINE based on the output of uname instead
    11834 @@ -326,8 +329,8 @@
     13706@@ -326,8 +327,8 @@
    1183513707            sparc) echo sparc-icl-nx7; exit ;;
    1183613708        esac ;;
     
    1184313715        echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'`
    1184413716        exit ;;
    11845 @@ -495,7 +498,7 @@
     13717@@ -495,7 +496,7 @@
    1184613718        else
    1184713719            echo i586-dg-dgux${UNAME_RELEASE}
     
    1185213724        echo m88k-dolphin-sysv3
    1185313725        exit ;;
     13726@@ -597,50 +598,50 @@
     13727                    sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null`
     13728                    sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null`
     13729                    case "${sc_cpu_version}" in
     13730-                      523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0
     13731-                      528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1
     13732-                      532)                      # CPU_PA_RISC2_0
     13733-                        case "${sc_kernel_bits}" in
     13734-                          32) HP_ARCH="hppa2.0n" ;;
     13735-                          64) HP_ARCH="hppa2.0w" ;;
     13736+                     523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0
     13737+                     528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1
     13738+                     532)                      # CPU_PA_RISC2_0
     13739+                       case "${sc_kernel_bits}" in
     13740+                         32) HP_ARCH="hppa2.0n" ;;
     13741+                         64) HP_ARCH="hppa2.0w" ;;
     13742                          '') HP_ARCH="hppa2.0" ;;   # HP-UX 10.20
     13743-                        esac ;;
     13744-                    esac
     13745+                       esac ;;
     13746+                   esac
     13747                fi
     13748                if [ "${HP_ARCH}" = "" ]; then
     13749                    eval $set_cc_for_build
     13750-                   sed 's/^              //' << EOF >$dummy.c
     13751+                   sed 's/^            //' << EOF >$dummy.c
     13752+
     13753+               #define _HPUX_SOURCE
     13754+               #include <stdlib.h>
     13755+               #include <unistd.h>
     13756 
     13757-              #define _HPUX_SOURCE
     13758-              #include <stdlib.h>
     13759-              #include <unistd.h>
     13760-
     13761-              int main ()
     13762-              {
     13763-              #if defined(_SC_KERNEL_BITS)
     13764-                  long bits = sysconf(_SC_KERNEL_BITS);
     13765-              #endif
     13766-                  long cpu  = sysconf (_SC_CPU_VERSION);
     13767-
     13768-                  switch (cpu)
     13769-               {
     13770-               case CPU_PA_RISC1_0: puts ("hppa1.0"); break;
     13771-               case CPU_PA_RISC1_1: puts ("hppa1.1"); break;
     13772-               case CPU_PA_RISC2_0:
     13773-              #if defined(_SC_KERNEL_BITS)
     13774-                   switch (bits)
     13775-                       {
     13776-                       case 64: puts ("hppa2.0w"); break;
     13777-                       case 32: puts ("hppa2.0n"); break;
     13778-                       default: puts ("hppa2.0"); break;
     13779-                       } break;
     13780-              #else  /* !defined(_SC_KERNEL_BITS) */
     13781-                   puts ("hppa2.0"); break;
     13782-              #endif
     13783-               default: puts ("hppa1.0"); break;
     13784-               }
     13785-                  exit (0);
     13786-              }
     13787+               int main ()
     13788+               {
     13789+               #if defined(_SC_KERNEL_BITS)
     13790+                   long bits = sysconf(_SC_KERNEL_BITS);
     13791+               #endif
     13792+                   long cpu  = sysconf (_SC_CPU_VERSION);
     13793+
     13794+                   switch (cpu)
     13795+                       {
     13796+                       case CPU_PA_RISC1_0: puts ("hppa1.0"); break;
     13797+                       case CPU_PA_RISC1_1: puts ("hppa1.1"); break;
     13798+                       case CPU_PA_RISC2_0:
     13799+               #if defined(_SC_KERNEL_BITS)
     13800+                           switch (bits)
     13801+                               {
     13802+                               case 64: puts ("hppa2.0w"); break;
     13803+                               case 32: puts ("hppa2.0n"); break;
     13804+                               default: puts ("hppa2.0"); break;
     13805+                               } break;
     13806+               #else  /* !defined(_SC_KERNEL_BITS) */
     13807+                           puts ("hppa2.0"); break;
     13808+               #endif
     13809+                       default: puts ("hppa1.0"); break;
     13810+                       }
     13811+                   exit (0);
     13812+               }
     13813 EOF
     13814                    (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy`
     13815                    test -z "$HP_ARCH" && HP_ARCH=hppa
     13816@@ -789,13 +790,12 @@
     13817        echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE}
     13818        exit ;;
     13819     *:FreeBSD:*:*)
     13820-       case ${UNAME_MACHINE} in
     13821-           pc98)
     13822-               echo i386-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
     13823+       UNAME_PROCESSOR=`/usr/bin/uname -p`
     13824+       case ${UNAME_PROCESSOR} in
     13825            amd64)
     13826                echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
     13827            *)
     13828-               echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
     13829+               echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
     13830        esac
     13831        exit ;;
     13832     i*:CYGWIN*:*)
     13833@@ -804,6 +804,9 @@
     13834     *:MINGW*:*)
     13835        echo ${UNAME_MACHINE}-pc-mingw32
     13836        exit ;;
     13837+    i*:MSYS*:*)
     13838+       echo ${UNAME_MACHINE}-pc-msys
     13839+       exit ;;
     13840     i*:windows32*:*)
     13841        # uname -m includes "-pc" on this system.
     13842        echo ${UNAME_MACHINE}-mingw32
    1185413843@@ -820,8 +823,8 @@
    1185513844                echo x86_64-unknown-interix${UNAME_RELEASE}
     
    1186313852     [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*)
    1186413853        echo i${UNAME_MACHINE}-pc-mks
    11865 @@ -934,14 +937,14 @@
     13854@@ -858,15 +861,22 @@
     13855     i*86:Minix:*:*)
     13856        echo ${UNAME_MACHINE}-pc-minix
     13857        exit ;;
     13858+    aarch64:Linux:*:*)
     13859+       echo ${UNAME_MACHINE}-unknown-linux-gnu
     13860+       exit ;;
     13861+    aarch64_be:Linux:*:*)
     13862+       UNAME_MACHINE=aarch64_be
     13863+       echo ${UNAME_MACHINE}-unknown-linux-gnu
     13864+       exit ;;
     13865     alpha:Linux:*:*)
     13866        case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in
     13867-           EV5)   UNAME_MACHINE=alphaev5 ;;
     13868-           EV56)  UNAME_MACHINE=alphaev56 ;;
     13869-           PCA56) UNAME_MACHINE=alphapca56 ;;
     13870-           PCA57) UNAME_MACHINE=alphapca56 ;;
     13871-           EV6)   UNAME_MACHINE=alphaev6 ;;
     13872-           EV67)  UNAME_MACHINE=alphaev67 ;;
     13873-           EV68*) UNAME_MACHINE=alphaev68 ;;
     13874+         EV5)   UNAME_MACHINE=alphaev5 ;;
     13875+         EV56)  UNAME_MACHINE=alphaev56 ;;
     13876+         PCA56) UNAME_MACHINE=alphapca56 ;;
     13877+         PCA57) UNAME_MACHINE=alphapca56 ;;
     13878+         EV6)   UNAME_MACHINE=alphaev6 ;;
     13879+         EV67)  UNAME_MACHINE=alphaev67 ;;
     13880+         EV68*) UNAME_MACHINE=alphaev68 ;;
     13881        esac
     13882        objdump --private-headers /bin/sh | grep -q ld.so.1
     13883        if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi
     13884@@ -874,30 +884,39 @@
     13885        exit ;;
     13886     arm*:Linux:*:*)
     13887        eval $set_cc_for_build
     13888-       if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null | \
     13889-           grep -q __ARM_EABI__
     13890+       if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \
     13891+           | grep -q __ARM_EABI__
     13892        then
     13893            echo ${UNAME_MACHINE}-unknown-linux-gnu
     13894        else
     13895-           echo ${UNAME_MACHINE}-unknown-linux-gnueabi
     13896+           if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \
     13897+               | grep -q __ARM_PCS_VFP
     13898+           then
     13899+               echo ${UNAME_MACHINE}-unknown-linux-gnueabi
     13900+           else
     13901+               echo ${UNAME_MACHINE}-unknown-linux-gnueabihf
     13902+           fi
     13903        fi
     13904        exit ;;
     13905     avr32*:Linux:*:*)
     13906        echo ${UNAME_MACHINE}-unknown-linux-gnu
     13907        exit ;;
     13908     cris:Linux:*:*)
     13909-       echo cris-axis-linux-gnu
     13910+       echo ${UNAME_MACHINE}-axis-linux-gnu
     13911        exit ;;
     13912     crisv32:Linux:*:*)
     13913-       echo crisv32-axis-linux-gnu
     13914+       echo ${UNAME_MACHINE}-axis-linux-gnu
     13915        exit ;;
     13916     frv:Linux:*:*)
     13917-       echo frv-unknown-linux-gnu
     13918+       echo ${UNAME_MACHINE}-unknown-linux-gnu
     13919+       exit ;;
     13920+    hexagon:Linux:*:*)
     13921+       echo ${UNAME_MACHINE}-unknown-linux-gnu
     13922        exit ;;
     13923     i*86:Linux:*:*)
     13924        LIBC=gnu
     13925        eval $set_cc_for_build
     13926-       sed 's/^        //' << EOF >$dummy.c
     13927+       sed 's/^        //' << EOF >$dummy.c
     13928        #ifdef __dietlibc__
     13929        LIBC=dietlibc
     13930        #endif
     13931@@ -934,14 +953,14 @@
    1186613932        test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; }
    1186713933        ;;
     
    1186913935-       echo or32-unknown-linux-gnu
    1187013936-       exit ;;
    11871 +       echo or32-unknown-linux-gnu
     13937+       echo ${UNAME_MACHINE}-unknown-linux-gnu
    1187213938+       exit ;;
    1187313939     padre:Linux:*:*)
     
    1188213948        # Look for CPU level
    1188313949        case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in
     13950@@ -969,13 +988,13 @@
     13951        echo ${UNAME_MACHINE}-unknown-linux-gnu
     13952        exit ;;
     13953     tile*:Linux:*:*)
     13954-       echo ${UNAME_MACHINE}-tilera-linux-gnu
     13955+       echo ${UNAME_MACHINE}-unknown-linux-gnu
     13956        exit ;;
     13957     vax:Linux:*:*)
     13958        echo ${UNAME_MACHINE}-dec-linux-gnu
     13959        exit ;;
     13960     x86_64:Linux:*:*)
     13961-       echo x86_64-unknown-linux-gnu
     13962+       echo ${UNAME_MACHINE}-unknown-linux-gnu
     13963        exit ;;
     13964     xtensa*:Linux:*:*)
     13965        echo ${UNAME_MACHINE}-unknown-linux-gnu
     13966@@ -1093,7 +1112,7 @@
     13967          && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;;
     13968     3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*)
     13969        /bin/uname -p 2>/dev/null | grep 86 >/dev/null \
     13970-          && { echo i486-ncr-sysv4; exit; } ;;
     13971+         && { echo i486-ncr-sysv4; exit; } ;;
     13972     NCR*:*:4.2:* | MPRAS*:*:4.2:*)
     13973        OS_REL='.3'
     13974        test -r /etc/.relid \
     13975@@ -1136,8 +1155,8 @@
     13976                echo ns32k-sni-sysv
     13977        fi
     13978        exit ;;
     13979-    PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort
     13980-                     # says <Richard.M.Bartel@ccMail.Census.GOV>
     13981+    PENTIUM:*:4.0*:*)  # Unisys `ClearPath HMP IX 4000' SVR4/MP effort
     13982+                       # says <Richard.M.Bartel@ccMail.Census.GOV>
     13983        echo i586-unisys-sysv4
     13984        exit ;;
     13985     *:UNIX_System_V:4*:FTX*)
     13986@@ -1165,9 +1184,9 @@
     13987        exit ;;
     13988     R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*)
     13989        if [ -d /usr/nec ]; then
     13990-               echo mips-nec-sysv${UNAME_RELEASE}
     13991+               echo mips-nec-sysv${UNAME_RELEASE}
     13992        else
     13993-               echo mips-unknown-sysv${UNAME_RELEASE}
     13994+               echo mips-unknown-sysv${UNAME_RELEASE}
     13995        fi
     13996        exit ;;
     13997     BeBox:BeOS:*:*)    # BeOS running on hardware made by Be, PPC only.
     13998@@ -1212,12 +1231,12 @@
     13999            i386)
     14000                eval $set_cc_for_build
     14001                if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then
     14002-                   if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \
     14003-                       (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \
     14004-                       grep IS_64BIT_ARCH >/dev/null
     14005-                   then
     14006-                       UNAME_PROCESSOR="x86_64"
     14007-                   fi
     14008+                 if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \
     14009+                     (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \
     14010+                     grep IS_64BIT_ARCH >/dev/null
     14011+                 then
     14012+                     UNAME_PROCESSOR="x86_64"
     14013+                 fi
     14014                fi ;;
     14015            unknown) UNAME_PROCESSOR=powerpc ;;
     14016        esac
     14017@@ -1226,8 +1245,8 @@
     14018     *:procnto*:*:* | *:QNX:[0123456789]*:*)
     14019        UNAME_PROCESSOR=`uname -p`
     14020        if test "$UNAME_PROCESSOR" = "x86"; then
     14021-           UNAME_PROCESSOR=i386
     14022-           UNAME_MACHINE=pc
     14023+               UNAME_PROCESSOR=i386
     14024+               UNAME_MACHINE=pc
     14025        fi
     14026        echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE}
     14027        exit ;;
     14028@@ -1306,6 +1325,9 @@
     14029     i*86:AROS:*:*)
     14030        echo ${UNAME_MACHINE}-pc-aros
     14031        exit ;;
     14032+    x86_64:VMkernel:*:*)
     14033+       echo ${UNAME_MACHINE}-unknown-esx
     14034+       exit ;;
     14035 esac
     14036 
     14037 #echo '(No uname command or uname output not recognized.)' 1>&2
     14038@@ -1328,11 +1350,11 @@
     14039 #include <sys/param.h>
     14040   printf ("m68k-sony-newsos%s\n",
     14041 #ifdef NEWSOS4
     14042-          "4"
     14043+       "4"
     14044 #else
     14045-         ""
     14046+       ""
     14047 #endif
     14048-         ); exit (0);
     14049+       ); exit (0);
     14050 #endif
     14051 #endif
     14052 
    1188414053diff -Naur ncurses-5.9.orig/config.sub ncurses-5.9/config.sub
    11885 --- ncurses-5.9.orig/config.sub 2012-02-16 18:25:12.627809197 +0000
    11886 +++ ncurses-5.9/config.sub      2012-02-16 18:25:12.927817113 +0000
    11887 @@ -2,9 +2,9 @@
     14054--- ncurses-5.9.orig/config.sub 2012-08-25 19:57:59.429900806 +0000
     14055+++ ncurses-5.9/config.sub      2012-08-25 19:58:00.879893949 +0000
     14056@@ -1,10 +1,10 @@
     14057 #! /bin/sh
    1188814058 # Configuration validation subroutine script.
    1188914059 #   Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
    11890  #   2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
     14060-#   2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
    1189114061-#   Free Software Foundation, Inc.
    11892 +#   2011 Free Software Foundation, Inc.
     14062+#   2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
     14063+#   2011, 2012 Free Software Foundation, Inc.
    1189314064 
    1189414065-timestamp='2010-09-11'
    11895 +timestamp='2011-04-01'
     14066+timestamp='2012-02-10'
    1189614067 
    1189714068 # This file is (in principle) common to ALL GNU software.
    1189814069 # The presence of a machine in this file suggests that SOME GNU software
    11899 @@ -76,8 +76,8 @@
     14070@@ -21,9 +21,7 @@
     14071 # GNU General Public License for more details.
     14072 #
     14073 # You should have received a copy of the GNU General Public License
     14074-# along with this program; if not, write to the Free Software
     14075-# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
     14076-# 02110-1301, USA.
     14077+# along with this program; if not, see <http://www.gnu.org/licenses/>.
     14078 #
     14079 # As a special exception to the GNU General Public License, if you
     14080 # distribute this file as part of a program that contains a
     14081@@ -76,8 +74,8 @@
    1190014082 GNU config.sub ($timestamp)
    1190114083 
     
    1190314085-2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free
    1190414086-Software Foundation, Inc.
    11905 +2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
     14087+2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
    1190614088+Free Software Foundation, Inc.
    1190714089 
    1190814090 This is free software; see the source for copying conditions.  There is NO
    1190914091 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
    11910 @@ -175,10 +175,10 @@
     14092@@ -132,6 +130,10 @@
     14093     os=-$maybe_os
     14094     basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
     14095     ;;
     14096+  android-linux)
     14097+    os=-linux-android
     14098+    basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown
     14099+    ;;
     14100   *)
     14101     basic_machine=`echo $1 | sed 's/-[^-]*$//'`
     14102     if [ $basic_machine != $1 ]
     14103@@ -175,10 +177,10 @@
    1191114104                os=-chorusos
    1191214105                basic_machine=$1
     
    1192214115                os=-hiuxwe2
    1192314116                ;;
    11924 @@ -283,12 +283,13 @@
     14117@@ -247,17 +249,22 @@
     14118        # Some are omitted here because they have special meanings below.
     14119        1750a | 580 \
     14120        | a29k \
     14121+       | aarch64 | aarch64_be \
     14122        | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \
     14123        | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \
     14124        | am33_2.0 \
     14125        | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \
     14126+        | be32 | be64 \
     14127        | bfin \
     14128        | c4x | clipper \
     14129        | d10v | d30v | dlx | dsp16xx \
     14130+       | epiphany \
     14131        | fido | fr30 | frv \
     14132        | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \
     14133+       | hexagon \
     14134        | i370 | i860 | i960 | ia64 \
     14135        | ip2k | iq2000 \
     14136+       | le32 | le64 \
     14137        | lm32 \
     14138        | m32c | m32r | m32rle | m68000 | m68k | m88k \
     14139        | maxq | mb | microblaze | mcore | mep | metag \
     14140@@ -283,25 +290,26 @@
    1192514141        | moxie \
    1192614142        | mt \
     
    1193614152+       | powerpc | powerpc64 | powerpc64le | powerpcle \
    1193714153        | pyramid \
    11938         | rx \
     14154-       | rx \
     14155+       | rl78 | rx \
    1193914156        | score \
    11940 @@ -296,12 +297,12 @@
     14157        | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \
    1194114158        | sh64 | sh64le \
    1194214159        | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \
     
    1194714164+       | tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \
    1194814165        | ubicom32 \
    11949         | v850 | v850e \
     14166-       | v850 | v850e \
     14167+       | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \
    1195014168        | we32k \
    1195114169-       | x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \
     
    1195414172                basic_machine=$basic_machine-unknown
    1195514173                ;;
    11956 @@ -324,7 +325,15 @@
    11957         ms1)
     14174@@ -314,8 +322,7 @@
     14175        c6x)
     14176                basic_machine=tic6x-unknown
     14177                ;;
     14178-       m6811 | m68hc11 | m6812 | m68hc12 | picochip)
     14179-               # Motorola 68HC11/12.
     14180+       m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | picochip)
     14181                basic_machine=$basic_machine-unknown
     14182                os=-none
     14183                ;;
     14184@@ -325,12 +332,27 @@
    1195814185                basic_machine=mt-unknown
    1195914186                ;;
    11960 -
     14187 
    1196114188+       strongarm | thumb | xscale)
    1196214189+               basic_machine=arm-unknown
     14190+               ;;
     14191+       xgate)
     14192+               basic_machine=$basic_machine-unknown
     14193+               os=-none
    1196314194+               ;;
    1196414195+       xscaleeb)
    1196514196+               basic_machine=armeb-unknown
    1196614197+               ;;
     14198+
    1196714199+       xscaleel)
    1196814200+               basic_machine=armel-unknown
    1196914201+               ;;
     14202+
    1197014203        # We use `pc' rather than `unknown'
    1197114204        # because (1) that's what they normally are, and
    1197214205        # (2) the word "unknown" tends to confuse beginning users.
    11973 @@ -382,24 +391,25 @@
     14206        i*86 | x86_64)
     14207-               basic_machine=$basic_machine-pc
     14208-               ;;
     14209+         basic_machine=$basic_machine-pc
     14210+         ;;
     14211        # Object if more than one company name word.
     14212        *-*-*)
     14213                echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2
     14214@@ -339,11 +361,13 @@
     14215        # Recognize the basic CPU types with company name.
     14216        580-* \
     14217        | a29k-* \
     14218+       | aarch64-* | aarch64_be-* \
     14219        | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \
     14220        | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \
     14221        | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \
     14222        | arm-*  | armbe-* | armle-* | armeb-* | armv*-* \
     14223        | avr-* | avr32-* \
     14224+       | be32-* | be64-* \
     14225        | bfin-* | bs2000-* \
     14226        | c[123]* | c30-* | [cjt]90-* | c4x-* \
     14227        | clipper-* | craynv-* | cydra-* \
     14228@@ -352,8 +376,10 @@
     14229        | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \
     14230        | h8300-* | h8500-* \
     14231        | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \
     14232+       | hexagon-* \
     14233        | i*86-* | i860-* | i960-* | ia64-* \
     14234        | ip2k-* | iq2000-* \
     14235+       | le32-* | le64-* \
     14236        | lm32-* \
     14237        | m32c-* | m32r-* | m32rle-* \
     14238        | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \
     14239@@ -382,24 +408,26 @@
    1197414240        | nds32-* | nds32le-* | nds32be-* \
    1197514241        | nios-* | nios2-* \
     
    1198114247+       | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \
    1198214248        | pyramid-* \
    11983         | romp-* | rs6000-* | rx-* \
     14249-       | romp-* | rs6000-* | rx-* \
     14250+       | rl78-* | romp-* | rs6000-* | rx-* \
    1198414251        | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \
    1198514252        | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \
     
    1199114258+       | tahoe-* \
    1199214259        | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \
    11993         | tile-* | tilegx-* \
     14260-       | tile-* | tilegx-* \
     14261+       | tile*-* \
    1199414262        | tron-* \
    1199514263        | ubicom32-* \
    11996         | v850-* | v850e-* | vax-* \
     14264-       | v850-* | v850e-* | vax-* \
     14265+       | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \
     14266+       | vax-* \
    1199714267        | we32k-* \
    1199814268-       | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \
     
    1200114271        | ymp-* \
    1200214272        | z8k-* | z80-*)
    12003 @@ -539,7 +549,7 @@
     14273@@ -539,7 +567,7 @@
    1200414274                basic_machine=craynv-cray
    1200514275                os=-unicosmp
     
    1201014280                os=-elf
    1201114281                ;;
    12012 @@ -826,10 +836,10 @@
    12013                 basic_machine=v70-nec
    12014                 os=-sysv
     14282@@ -697,7 +725,6 @@
     14283        i370-ibm* | ibm*)
     14284                basic_machine=i370-ibm
    1201514285                ;;
    12016 -       next | m*-next )
    12017 +       next | m*-next)
    12018                 basic_machine=m68k-next
    12019                 case $os in
    12020 -                   -nextstep* )
    12021 +                   -nextstep*)
    12022                         ;;
    12023                     -ns2*)
    12024                       os=-nextstep2
    12025 @@ -948,11 +958,14 @@
    12026         pn)
    12027                 basic_machine=pn-gould
     14286-# I'm not sure what "Sysv32" means.  Should this be sysv3.2?
     14287        i*86v32)
     14288                basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
     14289                os=-sysv32
     14290@@ -794,10 +821,18 @@
     14291        ms1-*)
     14292                basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'`
    1202814293                ;;
    12029 -       power)  basic_machine=power-ibm
    12030 +       power)
    12031 +               basic_machine=power-ibm
     14294+       msys)
     14295+               basic_machine=i386-pc
     14296+               os=-msys
     14297+               ;;
     14298        mvs)
     14299                basic_machine=i370-ibm
     14300                os=-mvs
     14301                ;;
     14302+       nacl)
     14303+               basic_machine=le32-unknown
     14304+               os=-nacl
     14305+               ;;
     14306        ncr3000)
     14307                basic_machine=i486-ncr
     14308                os=-sysv4
     14309@@ -950,9 +985,10 @@
     14310                ;;
     14311        power)  basic_machine=power-ibm
    1203214312                ;;
    1203314313-       ppc)    basic_machine=powerpc-unknown
    12034 +       ppc | ppcbe)
    12035 +               basic_machine=powerpc-unknown
     14314+       ppc | ppcbe)    basic_machine=powerpc-unknown
    1203614315                ;;
    1203714316-       ppc-*)  basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'`
     
    1204114320        ppcle | powerpclittle | ppc-le | powerpc-little)
    1204214321                basic_machine=powerpcle-unknown
    12043 @@ -960,9 +973,11 @@
    12044         ppcle-* | powerpclittle-*)
    12045                 basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'`
    12046                 ;;
    12047 -       ppc64)  basic_machine=powerpc64-unknown
    12048 +       ppc64)
    12049 +               basic_machine=powerpc64-unknown
    12050                 ;;
    12051 -       ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'`
    12052 +       ppc64-*)
    12053 +               basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'`
    12054                 ;;
    12055         ppc64le | powerpc64little | ppc64-le | powerpc64-little)
    12056                 basic_machine=powerpc64le-unknown
    12057 @@ -1046,6 +1061,9 @@
     14322@@ -1046,6 +1082,9 @@
    1205814323                basic_machine=i860-stratus
    1205914324                os=-sysv4
     
    1206514330                basic_machine=m68000-sun
    1206614331                ;;
    12067 @@ -1178,6 +1196,9 @@
     14332@@ -1102,13 +1141,8 @@
     14333                basic_machine=t90-cray
     14334                os=-unicos
     14335                ;;
     14336-       # This must be matched before tile*.
     14337-       tilegx*)
     14338-               basic_machine=tilegx-unknown
     14339-               os=-linux-gnu
     14340-               ;;
     14341        tile*)
     14342-               basic_machine=tile-unknown
     14343+               basic_machine=$basic_machine-unknown
     14344                os=-linux-gnu
     14345                ;;
     14346        tx39)
     14347@@ -1178,6 +1212,9 @@
    1206814348        xps | xps100)
    1206914349                basic_machine=xps100-honeywell
     
    1207514355                basic_machine=ymp-cray
    1207614356                os=-unicos
    12077 @@ -1400,7 +1421,7 @@
    12078         -nova*)
    12079                 os=-rtmk-nova
     14357@@ -1315,7 +1352,7 @@
     14358              | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \
     14359              | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \
     14360              | -chorusos* | -chorusrdb* | -cegcc* \
     14361-             | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
     14362+             | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
     14363              | -mingw32* | -linux-gnu* | -linux-android* \
     14364              | -linux-newlib* | -linux-uclibc* \
     14365              | -uxpv* | -beos* | -mpeix* | -udk* \
     14366@@ -1527,9 +1564,6 @@
    1208014367                ;;
    12081 -       -ns2 )
    12082 +       -ns2)
    12083                 os=-nextstep2
     14368        m68000-sun)
     14369                os=-sunos3
     14370-               # This also exists in the configure program, but was not the
     14371-               # default.
     14372-               # os=-sunos4
    1208414373                ;;
    12085         -nsk*)
    12086 @@ -1597,7 +1618,7 @@
    12087         m88k-omron*)
    12088                 os=-luna
    12089                 ;;
    12090 -       *-next )
    12091 +       *-next)
    12092                 os=-nextstep
    12093                 ;;
    12094         *-sequent)
     14374        m68*-cisco)
     14375                os=-aout
    1209514376diff -Naur ncurses-5.9.orig/configure ncurses-5.9/configure
    12096 --- ncurses-5.9.orig/configure  2012-02-16 18:25:12.627809197 +0000
    12097 +++ ncurses-5.9/configure       2012-02-16 18:25:13.283826506 +0000
    12098 @@ -1,5 +1,5 @@
     14377--- ncurses-5.9.orig/configure  2012-08-25 19:57:59.429900806 +0000
     14378+++ ncurses-5.9/configure       2012-08-25 19:58:02.356553633 +0000
     14379@@ -1,7 +1,7 @@
    1209914380 #! /bin/sh
    1210014381-# From configure.in Revision: 1.520 .
    12101 +# From configure.in Revision: 1.541 .
     14382+# From configure.in Revision: 1.552 .
    1210214383 # Guess values for system-dependent variables and create Makefiles.
    12103  # Generated by Autoconf 2.52.20101002.
     14384-# Generated by Autoconf 2.52.20101002.
     14385+# Generated by Autoconf 2.52.20120811.
    1210414386 #
    12105 @@ -702,6 +702,7 @@
     14387 # Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001
     14388 # Free Software Foundation, Inc.
     14389@@ -171,15 +171,16 @@
     14390 bindir='${exec_prefix}/bin'
     14391 sbindir='${exec_prefix}/sbin'
     14392 libexecdir='${exec_prefix}/libexec'
     14393-datadir='${prefix}/share'
     14394+datarootdir='${prefix}/share'
     14395+datadir='${datarootdir}'
     14396 sysconfdir='${prefix}/etc'
     14397 sharedstatedir='${prefix}/com'
     14398 localstatedir='${prefix}/var'
     14399 libdir='${exec_prefix}/lib'
     14400 includedir='${prefix}/include'
     14401 oldincludedir='/usr/include'
     14402-infodir='${prefix}/info'
     14403-mandir='${prefix}/man'
     14404+infodir='${datarootdir}/info'
     14405+mandir='${datarootdir}/man'
     14406 
     14407 # Identity of this package.
     14408 PACKAGE_NAME=
     14409@@ -230,6 +231,13 @@
     14410   | --da=*)
     14411     datadir=$ac_optarg ;;
     14412 
     14413+  -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \
     14414+  | --dataroo | --dataro | --datar)
     14415+    ac_prev=datarootdir ;;
     14416+  -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \
     14417+  | --dataroot=* | --dataroo=* | --dataro=* | --datar=*)
     14418+    datarootdir=$ac_optarg ;;
     14419+
     14420   -disable-* | --disable-*)
     14421     ac_feature=`expr "x$ac_option" : 'x-*disable-\(.*\)'`
     14422     # Reject names that are not valid shell variable names.
     14423@@ -505,7 +513,7 @@
     14424 done
     14425 
     14426 # Be sure to have absolute paths.
     14427-for ac_var in bindir sbindir libexecdir datadir sysconfdir sharedstatedir \
     14428+for ac_var in bindir sbindir libexecdir datarootdir datadir sysconfdir sharedstatedir \
     14429               localstatedir libdir includedir oldincludedir infodir mandir
     14430 do
     14431   eval ac_val=$`echo $ac_var`
     14432@@ -654,15 +662,16 @@
     14433   --bindir=DIR            user executables [EPREFIX/bin]
     14434   --sbindir=DIR           system admin executables [EPREFIX/sbin]
     14435   --libexecdir=DIR        program executables [EPREFIX/libexec]
     14436-  --datadir=DIR           read-only architecture-independent data [PREFIX/share]
     14437+  --datarootdir=DIR       read-only architecture-independent data [PREFIX/share]
     14438+  --datadir=DIR           read-only architecture-independent data [DATAROOTDIR]
     14439   --sysconfdir=DIR        read-only single-machine data [PREFIX/etc]
     14440   --sharedstatedir=DIR    modifiable architecture-independent data [PREFIX/com]
     14441   --localstatedir=DIR     modifiable single-machine data [PREFIX/var]
     14442   --libdir=DIR            object code libraries [EPREFIX/lib]
     14443   --includedir=DIR        C header files [PREFIX/include]
     14444   --oldincludedir=DIR     C header files for non-gcc [/usr/include]
     14445-  --infodir=DIR           info documentation [PREFIX/info]
     14446-  --mandir=DIR            man documentation [PREFIX/man]
     14447+  --infodir=DIR           info documentation [DATAROOTDIR/info]
     14448+  --mandir=DIR            man documentation [DATAROOTDIR/man]
     14449 EOF
     14450 
     14451   cat <<\EOF
     14452@@ -694,14 +703,15 @@
     14453   --with-rel-version=XXX  override derived release version
     14454   --with-abi-version=XXX  override derived ABI version
     14455   --with-system-type=XXX  test: override derived host system-type
     14456+  --without-ada           suppress check for Ada95, don't build demo
     14457   --without-cxx           do not adjust ncurses bool to match C++
     14458   --without-cxx-binding   do not build C++ binding and demo
     14459-  --without-ada           suppress check for Ada95, don't build demo
     14460   --without-manpages      suppress install of manpages
     14461   --without-progs         suppress build with programs (e.g., tic)
    1210614462   --without-tests         suppress build with test-programs
    1210714463   --without-curses-h      install curses.h as ncurses.h only
     
    1211114467   --enable-mixed-case     tic should assume mixed-case filenames
    1211214468   --with-install-prefix   prefixes actual install-location ($DESTDIR)
    12113 @@ -719,6 +720,7 @@
     14469@@ -719,6 +729,7 @@
    1211414470   --with-normal           generate normal-libraries (default)
    1211514471   --with-debug            generate debug-libraries (default)
     
    1211914475   --with-ticlib           generate separate tic library
    1212014476   --with-gpm              use Alessandro Rubini's GPM library
    12121 @@ -735,6 +737,7 @@
     14477@@ -735,6 +746,7 @@
    1212214478   --with-hashed-db        specify hashed-database library
    1212314479   --with-fallbacks=XXX    specify list of fallback terminal descriptions
     
    1212714483   --with-default-terminfo-dir=DIR default terminfo directory (default: DATADIR/terminfo)
    1212814484   --disable-big-core      assume machine has little memory
    12129 @@ -1007,7 +1010,7 @@
     14485@@ -759,6 +771,7 @@
     14486   --with-ospeed=TYPE      override type of ospeed variable
     14487   --with-mmask-t=TYPE     override type of mmask_t
     14488   --with-ccharw-max=XXX   override size CCHARW_MAX
     14489+  --with-tparm-arg=TYPE   override parameter type of tparm
     14490   --with-rcs-ids          compile-in RCS identifiers
     14491 Options to Specify How Manpages are Installed:
     14492   --with-manpage-format   specify manpage-format: gzip/compress/BSDI/normal and
     14493@@ -796,8 +809,9 @@
     14494   --disable-scroll-hints  compile without scroll-hints code
     14495   --enable-wgetch-events  compile with experimental wgetch-events code
     14496 Testing/development Options:
     14497-  --enable-echo           build: display "compiling" commands (default)
     14498+  --disable-echo          display "compiling" commands
     14499   --enable-warnings       build: turn on GCC compiler warnings
     14500+  --enable-string-hacks  work around bogus compiler/loader warnings
     14501   --enable-assertions     test: turn on generation of assertion code
     14502   --with-dmalloc          test: use Gray Watson's dmalloc library
     14503   --with-dbmalloc         test: use Conor Cahill's dbmalloc library
     14504@@ -883,7 +897,7 @@
     14505 running configure, to aid debugging if configure makes a mistake.
     14506 
     14507 It was created by $as_me, which was
     14508-generated by GNU Autoconf 2.52.20101002.  Invocation command line was
     14509+generated by GNU Autoconf 2.52.20120811.  Invocation command line was
     14510 
     14511   $ $0 $@
     14512 
     14513@@ -1007,7 +1021,7 @@
    1213014514 fi
    1213114515 for ac_site_file in $CONFIG_SITE; do
    1213214516   if test -r "$ac_site_file"; then
    1213314517-    { echo "$as_me:1010: loading site script $ac_site_file" >&5
    12134 +    { echo "$as_me:1013: loading site script $ac_site_file" >&5
     14518+    { echo "$as_me:1024: loading site script $ac_site_file" >&5
    1213514519 echo "$as_me: loading site script $ac_site_file" >&6;}
    1213614520     cat "$ac_site_file" >&5
    1213714521     . "$ac_site_file"
    12138 @@ -1018,7 +1021,7 @@
     14522@@ -1018,7 +1032,7 @@
    1213914523   # Some versions of bash will fail to source /dev/null (special
    1214014524   # files actually), so we avoid doing that.
    1214114525   if test -f "$cache_file"; then
    1214214526-    { echo "$as_me:1021: loading cache $cache_file" >&5
    12143 +    { echo "$as_me:1024: loading cache $cache_file" >&5
     14527+    { echo "$as_me:1035: loading cache $cache_file" >&5
    1214414528 echo "$as_me: loading cache $cache_file" >&6;}
    1214514529     case $cache_file in
    1214614530       [\\/]* | ?:[\\/]* ) . $cache_file;;
    12147 @@ -1026,7 +1029,7 @@
     14531@@ -1026,7 +1040,7 @@
    1214814532     esac
    1214914533   fi
    1215014534 else
    1215114535-  { echo "$as_me:1029: creating cache $cache_file" >&5
    12152 +  { echo "$as_me:1032: creating cache $cache_file" >&5
     14536+  { echo "$as_me:1043: creating cache $cache_file" >&5
    1215314537 echo "$as_me: creating cache $cache_file" >&6;}
    1215414538   >$cache_file
    1215514539 fi
    12156 @@ -1042,21 +1045,21 @@
     14540@@ -1042,21 +1056,21 @@
    1215714541   eval ac_new_val="\$ac_env_${ac_var}_value"
    1215814542   case $ac_old_set,$ac_new_set in
    1215914543     set,)
    1216014544-      { echo "$as_me:1045: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
    12161 +      { echo "$as_me:1048: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
     14545+      { echo "$as_me:1059: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
    1216214546 echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
    1216314547       ac_cache_corrupted=: ;;
    1216414548     ,set)
    1216514549-      { echo "$as_me:1049: error: \`$ac_var' was not set in the previous run" >&5
    12166 +      { echo "$as_me:1052: error: \`$ac_var' was not set in the previous run" >&5
     14550+      { echo "$as_me:1063: error: \`$ac_var' was not set in the previous run" >&5
    1216714551 echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
    1216814552       ac_cache_corrupted=: ;;
     
    1217114555       if test "x$ac_old_val" != "x$ac_new_val"; then
    1217214556-        { echo "$as_me:1055: error: \`$ac_var' has changed since the previous run:" >&5
    12173 +        { echo "$as_me:1058: error: \`$ac_var' has changed since the previous run:" >&5
     14557+        { echo "$as_me:1069: error: \`$ac_var' has changed since the previous run:" >&5
    1217414558 echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
    1217514559-        { echo "$as_me:1057:   former value:  $ac_old_val" >&5
    12176 +        { echo "$as_me:1060:   former value:  $ac_old_val" >&5
     14560+        { echo "$as_me:1071:   former value:  $ac_old_val" >&5
    1217714561 echo "$as_me:   former value:  $ac_old_val" >&2;}
    1217814562-        { echo "$as_me:1059:   current value: $ac_new_val" >&5
    12179 +        { echo "$as_me:1062:   current value: $ac_new_val" >&5
     14563+        { echo "$as_me:1073:   current value: $ac_new_val" >&5
    1218014564 echo "$as_me:   current value: $ac_new_val" >&2;}
    1218114565         ac_cache_corrupted=:
    1218214566       fi;;
    12183 @@ -1075,9 +1078,9 @@
     14567@@ -1075,9 +1089,9 @@
    1218414568   fi
    1218514569 done
    1218614570 if $ac_cache_corrupted; then
    1218714571-  { echo "$as_me:1078: error: changes in the environment can compromise the build" >&5
    12188 +  { echo "$as_me:1081: error: changes in the environment can compromise the build" >&5
     14572+  { echo "$as_me:1092: error: changes in the environment can compromise the build" >&5
    1218914573 echo "$as_me: error: changes in the environment can compromise the build" >&2;}
    1219014574-  { { echo "$as_me:1080: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5
    12191 +  { { echo "$as_me:1083: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5
     14575+  { { echo "$as_me:1094: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5
    1219214576 echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;}
    1219314577    { (exit 1); exit 1; }; }
    1219414578 fi
    12195 @@ -1098,10 +1101,10 @@
     14579@@ -1098,10 +1112,10 @@
    1219614580 echo "#! $SHELL" >conftest.sh
    1219714581 echo  "exit 0"   >>conftest.sh
    1219814582 chmod +x conftest.sh
    1219914583-if { (echo "$as_me:1101: PATH=\".;.\"; conftest.sh") >&5
    12200 +if { (echo "$as_me:1104: PATH=\".;.\"; conftest.sh") >&5
     14584+if { (echo "$as_me:1115: PATH=\".;.\"; conftest.sh") >&5
    1220114585   (PATH=".;."; conftest.sh) 2>&5
    1220214586   ac_status=$?
    1220314587-  echo "$as_me:1104: \$? = $ac_status" >&5
    12204 +  echo "$as_me:1107: \$? = $ac_status" >&5
     14588+  echo "$as_me:1118: \$? = $ac_status" >&5
    1220514589   (exit $ac_status); }; then
    1220614590   ac_path_separator=';'
    1220714591 else
    12208 @@ -1114,7 +1117,7 @@
     14592@@ -1114,7 +1128,7 @@
    1220914593 
    1221014594 top_builddir=`pwd`
    1221114595 
    1221214596-echo "$as_me:1117: checking for egrep" >&5
    12213 +echo "$as_me:1120: checking for egrep" >&5
     14597+echo "$as_me:1131: checking for egrep" >&5
    1221414598 echo $ECHO_N "checking for egrep... $ECHO_C" >&6
    1221514599 if test "${ac_cv_prog_egrep+set}" = set; then
    1221614600   echo $ECHO_N "(cached) $ECHO_C" >&6
    12217 @@ -1124,11 +1127,11 @@
     14601@@ -1124,11 +1138,11 @@
    1221814602     else ac_cv_prog_egrep='egrep'
    1221914603     fi
    1222014604 fi
    1222114605-echo "$as_me:1127: result: $ac_cv_prog_egrep" >&5
    12222 +echo "$as_me:1130: result: $ac_cv_prog_egrep" >&5
     14606+echo "$as_me:1141: result: $ac_cv_prog_egrep" >&5
    1222314607 echo "${ECHO_T}$ac_cv_prog_egrep" >&6
    1222414608  EGREP=$ac_cv_prog_egrep
    1222514609 
    1222614610-test -z "$EGREP" && { { echo "$as_me:1131: error: No egrep program found" >&5
    12227 +test -z "$EGREP" && { { echo "$as_me:1134: error: No egrep program found" >&5
     14611+test -z "$EGREP" && { { echo "$as_me:1145: error: No egrep program found" >&5
    1222814612 echo "$as_me: error: No egrep program found" >&2;}
    1222914613    { (exit 1); exit 1; }; }
    1223014614 
    12231 @@ -1138,7 +1141,7 @@
     14615@@ -1138,7 +1152,7 @@
    1223214616 cf_cv_abi_version=${NCURSES_MAJOR}
    1223314617 cf_cv_rel_version=${NCURSES_MAJOR}.${NCURSES_MINOR}
    1223414618 cf_cv_timestamp=`date`
    1223514619-echo "$as_me:1141: result: Configuring NCURSES $cf_cv_rel_version ABI $cf_cv_abi_version ($cf_cv_timestamp)" >&5
    12236 +echo "$as_me:1144: result: Configuring NCURSES $cf_cv_rel_version ABI $cf_cv_abi_version ($cf_cv_timestamp)" >&5
     14620+echo "$as_me:1155: result: Configuring NCURSES $cf_cv_rel_version ABI $cf_cv_abi_version ($cf_cv_timestamp)" >&5
    1223714621 echo "${ECHO_T}Configuring NCURSES $cf_cv_rel_version ABI $cf_cv_abi_version ($cf_cv_timestamp)" >&6
    1223814622 
    1223914623 test -z "$cf_cv_rel_version" && cf_cv_rel_version=0.0
    12240 @@ -1146,7 +1149,7 @@
     14624@@ -1146,7 +1160,7 @@
    1224114625 # Check whether --with-rel-version or --without-rel-version was given.
    1224214626 if test "${with_rel_version+set}" = set; then
    1224314627   withval="$with_rel_version"
    1224414628-  { echo "$as_me:1149: WARNING: overriding release version $cf_cv_rel_version to $withval" >&5
    12245 +  { echo "$as_me:1152: WARNING: overriding release version $cf_cv_rel_version to $withval" >&5
     14629+  { echo "$as_me:1163: WARNING: overriding release version $cf_cv_rel_version to $withval" >&5
    1224614630 echo "$as_me: WARNING: overriding release version $cf_cv_rel_version to $withval" >&2;}
    1224714631  cf_cv_rel_version=$withval
    1224814632 fi;
    12249 @@ -1159,13 +1162,13 @@
     14633@@ -1159,13 +1173,13 @@
    1225014634   [0-9]*) #(vi
    1225114635        ;;
    1225214636   *)
    1225314637-       { { echo "$as_me:1162: error: Release major-version is not a number: $NCURSES_MAJOR" >&5
    12254 +       { { echo "$as_me:1165: error: Release major-version is not a number: $NCURSES_MAJOR" >&5
     14638+       { { echo "$as_me:1176: error: Release major-version is not a number: $NCURSES_MAJOR" >&5
    1225514639 echo "$as_me: error: Release major-version is not a number: $NCURSES_MAJOR" >&2;}
    1225614640    { (exit 1); exit 1; }; }
     
    1225914643 else
    1226014644-  { { echo "$as_me:1168: error: Release major-version value is empty" >&5
    12261 +  { { echo "$as_me:1171: error: Release major-version value is empty" >&5
     14645+  { { echo "$as_me:1182: error: Release major-version value is empty" >&5
    1226214646 echo "$as_me: error: Release major-version value is empty" >&2;}
    1226314647    { (exit 1); exit 1; }; }
    1226414648 fi
    12265 @@ -1175,13 +1178,13 @@
     14649@@ -1175,13 +1189,13 @@
    1226614650   [0-9]*) #(vi
    1226714651        ;;
    1226814652   *)
    1226914653-       { { echo "$as_me:1178: error: Release minor-version is not a number: $NCURSES_MINOR" >&5
    12270 +       { { echo "$as_me:1181: error: Release minor-version is not a number: $NCURSES_MINOR" >&5
     14654+       { { echo "$as_me:1192: error: Release minor-version is not a number: $NCURSES_MINOR" >&5
    1227114655 echo "$as_me: error: Release minor-version is not a number: $NCURSES_MINOR" >&2;}
    1227214656    { (exit 1); exit 1; }; }
     
    1227514659 else
    1227614660-  { { echo "$as_me:1184: error: Release minor-version value is empty" >&5
    12277 +  { { echo "$as_me:1187: error: Release minor-version value is empty" >&5
     14661+  { { echo "$as_me:1198: error: Release minor-version value is empty" >&5
    1227814662 echo "$as_me: error: Release minor-version value is empty" >&2;}
    1227914663    { (exit 1); exit 1; }; }
    1228014664 fi
    12281 @@ -1191,7 +1194,7 @@
     14665@@ -1191,7 +1205,7 @@
    1228214666 # Check whether --with-abi-version or --without-abi-version was given.
    1228314667 if test "${with_abi_version+set}" = set; then
    1228414668   withval="$with_abi_version"
    1228514669-  { echo "$as_me:1194: WARNING: overriding ABI version $cf_cv_abi_version to $withval" >&5
    12286 +  { echo "$as_me:1197: WARNING: overriding ABI version $cf_cv_abi_version to $withval" >&5
     14670+  { echo "$as_me:1208: WARNING: overriding ABI version $cf_cv_abi_version to $withval" >&5
    1228714671 echo "$as_me: WARNING: overriding ABI version $cf_cv_abi_version to $withval" >&2;}
    1228814672  cf_cv_abi_version=$withval
    1228914673 fi;
    12290 @@ -1201,13 +1204,13 @@
     14674@@ -1201,13 +1215,13 @@
    1229114675   [0-9]*) #(vi
    1229214676        ;;
    1229314677   *)
    1229414678-       { { echo "$as_me:1204: error: ABI version is not a number: $cf_cv_abi_version" >&5
    12295 +       { { echo "$as_me:1207: error: ABI version is not a number: $cf_cv_abi_version" >&5
     14679+       { { echo "$as_me:1218: error: ABI version is not a number: $cf_cv_abi_version" >&5
    1229614680 echo "$as_me: error: ABI version is not a number: $cf_cv_abi_version" >&2;}
    1229714681    { (exit 1); exit 1; }; }
     
    1230014684 else
    1230114685-  { { echo "$as_me:1210: error: ABI version value is empty" >&5
    12302 +  { { echo "$as_me:1213: error: ABI version value is empty" >&5
     14686+  { { echo "$as_me:1224: error: ABI version value is empty" >&5
    1230314687 echo "$as_me: error: ABI version value is empty" >&2;}
    1230414688    { (exit 1); exit 1; }; }
    1230514689 fi
    12306 @@ -1229,7 +1232,7 @@
     14690@@ -1229,7 +1243,7 @@
    1230714691   fi
    1230814692 done
    1230914693 if test -z "$ac_aux_dir"; then
    1231014694-  { { echo "$as_me:1232: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5
    12311 +  { { echo "$as_me:1235: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5
     14695+  { { echo "$as_me:1246: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5
    1231214696 echo "$as_me: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&2;}
    1231314697    { (exit 1); exit 1; }; }
    1231414698 fi
    12315 @@ -1239,11 +1242,11 @@
     14699@@ -1239,11 +1253,11 @@
    1231614700 
    1231714701 # Make sure we can run config.sub.
    1231814702 $ac_config_sub sun4 >/dev/null 2>&1 ||
    1231914703-  { { echo "$as_me:1242: error: cannot run $ac_config_sub" >&5
    12320 +  { { echo "$as_me:1245: error: cannot run $ac_config_sub" >&5
     14704+  { { echo "$as_me:1256: error: cannot run $ac_config_sub" >&5
    1232114705 echo "$as_me: error: cannot run $ac_config_sub" >&2;}
    1232214706    { (exit 1); exit 1; }; }
    1232314707 
    1232414708-echo "$as_me:1246: checking build system type" >&5
    12325 +echo "$as_me:1249: checking build system type" >&5
     14709+echo "$as_me:1260: checking build system type" >&5
    1232614710 echo $ECHO_N "checking build system type... $ECHO_C" >&6
    1232714711 if test "${ac_cv_build+set}" = set; then
    1232814712   echo $ECHO_N "(cached) $ECHO_C" >&6
    12329 @@ -1252,23 +1255,23 @@
     14713@@ -1252,23 +1266,23 @@
    1233014714 test -z "$ac_cv_build_alias" &&
    1233114715   ac_cv_build_alias=`$ac_config_guess`
    1233214716 test -z "$ac_cv_build_alias" &&
    1233314717-  { { echo "$as_me:1255: error: cannot guess build type; you must specify one" >&5
    12334 +  { { echo "$as_me:1258: error: cannot guess build type; you must specify one" >&5
     14718+  { { echo "$as_me:1269: error: cannot guess build type; you must specify one" >&5
    1233514719 echo "$as_me: error: cannot guess build type; you must specify one" >&2;}
    1233614720    { (exit 1); exit 1; }; }
    1233714721 ac_cv_build=`$ac_config_sub $ac_cv_build_alias` ||
    1233814722-  { { echo "$as_me:1259: error: $ac_config_sub $ac_cv_build_alias failed." >&5
    12339 +  { { echo "$as_me:1262: error: $ac_config_sub $ac_cv_build_alias failed." >&5
     14723+  { { echo "$as_me:1273: error: $ac_config_sub $ac_cv_build_alias failed." >&5
    1234014724 echo "$as_me: error: $ac_config_sub $ac_cv_build_alias failed." >&2;}
    1234114725    { (exit 1); exit 1; }; }
     
    1234314727 fi
    1234414728-echo "$as_me:1264: result: $ac_cv_build" >&5
    12345 +echo "$as_me:1267: result: $ac_cv_build" >&5
     14729+echo "$as_me:1278: result: $ac_cv_build" >&5
    1234614730 echo "${ECHO_T}$ac_cv_build" >&6
    1234714731 build=$ac_cv_build
     
    1235114735 
    1235214736-echo "$as_me:1271: checking host system type" >&5
    12353 +echo "$as_me:1274: checking host system type" >&5
     14737+echo "$as_me:1285: checking host system type" >&5
    1235414738 echo $ECHO_N "checking host system type... $ECHO_C" >&6
    1235514739 if test "${ac_cv_host+set}" = set; then
    1235614740   echo $ECHO_N "(cached) $ECHO_C" >&6
    12357 @@ -1277,12 +1280,12 @@
     14741@@ -1277,12 +1291,12 @@
    1235814742 test -z "$ac_cv_host_alias" &&
    1235914743   ac_cv_host_alias=$ac_cv_build_alias
    1236014744 ac_cv_host=`$ac_config_sub $ac_cv_host_alias` ||
    1236114745-  { { echo "$as_me:1280: error: $ac_config_sub $ac_cv_host_alias failed" >&5
    12362 +  { { echo "$as_me:1283: error: $ac_config_sub $ac_cv_host_alias failed" >&5
     14746+  { { echo "$as_me:1294: error: $ac_config_sub $ac_cv_host_alias failed" >&5
    1236314747 echo "$as_me: error: $ac_config_sub $ac_cv_host_alias failed" >&2;}
    1236414748    { (exit 1); exit 1; }; }
     
    1236614750 fi
    1236714751-echo "$as_me:1285: result: $ac_cv_host" >&5
    12368 +echo "$as_me:1288: result: $ac_cv_host" >&5
     14752+echo "$as_me:1299: result: $ac_cv_host" >&5
    1236914753 echo "${ECHO_T}$ac_cv_host" >&6
    1237014754 host=$ac_cv_host
    1237114755 host_cpu=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
    12372 @@ -1290,7 +1293,7 @@
     14756@@ -1290,7 +1304,7 @@
    1237314757 host_os=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
    1237414758 
    1237514759 if test -f $srcdir/config.guess || test -f $ac_aux_dir/config.guess ; then
    1237614760-       echo "$as_me:1293: checking target system type" >&5
    12377 +       echo "$as_me:1296: checking target system type" >&5
     14761+       echo "$as_me:1307: checking target system type" >&5
    1237814762 echo $ECHO_N "checking target system type... $ECHO_C" >&6
    1237914763 if test "${ac_cv_target+set}" = set; then
    1238014764   echo $ECHO_N "(cached) $ECHO_C" >&6
    12381 @@ -1299,12 +1302,12 @@
     14765@@ -1299,12 +1313,12 @@
    1238214766 test "x$ac_cv_target_alias" = "x" &&
    1238314767   ac_cv_target_alias=$ac_cv_host_alias
    1238414768 ac_cv_target=`$ac_config_sub $ac_cv_target_alias` ||
    1238514769-  { { echo "$as_me:1302: error: $ac_config_sub $ac_cv_target_alias failed" >&5
    12386 +  { { echo "$as_me:1305: error: $ac_config_sub $ac_cv_target_alias failed" >&5
     14770+  { { echo "$as_me:1316: error: $ac_config_sub $ac_cv_target_alias failed" >&5
    1238714771 echo "$as_me: error: $ac_config_sub $ac_cv_target_alias failed" >&2;}
    1238814772    { (exit 1); exit 1; }; }
     
    1239014774 fi
    1239114775-echo "$as_me:1307: result: $ac_cv_target" >&5
    12392 +echo "$as_me:1310: result: $ac_cv_target" >&5
     14776+echo "$as_me:1321: result: $ac_cv_target" >&5
    1239314777 echo "${ECHO_T}$ac_cv_target" >&6
    1239414778 target=$ac_cv_target
    1239514779 target_cpu=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
    12396 @@ -1335,13 +1338,13 @@
     14780@@ -1335,13 +1349,13 @@
    1239714781 fi
    1239814782 
    1239914783 test -z "$system_name" && system_name="$cf_cv_system_name"
    1240014784-test -n "$cf_cv_system_name" && echo "$as_me:1338: result: Configuring for $cf_cv_system_name" >&5
    12401 +test -n "$cf_cv_system_name" && echo "$as_me:1341: result: Configuring for $cf_cv_system_name" >&5
     14785+test -n "$cf_cv_system_name" && echo "$as_me:1352: result: Configuring for $cf_cv_system_name" >&5
    1240214786 echo "${ECHO_T}Configuring for $cf_cv_system_name" >&6
    1240314787 
    1240414788 if test ".$system_name" != ".$cf_cv_system_name" ; then
    1240514789-       echo "$as_me:1342: result: Cached system name ($system_name) does not agree with actual ($cf_cv_system_name)" >&5
    12406 +       echo "$as_me:1345: result: Cached system name ($system_name) does not agree with actual ($cf_cv_system_name)" >&5
     14790+       echo "$as_me:1356: result: Cached system name ($system_name) does not agree with actual ($cf_cv_system_name)" >&5
    1240714791 echo "${ECHO_T}Cached system name ($system_name) does not agree with actual ($cf_cv_system_name)" >&6
    1240814792-       { { echo "$as_me:1344: error: \"Please remove config.cache and try again.\"" >&5
    12409 +       { { echo "$as_me:1347: error: \"Please remove config.cache and try again.\"" >&5
     14793+       { { echo "$as_me:1358: error: \"Please remove config.cache and try again.\"" >&5
    1241014794 echo "$as_me: error: \"Please remove config.cache and try again.\"" >&2;}
    1241114795    { (exit 1); exit 1; }; }
    1241214796 fi
    12413 @@ -1349,7 +1352,7 @@
     14797@@ -1349,7 +1363,7 @@
    1241414798 # Check whether --with-system-type or --without-system-type was given.
    1241514799 if test "${with_system_type+set}" = set; then
    1241614800   withval="$with_system_type"
    1241714801-  { echo "$as_me:1352: WARNING: overriding system type to $withval" >&5
    12418 +  { echo "$as_me:1355: WARNING: overriding system type to $withval" >&5
     14802+  { echo "$as_me:1366: WARNING: overriding system type to $withval" >&5
    1241914803 echo "$as_me: WARNING: overriding system type to $withval" >&2;}
    1242014804  cf_cv_system_name=$withval
    1242114805 fi;
    12422 @@ -1359,23 +1362,23 @@
     14806@@ -1359,23 +1373,23 @@
    1242314807 
    1242414808 ###    Default install-location
    1242514809 
    1242614810-echo "$as_me:1362: checking for prefix" >&5
    12427 +echo "$as_me:1365: checking for prefix" >&5
     14811+echo "$as_me:1376: checking for prefix" >&5
    1242814812 echo $ECHO_N "checking for prefix... $ECHO_C" >&6
    1242914813 if test "x$prefix" = "xNONE" ; then
     
    1243914823 fi
    1244014824-echo "$as_me:1374: result: $prefix" >&5
    12441 +echo "$as_me:1377: result: $prefix" >&5
     14825+echo "$as_me:1388: result: $prefix" >&5
    1244214826 echo "${ECHO_T}$prefix" >&6
    1244314827 
    1244414828 if test "x$prefix" = "xNONE" ; then
    1244514829-echo "$as_me:1378: checking for default include-directory" >&5
    12446 +echo "$as_me:1381: checking for default include-directory" >&5
     14830+echo "$as_me:1392: checking for default include-directory" >&5
    1244714831 echo $ECHO_N "checking for default include-directory... $ECHO_C" >&6
    1244814832 test -n "$verbose" && echo 1>&6
    1244914833 for cf_symbol in \
    12450 @@ -1398,7 +1401,7 @@
     14834@@ -1398,11 +1412,26 @@
    1245114835        fi
    1245214836        test -n "$verbose"  && echo "   tested $cf_dir" 1>&6
    1245314837 done
    1245414838-echo "$as_me:1401: result: $includedir" >&5
    12455 +echo "$as_me:1404: result: $includedir" >&5
     14839+echo "$as_me:1415: result: $includedir" >&5
    1245614840 echo "${ECHO_T}$includedir" >&6
    1245714841 fi
    1245814842 
    12459 @@ -1412,7 +1415,7 @@
     14843 ###    Checks for programs.
     14844+
     14845+# Check whether --with-ada or --without-ada was given.
     14846+if test "${with_ada+set}" = set; then
     14847+  withval="$with_ada"
     14848+  cf_with_ada=$withval
     14849+else
     14850+  cf_with_ada=yes
     14851+fi;
     14852+if test x"$cf_with_ada" = xyes
     14853+then
     14854+       cf_PROG_CC="gnatgcc gcc cc"
     14855+else
     14856+       cf_PROG_CC="gcc cc"
     14857+fi
     14858+
     14859 ac_ext=c
     14860 ac_cpp='$CPP $CPPFLAGS'
     14861 ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
     14862@@ -1410,213 +1439,11 @@
     14863 ac_compiler_gnu=$ac_cv_c_compiler_gnu
     14864 ac_main_return=return
    1246014865 if test -n "$ac_tool_prefix"; then
    12461    # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
    12462  set dummy ${ac_tool_prefix}gcc; ac_word=$2
     14866-  # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
     14867-set dummy ${ac_tool_prefix}gcc; ac_word=$2
    1246314868-echo "$as_me:1415: checking for $ac_word" >&5
    12464 +echo "$as_me:1418: checking for $ac_word" >&5
    12465  echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    12466  if test "${ac_cv_prog_CC+set}" = set; then
    12467    echo $ECHO_N "(cached) $ECHO_C" >&6
    12468 @@ -1427,7 +1430,7 @@
    12469    test -z "$ac_dir" && ac_dir=.
    12470    $as_executable_p "$ac_dir/$ac_word" || continue
    12471  ac_cv_prog_CC="${ac_tool_prefix}gcc"
     14869-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
     14870-if test "${ac_cv_prog_CC+set}" = set; then
     14871-  echo $ECHO_N "(cached) $ECHO_C" >&6
     14872-else
     14873-  if test -n "$CC"; then
     14874-  ac_cv_prog_CC="$CC" # Let the user override the test.
     14875-else
     14876-  ac_save_IFS=$IFS; IFS=$ac_path_separator
     14877-ac_dummy="$PATH"
     14878-for ac_dir in $ac_dummy; do
     14879-  IFS=$ac_save_IFS
     14880-  test -z "$ac_dir" && ac_dir=.
     14881-  $as_executable_p "$ac_dir/$ac_word" || continue
     14882-ac_cv_prog_CC="${ac_tool_prefix}gcc"
    1247214883-echo "$as_me:1430: found $ac_dir/$ac_word" >&5
    12473 +echo "$as_me:1433: found $ac_dir/$ac_word" >&5
    12474  break
    12475  done
    12476  
    12477 @@ -1435,10 +1438,10 @@
    12478  fi
    12479  CC=$ac_cv_prog_CC
    12480  if test -n "$CC"; then
     14884-break
     14885-done
     14886-
     14887-fi
     14888-fi
     14889-CC=$ac_cv_prog_CC
     14890-if test -n "$CC"; then
    1248114891-  echo "$as_me:1438: result: $CC" >&5
    12482 +  echo "$as_me:1441: result: $CC" >&5
    12483  echo "${ECHO_T}$CC" >&6
    12484  else
     14892-echo "${ECHO_T}$CC" >&6
     14893-else
    1248514894-  echo "$as_me:1441: result: no" >&5
    12486 +  echo "$as_me:1444: result: no" >&5
    12487  echo "${ECHO_T}no" >&6
    12488  fi
    12489  
    12490 @@ -1447,7 +1450,7 @@
    12491    ac_ct_CC=$CC
    12492    # Extract the first word of "gcc", so it can be a program name with args.
    12493  set dummy gcc; ac_word=$2
     14895-echo "${ECHO_T}no" >&6
     14896-fi
     14897-
     14898-fi
     14899-if test -z "$ac_cv_prog_CC"; then
     14900-  ac_ct_CC=$CC
     14901-  # Extract the first word of "gcc", so it can be a program name with args.
     14902-set dummy gcc; ac_word=$2
    1249414903-echo "$as_me:1450: checking for $ac_word" >&5
    12495 +echo "$as_me:1453: checking for $ac_word" >&5
    12496  echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    12497  if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
    12498    echo $ECHO_N "(cached) $ECHO_C" >&6
    12499 @@ -1462,7 +1465,7 @@
    12500    test -z "$ac_dir" && ac_dir=.
    12501    $as_executable_p "$ac_dir/$ac_word" || continue
    12502  ac_cv_prog_ac_ct_CC="gcc"
     14904-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
     14905-if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
     14906-  echo $ECHO_N "(cached) $ECHO_C" >&6
     14907-else
     14908-  if test -n "$ac_ct_CC"; then
     14909-  ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
     14910-else
     14911-  ac_save_IFS=$IFS; IFS=$ac_path_separator
     14912-ac_dummy="$PATH"
     14913-for ac_dir in $ac_dummy; do
     14914-  IFS=$ac_save_IFS
     14915-  test -z "$ac_dir" && ac_dir=.
     14916-  $as_executable_p "$ac_dir/$ac_word" || continue
     14917-ac_cv_prog_ac_ct_CC="gcc"
    1250314918-echo "$as_me:1465: found $ac_dir/$ac_word" >&5
    12504 +echo "$as_me:1468: found $ac_dir/$ac_word" >&5
    12505  break
    12506  done
    12507  
    12508 @@ -1470,10 +1473,10 @@
    12509  fi
    12510  ac_ct_CC=$ac_cv_prog_ac_ct_CC
    12511  if test -n "$ac_ct_CC"; then
     14919-break
     14920-done
     14921-
     14922-fi
     14923-fi
     14924-ac_ct_CC=$ac_cv_prog_ac_ct_CC
     14925-if test -n "$ac_ct_CC"; then
    1251214926-  echo "$as_me:1473: result: $ac_ct_CC" >&5
    12513 +  echo "$as_me:1476: result: $ac_ct_CC" >&5
    12514  echo "${ECHO_T}$ac_ct_CC" >&6
    12515  else
     14927-echo "${ECHO_T}$ac_ct_CC" >&6
     14928-else
    1251614929-  echo "$as_me:1476: result: no" >&5
    12517 +  echo "$as_me:1479: result: no" >&5
    12518  echo "${ECHO_T}no" >&6
    12519  fi
    12520  
    12521 @@ -1486,7 +1489,7 @@
    12522    if test -n "$ac_tool_prefix"; then
    12523    # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
    12524  set dummy ${ac_tool_prefix}cc; ac_word=$2
     14930-echo "${ECHO_T}no" >&6
     14931-fi
     14932-
     14933-  CC=$ac_ct_CC
     14934-else
     14935-  CC="$ac_cv_prog_CC"
     14936-fi
     14937-
     14938-if test -z "$CC"; then
     14939-  if test -n "$ac_tool_prefix"; then
     14940-  # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
     14941-set dummy ${ac_tool_prefix}cc; ac_word=$2
    1252514942-echo "$as_me:1489: checking for $ac_word" >&5
    12526 +echo "$as_me:1492: checking for $ac_word" >&5
    12527  echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    12528  if test "${ac_cv_prog_CC+set}" = set; then
    12529    echo $ECHO_N "(cached) $ECHO_C" >&6
    12530 @@ -1501,7 +1504,7 @@
    12531    test -z "$ac_dir" && ac_dir=.
    12532    $as_executable_p "$ac_dir/$ac_word" || continue
    12533  ac_cv_prog_CC="${ac_tool_prefix}cc"
     14943-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
     14944-if test "${ac_cv_prog_CC+set}" = set; then
     14945-  echo $ECHO_N "(cached) $ECHO_C" >&6
     14946-else
     14947-  if test -n "$CC"; then
     14948-  ac_cv_prog_CC="$CC" # Let the user override the test.
     14949-else
     14950-  ac_save_IFS=$IFS; IFS=$ac_path_separator
     14951-ac_dummy="$PATH"
     14952-for ac_dir in $ac_dummy; do
     14953-  IFS=$ac_save_IFS
     14954-  test -z "$ac_dir" && ac_dir=.
     14955-  $as_executable_p "$ac_dir/$ac_word" || continue
     14956-ac_cv_prog_CC="${ac_tool_prefix}cc"
    1253414957-echo "$as_me:1504: found $ac_dir/$ac_word" >&5
    12535 +echo "$as_me:1507: found $ac_dir/$ac_word" >&5
    12536  break
    12537  done
    12538  
    12539 @@ -1509,10 +1512,10 @@
    12540  fi
    12541  CC=$ac_cv_prog_CC
    12542  if test -n "$CC"; then
     14958-break
     14959-done
     14960-
     14961-fi
     14962-fi
     14963-CC=$ac_cv_prog_CC
     14964-if test -n "$CC"; then
    1254314965-  echo "$as_me:1512: result: $CC" >&5
    12544 +  echo "$as_me:1515: result: $CC" >&5
    12545  echo "${ECHO_T}$CC" >&6
    12546  else
     14966-echo "${ECHO_T}$CC" >&6
     14967-else
    1254714968-  echo "$as_me:1515: result: no" >&5
    12548 +  echo "$as_me:1518: result: no" >&5
    12549  echo "${ECHO_T}no" >&6
    12550  fi
    12551  
    12552 @@ -1521,7 +1524,7 @@
    12553    ac_ct_CC=$CC
    12554    # Extract the first word of "cc", so it can be a program name with args.
    12555  set dummy cc; ac_word=$2
     14969-echo "${ECHO_T}no" >&6
     14970-fi
     14971-
     14972-fi
     14973-if test -z "$ac_cv_prog_CC"; then
     14974-  ac_ct_CC=$CC
     14975-  # Extract the first word of "cc", so it can be a program name with args.
     14976-set dummy cc; ac_word=$2
    1255614977-echo "$as_me:1524: checking for $ac_word" >&5
    12557 +echo "$as_me:1527: checking for $ac_word" >&5
    12558  echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    12559  if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
    12560    echo $ECHO_N "(cached) $ECHO_C" >&6
    12561 @@ -1536,7 +1539,7 @@
    12562    test -z "$ac_dir" && ac_dir=.
    12563    $as_executable_p "$ac_dir/$ac_word" || continue
    12564  ac_cv_prog_ac_ct_CC="cc"
     14978-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
     14979-if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
     14980-  echo $ECHO_N "(cached) $ECHO_C" >&6
     14981-else
     14982-  if test -n "$ac_ct_CC"; then
     14983-  ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test.
     14984-else
     14985-  ac_save_IFS=$IFS; IFS=$ac_path_separator
     14986-ac_dummy="$PATH"
     14987-for ac_dir in $ac_dummy; do
     14988-  IFS=$ac_save_IFS
     14989-  test -z "$ac_dir" && ac_dir=.
     14990-  $as_executable_p "$ac_dir/$ac_word" || continue
     14991-ac_cv_prog_ac_ct_CC="cc"
    1256514992-echo "$as_me:1539: found $ac_dir/$ac_word" >&5
    12566 +echo "$as_me:1542: found $ac_dir/$ac_word" >&5
    12567  break
    12568  done
    12569  
    12570 @@ -1544,10 +1547,10 @@
    12571  fi
    12572  ac_ct_CC=$ac_cv_prog_ac_ct_CC
    12573  if test -n "$ac_ct_CC"; then
     14993-break
     14994-done
     14995-
     14996-fi
     14997-fi
     14998-ac_ct_CC=$ac_cv_prog_ac_ct_CC
     14999-if test -n "$ac_ct_CC"; then
    1257415000-  echo "$as_me:1547: result: $ac_ct_CC" >&5
    12575 +  echo "$as_me:1550: result: $ac_ct_CC" >&5
    12576  echo "${ECHO_T}$ac_ct_CC" >&6
    12577  else
     15001-echo "${ECHO_T}$ac_ct_CC" >&6
     15002-else
    1257815003-  echo "$as_me:1550: result: no" >&5
    12579 +  echo "$as_me:1553: result: no" >&5
    12580  echo "${ECHO_T}no" >&6
    12581  fi
    12582  
    12583 @@ -1560,7 +1563,7 @@
    12584  if test -z "$CC"; then
    12585    # Extract the first word of "cc", so it can be a program name with args.
    12586  set dummy cc; ac_word=$2
     15004-echo "${ECHO_T}no" >&6
     15005-fi
     15006-
     15007-  CC=$ac_ct_CC
     15008-else
     15009-  CC="$ac_cv_prog_CC"
     15010-fi
     15011-
     15012-fi
     15013-if test -z "$CC"; then
     15014-  # Extract the first word of "cc", so it can be a program name with args.
     15015-set dummy cc; ac_word=$2
    1258715016-echo "$as_me:1563: checking for $ac_word" >&5
    12588 +echo "$as_me:1566: checking for $ac_word" >&5
    12589  echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    12590  if test "${ac_cv_prog_CC+set}" = set; then
    12591    echo $ECHO_N "(cached) $ECHO_C" >&6
    12592 @@ -1580,7 +1583,7 @@
    12593    continue
    12594  fi
    12595  ac_cv_prog_CC="cc"
     15017-echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
     15018-if test "${ac_cv_prog_CC+set}" = set; then
     15019-  echo $ECHO_N "(cached) $ECHO_C" >&6
     15020-else
     15021-  if test -n "$CC"; then
     15022-  ac_cv_prog_CC="$CC" # Let the user override the test.
     15023-else
     15024-  ac_prog_rejected=no
     15025-  ac_save_IFS=$IFS; IFS=$ac_path_separator
     15026-ac_dummy="$PATH"
     15027-for ac_dir in $ac_dummy; do
     15028-  IFS=$ac_save_IFS
     15029-  test -z "$ac_dir" && ac_dir=.
     15030-  $as_executable_p "$ac_dir/$ac_word" || continue
     15031-if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then
     15032-  ac_prog_rejected=yes
     15033-  continue
     15034-fi
     15035-ac_cv_prog_CC="cc"
    1259615036-echo "$as_me:1583: found $ac_dir/$ac_word" >&5
    12597 +echo "$as_me:1586: found $ac_dir/$ac_word" >&5
    12598  break
    12599  done
    12600  
    12601 @@ -1602,10 +1605,10 @@
    12602  fi
    12603  CC=$ac_cv_prog_CC
    12604  if test -n "$CC"; then
     15037-break
     15038-done
     15039-
     15040-if test $ac_prog_rejected = yes; then
     15041-  # We found a bogon in the path, so make sure we never use it.
     15042-  set dummy $ac_cv_prog_CC
     15043-  shift
     15044-  if test $# != 0; then
     15045-    # We chose a different compiler from the bogus one.
     15046-    # However, it has the same basename, so the bogon will be chosen
     15047-    # first if we set CC to just the basename; use the full file name.
     15048-    shift
     15049-    set dummy "$ac_dir/$ac_word" ${1+"$@"}
     15050-    shift
     15051-    ac_cv_prog_CC="$@"
     15052-  fi
     15053-fi
     15054-fi
     15055-fi
     15056-CC=$ac_cv_prog_CC
     15057-if test -n "$CC"; then
    1260515058-  echo "$as_me:1605: result: $CC" >&5
    12606 +  echo "$as_me:1608: result: $CC" >&5
    12607  echo "${ECHO_T}$CC" >&6
    12608  else
     15059-echo "${ECHO_T}$CC" >&6
     15060-else
    1260915061-  echo "$as_me:1608: result: no" >&5
    12610 +  echo "$as_me:1611: result: no" >&5
    12611  echo "${ECHO_T}no" >&6
    12612  fi
    12613  
    12614 @@ -1616,7 +1619,7 @@
     15062-echo "${ECHO_T}no" >&6
     15063-fi
     15064-
     15065-fi
     15066-if test -z "$CC"; then
     15067-  if test -n "$ac_tool_prefix"; then
     15068-  for ac_prog in cl
     15069+  for ac_prog in $cf_PROG_CC
    1261515070   do
    1261615071     # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
    1261715072 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
    1261815073-echo "$as_me:1619: checking for $ac_word" >&5
    12619 +echo "$as_me:1622: checking for $ac_word" >&5
     15074+echo "$as_me:1446: checking for $ac_word" >&5
    1262015075 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    1262115076 if test "${ac_cv_prog_CC+set}" = set; then
    1262215077   echo $ECHO_N "(cached) $ECHO_C" >&6
    12623 @@ -1631,7 +1634,7 @@
     15078@@ -1631,7 +1458,7 @@
    1262415079   test -z "$ac_dir" && ac_dir=.
    1262515080   $as_executable_p "$ac_dir/$ac_word" || continue
    1262615081 ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
    1262715082-echo "$as_me:1634: found $ac_dir/$ac_word" >&5
    12628 +echo "$as_me:1637: found $ac_dir/$ac_word" >&5
     15083+echo "$as_me:1461: found $ac_dir/$ac_word" >&5
    1262915084 break
    1263015085 done
    1263115086 
    12632 @@ -1639,10 +1642,10 @@
     15087@@ -1639,10 +1466,10 @@
    1263315088 fi
    1263415089 CC=$ac_cv_prog_CC
    1263515090 if test -n "$CC"; then
    1263615091-  echo "$as_me:1642: result: $CC" >&5
    12637 +  echo "$as_me:1645: result: $CC" >&5
     15092+  echo "$as_me:1469: result: $CC" >&5
    1263815093 echo "${ECHO_T}$CC" >&6
    1263915094 else
    1264015095-  echo "$as_me:1645: result: no" >&5
    12641 +  echo "$as_me:1648: result: no" >&5
     15096+  echo "$as_me:1472: result: no" >&5
    1264215097 echo "${ECHO_T}no" >&6
    1264315098 fi
    1264415099 
    12645 @@ -1655,7 +1658,7 @@
     15100@@ -1651,11 +1478,11 @@
     15101 fi
     15102 if test -z "$CC"; then
     15103   ac_ct_CC=$CC
     15104-  for ac_prog in cl
     15105+  for ac_prog in $cf_PROG_CC
    1264615106 do
    1264715107   # Extract the first word of "$ac_prog", so it can be a program name with args.
    1264815108 set dummy $ac_prog; ac_word=$2
    1264915109-echo "$as_me:1658: checking for $ac_word" >&5
    12650 +echo "$as_me:1661: checking for $ac_word" >&5
     15110+echo "$as_me:1485: checking for $ac_word" >&5
    1265115111 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    1265215112 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
    1265315113   echo $ECHO_N "(cached) $ECHO_C" >&6
    12654 @@ -1670,7 +1673,7 @@
     15114@@ -1670,7 +1497,7 @@
    1265515115   test -z "$ac_dir" && ac_dir=.
    1265615116   $as_executable_p "$ac_dir/$ac_word" || continue
    1265715117 ac_cv_prog_ac_ct_CC="$ac_prog"
    1265815118-echo "$as_me:1673: found $ac_dir/$ac_word" >&5
    12659 +echo "$as_me:1676: found $ac_dir/$ac_word" >&5
     15119+echo "$as_me:1500: found $ac_dir/$ac_word" >&5
    1266015120 break
    1266115121 done
    1266215122 
    12663 @@ -1678,10 +1681,10 @@
     15123@@ -1678,10 +1505,10 @@
    1266415124 fi
    1266515125 ac_ct_CC=$ac_cv_prog_ac_ct_CC
    1266615126 if test -n "$ac_ct_CC"; then
    1266715127-  echo "$as_me:1681: result: $ac_ct_CC" >&5
    12668 +  echo "$as_me:1684: result: $ac_ct_CC" >&5
     15128+  echo "$as_me:1508: result: $ac_ct_CC" >&5
    1266915129 echo "${ECHO_T}$ac_ct_CC" >&6
    1267015130 else
    1267115131-  echo "$as_me:1684: result: no" >&5
    12672 +  echo "$as_me:1687: result: no" >&5
     15132+  echo "$as_me:1511: result: no" >&5
    1267315133 echo "${ECHO_T}no" >&6
    1267415134 fi
    1267515135 
    12676 @@ -1693,32 +1696,32 @@
    12677  
    12678  fi
    12679  
     15136@@ -1691,34 +1518,32 @@
     15137   CC=$ac_ct_CC
     15138 fi
     15139 
     15140-fi
     15141-
    1268015142-test -z "$CC" && { { echo "$as_me:1696: error: no acceptable cc found in \$PATH" >&5
    12681 +test -z "$CC" && { { echo "$as_me:1699: error: no acceptable cc found in \$PATH" >&5
     15143+test -z "$CC" && { { echo "$as_me:1521: error: no acceptable cc found in \$PATH" >&5
    1268215144 echo "$as_me: error: no acceptable cc found in \$PATH" >&2;}
    1268315145    { (exit 1); exit 1; }; }
     
    1268515147 # Provide some information about the compiler.
    1268615148-echo "$as_me:1701:" \
    12687 +echo "$as_me:1704:" \
     15149+echo "$as_me:1526:" \
    1268815150      "checking for C compiler version" >&5
    1268915151 ac_compiler=`set X $ac_compile; echo $2`
    1269015152-{ (eval echo "$as_me:1704: \"$ac_compiler --version </dev/null >&5\"") >&5
    12691 +{ (eval echo "$as_me:1707: \"$ac_compiler --version </dev/null >&5\"") >&5
     15153+{ (eval echo "$as_me:1529: \"$ac_compiler --version </dev/null >&5\"") >&5
    1269215154   (eval $ac_compiler --version </dev/null >&5) 2>&5
    1269315155   ac_status=$?
    1269415156-  echo "$as_me:1707: \$? = $ac_status" >&5
    12695 +  echo "$as_me:1710: \$? = $ac_status" >&5
     15157+  echo "$as_me:1532: \$? = $ac_status" >&5
    1269615158   (exit $ac_status); }
    1269715159-{ (eval echo "$as_me:1709: \"$ac_compiler -v </dev/null >&5\"") >&5
    12698 +{ (eval echo "$as_me:1712: \"$ac_compiler -v </dev/null >&5\"") >&5
     15160+{ (eval echo "$as_me:1534: \"$ac_compiler -v </dev/null >&5\"") >&5
    1269915161   (eval $ac_compiler -v </dev/null >&5) 2>&5
    1270015162   ac_status=$?
    1270115163-  echo "$as_me:1712: \$? = $ac_status" >&5
    12702 +  echo "$as_me:1715: \$? = $ac_status" >&5
     15164+  echo "$as_me:1537: \$? = $ac_status" >&5
    1270315165   (exit $ac_status); }
    1270415166-{ (eval echo "$as_me:1714: \"$ac_compiler -V </dev/null >&5\"") >&5
    12705 +{ (eval echo "$as_me:1717: \"$ac_compiler -V </dev/null >&5\"") >&5
     15167+{ (eval echo "$as_me:1539: \"$ac_compiler -V </dev/null >&5\"") >&5
    1270615168   (eval $ac_compiler -V </dev/null >&5) 2>&5
    1270715169   ac_status=$?
    1270815170-  echo "$as_me:1717: \$? = $ac_status" >&5
    12709 +  echo "$as_me:1720: \$? = $ac_status" >&5
     15171+  echo "$as_me:1542: \$? = $ac_status" >&5
    1271015172   (exit $ac_status); }
    1271115173 
    1271215174 cat >conftest.$ac_ext <<_ACEOF
    1271315175-#line 1721 "configure"
    12714 +#line 1724 "configure"
     15176+#line 1546 "configure"
    1271515177 #include "confdefs.h"
    1271615178 
    1271715179 int
    12718 @@ -1734,13 +1737,13 @@
     15180@@ -1734,13 +1559,13 @@
    1271915181 # Try to create an executable without -o first, disregard a.out.
    1272015182 # It will help us diagnose broken compilers, and finding out an intuition
    1272115183 # of exeext.
    1272215184-echo "$as_me:1737: checking for C compiler default output" >&5
    12723 +echo "$as_me:1740: checking for C compiler default output" >&5
     15185+echo "$as_me:1562: checking for C compiler default output" >&5
    1272415186 echo $ECHO_N "checking for C compiler default output... $ECHO_C" >&6
    1272515187 ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
    1272615188-if { (eval echo "$as_me:1740: \"$ac_link_default\"") >&5
    12727 +if { (eval echo "$as_me:1743: \"$ac_link_default\"") >&5
     15189+if { (eval echo "$as_me:1565: \"$ac_link_default\"") >&5
    1272815190   (eval $ac_link_default) 2>&5
    1272915191   ac_status=$?
    1273015192-  echo "$as_me:1743: \$? = $ac_status" >&5
    12731 +  echo "$as_me:1746: \$? = $ac_status" >&5
     15193+  echo "$as_me:1568: \$? = $ac_status" >&5
    1273215194   (exit $ac_status); }; then
    1273315195   # Find the output, starting from the most likely.  This scheme is
    1273415196 # not robust to junk in `.', hence go to wildcards (a.*) only as a last
    12735 @@ -1763,34 +1766,34 @@
     15197@@ -1763,34 +1588,34 @@
    1273615198 else
    1273715199   echo "$as_me: failed program was:" >&5
    1273815200 cat conftest.$ac_ext >&5
    1273915201-{ { echo "$as_me:1766: error: C compiler cannot create executables" >&5
    12740 +{ { echo "$as_me:1769: error: C compiler cannot create executables" >&5
     15202+{ { echo "$as_me:1591: error: C compiler cannot create executables" >&5
    1274115203 echo "$as_me: error: C compiler cannot create executables" >&2;}
    1274215204    { (exit 77); exit 77; }; }
     
    1274515207 ac_exeext=$ac_cv_exeext
    1274615208-echo "$as_me:1772: result: $ac_file" >&5
    12747 +echo "$as_me:1775: result: $ac_file" >&5
     15209+echo "$as_me:1597: result: $ac_file" >&5
    1274815210 echo "${ECHO_T}$ac_file" >&6
    1274915211 
     
    1275115213 # the compiler is broken, or we cross compile.
    1275215214-echo "$as_me:1777: checking whether the C compiler works" >&5
    12753 +echo "$as_me:1780: checking whether the C compiler works" >&5
     15215+echo "$as_me:1602: checking whether the C compiler works" >&5
    1275415216 echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6
    1275515217 # FIXME: These cross compiler hacks should be removed for Autoconf 3.0
     
    1275815220   if { ac_try='./$ac_file'
    1275915221-  { (eval echo "$as_me:1783: \"$ac_try\"") >&5
    12760 +  { (eval echo "$as_me:1786: \"$ac_try\"") >&5
     15222+  { (eval echo "$as_me:1608: \"$ac_try\"") >&5
    1276115223   (eval $ac_try) 2>&5
    1276215224   ac_status=$?
    1276315225-  echo "$as_me:1786: \$? = $ac_status" >&5
    12764 +  echo "$as_me:1789: \$? = $ac_status" >&5
     15226+  echo "$as_me:1611: \$? = $ac_status" >&5
    1276515227   (exit $ac_status); }; }; then
    1276615228     cross_compiling=no
     
    1277015232     else
    1277115233-       { { echo "$as_me:1793: error: cannot run C compiled programs.
    12772 +       { { echo "$as_me:1796: error: cannot run C compiled programs.
     15234+       { { echo "$as_me:1618: error: cannot run C compiled programs.
    1277315235 If you meant to cross compile, use \`--host'." >&5
    1277415236 echo "$as_me: error: cannot run C compiled programs.
    1277515237 If you meant to cross compile, use \`--host'." >&2;}
    12776 @@ -1798,24 +1801,24 @@
     15238@@ -1798,24 +1623,24 @@
    1277715239     fi
    1277815240   fi
    1277915241 fi
    1278015242-echo "$as_me:1801: result: yes" >&5
    12781 +echo "$as_me:1804: result: yes" >&5
     15243+echo "$as_me:1626: result: yes" >&5
    1278215244 echo "${ECHO_T}yes" >&6
    1278315245 
     
    1278715249 # the compiler is broken, or we cross compile.
    1278815250-echo "$as_me:1808: checking whether we are cross compiling" >&5
    12789 +echo "$as_me:1811: checking whether we are cross compiling" >&5
     15251+echo "$as_me:1633: checking whether we are cross compiling" >&5
    1279015252 echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6
    1279115253-echo "$as_me:1810: result: $cross_compiling" >&5
    12792 +echo "$as_me:1813: result: $cross_compiling" >&5
     15254+echo "$as_me:1635: result: $cross_compiling" >&5
    1279315255 echo "${ECHO_T}$cross_compiling" >&6
    1279415256 
    1279515257-echo "$as_me:1813: checking for executable suffix" >&5
    12796 +echo "$as_me:1816: checking for executable suffix" >&5
     15258+echo "$as_me:1638: checking for executable suffix" >&5
    1279715259 echo $ECHO_N "checking for executable suffix... $ECHO_C" >&6
    1279815260-if { (eval echo "$as_me:1815: \"$ac_link\"") >&5
    12799 +if { (eval echo "$as_me:1818: \"$ac_link\"") >&5
     15261+if { (eval echo "$as_me:1640: \"$ac_link\"") >&5
    1280015262   (eval $ac_link) 2>&5
    1280115263   ac_status=$?
    1280215264-  echo "$as_me:1818: \$? = $ac_status" >&5
    12803 +  echo "$as_me:1821: \$? = $ac_status" >&5
     15265+  echo "$as_me:1643: \$? = $ac_status" >&5
    1280415266   (exit $ac_status); }; then
    1280515267   # If both `conftest.exe' and `conftest' are `present' (well, observable)
    1280615268 # catch `conftest.exe'.  For instance with Cygwin, `ls conftest' will
    12807 @@ -1831,25 +1834,25 @@
     15269@@ -1831,25 +1656,25 @@
    1280815270   esac
    1280915271 done
    1281015272 else
    1281115273-  { { echo "$as_me:1834: error: cannot compute EXEEXT: cannot compile and link" >&5
    12812 +  { { echo "$as_me:1837: error: cannot compute EXEEXT: cannot compile and link" >&5
     15274+  { { echo "$as_me:1659: error: cannot compute EXEEXT: cannot compile and link" >&5
    1281315275 echo "$as_me: error: cannot compute EXEEXT: cannot compile and link" >&2;}
    1281415276    { (exit 1); exit 1; }; }
     
    1281715279 rm -f conftest$ac_cv_exeext
    1281815280-echo "$as_me:1840: result: $ac_cv_exeext" >&5
    12819 +echo "$as_me:1843: result: $ac_cv_exeext" >&5
     15281+echo "$as_me:1665: result: $ac_cv_exeext" >&5
    1282015282 echo "${ECHO_T}$ac_cv_exeext" >&6
    1282115283 
     
    1282415286 ac_exeext=$EXEEXT
    1282515287-echo "$as_me:1846: checking for object suffix" >&5
    12826 +echo "$as_me:1849: checking for object suffix" >&5
     15288+echo "$as_me:1671: checking for object suffix" >&5
    1282715289 echo $ECHO_N "checking for object suffix... $ECHO_C" >&6
    1282815290 if test "${ac_cv_objext+set}" = set; then
     
    1283115293   cat >conftest.$ac_ext <<_ACEOF
    1283215294-#line 1852 "configure"
    12833 +#line 1855 "configure"
     15295+#line 1677 "configure"
    1283415296 #include "confdefs.h"
    1283515297 
    1283615298 int
    12837 @@ -1861,10 +1864,10 @@
     15299@@ -1861,10 +1686,10 @@
    1283815300 }
    1283915301 _ACEOF
    1284015302 rm -f conftest.o conftest.obj
    1284115303-if { (eval echo "$as_me:1864: \"$ac_compile\"") >&5
    12842 +if { (eval echo "$as_me:1867: \"$ac_compile\"") >&5
     15304+if { (eval echo "$as_me:1689: \"$ac_compile\"") >&5
    1284315305   (eval $ac_compile) 2>&5
    1284415306   ac_status=$?
    1284515307-  echo "$as_me:1867: \$? = $ac_status" >&5
    12846 +  echo "$as_me:1870: \$? = $ac_status" >&5
     15308+  echo "$as_me:1692: \$? = $ac_status" >&5
    1284715309   (exit $ac_status); }; then
    1284815310   for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do
    1284915311   case $ac_file in
    12850 @@ -1876,24 +1879,24 @@
     15312@@ -1876,24 +1701,24 @@
    1285115313 else
    1285215314   echo "$as_me: failed program was:" >&5
    1285315315 cat conftest.$ac_ext >&5
    1285415316-{ { echo "$as_me:1879: error: cannot compute OBJEXT: cannot compile" >&5
    12855 +{ { echo "$as_me:1882: error: cannot compute OBJEXT: cannot compile" >&5
     15317+{ { echo "$as_me:1704: error: cannot compute OBJEXT: cannot compile" >&5
    1285615318 echo "$as_me: error: cannot compute OBJEXT: cannot compile" >&2;}
    1285715319    { (exit 1); exit 1; }; }
     
    1286115323 fi
    1286215324-echo "$as_me:1886: result: $ac_cv_objext" >&5
    12863 +echo "$as_me:1889: result: $ac_cv_objext" >&5
     15325+echo "$as_me:1711: result: $ac_cv_objext" >&5
    1286415326 echo "${ECHO_T}$ac_cv_objext" >&6
    1286515327 OBJEXT=$ac_cv_objext
    1286615328 ac_objext=$OBJEXT
    1286715329-echo "$as_me:1890: checking whether we are using the GNU C compiler" >&5
    12868 +echo "$as_me:1893: checking whether we are using the GNU C compiler" >&5
     15330+echo "$as_me:1715: checking whether we are using the GNU C compiler" >&5
    1286915331 echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6
    1287015332 if test "${ac_cv_c_compiler_gnu+set}" = set; then
     
    1287315335   cat >conftest.$ac_ext <<_ACEOF
    1287415336-#line 1896 "configure"
    12875 +#line 1899 "configure"
     15337+#line 1721 "configure"
    1287615338 #include "confdefs.h"
    1287715339 
    1287815340 int
    12879 @@ -1908,16 +1911,16 @@
     15341@@ -1908,16 +1733,16 @@
    1288015342 }
    1288115343 _ACEOF
    1288215344 rm -f conftest.$ac_objext
    1288315345-if { (eval echo "$as_me:1911: \"$ac_compile\"") >&5
    12884 +if { (eval echo "$as_me:1914: \"$ac_compile\"") >&5
     15346+if { (eval echo "$as_me:1736: \"$ac_compile\"") >&5
    1288515347   (eval $ac_compile) 2>&5
    1288615348   ac_status=$?
    1288715349-  echo "$as_me:1914: \$? = $ac_status" >&5
    12888 +  echo "$as_me:1917: \$? = $ac_status" >&5
     15350+  echo "$as_me:1739: \$? = $ac_status" >&5
    1288915351   (exit $ac_status); } &&
    1289015352          { ac_try='test -s conftest.$ac_objext'
    1289115353-  { (eval echo "$as_me:1917: \"$ac_try\"") >&5
    12892 +  { (eval echo "$as_me:1920: \"$ac_try\"") >&5
     15354+  { (eval echo "$as_me:1742: \"$ac_try\"") >&5
    1289315355   (eval $ac_try) 2>&5
    1289415356   ac_status=$?
    1289515357-  echo "$as_me:1920: \$? = $ac_status" >&5
    12896 +  echo "$as_me:1923: \$? = $ac_status" >&5
     15358+  echo "$as_me:1745: \$? = $ac_status" >&5
    1289715359   (exit $ac_status); }; }; then
    1289815360   ac_compiler_gnu=yes
    1289915361 else
    12900 @@ -1929,19 +1932,19 @@
     15362@@ -1929,19 +1754,19 @@
    1290115363 ac_cv_c_compiler_gnu=$ac_compiler_gnu
    1290215364 
    1290315365 fi
    1290415366-echo "$as_me:1932: result: $ac_cv_c_compiler_gnu" >&5
    12905 +echo "$as_me:1935: result: $ac_cv_c_compiler_gnu" >&5
     15367+echo "$as_me:1757: result: $ac_cv_c_compiler_gnu" >&5
    1290615368 echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6
    1290715369 GCC=`test $ac_compiler_gnu = yes && echo yes`
     
    1291015372 CFLAGS="-g"
    1291115373-echo "$as_me:1938: checking whether $CC accepts -g" >&5
    12912 +echo "$as_me:1941: checking whether $CC accepts -g" >&5
     15374+echo "$as_me:1763: checking whether $CC accepts -g" >&5
    1291315375 echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6
    1291415376 if test "${ac_cv_prog_cc_g+set}" = set; then
     
    1291715379   cat >conftest.$ac_ext <<_ACEOF
    1291815380-#line 1944 "configure"
    12919 +#line 1947 "configure"
     15381+#line 1769 "configure"
    1292015382 #include "confdefs.h"
    1292115383 
    1292215384 int
    12923 @@ -1953,16 +1956,16 @@
     15385@@ -1953,16 +1778,16 @@
    1292415386 }
    1292515387 _ACEOF
    1292615388 rm -f conftest.$ac_objext
    1292715389-if { (eval echo "$as_me:1956: \"$ac_compile\"") >&5
    12928 +if { (eval echo "$as_me:1959: \"$ac_compile\"") >&5
     15390+if { (eval echo "$as_me:1781: \"$ac_compile\"") >&5
    1292915391   (eval $ac_compile) 2>&5
    1293015392   ac_status=$?
    1293115393-  echo "$as_me:1959: \$? = $ac_status" >&5
    12932 +  echo "$as_me:1962: \$? = $ac_status" >&5
     15394+  echo "$as_me:1784: \$? = $ac_status" >&5
    1293315395   (exit $ac_status); } &&
    1293415396          { ac_try='test -s conftest.$ac_objext'
    1293515397-  { (eval echo "$as_me:1962: \"$ac_try\"") >&5
    12936 +  { (eval echo "$as_me:1965: \"$ac_try\"") >&5
     15398+  { (eval echo "$as_me:1787: \"$ac_try\"") >&5
    1293715399   (eval $ac_try) 2>&5
    1293815400   ac_status=$?
    1293915401-  echo "$as_me:1965: \$? = $ac_status" >&5
    12940 +  echo "$as_me:1968: \$? = $ac_status" >&5
     15402+  echo "$as_me:1790: \$? = $ac_status" >&5
    1294115403   (exit $ac_status); }; }; then
    1294215404   ac_cv_prog_cc_g=yes
    1294315405 else
    12944 @@ -1972,7 +1975,7 @@
     15406@@ -1972,7 +1797,7 @@
    1294515407 fi
    1294615408 rm -f conftest.$ac_objext conftest.$ac_ext
    1294715409 fi
    1294815410-echo "$as_me:1975: result: $ac_cv_prog_cc_g" >&5
    12949 +echo "$as_me:1978: result: $ac_cv_prog_cc_g" >&5
     15411+echo "$as_me:1800: result: $ac_cv_prog_cc_g" >&5
    1295015412 echo "${ECHO_T}$ac_cv_prog_cc_g" >&6
    1295115413 if test "$ac_test_CFLAGS" = set; then
    1295215414   CFLAGS=$ac_save_CFLAGS
    12953 @@ -1999,16 +2002,16 @@
     15415@@ -1999,16 +1824,16 @@
    1295415416 #endif
    1295515417 _ACEOF
    1295615418 rm -f conftest.$ac_objext
    1295715419-if { (eval echo "$as_me:2002: \"$ac_compile\"") >&5
    12958 +if { (eval echo "$as_me:2005: \"$ac_compile\"") >&5
     15420+if { (eval echo "$as_me:1827: \"$ac_compile\"") >&5
    1295915421   (eval $ac_compile) 2>&5
    1296015422   ac_status=$?
    1296115423-  echo "$as_me:2005: \$? = $ac_status" >&5
    12962 +  echo "$as_me:2008: \$? = $ac_status" >&5
     15424+  echo "$as_me:1830: \$? = $ac_status" >&5
    1296315425   (exit $ac_status); } &&
    1296415426          { ac_try='test -s conftest.$ac_objext'
    1296515427-  { (eval echo "$as_me:2008: \"$ac_try\"") >&5
    12966 +  { (eval echo "$as_me:2011: \"$ac_try\"") >&5
     15428+  { (eval echo "$as_me:1833: \"$ac_try\"") >&5
    1296715429   (eval $ac_try) 2>&5
    1296815430   ac_status=$?
    1296915431-  echo "$as_me:2011: \$? = $ac_status" >&5
    12970 +  echo "$as_me:2014: \$? = $ac_status" >&5
     15432+  echo "$as_me:1836: \$? = $ac_status" >&5
    1297115433   (exit $ac_status); }; }; then
    1297215434   for ac_declaration in \
    1297315435    ''\
    12974 @@ -2020,7 +2023,7 @@
     15436@@ -2020,7 +1845,7 @@
    1297515437    'void exit (int);'
    1297615438 do
    1297715439   cat >conftest.$ac_ext <<_ACEOF
    1297815440-#line 2023 "configure"
    12979 +#line 2026 "configure"
     15441+#line 1848 "configure"
    1298015442 #include "confdefs.h"
    1298115443 #include <stdlib.h>
    1298215444 $ac_declaration
    12983 @@ -2033,16 +2036,16 @@
     15445@@ -2033,16 +1858,16 @@
    1298415446 }
    1298515447 _ACEOF
    1298615448 rm -f conftest.$ac_objext
    1298715449-if { (eval echo "$as_me:2036: \"$ac_compile\"") >&5
    12988 +if { (eval echo "$as_me:2039: \"$ac_compile\"") >&5
     15450+if { (eval echo "$as_me:1861: \"$ac_compile\"") >&5
    1298915451   (eval $ac_compile) 2>&5
    1299015452   ac_status=$?
    1299115453-  echo "$as_me:2039: \$? = $ac_status" >&5
    12992 +  echo "$as_me:2042: \$? = $ac_status" >&5
     15454+  echo "$as_me:1864: \$? = $ac_status" >&5
    1299315455   (exit $ac_status); } &&
    1299415456          { ac_try='test -s conftest.$ac_objext'
    1299515457-  { (eval echo "$as_me:2042: \"$ac_try\"") >&5
    12996 +  { (eval echo "$as_me:2045: \"$ac_try\"") >&5
     15458+  { (eval echo "$as_me:1867: \"$ac_try\"") >&5
    1299715459   (eval $ac_try) 2>&5
    1299815460   ac_status=$?
    1299915461-  echo "$as_me:2045: \$? = $ac_status" >&5
    13000 +  echo "$as_me:2048: \$? = $ac_status" >&5
     15462+  echo "$as_me:1870: \$? = $ac_status" >&5
    1300115463   (exit $ac_status); }; }; then
    1300215464   :
    1300315465 else
    13004 @@ -2052,7 +2055,7 @@
     15466@@ -2052,7 +1877,7 @@
    1300515467 fi
    1300615468 rm -f conftest.$ac_objext conftest.$ac_ext
    1300715469   cat >conftest.$ac_ext <<_ACEOF
    1300815470-#line 2055 "configure"
    13009 +#line 2058 "configure"
     15471+#line 1880 "configure"
    1301015472 #include "confdefs.h"
    1301115473 $ac_declaration
    1301215474 int
    13013 @@ -2064,16 +2067,16 @@
     15475@@ -2064,16 +1889,16 @@
    1301415476 }
    1301515477 _ACEOF
    1301615478 rm -f conftest.$ac_objext
    1301715479-if { (eval echo "$as_me:2067: \"$ac_compile\"") >&5
    13018 +if { (eval echo "$as_me:2070: \"$ac_compile\"") >&5
     15480+if { (eval echo "$as_me:1892: \"$ac_compile\"") >&5
    1301915481   (eval $ac_compile) 2>&5
    1302015482   ac_status=$?
    1302115483-  echo "$as_me:2070: \$? = $ac_status" >&5
    13022 +  echo "$as_me:2073: \$? = $ac_status" >&5
     15484+  echo "$as_me:1895: \$? = $ac_status" >&5
    1302315485   (exit $ac_status); } &&
    1302415486          { ac_try='test -s conftest.$ac_objext'
    1302515487-  { (eval echo "$as_me:2073: \"$ac_try\"") >&5
    13026 +  { (eval echo "$as_me:2076: \"$ac_try\"") >&5
     15488+  { (eval echo "$as_me:1898: \"$ac_try\"") >&5
    1302715489   (eval $ac_try) 2>&5
    1302815490   ac_status=$?
    1302915491-  echo "$as_me:2076: \$? = $ac_status" >&5
    13030 +  echo "$as_me:2079: \$? = $ac_status" >&5
     15492+  echo "$as_me:1901: \$? = $ac_status" >&5
    1303115493   (exit $ac_status); }; }; then
    1303215494   break
    1303315495 else
    13034 @@ -2103,11 +2106,11 @@
     15496@@ -2103,11 +1928,11 @@
    1303515497 
    1303615498 GCC_VERSION=none
    1303715499 if test "$GCC" = yes ; then
    1303815500-       echo "$as_me:2106: checking version of $CC" >&5
    13039 +       echo "$as_me:2109: checking version of $CC" >&5
     15501+       echo "$as_me:1931: checking version of $CC" >&5
    1304015502 echo $ECHO_N "checking version of $CC... $ECHO_C" >&6
    1304115503        GCC_VERSION="`${CC} --version 2>/dev/null | sed -e '2,$d' -e 's/^.*(GCC) //' -e 's/^[^0-9.]*//' -e 's/[^0-9.].*//'`"
    1304215504        test -z "$GCC_VERSION" && GCC_VERSION=unknown
    1304315505-       echo "$as_me:2110: result: $GCC_VERSION" >&5
    13044 +       echo "$as_me:2113: result: $GCC_VERSION" >&5
     15506+       echo "$as_me:1935: result: $GCC_VERSION" >&5
    1304515507 echo "${ECHO_T}$GCC_VERSION" >&6
    1304615508 fi
    1304715509 
    13048 @@ -2117,7 +2120,7 @@
     15510@@ -2117,7 +1942,7 @@
    1304915511 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
    1305015512 ac_compiler_gnu=$ac_cv_c_compiler_gnu
    1305115513 ac_main_return=return
    1305215514-echo "$as_me:2120: checking how to run the C preprocessor" >&5
    13053 +echo "$as_me:2123: checking how to run the C preprocessor" >&5
     15515+echo "$as_me:1945: checking how to run the C preprocessor" >&5
    1305415516 echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6
    1305515517 # On Suns, sometimes $CPP names a directory.
    1305615518 if test -n "$CPP" && test -d "$CPP"; then
    13057 @@ -2138,18 +2141,18 @@
     15519@@ -2138,18 +1963,18 @@
    1305815520   # On the NeXT, cc -E runs the code through the compiler's parser,
    1305915521   # not just through cpp. "Syntax error" is here to catch this case.
    1306015522   cat >conftest.$ac_ext <<_ACEOF
    1306115523-#line 2141 "configure"
    13062 +#line 2144 "configure"
     15524+#line 1966 "configure"
    1306315525 #include "confdefs.h"
    1306415526 #include <assert.h>
     
    1306615528 _ACEOF
    1306715529-if { (eval echo "$as_me:2146: \"$ac_cpp conftest.$ac_ext\"") >&5
    13068 +if { (eval echo "$as_me:2149: \"$ac_cpp conftest.$ac_ext\"") >&5
     15530+if { (eval echo "$as_me:1971: \"$ac_cpp conftest.$ac_ext\"") >&5
    1306915531   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
    1307015532   ac_status=$?
     
    1307315535   cat conftest.err >&5
    1307415536-  echo "$as_me:2152: \$? = $ac_status" >&5
    13075 +  echo "$as_me:2155: \$? = $ac_status" >&5
     15537+  echo "$as_me:1977: \$? = $ac_status" >&5
    1307615538   (exit $ac_status); } >/dev/null; then
    1307715539   if test -s conftest.err; then
    1307815540     ac_cpp_err=$ac_c_preproc_warn_flag
    13079 @@ -2172,17 +2175,17 @@
     15541@@ -2172,17 +1997,17 @@
    1308015542   # OK, works on sane cases.  Now check whether non-existent headers
    1308115543   # can be detected and how.
    1308215544   cat >conftest.$ac_ext <<_ACEOF
    1308315545-#line 2175 "configure"
    13084 +#line 2178 "configure"
     15546+#line 2000 "configure"
    1308515547 #include "confdefs.h"
    1308615548 #include <ac_nonexistent.h>
    1308715549 _ACEOF
    1308815550-if { (eval echo "$as_me:2179: \"$ac_cpp conftest.$ac_ext\"") >&5
    13089 +if { (eval echo "$as_me:2182: \"$ac_cpp conftest.$ac_ext\"") >&5
     15551+if { (eval echo "$as_me:2004: \"$ac_cpp conftest.$ac_ext\"") >&5
    1309015552   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
    1309115553   ac_status=$?
     
    1309415556   cat conftest.err >&5
    1309515557-  echo "$as_me:2185: \$? = $ac_status" >&5
    13096 +  echo "$as_me:2188: \$? = $ac_status" >&5
     15558+  echo "$as_me:2010: \$? = $ac_status" >&5
    1309715559   (exit $ac_status); } >/dev/null; then
    1309815560   if test -s conftest.err; then
    1309915561     ac_cpp_err=$ac_c_preproc_warn_flag
    13100 @@ -2219,7 +2222,7 @@
     15562@@ -2219,7 +2044,7 @@
    1310115563 else
    1310215564   ac_cv_prog_CPP=$CPP
    1310315565 fi
    1310415566-echo "$as_me:2222: result: $CPP" >&5
    13105 +echo "$as_me:2225: result: $CPP" >&5
     15567+echo "$as_me:2047: result: $CPP" >&5
    1310615568 echo "${ECHO_T}$CPP" >&6
    1310715569 ac_preproc_ok=false
    1310815570 for ac_c_preproc_warn_flag in '' yes
    13109 @@ -2229,18 +2232,18 @@
     15571@@ -2229,18 +2054,18 @@
    1311015572   # On the NeXT, cc -E runs the code through the compiler's parser,
    1311115573   # not just through cpp. "Syntax error" is here to catch this case.
    1311215574   cat >conftest.$ac_ext <<_ACEOF
    1311315575-#line 2232 "configure"
    13114 +#line 2235 "configure"
     15576+#line 2057 "configure"
    1311515577 #include "confdefs.h"
    1311615578 #include <assert.h>
     
    1311815580 _ACEOF
    1311915581-if { (eval echo "$as_me:2237: \"$ac_cpp conftest.$ac_ext\"") >&5
    13120 +if { (eval echo "$as_me:2240: \"$ac_cpp conftest.$ac_ext\"") >&5
     15582+if { (eval echo "$as_me:2062: \"$ac_cpp conftest.$ac_ext\"") >&5
    1312115583   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
    1312215584   ac_status=$?
     
    1312515587   cat conftest.err >&5
    1312615588-  echo "$as_me:2243: \$? = $ac_status" >&5
    13127 +  echo "$as_me:2246: \$? = $ac_status" >&5
     15589+  echo "$as_me:2068: \$? = $ac_status" >&5
    1312815590   (exit $ac_status); } >/dev/null; then
    1312915591   if test -s conftest.err; then
    1313015592     ac_cpp_err=$ac_c_preproc_warn_flag
    13131 @@ -2263,17 +2266,17 @@
     15593@@ -2263,17 +2088,17 @@
    1313215594   # OK, works on sane cases.  Now check whether non-existent headers
    1313315595   # can be detected and how.
    1313415596   cat >conftest.$ac_ext <<_ACEOF
    1313515597-#line 2266 "configure"
    13136 +#line 2269 "configure"
     15598+#line 2091 "configure"
    1313715599 #include "confdefs.h"
    1313815600 #include <ac_nonexistent.h>
    1313915601 _ACEOF
    1314015602-if { (eval echo "$as_me:2270: \"$ac_cpp conftest.$ac_ext\"") >&5
    13141 +if { (eval echo "$as_me:2273: \"$ac_cpp conftest.$ac_ext\"") >&5
     15603+if { (eval echo "$as_me:2095: \"$ac_cpp conftest.$ac_ext\"") >&5
    1314215604   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
    1314315605   ac_status=$?
     
    1314615608   cat conftest.err >&5
    1314715609-  echo "$as_me:2276: \$? = $ac_status" >&5
    13148 +  echo "$as_me:2279: \$? = $ac_status" >&5
     15610+  echo "$as_me:2101: \$? = $ac_status" >&5
    1314915611   (exit $ac_status); } >/dev/null; then
    1315015612   if test -s conftest.err; then
    1315115613     ac_cpp_err=$ac_c_preproc_warn_flag
    13152 @@ -2301,7 +2304,7 @@
     15614@@ -2301,7 +2126,7 @@
    1315315615 if $ac_preproc_ok; then
    1315415616   :
    1315515617 else
    1315615618-  { { echo "$as_me:2304: error: C preprocessor \"$CPP\" fails sanity check" >&5
    13157 +  { { echo "$as_me:2307: error: C preprocessor \"$CPP\" fails sanity check" >&5
     15619+  { { echo "$as_me:2129: error: C preprocessor \"$CPP\" fails sanity check" >&5
    1315815620 echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check" >&2;}
    1315915621    { (exit 1); exit 1; }; }
    1316015622 fi
    13161 @@ -2314,14 +2317,14 @@
     15623@@ -2314,14 +2139,14 @@
    1316215624 ac_main_return=return
    1316315625 
    1316415626 if test $ac_cv_c_compiler_gnu = yes; then
    1316515627-    echo "$as_me:2317: checking whether $CC needs -traditional" >&5
    13166 +    echo "$as_me:2320: checking whether $CC needs -traditional" >&5
     15628+    echo "$as_me:2142: checking whether $CC needs -traditional" >&5
    1316715629 echo $ECHO_N "checking whether $CC needs -traditional... $ECHO_C" >&6
    1316815630 if test "${ac_cv_prog_gcc_traditional+set}" = set; then
     
    1317215634   cat >conftest.$ac_ext <<_ACEOF
    1317315635-#line 2324 "configure"
    13174 +#line 2327 "configure"
     15636+#line 2149 "configure"
    1317515637 #include "confdefs.h"
    1317615638 #include <sgtty.h>
    1317715639 int Autoconf = TIOCGETP;
    13178 @@ -2336,7 +2339,7 @@
     15640@@ -2336,7 +2161,7 @@
    1317915641 
    1318015642   if test $ac_cv_prog_gcc_traditional = no; then
    1318115643     cat >conftest.$ac_ext <<_ACEOF
    1318215644-#line 2339 "configure"
    13183 +#line 2342 "configure"
     15645+#line 2164 "configure"
    1318415646 #include "confdefs.h"
    1318515647 #include <termio.h>
    1318615648 int Autoconf = TCGETA;
    13187 @@ -2349,14 +2352,14 @@
     15649@@ -2349,14 +2174,14 @@
    1318815650 
    1318915651   fi
    1319015652 fi
    1319115653-echo "$as_me:2352: result: $ac_cv_prog_gcc_traditional" >&5
    13192 +echo "$as_me:2355: result: $ac_cv_prog_gcc_traditional" >&5
     15654+echo "$as_me:2177: result: $ac_cv_prog_gcc_traditional" >&5
    1319315655 echo "${ECHO_T}$ac_cv_prog_gcc_traditional" >&6
    1319415656   if test $ac_cv_prog_gcc_traditional = yes; then
     
    1319815660 
    1319915661-echo "$as_me:2359: checking whether $CC understands -c and -o together" >&5
    13200 +echo "$as_me:2362: checking whether $CC understands -c and -o together" >&5
     15662+echo "$as_me:2184: checking whether $CC understands -c and -o together" >&5
    1320115663 echo $ECHO_N "checking whether $CC understands -c and -o together... $ECHO_C" >&6
    1320215664 if test "${cf_cv_prog_CC_c_o+set}" = set; then
    1320315665   echo $ECHO_N "(cached) $ECHO_C" >&6
    13204 @@ -2372,15 +2375,15 @@
     15666@@ -2372,15 +2197,15 @@
    1320515667 # We do the test twice because some compilers refuse to overwrite an
    1320615668 # existing .o file with -o, though they will create one.
    1320715669 ac_try='$CC -c conftest.$ac_ext -o conftest2.$ac_objext >&5'
    1320815670-if { (eval echo "$as_me:2375: \"$ac_try\"") >&5
    13209 +if { (eval echo "$as_me:2378: \"$ac_try\"") >&5
     15671+if { (eval echo "$as_me:2200: \"$ac_try\"") >&5
    1321015672   (eval $ac_try) 2>&5
    1321115673   ac_status=$?
    1321215674-  echo "$as_me:2378: \$? = $ac_status" >&5
    13213 +  echo "$as_me:2381: \$? = $ac_status" >&5
     15675+  echo "$as_me:2203: \$? = $ac_status" >&5
    1321415676   (exit $ac_status); } &&
    1321515677-  test -f conftest2.$ac_objext && { (eval echo "$as_me:2380: \"$ac_try\"") >&5
    13216 +  test -f conftest2.$ac_objext && { (eval echo "$as_me:2383: \"$ac_try\"") >&5
     15678+  test -f conftest2.$ac_objext && { (eval echo "$as_me:2205: \"$ac_try\"") >&5
    1321715679   (eval $ac_try) 2>&5
    1321815680   ac_status=$?
    1321915681-  echo "$as_me:2383: \$? = $ac_status" >&5
    13220 +  echo "$as_me:2386: \$? = $ac_status" >&5
     15682+  echo "$as_me:2208: \$? = $ac_status" >&5
    1322115683   (exit $ac_status); };
    1322215684 then
    1322315685   eval cf_cv_prog_CC_c_o=yes
    13224 @@ -2391,19 +2394,19 @@
     15686@@ -2391,19 +2216,19 @@
    1322515687 
    1322615688 fi
    1322715689 if test $cf_cv_prog_CC_c_o = yes; then
    1322815690-  echo "$as_me:2394: result: yes" >&5
    13229 +  echo "$as_me:2397: result: yes" >&5
     15691+  echo "$as_me:2219: result: yes" >&5
    1323015692 echo "${ECHO_T}yes" >&6
    1323115693 else
    1323215694-  echo "$as_me:2397: result: no" >&5
    13233 +  echo "$as_me:2400: result: no" >&5
     15695+  echo "$as_me:2222: result: no" >&5
    1323415696 echo "${ECHO_T}no" >&6
    1323515697 fi
    1323615698 
    1323715699-echo "$as_me:2401: checking for POSIXized ISC" >&5
    13238 +echo "$as_me:2404: checking for POSIXized ISC" >&5
     15700+echo "$as_me:2226: checking for POSIXized ISC" >&5
    1323915701 echo $ECHO_N "checking for POSIXized ISC... $ECHO_C" >&6
    1324015702 if test -d /etc/conf/kconfig.d &&
     
    1324215704 then
    1324315705-  echo "$as_me:2406: result: yes" >&5
    13244 +  echo "$as_me:2409: result: yes" >&5
     15706+  echo "$as_me:2231: result: yes" >&5
    1324515707 echo "${ECHO_T}yes" >&6
    1324615708   ISC=yes # If later tests want to check for ISC.
    1324715709 
    13248 @@ -2417,12 +2420,115 @@
     15710@@ -2417,12 +2242,115 @@
    1324915711     CC="$CC -Xp"
    1325015712   fi
    1325115713 else
    1325215714-  echo "$as_me:2420: result: no" >&5
    13253 +  echo "$as_me:2423: result: no" >&5
     15715+  echo "$as_me:2245: result: no" >&5
    1325415716 echo "${ECHO_T}no" >&6
    1325515717   ISC=
     
    1326315725+# into CC.  This will not help with broken scripts that wrap the compiler with
    1326415726+# options, but eliminates a more common category of user confusion.
    13265 +echo "$as_me:2434: checking \$CC variable" >&5
     15727+echo "$as_me:2256: checking \$CC variable" >&5
    1326615728+echo $ECHO_N "checking \$CC variable... $ECHO_C" >&6
    1326715729+case "$CC" in #(vi
    1326815730+*[\ \  ]-[IUD]*)
    13269 +       echo "$as_me:2438: result: broken" >&5
     15731+       echo "$as_me:2260: result: broken" >&5
    1327015732+echo "${ECHO_T}broken" >&6
    13271 +       { echo "$as_me:2440: WARNING: your environment misuses the CC variable to hold CFLAGS/CPPFLAGS options" >&5
     15733+       { echo "$as_me:2262: WARNING: your environment misuses the CC variable to hold CFLAGS/CPPFLAGS options" >&5
    1327215734+echo "$as_me: WARNING: your environment misuses the CC variable to hold CFLAGS/CPPFLAGS options" >&2;}
    1327315735+       # humor him...
     
    1335515817+       ;;
    1335615818+*)
    13357 +       echo "$as_me:2526: result: ok" >&5
     15819+       echo "$as_me:2348: result: ok" >&5
    1335815820+echo "${ECHO_T}ok" >&6
    1335915821+       ;;
    1336015822+esac
    1336115823+
    13362 +echo "$as_me:2531: checking for ${CC:-cc} option to accept ANSI C" >&5
     15824+echo "$as_me:2353: checking for ${CC:-cc} option to accept ANSI C" >&5
    1336315825 echo $ECHO_N "checking for ${CC:-cc} option to accept ANSI C... $ECHO_C" >&6
    1336415826 if test "${cf_cv_ansi_cc+set}" = set; then
    1336515827   echo $ECHO_N "(cached) $ECHO_C" >&6
    13366 @@ -2526,7 +2632,7 @@
     15828@@ -2526,7 +2454,7 @@
    1336715829 fi
    1336815830 
    1336915831        cat >conftest.$ac_ext <<_ACEOF
    1337015832-#line 2529 "configure"
    13371 +#line 2635 "configure"
     15833+#line 2457 "configure"
    1337215834 #include "confdefs.h"
    1337315835 
    1337415836 #ifndef CC_HAS_PROTOS
    13375 @@ -2547,16 +2653,16 @@
     15837@@ -2547,16 +2475,16 @@
    1337615838 }
    1337715839 _ACEOF
    1337815840 rm -f conftest.$ac_objext
    1337915841-if { (eval echo "$as_me:2550: \"$ac_compile\"") >&5
    13380 +if { (eval echo "$as_me:2656: \"$ac_compile\"") >&5
     15842+if { (eval echo "$as_me:2478: \"$ac_compile\"") >&5
    1338115843   (eval $ac_compile) 2>&5
    1338215844   ac_status=$?
    1338315845-  echo "$as_me:2553: \$? = $ac_status" >&5
    13384 +  echo "$as_me:2659: \$? = $ac_status" >&5
     15846+  echo "$as_me:2481: \$? = $ac_status" >&5
    1338515847   (exit $ac_status); } &&
    1338615848          { ac_try='test -s conftest.$ac_objext'
    1338715849-  { (eval echo "$as_me:2556: \"$ac_try\"") >&5
    13388 +  { (eval echo "$as_me:2662: \"$ac_try\"") >&5
     15850+  { (eval echo "$as_me:2484: \"$ac_try\"") >&5
    1338915851   (eval $ac_try) 2>&5
    1339015852   ac_status=$?
    1339115853-  echo "$as_me:2559: \$? = $ac_status" >&5
    13392 +  echo "$as_me:2665: \$? = $ac_status" >&5
     15854+  echo "$as_me:2487: \$? = $ac_status" >&5
    1339315855   (exit $ac_status); }; }; then
    1339415856   cf_cv_ansi_cc="$cf_arg"; break
    1339515857 else
    13396 @@ -2569,7 +2675,7 @@
     15858@@ -2569,7 +2497,7 @@
    1339715859 CPPFLAGS="$cf_save_CPPFLAGS"
    1339815860 
    1339915861 fi
    1340015862-echo "$as_me:2572: result: $cf_cv_ansi_cc" >&5
    13401 +echo "$as_me:2678: result: $cf_cv_ansi_cc" >&5
     15863+echo "$as_me:2500: result: $cf_cv_ansi_cc" >&5
    1340215864 echo "${ECHO_T}$cf_cv_ansi_cc" >&6
    1340315865 
    1340415866 if test "$cf_cv_ansi_cc" != "no"; then
    13405 @@ -2662,7 +2768,7 @@
     15867@@ -2662,7 +2590,7 @@
    1340615868 fi
    1340715869 
    1340815870 if test "$cf_cv_ansi_cc" = "no"; then
    1340915871-       { { echo "$as_me:2665: error: Your compiler does not appear to recognize prototypes.
    13410 +       { { echo "$as_me:2771: error: Your compiler does not appear to recognize prototypes.
     15872+       { { echo "$as_me:2593: error: Your compiler does not appear to recognize prototypes.
    1341115873 You have the following choices:
    1341215874        a. adjust your compiler options
    1341315875        b. get an up-to-date compiler
    13414 @@ -2696,13 +2802,13 @@
     15876@@ -2696,13 +2624,13 @@
    1341515877   LDCONFIG=:
    1341615878 else
     
    1342415886 set dummy ldconfig; ac_word=$2
    1342515887-echo "$as_me:2705: checking for $ac_word" >&5
    13426 +echo "$as_me:2811: checking for $ac_word" >&5
     15888+echo "$as_me:2633: checking for $ac_word" >&5
    1342715889 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    1342815890 if test "${ac_cv_path_LDCONFIG+set}" = set; then
    1342915891   echo $ECHO_N "(cached) $ECHO_C" >&6
    13430 @@ -2719,7 +2825,7 @@
     15892@@ -2719,7 +2647,7 @@
    1343115893   test -z "$ac_dir" && ac_dir=.
    1343215894   if $as_executable_p "$ac_dir/$ac_word"; then
    1343315895    ac_cv_path_LDCONFIG="$ac_dir/$ac_word"
    1343415896-   echo "$as_me:2722: found $ac_dir/$ac_word" >&5
    13435 +   echo "$as_me:2828: found $ac_dir/$ac_word" >&5
     15897+   echo "$as_me:2650: found $ac_dir/$ac_word" >&5
    1343615898    break
    1343715899 fi
    1343815900 done
    13439 @@ -2730,10 +2836,10 @@
     15901@@ -2730,10 +2658,10 @@
    1344015902 LDCONFIG=$ac_cv_path_LDCONFIG
    1344115903 
    1344215904 if test -n "$LDCONFIG"; then
    1344315905-  echo "$as_me:2733: result: $LDCONFIG" >&5
    13444 +  echo "$as_me:2839: result: $LDCONFIG" >&5
     15906+  echo "$as_me:2661: result: $LDCONFIG" >&5
    1344515907 echo "${ECHO_T}$LDCONFIG" >&6
    1344615908 else
    1344715909-  echo "$as_me:2736: result: no" >&5
    13448 +  echo "$as_me:2842: result: no" >&5
     15910+  echo "$as_me:2664: result: no" >&5
    1344915911 echo "${ECHO_T}no" >&6
    1345015912 fi
    1345115913 
    13452 @@ -2741,7 +2847,7 @@
     15914@@ -2741,7 +2669,7 @@
    1345315915 esac
    1345415916 fi
    1345515917 
    1345615918-echo "$as_me:2744: checking if you want to ensure bool is consistent with C++" >&5
    13457 +echo "$as_me:2850: checking if you want to ensure bool is consistent with C++" >&5
     15919+echo "$as_me:2672: checking if you want to ensure bool is consistent with C++" >&5
    1345815920 echo $ECHO_N "checking if you want to ensure bool is consistent with C++... $ECHO_C" >&6
    1345915921 
    1346015922 # Check whether --with-cxx or --without-cxx was given.
    13461 @@ -2751,7 +2857,7 @@
     15923@@ -2751,7 +2679,7 @@
    1346215924 else
    1346315925   cf_with_cxx=yes
    1346415926 fi;
    1346515927-echo "$as_me:2754: result: $cf_with_cxx" >&5
    13466 +echo "$as_me:2860: result: $cf_with_cxx" >&5
     15928+echo "$as_me:2682: result: $cf_with_cxx" >&5
    1346715929 echo "${ECHO_T}$cf_with_cxx" >&6
    1346815930 if test "X$cf_with_cxx" = Xno ; then
    1346915931        CXX=""
    13470 @@ -2769,7 +2875,7 @@
     15932@@ -2769,7 +2697,7 @@
    1347115933   do
    1347215934     # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
    1347315935 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
    1347415936-echo "$as_me:2772: checking for $ac_word" >&5
    13475 +echo "$as_me:2878: checking for $ac_word" >&5
     15937+echo "$as_me:2700: checking for $ac_word" >&5
    1347615938 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    1347715939 if test "${ac_cv_prog_CXX+set}" = set; then
    1347815940   echo $ECHO_N "(cached) $ECHO_C" >&6
    13479 @@ -2784,7 +2890,7 @@
     15941@@ -2784,7 +2712,7 @@
    1348015942   test -z "$ac_dir" && ac_dir=.
    1348115943   $as_executable_p "$ac_dir/$ac_word" || continue
    1348215944 ac_cv_prog_CXX="$ac_tool_prefix$ac_prog"
    1348315945-echo "$as_me:2787: found $ac_dir/$ac_word" >&5
    13484 +echo "$as_me:2893: found $ac_dir/$ac_word" >&5
     15946+echo "$as_me:2715: found $ac_dir/$ac_word" >&5
    1348515947 break
    1348615948 done
    1348715949 
    13488 @@ -2792,10 +2898,10 @@
     15950@@ -2792,10 +2720,10 @@
    1348915951 fi
    1349015952 CXX=$ac_cv_prog_CXX
    1349115953 if test -n "$CXX"; then
    1349215954-  echo "$as_me:2795: result: $CXX" >&5
    13493 +  echo "$as_me:2901: result: $CXX" >&5
     15955+  echo "$as_me:2723: result: $CXX" >&5
    1349415956 echo "${ECHO_T}$CXX" >&6
    1349515957 else
    1349615958-  echo "$as_me:2798: result: no" >&5
    13497 +  echo "$as_me:2904: result: no" >&5
     15959+  echo "$as_me:2726: result: no" >&5
    1349815960 echo "${ECHO_T}no" >&6
    1349915961 fi
    1350015962 
    13501 @@ -2808,7 +2914,7 @@
     15963@@ -2808,7 +2736,7 @@
    1350215964 do
    1350315965   # Extract the first word of "$ac_prog", so it can be a program name with args.
    1350415966 set dummy $ac_prog; ac_word=$2
    1350515967-echo "$as_me:2811: checking for $ac_word" >&5
    13506 +echo "$as_me:2917: checking for $ac_word" >&5
     15968+echo "$as_me:2739: checking for $ac_word" >&5
    1350715969 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    1350815970 if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then
    1350915971   echo $ECHO_N "(cached) $ECHO_C" >&6
    13510 @@ -2823,7 +2929,7 @@
     15972@@ -2823,7 +2751,7 @@
    1351115973   test -z "$ac_dir" && ac_dir=.
    1351215974   $as_executable_p "$ac_dir/$ac_word" || continue
    1351315975 ac_cv_prog_ac_ct_CXX="$ac_prog"
    1351415976-echo "$as_me:2826: found $ac_dir/$ac_word" >&5
    13515 +echo "$as_me:2932: found $ac_dir/$ac_word" >&5
     15977+echo "$as_me:2754: found $ac_dir/$ac_word" >&5
    1351615978 break
    1351715979 done
    1351815980 
    13519 @@ -2831,10 +2937,10 @@
     15981@@ -2831,10 +2759,10 @@
    1352015982 fi
    1352115983 ac_ct_CXX=$ac_cv_prog_ac_ct_CXX
    1352215984 if test -n "$ac_ct_CXX"; then
    1352315985-  echo "$as_me:2834: result: $ac_ct_CXX" >&5
    13524 +  echo "$as_me:2940: result: $ac_ct_CXX" >&5
     15986+  echo "$as_me:2762: result: $ac_ct_CXX" >&5
    1352515987 echo "${ECHO_T}$ac_ct_CXX" >&6
    1352615988 else
    1352715989-  echo "$as_me:2837: result: no" >&5
    13528 +  echo "$as_me:2943: result: no" >&5
     15990+  echo "$as_me:2765: result: no" >&5
    1352915991 echo "${ECHO_T}no" >&6
    1353015992 fi
    1353115993 
    13532 @@ -2846,32 +2952,32 @@
     15994@@ -2846,32 +2774,32 @@
    1353315995 fi
    1353415996 
    1353515997 # Provide some information about the compiler.
    1353615998-echo "$as_me:2849:" \
    13537 +echo "$as_me:2955:" \
     15999+echo "$as_me:2777:" \
    1353816000      "checking for C++ compiler version" >&5
    1353916001 ac_compiler=`set X $ac_compile; echo $2`
    1354016002-{ (eval echo "$as_me:2852: \"$ac_compiler --version </dev/null >&5\"") >&5
    13541 +{ (eval echo "$as_me:2958: \"$ac_compiler --version </dev/null >&5\"") >&5
     16003+{ (eval echo "$as_me:2780: \"$ac_compiler --version </dev/null >&5\"") >&5
    1354216004   (eval $ac_compiler --version </dev/null >&5) 2>&5
    1354316005   ac_status=$?
    1354416006-  echo "$as_me:2855: \$? = $ac_status" >&5
    13545 +  echo "$as_me:2961: \$? = $ac_status" >&5
     16007+  echo "$as_me:2783: \$? = $ac_status" >&5
    1354616008   (exit $ac_status); }
    1354716009-{ (eval echo "$as_me:2857: \"$ac_compiler -v </dev/null >&5\"") >&5
    13548 +{ (eval echo "$as_me:2963: \"$ac_compiler -v </dev/null >&5\"") >&5
     16010+{ (eval echo "$as_me:2785: \"$ac_compiler -v </dev/null >&5\"") >&5
    1354916011   (eval $ac_compiler -v </dev/null >&5) 2>&5
    1355016012   ac_status=$?
    1355116013-  echo "$as_me:2860: \$? = $ac_status" >&5
    13552 +  echo "$as_me:2966: \$? = $ac_status" >&5
     16014+  echo "$as_me:2788: \$? = $ac_status" >&5
    1355316015   (exit $ac_status); }
    1355416016-{ (eval echo "$as_me:2862: \"$ac_compiler -V </dev/null >&5\"") >&5
    13555 +{ (eval echo "$as_me:2968: \"$ac_compiler -V </dev/null >&5\"") >&5
     16017+{ (eval echo "$as_me:2790: \"$ac_compiler -V </dev/null >&5\"") >&5
    1355616018   (eval $ac_compiler -V </dev/null >&5) 2>&5
    1355716019   ac_status=$?
    1355816020-  echo "$as_me:2865: \$? = $ac_status" >&5
    13559 +  echo "$as_me:2971: \$? = $ac_status" >&5
     16021+  echo "$as_me:2793: \$? = $ac_status" >&5
    1356016022   (exit $ac_status); }
    1356116023 
    1356216024-echo "$as_me:2868: checking whether we are using the GNU C++ compiler" >&5
    13563 +echo "$as_me:2974: checking whether we are using the GNU C++ compiler" >&5
     16025+echo "$as_me:2796: checking whether we are using the GNU C++ compiler" >&5
    1356416026 echo $ECHO_N "checking whether we are using the GNU C++ compiler... $ECHO_C" >&6
    1356516027 if test "${ac_cv_cxx_compiler_gnu+set}" = set; then
     
    1356816030   cat >conftest.$ac_ext <<_ACEOF
    1356916031-#line 2874 "configure"
    13570 +#line 2980 "configure"
     16032+#line 2802 "configure"
    1357116033 #include "confdefs.h"
    1357216034 
    1357316035 int
    13574 @@ -2886,16 +2992,16 @@
     16036@@ -2886,16 +2814,16 @@
    1357516037 }
    1357616038 _ACEOF
    1357716039 rm -f conftest.$ac_objext
    1357816040-if { (eval echo "$as_me:2889: \"$ac_compile\"") >&5
    13579 +if { (eval echo "$as_me:2995: \"$ac_compile\"") >&5
     16041+if { (eval echo "$as_me:2817: \"$ac_compile\"") >&5
    1358016042   (eval $ac_compile) 2>&5
    1358116043   ac_status=$?
    1358216044-  echo "$as_me:2892: \$? = $ac_status" >&5
    13583 +  echo "$as_me:2998: \$? = $ac_status" >&5
     16045+  echo "$as_me:2820: \$? = $ac_status" >&5
    1358416046   (exit $ac_status); } &&
    1358516047          { ac_try='test -s conftest.$ac_objext'
    1358616048-  { (eval echo "$as_me:2895: \"$ac_try\"") >&5
    13587 +  { (eval echo "$as_me:3001: \"$ac_try\"") >&5
     16049+  { (eval echo "$as_me:2823: \"$ac_try\"") >&5
    1358816050   (eval $ac_try) 2>&5
    1358916051   ac_status=$?
    1359016052-  echo "$as_me:2898: \$? = $ac_status" >&5
    13591 +  echo "$as_me:3004: \$? = $ac_status" >&5
     16053+  echo "$as_me:2826: \$? = $ac_status" >&5
    1359216054   (exit $ac_status); }; }; then
    1359316055   ac_compiler_gnu=yes
    1359416056 else
    13595 @@ -2907,19 +3013,19 @@
     16057@@ -2907,19 +2835,19 @@
    1359616058 ac_cv_cxx_compiler_gnu=$ac_compiler_gnu
    1359716059 
    1359816060 fi
    1359916061-echo "$as_me:2910: result: $ac_cv_cxx_compiler_gnu" >&5
    13600 +echo "$as_me:3016: result: $ac_cv_cxx_compiler_gnu" >&5
     16062+echo "$as_me:2838: result: $ac_cv_cxx_compiler_gnu" >&5
    1360116063 echo "${ECHO_T}$ac_cv_cxx_compiler_gnu" >&6
    1360216064 GXX=`test $ac_compiler_gnu = yes && echo yes`
     
    1360516067 CXXFLAGS="-g"
    1360616068-echo "$as_me:2916: checking whether $CXX accepts -g" >&5
    13607 +echo "$as_me:3022: checking whether $CXX accepts -g" >&5
     16069+echo "$as_me:2844: checking whether $CXX accepts -g" >&5
    1360816070 echo $ECHO_N "checking whether $CXX accepts -g... $ECHO_C" >&6
    1360916071 if test "${ac_cv_prog_cxx_g+set}" = set; then
     
    1361216074   cat >conftest.$ac_ext <<_ACEOF
    1361316075-#line 2922 "configure"
    13614 +#line 3028 "configure"
     16076+#line 2850 "configure"
    1361516077 #include "confdefs.h"
    1361616078 
    1361716079 int
    13618 @@ -2931,16 +3037,16 @@
     16080@@ -2931,16 +2859,16 @@
    1361916081 }
    1362016082 _ACEOF
    1362116083 rm -f conftest.$ac_objext
    1362216084-if { (eval echo "$as_me:2934: \"$ac_compile\"") >&5
    13623 +if { (eval echo "$as_me:3040: \"$ac_compile\"") >&5
     16085+if { (eval echo "$as_me:2862: \"$ac_compile\"") >&5
    1362416086   (eval $ac_compile) 2>&5
    1362516087   ac_status=$?
    1362616088-  echo "$as_me:2937: \$? = $ac_status" >&5
    13627 +  echo "$as_me:3043: \$? = $ac_status" >&5
     16089+  echo "$as_me:2865: \$? = $ac_status" >&5
    1362816090   (exit $ac_status); } &&
    1362916091          { ac_try='test -s conftest.$ac_objext'
    1363016092-  { (eval echo "$as_me:2940: \"$ac_try\"") >&5
    13631 +  { (eval echo "$as_me:3046: \"$ac_try\"") >&5
     16093+  { (eval echo "$as_me:2868: \"$ac_try\"") >&5
    1363216094   (eval $ac_try) 2>&5
    1363316095   ac_status=$?
    1363416096-  echo "$as_me:2943: \$? = $ac_status" >&5
    13635 +  echo "$as_me:3049: \$? = $ac_status" >&5
     16097+  echo "$as_me:2871: \$? = $ac_status" >&5
    1363616098   (exit $ac_status); }; }; then
    1363716099   ac_cv_prog_cxx_g=yes
    1363816100 else
    13639 @@ -2950,7 +3056,7 @@
     16101@@ -2950,7 +2878,7 @@
    1364016102 fi
    1364116103 rm -f conftest.$ac_objext conftest.$ac_ext
    1364216104 fi
    1364316105-echo "$as_me:2953: result: $ac_cv_prog_cxx_g" >&5
    13644 +echo "$as_me:3059: result: $ac_cv_prog_cxx_g" >&5
     16106+echo "$as_me:2881: result: $ac_cv_prog_cxx_g" >&5
    1364516107 echo "${ECHO_T}$ac_cv_prog_cxx_g" >&6
    1364616108 if test "$ac_test_CXXFLAGS" = set; then
    1364716109   CXXFLAGS=$ac_save_CXXFLAGS
    13648 @@ -2977,7 +3083,7 @@
     16110@@ -2977,7 +2905,7 @@
    1364916111    'void exit (int);'
    1365016112 do
    1365116113   cat >conftest.$ac_ext <<_ACEOF
    1365216114-#line 2980 "configure"
    13653 +#line 3086 "configure"
     16115+#line 2908 "configure"
    1365416116 #include "confdefs.h"
    1365516117 #include <stdlib.h>
    1365616118 $ac_declaration
    13657 @@ -2990,16 +3096,16 @@
     16119@@ -2990,16 +2918,16 @@
    1365816120 }
    1365916121 _ACEOF
    1366016122 rm -f conftest.$ac_objext
    1366116123-if { (eval echo "$as_me:2993: \"$ac_compile\"") >&5
    13662 +if { (eval echo "$as_me:3099: \"$ac_compile\"") >&5
     16124+if { (eval echo "$as_me:2921: \"$ac_compile\"") >&5
    1366316125   (eval $ac_compile) 2>&5
    1366416126   ac_status=$?
    1366516127-  echo "$as_me:2996: \$? = $ac_status" >&5
    13666 +  echo "$as_me:3102: \$? = $ac_status" >&5
     16128+  echo "$as_me:2924: \$? = $ac_status" >&5
    1366716129   (exit $ac_status); } &&
    1366816130          { ac_try='test -s conftest.$ac_objext'
    1366916131-  { (eval echo "$as_me:2999: \"$ac_try\"") >&5
    13670 +  { (eval echo "$as_me:3105: \"$ac_try\"") >&5
     16132+  { (eval echo "$as_me:2927: \"$ac_try\"") >&5
    1367116133   (eval $ac_try) 2>&5
    1367216134   ac_status=$?
    1367316135-  echo "$as_me:3002: \$? = $ac_status" >&5
    13674 +  echo "$as_me:3108: \$? = $ac_status" >&5
     16136+  echo "$as_me:2930: \$? = $ac_status" >&5
    1367516137   (exit $ac_status); }; }; then
    1367616138   :
    1367716139 else
    13678 @@ -3009,7 +3115,7 @@
     16140@@ -3009,7 +2937,7 @@
    1367916141 fi
    1368016142 rm -f conftest.$ac_objext conftest.$ac_ext
    1368116143   cat >conftest.$ac_ext <<_ACEOF
    1368216144-#line 3012 "configure"
    13683 +#line 3118 "configure"
     16145+#line 2940 "configure"
    1368416146 #include "confdefs.h"
    1368516147 $ac_declaration
    1368616148 int
    13687 @@ -3021,16 +3127,16 @@
     16149@@ -3021,16 +2949,16 @@
    1368816150 }
    1368916151 _ACEOF
    1369016152 rm -f conftest.$ac_objext
    1369116153-if { (eval echo "$as_me:3024: \"$ac_compile\"") >&5
    13692 +if { (eval echo "$as_me:3130: \"$ac_compile\"") >&5
     16154+if { (eval echo "$as_me:2952: \"$ac_compile\"") >&5
    1369316155   (eval $ac_compile) 2>&5
    1369416156   ac_status=$?
    1369516157-  echo "$as_me:3027: \$? = $ac_status" >&5
    13696 +  echo "$as_me:3133: \$? = $ac_status" >&5
     16158+  echo "$as_me:2955: \$? = $ac_status" >&5
    1369716159   (exit $ac_status); } &&
    1369816160          { ac_try='test -s conftest.$ac_objext'
    1369916161-  { (eval echo "$as_me:3030: \"$ac_try\"") >&5
    13700 +  { (eval echo "$as_me:3136: \"$ac_try\"") >&5
     16162+  { (eval echo "$as_me:2958: \"$ac_try\"") >&5
    1370116163   (eval $ac_try) 2>&5
    1370216164   ac_status=$?
    1370316165-  echo "$as_me:3033: \$? = $ac_status" >&5
    13704 +  echo "$as_me:3139: \$? = $ac_status" >&5
     16166+  echo "$as_me:2961: \$? = $ac_status" >&5
    1370516167   (exit $ac_status); }; }; then
    1370616168   break
    1370716169 else
    13708 @@ -3057,7 +3163,7 @@
     16170@@ -3053,11 +2981,11 @@
     16171 ac_compiler_gnu=$ac_cv_c_compiler_gnu
     16172 ac_main_return=return
     16173 
     16174-               # autoconf 2.5x removed the error - by hardcoding it to g++.
     16175+               # autoconf 2.5x removed the error (hardcoding it to g++, or just blank)
    1370916176        if test "$CXX" = "g++" ; then
    1371016177                # Extract the first word of "g++", so it can be a program name with args.
    1371116178 set dummy g++; ac_word=$2
    1371216179-echo "$as_me:3060: checking for $ac_word" >&5
    13713 +echo "$as_me:3166: checking for $ac_word" >&5
     16180+echo "$as_me:2988: checking for $ac_word" >&5
    1371416181 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    1371516182 if test "${ac_cv_path_CXX+set}" = set; then
    1371616183   echo $ECHO_N "(cached) $ECHO_C" >&6
    13717 @@ -3074,7 +3180,7 @@
     16184@@ -3074,7 +3002,7 @@
    1371816185   test -z "$ac_dir" && ac_dir=.
    1371916186   if $as_executable_p "$ac_dir/$ac_word"; then
    1372016187    ac_cv_path_CXX="$ac_dir/$ac_word"
    1372116188-   echo "$as_me:3077: found $ac_dir/$ac_word" >&5
    13722 +   echo "$as_me:3183: found $ac_dir/$ac_word" >&5
     16189+   echo "$as_me:3005: found $ac_dir/$ac_word" >&5
    1372316190    break
    1372416191 fi
    1372516192 done
    13726 @@ -3085,16 +3191,16 @@
     16193@@ -3085,28 +3013,30 @@
    1372716194 CXX=$ac_cv_path_CXX
    1372816195 
    1372916196 if test -n "$CXX"; then
    1373016197-  echo "$as_me:3088: result: $CXX" >&5
    13731 +  echo "$as_me:3194: result: $CXX" >&5
     16198+  echo "$as_me:3016: result: $CXX" >&5
    1373216199 echo "${ECHO_T}$CXX" >&6
    1373316200 else
    1373416201-  echo "$as_me:3091: result: no" >&5
    13735 +  echo "$as_me:3197: result: no" >&5
     16202+  echo "$as_me:3019: result: no" >&5
    1373616203 echo "${ECHO_T}no" >&6
    1373716204 fi
    1373816205 
    1373916206        fi
    13740         if test "$CXX" = "g++" ; then
     16207-       if test "$CXX" = "g++" ; then
    1374116208-               { echo "$as_me:3097: WARNING: ignoring hardcoded g++" >&5
    13742 +               { echo "$as_me:3203: WARNING: ignoring hardcoded g++" >&5
    13743  echo "$as_me: WARNING: ignoring hardcoded g++" >&2;}
     16209-echo "$as_me: WARNING: ignoring hardcoded g++" >&2;}
     16210+       case "x$CXX" in #(vi
     16211+       x|xg++)
     16212+               { echo "$as_me:3026: WARNING: You don't have any C++ compiler, too bad" >&5
     16213+echo "$as_me: WARNING: You don't have any C++ compiler, too bad" >&2;}
    1374416214                cf_with_cxx=no; CXX=""; GXX="";
    13745         fi
    13746 @@ -3102,11 +3208,11 @@
     16215-       fi
     16216+               ;;
     16217+       esac
     16218 fi
    1374716219 
    1374816220 GXX_VERSION=none
    1374916221 if test "$GXX" = yes; then
    1375016222-       echo "$as_me:3105: checking version of g++" >&5
    13751 +       echo "$as_me:3211: checking version of g++" >&5
    13752  echo $ECHO_N "checking version of g++... $ECHO_C" >&6
     16223-echo $ECHO_N "checking version of g++... $ECHO_C" >&6
     16224+       echo "$as_me:3035: checking version of ${CXX:-g++}" >&5
     16225+echo $ECHO_N "checking version of ${CXX:-g++}... $ECHO_C" >&6
    1375316226        GXX_VERSION="`${CXX:-g++} --version| sed -e '2,$d' -e 's/^.*(GCC) //' -e 's/^[^0-9.]*//' -e 's/[^0-9.].*//'`"
    1375416227        test -z "$GXX_VERSION" && GXX_VERSION=unknown
    1375516228-       echo "$as_me:3109: result: $GXX_VERSION" >&5
    13756 +       echo "$as_me:3215: result: $GXX_VERSION" >&5
     16229+       echo "$as_me:3039: result: $GXX_VERSION" >&5
    1375716230 echo "${ECHO_T}$GXX_VERSION" >&6
    1375816231 fi
    1375916232 
    13760 @@ -3114,12 +3220,12 @@
     16233@@ -3114,12 +3044,12 @@
    1376116234 1*|2.[0-6]*)
    1376216235        # GXX=""; CXX=""; ac_cv_prog_gxx=no
    1376316236        # cf_cxx_library=no
    1376416237-       { echo "$as_me:3117: WARNING: templates do not work" >&5
    13765 +       { echo "$as_me:3223: WARNING: templates do not work" >&5
     16238+       { echo "$as_me:3047: WARNING: templates do not work" >&5
    1376616239 echo "$as_me: WARNING: templates do not work" >&2;}
    1376716240        ;;
     
    1376916242 
    1377016243-echo "$as_me:3122: checking if you want to build C++ binding and demo" >&5
    13771 +echo "$as_me:3228: checking if you want to build C++ binding and demo" >&5
     16244+echo "$as_me:3052: checking if you want to build C++ binding and demo" >&5
    1377216245 echo $ECHO_N "checking if you want to build C++ binding and demo... $ECHO_C" >&6
    1377316246 
    1377416247 # Check whether --with-cxx-binding or --without-cxx-binding was given.
    13775 @@ -3129,10 +3235,10 @@
     16248@@ -3129,23 +3059,15 @@
    1377616249 else
    1377716250   cf_with_cxx_binding=$cf_with_cxx
    1377816251 fi;
    1377916252-echo "$as_me:3132: result: $cf_with_cxx_binding" >&5
    13780 +echo "$as_me:3238: result: $cf_with_cxx_binding" >&5
     16253+echo "$as_me:3062: result: $cf_with_cxx_binding" >&5
    1378116254 echo "${ECHO_T}$cf_with_cxx_binding" >&6
    1378216255 
    1378316256-echo "$as_me:3135: checking if you want to build with Ada95" >&5
    13784 +echo "$as_me:3241: checking if you want to build with Ada95" >&5
     16257+echo "$as_me:3065: checking if you want to build with Ada95" >&5
    1378516258 echo $ECHO_N "checking if you want to build with Ada95... $ECHO_C" >&6
    13786  
    13787  # Check whether --with-ada or --without-ada was given.
    13788 @@ -3142,10 +3248,10 @@
    13789  else
    13790    cf_with_ada=yes
    13791  fi;
     16259-
     16260-# Check whether --with-ada or --without-ada was given.
     16261-if test "${with_ada+set}" = set; then
     16262-  withval="$with_ada"
     16263-  cf_with_ada=$withval
     16264-else
     16265-  cf_with_ada=yes
     16266-fi;
    1379216267-echo "$as_me:3145: result: $cf_with_ada" >&5
    13793 +echo "$as_me:3251: result: $cf_with_ada" >&5
     16268+echo "$as_me:3067: result: $cf_with_ada" >&5
    1379416269 echo "${ECHO_T}$cf_with_ada" >&6
    1379516270 
    1379616271-echo "$as_me:3148: checking if you want to install manpages" >&5
    13797 +echo "$as_me:3254: checking if you want to install manpages" >&5
     16272+echo "$as_me:3070: checking if you want to install manpages" >&5
    1379816273 echo $ECHO_N "checking if you want to install manpages... $ECHO_C" >&6
    1379916274 
    1380016275 # Check whether --with-manpages or --without-manpages was given.
    13801 @@ -3155,10 +3261,10 @@
     16276@@ -3155,10 +3077,10 @@
    1380216277 else
    1380316278   cf_with_manpages=yes
    1380416279 fi;
    1380516280-echo "$as_me:3158: result: $cf_with_manpages" >&5
    13806 +echo "$as_me:3264: result: $cf_with_manpages" >&5
     16281+echo "$as_me:3080: result: $cf_with_manpages" >&5
    1380716282 echo "${ECHO_T}$cf_with_manpages" >&6
    1380816283 
    1380916284-echo "$as_me:3161: checking if you want to build programs such as tic" >&5
    13810 +echo "$as_me:3267: checking if you want to build programs such as tic" >&5
     16285+echo "$as_me:3083: checking if you want to build programs such as tic" >&5
    1381116286 echo $ECHO_N "checking if you want to build programs such as tic... $ECHO_C" >&6
    1381216287 
    1381316288 # Check whether --with-progs or --without-progs was given.
    13814 @@ -3168,10 +3274,10 @@
     16289@@ -3168,10 +3090,10 @@
    1381516290 else
    1381616291   cf_with_progs=yes
    1381716292 fi;
    1381816293-echo "$as_me:3171: result: $cf_with_progs" >&5
    13819 +echo "$as_me:3277: result: $cf_with_progs" >&5
     16294+echo "$as_me:3093: result: $cf_with_progs" >&5
    1382016295 echo "${ECHO_T}$cf_with_progs" >&6
    1382116296 
    1382216297-echo "$as_me:3174: checking if you want to build test-programs" >&5
    13823 +echo "$as_me:3280: checking if you want to build test-programs" >&5
     16298+echo "$as_me:3096: checking if you want to build test-programs" >&5
    1382416299 echo $ECHO_N "checking if you want to build test-programs... $ECHO_C" >&6
    1382516300 
    1382616301 # Check whether --with-tests or --without-tests was given.
    13827 @@ -3181,10 +3287,10 @@
     16302@@ -3181,10 +3103,10 @@
    1382816303 else
    1382916304   cf_with_tests=yes
    1383016305 fi;
    1383116306-echo "$as_me:3184: result: $cf_with_tests" >&5
    13832 +echo "$as_me:3290: result: $cf_with_tests" >&5
     16307+echo "$as_me:3106: result: $cf_with_tests" >&5
    1383316308 echo "${ECHO_T}$cf_with_tests" >&6
    1383416309 
    1383516310-echo "$as_me:3187: checking if you wish to install curses.h" >&5
    13836 +echo "$as_me:3293: checking if you wish to install curses.h" >&5
     16311+echo "$as_me:3109: checking if you wish to install curses.h" >&5
    1383716312 echo $ECHO_N "checking if you wish to install curses.h... $ECHO_C" >&6
    1383816313 
    1383916314 # Check whether --with-curses-h or --without-curses-h was given.
    13840 @@ -3194,7 +3300,7 @@
     16315@@ -3194,7 +3116,7 @@
    1384116316 else
    1384216317   with_curses_h=yes
    1384316318 fi;
    1384416319-echo "$as_me:3197: result: $with_curses_h" >&5
    13845 +echo "$as_me:3303: result: $with_curses_h" >&5
     16320+echo "$as_me:3119: result: $with_curses_h" >&5
    1384616321 echo "${ECHO_T}$with_curses_h" >&6
    1384716322 
    1384816323 modules_to_build="ncurses"
    13849 @@ -3220,7 +3326,7 @@
     16324@@ -3220,7 +3142,7 @@
    1385016325 do
    1385116326   # Extract the first word of "$ac_prog", so it can be a program name with args.
    1385216327 set dummy $ac_prog; ac_word=$2
    1385316328-echo "$as_me:3223: checking for $ac_word" >&5
    13854 +echo "$as_me:3329: checking for $ac_word" >&5
     16329+echo "$as_me:3145: checking for $ac_word" >&5
    1385516330 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    1385616331 if test "${ac_cv_prog_AWK+set}" = set; then
    1385716332   echo $ECHO_N "(cached) $ECHO_C" >&6
    13858 @@ -3235,7 +3341,7 @@
     16333@@ -3235,7 +3157,7 @@
    1385916334   test -z "$ac_dir" && ac_dir=.
    1386016335   $as_executable_p "$ac_dir/$ac_word" || continue
    1386116336 ac_cv_prog_AWK="$ac_prog"
    1386216337-echo "$as_me:3238: found $ac_dir/$ac_word" >&5
    13863 +echo "$as_me:3344: found $ac_dir/$ac_word" >&5
     16338+echo "$as_me:3160: found $ac_dir/$ac_word" >&5
    1386416339 break
    1386516340 done
    1386616341 
    13867 @@ -3243,21 +3349,21 @@
     16342@@ -3243,21 +3165,21 @@
    1386816343 fi
    1386916344 AWK=$ac_cv_prog_AWK
    1387016345 if test -n "$AWK"; then
    1387116346-  echo "$as_me:3246: result: $AWK" >&5
    13872 +  echo "$as_me:3352: result: $AWK" >&5
     16347+  echo "$as_me:3168: result: $AWK" >&5
    1387316348 echo "${ECHO_T}$AWK" >&6
    1387416349 else
    1387516350-  echo "$as_me:3249: result: no" >&5
    13876 +  echo "$as_me:3355: result: no" >&5
     16351+  echo "$as_me:3171: result: no" >&5
    1387716352 echo "${ECHO_T}no" >&6
    1387816353 fi
     
    1388216357 
    1388316358-test -z "$AWK" && { { echo "$as_me:3256: error: No awk program found" >&5
    13884 +test -z "$AWK" && { { echo "$as_me:3362: error: No awk program found" >&5
     16359+test -z "$AWK" && { { echo "$as_me:3178: error: No awk program found" >&5
    1388516360 echo "$as_me: error: No awk program found" >&2;}
    1388616361    { (exit 1); exit 1; }; }
    1388716362 
    1388816363-echo "$as_me:3260: checking for egrep" >&5
    13889 +echo "$as_me:3366: checking for egrep" >&5
     16364+echo "$as_me:3182: checking for egrep" >&5
    1389016365 echo $ECHO_N "checking for egrep... $ECHO_C" >&6
    1389116366 if test "${ac_cv_prog_egrep+set}" = set; then
    1389216367   echo $ECHO_N "(cached) $ECHO_C" >&6
    13893 @@ -3267,11 +3373,11 @@
     16368@@ -3267,11 +3189,11 @@
    1389416369     else ac_cv_prog_egrep='egrep'
    1389516370     fi
    1389616371 fi
    1389716372-echo "$as_me:3270: result: $ac_cv_prog_egrep" >&5
    13898 +echo "$as_me:3376: result: $ac_cv_prog_egrep" >&5
     16373+echo "$as_me:3192: result: $ac_cv_prog_egrep" >&5
    1389916374 echo "${ECHO_T}$ac_cv_prog_egrep" >&6
    1390016375  EGREP=$ac_cv_prog_egrep
    1390116376 
    1390216377-test -z "$EGREP" && { { echo "$as_me:3274: error: No egrep program found" >&5
    13903 +test -z "$EGREP" && { { echo "$as_me:3380: error: No egrep program found" >&5
     16378+test -z "$EGREP" && { { echo "$as_me:3196: error: No egrep program found" >&5
    1390416379 echo "$as_me: error: No egrep program found" >&2;}
    1390516380    { (exit 1); exit 1; }; }
    1390616381 
    13907 @@ -3287,7 +3393,7 @@
     16382@@ -3287,7 +3209,7 @@
    1390816383 # AFS /usr/afsws/bin/install, which mishandles nonexistent args
    1390916384 # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
    1391016385 # ./install, which can be erroneously created by make from ./install.sh.
    1391116386-echo "$as_me:3290: checking for a BSD compatible install" >&5
    13912 +echo "$as_me:3396: checking for a BSD compatible install" >&5
     16387+echo "$as_me:3212: checking for a BSD compatible install" >&5
    1391316388 echo $ECHO_N "checking for a BSD compatible install... $ECHO_C" >&6
    1391416389 if test -z "$INSTALL"; then
    1391516390 if test "${ac_cv_path_install+set}" = set; then
    13916 @@ -3336,7 +3442,7 @@
     16391@@ -3336,7 +3258,7 @@
    1391716392     INSTALL=$ac_install_sh
    1391816393   fi
    1391916394 fi
    1392016395-echo "$as_me:3339: result: $INSTALL" >&5
    13921 +echo "$as_me:3445: result: $INSTALL" >&5
     16396+echo "$as_me:3261: result: $INSTALL" >&5
    1392216397 echo "${ECHO_T}$INSTALL" >&6
    1392316398 
    1392416399 # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
    13925 @@ -3361,7 +3467,7 @@
     16400@@ -3361,7 +3283,7 @@
    1392616401 do
    1392716402   # Extract the first word of "$ac_prog", so it can be a program name with args.
    1392816403 set dummy $ac_prog; ac_word=$2
    1392916404-echo "$as_me:3364: checking for $ac_word" >&5
    13930 +echo "$as_me:3470: checking for $ac_word" >&5
     16405+echo "$as_me:3286: checking for $ac_word" >&5
    1393116406 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    1393216407 if test "${ac_cv_prog_LINT+set}" = set; then
    1393316408   echo $ECHO_N "(cached) $ECHO_C" >&6
    13934 @@ -3376,7 +3482,7 @@
     16409@@ -3376,7 +3298,7 @@
    1393516410   test -z "$ac_dir" && ac_dir=.
    1393616411   $as_executable_p "$ac_dir/$ac_word" || continue
    1393716412 ac_cv_prog_LINT="$ac_prog"
    1393816413-echo "$as_me:3379: found $ac_dir/$ac_word" >&5
    13939 +echo "$as_me:3485: found $ac_dir/$ac_word" >&5
     16414+echo "$as_me:3301: found $ac_dir/$ac_word" >&5
    1394016415 break
    1394116416 done
    1394216417 
    13943 @@ -3384,28 +3490,28 @@
     16418@@ -3384,28 +3306,28 @@
    1394416419 fi
    1394516420 LINT=$ac_cv_prog_LINT
    1394616421 if test -n "$LINT"; then
    1394716422-  echo "$as_me:3387: result: $LINT" >&5
    13948 +  echo "$as_me:3493: result: $LINT" >&5
     16423+  echo "$as_me:3309: result: $LINT" >&5
    1394916424 echo "${ECHO_T}$LINT" >&6
    1395016425 else
    1395116426-  echo "$as_me:3390: result: no" >&5
    13952 +  echo "$as_me:3496: result: no" >&5
     16427+  echo "$as_me:3312: result: no" >&5
    1395316428 echo "${ECHO_T}no" >&6
    1395416429 fi
     
    1395816433 
    1395916434-echo "$as_me:3397: checking whether ln -s works" >&5
    13960 +echo "$as_me:3503: checking whether ln -s works" >&5
     16435+echo "$as_me:3319: checking whether ln -s works" >&5
    1396116436 echo $ECHO_N "checking whether ln -s works... $ECHO_C" >&6
    1396216437 LN_S=$as_ln_s
    1396316438 if test "$LN_S" = "ln -s"; then
    1396416439-  echo "$as_me:3401: result: yes" >&5
    13965 +  echo "$as_me:3507: result: yes" >&5
     16440+  echo "$as_me:3323: result: yes" >&5
    1396616441 echo "${ECHO_T}yes" >&6
    1396716442 else
    1396816443-  echo "$as_me:3404: result: no, using $LN_S" >&5
    13969 +  echo "$as_me:3510: result: no, using $LN_S" >&5
     16444+  echo "$as_me:3326: result: no, using $LN_S" >&5
    1397016445 echo "${ECHO_T}no, using $LN_S" >&6
    1397116446 fi
    1397216447 
    1397316448-echo "$as_me:3408: checking if $LN_S -f options work" >&5
    13974 +echo "$as_me:3514: checking if $LN_S -f options work" >&5
     16449+echo "$as_me:3330: checking if $LN_S -f options work" >&5
    1397516450 echo $ECHO_N "checking if $LN_S -f options work... $ECHO_C" >&6
    1397616451 
    1397716452 rm -f conf$$.src conf$$dst
    13978 @@ -3417,12 +3523,12 @@
     16453@@ -3417,12 +3339,12 @@
    1397916454        cf_prog_ln_sf=no
    1398016455 fi
    1398116456 rm -f conf$$.dst conf$$src
    1398216457-echo "$as_me:3420: result: $cf_prog_ln_sf" >&5
    13983 +echo "$as_me:3526: result: $cf_prog_ln_sf" >&5
     16458+echo "$as_me:3342: result: $cf_prog_ln_sf" >&5
    1398416459 echo "${ECHO_T}$cf_prog_ln_sf" >&6
    1398516460 
     
    1398716462 
    1398816463-echo "$as_me:3425: checking for long file names" >&5
    13989 +echo "$as_me:3531: checking for long file names" >&5
     16464+echo "$as_me:3347: checking for long file names" >&5
    1399016465 echo $ECHO_N "checking for long file names... $ECHO_C" >&6
    1399116466 if test "${ac_cv_sys_long_file_names+set}" = set; then
    1399216467   echo $ECHO_N "(cached) $ECHO_C" >&6
    13993 @@ -3461,7 +3567,7 @@
     16468@@ -3461,7 +3383,7 @@
    1399416469   rm -rf $ac_xdir 2>/dev/null
    1399516470 done
    1399616471 fi
    1399716472-echo "$as_me:3464: result: $ac_cv_sys_long_file_names" >&5
    13998 +echo "$as_me:3570: result: $ac_cv_sys_long_file_names" >&5
     16473+echo "$as_me:3386: result: $ac_cv_sys_long_file_names" >&5
    1399916474 echo "${ECHO_T}$ac_cv_sys_long_file_names" >&6
    1400016475 if test $ac_cv_sys_long_file_names = yes; then
    1400116476 
    14002 @@ -3473,7 +3579,7 @@
     16477@@ -3473,7 +3395,7 @@
    1400316478 
    1400416479 # if we find pkg-config, check if we should install the ".pc" files.
    1400516480 
    1400616481-echo "$as_me:3476: checking if you want to use pkg-config" >&5
    14007 +echo "$as_me:3582: checking if you want to use pkg-config" >&5
     16482+echo "$as_me:3398: checking if you want to use pkg-config" >&5
    1400816483 echo $ECHO_N "checking if you want to use pkg-config... $ECHO_C" >&6
    1400916484 
    1401016485 # Check whether --with-pkg-config or --without-pkg-config was given.
    14011 @@ -3483,7 +3589,7 @@
     16486@@ -3483,7 +3405,7 @@
    1401216487 else
    1401316488   cf_pkg_config=yes
    1401416489 fi;
    1401516490-echo "$as_me:3486: result: $cf_pkg_config" >&5
    14016 +echo "$as_me:3592: result: $cf_pkg_config" >&5
     16491+echo "$as_me:3408: result: $cf_pkg_config" >&5
    1401716492 echo "${ECHO_T}$cf_pkg_config" >&6
    1401816493 
    1401916494 case $cf_pkg_config in #(vi
    14020 @@ -3491,10 +3597,11 @@
     16495@@ -3491,10 +3413,11 @@
    1402116496        PKG_CONFIG=none
    1402216497        ;;
     
    1402816503 set dummy ${ac_tool_prefix}pkg-config; ac_word=$2
    1402916504-echo "$as_me:3497: checking for $ac_word" >&5
    14030 +echo "$as_me:3604: checking for $ac_word" >&5
     16505+echo "$as_me:3420: checking for $ac_word" >&5
    1403116506 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    1403216507 if test "${ac_cv_path_PKG_CONFIG+set}" = set; then
    1403316508   echo $ECHO_N "(cached) $ECHO_C" >&6
    14034 @@ -3511,7 +3618,7 @@
     16509@@ -3511,7 +3434,7 @@
    1403516510   test -z "$ac_dir" && ac_dir=.
    1403616511   if $as_executable_p "$ac_dir/$ac_word"; then
    1403716512    ac_cv_path_PKG_CONFIG="$ac_dir/$ac_word"
    1403816513-   echo "$as_me:3514: found $ac_dir/$ac_word" >&5
    14039 +   echo "$as_me:3621: found $ac_dir/$ac_word" >&5
     16514+   echo "$as_me:3437: found $ac_dir/$ac_word" >&5
    1404016515    break
    1404116516 fi
    1404216517 done
    14043 @@ -3522,10 +3629,10 @@
     16518@@ -3522,10 +3445,10 @@
    1404416519 PKG_CONFIG=$ac_cv_path_PKG_CONFIG
    1404516520 
    1404616521 if test -n "$PKG_CONFIG"; then
    1404716522-  echo "$as_me:3525: result: $PKG_CONFIG" >&5
    14048 +  echo "$as_me:3632: result: $PKG_CONFIG" >&5
     16523+  echo "$as_me:3448: result: $PKG_CONFIG" >&5
    1404916524 echo "${ECHO_T}$PKG_CONFIG" >&6
    1405016525 else
    1405116526-  echo "$as_me:3528: result: no" >&5
    14052 +  echo "$as_me:3635: result: no" >&5
     16527+  echo "$as_me:3451: result: no" >&5
    1405316528 echo "${ECHO_T}no" >&6
    1405416529 fi
    1405516530 
    14056 @@ -3534,7 +3641,7 @@
     16531@@ -3534,7 +3457,7 @@
    1405716532   ac_pt_PKG_CONFIG=$PKG_CONFIG
    1405816533   # Extract the first word of "pkg-config", so it can be a program name with args.
    1405916534 set dummy pkg-config; ac_word=$2
    1406016535-echo "$as_me:3537: checking for $ac_word" >&5
    14061 +echo "$as_me:3644: checking for $ac_word" >&5
     16536+echo "$as_me:3460: checking for $ac_word" >&5
    1406216537 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    1406316538 if test "${ac_cv_path_ac_pt_PKG_CONFIG+set}" = set; then
    1406416539   echo $ECHO_N "(cached) $ECHO_C" >&6
    14065 @@ -3551,7 +3658,7 @@
     16540@@ -3551,7 +3474,7 @@
    1406616541   test -z "$ac_dir" && ac_dir=.
    1406716542   if $as_executable_p "$ac_dir/$ac_word"; then
    1406816543    ac_cv_path_ac_pt_PKG_CONFIG="$ac_dir/$ac_word"
    1406916544-   echo "$as_me:3554: found $ac_dir/$ac_word" >&5
    14070 +   echo "$as_me:3661: found $ac_dir/$ac_word" >&5
     16545+   echo "$as_me:3477: found $ac_dir/$ac_word" >&5
    1407116546    break
    1407216547 fi
    1407316548 done
    14074 @@ -3563,10 +3670,10 @@
     16549@@ -3563,10 +3486,10 @@
    1407516550 ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG
    1407616551 
    1407716552 if test -n "$ac_pt_PKG_CONFIG"; then
    1407816553-  echo "$as_me:3566: result: $ac_pt_PKG_CONFIG" >&5
    14079 +  echo "$as_me:3673: result: $ac_pt_PKG_CONFIG" >&5
     16554+  echo "$as_me:3489: result: $ac_pt_PKG_CONFIG" >&5
    1408016555 echo "${ECHO_T}$ac_pt_PKG_CONFIG" >&6
    1408116556 else
    1408216557-  echo "$as_me:3569: result: no" >&5
    14083 +  echo "$as_me:3676: result: no" >&5
     16558+  echo "$as_me:3492: result: no" >&5
    1408416559 echo "${ECHO_T}no" >&6
    1408516560 fi
    1408616561 
    14087 @@ -3609,7 +3716,7 @@
     16562@@ -3597,7 +3520,7 @@
     16563   ;;
     16564 .[a-zA-Z]:[\\/]*) #(vi OS/2 EMX
     16565   ;;
     16566-.\${*prefix}*) #(vi
     16567+.\${*prefix}*|.\${*dir}*) #(vi
     16568   eval PKG_CONFIG="$PKG_CONFIG"
     16569   case ".$PKG_CONFIG" in #(vi
     16570   .NONE/*)
     16571@@ -3609,7 +3532,7 @@
    1408816572   PKG_CONFIG=`echo $PKG_CONFIG | sed -e s%NONE%$cf_path_syntax%`
    1408916573   ;;
    1409016574 *)
    1409116575-  { { echo "$as_me:3612: error: expected a pathname, not \"$PKG_CONFIG\"" >&5
    14092 +  { { echo "$as_me:3719: error: expected a pathname, not \"$PKG_CONFIG\"" >&5
     16576+  { { echo "$as_me:3535: error: expected a pathname, not \"$PKG_CONFIG\"" >&5
    1409316577 echo "$as_me: error: expected a pathname, not \"$PKG_CONFIG\"" >&2;}
    1409416578    { (exit 1); exit 1; }; }
    1409516579   ;;
    14096 @@ -3617,16 +3724,52 @@
     16580@@ -3617,16 +3540,51 @@
    1409716581 
    1409816582 fi
     
    1410216586-echo $ECHO_N "checking if we should install .pc files for $PKG_CONFIG... $ECHO_C" >&6
    1410316587+if test "$PKG_CONFIG" != none ; then
    14104 +       echo "$as_me:3728: checking for $PKG_CONFIG library directory" >&5
     16588+       echo "$as_me:3544: checking for $PKG_CONFIG library directory" >&5
    1410516589+echo $ECHO_N "checking for $PKG_CONFIG library directory... $ECHO_C" >&6
    1410616590 
     
    1411016594-       fi
    1411116595-       PKG_CONFIG_LIBDIR=`echo "$PKG_CONFIG_LIBDIR" | sed -e 's/^://' -e 's/:.*//'`
     16596-       if test -n "$PKG_CONFIG_LIBDIR" && test -d "$PKG_CONFIG_LIBDIR" ; then
    1411216597+# Check whether --with-pkg-config-libdir or --without-pkg-config-libdir was given.
    1411316598+if test "${with_pkg_config_libdir+set}" = set; then
     
    1414416629+       esac
    1414516630+
    14146 +       echo "$as_me:3765: result: $PKG_CONFIG_LIBDIR" >&5
     16631+       echo "$as_me:3581: result: $PKG_CONFIG_LIBDIR" >&5
    1414716632+echo "${ECHO_T}$PKG_CONFIG_LIBDIR" >&6
    1414816633+fi
    1414916634+
    1415016635+if test "$PKG_CONFIG" != none ; then
    14151         if test -n "$PKG_CONFIG_LIBDIR" && test -d "$PKG_CONFIG_LIBDIR" ; then
    14152 +               echo "$as_me:3771: checking if we should install .pc files for $PKG_CONFIG" >&5
     16636+       echo "$as_me:3586: checking if we should install .pc files for $PKG_CONFIG" >&5
    1415316637+echo $ECHO_N "checking if we should install .pc files for $PKG_CONFIG... $ECHO_C" >&6
    1415416638 
    1415516639 # Check whether --enable-pc-files or --disable-pc-files was given.
    1415616640 if test "${enable_pc_files+set}" = set; then
    14157 @@ -3635,18 +3778,18 @@
     16641@@ -3635,18 +3593,48 @@
    1415816642 else
    1415916643   enable_pc_files=no
    1416016644 fi;
    1416116645-               echo "$as_me:3638: result: $enable_pc_files" >&5
    14162 +               echo "$as_me:3781: result: $enable_pc_files" >&5
     16646+       echo "$as_me:3596: result: $enable_pc_files" >&5
    1416316647 echo "${ECHO_T}$enable_pc_files" >&6
    1416416648-       else
     
    1416716651-               { echo "$as_me:3643: WARNING: did not find library $PKG_CONFIG_LIBDIR" >&5
    1416816652-echo "$as_me: WARNING: did not find library $PKG_CONFIG_LIBDIR" >&2;}
    14169 +       elif test -z "$PKG_CONFIG_LIBDIR" || test "$PKG_CONFIG_LIBDIR" != no; then
    14170                 enable_pc_files=no
    14171 +               { echo "$as_me:3785: WARNING: did not find $PKG_CONFIG library" >&5
    14172 +echo "$as_me: WARNING: did not find $PKG_CONFIG library" >&2;}
     16653-               enable_pc_files=no
     16654+       if test "$enable_pc_files" != no
     16655+       then
     16656+
     16657+if test "x$prefix" != xNONE; then
     16658+  cf_path_syntax="$prefix"
     16659+else
     16660+  cf_path_syntax="$ac_default_prefix"
     16661+fi
     16662+
     16663+case ".$PKG_CONFIG_LIBDIR" in #(vi
     16664+.\$\(*\)*|.\'*\'*) #(vi
     16665+  ;;
     16666+..|./*|.\\*) #(vi
     16667+  ;;
     16668+.[a-zA-Z]:[\\/]*) #(vi OS/2 EMX
     16669+  ;;
     16670+.\${*prefix}*|.\${*dir}*) #(vi
     16671+  eval PKG_CONFIG_LIBDIR="$PKG_CONFIG_LIBDIR"
     16672+  case ".$PKG_CONFIG_LIBDIR" in #(vi
     16673+  .NONE/*)
     16674+    PKG_CONFIG_LIBDIR=`echo $PKG_CONFIG_LIBDIR | sed -e s%NONE%$cf_path_syntax%`
     16675+    ;;
     16676+  esac
     16677+  ;; #(vi
     16678+.no|.NONE/*)
     16679+  PKG_CONFIG_LIBDIR=`echo $PKG_CONFIG_LIBDIR | sed -e s%NONE%$cf_path_syntax%`
     16680+  ;;
     16681+*)
     16682+  { { echo "$as_me:3626: error: expected a pathname, not \"$PKG_CONFIG_LIBDIR\"" >&5
     16683+echo "$as_me: error: expected a pathname, not \"$PKG_CONFIG_LIBDIR\"" >&2;}
     16684+   { (exit 1); exit 1; }; }
     16685+  ;;
     16686+esac
     16687+
    1417316688        fi
    1417416689+else
     
    1417716692 
    1417816693-echo "$as_me:3649: checking if we should assume mixed-case filenames" >&5
    14179 +echo "$as_me:3792: checking if we should assume mixed-case filenames" >&5
     16694+echo "$as_me:3637: checking if we should assume mixed-case filenames" >&5
    1418016695 echo $ECHO_N "checking if we should assume mixed-case filenames... $ECHO_C" >&6
    1418116696 
    1418216697 # Check whether --enable-mixed-case or --disable-mixed-case was given.
    14183 @@ -3656,11 +3799,11 @@
     16698@@ -3656,11 +3644,11 @@
    1418416699 else
    1418516700   enable_mixedcase=auto
    1418616701 fi;
    1418716702-echo "$as_me:3659: result: $enable_mixedcase" >&5
    14188 +echo "$as_me:3802: result: $enable_mixedcase" >&5
     16703+echo "$as_me:3647: result: $enable_mixedcase" >&5
    1418916704 echo "${ECHO_T}$enable_mixedcase" >&6
    1419016705 if test "$enable_mixedcase" = "auto" ; then
    1419116706 
    1419216707-echo "$as_me:3663: checking if filesystem supports mixed-case filenames" >&5
    14193 +echo "$as_me:3806: checking if filesystem supports mixed-case filenames" >&5
     16708+echo "$as_me:3651: checking if filesystem supports mixed-case filenames" >&5
    1419416709 echo $ECHO_N "checking if filesystem supports mixed-case filenames... $ECHO_C" >&6
    1419516710 if test "${cf_cv_mixedcase+set}" = set; then
    1419616711   echo $ECHO_N "(cached) $ECHO_C" >&6
    14197 @@ -3687,7 +3830,7 @@
     16712@@ -3687,7 +3675,7 @@
    1419816713 fi
    1419916714 
    1420016715 fi
    1420116716-echo "$as_me:3690: result: $cf_cv_mixedcase" >&5
    14202 +echo "$as_me:3833: result: $cf_cv_mixedcase" >&5
     16717+echo "$as_me:3678: result: $cf_cv_mixedcase" >&5
    1420316718 echo "${ECHO_T}$cf_cv_mixedcase" >&6
    1420416719 test "$cf_cv_mixedcase" = yes && cat >>confdefs.h <<\EOF
    1420516720 #define MIXEDCASE_FILENAMES 1
    14206 @@ -3704,7 +3847,7 @@
     16721@@ -3704,7 +3692,7 @@
    1420716722 fi
    1420816723 
    1420916724 # do this after mixed-case option (tags/TAGS is not as important as tic).
    1421016725-echo "$as_me:3707: checking whether ${MAKE-make} sets \${MAKE}" >&5
    14211 +echo "$as_me:3850: checking whether ${MAKE-make} sets \${MAKE}" >&5
     16726+echo "$as_me:3695: checking whether ${MAKE-make} sets \${MAKE}" >&5
    1421216727 echo $ECHO_N "checking whether ${MAKE-make} sets \${MAKE}... $ECHO_C" >&6
    1421316728 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,./+-,__p_,'`
    1421416729 if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then
    14215 @@ -3724,11 +3867,11 @@
     16730@@ -3724,11 +3712,11 @@
    1421616731 rm -f conftest.make
    1421716732 fi
    1421816733 if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then
    1421916734-  echo "$as_me:3727: result: yes" >&5
    14220 +  echo "$as_me:3870: result: yes" >&5
     16735+  echo "$as_me:3715: result: yes" >&5
    1422116736 echo "${ECHO_T}yes" >&6
    1422216737   SET_MAKE=
    1422316738 else
    1422416739-  echo "$as_me:3731: result: no" >&5
    14225 +  echo "$as_me:3874: result: no" >&5
     16740+  echo "$as_me:3719: result: no" >&5
    1422616741 echo "${ECHO_T}no" >&6
    1422716742   SET_MAKE="MAKE=${MAKE-make}"
    1422816743 fi
    14229 @@ -3737,7 +3880,7 @@
     16744@@ -3737,7 +3725,7 @@
    1423016745 do
    1423116746   # Extract the first word of "$ac_prog", so it can be a program name with args.
    1423216747 set dummy $ac_prog; ac_word=$2
    1423316748-echo "$as_me:3740: checking for $ac_word" >&5
    14234 +echo "$as_me:3883: checking for $ac_word" >&5
     16749+echo "$as_me:3728: checking for $ac_word" >&5
    1423516750 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    1423616751 if test "${ac_cv_prog_CTAGS+set}" = set; then
    1423716752   echo $ECHO_N "(cached) $ECHO_C" >&6
    14238 @@ -3752,7 +3895,7 @@
     16753@@ -3752,7 +3740,7 @@
    1423916754   test -z "$ac_dir" && ac_dir=.
    1424016755   $as_executable_p "$ac_dir/$ac_word" || continue
    1424116756 ac_cv_prog_CTAGS="$ac_prog"
    1424216757-echo "$as_me:3755: found $ac_dir/$ac_word" >&5
    14243 +echo "$as_me:3898: found $ac_dir/$ac_word" >&5
     16758+echo "$as_me:3743: found $ac_dir/$ac_word" >&5
    1424416759 break
    1424516760 done
    1424616761 
    14247 @@ -3760,10 +3903,10 @@
     16762@@ -3760,10 +3748,10 @@
    1424816763 fi
    1424916764 CTAGS=$ac_cv_prog_CTAGS
    1425016765 if test -n "$CTAGS"; then
    1425116766-  echo "$as_me:3763: result: $CTAGS" >&5
    14252 +  echo "$as_me:3906: result: $CTAGS" >&5
     16767+  echo "$as_me:3751: result: $CTAGS" >&5
    1425316768 echo "${ECHO_T}$CTAGS" >&6
    1425416769 else
    1425516770-  echo "$as_me:3766: result: no" >&5
    14256 +  echo "$as_me:3909: result: no" >&5
     16771+  echo "$as_me:3754: result: no" >&5
    1425716772 echo "${ECHO_T}no" >&6
    1425816773 fi
    1425916774 
    14260 @@ -3774,7 +3917,7 @@
     16775@@ -3774,7 +3762,7 @@
    1426116776 do
    1426216777   # Extract the first word of "$ac_prog", so it can be a program name with args.
    1426316778 set dummy $ac_prog; ac_word=$2
    1426416779-echo "$as_me:3777: checking for $ac_word" >&5
    14265 +echo "$as_me:3920: checking for $ac_word" >&5
     16780+echo "$as_me:3765: checking for $ac_word" >&5
    1426616781 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    1426716782 if test "${ac_cv_prog_ETAGS+set}" = set; then
    1426816783   echo $ECHO_N "(cached) $ECHO_C" >&6
    14269 @@ -3789,7 +3932,7 @@
     16784@@ -3789,7 +3777,7 @@
    1427016785   test -z "$ac_dir" && ac_dir=.
    1427116786   $as_executable_p "$ac_dir/$ac_word" || continue
    1427216787 ac_cv_prog_ETAGS="$ac_prog"
    1427316788-echo "$as_me:3792: found $ac_dir/$ac_word" >&5
    14274 +echo "$as_me:3935: found $ac_dir/$ac_word" >&5
     16789+echo "$as_me:3780: found $ac_dir/$ac_word" >&5
    1427516790 break
    1427616791 done
    1427716792 
    14278 @@ -3797,10 +3940,10 @@
     16793@@ -3797,10 +3785,10 @@
    1427916794 fi
    1428016795 ETAGS=$ac_cv_prog_ETAGS
    1428116796 if test -n "$ETAGS"; then
    1428216797-  echo "$as_me:3800: result: $ETAGS" >&5
    14283 +  echo "$as_me:3943: result: $ETAGS" >&5
     16798+  echo "$as_me:3788: result: $ETAGS" >&5
    1428416799 echo "${ECHO_T}$ETAGS" >&6
    1428516800 else
    1428616801-  echo "$as_me:3803: result: no" >&5
    14287 +  echo "$as_me:3946: result: no" >&5
     16802+  echo "$as_me:3791: result: no" >&5
    1428816803 echo "${ECHO_T}no" >&6
    1428916804 fi
    1429016805 
    14291 @@ -3809,7 +3952,7 @@
     16806@@ -3809,7 +3797,7 @@
    1429216807 
    1429316808 # Extract the first word of "${CTAGS:-ctags}", so it can be a program name with args.
    1429416809 set dummy ${CTAGS:-ctags}; ac_word=$2
    1429516810-echo "$as_me:3812: checking for $ac_word" >&5
    14296 +echo "$as_me:3955: checking for $ac_word" >&5
     16811+echo "$as_me:3800: checking for $ac_word" >&5
    1429716812 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    1429816813 if test "${ac_cv_prog_MAKE_LOWER_TAGS+set}" = set; then
    1429916814   echo $ECHO_N "(cached) $ECHO_C" >&6
    14300 @@ -3824,7 +3967,7 @@
     16815@@ -3824,7 +3812,7 @@
    1430116816   test -z "$ac_dir" && ac_dir=.
    1430216817   $as_executable_p "$ac_dir/$ac_word" || continue
    1430316818 ac_cv_prog_MAKE_LOWER_TAGS="yes"
    1430416819-echo "$as_me:3827: found $ac_dir/$ac_word" >&5
    14305 +echo "$as_me:3970: found $ac_dir/$ac_word" >&5
     16820+echo "$as_me:3815: found $ac_dir/$ac_word" >&5
    1430616821 break
    1430716822 done
    1430816823 
    14309 @@ -3833,17 +3976,17 @@
     16824@@ -3833,17 +3821,17 @@
    1431016825 fi
    1431116826 MAKE_LOWER_TAGS=$ac_cv_prog_MAKE_LOWER_TAGS
    1431216827 if test -n "$MAKE_LOWER_TAGS"; then
    1431316828-  echo "$as_me:3836: result: $MAKE_LOWER_TAGS" >&5
    14314 +  echo "$as_me:3979: result: $MAKE_LOWER_TAGS" >&5
     16829+  echo "$as_me:3824: result: $MAKE_LOWER_TAGS" >&5
    1431516830 echo "${ECHO_T}$MAKE_LOWER_TAGS" >&6
    1431616831 else
    1431716832-  echo "$as_me:3839: result: no" >&5
    14318 +  echo "$as_me:3982: result: no" >&5
     16833+  echo "$as_me:3827: result: no" >&5
    1431916834 echo "${ECHO_T}no" >&6
    1432016835 fi
     
    1432416839 set dummy ${ETAGS:-etags}; ac_word=$2
    1432516840-echo "$as_me:3846: checking for $ac_word" >&5
    14326 +echo "$as_me:3989: checking for $ac_word" >&5
     16841+echo "$as_me:3834: checking for $ac_word" >&5
    1432716842 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    1432816843 if test "${ac_cv_prog_MAKE_UPPER_TAGS+set}" = set; then
    1432916844   echo $ECHO_N "(cached) $ECHO_C" >&6
    14330 @@ -3858,7 +4001,7 @@
     16845@@ -3858,7 +3846,7 @@
    1433116846   test -z "$ac_dir" && ac_dir=.
    1433216847   $as_executable_p "$ac_dir/$ac_word" || continue
    1433316848 ac_cv_prog_MAKE_UPPER_TAGS="yes"
    1433416849-echo "$as_me:3861: found $ac_dir/$ac_word" >&5
    14335 +echo "$as_me:4004: found $ac_dir/$ac_word" >&5
     16850+echo "$as_me:3849: found $ac_dir/$ac_word" >&5
    1433616851 break
    1433716852 done
    1433816853 
    14339 @@ -3867,10 +4010,10 @@
     16854@@ -3867,10 +3855,10 @@
    1434016855 fi
    1434116856 MAKE_UPPER_TAGS=$ac_cv_prog_MAKE_UPPER_TAGS
    1434216857 if test -n "$MAKE_UPPER_TAGS"; then
    1434316858-  echo "$as_me:3870: result: $MAKE_UPPER_TAGS" >&5
    14344 +  echo "$as_me:4013: result: $MAKE_UPPER_TAGS" >&5
     16859+  echo "$as_me:3858: result: $MAKE_UPPER_TAGS" >&5
    1434516860 echo "${ECHO_T}$MAKE_UPPER_TAGS" >&6
    1434616861 else
    1434716862-  echo "$as_me:3873: result: no" >&5
    14348 +  echo "$as_me:4016: result: no" >&5
     16863+  echo "$as_me:3861: result: no" >&5
    1434916864 echo "${ECHO_T}no" >&6
    1435016865 fi
    1435116866 
    14352 @@ -3890,7 +4033,7 @@
     16867@@ -3890,7 +3878,7 @@
    1435316868        MAKE_LOWER_TAGS="#"
    1435416869 fi
    1435516870 
    1435616871-echo "$as_me:3893: checking for makeflags variable" >&5
    14357 +echo "$as_me:4036: checking for makeflags variable" >&5
     16872+echo "$as_me:3881: checking for makeflags variable" >&5
    1435816873 echo $ECHO_N "checking for makeflags variable... $ECHO_C" >&6
    1435916874 if test "${cf_cv_makeflags+set}" = set; then
    1436016875   echo $ECHO_N "(cached) $ECHO_C" >&6
    14361 @@ -3924,13 +4067,13 @@
     16876@@ -3924,13 +3912,13 @@
    1436216877        rm -f cf_makeflags.tmp
    1436316878 
    1436416879 fi
    1436516880-echo "$as_me:3927: result: $cf_cv_makeflags" >&5
    14366 +echo "$as_me:4070: result: $cf_cv_makeflags" >&5
     16881+echo "$as_me:3915: result: $cf_cv_makeflags" >&5
    1436716882 echo "${ECHO_T}$cf_cv_makeflags" >&6
    1436816883 
     
    1437116886 set dummy ${ac_tool_prefix}ranlib; ac_word=$2
    1437216887-echo "$as_me:3933: checking for $ac_word" >&5
    14373 +echo "$as_me:4076: checking for $ac_word" >&5
     16888+echo "$as_me:3921: checking for $ac_word" >&5
    1437416889 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    1437516890 if test "${ac_cv_prog_RANLIB+set}" = set; then
    1437616891   echo $ECHO_N "(cached) $ECHO_C" >&6
    14377 @@ -3945,7 +4088,7 @@
     16892@@ -3945,7 +3933,7 @@
    1437816893   test -z "$ac_dir" && ac_dir=.
    1437916894   $as_executable_p "$ac_dir/$ac_word" || continue
    1438016895 ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
    1438116896-echo "$as_me:3948: found $ac_dir/$ac_word" >&5
    14382 +echo "$as_me:4091: found $ac_dir/$ac_word" >&5
     16897+echo "$as_me:3936: found $ac_dir/$ac_word" >&5
    1438316898 break
    1438416899 done
    1438516900 
    14386 @@ -3953,10 +4096,10 @@
     16901@@ -3953,10 +3941,10 @@
    1438716902 fi
    1438816903 RANLIB=$ac_cv_prog_RANLIB
    1438916904 if test -n "$RANLIB"; then
    1439016905-  echo "$as_me:3956: result: $RANLIB" >&5
    14391 +  echo "$as_me:4099: result: $RANLIB" >&5
     16906+  echo "$as_me:3944: result: $RANLIB" >&5
    1439216907 echo "${ECHO_T}$RANLIB" >&6
    1439316908 else
    1439416909-  echo "$as_me:3959: result: no" >&5
    14395 +  echo "$as_me:4102: result: no" >&5
     16910+  echo "$as_me:3947: result: no" >&5
    1439616911 echo "${ECHO_T}no" >&6
    1439716912 fi
    1439816913 
    14399 @@ -3965,7 +4108,7 @@
     16914@@ -3965,7 +3953,7 @@
    1440016915   ac_ct_RANLIB=$RANLIB
    1440116916   # Extract the first word of "ranlib", so it can be a program name with args.
    1440216917 set dummy ranlib; ac_word=$2
    1440316918-echo "$as_me:3968: checking for $ac_word" >&5
    14404 +echo "$as_me:4111: checking for $ac_word" >&5
     16919+echo "$as_me:3956: checking for $ac_word" >&5
    1440516920 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    1440616921 if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then
    1440716922   echo $ECHO_N "(cached) $ECHO_C" >&6
    14408 @@ -3980,7 +4123,7 @@
     16923@@ -3980,7 +3968,7 @@
    1440916924   test -z "$ac_dir" && ac_dir=.
    1441016925   $as_executable_p "$ac_dir/$ac_word" || continue
    1441116926 ac_cv_prog_ac_ct_RANLIB="ranlib"
    1441216927-echo "$as_me:3983: found $ac_dir/$ac_word" >&5
    14413 +echo "$as_me:4126: found $ac_dir/$ac_word" >&5
     16928+echo "$as_me:3971: found $ac_dir/$ac_word" >&5
    1441416929 break
    1441516930 done
    1441616931 
    14417 @@ -3989,10 +4132,10 @@
     16932@@ -3989,10 +3977,10 @@
    1441816933 fi
    1441916934 ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB
    1442016935 if test -n "$ac_ct_RANLIB"; then
    1442116936-  echo "$as_me:3992: result: $ac_ct_RANLIB" >&5
    14422 +  echo "$as_me:4135: result: $ac_ct_RANLIB" >&5
     16937+  echo "$as_me:3980: result: $ac_ct_RANLIB" >&5
    1442316938 echo "${ECHO_T}$ac_ct_RANLIB" >&6
    1442416939 else
    1442516940-  echo "$as_me:3995: result: no" >&5
    14426 +  echo "$as_me:4138: result: no" >&5
     16941+  echo "$as_me:3983: result: no" >&5
    1442716942 echo "${ECHO_T}no" >&6
    1442816943 fi
    1442916944 
    14430 @@ -4004,7 +4147,7 @@
     16945@@ -4004,7 +3992,7 @@
    1443116946 if test -n "$ac_tool_prefix"; then
    1443216947   # Extract the first word of "${ac_tool_prefix}ld", so it can be a program name with args.
    1443316948 set dummy ${ac_tool_prefix}ld; ac_word=$2
    1443416949-echo "$as_me:4007: checking for $ac_word" >&5
    14435 +echo "$as_me:4150: checking for $ac_word" >&5
     16950+echo "$as_me:3995: checking for $ac_word" >&5
    1443616951 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    1443716952 if test "${ac_cv_prog_LD+set}" = set; then
    1443816953   echo $ECHO_N "(cached) $ECHO_C" >&6
    14439 @@ -4019,7 +4162,7 @@
     16954@@ -4019,7 +4007,7 @@
    1444016955   test -z "$ac_dir" && ac_dir=.
    1444116956   $as_executable_p "$ac_dir/$ac_word" || continue
    1444216957 ac_cv_prog_LD="${ac_tool_prefix}ld"
    1444316958-echo "$as_me:4022: found $ac_dir/$ac_word" >&5
    14444 +echo "$as_me:4165: found $ac_dir/$ac_word" >&5
     16959+echo "$as_me:4010: found $ac_dir/$ac_word" >&5
    1444516960 break
    1444616961 done
    1444716962 
    14448 @@ -4027,10 +4170,10 @@
     16963@@ -4027,10 +4015,10 @@
    1444916964 fi
    1445016965 LD=$ac_cv_prog_LD
    1445116966 if test -n "$LD"; then
    1445216967-  echo "$as_me:4030: result: $LD" >&5
    14453 +  echo "$as_me:4173: result: $LD" >&5
     16968+  echo "$as_me:4018: result: $LD" >&5
    1445416969 echo "${ECHO_T}$LD" >&6
    1445516970 else
    1445616971-  echo "$as_me:4033: result: no" >&5
    14457 +  echo "$as_me:4176: result: no" >&5
     16972+  echo "$as_me:4021: result: no" >&5
    1445816973 echo "${ECHO_T}no" >&6
    1445916974 fi
    1446016975 
    14461 @@ -4039,7 +4182,7 @@
     16976@@ -4039,7 +4027,7 @@
    1446216977   ac_ct_LD=$LD
    1446316978   # Extract the first word of "ld", so it can be a program name with args.
    1446416979 set dummy ld; ac_word=$2
    1446516980-echo "$as_me:4042: checking for $ac_word" >&5
    14466 +echo "$as_me:4185: checking for $ac_word" >&5
     16981+echo "$as_me:4030: checking for $ac_word" >&5
    1446716982 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    1446816983 if test "${ac_cv_prog_ac_ct_LD+set}" = set; then
    1446916984   echo $ECHO_N "(cached) $ECHO_C" >&6
    14470 @@ -4054,7 +4197,7 @@
     16985@@ -4054,7 +4042,7 @@
    1447116986   test -z "$ac_dir" && ac_dir=.
    1447216987   $as_executable_p "$ac_dir/$ac_word" || continue
    1447316988 ac_cv_prog_ac_ct_LD="ld"
    1447416989-echo "$as_me:4057: found $ac_dir/$ac_word" >&5
    14475 +echo "$as_me:4200: found $ac_dir/$ac_word" >&5
     16990+echo "$as_me:4045: found $ac_dir/$ac_word" >&5
    1447616991 break
    1447716992 done
    1447816993 
    14479 @@ -4063,10 +4206,10 @@
     16994@@ -4063,10 +4051,10 @@
    1448016995 fi
    1448116996 ac_ct_LD=$ac_cv_prog_ac_ct_LD
    1448216997 if test -n "$ac_ct_LD"; then
    1448316998-  echo "$as_me:4066: result: $ac_ct_LD" >&5
    14484 +  echo "$as_me:4209: result: $ac_ct_LD" >&5
     16999+  echo "$as_me:4054: result: $ac_ct_LD" >&5
    1448517000 echo "${ECHO_T}$ac_ct_LD" >&6
    1448617001 else
    1448717002-  echo "$as_me:4069: result: no" >&5
    14488 +  echo "$as_me:4212: result: no" >&5
     17003+  echo "$as_me:4057: result: no" >&5
    1448917004 echo "${ECHO_T}no" >&6
    1449017005 fi
    1449117006 
    14492 @@ -4078,7 +4221,7 @@
     17007@@ -4078,7 +4066,7 @@
    1449317008 if test -n "$ac_tool_prefix"; then
    1449417009   # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
    1449517010 set dummy ${ac_tool_prefix}ar; ac_word=$2
    1449617011-echo "$as_me:4081: checking for $ac_word" >&5
    14497 +echo "$as_me:4224: checking for $ac_word" >&5
     17012+echo "$as_me:4069: checking for $ac_word" >&5
    1449817013 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    1449917014 if test "${ac_cv_prog_AR+set}" = set; then
    1450017015   echo $ECHO_N "(cached) $ECHO_C" >&6
    14501 @@ -4093,7 +4236,7 @@
     17016@@ -4093,7 +4081,7 @@
    1450217017   test -z "$ac_dir" && ac_dir=.
    1450317018   $as_executable_p "$ac_dir/$ac_word" || continue
    1450417019 ac_cv_prog_AR="${ac_tool_prefix}ar"
    1450517020-echo "$as_me:4096: found $ac_dir/$ac_word" >&5
    14506 +echo "$as_me:4239: found $ac_dir/$ac_word" >&5
     17021+echo "$as_me:4084: found $ac_dir/$ac_word" >&5
    1450717022 break
    1450817023 done
    1450917024 
    14510 @@ -4101,10 +4244,10 @@
     17025@@ -4101,10 +4089,10 @@
    1451117026 fi
    1451217027 AR=$ac_cv_prog_AR
    1451317028 if test -n "$AR"; then
    1451417029-  echo "$as_me:4104: result: $AR" >&5
    14515 +  echo "$as_me:4247: result: $AR" >&5
     17030+  echo "$as_me:4092: result: $AR" >&5
    1451617031 echo "${ECHO_T}$AR" >&6
    1451717032 else
    1451817033-  echo "$as_me:4107: result: no" >&5
    14519 +  echo "$as_me:4250: result: no" >&5
     17034+  echo "$as_me:4095: result: no" >&5
    1452017035 echo "${ECHO_T}no" >&6
    1452117036 fi
    1452217037 
    14523 @@ -4113,7 +4256,7 @@
     17038@@ -4113,7 +4101,7 @@
    1452417039   ac_ct_AR=$AR
    1452517040   # Extract the first word of "ar", so it can be a program name with args.
    1452617041 set dummy ar; ac_word=$2
    1452717042-echo "$as_me:4116: checking for $ac_word" >&5
    14528 +echo "$as_me:4259: checking for $ac_word" >&5
     17043+echo "$as_me:4104: checking for $ac_word" >&5
    1452917044 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    1453017045 if test "${ac_cv_prog_ac_ct_AR+set}" = set; then
    1453117046   echo $ECHO_N "(cached) $ECHO_C" >&6
    14532 @@ -4128,7 +4271,7 @@
     17047@@ -4128,7 +4116,7 @@
    1453317048   test -z "$ac_dir" && ac_dir=.
    1453417049   $as_executable_p "$ac_dir/$ac_word" || continue
    1453517050 ac_cv_prog_ac_ct_AR="ar"
    1453617051-echo "$as_me:4131: found $ac_dir/$ac_word" >&5
    14537 +echo "$as_me:4274: found $ac_dir/$ac_word" >&5
     17052+echo "$as_me:4119: found $ac_dir/$ac_word" >&5
    1453817053 break
    1453917054 done
    1454017055 
    14541 @@ -4137,10 +4280,10 @@
     17056@@ -4137,10 +4125,10 @@
    1454217057 fi
    1454317058 ac_ct_AR=$ac_cv_prog_ac_ct_AR
    1454417059 if test -n "$ac_ct_AR"; then
    1454517060-  echo "$as_me:4140: result: $ac_ct_AR" >&5
    14546 +  echo "$as_me:4283: result: $ac_ct_AR" >&5
     17061+  echo "$as_me:4128: result: $ac_ct_AR" >&5
    1454717062 echo "${ECHO_T}$ac_ct_AR" >&6
    1454817063 else
    1454917064-  echo "$as_me:4143: result: no" >&5
    14550 +  echo "$as_me:4286: result: no" >&5
     17065+  echo "$as_me:4131: result: no" >&5
    1455117066 echo "${ECHO_T}no" >&6
    1455217067 fi
    1455317068 
    14554 @@ -4152,7 +4295,7 @@
     17069@@ -4152,7 +4140,7 @@
    1455517070 if test -n "$ac_tool_prefix"; then
    1455617071   # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
    1455717072 set dummy ${ac_tool_prefix}ar; ac_word=$2
    1455817073-echo "$as_me:4155: checking for $ac_word" >&5
    14559 +echo "$as_me:4298: checking for $ac_word" >&5
     17074+echo "$as_me:4143: checking for $ac_word" >&5
    1456017075 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    1456117076 if test "${ac_cv_prog_AR+set}" = set; then
    1456217077   echo $ECHO_N "(cached) $ECHO_C" >&6
    14563 @@ -4167,7 +4310,7 @@
     17078@@ -4167,7 +4155,7 @@
    1456417079   test -z "$ac_dir" && ac_dir=.
    1456517080   $as_executable_p "$ac_dir/$ac_word" || continue
    1456617081 ac_cv_prog_AR="${ac_tool_prefix}ar"
    1456717082-echo "$as_me:4170: found $ac_dir/$ac_word" >&5
    14568 +echo "$as_me:4313: found $ac_dir/$ac_word" >&5
     17083+echo "$as_me:4158: found $ac_dir/$ac_word" >&5
    1456917084 break
    1457017085 done
    1457117086 
    14572 @@ -4175,10 +4318,10 @@
     17087@@ -4175,10 +4163,10 @@
    1457317088 fi
    1457417089 AR=$ac_cv_prog_AR
    1457517090 if test -n "$AR"; then
    1457617091-  echo "$as_me:4178: result: $AR" >&5
    14577 +  echo "$as_me:4321: result: $AR" >&5
     17092+  echo "$as_me:4166: result: $AR" >&5
    1457817093 echo "${ECHO_T}$AR" >&6
    1457917094 else
    1458017095-  echo "$as_me:4181: result: no" >&5
    14581 +  echo "$as_me:4324: result: no" >&5
     17096+  echo "$as_me:4169: result: no" >&5
    1458217097 echo "${ECHO_T}no" >&6
    1458317098 fi
    1458417099 
    14585 @@ -4187,7 +4330,7 @@
     17100@@ -4187,7 +4175,7 @@
    1458617101   ac_ct_AR=$AR
    1458717102   # Extract the first word of "ar", so it can be a program name with args.
    1458817103 set dummy ar; ac_word=$2
    1458917104-echo "$as_me:4190: checking for $ac_word" >&5
    14590 +echo "$as_me:4333: checking for $ac_word" >&5
     17105+echo "$as_me:4178: checking for $ac_word" >&5
    1459117106 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    1459217107 if test "${ac_cv_prog_ac_ct_AR+set}" = set; then
    1459317108   echo $ECHO_N "(cached) $ECHO_C" >&6
    14594 @@ -4202,7 +4345,7 @@
     17109@@ -4202,7 +4190,7 @@
    1459517110   test -z "$ac_dir" && ac_dir=.
    1459617111   $as_executable_p "$ac_dir/$ac_word" || continue
    1459717112 ac_cv_prog_ac_ct_AR="ar"
    1459817113-echo "$as_me:4205: found $ac_dir/$ac_word" >&5
    14599 +echo "$as_me:4348: found $ac_dir/$ac_word" >&5
     17114+echo "$as_me:4193: found $ac_dir/$ac_word" >&5
    1460017115 break
    1460117116 done
    1460217117 
    14603 @@ -4211,10 +4354,10 @@
     17118@@ -4211,10 +4199,10 @@
    1460417119 fi
    1460517120 ac_ct_AR=$ac_cv_prog_ac_ct_AR
    1460617121 if test -n "$ac_ct_AR"; then
    1460717122-  echo "$as_me:4214: result: $ac_ct_AR" >&5
    14608 +  echo "$as_me:4357: result: $ac_ct_AR" >&5
     17123+  echo "$as_me:4202: result: $ac_ct_AR" >&5
    1460917124 echo "${ECHO_T}$ac_ct_AR" >&6
    1461017125 else
    1461117126-  echo "$as_me:4217: result: no" >&5
    14612 +  echo "$as_me:4360: result: no" >&5
     17127+  echo "$as_me:4205: result: no" >&5
    1461317128 echo "${ECHO_T}no" >&6
    1461417129 fi
    1461517130 
    14616 @@ -4223,7 +4366,7 @@
     17131@@ -4223,7 +4211,7 @@
    1461717132   AR="$ac_cv_prog_AR"
    1461817133 fi
    1461917134 
    1462017135-echo "$as_me:4226: checking for options to update archives" >&5
    14621 +echo "$as_me:4369: checking for options to update archives" >&5
     17136+echo "$as_me:4214: checking for options to update archives" >&5
    1462217137 echo $ECHO_N "checking for options to update archives... $ECHO_C" >&6
    1462317138 if test "${cf_cv_ar_flags+set}" = set; then
    1462417139   echo $ECHO_N "(cached) $ECHO_C" >&6
    14625 @@ -4246,13 +4389,13 @@
     17140@@ -4246,13 +4234,13 @@
    1462617141                rm -f conftest.a
    1462717142 
    1462817143                cat >conftest.$ac_ext <<EOF
    1462917144-#line 4249 "configure"
    14630 +#line 4392 "configure"
     17145+#line 4237 "configure"
    1463117146 int    testdata[3] = { 123, 456, 789 };
    1463217147 EOF
    1463317148-               if { (eval echo "$as_me:4252: \"$ac_compile\"") >&5
    14634 +               if { (eval echo "$as_me:4395: \"$ac_compile\"") >&5
     17149+               if { (eval echo "$as_me:4240: \"$ac_compile\"") >&5
    1463517150   (eval $ac_compile) 2>&5
    1463617151   ac_status=$?
    1463717152-  echo "$as_me:4255: \$? = $ac_status" >&5
    14638 +  echo "$as_me:4398: \$? = $ac_status" >&5
     17153+  echo "$as_me:4243: \$? = $ac_status" >&5
    1463917154   (exit $ac_status); } ; then
    1464017155                        echo "$AR $ARFLAGS $cf_ar_flags conftest.a conftest.$ac_cv_objext" >&5
    1464117156                        $AR $ARFLAGS $cf_ar_flags conftest.a conftest.$ac_cv_objext 2>&5 1>/dev/null
    14642 @@ -4263,7 +4406,7 @@
     17157@@ -4263,7 +4251,7 @@
    1464317158                else
    1464417159                        test -n "$verbose" && echo "    cannot compile test-program" 1>&6
    1464517160 
    1464617161-echo "${as_me:-configure}:4266: testing cannot compile test-program ..." 1>&5
    14647 +echo "${as_me:-configure}:4409: testing cannot compile test-program ..." 1>&5
     17162+echo "${as_me:-configure}:4254: testing cannot compile test-program ..." 1>&5
    1464817163 
    1464917164                        break
    1465017165                fi
    14651 @@ -4271,7 +4414,7 @@
     17166@@ -4271,7 +4259,7 @@
    1465217167        rm -f conftest.a conftest.$ac_ext conftest.$ac_cv_objext
    1465317168 
    1465417169 fi
    1465517170-echo "$as_me:4274: result: $cf_cv_ar_flags" >&5
    14656 +echo "$as_me:4417: result: $cf_cv_ar_flags" >&5
     17171+echo "$as_me:4262: result: $cf_cv_ar_flags" >&5
    1465717172 echo "${ECHO_T}$cf_cv_ar_flags" >&6
    1465817173 
    1465917174 if test -n "$ARFLAGS" ; then
    14660 @@ -4282,7 +4425,7 @@
     17175@@ -4282,7 +4270,7 @@
    1466117176        ARFLAGS=$cf_cv_ar_flags
    1466217177 fi
    1466317178 
    1466417179-echo "$as_me:4285: checking if you have specified an install-prefix" >&5
    14665 +echo "$as_me:4428: checking if you have specified an install-prefix" >&5
     17180+echo "$as_me:4273: checking if you have specified an install-prefix" >&5
    1466617181 echo $ECHO_N "checking if you have specified an install-prefix... $ECHO_C" >&6
    1466717182 
    1466817183 # Check whether --with-install-prefix or --without-install-prefix was given.
    14669 @@ -4295,7 +4438,7 @@
     17184@@ -4295,7 +4283,7 @@
    1467017185                ;;
    1467117186        esac
    1467217187 fi;
    1467317188-echo "$as_me:4298: result: $DESTDIR" >&5
    14674 +echo "$as_me:4441: result: $DESTDIR" >&5
     17189+echo "$as_me:4286: result: $DESTDIR" >&5
    1467517190 echo "${ECHO_T}$DESTDIR" >&6
    1467617191 
    1467717192 ###############################################################################
    14678 @@ -4323,7 +4466,7 @@
     17193@@ -4323,7 +4311,7 @@
    1467917194 do
    1468017195   # Extract the first word of "$ac_prog", so it can be a program name with args.
    1468117196 set dummy $ac_prog; ac_word=$2
    1468217197-echo "$as_me:4326: checking for $ac_word" >&5
    14683 +echo "$as_me:4469: checking for $ac_word" >&5
     17198+echo "$as_me:4314: checking for $ac_word" >&5
    1468417199 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    1468517200 if test "${ac_cv_prog_BUILD_CC+set}" = set; then
    1468617201   echo $ECHO_N "(cached) $ECHO_C" >&6
    14687 @@ -4338,7 +4481,7 @@
     17202@@ -4338,7 +4326,7 @@
    1468817203   test -z "$ac_dir" && ac_dir=.
    1468917204   $as_executable_p "$ac_dir/$ac_word" || continue
    1469017205 ac_cv_prog_BUILD_CC="$ac_prog"
    1469117206-echo "$as_me:4341: found $ac_dir/$ac_word" >&5
    14692 +echo "$as_me:4484: found $ac_dir/$ac_word" >&5
     17207+echo "$as_me:4329: found $ac_dir/$ac_word" >&5
    1469317208 break
    1469417209 done
    1469517210 
    14696 @@ -4346,10 +4489,10 @@
     17211@@ -4346,10 +4334,10 @@
    1469717212 fi
    1469817213 BUILD_CC=$ac_cv_prog_BUILD_CC
    1469917214 if test -n "$BUILD_CC"; then
    1470017215-  echo "$as_me:4349: result: $BUILD_CC" >&5
    14701 +  echo "$as_me:4492: result: $BUILD_CC" >&5
     17216+  echo "$as_me:4337: result: $BUILD_CC" >&5
    1470217217 echo "${ECHO_T}$BUILD_CC" >&6
    1470317218 else
    1470417219-  echo "$as_me:4352: result: no" >&5
    14705 +  echo "$as_me:4495: result: no" >&5
     17220+  echo "$as_me:4340: result: no" >&5
    1470617221 echo "${ECHO_T}no" >&6
    1470717222 fi
    1470817223 
    14709 @@ -4357,12 +4500,12 @@
     17224@@ -4357,12 +4345,12 @@
    1471017225 done
    1471117226 
    1471217227 fi;
    1471317228-       echo "$as_me:4360: checking for native build C compiler" >&5
    14714 +       echo "$as_me:4503: checking for native build C compiler" >&5
     17229+       echo "$as_me:4348: checking for native build C compiler" >&5
    1471517230 echo $ECHO_N "checking for native build C compiler... $ECHO_C" >&6
    1471617231-       echo "$as_me:4362: result: $BUILD_CC" >&5
    14717 +       echo "$as_me:4505: result: $BUILD_CC" >&5
     17232+       echo "$as_me:4350: result: $BUILD_CC" >&5
    1471817233 echo "${ECHO_T}$BUILD_CC" >&6
    1471917234 
    1472017235-       echo "$as_me:4365: checking for native build C preprocessor" >&5
    14721 +       echo "$as_me:4508: checking for native build C preprocessor" >&5
     17236+       echo "$as_me:4353: checking for native build C preprocessor" >&5
    1472217237 echo $ECHO_N "checking for native build C preprocessor... $ECHO_C" >&6
    1472317238 
    1472417239 # Check whether --with-build-cpp or --without-build-cpp was given.
    14725 @@ -4372,10 +4515,10 @@
     17240@@ -4372,10 +4360,10 @@
    1472617241 else
    1472717242   BUILD_CPP='${BUILD_CC} -E'
    1472817243 fi;
    1472917244-       echo "$as_me:4375: result: $BUILD_CPP" >&5
    14730 +       echo "$as_me:4518: result: $BUILD_CPP" >&5
     17245+       echo "$as_me:4363: result: $BUILD_CPP" >&5
    1473117246 echo "${ECHO_T}$BUILD_CPP" >&6
    1473217247 
    1473317248-       echo "$as_me:4378: checking for native build C flags" >&5
    14734 +       echo "$as_me:4521: checking for native build C flags" >&5
     17249+       echo "$as_me:4366: checking for native build C flags" >&5
    1473517250 echo $ECHO_N "checking for native build C flags... $ECHO_C" >&6
    1473617251 
    1473717252 # Check whether --with-build-cflags or --without-build-cflags was given.
    14738 @@ -4383,10 +4526,10 @@
     17253@@ -4383,10 +4371,10 @@
    1473917254   withval="$with_build_cflags"
    1474017255   BUILD_CFLAGS="$withval"
    1474117256 fi;
    1474217257-       echo "$as_me:4386: result: $BUILD_CFLAGS" >&5
    14743 +       echo "$as_me:4529: result: $BUILD_CFLAGS" >&5
     17258+       echo "$as_me:4374: result: $BUILD_CFLAGS" >&5
    1474417259 echo "${ECHO_T}$BUILD_CFLAGS" >&6
    1474517260 
    1474617261-       echo "$as_me:4389: checking for native build C preprocessor-flags" >&5
    14747 +       echo "$as_me:4532: checking for native build C preprocessor-flags" >&5
     17262+       echo "$as_me:4377: checking for native build C preprocessor-flags" >&5
    1474817263 echo $ECHO_N "checking for native build C preprocessor-flags... $ECHO_C" >&6
    1474917264 
    1475017265 # Check whether --with-build-cppflags or --without-build-cppflags was given.
    14751 @@ -4394,10 +4537,10 @@
     17266@@ -4394,10 +4382,10 @@
    1475217267   withval="$with_build_cppflags"
    1475317268   BUILD_CPPFLAGS="$withval"
    1475417269 fi;
    1475517270-       echo "$as_me:4397: result: $BUILD_CPPFLAGS" >&5
    14756 +       echo "$as_me:4540: result: $BUILD_CPPFLAGS" >&5
     17271+       echo "$as_me:4385: result: $BUILD_CPPFLAGS" >&5
    1475717272 echo "${ECHO_T}$BUILD_CPPFLAGS" >&6
    1475817273 
    1475917274-       echo "$as_me:4400: checking for native build linker-flags" >&5
    14760 +       echo "$as_me:4543: checking for native build linker-flags" >&5
     17275+       echo "$as_me:4388: checking for native build linker-flags" >&5
    1476117276 echo $ECHO_N "checking for native build linker-flags... $ECHO_C" >&6
    1476217277 
    1476317278 # Check whether --with-build-ldflags or --without-build-ldflags was given.
    14764 @@ -4405,10 +4548,10 @@
     17279@@ -4405,10 +4393,10 @@
    1476517280   withval="$with_build_ldflags"
    1476617281   BUILD_LDFLAGS="$withval"
    1476717282 fi;
    1476817283-       echo "$as_me:4408: result: $BUILD_LDFLAGS" >&5
    14769 +       echo "$as_me:4551: result: $BUILD_LDFLAGS" >&5
     17284+       echo "$as_me:4396: result: $BUILD_LDFLAGS" >&5
    1477017285 echo "${ECHO_T}$BUILD_LDFLAGS" >&6
    1477117286 
    1477217287-       echo "$as_me:4411: checking for native build linker-libraries" >&5
    14773 +       echo "$as_me:4554: checking for native build linker-libraries" >&5
     17288+       echo "$as_me:4399: checking for native build linker-libraries" >&5
    1477417289 echo $ECHO_N "checking for native build linker-libraries... $ECHO_C" >&6
    1477517290 
    1477617291 # Check whether --with-build-libs or --without-build-libs was given.
    14777 @@ -4416,7 +4559,7 @@
     17292@@ -4416,7 +4404,7 @@
    1477817293   withval="$with_build_libs"
    1477917294   BUILD_LIBS="$withval"
    1478017295 fi;
    1478117296-       echo "$as_me:4419: result: $BUILD_LIBS" >&5
    14782 +       echo "$as_me:4562: result: $BUILD_LIBS" >&5
     17297+       echo "$as_me:4407: result: $BUILD_LIBS" >&5
    1478317298 echo "${ECHO_T}$BUILD_LIBS" >&6
    1478417299 
    1478517300        # this assumes we're on Unix.
    14786 @@ -4426,7 +4569,7 @@
     17301@@ -4426,7 +4414,7 @@
    1478717302        : ${BUILD_CC:='${CC}'}
    1478817303 
    1478917304        if ( test "$BUILD_CC" = "$CC" || test "$BUILD_CC" = '${CC}' ) ; then
    1479017305-               { { echo "$as_me:4429: error: Cross-build requires two compilers.
    14791 +               { { echo "$as_me:4572: error: Cross-build requires two compilers.
     17306+               { { echo "$as_me:4417: error: Cross-build requires two compilers.
    1479217307 Use --with-build-cc to specify the native compiler." >&5
    1479317308 echo "$as_me: error: Cross-build requires two compilers.
    1479417309 Use --with-build-cc to specify the native compiler." >&2;}
    14795 @@ -4451,7 +4594,7 @@
     17310@@ -4451,7 +4439,7 @@
    1479617311 ### shared, for example.
    1479717312 cf_list_models=""
    1479817313 
    1479917314-echo "$as_me:4454: checking if libtool -version-number should be used" >&5
    14800 +echo "$as_me:4597: checking if libtool -version-number should be used" >&5
     17315+echo "$as_me:4442: checking if libtool -version-number should be used" >&5
    1480117316 echo $ECHO_N "checking if libtool -version-number should be used... $ECHO_C" >&6
    1480217317 
    1480317318 # Check whether --enable-libtool-version or --disable-libtool-version was given.
    14804 @@ -4468,7 +4611,7 @@
     17319@@ -4468,7 +4456,7 @@
    1480517320   cf_libtool_version=yes
    1480617321 
    1480717322 fi;
    1480817323-echo "$as_me:4471: result: $cf_libtool_version" >&5
    14809 +echo "$as_me:4614: result: $cf_libtool_version" >&5
     17324+echo "$as_me:4459: result: $cf_libtool_version" >&5
    1481017325 echo "${ECHO_T}$cf_libtool_version" >&6
    1481117326 
    1481217327 if test "$cf_libtool_version" = yes ; then
    14813 @@ -4493,7 +4636,7 @@
     17328@@ -4493,7 +4481,7 @@
    1481417329 LIB_INSTALL=
    1481517330 LIB_UNINSTALL=
    1481617331 
    1481717332-echo "$as_me:4496: checking if you want to build libraries with libtool" >&5
    14818 +echo "$as_me:4639: checking if you want to build libraries with libtool" >&5
     17333+echo "$as_me:4484: checking if you want to build libraries with libtool" >&5
    1481917334 echo $ECHO_N "checking if you want to build libraries with libtool... $ECHO_C" >&6
    1482017335 
    1482117336 # Check whether --with-libtool or --without-libtool was given.
    14822 @@ -4503,7 +4646,7 @@
     17337@@ -4503,7 +4491,7 @@
    1482317338 else
    1482417339   with_libtool=no
    1482517340 fi;
    1482617341-echo "$as_me:4506: result: $with_libtool" >&5
    14827 +echo "$as_me:4649: result: $with_libtool" >&5
     17342+echo "$as_me:4494: result: $with_libtool" >&5
    1482817343 echo "${ECHO_T}$with_libtool" >&6
    1482917344 if test "$with_libtool" != "no"; then
    1483017345 
    14831 @@ -4534,7 +4677,7 @@
     17346@@ -4522,7 +4510,7 @@
     17347   ;;
     17348 .[a-zA-Z]:[\\/]*) #(vi OS/2 EMX
     17349   ;;
     17350-.\${*prefix}*) #(vi
     17351+.\${*prefix}*|.\${*dir}*) #(vi
     17352   eval with_libtool="$with_libtool"
     17353   case ".$with_libtool" in #(vi
     17354   .NONE/*)
     17355@@ -4534,7 +4522,7 @@
    1483217356   with_libtool=`echo $with_libtool | sed -e s%NONE%$cf_path_syntax%`
    1483317357   ;;
    1483417358 *)
    1483517359-  { { echo "$as_me:4537: error: expected a pathname, not \"$with_libtool\"" >&5
    14836 +  { { echo "$as_me:4680: error: expected a pathname, not \"$with_libtool\"" >&5
     17360+  { { echo "$as_me:4525: error: expected a pathname, not \"$with_libtool\"" >&5
    1483717361 echo "$as_me: error: expected a pathname, not \"$with_libtool\"" >&2;}
    1483817362    { (exit 1); exit 1; }; }
    1483917363   ;;
    14840 @@ -4544,7 +4687,7 @@
     17364@@ -4544,7 +4532,7 @@
    1484117365        else
    1484217366                # Extract the first word of "libtool", so it can be a program name with args.
    1484317367 set dummy libtool; ac_word=$2
    1484417368-echo "$as_me:4547: checking for $ac_word" >&5
    14845 +echo "$as_me:4690: checking for $ac_word" >&5
     17369+echo "$as_me:4535: checking for $ac_word" >&5
    1484617370 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    1484717371 if test "${ac_cv_path_LIBTOOL+set}" = set; then
    1484817372   echo $ECHO_N "(cached) $ECHO_C" >&6
    14849 @@ -4561,7 +4704,7 @@
     17373@@ -4561,7 +4549,7 @@
    1485017374   test -z "$ac_dir" && ac_dir=.
    1485117375   if $as_executable_p "$ac_dir/$ac_word"; then
    1485217376    ac_cv_path_LIBTOOL="$ac_dir/$ac_word"
    1485317377-   echo "$as_me:4564: found $ac_dir/$ac_word" >&5
    14854 +   echo "$as_me:4707: found $ac_dir/$ac_word" >&5
     17378+   echo "$as_me:4552: found $ac_dir/$ac_word" >&5
    1485517379    break
    1485617380 fi
    1485717381 done
    14858 @@ -4572,20 +4715,20 @@
     17382@@ -4572,20 +4560,20 @@
    1485917383 LIBTOOL=$ac_cv_path_LIBTOOL
    1486017384 
    1486117385 if test -n "$LIBTOOL"; then
    1486217386-  echo "$as_me:4575: result: $LIBTOOL" >&5
    14863 +  echo "$as_me:4718: result: $LIBTOOL" >&5
     17387+  echo "$as_me:4563: result: $LIBTOOL" >&5
    1486417388 echo "${ECHO_T}$LIBTOOL" >&6
    1486517389 else
    1486617390-  echo "$as_me:4578: result: no" >&5
    14867 +  echo "$as_me:4721: result: no" >&5
     17391+  echo "$as_me:4566: result: no" >&5
    1486817392 echo "${ECHO_T}no" >&6
    1486917393 fi
     
    1487217396        if test -z "$LIBTOOL" ; then
    1487317397-               { { echo "$as_me:4584: error: Cannot find libtool" >&5
    14874 +               { { echo "$as_me:4727: error: Cannot find libtool" >&5
     17398+               { { echo "$as_me:4572: error: Cannot find libtool" >&5
    1487517399 echo "$as_me: error: Cannot find libtool" >&2;}
    1487617400    { (exit 1); exit 1; }; }
     
    1488117405        LIB_SUFFIX=.la
    1488217406        LIB_CLEAN='${LIBTOOL} --mode=clean'
    14883 @@ -4596,17 +4739,17 @@
     17407@@ -4596,17 +4584,17 @@
    1488417408        LIB_PREP=:
    1488517409 
    1488617410        # Show the version of libtool
    1488717411-       echo "$as_me:4599: checking version of libtool" >&5
    14888 +       echo "$as_me:4742: checking version of libtool" >&5
     17412+       echo "$as_me:4587: checking version of libtool" >&5
    1488917413 echo $ECHO_N "checking version of libtool... $ECHO_C" >&6
    1489017414 
     
    1489417418        cf_cv_libtool_version=`$LIBTOOL --version 2>&1 | sed -e '/^$/d' |sed -e '2,$d' -e 's/([^)]*)//g' -e 's/^[^1-9]*//' -e 's/[^0-9.].*//'`
    1489517419-       echo "$as_me:4606: result: $cf_cv_libtool_version" >&5
    14896 +       echo "$as_me:4749: result: $cf_cv_libtool_version" >&5
     17420+       echo "$as_me:4594: result: $cf_cv_libtool_version" >&5
    1489717421 echo "${ECHO_T}$cf_cv_libtool_version" >&6
    1489817422        if test -z "$cf_cv_libtool_version" ; then
    1489917423-               { { echo "$as_me:4609: error: This is not GNU libtool" >&5
    14900 +               { { echo "$as_me:4752: error: This is not GNU libtool" >&5
     17424+               { { echo "$as_me:4597: error: This is not GNU libtool" >&5
    1490117425 echo "$as_me: error: This is not GNU libtool" >&2;}
    1490217426    { (exit 1); exit 1; }; }
    1490317427        fi
    14904 @@ -4614,7 +4757,7 @@
     17428@@ -4614,7 +4602,7 @@
    1490517429        # special hack to add -no-undefined (which libtool should do for itself)
    1490617430        LT_UNDEF=
     
    1491117435                ;;
    1491217436        esac
    14913 @@ -4642,7 +4785,7 @@
     17437@@ -4642,7 +4630,7 @@
    1491417438 
    1491517439 else
    1491617440 
    1491717441-echo "$as_me:4645: checking if you want to build shared libraries" >&5
    14918 +echo "$as_me:4788: checking if you want to build shared libraries" >&5
     17442+echo "$as_me:4633: checking if you want to build shared libraries" >&5
    1491917443 echo $ECHO_N "checking if you want to build shared libraries... $ECHO_C" >&6
    1492017444 
    1492117445 # Check whether --with-shared or --without-shared was given.
    14922 @@ -4652,11 +4795,11 @@
     17446@@ -4652,11 +4640,11 @@
    1492317447 else
    1492417448   with_shared=no
    1492517449 fi;
    1492617450-echo "$as_me:4655: result: $with_shared" >&5
    14927 +echo "$as_me:4798: result: $with_shared" >&5
     17451+echo "$as_me:4643: result: $with_shared" >&5
    1492817452 echo "${ECHO_T}$with_shared" >&6
    1492917453 test "$with_shared" = "yes" && cf_list_models="$cf_list_models shared"
    1493017454 
    1493117455-echo "$as_me:4659: checking if you want to build static libraries" >&5
    14932 +echo "$as_me:4802: checking if you want to build static libraries" >&5
     17456+echo "$as_me:4647: checking if you want to build static libraries" >&5
    1493317457 echo $ECHO_N "checking if you want to build static libraries... $ECHO_C" >&6
    1493417458 
    1493517459 # Check whether --with-normal or --without-normal was given.
    14936 @@ -4666,11 +4809,11 @@
     17460@@ -4666,11 +4654,11 @@
    1493717461 else
    1493817462   with_normal=yes
    1493917463 fi;
    1494017464-echo "$as_me:4669: result: $with_normal" >&5
    14941 +echo "$as_me:4812: result: $with_normal" >&5
     17465+echo "$as_me:4657: result: $with_normal" >&5
    1494217466 echo "${ECHO_T}$with_normal" >&6
    1494317467 test "$with_normal" = "yes" && cf_list_models="$cf_list_models normal"
    1494417468 
    1494517469-echo "$as_me:4673: checking if you want to build debug libraries" >&5
    14946 +echo "$as_me:4816: checking if you want to build debug libraries" >&5
     17470+echo "$as_me:4661: checking if you want to build debug libraries" >&5
    1494717471 echo $ECHO_N "checking if you want to build debug libraries... $ECHO_C" >&6
    1494817472 
    1494917473 # Check whether --with-debug or --without-debug was given.
    14950 @@ -4680,11 +4823,11 @@
     17474@@ -4680,11 +4668,11 @@
    1495117475 else
    1495217476   with_debug=yes
    1495317477 fi;
    1495417478-echo "$as_me:4683: result: $with_debug" >&5
    14955 +echo "$as_me:4826: result: $with_debug" >&5
     17479+echo "$as_me:4671: result: $with_debug" >&5
    1495617480 echo "${ECHO_T}$with_debug" >&6
    1495717481 test "$with_debug" = "yes" && cf_list_models="$cf_list_models debug"
    1495817482 
    1495917483-echo "$as_me:4687: checking if you want to build profiling libraries" >&5
    14960 +echo "$as_me:4830: checking if you want to build profiling libraries" >&5
     17484+echo "$as_me:4675: checking if you want to build profiling libraries" >&5
    1496117485 echo $ECHO_N "checking if you want to build profiling libraries... $ECHO_C" >&6
    1496217486 
    1496317487 # Check whether --with-profile or --without-profile was given.
    14964 @@ -4694,7 +4837,7 @@
     17488@@ -4694,7 +4682,7 @@
    1496517489 else
    1496617490   with_profile=no
    1496717491 fi;
    1496817492-echo "$as_me:4697: result: $with_profile" >&5
    14969 +echo "$as_me:4840: result: $with_profile" >&5
     17493+echo "$as_me:4685: result: $with_profile" >&5
    1497017494 echo "${ECHO_T}$with_profile" >&6
    1497117495 test "$with_profile" = "yes" && cf_list_models="$cf_list_models profile"
    1497217496 
    14973 @@ -4702,19 +4845,19 @@
     17497@@ -4702,19 +4690,19 @@
    1497417498 
    1497517499 ###############################################################################
    1497617500 
    1497717501-echo "$as_me:4705: checking for specified models" >&5
    14978 +echo "$as_me:4848: checking for specified models" >&5
     17502+echo "$as_me:4693: checking for specified models" >&5
    1497917503 echo $ECHO_N "checking for specified models... $ECHO_C" >&6
    1498017504 test -z "$cf_list_models" && cf_list_models=normal
    1498117505 test "$with_libtool" != "no" && cf_list_models=libtool
    1498217506-echo "$as_me:4709: result: $cf_list_models" >&5
    14983 +echo "$as_me:4852: result: $cf_list_models" >&5
     17507+echo "$as_me:4697: result: $cf_list_models" >&5
    1498417508 echo "${ECHO_T}$cf_list_models" >&6
    1498517509 
     
    1498717511 ### up test-applications.
    1498817512-echo "$as_me:4714: checking for default model" >&5
    14989 +echo "$as_me:4857: checking for default model" >&5
     17513+echo "$as_me:4702: checking for default model" >&5
    1499017514 echo $ECHO_N "checking for default model... $ECHO_C" >&6
    1499117515 DFT_LWR_MODEL=`echo "$cf_list_models" | $AWK '{print $1}'`
    1499217516-echo "$as_me:4717: result: $DFT_LWR_MODEL" >&5
    14993 +echo "$as_me:4860: result: $DFT_LWR_MODEL" >&5
     17517+echo "$as_me:4705: result: $DFT_LWR_MODEL" >&5
    1499417518 echo "${ECHO_T}$DFT_LWR_MODEL" >&6
    1499517519 
    1499617520 DFT_UPR_MODEL=`echo "$DFT_LWR_MODEL" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%`
    14997 @@ -4728,6 +4871,22 @@
     17521@@ -4728,6 +4716,22 @@
    1499817522 LIB_DIR=../lib
    1499917523 LIB_2ND=../../lib
    1500017524 
    15001 +echo "$as_me:4874: checking if you want to have a library-prefix" >&5
     17525+echo "$as_me:4719: checking if you want to have a library-prefix" >&5
    1500217526+echo $ECHO_N "checking if you want to have a library-prefix... $ECHO_C" >&6
    1500317527+
     
    1500917533+  with_lib_prefix=auto
    1501017534+fi;
    15011 +echo "$as_me:4884: result: $with_lib_prefix" >&5
     17535+echo "$as_me:4729: result: $with_lib_prefix" >&5
    1501217536+echo "${ECHO_T}$with_lib_prefix" >&6
    1501317537+
     
    1501817542        OS/2*|os2*) #(vi
    1501917543         LIB_PREFIX=''
    15020 @@ -4737,13 +4896,18 @@
     17544@@ -4737,13 +4741,18 @@
    1502117545        esac
    1502217546 cf_prefix=$LIB_PREFIX
     
    1503517559 
    1503617560-echo "$as_me:4746: checking if you want to build a separate terminfo library" >&5
    15037 +echo "$as_me:4910: checking if you want to build a separate terminfo library" >&5
     17561+echo "$as_me:4755: checking if you want to build a separate terminfo library" >&5
    1503817562 echo $ECHO_N "checking if you want to build a separate terminfo library... $ECHO_C" >&6
    1503917563 
    1504017564 # Check whether --with-termlib or --without-termlib was given.
    15041 @@ -4753,10 +4917,10 @@
     17565@@ -4753,10 +4762,10 @@
    1504217566 else
    1504317567   with_termlib=no
    1504417568 fi;
    1504517569-echo "$as_me:4756: result: $with_termlib" >&5
    15046 +echo "$as_me:4920: result: $with_termlib" >&5
     17570+echo "$as_me:4765: result: $with_termlib" >&5
    1504717571 echo "${ECHO_T}$with_termlib" >&6
    1504817572 
    1504917573-echo "$as_me:4759: checking if you want to build a separate tic library" >&5
    15050 +echo "$as_me:4923: checking if you want to build a separate tic library" >&5
     17574+echo "$as_me:4768: checking if you want to build a separate tic library" >&5
    1505117575 echo $ECHO_N "checking if you want to build a separate tic library... $ECHO_C" >&6
    1505217576 
    1505317577 # Check whether --with-ticlib or --without-ticlib was given.
    15054 @@ -4766,13 +4930,13 @@
     17578@@ -4766,13 +4775,13 @@
    1505517579 else
    1505617580   with_ticlib=no
    1505717581 fi;
    1505817582-echo "$as_me:4769: result: $with_ticlib" >&5
    15059 +echo "$as_me:4933: result: $with_ticlib" >&5
     17583+echo "$as_me:4778: result: $with_ticlib" >&5
    1506017584 echo "${ECHO_T}$with_ticlib" >&6
    1506117585 
     
    1506417588 
    1506517589-echo "$as_me:4775: checking if you want to link with the GPM mouse library" >&5
    15066 +echo "$as_me:4939: checking if you want to link with the GPM mouse library" >&5
     17590+echo "$as_me:4784: checking if you want to link with the GPM mouse library" >&5
    1506717591 echo $ECHO_N "checking if you want to link with the GPM mouse library... $ECHO_C" >&6
    1506817592 
    1506917593 # Check whether --with-gpm or --without-gpm was given.
    15070 @@ -4782,27 +4946,27 @@
     17594@@ -4782,27 +4791,27 @@
    1507117595 else
    1507217596   with_gpm=maybe
    1507317597 fi;
    1507417598-echo "$as_me:4785: result: $with_gpm" >&5
    15075 +echo "$as_me:4949: result: $with_gpm" >&5
     17599+echo "$as_me:4794: result: $with_gpm" >&5
    1507617600 echo "${ECHO_T}$with_gpm" >&6
    1507717601 
    1507817602 if test "$with_gpm" != no ; then
    1507917603-       echo "$as_me:4789: checking for gpm.h" >&5
    15080 +       echo "$as_me:4953: checking for gpm.h" >&5
     17604+       echo "$as_me:4798: checking for gpm.h" >&5
    1508117605 echo $ECHO_N "checking for gpm.h... $ECHO_C" >&6
    1508217606 if test "${ac_cv_header_gpm_h+set}" = set; then
     
    1508517609   cat >conftest.$ac_ext <<_ACEOF
    1508617610-#line 4795 "configure"
    15087 +#line 4959 "configure"
     17611+#line 4804 "configure"
    1508817612 #include "confdefs.h"
    1508917613 #include <gpm.h>
    1509017614 _ACEOF
    1509117615-if { (eval echo "$as_me:4799: \"$ac_cpp conftest.$ac_ext\"") >&5
    15092 +if { (eval echo "$as_me:4963: \"$ac_cpp conftest.$ac_ext\"") >&5
     17616+if { (eval echo "$as_me:4808: \"$ac_cpp conftest.$ac_ext\"") >&5
    1509317617   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
    1509417618   ac_status=$?
     
    1509717621   cat conftest.err >&5
    1509817622-  echo "$as_me:4805: \$? = $ac_status" >&5
    15099 +  echo "$as_me:4969: \$? = $ac_status" >&5
     17623+  echo "$as_me:4814: \$? = $ac_status" >&5
    1510017624   (exit $ac_status); } >/dev/null; then
    1510117625   if test -s conftest.err; then
    1510217626     ac_cpp_err=$ac_c_preproc_warn_flag
    15103 @@ -4821,7 +4985,7 @@
     17627@@ -4821,7 +4830,7 @@
    1510417628 fi
    1510517629 rm -f conftest.err conftest.$ac_ext
    1510617630 fi
    1510717631-echo "$as_me:4824: result: $ac_cv_header_gpm_h" >&5
    15108 +echo "$as_me:4988: result: $ac_cv_header_gpm_h" >&5
     17632+echo "$as_me:4833: result: $ac_cv_header_gpm_h" >&5
    1510917633 echo "${ECHO_T}$ac_cv_header_gpm_h" >&6
    1511017634 if test $ac_cv_header_gpm_h = yes; then
    1511117635 
    15112 @@ -4832,14 +4996,14 @@
     17636@@ -4832,14 +4841,14 @@
    1511317637                if test "$with_gpm" != yes && test "$with_gpm" != maybe ; then
    1511417638                        test -n "$verbose" && echo "    assuming we really have GPM library" 1>&6
    1511517639 
    1511617640-echo "${as_me:-configure}:4835: testing assuming we really have GPM library ..." 1>&5
    15117 +echo "${as_me:-configure}:4999: testing assuming we really have GPM library ..." 1>&5
     17641+echo "${as_me:-configure}:4844: testing assuming we really have GPM library ..." 1>&5
    1511817642 
    1511917643                        cat >>confdefs.h <<\EOF
     
    1512317647                else
    1512417648-                       echo "$as_me:4842: checking for Gpm_Open in -lgpm" >&5
    15125 +                       echo "$as_me:5006: checking for Gpm_Open in -lgpm" >&5
     17649+                       echo "$as_me:4851: checking for Gpm_Open in -lgpm" >&5
    1512617650 echo $ECHO_N "checking for Gpm_Open in -lgpm... $ECHO_C" >&6
    1512717651 if test "${ac_cv_lib_gpm_Gpm_Open+set}" = set; then
    1512817652   echo $ECHO_N "(cached) $ECHO_C" >&6
    15129 @@ -4847,7 +5011,7 @@
     17653@@ -4847,7 +4856,7 @@
    1513017654   ac_check_lib_save_LIBS=$LIBS
    1513117655 LIBS="-lgpm  $LIBS"
    1513217656 cat >conftest.$ac_ext <<_ACEOF
    1513317657-#line 4850 "configure"
    15134 +#line 5014 "configure"
     17658+#line 4859 "configure"
    1513517659 #include "confdefs.h"
    1513617660 
    1513717661 /* Override any gcc2 internal prototype to avoid an error.  */
    15138 @@ -4866,16 +5030,16 @@
     17662@@ -4866,16 +4875,16 @@
    1513917663 }
    1514017664 _ACEOF
    1514117665 rm -f conftest.$ac_objext conftest$ac_exeext
    1514217666-if { (eval echo "$as_me:4869: \"$ac_link\"") >&5
    15143 +if { (eval echo "$as_me:5033: \"$ac_link\"") >&5
     17667+if { (eval echo "$as_me:4878: \"$ac_link\"") >&5
    1514417668   (eval $ac_link) 2>&5
    1514517669   ac_status=$?
    1514617670-  echo "$as_me:4872: \$? = $ac_status" >&5
    15147 +  echo "$as_me:5036: \$? = $ac_status" >&5
     17671+  echo "$as_me:4881: \$? = $ac_status" >&5
    1514817672   (exit $ac_status); } &&
    1514917673          { ac_try='test -s conftest$ac_exeext'
    1515017674-  { (eval echo "$as_me:4875: \"$ac_try\"") >&5
    15151 +  { (eval echo "$as_me:5039: \"$ac_try\"") >&5
     17675+  { (eval echo "$as_me:4884: \"$ac_try\"") >&5
    1515217676   (eval $ac_try) 2>&5
    1515317677   ac_status=$?
    1515417678-  echo "$as_me:4878: \$? = $ac_status" >&5
    15155 +  echo "$as_me:5042: \$? = $ac_status" >&5
     17679+  echo "$as_me:4887: \$? = $ac_status" >&5
    1515617680   (exit $ac_status); }; }; then
    1515717681   ac_cv_lib_gpm_Gpm_Open=yes
    1515817682 else
    15159 @@ -4886,13 +5050,13 @@
     17683@@ -4886,13 +4895,13 @@
    1516017684 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    1516117685 LIBS=$ac_check_lib_save_LIBS
    1516217686 fi
    1516317687-echo "$as_me:4889: result: $ac_cv_lib_gpm_Gpm_Open" >&5
    15164 +echo "$as_me:5053: result: $ac_cv_lib_gpm_Gpm_Open" >&5
     17688+echo "$as_me:4898: result: $ac_cv_lib_gpm_Gpm_Open" >&5
    1516517689 echo "${ECHO_T}$ac_cv_lib_gpm_Gpm_Open" >&6
    1516617690 if test $ac_cv_lib_gpm_Gpm_Open = yes; then
     
    1516917693 
    1517017694-                               { { echo "$as_me:4895: error: Cannot link with GPM library" >&5
    15171 +                               { { echo "$as_me:5059: error: Cannot link with GPM library" >&5
     17695+                               { { echo "$as_me:4904: error: Cannot link with GPM library" >&5
    1517217696 echo "$as_me: error: Cannot link with GPM library" >&2;}
    1517317697    { (exit 1); exit 1; }; }
    1517417698                fi
    15175 @@ -4902,7 +5066,7 @@
     17699@@ -4902,7 +4911,7 @@
    1517617700 
    1517717701 else
    1517817702 
    1517917703-               test "$with_gpm" != maybe && { echo "$as_me:4905: WARNING: Cannot find GPM header" >&5
    15180 +               test "$with_gpm" != maybe && { echo "$as_me:5069: WARNING: Cannot find GPM header" >&5
     17704+               test "$with_gpm" != maybe && { echo "$as_me:4914: WARNING: Cannot find GPM header" >&5
    1518117705 echo "$as_me: WARNING: Cannot find GPM header" >&2;}
    1518217706                with_gpm=no
    1518317707 
    15184 @@ -4911,7 +5075,7 @@
     17708@@ -4911,7 +4920,7 @@
    1518517709 fi
    1518617710 
    1518717711 if test "$with_gpm" != no ; then
    1518817712-       echo "$as_me:4914: checking if you want to load GPM dynamically" >&5
    15189 +       echo "$as_me:5078: checking if you want to load GPM dynamically" >&5
     17713+       echo "$as_me:4923: checking if you want to load GPM dynamically" >&5
    1519017714 echo $ECHO_N "checking if you want to load GPM dynamically... $ECHO_C" >&6
    1519117715 
    1519217716 # Check whether --with-dlsym or --without-dlsym was given.
    15193 @@ -4921,18 +5085,18 @@
     17717@@ -4921,18 +4930,18 @@
    1519417718 else
    1519517719   with_dlsym=yes
    1519617720 fi;
    1519717721-       echo "$as_me:4924: result: $with_dlsym" >&5
    15198 +       echo "$as_me:5088: result: $with_dlsym" >&5
     17722+       echo "$as_me:4933: result: $with_dlsym" >&5
    1519917723 echo "${ECHO_T}$with_dlsym" >&6
    1520017724        if test "$with_dlsym" = yes ; then
     
    1520217726 cf_have_dlsym=no
    1520317727-echo "$as_me:4929: checking for dlsym" >&5
    15204 +echo "$as_me:5093: checking for dlsym" >&5
     17728+echo "$as_me:4938: checking for dlsym" >&5
    1520517729 echo $ECHO_N "checking for dlsym... $ECHO_C" >&6
    1520617730 if test "${ac_cv_func_dlsym+set}" = set; then
     
    1520917733   cat >conftest.$ac_ext <<_ACEOF
    1521017734-#line 4935 "configure"
    15211 +#line 5099 "configure"
     17735+#line 4944 "configure"
    1521217736 #include "confdefs.h"
    1521317737 /* System header to define __stub macros and hopefully few prototypes,
    1521417738     which can conflict with char dlsym (); below.  */
    15215 @@ -4963,16 +5127,16 @@
     17739@@ -4955,7 +4964,7 @@
     17740 #if defined (__stub_dlsym) || defined (__stub___dlsym)
     17741 choke me
     17742 #else
     17743-f = dlsym;
     17744+f = dlsym; /* workaround for ICC 12.0.3 */ if (f == 0) return 1;
     17745 #endif
     17746 
     17747   ;
     17748@@ -4963,16 +4972,16 @@
    1521617749 }
    1521717750 _ACEOF
    1521817751 rm -f conftest.$ac_objext conftest$ac_exeext
    1521917752-if { (eval echo "$as_me:4966: \"$ac_link\"") >&5
    15220 +if { (eval echo "$as_me:5130: \"$ac_link\"") >&5
     17753+if { (eval echo "$as_me:4975: \"$ac_link\"") >&5
    1522117754   (eval $ac_link) 2>&5
    1522217755   ac_status=$?
    1522317756-  echo "$as_me:4969: \$? = $ac_status" >&5
    15224 +  echo "$as_me:5133: \$? = $ac_status" >&5
     17757+  echo "$as_me:4978: \$? = $ac_status" >&5
    1522517758   (exit $ac_status); } &&
    1522617759          { ac_try='test -s conftest$ac_exeext'
    1522717760-  { (eval echo "$as_me:4972: \"$ac_try\"") >&5
    15228 +  { (eval echo "$as_me:5136: \"$ac_try\"") >&5
     17761+  { (eval echo "$as_me:4981: \"$ac_try\"") >&5
    1522917762   (eval $ac_try) 2>&5
    1523017763   ac_status=$?
    1523117764-  echo "$as_me:4975: \$? = $ac_status" >&5
    15232 +  echo "$as_me:5139: \$? = $ac_status" >&5
     17765+  echo "$as_me:4984: \$? = $ac_status" >&5
    1523317766   (exit $ac_status); }; }; then
    1523417767   ac_cv_func_dlsym=yes
    1523517768 else
    15236 @@ -4982,14 +5146,14 @@
     17769@@ -4982,14 +4991,14 @@
    1523717770 fi
    1523817771 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    1523917772 fi
    1524017773-echo "$as_me:4985: result: $ac_cv_func_dlsym" >&5
    15241 +echo "$as_me:5149: result: $ac_cv_func_dlsym" >&5
     17774+echo "$as_me:4994: result: $ac_cv_func_dlsym" >&5
    1524217775 echo "${ECHO_T}$ac_cv_func_dlsym" >&6
    1524317776 if test $ac_cv_func_dlsym = yes; then
     
    1524717780 cf_have_libdl=no
    1524817781-echo "$as_me:4992: checking for dlsym in -ldl" >&5
    15249 +echo "$as_me:5156: checking for dlsym in -ldl" >&5
     17782+echo "$as_me:5001: checking for dlsym in -ldl" >&5
    1525017783 echo $ECHO_N "checking for dlsym in -ldl... $ECHO_C" >&6
    1525117784 if test "${ac_cv_lib_dl_dlsym+set}" = set; then
    1525217785   echo $ECHO_N "(cached) $ECHO_C" >&6
    15253 @@ -4997,7 +5161,7 @@
     17786@@ -4997,7 +5006,7 @@
    1525417787   ac_check_lib_save_LIBS=$LIBS
    1525517788 LIBS="-ldl  $LIBS"
    1525617789 cat >conftest.$ac_ext <<_ACEOF
    1525717790-#line 5000 "configure"
    15258 +#line 5164 "configure"
     17791+#line 5009 "configure"
    1525917792 #include "confdefs.h"
    1526017793 
    1526117794 /* Override any gcc2 internal prototype to avoid an error.  */
    15262 @@ -5016,16 +5180,16 @@
     17795@@ -5016,16 +5025,16 @@
    1526317796 }
    1526417797 _ACEOF
    1526517798 rm -f conftest.$ac_objext conftest$ac_exeext
    1526617799-if { (eval echo "$as_me:5019: \"$ac_link\"") >&5
    15267 +if { (eval echo "$as_me:5183: \"$ac_link\"") >&5
     17800+if { (eval echo "$as_me:5028: \"$ac_link\"") >&5
    1526817801   (eval $ac_link) 2>&5
    1526917802   ac_status=$?
    1527017803-  echo "$as_me:5022: \$? = $ac_status" >&5
    15271 +  echo "$as_me:5186: \$? = $ac_status" >&5
     17804+  echo "$as_me:5031: \$? = $ac_status" >&5
    1527217805   (exit $ac_status); } &&
    1527317806          { ac_try='test -s conftest$ac_exeext'
    1527417807-  { (eval echo "$as_me:5025: \"$ac_try\"") >&5
    15275 +  { (eval echo "$as_me:5189: \"$ac_try\"") >&5
     17808+  { (eval echo "$as_me:5034: \"$ac_try\"") >&5
    1527617809   (eval $ac_try) 2>&5
    1527717810   ac_status=$?
    1527817811-  echo "$as_me:5028: \$? = $ac_status" >&5
    15279 +  echo "$as_me:5192: \$? = $ac_status" >&5
     17812+  echo "$as_me:5037: \$? = $ac_status" >&5
    1528017813   (exit $ac_status); }; }; then
    1528117814   ac_cv_lib_dl_dlsym=yes
    1528217815 else
    15283 @@ -5036,7 +5200,7 @@
     17816@@ -5036,7 +5045,7 @@
    1528417817 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    1528517818 LIBS=$ac_check_lib_save_LIBS
    1528617819 fi
    1528717820-echo "$as_me:5039: result: $ac_cv_lib_dl_dlsym" >&5
    15288 +echo "$as_me:5203: result: $ac_cv_lib_dl_dlsym" >&5
     17821+echo "$as_me:5048: result: $ac_cv_lib_dl_dlsym" >&5
    1528917822 echo "${ECHO_T}$ac_cv_lib_dl_dlsym" >&6
    1529017823 if test $ac_cv_lib_dl_dlsym = yes; then
    1529117824 
    15292 @@ -5049,10 +5213,10 @@
     17825@@ -5049,10 +5058,10 @@
    1529317826 if test "$cf_have_dlsym" = yes ; then
    1529417827        test "$cf_have_libdl" = yes && LIBS="-ldl $LIBS"
    1529517828 
    1529617829-       echo "$as_me:5052: checking whether able to link to dl*() functions" >&5
    15297 +       echo "$as_me:5216: checking whether able to link to dl*() functions" >&5
     17830+       echo "$as_me:5061: checking whether able to link to dl*() functions" >&5
    1529817831 echo $ECHO_N "checking whether able to link to dl*() functions... $ECHO_C" >&6
    1529917832        cat >conftest.$ac_ext <<_ACEOF
    1530017833-#line 5055 "configure"
    15301 +#line 5219 "configure"
     17834+#line 5064 "configure"
    1530217835 #include "confdefs.h"
    1530317836 #include <dlfcn.h>
    1530417837 int
    15305 @@ -5070,16 +5234,16 @@
     17838@@ -5070,16 +5079,16 @@
    1530617839 }
    1530717840 _ACEOF
    1530817841 rm -f conftest.$ac_objext conftest$ac_exeext
    1530917842-if { (eval echo "$as_me:5073: \"$ac_link\"") >&5
    15310 +if { (eval echo "$as_me:5237: \"$ac_link\"") >&5
     17843+if { (eval echo "$as_me:5082: \"$ac_link\"") >&5
    1531117844   (eval $ac_link) 2>&5
    1531217845   ac_status=$?
    1531317846-  echo "$as_me:5076: \$? = $ac_status" >&5
    15314 +  echo "$as_me:5240: \$? = $ac_status" >&5
     17847+  echo "$as_me:5085: \$? = $ac_status" >&5
    1531517848   (exit $ac_status); } &&
    1531617849          { ac_try='test -s conftest$ac_exeext'
    1531717850-  { (eval echo "$as_me:5079: \"$ac_try\"") >&5
    15318 +  { (eval echo "$as_me:5243: \"$ac_try\"") >&5
     17851+  { (eval echo "$as_me:5088: \"$ac_try\"") >&5
    1531917852   (eval $ac_try) 2>&5
    1532017853   ac_status=$?
    1532117854-  echo "$as_me:5082: \$? = $ac_status" >&5
    15322 +  echo "$as_me:5246: \$? = $ac_status" >&5
     17855+  echo "$as_me:5091: \$? = $ac_status" >&5
    1532317856   (exit $ac_status); }; }; then
    1532417857 
    1532517858                cat >>confdefs.h <<\EOF
    15326 @@ -5090,15 +5254,15 @@
     17859@@ -5090,15 +5099,15 @@
    1532717860   echo "$as_me: failed program was:" >&5
    1532817861 cat conftest.$ac_ext >&5
    1532917862 
    1533017863-               { { echo "$as_me:5093: error: Cannot link test program for libdl" >&5
    15331 +               { { echo "$as_me:5257: error: Cannot link test program for libdl" >&5
     17864+               { { echo "$as_me:5102: error: Cannot link test program for libdl" >&5
    1533217865 echo "$as_me: error: Cannot link test program for libdl" >&2;}
    1533317866    { (exit 1); exit 1; }; }
     
    1533517868 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    1533617869-       echo "$as_me:5098: result: ok" >&5
    15337 +       echo "$as_me:5262: result: ok" >&5
     17870+       echo "$as_me:5107: result: ok" >&5
    1533817871 echo "${ECHO_T}ok" >&6
    1533917872 else
    1534017873-       { { echo "$as_me:5101: error: Cannot find dlsym function" >&5
    15341 +       { { echo "$as_me:5265: error: Cannot find dlsym function" >&5
     17874+       { { echo "$as_me:5110: error: Cannot find dlsym function" >&5
    1534217875 echo "$as_me: error: Cannot find dlsym function" >&2;}
    1534317876    { (exit 1); exit 1; }; }
    1534417877 fi
    15345 @@ -5106,12 +5270,12 @@
     17878@@ -5106,12 +5115,12 @@
    1534617879                if test "$with_gpm" != yes ; then
    1534717880                        test -n "$verbose" && echo "    assuming soname for gpm is $with_gpm" 1>&6
    1534817881 
    1534917882-echo "${as_me:-configure}:5109: testing assuming soname for gpm is $with_gpm ..." 1>&5
    15350 +echo "${as_me:-configure}:5273: testing assuming soname for gpm is $with_gpm ..." 1>&5
     17883+echo "${as_me:-configure}:5118: testing assuming soname for gpm is $with_gpm ..." 1>&5
    1535117884 
    1535217885                        cf_cv_gpm_soname="$with_gpm"
     
    1535417887 
    1535517888-echo "$as_me:5114: checking for soname of gpm library" >&5
    15356 +echo "$as_me:5278: checking for soname of gpm library" >&5
     17889+echo "$as_me:5123: checking for soname of gpm library" >&5
    1535717890 echo $ECHO_N "checking for soname of gpm library... $ECHO_C" >&6
    1535817891 if test "${cf_cv_gpm_soname+set}" = set; then
    1535917892   echo $ECHO_N "(cached) $ECHO_C" >&6
    15360 @@ -5129,15 +5293,15 @@
     17893@@ -5129,15 +5138,15 @@
    1536117894 CF_EOF
    1536217895 cf_save_LIBS="$LIBS"
    1536317896        LIBS="-lgpm $LIBS"
    1536417897-       if { (eval echo "$as_me:5132: \"$ac_compile\"") >&5
    15365 +       if { (eval echo "$as_me:5296: \"$ac_compile\"") >&5
     17898+       if { (eval echo "$as_me:5141: \"$ac_compile\"") >&5
    1536617899   (eval $ac_compile) 2>&5
    1536717900   ac_status=$?
    1536817901-  echo "$as_me:5135: \$? = $ac_status" >&5
    15369 +  echo "$as_me:5299: \$? = $ac_status" >&5
     17902+  echo "$as_me:5144: \$? = $ac_status" >&5
    1537017903   (exit $ac_status); } ; then
    1537117904-               if { (eval echo "$as_me:5137: \"$ac_link\"") >&5
    15372 +               if { (eval echo "$as_me:5301: \"$ac_link\"") >&5
     17905+               if { (eval echo "$as_me:5146: \"$ac_link\"") >&5
    1537317906   (eval $ac_link) 2>&5
    1537417907   ac_status=$?
    1537517908-  echo "$as_me:5140: \$? = $ac_status" >&5
    15376 +  echo "$as_me:5304: \$? = $ac_status" >&5
     17909+  echo "$as_me:5149: \$? = $ac_status" >&5
    1537717910   (exit $ac_status); } ; then
    1537817911                        cf_cv_gpm_soname=`ldd conftest$ac_exeext 2>/dev/null | sed -e 's,^.*/,,' -e 's, .*$,,' | fgrep libgpm.`
    1537917912                        test -z "$cf_cv_gpm_soname" && cf_cv_gpm_soname=unknown
    15380 @@ -5148,7 +5312,7 @@
     17913@@ -5148,7 +5157,7 @@
    1538117914 fi
    1538217915 
    1538317916 fi
    1538417917-echo "$as_me:5151: result: $cf_cv_gpm_soname" >&5
    15385 +echo "$as_me:5315: result: $cf_cv_gpm_soname" >&5
     17918+echo "$as_me:5160: result: $cf_cv_gpm_soname" >&5
    1538617919 echo "${ECHO_T}$cf_cv_gpm_soname" >&6
    1538717920 
    1538817921                fi
    15389 @@ -5165,7 +5329,7 @@
     17922@@ -5165,7 +5174,7 @@
    1539017923 #define HAVE_LIBGPM 1
    1539117924 EOF
    1539217925 
    1539317926-echo "$as_me:5168: checking for Gpm_Wgetch in -lgpm" >&5
    15394 +echo "$as_me:5332: checking for Gpm_Wgetch in -lgpm" >&5
     17927+echo "$as_me:5177: checking for Gpm_Wgetch in -lgpm" >&5
    1539517928 echo $ECHO_N "checking for Gpm_Wgetch in -lgpm... $ECHO_C" >&6
    1539617929 if test "${ac_cv_lib_gpm_Gpm_Wgetch+set}" = set; then
    1539717930   echo $ECHO_N "(cached) $ECHO_C" >&6
    15398 @@ -5173,7 +5337,7 @@
     17931@@ -5173,7 +5182,7 @@
    1539917932   ac_check_lib_save_LIBS=$LIBS
    1540017933 LIBS="-lgpm  $LIBS"
    1540117934 cat >conftest.$ac_ext <<_ACEOF
    1540217935-#line 5176 "configure"
    15403 +#line 5340 "configure"
     17936+#line 5185 "configure"
    1540417937 #include "confdefs.h"
    1540517938 
    1540617939 /* Override any gcc2 internal prototype to avoid an error.  */
    15407 @@ -5192,16 +5356,16 @@
     17940@@ -5192,16 +5201,16 @@
    1540817941 }
    1540917942 _ACEOF
    1541017943 rm -f conftest.$ac_objext conftest$ac_exeext
    1541117944-if { (eval echo "$as_me:5195: \"$ac_link\"") >&5
    15412 +if { (eval echo "$as_me:5359: \"$ac_link\"") >&5
     17945+if { (eval echo "$as_me:5204: \"$ac_link\"") >&5
    1541317946   (eval $ac_link) 2>&5
    1541417947   ac_status=$?
    1541517948-  echo "$as_me:5198: \$? = $ac_status" >&5
    15416 +  echo "$as_me:5362: \$? = $ac_status" >&5
     17949+  echo "$as_me:5207: \$? = $ac_status" >&5
    1541717950   (exit $ac_status); } &&
    1541817951          { ac_try='test -s conftest$ac_exeext'
    1541917952-  { (eval echo "$as_me:5201: \"$ac_try\"") >&5
    15420 +  { (eval echo "$as_me:5365: \"$ac_try\"") >&5
     17953+  { (eval echo "$as_me:5210: \"$ac_try\"") >&5
    1542117954   (eval $ac_try) 2>&5
    1542217955   ac_status=$?
    1542317956-  echo "$as_me:5204: \$? = $ac_status" >&5
    15424 +  echo "$as_me:5368: \$? = $ac_status" >&5
     17957+  echo "$as_me:5213: \$? = $ac_status" >&5
    1542517958   (exit $ac_status); }; }; then
    1542617959   ac_cv_lib_gpm_Gpm_Wgetch=yes
    1542717960 else
    15428 @@ -5212,11 +5376,11 @@
     17961@@ -5212,11 +5221,11 @@
    1542917962 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    1543017963 LIBS=$ac_check_lib_save_LIBS
    1543117964 fi
    1543217965-echo "$as_me:5215: result: $ac_cv_lib_gpm_Gpm_Wgetch" >&5
    15433 +echo "$as_me:5379: result: $ac_cv_lib_gpm_Gpm_Wgetch" >&5
     17966+echo "$as_me:5224: result: $ac_cv_lib_gpm_Gpm_Wgetch" >&5
    1543417967 echo "${ECHO_T}$ac_cv_lib_gpm_Gpm_Wgetch" >&6
    1543517968 if test $ac_cv_lib_gpm_Gpm_Wgetch = yes; then
    1543617969 
    1543717970-echo "$as_me:5219: checking if GPM is weakly bound to curses library" >&5
    15438 +echo "$as_me:5383: checking if GPM is weakly bound to curses library" >&5
     17971+echo "$as_me:5228: checking if GPM is weakly bound to curses library" >&5
    1543917972 echo $ECHO_N "checking if GPM is weakly bound to curses library... $ECHO_C" >&6
    1544017973 if test "${cf_cv_check_gpm_wgetch+set}" = set; then
    1544117974   echo $ECHO_N "(cached) $ECHO_C" >&6
    15442 @@ -5240,15 +5404,15 @@
     17975@@ -5240,15 +5249,15 @@
    1544317976        # to rely on the static library, noting that some packagers may not
    1544417977        # include it.
    1544517978        LIBS="-static -lgpm -dynamic $LIBS"
    1544617979-       if { (eval echo "$as_me:5243: \"$ac_compile\"") >&5
    15447 +       if { (eval echo "$as_me:5407: \"$ac_compile\"") >&5
     17980+       if { (eval echo "$as_me:5252: \"$ac_compile\"") >&5
    1544817981   (eval $ac_compile) 2>&5
    1544917982   ac_status=$?
    1545017983-  echo "$as_me:5246: \$? = $ac_status" >&5
    15451 +  echo "$as_me:5410: \$? = $ac_status" >&5
     17984+  echo "$as_me:5255: \$? = $ac_status" >&5
    1545217985   (exit $ac_status); } ; then
    1545317986-               if { (eval echo "$as_me:5248: \"$ac_link\"") >&5
    15454 +               if { (eval echo "$as_me:5412: \"$ac_link\"") >&5
     17987+               if { (eval echo "$as_me:5257: \"$ac_link\"") >&5
    1545517988   (eval $ac_link) 2>&5
    1545617989   ac_status=$?
    1545717990-  echo "$as_me:5251: \$? = $ac_status" >&5
    15458 +  echo "$as_me:5415: \$? = $ac_status" >&5
     17991+  echo "$as_me:5260: \$? = $ac_status" >&5
    1545917992   (exit $ac_status); } ; then
    1546017993                        cf_cv_check_gpm_wgetch=`nm conftest$ac_exeext | egrep '\<wgetch\>' | egrep '\<[vVwW]\>'`
    1546117994                        test -n "$cf_cv_check_gpm_wgetch" && cf_cv_check_gpm_wgetch=yes
    15462 @@ -5260,11 +5424,11 @@
     17995@@ -5260,11 +5269,11 @@
    1546317996 fi
    1546417997 
    1546517998 fi
    1546617999-echo "$as_me:5263: result: $cf_cv_check_gpm_wgetch" >&5
    15467 +echo "$as_me:5427: result: $cf_cv_check_gpm_wgetch" >&5
     18000+echo "$as_me:5272: result: $cf_cv_check_gpm_wgetch" >&5
    1546818001 echo "${ECHO_T}$cf_cv_check_gpm_wgetch" >&6
    1546918002 
    1547018003 if test "$cf_cv_check_gpm_wgetch" != yes ; then
    1547118004-       { echo "$as_me:5267: WARNING: GPM library is already linked with curses - read the FAQ" >&5
    15472 +       { echo "$as_me:5431: WARNING: GPM library is already linked with curses - read the FAQ" >&5
     18005+       { echo "$as_me:5276: WARNING: GPM library is already linked with curses - read the FAQ" >&5
    1547318006 echo "$as_me: WARNING: GPM library is already linked with curses - read the FAQ" >&2;}
    1547418007 fi
    1547518008 
    15476 @@ -5274,7 +5438,7 @@
     18009@@ -5274,7 +5283,7 @@
    1547718010 
    1547818011 # not everyone has "test -c"
    1547918012 if test -c /dev/sysmouse 2>/dev/null ; then
    1548018013-echo "$as_me:5277: checking if you want to use sysmouse" >&5
    15481 +echo "$as_me:5441: checking if you want to use sysmouse" >&5
     18014+echo "$as_me:5286: checking if you want to use sysmouse" >&5
    1548218015 echo $ECHO_N "checking if you want to use sysmouse... $ECHO_C" >&6
    1548318016 
    1548418017 # Check whether --with-sysmouse or --without-sysmouse was given.
    15485 @@ -5286,7 +5450,7 @@
     18018@@ -5286,7 +5295,7 @@
    1548618019 fi;
    1548718020        if test "$cf_with_sysmouse" != no ; then
    1548818021        cat >conftest.$ac_ext <<_ACEOF
    1548918022-#line 5289 "configure"
    15490 +#line 5453 "configure"
     18023+#line 5298 "configure"
    1549118024 #include "confdefs.h"
    1549218025 
    1549318026 #include <osreldate.h>
    15494 @@ -5309,16 +5473,16 @@
     18027@@ -5309,16 +5318,16 @@
    1549518028 }
    1549618029 _ACEOF
    1549718030 rm -f conftest.$ac_objext
    1549818031-if { (eval echo "$as_me:5312: \"$ac_compile\"") >&5
    15499 +if { (eval echo "$as_me:5476: \"$ac_compile\"") >&5
     18032+if { (eval echo "$as_me:5321: \"$ac_compile\"") >&5
    1550018033   (eval $ac_compile) 2>&5
    1550118034   ac_status=$?
    1550218035-  echo "$as_me:5315: \$? = $ac_status" >&5
    15503 +  echo "$as_me:5479: \$? = $ac_status" >&5
     18036+  echo "$as_me:5324: \$? = $ac_status" >&5
    1550418037   (exit $ac_status); } &&
    1550518038          { ac_try='test -s conftest.$ac_objext'
    1550618039-  { (eval echo "$as_me:5318: \"$ac_try\"") >&5
    15507 +  { (eval echo "$as_me:5482: \"$ac_try\"") >&5
     18040+  { (eval echo "$as_me:5327: \"$ac_try\"") >&5
    1550818041   (eval $ac_try) 2>&5
    1550918042   ac_status=$?
    1551018043-  echo "$as_me:5321: \$? = $ac_status" >&5
    15511 +  echo "$as_me:5485: \$? = $ac_status" >&5
     18044+  echo "$as_me:5330: \$? = $ac_status" >&5
    1551218045   (exit $ac_status); }; }; then
    1551318046   cf_with_sysmouse=yes
    1551418047 else
    15515 @@ -5328,7 +5492,7 @@
     18048@@ -5328,7 +5337,7 @@
    1551618049 fi
    1551718050 rm -f conftest.$ac_objext conftest.$ac_ext
    1551818051        fi
    1551918052-echo "$as_me:5331: result: $cf_with_sysmouse" >&5
    15520 +echo "$as_me:5495: result: $cf_with_sysmouse" >&5
     18053+echo "$as_me:5340: result: $cf_with_sysmouse" >&5
    1552118054 echo "${ECHO_T}$cf_with_sysmouse" >&6
    1552218055 test "$cf_with_sysmouse" = yes && cat >>confdefs.h <<\EOF
    1552318056 #define USE_SYSMOUSE 1
    15524 @@ -5346,7 +5510,7 @@
     18057@@ -5346,7 +5355,7 @@
    1552518058        test -n "$GXX" && test "${ac_cv_prog_cxx_g}" != yes && CXX_G_OPT=''
    1552618059 fi
    1552718060 
    1552818061-echo "$as_me:5349: checking for default loader flags" >&5
    15529 +echo "$as_me:5513: checking for default loader flags" >&5
     18062+echo "$as_me:5358: checking for default loader flags" >&5
    1553018063 echo $ECHO_N "checking for default loader flags... $ECHO_C" >&6
    1553118064 case $DFT_LWR_MODEL in
    1553218065 libtool) LD_MODEL=''   ;;
    15533 @@ -5355,13 +5519,13 @@
     18066@@ -5355,13 +5364,13 @@
    1553418067 profile) LD_MODEL='-pg';;
    1553518068 shared)  LD_MODEL=''   ;;
    1553618069 esac
    1553718070-echo "$as_me:5358: result: $LD_MODEL" >&5
    15538 +echo "$as_me:5522: result: $LD_MODEL" >&5
     18071+echo "$as_me:5367: result: $LD_MODEL" >&5
    1553918072 echo "${ECHO_T}$LD_MODEL" >&6
    1554018073 
     
    1554318076 
    1554418077-echo "$as_me:5364: checking if rpath option should be used" >&5
    15545 +echo "$as_me:5528: checking if rpath option should be used" >&5
     18078+echo "$as_me:5373: checking if rpath option should be used" >&5
    1554618079 echo $ECHO_N "checking if rpath option should be used... $ECHO_C" >&6
    1554718080 
    1554818081 # Check whether --enable-rpath or --disable-rpath was given.
    15549 @@ -5371,10 +5535,10 @@
     18082@@ -5371,10 +5380,10 @@
    1555018083 else
    1555118084   cf_cv_enable_rpath=no
    1555218085 fi;
    1555318086-echo "$as_me:5374: result: $cf_cv_enable_rpath" >&5
    15554 +echo "$as_me:5538: result: $cf_cv_enable_rpath" >&5
     18087+echo "$as_me:5383: result: $cf_cv_enable_rpath" >&5
    1555518088 echo "${ECHO_T}$cf_cv_enable_rpath" >&6
    1555618089 
    1555718090-echo "$as_me:5377: checking if shared libraries should be relinked during install" >&5
    15558 +echo "$as_me:5541: checking if shared libraries should be relinked during install" >&5
     18091+echo "$as_me:5386: checking if shared libraries should be relinked during install" >&5
    1555918092 echo $ECHO_N "checking if shared libraries should be relinked during install... $ECHO_C" >&6
    1556018093 
    1556118094 # Check whether --enable-relink or --disable-relink was given.
    15562 @@ -5384,13 +5548,13 @@
     18095@@ -5384,13 +5393,13 @@
    1556318096 else
    1556418097   cf_cv_do_relink=yes
    1556518098 fi;
    1556618099-echo "$as_me:5387: result: $cf_cv_do_relink" >&5
    15567 +echo "$as_me:5551: result: $cf_cv_do_relink" >&5
     18100+echo "$as_me:5396: result: $cf_cv_do_relink" >&5
    1556818101 echo "${ECHO_T}$cf_cv_do_relink" >&6
    1556918102        ;;
     
    1557218105 LD_RPATH_OPT=
    1557318106-echo "$as_me:5393: checking for an rpath option" >&5
    15574 +echo "$as_me:5557: checking for an rpath option" >&5
     18107+echo "$as_me:5402: checking for an rpath option" >&5
    1557518108 echo $ECHO_N "checking for an rpath option... $ECHO_C" >&6
    1557618109 case $cf_cv_system_name in #(vi
    1557718110 irix*) #(vi
    15578 @@ -5403,10 +5567,10 @@
     18111@@ -5403,10 +5412,10 @@
    1557918112 linux*|gnu*|k*bsd*-gnu) #(vi
    1558018113        LD_RPATH_OPT="-Wl,-rpath,"
     
    1558918122        ;;
    1559018123 netbsd*) #(vi
    15591 @@ -5421,17 +5585,17 @@
     18124@@ -5421,17 +5430,17 @@
    1559218125 *)
    1559318126        ;;
    1559418127 esac
    1559518128-echo "$as_me:5424: result: $LD_RPATH_OPT" >&5
    15596 +echo "$as_me:5588: result: $LD_RPATH_OPT" >&5
     18129+echo "$as_me:5433: result: $LD_RPATH_OPT" >&5
    1559718130 echo "${ECHO_T}$LD_RPATH_OPT" >&6
    1559818131 
     
    1560018133 x-R*)
    1560118134-       echo "$as_me:5429: checking if we need a space after rpath option" >&5
    15602 +       echo "$as_me:5593: checking if we need a space after rpath option" >&5
     18135+       echo "$as_me:5438: checking if we need a space after rpath option" >&5
    1560318136 echo $ECHO_N "checking if we need a space after rpath option... $ECHO_C" >&6
    1560418137        cf_save_LIBS="$LIBS"
     
    1560618139        cat >conftest.$ac_ext <<_ACEOF
    1560718140-#line 5434 "configure"
    15608 +#line 5598 "configure"
     18141+#line 5443 "configure"
    1560918142 #include "confdefs.h"
    1561018143 
    1561118144 int
    15612 @@ -5443,16 +5607,16 @@
     18145@@ -5443,16 +5452,16 @@
    1561318146 }
    1561418147 _ACEOF
    1561518148 rm -f conftest.$ac_objext conftest$ac_exeext
    1561618149-if { (eval echo "$as_me:5446: \"$ac_link\"") >&5
    15617 +if { (eval echo "$as_me:5610: \"$ac_link\"") >&5
     18150+if { (eval echo "$as_me:5455: \"$ac_link\"") >&5
    1561818151   (eval $ac_link) 2>&5
    1561918152   ac_status=$?
    1562018153-  echo "$as_me:5449: \$? = $ac_status" >&5
    15621 +  echo "$as_me:5613: \$? = $ac_status" >&5
     18154+  echo "$as_me:5458: \$? = $ac_status" >&5
    1562218155   (exit $ac_status); } &&
    1562318156          { ac_try='test -s conftest$ac_exeext'
    1562418157-  { (eval echo "$as_me:5452: \"$ac_try\"") >&5
    15625 +  { (eval echo "$as_me:5616: \"$ac_try\"") >&5
     18158+  { (eval echo "$as_me:5461: \"$ac_try\"") >&5
    1562618159   (eval $ac_try) 2>&5
    1562718160   ac_status=$?
    1562818161-  echo "$as_me:5455: \$? = $ac_status" >&5
    15629 +  echo "$as_me:5619: \$? = $ac_status" >&5
     18162+  echo "$as_me:5464: \$? = $ac_status" >&5
    1563018163   (exit $ac_status); }; }; then
    1563118164   cf_rpath_space=no
    1563218165 else
    15633 @@ -5462,7 +5626,7 @@
     18166@@ -5462,7 +5471,7 @@
    1563418167 fi
    1563518168 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    1563618169        LIBS="$cf_save_LIBS"
    1563718170-       echo "$as_me:5465: result: $cf_rpath_space" >&5
    15638 +       echo "$as_me:5629: result: $cf_rpath_space" >&5
     18171+       echo "$as_me:5474: result: $cf_rpath_space" >&5
    1563918172 echo "${ECHO_T}$cf_rpath_space" >&6
    1564018173        test "$cf_rpath_space" = yes && LD_RPATH_OPT="$LD_RPATH_OPT "
    1564118174        ;;
    15642 @@ -5477,7 +5641,7 @@
     18175@@ -5477,7 +5486,7 @@
    1564318176        cf_ld_rpath_opt=
    1564418177        test "$cf_cv_enable_rpath" = yes && cf_ld_rpath_opt="$LD_RPATH_OPT"
    1564518178 
    1564618179-       echo "$as_me:5480: checking if release/abi version should be used for shared libs" >&5
    15647 +       echo "$as_me:5644: checking if release/abi version should be used for shared libs" >&5
     18180+       echo "$as_me:5489: checking if release/abi version should be used for shared libs" >&5
    1564818181 echo $ECHO_N "checking if release/abi version should be used for shared libs... $ECHO_C" >&6
    1564918182 
    1565018183 # Check whether --with-shlib-version or --without-shlib-version was given.
    15651 @@ -5492,7 +5656,7 @@
     18184@@ -5492,7 +5501,7 @@
    1565218185                cf_cv_shlib_version=$withval
    1565318186                ;;
    1565418187        *)
    1565518188-               { { echo "$as_me:5495: error: option value must be one of: rel, abi, auto or no" >&5
    15656 +               { { echo "$as_me:5659: error: option value must be one of: rel, abi, auto or no" >&5
     18189+               { { echo "$as_me:5504: error: option value must be one of: rel, abi, auto or no" >&5
    1565718190 echo "$as_me: error: option value must be one of: rel, abi, auto or no" >&2;}
    1565818191    { (exit 1); exit 1; }; }
    1565918192                ;;
    15660 @@ -5501,7 +5665,7 @@
     18193@@ -5501,7 +5510,7 @@
    1566118194 else
    1566218195   cf_cv_shlib_version=auto
    1566318196 fi;
    1566418197-       echo "$as_me:5504: result: $cf_cv_shlib_version" >&5
    15665 +       echo "$as_me:5668: result: $cf_cv_shlib_version" >&5
     18198+       echo "$as_me:5513: result: $cf_cv_shlib_version" >&5
    1566618199 echo "${ECHO_T}$cf_cv_shlib_version" >&6
    1566718200 
    1566818201        cf_cv_rm_so_locs=no
    15669 @@ -5510,14 +5674,14 @@
     18202@@ -5510,14 +5519,14 @@
    1567018203        CC_SHARED_OPTS=
    1567118204        if test "$GCC" = yes
    1567218205        then
    1567318206-               echo "$as_me:5513: checking which $CC option to use" >&5
    15674 +               echo "$as_me:5677: checking which $CC option to use" >&5
     18207+               echo "$as_me:5522: checking which $CC option to use" >&5
    1567518208 echo $ECHO_N "checking which $CC option to use... $ECHO_C" >&6
    1567618209                cf_save_CFLAGS="$CFLAGS"
     
    1568018213                        cat >conftest.$ac_ext <<_ACEOF
    1568118214-#line 5520 "configure"
    15682 +#line 5684 "configure"
     18215+#line 5529 "configure"
    1568318216 #include "confdefs.h"
    1568418217 #include <stdio.h>
    1568518218 int
    15686 @@ -5529,16 +5693,16 @@
     18219@@ -5529,16 +5538,16 @@
    1568718220 }
    1568818221 _ACEOF
    1568918222 rm -f conftest.$ac_objext
    1569018223-if { (eval echo "$as_me:5532: \"$ac_compile\"") >&5
    15691 +if { (eval echo "$as_me:5696: \"$ac_compile\"") >&5
     18224+if { (eval echo "$as_me:5541: \"$ac_compile\"") >&5
    1569218225   (eval $ac_compile) 2>&5
    1569318226   ac_status=$?
    1569418227-  echo "$as_me:5535: \$? = $ac_status" >&5
    15695 +  echo "$as_me:5699: \$? = $ac_status" >&5
     18228+  echo "$as_me:5544: \$? = $ac_status" >&5
    1569618229   (exit $ac_status); } &&
    1569718230          { ac_try='test -s conftest.$ac_objext'
    1569818231-  { (eval echo "$as_me:5538: \"$ac_try\"") >&5
    15699 +  { (eval echo "$as_me:5702: \"$ac_try\"") >&5
     18232+  { (eval echo "$as_me:5547: \"$ac_try\"") >&5
    1570018233   (eval $ac_try) 2>&5
    1570118234   ac_status=$?
    1570218235-  echo "$as_me:5541: \$? = $ac_status" >&5
    15703 +  echo "$as_me:5705: \$? = $ac_status" >&5
     18236+  echo "$as_me:5550: \$? = $ac_status" >&5
    1570418237   (exit $ac_status); }; }; then
    1570518238   break
    1570618239 else
    15707 @@ -5547,7 +5711,7 @@
     18240@@ -5547,7 +5556,7 @@
    1570818241 fi
    1570918242 rm -f conftest.$ac_objext conftest.$ac_ext
    1571018243                done
    1571118244-               echo "$as_me:5550: result: $CC_SHARED_OPTS" >&5
    15712 +               echo "$as_me:5714: result: $CC_SHARED_OPTS" >&5
     18245+               echo "$as_me:5559: result: $CC_SHARED_OPTS" >&5
    1571318246 echo "${ECHO_T}$CC_SHARED_OPTS" >&6
    1571418247                CFLAGS="$cf_save_CFLAGS"
    1571518248        fi
    15716 @@ -5555,10 +5719,14 @@
     18249@@ -5555,10 +5564,14 @@
    1571718250        cf_cv_shlib_version_infix=no
    1571818251 
     
    1573118264                ;;
    1573218265        beos*) #(vi
    15733 @@ -5589,7 +5757,7 @@
     18266@@ -5589,7 +5602,7 @@
    1573418267                MK_SHARED_LIB='${CC} ${CFLAGS} -dynamiclib -install_name ${libdir}/`basename $@` -compatibility_version ${ABI_VERSION} -current_version ${ABI_VERSION} -o $@'
    1573518268                test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=abi
    1573618269                cf_cv_shlib_version_infix=yes
    1573718270-               echo "$as_me:5592: checking if ld -search_paths_first works" >&5
    15738 +               echo "$as_me:5760: checking if ld -search_paths_first works" >&5
     18271+               echo "$as_me:5605: checking if ld -search_paths_first works" >&5
    1573918272 echo $ECHO_N "checking if ld -search_paths_first works... $ECHO_C" >&6
    1574018273 if test "${cf_cv_ldflags_search_paths_first+set}" = set; then
    1574118274   echo $ECHO_N "(cached) $ECHO_C" >&6
    15742 @@ -5598,7 +5766,7 @@
     18275@@ -5598,7 +5611,7 @@
    1574318276                        cf_save_LDFLAGS=$LDFLAGS
    1574418277                        LDFLAGS="$LDFLAGS -Wl,-search_paths_first"
    1574518278                        cat >conftest.$ac_ext <<_ACEOF
    1574618279-#line 5601 "configure"
    15747 +#line 5769 "configure"
     18280+#line 5614 "configure"
    1574818281 #include "confdefs.h"
    1574918282 
    1575018283 int
    15751 @@ -5610,16 +5778,16 @@
     18284@@ -5610,16 +5623,16 @@
    1575218285 }
    1575318286 _ACEOF
    1575418287 rm -f conftest.$ac_objext conftest$ac_exeext
    1575518288-if { (eval echo "$as_me:5613: \"$ac_link\"") >&5
    15756 +if { (eval echo "$as_me:5781: \"$ac_link\"") >&5
     18289+if { (eval echo "$as_me:5626: \"$ac_link\"") >&5
    1575718290   (eval $ac_link) 2>&5
    1575818291   ac_status=$?
    1575918292-  echo "$as_me:5616: \$? = $ac_status" >&5
    15760 +  echo "$as_me:5784: \$? = $ac_status" >&5
     18293+  echo "$as_me:5629: \$? = $ac_status" >&5
    1576118294   (exit $ac_status); } &&
    1576218295          { ac_try='test -s conftest$ac_exeext'
    1576318296-  { (eval echo "$as_me:5619: \"$ac_try\"") >&5
    15764 +  { (eval echo "$as_me:5787: \"$ac_try\"") >&5
     18297+  { (eval echo "$as_me:5632: \"$ac_try\"") >&5
    1576518298   (eval $ac_try) 2>&5
    1576618299   ac_status=$?
    1576718300-  echo "$as_me:5622: \$? = $ac_status" >&5
    15768 +  echo "$as_me:5790: \$? = $ac_status" >&5
     18301+  echo "$as_me:5635: \$? = $ac_status" >&5
    1576918302   (exit $ac_status); }; }; then
    1577018303   cf_cv_ldflags_search_paths_first=yes
    1577118304 else
    15772 @@ -5630,7 +5798,7 @@
     18305@@ -5630,7 +5643,7 @@
    1577318306 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    1577418307                                LDFLAGS=$cf_save_LDFLAGS
    1577518308 fi
    1577618309-echo "$as_me:5633: result: $cf_cv_ldflags_search_paths_first" >&5
    15777 +echo "$as_me:5801: result: $cf_cv_ldflags_search_paths_first" >&5
     18310+echo "$as_me:5646: result: $cf_cv_ldflags_search_paths_first" >&5
    1577818311 echo "${ECHO_T}$cf_cv_ldflags_search_paths_first" >&6
    1577918312                if test $cf_cv_ldflags_search_paths_first = yes; then
    1578018313                        LDFLAGS="$LDFLAGS -Wl,-search_paths_first"
    15781 @@ -5649,9 +5817,19 @@
     18314@@ -5649,9 +5662,19 @@
    1578218315                # readonly to exploit a quirk in the memory manager.
    1578318316                INSTALL_LIB="-m 555"
     
    1580018333                # tested with IRIX 5.2 and 'cc'.
    1580118334                if test "$GCC" != yes; then
    15802 @@ -5668,7 +5846,7 @@
     18335@@ -5668,7 +5691,7 @@
    1580318336                        LOCAL_LDFLAGS2="$LOCAL_LDFLAGS"
    1580418337                fi
     
    1580918342 
    1581018343        test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=rel
    15811 @@ -5680,13 +5858,13 @@
     18344@@ -5680,13 +5703,34 @@
    1581218345 
    1581318346                MK_SHARED_LIB='${CC} ${CFLAGS} -shared -Wl,-soname,'$cf_cv_shared_soname',-stats,-lc -o $@'
    1581418347                ;;
    1581518348-       openbsd[2-9].*) #(vi
     18349+       mingw*) #(vi
     18350+               cf_cv_shlib_version=mingw
     18351+               cf_cv_shlib_version_infix=mingw
     18352+               CC_SHARED_OPTS=
     18353+               MK_SHARED_LIB='sh ../mk_shared_lib.sh $@ ${CC} ${CFLAGS}'
     18354+               #MK_SHARED_LIB='${CC} ${CFLAGS} -mdll -Wl,-soname,'$cf_cv_shared_soname',-stats -o $[@]'
     18355+               #MK_SHARED_LIB='${DLLTOOL} --export-all-symbols --output-exp --output-lib $[@]'
     18356+               cat >mk_shared_lib.sh <<-CF_EOF
     18357+               #!/bin/sh
     18358+               SHARED_LIB=\$1
     18359+               IMPORT_LIB=\`echo "\$1" | sed -e 's/[0-9]*\.dll$/.dll.a/'\`
     18360+               shift
     18361+               cat <<-EOF
     18362+               Linking shared library
     18363+               ** SHARED_LIB \$SHARED_LIB
     18364+               ** IMPORT_LIB \$IMPORT_LIB
     18365+EOF
     18366+               exec \$* -shared -Wl,--out-implib=../lib/\${IMPORT_LIB} -Wl,--export-all-symbols -o ../lib/\${SHARED_LIB}
     18367+CF_EOF
     18368+               chmod +x mk_shared_lib.sh
     18369+               ;;
    1581618370+       openbsd[2-9].*|mirbsd*) #(vi
    1581718371                if test "$DFT_LWR_MODEL" = "shared" ; then
     
    1582518379                CC_SHARED_OPTS="$CC_SHARED_OPTS -DPIC"
    1582618380 
    15827 @@ -5704,12 +5882,12 @@
     18381@@ -5704,12 +5748,12 @@
    1582818382                MK_SHARED_LIB='${LD} -Bshareable -o $@'
    1582918383                test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=rel
     
    1584118395 
    1584218396        test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=rel
    15843 @@ -5726,7 +5904,7 @@
     18397@@ -5726,7 +5770,7 @@
    1584418398                if test "$DFT_LWR_MODEL" = "shared" && test "$cf_cv_enable_rpath" = yes ; then
    1584518399                        LOCAL_LDFLAGS="${cf_ld_rpath_opt}\$(LOCAL_LIBDIR)"
     
    1585018404                        if test -f /usr/libexec/ld.elf_so; then
    1585118405                                cf_cv_shlib_version=abi
    15852 @@ -5810,7 +5988,7 @@
     18406@@ -5810,7 +5854,7 @@
    1585318407                        do
    1585418408                                CFLAGS="$cf_shared_opts $cf_save_CFLAGS"
    1585518409                                cat >conftest.$ac_ext <<_ACEOF
    1585618410-#line 5813 "configure"
    15857 +#line 5991 "configure"
     18411+#line 5857 "configure"
    1585818412 #include "confdefs.h"
    1585918413 #include <stdio.h>
    1586018414 int
    15861 @@ -5822,16 +6000,16 @@
     18415@@ -5822,16 +5866,16 @@
    1586218416 }
    1586318417 _ACEOF
    1586418418 rm -f conftest.$ac_objext
    1586518419-if { (eval echo "$as_me:5825: \"$ac_compile\"") >&5
    15866 +if { (eval echo "$as_me:6003: \"$ac_compile\"") >&5
     18420+if { (eval echo "$as_me:5869: \"$ac_compile\"") >&5
    1586718421   (eval $ac_compile) 2>&5
    1586818422   ac_status=$?
    1586918423-  echo "$as_me:5828: \$? = $ac_status" >&5
    15870 +  echo "$as_me:6006: \$? = $ac_status" >&5
     18424+  echo "$as_me:5872: \$? = $ac_status" >&5
    1587118425   (exit $ac_status); } &&
    1587218426          { ac_try='test -s conftest.$ac_objext'
    1587318427-  { (eval echo "$as_me:5831: \"$ac_try\"") >&5
    15874 +  { (eval echo "$as_me:6009: \"$ac_try\"") >&5
     18428+  { (eval echo "$as_me:5875: \"$ac_try\"") >&5
    1587518429   (eval $ac_try) 2>&5
    1587618430   ac_status=$?
    1587718431-  echo "$as_me:5834: \$? = $ac_status" >&5
    15878 +  echo "$as_me:6012: \$? = $ac_status" >&5
     18432+  echo "$as_me:5878: \$? = $ac_status" >&5
    1587918433   (exit $ac_status); }; }; then
    1588018434   break
    1588118435 else
    15882 @@ -5868,21 +6046,21 @@
     18436@@ -5868,21 +5912,29 @@
    1588318437                        test "$cf_cv_do_symlinks" = no && cf_cv_do_symlinks=yes
    1588418438                        ;;
    1588518439                *)
    1588618440-                       { echo "$as_me:5871: WARNING: ignored --with-shlib-version" >&5
    15887 +                       { echo "$as_me:6049: WARNING: ignored --with-shlib-version" >&5
     18441+                       { echo "$as_me:5915: WARNING: ignored --with-shlib-version" >&5
    1588818442 echo "$as_me: WARNING: ignored --with-shlib-version" >&2;}
    1588918443                        ;;
     
    1589818452+       test -n "$cf_ld_rpath_opt" && MK_SHARED_LIB="$MK_SHARED_LIB $cf_ld_rpath_opt\${RPATH_LIST}"
    1589918453+       test -z "$RPATH_LIST" && RPATH_LIST="\${libdir}"
     18454+
     18455+       test -n "$verbose" && echo "    CC_SHARED_OPTS: $CC_SHARED_OPTS" 1>&6
     18456+
     18457+echo "${as_me:-configure}:5928: testing CC_SHARED_OPTS: $CC_SHARED_OPTS ..." 1>&5
     18458+
     18459+       test -n "$verbose" && echo "    MK_SHARED_LIB:  $MK_SHARED_LIB" 1>&6
     18460+
     18461+echo "${as_me:-configure}:5932: testing MK_SHARED_LIB:  $MK_SHARED_LIB ..." 1>&5
    1590018462 
    1590118463 if test "$CC_SHARED_OPTS" = "unknown"; then
     
    1590318465                if test "$model" = "shared"; then
    1590418466-                       { { echo "$as_me:5885: error: Shared libraries are not supported in this version" >&5
    15905 +                       { { echo "$as_me:6063: error: Shared libraries are not supported in this version" >&5
     18467+                       { { echo "$as_me:5937: error: Shared libraries are not supported in this version" >&5
    1590618468 echo "$as_me: error: Shared libraries are not supported in this version" >&2;}
    1590718469    { (exit 1); exit 1; }; }
    1590818470                fi
    15909 @@ -5892,7 +6070,7 @@
     18471@@ -5892,7 +5944,7 @@
    1591018472 ### If we're building with rpath, try to link non-standard libs that way too.
    1591118473 if test "$DFT_LWR_MODEL" = "shared"; then
    1591218474 
    1591318475-echo "$as_me:5895: checking if rpath-hack should be disabled" >&5
    15914 +echo "$as_me:6073: checking if rpath-hack should be disabled" >&5
     18476+echo "$as_me:5947: checking if rpath-hack should be disabled" >&5
    1591518477 echo $ECHO_N "checking if rpath-hack should be disabled... $ECHO_C" >&6
    1591618478 
    1591718479 # Check whether --enable-rpath-hack or --disable-rpath-hack was given.
    15918 @@ -5909,21 +6087,21 @@
     18480@@ -5909,21 +5961,21 @@
    1591918481   cf_disable_rpath_hack=no
    1592018482 
    1592118483 fi;
    1592218484-echo "$as_me:5912: result: $cf_disable_rpath_hack" >&5
    15923 +echo "$as_me:6090: result: $cf_disable_rpath_hack" >&5
     18485+echo "$as_me:5964: result: $cf_disable_rpath_hack" >&5
    1592418486 echo "${ECHO_T}$cf_disable_rpath_hack" >&6
    1592518487 if test "$cf_disable_rpath_hack" = no ; then
    1592618488 
    1592718489-echo "$as_me:5916: checking for updated LDFLAGS" >&5
    15928 +echo "$as_me:6094: checking for updated LDFLAGS" >&5
     18490+echo "$as_me:5968: checking for updated LDFLAGS" >&5
    1592918491 echo $ECHO_N "checking for updated LDFLAGS... $ECHO_C" >&6
    1593018492 if test -n "$LD_RPATH_OPT" ; then
    1593118493-       echo "$as_me:5919: result: maybe" >&5
    15932 +       echo "$as_me:6097: result: maybe" >&5
     18494+       echo "$as_me:5971: result: maybe" >&5
    1593318495 echo "${ECHO_T}maybe" >&6
    1593418496 
     
    1593818500 set dummy $ac_prog; ac_word=$2
    1593918501-echo "$as_me:5926: checking for $ac_word" >&5
    15940 +echo "$as_me:6104: checking for $ac_word" >&5
     18502+echo "$as_me:5978: checking for $ac_word" >&5
    1594118503 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    1594218504 if test "${ac_cv_prog_cf_ldd_prog+set}" = set; then
    1594318505   echo $ECHO_N "(cached) $ECHO_C" >&6
    15944 @@ -5938,7 +6116,7 @@
     18506@@ -5938,7 +5990,7 @@
    1594518507   test -z "$ac_dir" && ac_dir=.
    1594618508   $as_executable_p "$ac_dir/$ac_word" || continue
    1594718509 ac_cv_prog_cf_ldd_prog="$ac_prog"
    1594818510-echo "$as_me:5941: found $ac_dir/$ac_word" >&5
    15949 +echo "$as_me:6119: found $ac_dir/$ac_word" >&5
     18511+echo "$as_me:5993: found $ac_dir/$ac_word" >&5
    1595018512 break
    1595118513 done
    1595218514 
    15953 @@ -5946,10 +6124,10 @@
     18515@@ -5946,10 +5998,10 @@
    1595418516 fi
    1595518517 cf_ldd_prog=$ac_cv_prog_cf_ldd_prog
    1595618518 if test -n "$cf_ldd_prog"; then
    1595718519-  echo "$as_me:5949: result: $cf_ldd_prog" >&5
    15958 +  echo "$as_me:6127: result: $cf_ldd_prog" >&5
     18520+  echo "$as_me:6001: result: $cf_ldd_prog" >&5
    1595918521 echo "${ECHO_T}$cf_ldd_prog" >&6
    1596018522 else
    1596118523-  echo "$as_me:5952: result: no" >&5
    15962 +  echo "$as_me:6130: result: no" >&5
     18524+  echo "$as_me:6004: result: no" >&5
    1596318525 echo "${ECHO_T}no" >&6
    1596418526 fi
    1596518527 
    15966 @@ -5963,7 +6141,7 @@
     18528@@ -5963,7 +6015,7 @@
    1596718529                cf_rpath_oops=
    1596818530 
    1596918531 cat >conftest.$ac_ext <<_ACEOF
    1597018532-#line 5966 "configure"
    15971 +#line 6144 "configure"
     18533+#line 6018 "configure"
    1597218534 #include "confdefs.h"
    1597318535 #include <stdio.h>
    1597418536 int
    15975 @@ -5975,16 +6153,16 @@
     18537@@ -5975,16 +6027,16 @@
    1597618538 }
    1597718539 _ACEOF
    1597818540 rm -f conftest.$ac_objext conftest$ac_exeext
    1597918541-if { (eval echo "$as_me:5978: \"$ac_link\"") >&5
    15980 +if { (eval echo "$as_me:6156: \"$ac_link\"") >&5
     18542+if { (eval echo "$as_me:6030: \"$ac_link\"") >&5
    1598118543   (eval $ac_link) 2>&5
    1598218544   ac_status=$?
    1598318545-  echo "$as_me:5981: \$? = $ac_status" >&5
    15984 +  echo "$as_me:6159: \$? = $ac_status" >&5
     18546+  echo "$as_me:6033: \$? = $ac_status" >&5
    1598518547   (exit $ac_status); } &&
    1598618548          { ac_try='test -s conftest$ac_exeext'
    1598718549-  { (eval echo "$as_me:5984: \"$ac_try\"") >&5
    15988 +  { (eval echo "$as_me:6162: \"$ac_try\"") >&5
     18550+  { (eval echo "$as_me:6036: \"$ac_try\"") >&5
    1598918551   (eval $ac_try) 2>&5
    1599018552   ac_status=$?
    1599118553-  echo "$as_me:5987: \$? = $ac_status" >&5
    15992 +  echo "$as_me:6165: \$? = $ac_status" >&5
     18554+  echo "$as_me:6039: \$? = $ac_status" >&5
    1599318555   (exit $ac_status); }; }; then
    1599418556   cf_rpath_oops=`$cf_ldd_prog conftest$ac_exeext | fgrep ' not found' | sed -e 's% =>.*$%%' |sort -u`
    1599518557                 cf_rpath_list=`$cf_ldd_prog conftest$ac_exeext | fgrep / | sed -e 's%^.*[      ]/%/%' -e 's%/[^/][^/]*$%%' |sort -u`
    15996 @@ -6012,7 +6190,7 @@
     18558@@ -6012,7 +6064,7 @@
    1599718559                                        then
    1599818560                                                test -n "$verbose" && echo "    ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src" 1>&6
    1599918561 
    1600018562-echo "${as_me:-configure}:6015: testing ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src ..." 1>&5
    16001 +echo "${as_me:-configure}:6193: testing ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src ..." 1>&5
     18563+echo "${as_me:-configure}:6067: testing ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src ..." 1>&5
    1600218564 
    1600318565                                                LDFLAGS="$LDFLAGS -L$cf_rpath_dir/lib"
    1600418566                                                break
    16005 @@ -6024,11 +6202,11 @@
     18567@@ -6024,11 +6076,11 @@
    1600618568 
    1600718569        test -n "$verbose" && echo "    ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS" 1>&6
    1600818570 
    1600918571-echo "${as_me:-configure}:6027: testing ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5
    16010 +echo "${as_me:-configure}:6205: testing ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5
     18572+echo "${as_me:-configure}:6079: testing ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5
    1601118573 
    1601218574 test -n "$verbose" && echo "   ...checking LDFLAGS $LDFLAGS" 1>&6
    1601318575 
    1601418576-echo "${as_me:-configure}:6031: testing ...checking LDFLAGS $LDFLAGS ..." 1>&5
    16015 +echo "${as_me:-configure}:6209: testing ...checking LDFLAGS $LDFLAGS ..." 1>&5
     18577+echo "${as_me:-configure}:6083: testing ...checking LDFLAGS $LDFLAGS ..." 1>&5
    1601618578 
    1601718579 cf_rpath_dst=
    1601818580 for cf_rpath_src in $LDFLAGS
    16019 @@ -6065,7 +6243,7 @@
     18581@@ -6065,7 +6117,7 @@
    1602018582                        then
    1602118583                                test -n "$verbose" && echo "    ...Filter $cf_rpath_src ->$cf_rpath_tmp" 1>&6
    1602218584 
    1602318585-echo "${as_me:-configure}:6068: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5
    16024 +echo "${as_me:-configure}:6246: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5
     18586+echo "${as_me:-configure}:6120: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5
    1602518587 
    1602618588                                EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS"
    1602718589                        fi
    16028 @@ -6078,11 +6256,11 @@
     18590@@ -6078,11 +6130,11 @@
    1602918591 
    1603018592 test -n "$verbose" && echo "   ...checked LDFLAGS $LDFLAGS" 1>&6
    1603118593 
    1603218594-echo "${as_me:-configure}:6081: testing ...checked LDFLAGS $LDFLAGS ..." 1>&5
    16033 +echo "${as_me:-configure}:6259: testing ...checked LDFLAGS $LDFLAGS ..." 1>&5
     18595+echo "${as_me:-configure}:6133: testing ...checked LDFLAGS $LDFLAGS ..." 1>&5
    1603418596 
    1603518597 test -n "$verbose" && echo "   ...checking LIBS $LIBS" 1>&6
    1603618598 
    1603718599-echo "${as_me:-configure}:6085: testing ...checking LIBS $LIBS ..." 1>&5
    16038 +echo "${as_me:-configure}:6263: testing ...checking LIBS $LIBS ..." 1>&5
     18600+echo "${as_me:-configure}:6137: testing ...checking LIBS $LIBS ..." 1>&5
    1603918601 
    1604018602 cf_rpath_dst=
    1604118603 for cf_rpath_src in $LIBS
    16042 @@ -6119,7 +6297,7 @@
     18604@@ -6119,7 +6171,7 @@
    1604318605                        then
    1604418606                                test -n "$verbose" && echo "    ...Filter $cf_rpath_src ->$cf_rpath_tmp" 1>&6
    1604518607 
    1604618608-echo "${as_me:-configure}:6122: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5
    16047 +echo "${as_me:-configure}:6300: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5
     18609+echo "${as_me:-configure}:6174: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5
    1604818610 
    1604918611                                EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS"
    1605018612                        fi
    16051 @@ -6132,11 +6310,11 @@
     18613@@ -6132,11 +6184,11 @@
    1605218614 
    1605318615 test -n "$verbose" && echo "   ...checked LIBS $LIBS" 1>&6
    1605418616 
    1605518617-echo "${as_me:-configure}:6135: testing ...checked LIBS $LIBS ..." 1>&5
    16056 +echo "${as_me:-configure}:6313: testing ...checked LIBS $LIBS ..." 1>&5
     18618+echo "${as_me:-configure}:6187: testing ...checked LIBS $LIBS ..." 1>&5
    1605718619 
    1605818620        test -n "$verbose" && echo "    ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS" 1>&6
    1605918621 
    1606018622-echo "${as_me:-configure}:6139: testing ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5
    16061 +echo "${as_me:-configure}:6317: testing ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5
    16062  
    16063  fi
    16064  
    16065 @@ -6147,7 +6325,7 @@
     18623+echo "${as_me:-configure}:6191: testing ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5
     18624 
     18625 fi
     18626 
     18627@@ -6147,7 +6199,7 @@
    1606618628 ###############################################################################
    1606718629 
    1606818630 ###    use option --disable-overwrite to leave out the link to -lcurses
    1606918631-echo "$as_me:6150: checking if you wish to install ncurses overwriting curses" >&5
    16070 +echo "$as_me:6328: checking if you wish to install ncurses overwriting curses" >&5
     18632+echo "$as_me:6202: checking if you wish to install ncurses overwriting curses" >&5
    1607118633 echo $ECHO_N "checking if you wish to install ncurses overwriting curses... $ECHO_C" >&6
    1607218634 
    1607318635 # Check whether --enable-overwrite or --disable-overwrite was given.
    16074 @@ -6157,10 +6335,10 @@
     18636@@ -6157,10 +6209,10 @@
    1607518637 else
    1607618638   if test "$prefix" = "/usr" ; then with_overwrite=yes; else with_overwrite=no; fi
    1607718639 fi;
    1607818640-echo "$as_me:6160: result: $with_overwrite" >&5
    16079 +echo "$as_me:6338: result: $with_overwrite" >&5
     18641+echo "$as_me:6212: result: $with_overwrite" >&5
    1608018642 echo "${ECHO_T}$with_overwrite" >&6
    1608118643 
    1608218644-echo "$as_me:6163: checking if external terminfo-database is used" >&5
    16083 +echo "$as_me:6341: checking if external terminfo-database is used" >&5
     18645+echo "$as_me:6215: checking if external terminfo-database is used" >&5
    1608418646 echo $ECHO_N "checking if external terminfo-database is used... $ECHO_C" >&6
    1608518647 
    1608618648 # Check whether --enable-database or --disable-database was given.
    16087 @@ -6170,7 +6348,7 @@
     18649@@ -6170,7 +6222,7 @@
    1608818650 else
    1608918651   use_database=yes
    1609018652 fi;
    1609118653-echo "$as_me:6173: result: $use_database" >&5
    16092 +echo "$as_me:6351: result: $use_database" >&5
     18654+echo "$as_me:6225: result: $use_database" >&5
    1609318655 echo "${ECHO_T}$use_database" >&6
    1609418656 
    1609518657 case $host_os in #(vi
    16096 @@ -6182,17 +6360,12 @@
     18658@@ -6182,17 +6234,12 @@
    1609718659        ;;
    1609818660 esac
     
    1610918671 
    1611018672-       echo "$as_me:6195: checking which terminfo source-file will be installed" >&5
    16111 +       echo "$as_me:6368: checking which terminfo source-file will be installed" >&5
     18673+       echo "$as_me:6242: checking which terminfo source-file will be installed" >&5
    1611218674 echo $ECHO_N "checking which terminfo source-file will be installed... $ECHO_C" >&6
    1611318675 
    1611418676 # Check whether --with-database or --without-database was given.
    16115 @@ -6200,10 +6373,10 @@
     18677@@ -6200,10 +6247,10 @@
    1611618678   withval="$with_database"
    1611718679   TERMINFO_SRC=$withval
    1611818680 fi;
    1611918681-       echo "$as_me:6203: result: $TERMINFO_SRC" >&5
    16120 +       echo "$as_me:6376: result: $TERMINFO_SRC" >&5
     18682+       echo "$as_me:6250: result: $TERMINFO_SRC" >&5
    1612118683 echo "${ECHO_T}$TERMINFO_SRC" >&6
    1612218684 
    1612318685-       echo "$as_me:6206: checking whether to use hashed database instead of directory/tree" >&5
    16124 +       echo "$as_me:6379: checking whether to use hashed database instead of directory/tree" >&5
     18686+       echo "$as_me:6253: checking whether to use hashed database instead of directory/tree" >&5
    1612518687 echo $ECHO_N "checking whether to use hashed database instead of directory/tree... $ECHO_C" >&6
    1612618688 
    1612718689 # Check whether --with-hashed-db or --without-hashed-db was given.
    16128 @@ -6213,13 +6386,13 @@
     18690@@ -6213,13 +6260,13 @@
    1612918691 else
    1613018692   with_hashed_db=no
    1613118693 fi;
    1613218694-       echo "$as_me:6216: result: $with_hashed_db" >&5
    16133 +       echo "$as_me:6389: result: $with_hashed_db" >&5
     18695+       echo "$as_me:6263: result: $with_hashed_db" >&5
    1613418696 echo "${ECHO_T}$with_hashed_db" >&6
    1613518697 else
     
    1613818700 
    1613918701-echo "$as_me:6222: checking for list of fallback descriptions" >&5
    16140 +echo "$as_me:6395: checking for list of fallback descriptions" >&5
     18702+echo "$as_me:6269: checking for list of fallback descriptions" >&5
    1614118703 echo $ECHO_N "checking for list of fallback descriptions... $ECHO_C" >&6
    1614218704 
    1614318705 # Check whether --with-fallbacks or --without-fallbacks was given.
    16144 @@ -6229,11 +6402,11 @@
     18706@@ -6229,11 +6276,11 @@
    1614518707 else
    1614618708   with_fallback=
    1614718709 fi;
    1614818710-echo "$as_me:6232: result: $with_fallback" >&5
    16149 +echo "$as_me:6405: result: $with_fallback" >&5
     18711+echo "$as_me:6279: result: $with_fallback" >&5
    1615018712 echo "${ECHO_T}$with_fallback" >&6
    1615118713 FALLBACK_LIST=`echo "$with_fallback" | sed -e 's/,/ /g'`
    1615218714 
    1615318715-echo "$as_me:6236: checking if you want modern xterm or antique" >&5
    16154 +echo "$as_me:6409: checking if you want modern xterm or antique" >&5
     18716+echo "$as_me:6283: checking if you want modern xterm or antique" >&5
    1615518717 echo $ECHO_N "checking if you want modern xterm or antique... $ECHO_C" >&6
    1615618718 
    1615718719 # Check whether --with-xterm-new or --without-xterm-new was given.
    16158 @@ -6247,19 +6420,49 @@
     18720@@ -6247,19 +6294,49 @@
    1615918721 no)    with_xterm_new=xterm-old;;
    1616018722 *)     with_xterm_new=xterm-new;;
    1616118723 esac
    1616218724-echo "$as_me:6250: result: $with_xterm_new" >&5
    16163 +echo "$as_me:6423: result: $with_xterm_new" >&5
     18725+echo "$as_me:6297: result: $with_xterm_new" >&5
    1616418726 echo "${ECHO_T}$with_xterm_new" >&6
    1616518727 WHICH_XTERM=$with_xterm_new
    1616618728 
    16167 +echo "$as_me:6427: checking if xterm backspace sends BS or DEL" >&5
     18729+echo "$as_me:6301: checking if xterm backspace sends BS or DEL" >&5
    1616818730+echo $ECHO_N "checking if xterm backspace sends BS or DEL... $ECHO_C" >&6
    1616918731+
     
    1618618748+       ;;
    1618718749+esac
    16188 +echo "$as_me:6448: result: $with_xterm_kbs" >&5
     18750+echo "$as_me:6322: result: $with_xterm_kbs" >&5
    1618918751+echo "${ECHO_T}$with_xterm_kbs" >&6
    1619018752+XTERM_KBS=$with_xterm_kbs
     
    1619718759 
    1619818760-echo "$as_me:6260: checking for list of terminfo directories" >&5
    16199 +echo "$as_me:6458: checking for list of terminfo directories" >&5
     18761+echo "$as_me:6332: checking for list of terminfo directories" >&5
    1620018762 echo $ECHO_N "checking for list of terminfo directories... $ECHO_C" >&6
    1620118763 
     
    1620818770 if test "${with_terminfo_dirs+set}" = set; then
    1620918771   withval="$with_terminfo_dirs"
    16210 @@ -6297,7 +6500,7 @@
     18772@@ -6285,7 +6362,7 @@
     18773   ;;
     18774 .[a-zA-Z]:[\\/]*) #(vi OS/2 EMX
     18775   ;;
     18776-.\${*prefix}*) #(vi
     18777+.\${*prefix}*|.\${*dir}*) #(vi
     18778   eval cf_src_path="$cf_src_path"
     18779   case ".$cf_src_path" in #(vi
     18780   .NONE/*)
     18781@@ -6297,7 +6374,7 @@
    1621118782   cf_src_path=`echo $cf_src_path | sed -e s%NONE%$cf_path_syntax%`
    1621218783   ;;
    1621318784 *)
    1621418785-  { { echo "$as_me:6300: error: expected a pathname, not \"$cf_src_path\"" >&5
    16215 +  { { echo "$as_me:6503: error: expected a pathname, not \"$cf_src_path\"" >&5
     18786+  { { echo "$as_me:6377: error: expected a pathname, not \"$cf_src_path\"" >&5
    1621618787 echo "$as_me: error: expected a pathname, not \"$cf_src_path\"" >&2;}
    1621718788    { (exit 1); exit 1; }; }
    1621818789   ;;
    16219 @@ -6310,13 +6513,13 @@
     18790@@ -6310,13 +6387,13 @@
    1622018791 
    1622118792 eval 'TERMINFO_DIRS="$cf_dst_path"'
    1622218793 
    1622318794-echo "$as_me:6313: result: $TERMINFO_DIRS" >&5
    16224 +echo "$as_me:6516: result: $TERMINFO_DIRS" >&5
     18795+echo "$as_me:6390: result: $TERMINFO_DIRS" >&5
    1622518796 echo "${ECHO_T}$TERMINFO_DIRS" >&6
    1622618797 test -n "$TERMINFO_DIRS" && cat >>confdefs.h <<EOF
     
    1622918800 
    1623018801-echo "$as_me:6319: checking for default terminfo directory" >&5
    16231 +echo "$as_me:6522: checking for default terminfo directory" >&5
     18802+echo "$as_me:6396: checking for default terminfo directory" >&5
    1623218803 echo $ECHO_N "checking for default terminfo directory... $ECHO_C" >&6
    1623318804 
    1623418805 # Check whether --with-default-terminfo-dir or --without-default-terminfo-dir was given.
    16235 @@ -6352,7 +6555,7 @@
     18806@@ -6340,7 +6417,7 @@
     18807   ;;
     18808 .[a-zA-Z]:[\\/]*) #(vi OS/2 EMX
     18809   ;;
     18810-.\${*prefix}*) #(vi
     18811+.\${*prefix}*|.\${*dir}*) #(vi
     18812   eval withval="$withval"
     18813   case ".$withval" in #(vi
     18814   .NONE/*)
     18815@@ -6352,7 +6429,7 @@
    1623618816   withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%`
    1623718817   ;;
    1623818818 *)
    1623918819-  { { echo "$as_me:6355: error: expected a pathname, not \"$withval\"" >&5
    16240 +  { { echo "$as_me:6558: error: expected a pathname, not \"$withval\"" >&5
     18820+  { { echo "$as_me:6432: error: expected a pathname, not \"$withval\"" >&5
    1624118821 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;}
    1624218822    { (exit 1); exit 1; }; }
    1624318823   ;;
    16244 @@ -6361,7 +6564,7 @@
     18824@@ -6361,7 +6438,7 @@
    1624518825 fi
    1624618826 TERMINFO="$withval"
    1624718827 
    1624818828-echo "$as_me:6364: result: $TERMINFO" >&5
    16249 +echo "$as_me:6567: result: $TERMINFO" >&5
     18829+echo "$as_me:6441: result: $TERMINFO" >&5
    1625018830 echo "${ECHO_T}$TERMINFO" >&6
    1625118831 cat >>confdefs.h <<EOF
    1625218832 #define TERMINFO "$TERMINFO"
    16253 @@ -6371,7 +6574,7 @@
     18833@@ -6371,7 +6448,7 @@
    1625418834 
    1625518835 ###    use option --disable-big-core to make tic run on small machines
    1625618836 ###    We need 4Mb, check if we can allocate 50% more than that.
    1625718837-echo "$as_me:6374: checking if big-core option selected" >&5
    16258 +echo "$as_me:6577: checking if big-core option selected" >&5
     18838+echo "$as_me:6451: checking if big-core option selected" >&5
    1625918839 echo $ECHO_N "checking if big-core option selected... $ECHO_C" >&6
    1626018840 
    1626118841 # Check whether --enable-big-core or --disable-big-core was given.
    16262 @@ -6383,7 +6586,7 @@
     18842@@ -6383,7 +6460,7 @@
    1626318843   with_big_core=no
    1626418844 else
    1626518845   cat >conftest.$ac_ext <<_ACEOF
    1626618846-#line 6386 "configure"
    16267 +#line 6589 "configure"
     18847+#line 6463 "configure"
    1626818848 #include "confdefs.h"
    1626918849 
    1627018850 #include <stdlib.h>
    16271 @@ -6397,15 +6600,15 @@
     18851@@ -6397,15 +6474,15 @@
    1627218852 }
    1627318853 _ACEOF
    1627418854 rm -f conftest$ac_exeext
    1627518855-if { (eval echo "$as_me:6400: \"$ac_link\"") >&5
    16276 +if { (eval echo "$as_me:6603: \"$ac_link\"") >&5
     18856+if { (eval echo "$as_me:6477: \"$ac_link\"") >&5
    1627718857   (eval $ac_link) 2>&5
    1627818858   ac_status=$?
    1627918859-  echo "$as_me:6403: \$? = $ac_status" >&5
    16280 +  echo "$as_me:6606: \$? = $ac_status" >&5
     18860+  echo "$as_me:6480: \$? = $ac_status" >&5
    1628118861   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
    1628218862-  { (eval echo "$as_me:6405: \"$ac_try\"") >&5
    16283 +  { (eval echo "$as_me:6608: \"$ac_try\"") >&5
     18863+  { (eval echo "$as_me:6482: \"$ac_try\"") >&5
    1628418864   (eval $ac_try) 2>&5
    1628518865   ac_status=$?
    1628618866-  echo "$as_me:6408: \$? = $ac_status" >&5
    16287 +  echo "$as_me:6611: \$? = $ac_status" >&5
     18867+  echo "$as_me:6485: \$? = $ac_status" >&5
    1628818868   (exit $ac_status); }; }; then
    1628918869   with_big_core=yes
    1629018870 else
    16291 @@ -6417,7 +6620,7 @@
     18871@@ -6417,7 +6494,7 @@
    1629218872 rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
    1629318873 fi
    1629418874 fi;
    1629518875-echo "$as_me:6420: result: $with_big_core" >&5
    16296 +echo "$as_me:6623: result: $with_big_core" >&5
     18876+echo "$as_me:6497: result: $with_big_core" >&5
    1629718877 echo "${ECHO_T}$with_big_core" >&6
    1629818878 test "$with_big_core" = "yes" && cat >>confdefs.h <<\EOF
    1629918879 #define HAVE_BIG_CORE 1
    16300 @@ -6426,7 +6629,7 @@
     18880@@ -6426,7 +6503,7 @@
    1630118881 ### ISO C only guarantees 512-char strings, we have tables which load faster
    1630218882 ### when constructed using "big" strings.  More than the C compiler, the awk
    1630318883 ### program is a limit on most vendor UNIX systems.  Check that we can build.
    1630418884-echo "$as_me:6429: checking if big-strings option selected" >&5
    16305 +echo "$as_me:6632: checking if big-strings option selected" >&5
     18885+echo "$as_me:6506: checking if big-strings option selected" >&5
    1630618886 echo $ECHO_N "checking if big-strings option selected... $ECHO_C" >&6
    1630718887 
    1630818888 # Check whether --enable-big-strings or --disable-big-strings was given.
    16309 @@ -6440,8 +6643,8 @@
     18889@@ -6440,8 +6517,8 @@
    1631018890                eval with_big_strings=no
    1631118891                ;;
     
    1631818898                else
    1631918899                        eval with_big_strings=no
    16320 @@ -6450,14 +6653,14 @@
     18900@@ -6450,14 +6527,14 @@
    1632118901        esac
    1632218902 
    1632318903 fi;
    1632418904-echo "$as_me:6453: result: $with_big_strings" >&5
    16325 +echo "$as_me:6656: result: $with_big_strings" >&5
     18905+echo "$as_me:6530: result: $with_big_strings" >&5
    1632618906 echo "${ECHO_T}$with_big_strings" >&6
    1632718907 
     
    1633118911 ###    use option --enable-termcap to compile in the termcap fallback support
    1633218912-echo "$as_me:6460: checking if you want termcap-fallback support" >&5
    16333 +echo "$as_me:6663: checking if you want termcap-fallback support" >&5
     18913+echo "$as_me:6537: checking if you want termcap-fallback support" >&5
    1633418914 echo $ECHO_N "checking if you want termcap-fallback support... $ECHO_C" >&6
    1633518915 
    1633618916 # Check whether --enable-termcap or --disable-termcap was given.
    16337 @@ -6467,13 +6670,13 @@
     18917@@ -6467,13 +6544,13 @@
    1633818918 else
    1633918919   with_termcap=no
    1634018920 fi;
    1634118921-echo "$as_me:6470: result: $with_termcap" >&5
    16342 +echo "$as_me:6673: result: $with_termcap" >&5
     18922+echo "$as_me:6547: result: $with_termcap" >&5
    1634318923 echo "${ECHO_T}$with_termcap" >&6
    1634418924 
     
    1634718927                if test -z "$with_fallback" ; then
    1634818928-                       { { echo "$as_me:6476: error: You have disabled the database w/o specifying fallbacks" >&5
    16349 +                       { { echo "$as_me:6679: error: You have disabled the database w/o specifying fallbacks" >&5
     18929+                       { { echo "$as_me:6553: error: You have disabled the database w/o specifying fallbacks" >&5
    1635018930 echo "$as_me: error: You have disabled the database w/o specifying fallbacks" >&2;}
    1635118931    { (exit 1); exit 1; }; }
    1635218932                fi
    16353 @@ -6485,7 +6688,7 @@
     18933@@ -6485,7 +6562,7 @@
    1635418934 else
    1635518935 
    1635618936 if test "$with_ticlib" != no ; then
    1635718937-       { { echo "$as_me:6488: error: Options --with-ticlib and --enable-termcap cannot be combined" >&5
    16358 +       { { echo "$as_me:6691: error: Options --with-ticlib and --enable-termcap cannot be combined" >&5
     18938+       { { echo "$as_me:6565: error: Options --with-ticlib and --enable-termcap cannot be combined" >&5
    1635918939 echo "$as_me: error: Options --with-ticlib and --enable-termcap cannot be combined" >&2;}
    1636018940    { (exit 1); exit 1; }; }
    1636118941 fi
    16362 @@ -6494,7 +6697,7 @@
     18942@@ -6494,7 +6571,7 @@
    1636318943 #define USE_TERMCAP 1
    1636418944 EOF
    1636518945 
    1636618946-echo "$as_me:6497: checking for list of termcap files" >&5
    16367 +echo "$as_me:6700: checking for list of termcap files" >&5
     18947+echo "$as_me:6574: checking for list of termcap files" >&5
    1636818948 echo $ECHO_N "checking for list of termcap files... $ECHO_C" >&6
    1636918949 
    1637018950 # Check whether --with-termpath or --without-termpath was given.
    16371 @@ -6534,7 +6737,7 @@
     18951@@ -6522,7 +6599,7 @@
     18952   ;;
     18953 .[a-zA-Z]:[\\/]*) #(vi OS/2 EMX
     18954   ;;
     18955-.\${*prefix}*) #(vi
     18956+.\${*prefix}*|.\${*dir}*) #(vi
     18957   eval cf_src_path="$cf_src_path"
     18958   case ".$cf_src_path" in #(vi
     18959   .NONE/*)
     18960@@ -6534,7 +6611,7 @@
    1637218961   cf_src_path=`echo $cf_src_path | sed -e s%NONE%$cf_path_syntax%`
    1637318962   ;;
    1637418963 *)
    1637518964-  { { echo "$as_me:6537: error: expected a pathname, not \"$cf_src_path\"" >&5
    16376 +  { { echo "$as_me:6740: error: expected a pathname, not \"$cf_src_path\"" >&5
     18965+  { { echo "$as_me:6614: error: expected a pathname, not \"$cf_src_path\"" >&5
    1637718966 echo "$as_me: error: expected a pathname, not \"$cf_src_path\"" >&2;}
    1637818967    { (exit 1); exit 1; }; }
    1637918968   ;;
    16380 @@ -6547,14 +6750,14 @@
     18969@@ -6547,14 +6624,14 @@
    1638118970 
    1638218971 eval 'TERMPATH="$cf_dst_path"'
    1638318972 
    1638418973-echo "$as_me:6550: result: $TERMPATH" >&5
    16385 +echo "$as_me:6753: result: $TERMPATH" >&5
     18974+echo "$as_me:6627: result: $TERMPATH" >&5
    1638618975 echo "${ECHO_T}$TERMPATH" >&6
    1638718976 test -n "$TERMPATH" && cat >>confdefs.h <<EOF
     
    1639118980 ###    use option --enable-getcap to use a hacked getcap for reading termcaps
    1639218981-echo "$as_me:6557: checking if fast termcap-loader is needed" >&5
    16393 +echo "$as_me:6760: checking if fast termcap-loader is needed" >&5
     18982+echo "$as_me:6634: checking if fast termcap-loader is needed" >&5
    1639418983 echo $ECHO_N "checking if fast termcap-loader is needed... $ECHO_C" >&6
    1639518984 
    1639618985 # Check whether --enable-getcap or --disable-getcap was given.
    16397 @@ -6564,13 +6767,13 @@
     18986@@ -6564,13 +6641,13 @@
    1639818987 else
    1639918988   with_getcap=no
    1640018989 fi;
    1640118990-echo "$as_me:6567: result: $with_getcap" >&5
    16402 +echo "$as_me:6770: result: $with_getcap" >&5
     18991+echo "$as_me:6644: result: $with_getcap" >&5
    1640318992 echo "${ECHO_T}$with_getcap" >&6
    1640418993 test "$with_getcap" = "yes" && cat >>confdefs.h <<\EOF
     
    1640718996 
    1640818997-echo "$as_me:6573: checking if translated termcaps will be cached in ~/.terminfo" >&5
    16409 +echo "$as_me:6776: checking if translated termcaps will be cached in ~/.terminfo" >&5
     18998+echo "$as_me:6650: checking if translated termcaps will be cached in ~/.terminfo" >&5
    1641018999 echo $ECHO_N "checking if translated termcaps will be cached in ~/.terminfo... $ECHO_C" >&6
    1641119000 
    1641219001 # Check whether --enable-getcap-cache or --disable-getcap-cache was given.
    16413 @@ -6580,7 +6783,7 @@
     19002@@ -6580,7 +6657,7 @@
    1641419003 else
    1641519004   with_getcap_cache=no
    1641619005 fi;
    1641719006-echo "$as_me:6583: result: $with_getcap_cache" >&5
    16418 +echo "$as_me:6786: result: $with_getcap_cache" >&5
     19007+echo "$as_me:6660: result: $with_getcap_cache" >&5
    1641919008 echo "${ECHO_T}$with_getcap_cache" >&6
    1642019009 test "$with_getcap_cache" = "yes" && cat >>confdefs.h <<\EOF
    1642119010 #define USE_GETCAP_CACHE 1
    16422 @@ -6589,7 +6792,7 @@
     19011@@ -6589,7 +6666,7 @@
    1642319012 fi
    1642419013 
    1642519014 ###   Use option --disable-home-terminfo to completely remove ~/.terminfo
    1642619015-echo "$as_me:6592: checking if ~/.terminfo is wanted" >&5
    16427 +echo "$as_me:6795: checking if ~/.terminfo is wanted" >&5
     19016+echo "$as_me:6669: checking if ~/.terminfo is wanted" >&5
    1642819017 echo $ECHO_N "checking if ~/.terminfo is wanted... $ECHO_C" >&6
    1642919018 
    1643019019 # Check whether --enable-home-terminfo or --disable-home-terminfo was given.
    16431 @@ -6599,13 +6802,13 @@
     19020@@ -6599,13 +6676,13 @@
    1643219021 else
    1643319022   with_home_terminfo=yes
    1643419023 fi;
    1643519024-echo "$as_me:6602: result: $with_home_terminfo" >&5
    16436 +echo "$as_me:6805: result: $with_home_terminfo" >&5
     19025+echo "$as_me:6679: result: $with_home_terminfo" >&5
    1643719026 echo "${ECHO_T}$with_home_terminfo" >&6
    1643819027 test "$with_home_terminfo" = "yes" && cat >>confdefs.h <<\EOF
     
    1644119030 
    1644219031-echo "$as_me:6608: checking if you want to use restricted environment when running as root" >&5
    16443 +echo "$as_me:6811: checking if you want to use restricted environment when running as root" >&5
     19032+echo "$as_me:6685: checking if you want to use restricted environment when running as root" >&5
    1644419033 echo $ECHO_N "checking if you want to use restricted environment when running as root... $ECHO_C" >&6
    1644519034 
    1644619035 # Check whether --enable-root-environ or --disable-root-environ was given.
    16447 @@ -6615,7 +6818,7 @@
     19036@@ -6615,7 +6692,7 @@
    1644819037 else
    1644919038   with_root_environ=yes
    1645019039 fi;
    1645119040-echo "$as_me:6618: result: $with_root_environ" >&5
    16452 +echo "$as_me:6821: result: $with_root_environ" >&5
     19041+echo "$as_me:6695: result: $with_root_environ" >&5
    1645319042 echo "${ECHO_T}$with_root_environ" >&6
    1645419043 test "$with_root_environ" = yes && cat >>confdefs.h <<\EOF
    1645519044 #define USE_ROOT_ENVIRON 1
    16456 @@ -6629,13 +6832,13 @@
     19045@@ -6629,13 +6706,13 @@
    1645719046        unlink
    1645819047 do
    1645919048 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
    1646019049-echo "$as_me:6632: checking for $ac_func" >&5
    16461 +echo "$as_me:6835: checking for $ac_func" >&5
     19050+echo "$as_me:6709: checking for $ac_func" >&5
    1646219051 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
    1646319052 if eval "test \"\${$as_ac_var+set}\" = set"; then
     
    1646619055   cat >conftest.$ac_ext <<_ACEOF
    1646719056-#line 6638 "configure"
    16468 +#line 6841 "configure"
     19057+#line 6715 "configure"
    1646919058 #include "confdefs.h"
    1647019059 /* System header to define __stub macros and hopefully few prototypes,
    1647119060     which can conflict with char $ac_func (); below.  */
    16472 @@ -6666,16 +6869,16 @@
     19061@@ -6658,7 +6735,7 @@
     19062 #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
     19063 choke me
     19064 #else
     19065-f = $ac_func;
     19066+f = $ac_func; /* workaround for ICC 12.0.3 */ if (f == 0) return 1;
     19067 #endif
     19068 
     19069   ;
     19070@@ -6666,16 +6743,16 @@
    1647319071 }
    1647419072 _ACEOF
    1647519073 rm -f conftest.$ac_objext conftest$ac_exeext
    1647619074-if { (eval echo "$as_me:6669: \"$ac_link\"") >&5
    16477 +if { (eval echo "$as_me:6872: \"$ac_link\"") >&5
     19075+if { (eval echo "$as_me:6746: \"$ac_link\"") >&5
    1647819076   (eval $ac_link) 2>&5
    1647919077   ac_status=$?
    1648019078-  echo "$as_me:6672: \$? = $ac_status" >&5
    16481 +  echo "$as_me:6875: \$? = $ac_status" >&5
     19079+  echo "$as_me:6749: \$? = $ac_status" >&5
    1648219080   (exit $ac_status); } &&
    1648319081          { ac_try='test -s conftest$ac_exeext'
    1648419082-  { (eval echo "$as_me:6675: \"$ac_try\"") >&5
    16485 +  { (eval echo "$as_me:6878: \"$ac_try\"") >&5
     19083+  { (eval echo "$as_me:6752: \"$ac_try\"") >&5
    1648619084   (eval $ac_try) 2>&5
    1648719085   ac_status=$?
    1648819086-  echo "$as_me:6678: \$? = $ac_status" >&5
    16489 +  echo "$as_me:6881: \$? = $ac_status" >&5
     19087+  echo "$as_me:6755: \$? = $ac_status" >&5
    1649019088   (exit $ac_status); }; }; then
    1649119089   eval "$as_ac_var=yes"
    1649219090 else
    16493 @@ -6685,7 +6888,7 @@
     19091@@ -6685,7 +6762,7 @@
    1649419092 fi
    1649519093 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    1649619094 fi
    1649719095-echo "$as_me:6688: result: `eval echo '${'$as_ac_var'}'`" >&5
    16498 +echo "$as_me:6891: result: `eval echo '${'$as_ac_var'}'`" >&5
     19096+echo "$as_me:6765: result: `eval echo '${'$as_ac_var'}'`" >&5
    1649919097 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
    1650019098 if test `eval echo '${'$as_ac_var'}'` = yes; then
    1650119099   cat >>confdefs.h <<EOF
    16502 @@ -6702,13 +6905,13 @@
     19100@@ -6702,13 +6779,13 @@
    1650319101                symlink
    1650419102 do
    1650519103 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
    1650619104-echo "$as_me:6705: checking for $ac_func" >&5
    16507 +echo "$as_me:6908: checking for $ac_func" >&5
     19105+echo "$as_me:6782: checking for $ac_func" >&5
    1650819106 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
    1650919107 if eval "test \"\${$as_ac_var+set}\" = set"; then
     
    1651219110   cat >conftest.$ac_ext <<_ACEOF
    1651319111-#line 6711 "configure"
    16514 +#line 6914 "configure"
     19112+#line 6788 "configure"
    1651519113 #include "confdefs.h"
    1651619114 /* System header to define __stub macros and hopefully few prototypes,
    1651719115     which can conflict with char $ac_func (); below.  */
    16518 @@ -6739,16 +6942,16 @@
     19116@@ -6731,7 +6808,7 @@
     19117 #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
     19118 choke me
     19119 #else
     19120-f = $ac_func;
     19121+f = $ac_func; /* workaround for ICC 12.0.3 */ if (f == 0) return 1;
     19122 #endif
     19123 
     19124   ;
     19125@@ -6739,16 +6816,16 @@
    1651919126 }
    1652019127 _ACEOF
    1652119128 rm -f conftest.$ac_objext conftest$ac_exeext
    1652219129-if { (eval echo "$as_me:6742: \"$ac_link\"") >&5
    16523 +if { (eval echo "$as_me:6945: \"$ac_link\"") >&5
     19130+if { (eval echo "$as_me:6819: \"$ac_link\"") >&5
    1652419131   (eval $ac_link) 2>&5
    1652519132   ac_status=$?
    1652619133-  echo "$as_me:6745: \$? = $ac_status" >&5
    16527 +  echo "$as_me:6948: \$? = $ac_status" >&5
     19134+  echo "$as_me:6822: \$? = $ac_status" >&5
    1652819135   (exit $ac_status); } &&
    1652919136          { ac_try='test -s conftest$ac_exeext'
    1653019137-  { (eval echo "$as_me:6748: \"$ac_try\"") >&5
    16531 +  { (eval echo "$as_me:6951: \"$ac_try\"") >&5
     19138+  { (eval echo "$as_me:6825: \"$ac_try\"") >&5
    1653219139   (eval $ac_try) 2>&5
    1653319140   ac_status=$?
    1653419141-  echo "$as_me:6751: \$? = $ac_status" >&5
    16535 +  echo "$as_me:6954: \$? = $ac_status" >&5
     19142+  echo "$as_me:6828: \$? = $ac_status" >&5
    1653619143   (exit $ac_status); }; }; then
    1653719144   eval "$as_ac_var=yes"
    1653819145 else
    16539 @@ -6758,7 +6961,7 @@
     19146@@ -6758,7 +6835,7 @@
    1654019147 fi
    1654119148 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    1654219149 fi
    1654319150-echo "$as_me:6761: result: `eval echo '${'$as_ac_var'}'`" >&5
    16544 +echo "$as_me:6964: result: `eval echo '${'$as_ac_var'}'`" >&5
     19151+echo "$as_me:6838: result: `eval echo '${'$as_ac_var'}'`" >&5
    1654519152 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
    1654619153 if test `eval echo '${'$as_ac_var'}'` = yes; then
    1654719154   cat >>confdefs.h <<EOF
    16548 @@ -6769,7 +6972,7 @@
     19155@@ -6769,7 +6846,7 @@
    1654919156 done
    1655019157 
    1655119158 else
    1655219159-       echo "$as_me:6772: checking if link/symlink functions work" >&5
    16553 +       echo "$as_me:6975: checking if link/symlink functions work" >&5
     19160+       echo "$as_me:6849: checking if link/symlink functions work" >&5
    1655419161 echo $ECHO_N "checking if link/symlink functions work... $ECHO_C" >&6
    1655519162 if test "${cf_cv_link_funcs+set}" = set; then
    1655619163   echo $ECHO_N "(cached) $ECHO_C" >&6
    16557 @@ -6782,7 +6985,7 @@
     19164@@ -6782,7 +6859,7 @@
    1655819165                        eval 'ac_cv_func_'$cf_func'=error'
    1655919166 else
    1656019167   cat >conftest.$ac_ext <<_ACEOF
    1656119168-#line 6785 "configure"
    16562 +#line 6988 "configure"
     19169+#line 6862 "configure"
    1656319170 #include "confdefs.h"
    1656419171 
    1656519172 #include <sys/types.h>
    16566 @@ -6812,15 +7015,15 @@
     19173@@ -6812,15 +6889,15 @@
    1656719174 
    1656819175 _ACEOF
    1656919176 rm -f conftest$ac_exeext
    1657019177-if { (eval echo "$as_me:6815: \"$ac_link\"") >&5
    16571 +if { (eval echo "$as_me:7018: \"$ac_link\"") >&5
     19178+if { (eval echo "$as_me:6892: \"$ac_link\"") >&5
    1657219179   (eval $ac_link) 2>&5
    1657319180   ac_status=$?
    1657419181-  echo "$as_me:6818: \$? = $ac_status" >&5
    16575 +  echo "$as_me:7021: \$? = $ac_status" >&5
     19182+  echo "$as_me:6895: \$? = $ac_status" >&5
    1657619183   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
    1657719184-  { (eval echo "$as_me:6820: \"$ac_try\"") >&5
    16578 +  { (eval echo "$as_me:7023: \"$ac_try\"") >&5
     19185+  { (eval echo "$as_me:6897: \"$ac_try\"") >&5
    1657919186   (eval $ac_try) 2>&5
    1658019187   ac_status=$?
    1658119188-  echo "$as_me:6823: \$? = $ac_status" >&5
    16582 +  echo "$as_me:7026: \$? = $ac_status" >&5
     19189+  echo "$as_me:6900: \$? = $ac_status" >&5
    1658319190   (exit $ac_status); }; }; then
    1658419191 
    1658519192                        cf_cv_link_funcs="$cf_cv_link_funcs $cf_func"
    16586 @@ -6838,7 +7041,7 @@
     19193@@ -6838,7 +6915,7 @@
    1658719194                test -z "$cf_cv_link_funcs" && cf_cv_link_funcs=no
    1658819195 
    1658919196 fi
    1659019197-echo "$as_me:6841: result: $cf_cv_link_funcs" >&5
    16591 +echo "$as_me:7044: result: $cf_cv_link_funcs" >&5
     19198+echo "$as_me:6918: result: $cf_cv_link_funcs" >&5
    1659219199 echo "${ECHO_T}$cf_cv_link_funcs" >&6
    1659319200        test "$ac_cv_func_link"    = yes && cat >>confdefs.h <<\EOF
    1659419201 #define HAVE_LINK 1
    16595 @@ -6856,7 +7059,7 @@
     19202@@ -6856,7 +6933,7 @@
    1659619203 # soft links (symbolic links) are useful for some systems where hard links do
    1659719204 # not work, or to make it simpler to copy terminfo trees around.
    1659819205 if test "$ac_cv_func_symlink" = yes ; then
    1659919206-    echo "$as_me:6859: checking if tic should use symbolic links" >&5
    16600 +    echo "$as_me:7062: checking if tic should use symbolic links" >&5
     19207+    echo "$as_me:6936: checking if tic should use symbolic links" >&5
    1660119208 echo $ECHO_N "checking if tic should use symbolic links... $ECHO_C" >&6
    1660219209 
    1660319210 # Check whether --enable-symlinks or --disable-symlinks was given.
    16604 @@ -6866,21 +7069,21 @@
     19211@@ -6866,21 +6943,21 @@
    1660519212 else
    1660619213   with_symlinks=no
    1660719214 fi;
    1660819215-    echo "$as_me:6869: result: $with_symlinks" >&5
    16609 +    echo "$as_me:7072: result: $with_symlinks" >&5
     19216+    echo "$as_me:6946: result: $with_symlinks" >&5
    1661019217 echo "${ECHO_T}$with_symlinks" >&6
    1661119218 fi
     
    1661519222 if test "$with_symlinks" = no ; then
    1661619223-    echo "$as_me:6876: checking if tic should use hard links" >&5
    16617 +    echo "$as_me:7079: checking if tic should use hard links" >&5
     19224+    echo "$as_me:6953: checking if tic should use hard links" >&5
    1661819225 echo $ECHO_N "checking if tic should use hard links... $ECHO_C" >&6
    1661919226     if test "$ac_cv_func_link" = yes ; then
     
    1662319230     fi
    1662419231-    echo "$as_me:6883: result: $with_links" >&5
    16625 +    echo "$as_me:7086: result: $with_links" >&5
     19232+    echo "$as_me:6960: result: $with_links" >&5
    1662619233 echo "${ECHO_T}$with_links" >&6
    1662719234 fi
    1662819235 
    16629 @@ -6893,7 +7096,7 @@
     19236@@ -6893,7 +6970,7 @@
    1663019237 EOF
    1663119238 
    1663219239 ###   use option --enable-broken-linker to force on use of broken-linker support
    1663319240-echo "$as_me:6896: checking if you want broken-linker support code" >&5
    16634 +echo "$as_me:7099: checking if you want broken-linker support code" >&5
     19241+echo "$as_me:6973: checking if you want broken-linker support code" >&5
    1663519242 echo $ECHO_N "checking if you want broken-linker support code... $ECHO_C" >&6
    1663619243 
    1663719244 # Check whether --enable-broken_linker or --disable-broken_linker was given.
    16638 @@ -6903,7 +7106,7 @@
     19245@@ -6903,7 +6980,7 @@
    1663919246 else
    1664019247   with_broken_linker=${BROKEN_LINKER:-no}
    1664119248 fi;
    1664219249-echo "$as_me:6906: result: $with_broken_linker" >&5
    16643 +echo "$as_me:7109: result: $with_broken_linker" >&5
     19250+echo "$as_me:6983: result: $with_broken_linker" >&5
    1664419251 echo "${ECHO_T}$with_broken_linker" >&6
    1664519252 
    1664619253 BROKEN_LINKER=0
    16647 @@ -6923,14 +7126,14 @@
     19254@@ -6923,14 +7000,14 @@
    1664819255                BROKEN_LINKER=1
    1664919256                test -n "$verbose" && echo "    cygwin linker is broken anyway" 1>&6
    1665019257 
    1665119258-echo "${as_me:-configure}:6926: testing cygwin linker is broken anyway ..." 1>&5
    16652 +echo "${as_me:-configure}:7129: testing cygwin linker is broken anyway ..." 1>&5
     19259+echo "${as_me:-configure}:7003: testing cygwin linker is broken anyway ..." 1>&5
    1665319260 
    1665419261                ;;
     
    1665819265 ###   use option --enable-bsdpad to have tputs process BSD-style prefix padding
    1665919266-echo "$as_me:6933: checking if tputs should process BSD-style prefix padding" >&5
    16660 +echo "$as_me:7136: checking if tputs should process BSD-style prefix padding" >&5
     19267+echo "$as_me:7010: checking if tputs should process BSD-style prefix padding" >&5
    1666119268 echo $ECHO_N "checking if tputs should process BSD-style prefix padding... $ECHO_C" >&6
    1666219269 
    1666319270 # Check whether --enable-bsdpad or --disable-bsdpad was given.
    16664 @@ -6940,7 +7143,7 @@
     19271@@ -6940,7 +7017,7 @@
    1666519272 else
    1666619273   with_bsdpad=no
    1666719274 fi;
    1666819275-echo "$as_me:6943: result: $with_bsdpad" >&5
    16669 +echo "$as_me:7146: result: $with_bsdpad" >&5
     19276+echo "$as_me:7020: result: $with_bsdpad" >&5
    1667019277 echo "${ECHO_T}$with_bsdpad" >&6
    1667119278 test "$with_bsdpad" = yes && cat >>confdefs.h <<\EOF
    1667219279 #define BSD_TPUTS 1
    16673 @@ -6962,7 +7165,7 @@
     19280@@ -6962,7 +7039,7 @@
    1667419281 cf_xopen_source=
    1667519282 
     
    1668019287        ;;
    1668119288 cygwin) #(vi
    16682 @@ -6973,6 +7176,7 @@
     19289@@ -6973,6 +7050,7 @@
    1668319290        ;;
    1668419291 darwin*) #(vi
     
    1668819295 freebsd*|dragonfly*) #(vi
    1668919296        # 5.x headers associate
    16690 @@ -6990,17 +7194,18 @@
     19297@@ -6990,17 +7068,18 @@
    1669119298        ;;
    1669219299 irix[56].*) #(vi
     
    1669719304 
    1669819305-echo "$as_me:6996: checking if we must define _GNU_SOURCE" >&5
    16699 +echo "$as_me:7201: checking if we must define _GNU_SOURCE" >&5
     19306+echo "$as_me:7075: checking if we must define _GNU_SOURCE" >&5
    1670019307 echo $ECHO_N "checking if we must define _GNU_SOURCE... $ECHO_C" >&6
    1670119308 if test "${cf_cv_gnu_source+set}" = set; then
     
    1670519312 cat >conftest.$ac_ext <<_ACEOF
    1670619313-#line 7003 "configure"
    16707 +#line 7208 "configure"
     19314+#line 7082 "configure"
    1670819315 #include "confdefs.h"
    1670919316 #include <sys/types.h>
    1671019317 int
    16711 @@ -7015,16 +7220,16 @@
     19318@@ -7015,16 +7094,16 @@
    1671219319 }
    1671319320 _ACEOF
    1671419321 rm -f conftest.$ac_objext
    1671519322-if { (eval echo "$as_me:7018: \"$ac_compile\"") >&5
    16716 +if { (eval echo "$as_me:7223: \"$ac_compile\"") >&5
     19323+if { (eval echo "$as_me:7097: \"$ac_compile\"") >&5
    1671719324   (eval $ac_compile) 2>&5
    1671819325   ac_status=$?
    1671919326-  echo "$as_me:7021: \$? = $ac_status" >&5
    16720 +  echo "$as_me:7226: \$? = $ac_status" >&5
     19327+  echo "$as_me:7100: \$? = $ac_status" >&5
    1672119328   (exit $ac_status); } &&
    1672219329          { ac_try='test -s conftest.$ac_objext'
    1672319330-  { (eval echo "$as_me:7024: \"$ac_try\"") >&5
    16724 +  { (eval echo "$as_me:7229: \"$ac_try\"") >&5
     19331+  { (eval echo "$as_me:7103: \"$ac_try\"") >&5
    1672519332   (eval $ac_try) 2>&5
    1672619333   ac_status=$?
    1672719334-  echo "$as_me:7027: \$? = $ac_status" >&5
    16728 +  echo "$as_me:7232: \$? = $ac_status" >&5
     19335+  echo "$as_me:7106: \$? = $ac_status" >&5
    1672919336   (exit $ac_status); }; }; then
    1673019337   cf_cv_gnu_source=no
    1673119338 else
    16732 @@ -7033,7 +7238,7 @@
     19339@@ -7033,7 +7112,7 @@
    1673319340 cf_save="$CPPFLAGS"
    1673419341         CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
    1673519342         cat >conftest.$ac_ext <<_ACEOF
    1673619343-#line 7036 "configure"
    16737 +#line 7241 "configure"
     19344+#line 7115 "configure"
    1673819345 #include "confdefs.h"
    1673919346 #include <sys/types.h>
    1674019347 int
    16741 @@ -7048,16 +7253,16 @@
     19348@@ -7048,16 +7127,16 @@
    1674219349 }
    1674319350 _ACEOF
    1674419351 rm -f conftest.$ac_objext
    1674519352-if { (eval echo "$as_me:7051: \"$ac_compile\"") >&5
    16746 +if { (eval echo "$as_me:7256: \"$ac_compile\"") >&5
     19353+if { (eval echo "$as_me:7130: \"$ac_compile\"") >&5
    1674719354   (eval $ac_compile) 2>&5
    1674819355   ac_status=$?
    1674919356-  echo "$as_me:7054: \$? = $ac_status" >&5
    16750 +  echo "$as_me:7259: \$? = $ac_status" >&5
     19357+  echo "$as_me:7133: \$? = $ac_status" >&5
    1675119358   (exit $ac_status); } &&
    1675219359          { ac_try='test -s conftest.$ac_objext'
    1675319360-  { (eval echo "$as_me:7057: \"$ac_try\"") >&5
    16754 +  { (eval echo "$as_me:7262: \"$ac_try\"") >&5
     19361+  { (eval echo "$as_me:7136: \"$ac_try\"") >&5
    1675519362   (eval $ac_try) 2>&5
    1675619363   ac_status=$?
    1675719364-  echo "$as_me:7060: \$? = $ac_status" >&5
    16758 +  echo "$as_me:7265: \$? = $ac_status" >&5
     19365+  echo "$as_me:7139: \$? = $ac_status" >&5
    1675919366   (exit $ac_status); }; }; then
    1676019367   cf_cv_gnu_source=no
    1676119368 else
    16762 @@ -7072,51 +7277,45 @@
     19369@@ -7072,51 +7151,45 @@
    1676319370 rm -f conftest.$ac_objext conftest.$ac_ext
    1676419371 
    1676519372 fi
    1676619373-echo "$as_me:7075: result: $cf_cv_gnu_source" >&5
    16767 +echo "$as_me:7280: result: $cf_cv_gnu_source" >&5
     19374+echo "$as_me:7154: result: $cf_cv_gnu_source" >&5
    1676819375 echo "${ECHO_T}$cf_cv_gnu_source" >&6
    1676919376 test "$cf_cv_gnu_source" = yes && CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
     
    1681419421+               -e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^     ]*\)\?$//g'`
    1681519422+
    16816 +echo "$as_me:7302: checking if we should define _POSIX_C_SOURCE" >&5
     19423+echo "$as_me:7176: checking if we should define _POSIX_C_SOURCE" >&5
    1681719424+echo $ECHO_N "checking if we should define _POSIX_C_SOURCE... $ECHO_C" >&6
    1681819425+if test "${cf_cv_posix_c_source+set}" = set; then
     
    1682019427 else
    1682119428 
    16822 +echo "${as_me:-configure}:7308: testing if the symbol is already defined go no further ..." 1>&5
     19429+echo "${as_me:-configure}:7182: testing if the symbol is already defined go no further ..." 1>&5
    1682319430+
    1682419431        cat >conftest.$ac_ext <<_ACEOF
    1682519432-#line 7112 "configure"
    16826 +#line 7311 "configure"
     19433+#line 7185 "configure"
    1682719434 #include "confdefs.h"
    1682819435 #include <sys/types.h>
     
    1683619443 #endif
    1683719444   ;
    16838 @@ -7124,32 +7323,44 @@
     19445@@ -7124,32 +7197,44 @@
    1683919446 }
    1684019447 _ACEOF
    1684119448 rm -f conftest.$ac_objext
    1684219449-if { (eval echo "$as_me:7127: \"$ac_compile\"") >&5
    16843 +if { (eval echo "$as_me:7326: \"$ac_compile\"") >&5
     19450+if { (eval echo "$as_me:7200: \"$ac_compile\"") >&5
    1684419451   (eval $ac_compile) 2>&5
    1684519452   ac_status=$?
    1684619453-  echo "$as_me:7130: \$? = $ac_status" >&5
    16847 +  echo "$as_me:7329: \$? = $ac_status" >&5
     19454+  echo "$as_me:7203: \$? = $ac_status" >&5
    1684819455   (exit $ac_status); } &&
    1684919456          { ac_try='test -s conftest.$ac_objext'
    1685019457-  { (eval echo "$as_me:7133: \"$ac_try\"") >&5
    16851 +  { (eval echo "$as_me:7332: \"$ac_try\"") >&5
     19458+  { (eval echo "$as_me:7206: \"$ac_try\"") >&5
    1685219459   (eval $ac_try) 2>&5
    1685319460   ac_status=$?
    1685419461-  echo "$as_me:7136: \$? = $ac_status" >&5
    16855 +  echo "$as_me:7335: \$? = $ac_status" >&5
     19462+  echo "$as_me:7209: \$? = $ac_status" >&5
    1685619463   (exit $ac_status); }; }; then
    1685719464-  cf_cv_xopen_source=no
     
    1687919486+        if test "$cf_want_posix_source" = yes ; then
    1688019487+               cat >conftest.$ac_ext <<_ACEOF
    16881 +#line 7356 "configure"
     19488+#line 7230 "configure"
    1688219489 #include "confdefs.h"
    1688319490 #include <sys/types.h>
     
    1689119498 #endif
    1689219499   ;
    16893 @@ -7157,57 +7368,94 @@
     19500@@ -7157,50 +7242,87 @@
    1689419501 }
    1689519502 _ACEOF
    1689619503 rm -f conftest.$ac_objext
    1689719504-if { (eval echo "$as_me:7160: \"$ac_compile\"") >&5
    16898 +if { (eval echo "$as_me:7371: \"$ac_compile\"") >&5
     19505+if { (eval echo "$as_me:7245: \"$ac_compile\"") >&5
    1689919506   (eval $ac_compile) 2>&5
    1690019507   ac_status=$?
    1690119508-  echo "$as_me:7163: \$? = $ac_status" >&5
    16902 +  echo "$as_me:7374: \$? = $ac_status" >&5
     19509+  echo "$as_me:7248: \$? = $ac_status" >&5
    1690319510   (exit $ac_status); } &&
    1690419511          { ac_try='test -s conftest.$ac_objext'
    1690519512-  { (eval echo "$as_me:7166: \"$ac_try\"") >&5
    16906 +  { (eval echo "$as_me:7377: \"$ac_try\"") >&5
     19513+  { (eval echo "$as_me:7251: \"$ac_try\"") >&5
    1690719514   (eval $ac_try) 2>&5
    1690819515   ac_status=$?
    1690919516-  echo "$as_me:7169: \$? = $ac_status" >&5
    16910 +  echo "$as_me:7380: \$? = $ac_status" >&5
     19517+  echo "$as_me:7254: \$? = $ac_status" >&5
    1691119518   (exit $ac_status); }; }; then
    1691219519-  cf_cv_xopen_source=no
     
    1691619523 cat conftest.$ac_ext >&5
    1691719524-cf_cv_xopen_source=$cf_XOPEN_SOURCE
    16918 -fi
    16919 -rm -f conftest.$ac_objext conftest.$ac_ext
     19525+cf_cv_posix_c_source="$cf_cv_posix_c_source -D_POSIX_SOURCE"
     19526 fi
     19527 rm -f conftest.$ac_objext conftest.$ac_ext
    1692019528-       CPPFLAGS="$cf_save"
    16921 -
    16922 +cf_cv_posix_c_source="$cf_cv_posix_c_source -D_POSIX_SOURCE"
    16923  fi
    16924  rm -f conftest.$ac_objext conftest.$ac_ext
    1692519529+        fi
    16926  
    16927 -fi
    16928 -echo "$as_me:7184: result: $cf_cv_xopen_source" >&5
    16929 -echo "${ECHO_T}$cf_cv_xopen_source" >&6
    16930 -       if test "$cf_cv_xopen_source" != no ; then
    16931 -
    16932 -CFLAGS=`echo "$CFLAGS" | \
    16933 -       sed     -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^       ]*\)\?[         ]/ /g' \
    16934 -               -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^       ]*\)\?$//g'`
    16935 +echo "${as_me:-configure}:7391: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5
    16936  
    16937 -CPPFLAGS=`echo "$CPPFLAGS" | \
    16938 -       sed     -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^       ]*\)\?[         ]/ /g' \
    16939 -               -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^       ]*\)\?$//g'`
     19530+
     19531+echo "${as_me:-configure}:7265: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5
     19532+
    1694019533+        CFLAGS="$cf_trim_CFLAGS"
    1694119534+        CPPFLAGS="$cf_trim_CPPFLAGS $cf_cv_posix_c_source"
    16942  
    16943 -               cf_temp_xopen_source="-D_XOPEN_SOURCE=$cf_cv_xopen_source"
    16944 +echo "${as_me:-configure}:7396: testing if the second compile does not leave our definition intact error ..." 1>&5
    16945  
    16946 -cf_fix_cppflags=no
    16947 -cf_new_cflags=
    16948 -cf_new_cppflags=
    16949 -cf_new_extra_cppflags=
     19535+
     19536+echo "${as_me:-configure}:7270: testing if the second compile does not leave our definition intact error ..." 1>&5
     19537+
    1695019538+        cat >conftest.$ac_ext <<_ACEOF
    16951 +#line 7399 "configure"
     19539+#line 7273 "configure"
    1695219540+#include "confdefs.h"
    1695319541+#include <sys/types.h>
     
    1695619544+{
    1695719545 
    16958 -for cf_add_cflags in $cf_temp_xopen_source
    16959 -do
    16960 -case $cf_fix_cppflags in
    16961 -no)
    16962 -       case $cf_add_cflags in #(vi
    16963 -       -undef|-nostdinc*|-I*|-D*|-U*|-E|-P|-C) #(vi
    16964 -               case $cf_add_cflags in
    16965 -               -D*)
    1696619546+#ifndef _POSIX_C_SOURCE
    1696719547+make an error
     
    1697219552+_ACEOF
    1697319553+rm -f conftest.$ac_objext
    16974 +if { (eval echo "$as_me:7414: \"$ac_compile\"") >&5
     19554+if { (eval echo "$as_me:7288: \"$ac_compile\"") >&5
    1697519555+  (eval $ac_compile) 2>&5
    1697619556+  ac_status=$?
    16977 +  echo "$as_me:7417: \$? = $ac_status" >&5
     19557+  echo "$as_me:7291: \$? = $ac_status" >&5
    1697819558+  (exit $ac_status); } &&
    1697919559+         { ac_try='test -s conftest.$ac_objext'
    16980 +  { (eval echo "$as_me:7420: \"$ac_try\"") >&5
     19560+  { (eval echo "$as_me:7294: \"$ac_try\"") >&5
    1698119561+  (eval $ac_try) 2>&5
    1698219562+  ac_status=$?
    16983 +  echo "$as_me:7423: \$? = $ac_status" >&5
     19563+  echo "$as_me:7297: \$? = $ac_status" >&5
    1698419564+  (exit $ac_status); }; }; then
    1698519565+  :
     
    1698819568+cat conftest.$ac_ext >&5
    1698919569+cf_cv_posix_c_source=no
    16990 +fi
    16991 +rm -f conftest.$ac_objext conftest.$ac_ext
     19570 fi
     19571 rm -f conftest.$ac_objext conftest.$ac_ext
    1699219572+        CFLAGS="$cf_save_CFLAGS"
    1699319573+        CPPFLAGS="$cf_save_CPPFLAGS"
    16994 +
     19574 
     19575 fi
     19576-echo "$as_me:7184: result: $cf_cv_xopen_source" >&5
     19577-echo "${ECHO_T}$cf_cv_xopen_source" >&6
     19578-       if test "$cf_cv_xopen_source" != no ; then
     19579-
     19580-CFLAGS=`echo "$CFLAGS" | \
     19581-       sed     -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^       ]*\)\?[         ]/ /g' \
     19582-               -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^       ]*\)\?$//g'`
     19583+rm -f conftest.$ac_objext conftest.$ac_ext
     19584 
     19585-CPPFLAGS=`echo "$CPPFLAGS" | \
     19586-       sed     -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^       ]*\)\?[         ]/ /g' \
     19587-               -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^       ]*\)\?$//g'`
    1699519588+fi
    16996 +rm -f conftest.$ac_objext conftest.$ac_ext
    16997 +
    16998 +fi
    16999 +echo "$as_me:7439: result: $cf_cv_posix_c_source" >&5
     19589+echo "$as_me:7313: result: $cf_cv_posix_c_source" >&5
    1700019590+echo "${ECHO_T}$cf_cv_posix_c_source" >&6
    17001 +
     19591 
     19592-               cf_temp_xopen_source="-D_XOPEN_SOURCE=$cf_cv_xopen_source"
    1700219593+if test "$cf_cv_posix_c_source" != no ; then
    1700319594+       CFLAGS="$cf_trim_CFLAGS"
    1700419595+       CPPFLAGS="$cf_trim_CPPFLAGS"
    17005 +
    17006 +cf_fix_cppflags=no
    17007 +cf_new_cflags=
    17008 +cf_new_cppflags=
    17009 +cf_new_extra_cppflags=
    17010 +
     19596 
     19597 cf_fix_cppflags=no
     19598 cf_new_cflags=
     19599 cf_new_cppflags=
     19600 cf_new_extra_cppflags=
     19601 
     19602-for cf_add_cflags in $cf_temp_xopen_source
    1701119603+for cf_add_cflags in $cf_cv_posix_c_source
    17012 +do
    17013 +case $cf_fix_cppflags in
    17014 +no)
    17015 +       case $cf_add_cflags in #(vi
    17016 +       -undef|-nostdinc*|-I*|-D*|-U*|-E|-P|-C) #(vi
    17017 +               case $cf_add_cflags in
    17018 +               -D*)
    17019                         cf_tst_cflags=`echo ${cf_add_cflags} |sed -e 's/^-D[^=]*='\''\"[^"]*//'`
    17020  
    17021                         test "${cf_add_cflags}" != "${cf_tst_cflags}" \
    17022 @@ -7273,7 +7521,215 @@
     19604 do
     19605 case $cf_fix_cppflags in
     19606 no)
     19607@@ -7273,9 +7395,217 @@
    1702319608        EXTRA_CPPFLAGS="$cf_new_extra_cppflags $EXTRA_CPPFLAGS"
    1702419609 fi
     
    1702619611-       fi
    1702719612+fi
    17028 +
     19613 
     19614-cf_POSIX_C_SOURCE=$cf_POSIX_C_SOURCE
    1702919615+       ;;
    1703019616+netbsd*) #(vi
     
    1705319639+*)
    1705419640+
    17055 +echo "$as_me:7552: checking if we should define _XOPEN_SOURCE" >&5
     19641+echo "$as_me:7426: checking if we should define _XOPEN_SOURCE" >&5
    1705619642+echo $ECHO_N "checking if we should define _XOPEN_SOURCE... $ECHO_C" >&6
    1705719643+if test "${cf_cv_xopen_source+set}" = set; then
     
    1706019646+
    1706119647+       cat >conftest.$ac_ext <<_ACEOF
    17062 +#line 7559 "configure"
     19648+#line 7433 "configure"
    1706319649+#include "confdefs.h"
    1706419650+
     
    1707919665+_ACEOF
    1708019666+rm -f conftest.$ac_objext
    17081 +if { (eval echo "$as_me:7578: \"$ac_compile\"") >&5
     19667+if { (eval echo "$as_me:7452: \"$ac_compile\"") >&5
    1708219668+  (eval $ac_compile) 2>&5
    1708319669+  ac_status=$?
    17084 +  echo "$as_me:7581: \$? = $ac_status" >&5
     19670+  echo "$as_me:7455: \$? = $ac_status" >&5
    1708519671+  (exit $ac_status); } &&
    1708619672+         { ac_try='test -s conftest.$ac_objext'
    17087 +  { (eval echo "$as_me:7584: \"$ac_try\"") >&5
     19673+  { (eval echo "$as_me:7458: \"$ac_try\"") >&5
    1708819674+  (eval $ac_try) 2>&5
    1708919675+  ac_status=$?
    17090 +  echo "$as_me:7587: \$? = $ac_status" >&5
     19676+  echo "$as_me:7461: \$? = $ac_status" >&5
    1709119677+  (exit $ac_status); }; }; then
    1709219678+  cf_cv_xopen_source=no
     
    1709719683+        CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=$cf_XOPEN_SOURCE"
    1709819684+        cat >conftest.$ac_ext <<_ACEOF
    17099 +#line 7596 "configure"
     19685+#line 7470 "configure"
    1710019686+#include "confdefs.h"
    1710119687+
     
    1711619702+_ACEOF
    1711719703+rm -f conftest.$ac_objext
    17118 +if { (eval echo "$as_me:7615: \"$ac_compile\"") >&5
     19704+if { (eval echo "$as_me:7489: \"$ac_compile\"") >&5
    1711919705+  (eval $ac_compile) 2>&5
    1712019706+  ac_status=$?
    17121 +  echo "$as_me:7618: \$? = $ac_status" >&5
     19707+  echo "$as_me:7492: \$? = $ac_status" >&5
    1712219708+  (exit $ac_status); } &&
    1712319709+         { ac_try='test -s conftest.$ac_objext'
    17124 +  { (eval echo "$as_me:7621: \"$ac_try\"") >&5
     19710+  { (eval echo "$as_me:7495: \"$ac_try\"") >&5
    1712519711+  (eval $ac_try) 2>&5
    1712619712+  ac_status=$?
    17127 +  echo "$as_me:7624: \$? = $ac_status" >&5
     19713+  echo "$as_me:7498: \$? = $ac_status" >&5
    1712819714+  (exit $ac_status); }; }; then
    1712919715+  cf_cv_xopen_source=no
     
    1714019726+
    1714119727+fi
    17142 +echo "$as_me:7639: result: $cf_cv_xopen_source" >&5
     19728+echo "$as_me:7513: result: $cf_cv_xopen_source" >&5
    1714319729+echo "${ECHO_T}$cf_cv_xopen_source" >&6
    1714419730+
     
    1723419820+
    1723519821+fi
    17236  
    17237  cf_POSIX_C_SOURCE=$cf_POSIX_C_SOURCE
    17238  
    17239 @@ -7288,16 +7744,16 @@
     19822+
     19823+cf_POSIX_C_SOURCE=$cf_POSIX_C_SOURCE
     19824 
     19825 cf_save_CFLAGS="$CFLAGS"
     19826 cf_save_CPPFLAGS="$CPPFLAGS"
     19827@@ -7288,16 +7618,16 @@
    1724019828        sed     -e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^     ]*\)\?[         ]/ /g' \
    1724119829                -e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^     ]*\)\?$//g'`
    1724219830 
    1724319831-echo "$as_me:7291: checking if we should define _POSIX_C_SOURCE" >&5
    17244 +echo "$as_me:7747: checking if we should define _POSIX_C_SOURCE" >&5
     19832+echo "$as_me:7621: checking if we should define _POSIX_C_SOURCE" >&5
    1724519833 echo $ECHO_N "checking if we should define _POSIX_C_SOURCE... $ECHO_C" >&6
    1724619834 if test "${cf_cv_posix_c_source+set}" = set; then
     
    1724919837 
    1725019838-echo "${as_me:-configure}:7297: testing if the symbol is already defined go no further ..." 1>&5
    17251 +echo "${as_me:-configure}:7753: testing if the symbol is already defined go no further ..." 1>&5
     19839+echo "${as_me:-configure}:7627: testing if the symbol is already defined go no further ..." 1>&5
    1725219840 
    1725319841        cat >conftest.$ac_ext <<_ACEOF
    1725419842-#line 7300 "configure"
    17255 +#line 7756 "configure"
     19843+#line 7630 "configure"
    1725619844 #include "confdefs.h"
    1725719845 #include <sys/types.h>
    1725819846 int
    17259 @@ -7312,16 +7768,16 @@
     19847@@ -7312,16 +7642,16 @@
    1726019848 }
    1726119849 _ACEOF
    1726219850 rm -f conftest.$ac_objext
    1726319851-if { (eval echo "$as_me:7315: \"$ac_compile\"") >&5
    17264 +if { (eval echo "$as_me:7771: \"$ac_compile\"") >&5
     19852+if { (eval echo "$as_me:7645: \"$ac_compile\"") >&5
    1726519853   (eval $ac_compile) 2>&5
    1726619854   ac_status=$?
    1726719855-  echo "$as_me:7318: \$? = $ac_status" >&5
    17268 +  echo "$as_me:7774: \$? = $ac_status" >&5
     19856+  echo "$as_me:7648: \$? = $ac_status" >&5
    1726919857   (exit $ac_status); } &&
    1727019858          { ac_try='test -s conftest.$ac_objext'
    1727119859-  { (eval echo "$as_me:7321: \"$ac_try\"") >&5
    17272 +  { (eval echo "$as_me:7777: \"$ac_try\"") >&5
     19860+  { (eval echo "$as_me:7651: \"$ac_try\"") >&5
    1727319861   (eval $ac_try) 2>&5
    1727419862   ac_status=$?
    1727519863-  echo "$as_me:7324: \$? = $ac_status" >&5
    17276 +  echo "$as_me:7780: \$? = $ac_status" >&5
     19864+  echo "$as_me:7654: \$? = $ac_status" >&5
    1727719865   (exit $ac_status); }; }; then
    1727819866   cf_cv_posix_c_source=no
    1727919867 else
    17280 @@ -7342,7 +7798,7 @@
     19868@@ -7342,14 +7672,362 @@
    1728119869         esac
    1728219870         if test "$cf_want_posix_source" = yes ; then
    1728319871                cat >conftest.$ac_ext <<_ACEOF
    1728419872-#line 7345 "configure"
    17285 +#line 7801 "configure"
    17286  #include "confdefs.h"
    17287  #include <sys/types.h>
    17288  int
    17289 @@ -7357,16 +7813,16 @@
    17290  }
    17291  _ACEOF
    17292  rm -f conftest.$ac_objext
    17293 -if { (eval echo "$as_me:7360: \"$ac_compile\"") >&5
    17294 +if { (eval echo "$as_me:7816: \"$ac_compile\"") >&5
    17295    (eval $ac_compile) 2>&5
    17296    ac_status=$?
    17297 -  echo "$as_me:7363: \$? = $ac_status" >&5
    17298 +  echo "$as_me:7819: \$? = $ac_status" >&5
    17299    (exit $ac_status); } &&
    17300           { ac_try='test -s conftest.$ac_objext'
    17301 -  { (eval echo "$as_me:7366: \"$ac_try\"") >&5
    17302 +  { (eval echo "$as_me:7822: \"$ac_try\"") >&5
    17303    (eval $ac_try) 2>&5
    17304    ac_status=$?
    17305 -  echo "$as_me:7369: \$? = $ac_status" >&5
    17306 +  echo "$as_me:7825: \$? = $ac_status" >&5
    17307    (exit $ac_status); }; }; then
    17308    :
    17309  else
    17310 @@ -7377,15 +7833,15 @@
    17311  rm -f conftest.$ac_objext conftest.$ac_ext
    17312          fi
    17313  
    17314 -echo "${as_me:-configure}:7380: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5
    17315 +echo "${as_me:-configure}:7836: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5
    17316  
    17317          CFLAGS="$cf_trim_CFLAGS"
    17318          CPPFLAGS="$cf_trim_CPPFLAGS $cf_cv_posix_c_source"
    17319  
    17320 -echo "${as_me:-configure}:7385: testing if the second compile does not leave our definition intact error ..." 1>&5
    17321 +echo "${as_me:-configure}:7841: testing if the second compile does not leave our definition intact error ..." 1>&5
    17322  
    17323          cat >conftest.$ac_ext <<_ACEOF
    17324 -#line 7388 "configure"
    17325 +#line 7844 "configure"
    17326  #include "confdefs.h"
    17327  #include <sys/types.h>
    17328  int
    17329 @@ -7400,16 +7856,16 @@
    17330  }
    17331  _ACEOF
    17332  rm -f conftest.$ac_objext
    17333 -if { (eval echo "$as_me:7403: \"$ac_compile\"") >&5
    17334 +if { (eval echo "$as_me:7859: \"$ac_compile\"") >&5
    17335    (eval $ac_compile) 2>&5
    17336    ac_status=$?
    17337 -  echo "$as_me:7406: \$? = $ac_status" >&5
    17338 +  echo "$as_me:7862: \$? = $ac_status" >&5
    17339    (exit $ac_status); } &&
    17340           { ac_try='test -s conftest.$ac_objext'
    17341 -  { (eval echo "$as_me:7409: \"$ac_try\"") >&5
    17342 +  { (eval echo "$as_me:7865: \"$ac_try\"") >&5
    17343    (eval $ac_try) 2>&5
    17344    ac_status=$?
    17345 -  echo "$as_me:7412: \$? = $ac_status" >&5
    17346 +  echo "$as_me:7868: \$? = $ac_status" >&5
    17347    (exit $ac_status); }; }; then
    17348    :
    17349  else
    17350 @@ -7417,27 +7873,112 @@
    17351  cat conftest.$ac_ext >&5
    17352  cf_cv_posix_c_source=no
    17353  fi
    17354 -rm -f conftest.$ac_objext conftest.$ac_ext
    17355 -        CFLAGS="$cf_save_CFLAGS"
    17356 -        CPPFLAGS="$cf_save_CPPFLAGS"
     19873+#line 7675 "configure"
     19874+#include "confdefs.h"
     19875+#include <sys/types.h>
     19876+int
     19877+main ()
     19878+{
     19879+
     19880+#ifdef _POSIX_SOURCE
     19881+make an error
     19882+#endif
     19883+  ;
     19884+  return 0;
     19885+}
     19886+_ACEOF
     19887+rm -f conftest.$ac_objext
     19888+if { (eval echo "$as_me:7690: \"$ac_compile\"") >&5
     19889+  (eval $ac_compile) 2>&5
     19890+  ac_status=$?
     19891+  echo "$as_me:7693: \$? = $ac_status" >&5
     19892+  (exit $ac_status); } &&
     19893+         { ac_try='test -s conftest.$ac_objext'
     19894+  { (eval echo "$as_me:7696: \"$ac_try\"") >&5
     19895+  (eval $ac_try) 2>&5
     19896+  ac_status=$?
     19897+  echo "$as_me:7699: \$? = $ac_status" >&5
     19898+  (exit $ac_status); }; }; then
     19899+  :
     19900+else
     19901+  echo "$as_me: failed program was:" >&5
     19902+cat conftest.$ac_ext >&5
     19903+cf_cv_posix_c_source="$cf_cv_posix_c_source -D_POSIX_SOURCE"
     19904+fi
     19905+rm -f conftest.$ac_objext conftest.$ac_ext
     19906+        fi
     19907+
     19908+echo "${as_me:-configure}:7710: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5
     19909+
     19910+        CFLAGS="$cf_trim_CFLAGS"
     19911+        CPPFLAGS="$cf_trim_CPPFLAGS $cf_cv_posix_c_source"
     19912+
     19913+echo "${as_me:-configure}:7715: testing if the second compile does not leave our definition intact error ..." 1>&5
     19914+
     19915+        cat >conftest.$ac_ext <<_ACEOF
     19916+#line 7718 "configure"
     19917+#include "confdefs.h"
     19918+#include <sys/types.h>
     19919+int
     19920+main ()
     19921+{
     19922+
     19923+#ifndef _POSIX_C_SOURCE
     19924+make an error
     19925+#endif
     19926+  ;
     19927+  return 0;
     19928+}
     19929+_ACEOF
     19930+rm -f conftest.$ac_objext
     19931+if { (eval echo "$as_me:7733: \"$ac_compile\"") >&5
     19932+  (eval $ac_compile) 2>&5
     19933+  ac_status=$?
     19934+  echo "$as_me:7736: \$? = $ac_status" >&5
     19935+  (exit $ac_status); } &&
     19936+         { ac_try='test -s conftest.$ac_objext'
     19937+  { (eval echo "$as_me:7739: \"$ac_try\"") >&5
     19938+  (eval $ac_try) 2>&5
     19939+  ac_status=$?
     19940+  echo "$as_me:7742: \$? = $ac_status" >&5
     19941+  (exit $ac_status); }; }; then
     19942+  :
     19943+else
     19944+  echo "$as_me: failed program was:" >&5
     19945+cat conftest.$ac_ext >&5
     19946+cf_cv_posix_c_source=no
     19947+fi
    1735719948+rm -f conftest.$ac_objext conftest.$ac_ext
    1735819949+        CFLAGS="$cf_save_CFLAGS"
     
    1736319954+
    1736419955+fi
    17365 +echo "$as_me:7884: result: $cf_cv_posix_c_source" >&5
     19956+echo "$as_me:7758: result: $cf_cv_posix_c_source" >&5
    1736619957+echo "${ECHO_T}$cf_cv_posix_c_source" >&6
    1736719958+
     
    1743920030+
    1744020031+if test -n "$cf_new_cppflags" ; then
    17441  
     20032+
    1744220033+       CPPFLAGS="$CPPFLAGS $cf_new_cppflags"
    17443  fi
    17444 -rm -f conftest.$ac_objext conftest.$ac_ext
    17445  
     20034+fi
     20035+
    1744620036+if test -n "$cf_new_extra_cppflags" ; then
    1744720037+
    1744820038+       EXTRA_CPPFLAGS="$cf_new_extra_cppflags $EXTRA_CPPFLAGS"
    17449  fi
    17450 -echo "$as_me:7428: result: $cf_cv_posix_c_source" >&5
    17451 -echo "${ECHO_T}$cf_cv_posix_c_source" >&6
    17452  
    17453 -if test "$cf_cv_posix_c_source" != no ; then
    17454 -       CFLAGS="$cf_trim_CFLAGS"
    17455 -       CPPFLAGS="$cf_trim_CPPFLAGS"
     20039+fi
     20040+
    1745620041+fi
    1745720042+
     
    1746020045+
    1746120046+if test -n "$cf_xopen_source" ; then
    17462  
    17463  cf_fix_cppflags=no
    17464  cf_new_cflags=
    17465  cf_new_cppflags=
    17466  cf_new_extra_cppflags=
    17467  
    17468 -for cf_add_cflags in $cf_cv_posix_c_source
     20047+
     20048+cf_fix_cppflags=no
     20049+cf_new_cflags=
     20050+cf_new_cppflags=
     20051+cf_new_extra_cppflags=
     20052+
    1746920053+for cf_add_cflags in $cf_xopen_source
    17470  do
    17471  case $cf_fix_cppflags in
    17472  no)
    17473 @@ -7512,17 +8053,196 @@
    17474  
    17475  fi
    17476  
    17477 -       ;;
    17478 -esac
     20054+do
     20055+case $cf_fix_cppflags in
     20056+no)
     20057+       case $cf_add_cflags in #(vi
     20058+       -undef|-nostdinc*|-I*|-D*|-U*|-E|-P|-C) #(vi
     20059+               case $cf_add_cflags in
     20060+               -D*)
     20061+                       cf_tst_cflags=`echo ${cf_add_cflags} |sed -e 's/^-D[^=]*='\''\"[^"]*//'`
     20062+
     20063+                       test "${cf_add_cflags}" != "${cf_tst_cflags}" \
     20064+                               && test -z "${cf_tst_cflags}" \
     20065+                               && cf_fix_cppflags=yes
     20066+
     20067+                       if test $cf_fix_cppflags = yes ; then
     20068+                               cf_new_extra_cppflags="$cf_new_extra_cppflags $cf_add_cflags"
     20069+                               continue
     20070+                       elif test "${cf_tst_cflags}" = "\"'" ; then
     20071+                               cf_new_extra_cppflags="$cf_new_extra_cppflags $cf_add_cflags"
     20072+                               continue
     20073+                       fi
     20074+                       ;;
     20075+               esac
     20076+               case "$CPPFLAGS" in
     20077+               *$cf_add_cflags) #(vi
     20078+                       ;;
     20079+               *) #(vi
     20080+                       case $cf_add_cflags in #(vi
     20081+                       -D*)
     20082+                               cf_tst_cppflags=`echo "x$cf_add_cflags" | sed -e 's/^...//' -e 's/=.*//'`
     20083+
     20084+CPPFLAGS=`echo "$CPPFLAGS" | \
     20085+       sed     -e 's/-[UD]'"$cf_tst_cppflags"'\(=[^    ]*\)\?[         ]/ /g' \
     20086+               -e 's/-[UD]'"$cf_tst_cppflags"'\(=[^    ]*\)\?$//g'`
     20087+
     20088+                               ;;
     20089+                       esac
     20090+                       cf_new_cppflags="$cf_new_cppflags $cf_add_cflags"
     20091+                       ;;
     20092+               esac
     20093+               ;;
     20094+       *)
     20095+               cf_new_cflags="$cf_new_cflags $cf_add_cflags"
     20096+               ;;
     20097+       esac
     20098+       ;;
     20099+yes)
     20100+       cf_new_extra_cppflags="$cf_new_extra_cppflags $cf_add_cflags"
     20101+
     20102+       cf_tst_cflags=`echo ${cf_add_cflags} |sed -e 's/^[^"]*"'\''//'`
     20103+
     20104+       test "${cf_add_cflags}" != "${cf_tst_cflags}" \
     20105+               && test -z "${cf_tst_cflags}" \
     20106+               && cf_fix_cppflags=no
     20107+       ;;
     20108+esac
     20109+done
     20110+
     20111+if test -n "$cf_new_cflags" ; then
     20112+
     20113+       CFLAGS="$CFLAGS $cf_new_cflags"
     20114+fi
     20115+
     20116+if test -n "$cf_new_cppflags" ; then
     20117+
     20118+       CPPFLAGS="$CPPFLAGS $cf_new_cppflags"
     20119+fi
     20120+
     20121+if test -n "$cf_new_extra_cppflags" ; then
     20122+
     20123+       EXTRA_CPPFLAGS="$cf_new_extra_cppflags $EXTRA_CPPFLAGS"
     20124+fi
     20125+
     20126+fi
     20127+
    1747920128+if test -n "$cf_XOPEN_SOURCE" && test -z "$cf_cv_xopen_source" ; then
    17480 +       echo "$as_me:8057: checking if _XOPEN_SOURCE really is set" >&5
     20129+       echo "$as_me:7931: checking if _XOPEN_SOURCE really is set" >&5
    1748120130+echo $ECHO_N "checking if _XOPEN_SOURCE really is set... $ECHO_C" >&6
    1748220131+       cat >conftest.$ac_ext <<_ACEOF
    17483 +#line 8060 "configure"
     20132+#line 7934 "configure"
    1748420133+#include "confdefs.h"
    1748520134+#include <stdlib.h>
     
    1748720136+main ()
    1748820137+{
    17489  
    17490 -if test -n "$cf_xopen_source" ; then
     20138+
    1749120139+#ifndef _XOPEN_SOURCE
    1749220140+make an error
     
    1749720145+_ACEOF
    1749820146+rm -f conftest.$ac_objext
    17499 +if { (eval echo "$as_me:8075: \"$ac_compile\"") >&5
     20147+if { (eval echo "$as_me:7949: \"$ac_compile\"") >&5
    1750020148+  (eval $ac_compile) 2>&5
    1750120149+  ac_status=$?
    17502 +  echo "$as_me:8078: \$? = $ac_status" >&5
     20150+  echo "$as_me:7952: \$? = $ac_status" >&5
    1750320151+  (exit $ac_status); } &&
    1750420152+         { ac_try='test -s conftest.$ac_objext'
    17505 +  { (eval echo "$as_me:8081: \"$ac_try\"") >&5
     20153+  { (eval echo "$as_me:7955: \"$ac_try\"") >&5
    1750620154+  (eval $ac_try) 2>&5
    1750720155+  ac_status=$?
    17508 +  echo "$as_me:8084: \$? = $ac_status" >&5
     20156+  echo "$as_me:7958: \$? = $ac_status" >&5
    1750920157+  (exit $ac_status); }; }; then
    1751020158+  cf_XOPEN_SOURCE_set=yes
     
    1751520163+fi
    1751620164+rm -f conftest.$ac_objext conftest.$ac_ext
    17517 +       echo "$as_me:8093: result: $cf_XOPEN_SOURCE_set" >&5
     20165+       echo "$as_me:7967: result: $cf_XOPEN_SOURCE_set" >&5
    1751820166+echo "${ECHO_T}$cf_XOPEN_SOURCE_set" >&6
    1751920167+       if test $cf_XOPEN_SOURCE_set = yes
    1752020168+       then
    1752120169+               cat >conftest.$ac_ext <<_ACEOF
    17522 +#line 8098 "configure"
     20170+#line 7972 "configure"
    1752320171+#include "confdefs.h"
    1752420172+#include <stdlib.h>
     
    1753520183+_ACEOF
    1753620184+rm -f conftest.$ac_objext
    17537 +if { (eval echo "$as_me:8113: \"$ac_compile\"") >&5
     20185+if { (eval echo "$as_me:7987: \"$ac_compile\"") >&5
    1753820186+  (eval $ac_compile) 2>&5
    1753920187+  ac_status=$?
    17540 +  echo "$as_me:8116: \$? = $ac_status" >&5
     20188+  echo "$as_me:7990: \$? = $ac_status" >&5
    1754120189+  (exit $ac_status); } &&
    1754220190+         { ac_try='test -s conftest.$ac_objext'
    17543 +  { (eval echo "$as_me:8119: \"$ac_try\"") >&5
     20191+  { (eval echo "$as_me:7993: \"$ac_try\"") >&5
    1754420192+  (eval $ac_try) 2>&5
    1754520193+  ac_status=$?
    17546 +  echo "$as_me:8122: \$? = $ac_status" >&5
     20194+  echo "$as_me:7996: \$? = $ac_status" >&5
    1754720195+  (exit $ac_status); }; }; then
    1754820196+  cf_XOPEN_SOURCE_set_ok=yes
     
    1755520203+               if test $cf_XOPEN_SOURCE_set_ok = no
    1755620204+               then
    17557 +                       { echo "$as_me:8133: WARNING: _XOPEN_SOURCE is lower than requested" >&5
     20205+                       { echo "$as_me:8007: WARNING: _XOPEN_SOURCE is lower than requested" >&5
    1755820206+echo "$as_me: WARNING: _XOPEN_SOURCE is lower than requested" >&2;}
    1755920207+               fi
    1756020208+       else
    1756120209+
    17562 +echo "$as_me:8138: checking if we should define _XOPEN_SOURCE" >&5
     20210+echo "$as_me:8012: checking if we should define _XOPEN_SOURCE" >&5
    1756320211+echo $ECHO_N "checking if we should define _XOPEN_SOURCE... $ECHO_C" >&6
    1756420212+if test "${cf_cv_xopen_source+set}" = set; then
     
    1756720215+
    1756820216+       cat >conftest.$ac_ext <<_ACEOF
    17569 +#line 8145 "configure"
    17570 +#include "confdefs.h"
     20217+#line 8019 "configure"
     20218 #include "confdefs.h"
    1757120219+
    1757220220+#include <stdlib.h>
    1757320221+#include <string.h>
    17574 +#include <sys/types.h>
    17575 +
    17576 +int
    17577 +main ()
    17578 +{
    17579 +
     20222 #include <sys/types.h>
     20223+
     20224 int
     20225 main ()
     20226 {
     20227 
     20228-#ifdef _POSIX_SOURCE
    1758020229+#ifndef _XOPEN_SOURCE
    17581 +make an error
    17582 +#endif
    17583 +  ;
    17584 +  return 0;
    17585 +}
    17586 +_ACEOF
    17587 +rm -f conftest.$ac_objext
    17588 +if { (eval echo "$as_me:8164: \"$ac_compile\"") >&5
    17589 +  (eval $ac_compile) 2>&5
    17590 +  ac_status=$?
    17591 +  echo "$as_me:8167: \$? = $ac_status" >&5
    17592 +  (exit $ac_status); } &&
    17593 +         { ac_try='test -s conftest.$ac_objext'
    17594 +  { (eval echo "$as_me:8170: \"$ac_try\"") >&5
    17595 +  (eval $ac_try) 2>&5
    17596 +  ac_status=$?
    17597 +  echo "$as_me:8173: \$? = $ac_status" >&5
    17598 +  (exit $ac_status); }; }; then
     20230 make an error
     20231 #endif
     20232   ;
     20233@@ -7357,42 +8035,36 @@
     20234 }
     20235 _ACEOF
     20236 rm -f conftest.$ac_objext
     20237-if { (eval echo "$as_me:7360: \"$ac_compile\"") >&5
     20238+if { (eval echo "$as_me:8038: \"$ac_compile\"") >&5
     20239   (eval $ac_compile) 2>&5
     20240   ac_status=$?
     20241-  echo "$as_me:7363: \$? = $ac_status" >&5
     20242+  echo "$as_me:8041: \$? = $ac_status" >&5
     20243   (exit $ac_status); } &&
     20244          { ac_try='test -s conftest.$ac_objext'
     20245-  { (eval echo "$as_me:7366: \"$ac_try\"") >&5
     20246+  { (eval echo "$as_me:8044: \"$ac_try\"") >&5
     20247   (eval $ac_try) 2>&5
     20248   ac_status=$?
     20249-  echo "$as_me:7369: \$? = $ac_status" >&5
     20250+  echo "$as_me:8047: \$? = $ac_status" >&5
     20251   (exit $ac_status); }; }; then
     20252-  :
    1759920253+  cf_cv_xopen_source=no
    17600 +else
    17601 +  echo "$as_me: failed program was:" >&5
    17602 +cat conftest.$ac_ext >&5
     20254 else
     20255   echo "$as_me: failed program was:" >&5
     20256 cat conftest.$ac_ext >&5
     20257-cf_cv_posix_c_source="$cf_cv_posix_c_source -D_POSIX_SOURCE"
     20258-fi
     20259-rm -f conftest.$ac_objext conftest.$ac_ext
     20260-        fi
     20261-
     20262-echo "${as_me:-configure}:7380: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5
     20263-
     20264-        CFLAGS="$cf_trim_CFLAGS"
     20265-        CPPFLAGS="$cf_trim_CPPFLAGS $cf_cv_posix_c_source"
     20266-
     20267-echo "${as_me:-configure}:7385: testing if the second compile does not leave our definition intact error ..." 1>&5
     20268-
    1760320269+cf_save="$CPPFLAGS"
    1760420270+        CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=$cf_XOPEN_SOURCE"
    17605 +        cat >conftest.$ac_ext <<_ACEOF
    17606 +#line 8182 "configure"
    17607 +#include "confdefs.h"
     20271         cat >conftest.$ac_ext <<_ACEOF
     20272-#line 7388 "configure"
     20273+#line 8056 "configure"
     20274 #include "confdefs.h"
    1760820275+
    1760920276+#include <stdlib.h>
    1761020277+#include <string.h>
    17611 +#include <sys/types.h>
    17612 +
    17613 +int
    17614 +main ()
    17615 +{
    17616 +
     20278 #include <sys/types.h>
     20279+
     20280 int
     20281 main ()
     20282 {
     20283 
     20284-#ifndef _POSIX_C_SOURCE
    1761720285+#ifdef _XOPEN_SOURCE
    17618 +make an error
    17619 +#endif
    17620 +  ;
    17621 +  return 0;
    17622 +}
    17623 +_ACEOF
    17624 +rm -f conftest.$ac_objext
    17625 +if { (eval echo "$as_me:8201: \"$ac_compile\"") >&5
    17626 +  (eval $ac_compile) 2>&5
    17627 +  ac_status=$?
    17628 +  echo "$as_me:8204: \$? = $ac_status" >&5
    17629 +  (exit $ac_status); } &&
    17630 +         { ac_try='test -s conftest.$ac_objext'
    17631 +  { (eval echo "$as_me:8207: \"$ac_try\"") >&5
    17632 +  (eval $ac_try) 2>&5
    17633 +  ac_status=$?
    17634 +  echo "$as_me:8210: \$? = $ac_status" >&5
    17635 +  (exit $ac_status); }; }; then
     20286 make an error
     20287 #endif
     20288   ;
     20289@@ -7400,129 +8072,51 @@
     20290 }
     20291 _ACEOF
     20292 rm -f conftest.$ac_objext
     20293-if { (eval echo "$as_me:7403: \"$ac_compile\"") >&5
     20294+if { (eval echo "$as_me:8075: \"$ac_compile\"") >&5
     20295   (eval $ac_compile) 2>&5
     20296   ac_status=$?
     20297-  echo "$as_me:7406: \$? = $ac_status" >&5
     20298+  echo "$as_me:8078: \$? = $ac_status" >&5
     20299   (exit $ac_status); } &&
     20300          { ac_try='test -s conftest.$ac_objext'
     20301-  { (eval echo "$as_me:7409: \"$ac_try\"") >&5
     20302+  { (eval echo "$as_me:8081: \"$ac_try\"") >&5
     20303   (eval $ac_try) 2>&5
     20304   ac_status=$?
     20305-  echo "$as_me:7412: \$? = $ac_status" >&5
     20306+  echo "$as_me:8084: \$? = $ac_status" >&5
     20307   (exit $ac_status); }; }; then
     20308-  :
    1763620309+  cf_cv_xopen_source=no
    17637 +else
    17638 +  echo "$as_me: failed program was:" >&5
    17639 +cat conftest.$ac_ext >&5
     20310 else
     20311   echo "$as_me: failed program was:" >&5
     20312 cat conftest.$ac_ext >&5
     20313-cf_cv_posix_c_source=no
    1764020314+cf_cv_xopen_source=$cf_XOPEN_SOURCE
    17641 +fi
    17642 +rm -f conftest.$ac_objext conftest.$ac_ext
     20315 fi
     20316 rm -f conftest.$ac_objext conftest.$ac_ext
     20317-        CFLAGS="$cf_save_CFLAGS"
     20318-        CPPFLAGS="$cf_save_CPPFLAGS"
    1764320319+       CPPFLAGS="$cf_save"
    17644 +
    17645 +fi
    17646 +rm -f conftest.$ac_objext conftest.$ac_ext
    17647 +
    17648 +fi
    17649 +echo "$as_me:8225: result: $cf_cv_xopen_source" >&5
     20320 
     20321 fi
     20322 rm -f conftest.$ac_objext conftest.$ac_ext
     20323 
     20324 fi
     20325-echo "$as_me:7428: result: $cf_cv_posix_c_source" >&5
     20326-echo "${ECHO_T}$cf_cv_posix_c_source" >&6
     20327-
     20328-if test "$cf_cv_posix_c_source" != no ; then
     20329-       CFLAGS="$cf_trim_CFLAGS"
     20330-       CPPFLAGS="$cf_trim_CPPFLAGS"
     20331-
     20332-cf_fix_cppflags=no
     20333-cf_new_cflags=
     20334-cf_new_cppflags=
     20335-cf_new_extra_cppflags=
     20336-
     20337-for cf_add_cflags in $cf_cv_posix_c_source
     20338-do
     20339-case $cf_fix_cppflags in
     20340-no)
     20341-       case $cf_add_cflags in #(vi
     20342-       -undef|-nostdinc*|-I*|-D*|-U*|-E|-P|-C) #(vi
     20343-               case $cf_add_cflags in
     20344-               -D*)
     20345-                       cf_tst_cflags=`echo ${cf_add_cflags} |sed -e 's/^-D[^=]*='\''\"[^"]*//'`
     20346+echo "$as_me:8099: result: $cf_cv_xopen_source" >&5
    1765020347+echo "${ECHO_T}$cf_cv_xopen_source" >&6
    17651 +
     20348 
     20349-                       test "${cf_add_cflags}" != "${cf_tst_cflags}" \
     20350-                               && test -z "${cf_tst_cflags}" \
     20351-                               && cf_fix_cppflags=yes
    1765220352+if test "$cf_cv_xopen_source" != no ; then
    17653 +
     20353 
     20354-                       if test $cf_fix_cppflags = yes ; then
     20355-                               cf_new_extra_cppflags="$cf_new_extra_cppflags $cf_add_cflags"
     20356-                               continue
     20357-                       elif test "${cf_tst_cflags}" = "\"'" ; then
     20358-                               cf_new_extra_cppflags="$cf_new_extra_cppflags $cf_add_cflags"
     20359-                               continue
     20360-                       fi
     20361-                       ;;
     20362-               esac
     20363-               case "$CPPFLAGS" in
     20364-               *$cf_add_cflags) #(vi
     20365-                       ;;
     20366-               *) #(vi
     20367-                       case $cf_add_cflags in #(vi
     20368-                       -D*)
     20369-                               cf_tst_cppflags=`echo "x$cf_add_cflags" | sed -e 's/^...//' -e 's/=.*//'`
    1765420370+CFLAGS=`echo "$CFLAGS" | \
    1765520371+       sed     -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^       ]*\)\?[         ]/ /g' \
    1765620372+               -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^       ]*\)\?$//g'`
    17657 +
    17658 +CPPFLAGS=`echo "$CPPFLAGS" | \
     20373 
     20374 CPPFLAGS=`echo "$CPPFLAGS" | \
     20375-       sed     -e 's/-[UD]'"$cf_tst_cppflags"'\(=[^    ]*\)\?[         ]/ /g' \
     20376-               -e 's/-[UD]'"$cf_tst_cppflags"'\(=[^    ]*\)\?$//g'`
     20377-
     20378-                               ;;
     20379-                       esac
     20380-                       cf_new_cppflags="$cf_new_cppflags $cf_add_cflags"
     20381-                       ;;
     20382-               esac
     20383-               ;;
     20384-       *)
     20385-               cf_new_cflags="$cf_new_cflags $cf_add_cflags"
     20386-               ;;
     20387-       esac
     20388-       ;;
     20389-yes)
     20390-       cf_new_extra_cppflags="$cf_new_extra_cppflags $cf_add_cflags"
     20391-
     20392-       cf_tst_cflags=`echo ${cf_add_cflags} |sed -e 's/^[^"]*"'\''//'`
     20393-
     20394-       test "${cf_add_cflags}" != "${cf_tst_cflags}" \
     20395-               && test -z "${cf_tst_cflags}" \
     20396-               && cf_fix_cppflags=no
     20397-       ;;
     20398-esac
     20399-done
     20400-
     20401-if test -n "$cf_new_cflags" ; then
     20402-
     20403-       CFLAGS="$CFLAGS $cf_new_cflags"
     20404-fi
     20405-
     20406-if test -n "$cf_new_cppflags" ; then
     20407-
     20408-       CPPFLAGS="$CPPFLAGS $cf_new_cppflags"
     20409-fi
     20410-
     20411-if test -n "$cf_new_extra_cppflags" ; then
     20412-
     20413-       EXTRA_CPPFLAGS="$cf_new_extra_cppflags $EXTRA_CPPFLAGS"
     20414-fi
     20415-
     20416-fi
     20417-
     20418-       ;;
     20419-esac
    1765920420+       sed     -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^       ]*\)\?[         ]/ /g' \
    1766020421+               -e 's/-[UD]'"_XOPEN_SOURCE"'\(=[^       ]*\)\?$//g'`
    17661 +
     20422 
     20423-if test -n "$cf_xopen_source" ; then
    1766220424+       cf_temp_xopen_source="-D_XOPEN_SOURCE=$cf_cv_xopen_source"
    1766320425 
     
    1767220434 case $cf_fix_cppflags in
    1767320435 no)
    17674 @@ -7597,16 +8317,19 @@
     20436@@ -7597,16 +8191,19 @@
    1767520437 
    1767620438 fi
     
    1768220444 
    1768320445-echo "$as_me:7602: checking if SIGWINCH is defined" >&5
    17684 +echo "$as_me:8325: checking if SIGWINCH is defined" >&5
     20446+echo "$as_me:8199: checking if SIGWINCH is defined" >&5
    1768520447 echo $ECHO_N "checking if SIGWINCH is defined... $ECHO_C" >&6
    1768620448 if test "${cf_cv_define_sigwinch+set}" = set; then
     
    1769020452        cat >conftest.$ac_ext <<_ACEOF
    1769120453-#line 7609 "configure"
    17692 +#line 8332 "configure"
     20454+#line 8206 "configure"
    1769320455 #include "confdefs.h"
    1769420456 
    1769520457 #include <sys/types.h>
    17696 @@ -7621,23 +8344,23 @@
     20458@@ -7621,23 +8218,23 @@
    1769720459 }
    1769820460 _ACEOF
    1769920461 rm -f conftest.$ac_objext
    1770020462-if { (eval echo "$as_me:7624: \"$ac_compile\"") >&5
    17701 +if { (eval echo "$as_me:8347: \"$ac_compile\"") >&5
     20463+if { (eval echo "$as_me:8221: \"$ac_compile\"") >&5
    1770220464   (eval $ac_compile) 2>&5
    1770320465   ac_status=$?
    1770420466-  echo "$as_me:7627: \$? = $ac_status" >&5
    17705 +  echo "$as_me:8350: \$? = $ac_status" >&5
     20467+  echo "$as_me:8224: \$? = $ac_status" >&5
    1770620468   (exit $ac_status); } &&
    1770720469          { ac_try='test -s conftest.$ac_objext'
    1770820470-  { (eval echo "$as_me:7630: \"$ac_try\"") >&5
    17709 +  { (eval echo "$as_me:8353: \"$ac_try\"") >&5
     20471+  { (eval echo "$as_me:8227: \"$ac_try\"") >&5
    1771020472   (eval $ac_try) 2>&5
    1771120473   ac_status=$?
    1771220474-  echo "$as_me:7633: \$? = $ac_status" >&5
    17713 +  echo "$as_me:8356: \$? = $ac_status" >&5
     20475+  echo "$as_me:8230: \$? = $ac_status" >&5
    1771420476   (exit $ac_status); }; }; then
    1771520477   cf_cv_define_sigwinch=yes
     
    1771920481 cat >conftest.$ac_ext <<_ACEOF
    1772020482-#line 7640 "configure"
    17721 +#line 8363 "configure"
     20483+#line 8237 "configure"
    1772220484 #include "confdefs.h"
    1772320485 
    1772420486 #undef _XOPEN_SOURCE
    17725 @@ -7655,16 +8378,16 @@
     20487@@ -7655,16 +8252,16 @@
    1772620488 }
    1772720489 _ACEOF
    1772820490 rm -f conftest.$ac_objext
    1772920491-if { (eval echo "$as_me:7658: \"$ac_compile\"") >&5
    17730 +if { (eval echo "$as_me:8381: \"$ac_compile\"") >&5
     20492+if { (eval echo "$as_me:8255: \"$ac_compile\"") >&5
    1773120493   (eval $ac_compile) 2>&5
    1773220494   ac_status=$?
    1773320495-  echo "$as_me:7661: \$? = $ac_status" >&5
    17734 +  echo "$as_me:8384: \$? = $ac_status" >&5
     20496+  echo "$as_me:8258: \$? = $ac_status" >&5
    1773520497   (exit $ac_status); } &&
    1773620498          { ac_try='test -s conftest.$ac_objext'
    1773720499-  { (eval echo "$as_me:7664: \"$ac_try\"") >&5
    17738 +  { (eval echo "$as_me:8387: \"$ac_try\"") >&5
     20500+  { (eval echo "$as_me:8261: \"$ac_try\"") >&5
    1773920501   (eval $ac_try) 2>&5
    1774020502   ac_status=$?
    1774120503-  echo "$as_me:7667: \$? = $ac_status" >&5
    17742 +  echo "$as_me:8390: \$? = $ac_status" >&5
     20504+  echo "$as_me:8264: \$? = $ac_status" >&5
    1774320505   (exit $ac_status); }; }; then
    1774420506   cf_cv_define_sigwinch=maybe
    1774520507 else
    17746 @@ -7678,11 +8401,11 @@
     20508@@ -7678,11 +8275,11 @@
    1774720509 rm -f conftest.$ac_objext conftest.$ac_ext
    1774820510 
    1774920511 fi
    1775020512-echo "$as_me:7681: result: $cf_cv_define_sigwinch" >&5
    17751 +echo "$as_me:8404: result: $cf_cv_define_sigwinch" >&5
     20513+echo "$as_me:8278: result: $cf_cv_define_sigwinch" >&5
    1775220514 echo "${ECHO_T}$cf_cv_define_sigwinch" >&6
    1775320515 
    1775420516 if test "$cf_cv_define_sigwinch" = maybe ; then
    1775520517-echo "$as_me:7685: checking for actual SIGWINCH definition" >&5
    17756 +echo "$as_me:8408: checking for actual SIGWINCH definition" >&5
     20518+echo "$as_me:8282: checking for actual SIGWINCH definition" >&5
    1775720519 echo $ECHO_N "checking for actual SIGWINCH definition... $ECHO_C" >&6
    1775820520 if test "${cf_cv_fixup_sigwinch+set}" = set; then
    1775920521   echo $ECHO_N "(cached) $ECHO_C" >&6
    17760 @@ -7693,7 +8416,7 @@
     20522@@ -7693,7 +8290,7 @@
    1776120523 while test $cf_sigwinch != 1
    1776220524 do
    1776320525        cat >conftest.$ac_ext <<_ACEOF
    1776420526-#line 7696 "configure"
    17765 +#line 8419 "configure"
     20527+#line 8293 "configure"
    1776620528 #include "confdefs.h"
    1776720529 
    1776820530 #undef _XOPEN_SOURCE
    17769 @@ -7715,16 +8438,16 @@
     20531@@ -7715,16 +8312,16 @@
    1777020532 }
    1777120533 _ACEOF
    1777220534 rm -f conftest.$ac_objext
    1777320535-if { (eval echo "$as_me:7718: \"$ac_compile\"") >&5
    17774 +if { (eval echo "$as_me:8441: \"$ac_compile\"") >&5
     20536+if { (eval echo "$as_me:8315: \"$ac_compile\"") >&5
    1777520537   (eval $ac_compile) 2>&5
    1777620538   ac_status=$?
    1777720539-  echo "$as_me:7721: \$? = $ac_status" >&5
    17778 +  echo "$as_me:8444: \$? = $ac_status" >&5
     20540+  echo "$as_me:8318: \$? = $ac_status" >&5
    1777920541   (exit $ac_status); } &&
    1778020542          { ac_try='test -s conftest.$ac_objext'
    1778120543-  { (eval echo "$as_me:7724: \"$ac_try\"") >&5
    17782 +  { (eval echo "$as_me:8447: \"$ac_try\"") >&5
     20544+  { (eval echo "$as_me:8321: \"$ac_try\"") >&5
    1778320545   (eval $ac_try) 2>&5
    1778420546   ac_status=$?
    1778520547-  echo "$as_me:7727: \$? = $ac_status" >&5
    17786 +  echo "$as_me:8450: \$? = $ac_status" >&5
     20548+  echo "$as_me:8324: \$? = $ac_status" >&5
    1778720549   (exit $ac_status); }; }; then
    1778820550   cf_cv_fixup_sigwinch=$cf_sigwinch
    1778920551         break
    17790 @@ -7738,7 +8461,7 @@
     20552@@ -7738,7 +8335,7 @@
    1779120553 done
    1779220554 
    1779320555 fi
    1779420556-echo "$as_me:7741: result: $cf_cv_fixup_sigwinch" >&5
    17795 +echo "$as_me:8464: result: $cf_cv_fixup_sigwinch" >&5
     20557+echo "$as_me:8338: result: $cf_cv_fixup_sigwinch" >&5
    1779620558 echo "${ECHO_T}$cf_cv_fixup_sigwinch" >&6
    1779720559 
    1779820560        if test "$cf_cv_fixup_sigwinch" != unknown ; then
    17799 @@ -7748,13 +8471,13 @@
     20561@@ -7748,13 +8345,13 @@
    1780020562 
    1780120563 # Checks for CODESET support.
    1780220564 
    1780320565-  echo "$as_me:7751: checking for nl_langinfo and CODESET" >&5
    17804 +  echo "$as_me:8474: checking for nl_langinfo and CODESET" >&5
     20566+  echo "$as_me:8348: checking for nl_langinfo and CODESET" >&5
    1780520567 echo $ECHO_N "checking for nl_langinfo and CODESET... $ECHO_C" >&6
    1780620568 if test "${am_cv_langinfo_codeset+set}" = set; then
     
    1780920571   cat >conftest.$ac_ext <<_ACEOF
    1781020572-#line 7757 "configure"
    17811 +#line 8480 "configure"
     20573+#line 8354 "configure"
    1781220574 #include "confdefs.h"
    1781320575 #include <langinfo.h>
    1781420576 int
    17815 @@ -7766,16 +8489,16 @@
     20577@@ -7766,16 +8363,16 @@
    1781620578 }
    1781720579 _ACEOF
    1781820580 rm -f conftest.$ac_objext conftest$ac_exeext
    1781920581-if { (eval echo "$as_me:7769: \"$ac_link\"") >&5
    17820 +if { (eval echo "$as_me:8492: \"$ac_link\"") >&5
     20582+if { (eval echo "$as_me:8366: \"$ac_link\"") >&5
    1782120583   (eval $ac_link) 2>&5
    1782220584   ac_status=$?
    1782320585-  echo "$as_me:7772: \$? = $ac_status" >&5
    17824 +  echo "$as_me:8495: \$? = $ac_status" >&5
     20586+  echo "$as_me:8369: \$? = $ac_status" >&5
    1782520587   (exit $ac_status); } &&
    1782620588          { ac_try='test -s conftest$ac_exeext'
    1782720589-  { (eval echo "$as_me:7775: \"$ac_try\"") >&5
    17828 +  { (eval echo "$as_me:8498: \"$ac_try\"") >&5
     20590+  { (eval echo "$as_me:8372: \"$ac_try\"") >&5
    1782920591   (eval $ac_try) 2>&5
    1783020592   ac_status=$?
    1783120593-  echo "$as_me:7778: \$? = $ac_status" >&5
    17832 +  echo "$as_me:8501: \$? = $ac_status" >&5
     20594+  echo "$as_me:8375: \$? = $ac_status" >&5
    1783320595   (exit $ac_status); }; }; then
    1783420596   am_cv_langinfo_codeset=yes
    1783520597 else
    17836 @@ -7786,7 +8509,7 @@
     20598@@ -7786,7 +8383,7 @@
    1783720599 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    1783820600 
    1783920601 fi
    1784020602-echo "$as_me:7789: result: $am_cv_langinfo_codeset" >&5
    17841 +echo "$as_me:8512: result: $am_cv_langinfo_codeset" >&5
     20603+echo "$as_me:8386: result: $am_cv_langinfo_codeset" >&5
    1784220604 echo "${ECHO_T}$am_cv_langinfo_codeset" >&6
    1784320605   if test $am_cv_langinfo_codeset = yes; then
    1784420606 
    17845 @@ -7800,7 +8523,7 @@
     20607@@ -7800,7 +8397,7 @@
    1784620608 NCURSES_OK_WCHAR_T=
    1784720609 NCURSES_OK_WINT_T=
    1784820610 
    1784920611-echo "$as_me:7803: checking if you want wide-character code" >&5
    17850 +echo "$as_me:8526: checking if you want wide-character code" >&5
     20612+echo "$as_me:8400: checking if you want wide-character code" >&5
    1785120613 echo $ECHO_N "checking if you want wide-character code... $ECHO_C" >&6
    1785220614 
    1785320615 # Check whether --enable-widec or --disable-widec was given.
    17854 @@ -7810,7 +8533,7 @@
     20616@@ -7810,7 +8407,7 @@
    1785520617 else
    1785620618   with_widec=no
    1785720619 fi;
    1785820620-echo "$as_me:7813: result: $with_widec" >&5
    17859 +echo "$as_me:8536: result: $with_widec" >&5
     20621+echo "$as_me:8410: result: $with_widec" >&5
    1786020622 echo "${ECHO_T}$with_widec" >&6
    1786120623 if test "$with_widec" = yes ; then
    1786220624        LIB_SUFFIX="w${LIB_SUFFIX}"
    17863 @@ -7818,15 +8541,63 @@
     20625@@ -7818,15 +8415,63 @@
    1786420626 #define USE_WIDEC_SUPPORT 1
    1786520627 EOF
     
    1787320635+EOF
    1787420636+
    17875 +echo "$as_me:8548: checking if wchar.h can be used as is" >&5
     20637+echo "$as_me:8422: checking if wchar.h can be used as is" >&5
    1787620638+echo $ECHO_N "checking if wchar.h can be used as is... $ECHO_C" >&6
    1787720639+if test "${cf_cv_wchar_h_okay+set}" = set; then
     
    1788020642+
    1788120643+cat >conftest.$ac_ext <<_ACEOF
    17882 +#line 8555 "configure"
     20644+#line 8429 "configure"
    1788320645+#include "confdefs.h"
    1788420646+
     
    1789720659+_ACEOF
    1789820660+rm -f conftest.$ac_objext
    17899 +if { (eval echo "$as_me:8572: \"$ac_compile\"") >&5
     20661+if { (eval echo "$as_me:8446: \"$ac_compile\"") >&5
    1790020662+  (eval $ac_compile) 2>&5
    1790120663+  ac_status=$?
    17902 +  echo "$as_me:8575: \$? = $ac_status" >&5
     20664+  echo "$as_me:8449: \$? = $ac_status" >&5
    1790320665+  (exit $ac_status); } &&
    1790420666+         { ac_try='test -s conftest.$ac_objext'
    17905 +  { (eval echo "$as_me:8578: \"$ac_try\"") >&5
     20667+  { (eval echo "$as_me:8452: \"$ac_try\"") >&5
    1790620668+  (eval $ac_try) 2>&5
    1790720669+  ac_status=$?
    17908 +  echo "$as_me:8581: \$? = $ac_status" >&5
     20670+  echo "$as_me:8455: \$? = $ac_status" >&5
    1790920671+  (exit $ac_status); }; }; then
    1791020672+  cf_cv_wchar_h_okay=yes
     
    1791620678+rm -f conftest.$ac_objext conftest.$ac_ext
    1791720679+fi
    17918 +echo "$as_me:8591: result: $cf_cv_wchar_h_okay" >&5
     20680+echo "$as_me:8465: result: $cf_cv_wchar_h_okay" >&5
    1791920681+echo "${ECHO_T}$cf_cv_wchar_h_okay" >&6
    1792020682+
     
    1792320685 
    1792420686-echo "$as_me:7826: checking if we must define _XOPEN_SOURCE_EXTENDED" >&5
    17925 +echo "$as_me:8597: checking if we must define _XOPEN_SOURCE_EXTENDED" >&5
     20687+echo "$as_me:8471: checking if we must define _XOPEN_SOURCE_EXTENDED" >&5
    1792620688 echo $ECHO_N "checking if we must define _XOPEN_SOURCE_EXTENDED... $ECHO_C" >&6
    1792720689 cat >conftest.$ac_ext <<_ACEOF
    1792820690-#line 7829 "configure"
    17929 +#line 8600 "configure"
     20691+#line 8474 "configure"
    1793020692 #include "confdefs.h"
    1793120693 #include <sys/types.h>
    1793220694 
    17933 @@ -7842,16 +8613,16 @@
     20695@@ -7842,16 +8487,16 @@
    1793420696 }
    1793520697 _ACEOF
    1793620698 rm -f conftest.$ac_objext
    1793720699-if { (eval echo "$as_me:7845: \"$ac_compile\"") >&5
    17938 +if { (eval echo "$as_me:8616: \"$ac_compile\"") >&5
     20700+if { (eval echo "$as_me:8490: \"$ac_compile\"") >&5
    1793920701   (eval $ac_compile) 2>&5
    1794020702   ac_status=$?
    1794120703-  echo "$as_me:7848: \$? = $ac_status" >&5
    17942 +  echo "$as_me:8619: \$? = $ac_status" >&5
     20704+  echo "$as_me:8493: \$? = $ac_status" >&5
    1794320705   (exit $ac_status); } &&
    1794420706          { ac_try='test -s conftest.$ac_objext'
    1794520707-  { (eval echo "$as_me:7851: \"$ac_try\"") >&5
    17946 +  { (eval echo "$as_me:8622: \"$ac_try\"") >&5
     20708+  { (eval echo "$as_me:8496: \"$ac_try\"") >&5
    1794720709   (eval $ac_try) 2>&5
    1794820710   ac_status=$?
    1794920711-  echo "$as_me:7854: \$? = $ac_status" >&5
    17950 +  echo "$as_me:8625: \$? = $ac_status" >&5
     20712+  echo "$as_me:8499: \$? = $ac_status" >&5
    1795120713   (exit $ac_status); }; }; then
    1795220714   cf_result=no
    1795320715 else
    17954 @@ -7860,16 +8631,16 @@
     20716@@ -7860,16 +8505,16 @@
    1795520717 cf_result=yes
    1795620718 fi
    1795720719 rm -f conftest.$ac_objext conftest.$ac_ext
    1795820720-echo "$as_me:7863: result: $cf_result" >&5
    17959 +echo "$as_me:8634: result: $cf_result" >&5
     20721+echo "$as_me:8508: result: $cf_result" >&5
    1796020722 echo "${ECHO_T}$cf_result" >&6
    1796120723 
     
    1796420726 elif test "x" != "x" ; then
    1796520727-       echo "$as_me:7869: checking checking for compatible value versus " >&5
    17966 +       echo "$as_me:8640: checking checking for compatible value versus " >&5
     20728+       echo "$as_me:8514: checking checking for compatible value versus " >&5
    1796720729 echo $ECHO_N "checking checking for compatible value versus ... $ECHO_C" >&6
    1796820730        cat >conftest.$ac_ext <<_ACEOF
    1796920731-#line 7872 "configure"
    17970 +#line 8643 "configure"
     20732+#line 8517 "configure"
    1797120733 #include "confdefs.h"
    1797220734 #include <sys/types.h>
    1797320735 
    17974 @@ -7885,16 +8656,16 @@
     20736@@ -7885,16 +8530,16 @@
    1797520737 }
    1797620738 _ACEOF
    1797720739 rm -f conftest.$ac_objext
    1797820740-if { (eval echo "$as_me:7888: \"$ac_compile\"") >&5
    17979 +if { (eval echo "$as_me:8659: \"$ac_compile\"") >&5
     20741+if { (eval echo "$as_me:8533: \"$ac_compile\"") >&5
    1798020742   (eval $ac_compile) 2>&5
    1798120743   ac_status=$?
    1798220744-  echo "$as_me:7891: \$? = $ac_status" >&5
    17983 +  echo "$as_me:8662: \$? = $ac_status" >&5
     20745+  echo "$as_me:8536: \$? = $ac_status" >&5
    1798420746   (exit $ac_status); } &&
    1798520747          { ac_try='test -s conftest.$ac_objext'
    1798620748-  { (eval echo "$as_me:7894: \"$ac_try\"") >&5
    17987 +  { (eval echo "$as_me:8665: \"$ac_try\"") >&5
     20749+  { (eval echo "$as_me:8539: \"$ac_try\"") >&5
    1798820750   (eval $ac_try) 2>&5
    1798920751   ac_status=$?
    1799020752-  echo "$as_me:7897: \$? = $ac_status" >&5
    17991 +  echo "$as_me:8668: \$? = $ac_status" >&5
     20753+  echo "$as_me:8542: \$? = $ac_status" >&5
    1799220754   (exit $ac_status); }; }; then
    1799320755   cf_result=yes
    1799420756 else
    17995 @@ -7903,7 +8674,7 @@
     20757@@ -7903,7 +8548,7 @@
    1799620758 cf_result=no
    1799720759 fi
    1799820760 rm -f conftest.$ac_objext conftest.$ac_ext
    1799920761-       echo "$as_me:7906: result: $cf_result" >&5
    18000 +       echo "$as_me:8677: result: $cf_result" >&5
     20762+       echo "$as_me:8551: result: $cf_result" >&5
    1800120763 echo "${ECHO_T}$cf_result" >&6
    1800220764        if test "$cf_result" = no ; then
    1800320765                # perhaps we can override it - try...
    18004 @@ -7911,8 +8682,7 @@
     20766@@ -7911,8 +8556,7 @@
    1800520767        fi
    1800620768 fi
     
    1801220774        # with_overwrite=no
    1801320775        NCURSES_CH_T=cchar_t
    18014 @@ -7920,13 +8690,13 @@
     20776@@ -7920,13 +8564,13 @@
    1801520777 for ac_func in putwc btowc wctob mbtowc wctomb mblen mbrlen mbrtowc wcsrtombs mbsrtowcs wcstombs mbstowcs
    1801620778 do
    1801720779 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
    1801820780-echo "$as_me:7923: checking for $ac_func" >&5
    18019 +echo "$as_me:8693: checking for $ac_func" >&5
     20781+echo "$as_me:8567: checking for $ac_func" >&5
    1802020782 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
    1802120783 if eval "test \"\${$as_ac_var+set}\" = set"; then
     
    1802420786   cat >conftest.$ac_ext <<_ACEOF
    1802520787-#line 7929 "configure"
    18026 +#line 8699 "configure"
     20788+#line 8573 "configure"
    1802720789 #include "confdefs.h"
    1802820790 /* System header to define __stub macros and hopefully few prototypes,
    1802920791     which can conflict with char $ac_func (); below.  */
    18030 @@ -7957,16 +8727,16 @@
     20792@@ -7949,7 +8593,7 @@
     20793 #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
     20794 choke me
     20795 #else
     20796-f = $ac_func;
     20797+f = $ac_func; /* workaround for ICC 12.0.3 */ if (f == 0) return 1;
     20798 #endif
     20799 
     20800   ;
     20801@@ -7957,16 +8601,16 @@
    1803120802 }
    1803220803 _ACEOF
    1803320804 rm -f conftest.$ac_objext conftest$ac_exeext
    1803420805-if { (eval echo "$as_me:7960: \"$ac_link\"") >&5
    18035 +if { (eval echo "$as_me:8730: \"$ac_link\"") >&5
     20806+if { (eval echo "$as_me:8604: \"$ac_link\"") >&5
    1803620807   (eval $ac_link) 2>&5
    1803720808   ac_status=$?
    1803820809-  echo "$as_me:7963: \$? = $ac_status" >&5
    18039 +  echo "$as_me:8733: \$? = $ac_status" >&5
     20810+  echo "$as_me:8607: \$? = $ac_status" >&5
    1804020811   (exit $ac_status); } &&
    1804120812          { ac_try='test -s conftest$ac_exeext'
    1804220813-  { (eval echo "$as_me:7966: \"$ac_try\"") >&5
    18043 +  { (eval echo "$as_me:8736: \"$ac_try\"") >&5
     20814+  { (eval echo "$as_me:8610: \"$ac_try\"") >&5
    1804420815   (eval $ac_try) 2>&5
    1804520816   ac_status=$?
    1804620817-  echo "$as_me:7969: \$? = $ac_status" >&5
    18047 +  echo "$as_me:8739: \$? = $ac_status" >&5
     20818+  echo "$as_me:8613: \$? = $ac_status" >&5
    1804820819   (exit $ac_status); }; }; then
    1804920820   eval "$as_ac_var=yes"
    1805020821 else
    18051 @@ -7976,7 +8746,7 @@
     20822@@ -7976,7 +8620,7 @@
    1805220823 fi
    1805320824 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    1805420825 fi
    1805520826-echo "$as_me:7979: result: `eval echo '${'$as_ac_var'}'`" >&5
    18056 +echo "$as_me:8749: result: `eval echo '${'$as_ac_var'}'`" >&5
     20827+echo "$as_me:8623: result: `eval echo '${'$as_ac_var'}'`" >&5
    1805720828 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
    1805820829 if test `eval echo '${'$as_ac_var'}'` = yes; then
    1805920830   cat >>confdefs.h <<EOF
    18060 @@ -7988,7 +8758,7 @@
     20831@@ -7988,7 +8632,7 @@
    1806120832 
    1806220833        if test "$ac_cv_func_putwc" != yes ; then
    1806320834 
    1806420835-echo "$as_me:7991: checking for multibyte character support" >&5
    18065 +echo "$as_me:8761: checking for multibyte character support" >&5
     20836+echo "$as_me:8635: checking for multibyte character support" >&5
    1806620837 echo $ECHO_N "checking for multibyte character support... $ECHO_C" >&6
    1806720838 if test "${cf_cv_utf8_lib+set}" = set; then
    1806820839   echo $ECHO_N "(cached) $ECHO_C" >&6
    18069 @@ -7996,7 +8766,7 @@
     20840@@ -7996,7 +8640,7 @@
    1807020841 
    1807120842        cf_save_LIBS="$LIBS"
    1807220843        cat >conftest.$ac_ext <<_ACEOF
    1807320844-#line 7999 "configure"
    18074 +#line 8769 "configure"
     20845+#line 8643 "configure"
    1807520846 #include "confdefs.h"
    1807620847 
    1807720848 #include <stdlib.h>
    18078 @@ -8009,16 +8779,16 @@
     20849@@ -8009,16 +8653,16 @@
    1807920850 }
    1808020851 _ACEOF
    1808120852 rm -f conftest.$ac_objext conftest$ac_exeext
    1808220853-if { (eval echo "$as_me:8012: \"$ac_link\"") >&5
    18083 +if { (eval echo "$as_me:8782: \"$ac_link\"") >&5
     20854+if { (eval echo "$as_me:8656: \"$ac_link\"") >&5
    1808420855   (eval $ac_link) 2>&5
    1808520856   ac_status=$?
    1808620857-  echo "$as_me:8015: \$? = $ac_status" >&5
    18087 +  echo "$as_me:8785: \$? = $ac_status" >&5
     20858+  echo "$as_me:8659: \$? = $ac_status" >&5
    1808820859   (exit $ac_status); } &&
    1808920860          { ac_try='test -s conftest$ac_exeext'
    1809020861-  { (eval echo "$as_me:8018: \"$ac_try\"") >&5
    18091 +  { (eval echo "$as_me:8788: \"$ac_try\"") >&5
     20862+  { (eval echo "$as_me:8662: \"$ac_try\"") >&5
    1809220863   (eval $ac_try) 2>&5
    1809320864   ac_status=$?
    1809420865-  echo "$as_me:8021: \$? = $ac_status" >&5
    18095 +  echo "$as_me:8791: \$? = $ac_status" >&5
     20866+  echo "$as_me:8665: \$? = $ac_status" >&5
    1809620867   (exit $ac_status); }; }; then
    1809720868   cf_cv_utf8_lib=yes
    1809820869 else
    18099 @@ -8030,12 +8800,12 @@
     20870@@ -8030,12 +8674,12 @@
    1810020871 cf_cv_header_path_utf8=
    1810120872 cf_cv_library_path_utf8=
    1810220873 
    1810320874-echo "${as_me:-configure}:8033: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5
    18104 +echo "${as_me:-configure}:8803: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5
     20875+echo "${as_me:-configure}:8677: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5
    1810520876 
    1810620877 cf_save_LIBS="$LIBS"
     
    1810820879 cat >conftest.$ac_ext <<_ACEOF
    1810920880-#line 8038 "configure"
    18110 +#line 8808 "configure"
     20881+#line 8682 "configure"
    1811120882 #include "confdefs.h"
    1811220883 
    1811320884 #include <libutf8.h>
    18114 @@ -8048,16 +8818,16 @@
     20885@@ -8048,16 +8692,16 @@
    1811520886 }
    1811620887 _ACEOF
    1811720888 rm -f conftest.$ac_objext conftest$ac_exeext
    1811820889-if { (eval echo "$as_me:8051: \"$ac_link\"") >&5
    18119 +if { (eval echo "$as_me:8821: \"$ac_link\"") >&5
     20890+if { (eval echo "$as_me:8695: \"$ac_link\"") >&5
    1812020891   (eval $ac_link) 2>&5
    1812120892   ac_status=$?
    1812220893-  echo "$as_me:8054: \$? = $ac_status" >&5
    18123 +  echo "$as_me:8824: \$? = $ac_status" >&5
     20894+  echo "$as_me:8698: \$? = $ac_status" >&5
    1812420895   (exit $ac_status); } &&
    1812520896          { ac_try='test -s conftest$ac_exeext'
    1812620897-  { (eval echo "$as_me:8057: \"$ac_try\"") >&5
    18127 +  { (eval echo "$as_me:8827: \"$ac_try\"") >&5
     20898+  { (eval echo "$as_me:8701: \"$ac_try\"") >&5
    1812820899   (eval $ac_try) 2>&5
    1812920900   ac_status=$?
    1813020901-  echo "$as_me:8060: \$? = $ac_status" >&5
    18131 +  echo "$as_me:8830: \$? = $ac_status" >&5
     20902+  echo "$as_me:8704: \$? = $ac_status" >&5
    1813220903   (exit $ac_status); }; }; then
    1813320904 
    1813420905        cf_cv_find_linkage_utf8=yes
    18135 @@ -8071,7 +8841,7 @@
     20906@@ -8071,7 +8715,7 @@
    1813620907 LIBS="-lutf8  $cf_save_LIBS"
    1813720908 
    1813820909 cat >conftest.$ac_ext <<_ACEOF
    1813920910-#line 8074 "configure"
    18140 +#line 8844 "configure"
     20911+#line 8718 "configure"
    1814120912 #include "confdefs.h"
    1814220913 
    1814320914 #include <libutf8.h>
    18144 @@ -8084,16 +8854,16 @@
     20915@@ -8084,16 +8728,16 @@
    1814520916 }
    1814620917 _ACEOF
    1814720918 rm -f conftest.$ac_objext conftest$ac_exeext
    1814820919-if { (eval echo "$as_me:8087: \"$ac_link\"") >&5
    18149 +if { (eval echo "$as_me:8857: \"$ac_link\"") >&5
     20920+if { (eval echo "$as_me:8731: \"$ac_link\"") >&5
    1815020921   (eval $ac_link) 2>&5
    1815120922   ac_status=$?
    1815220923-  echo "$as_me:8090: \$? = $ac_status" >&5
    18153 +  echo "$as_me:8860: \$? = $ac_status" >&5
     20924+  echo "$as_me:8734: \$? = $ac_status" >&5
    1815420925   (exit $ac_status); } &&
    1815520926          { ac_try='test -s conftest$ac_exeext'
    1815620927-  { (eval echo "$as_me:8093: \"$ac_try\"") >&5
    18157 +  { (eval echo "$as_me:8863: \"$ac_try\"") >&5
     20928+  { (eval echo "$as_me:8737: \"$ac_try\"") >&5
    1815820929   (eval $ac_try) 2>&5
    1815920930   ac_status=$?
    1816020931-  echo "$as_me:8096: \$? = $ac_status" >&5
    18161 +  echo "$as_me:8866: \$? = $ac_status" >&5
     20932+  echo "$as_me:8740: \$? = $ac_status" >&5
    1816220933   (exit $ac_status); }; }; then
    1816320934 
    1816420935        cf_cv_find_linkage_utf8=yes
    18165 @@ -8110,9 +8880,9 @@
     20936@@ -8110,9 +8754,9 @@
    1816620937 
    1816720938     test -n "$verbose" && echo "       find linkage for utf8 library" 1>&6
    1816820939 
    1816920940-echo "${as_me:-configure}:8113: testing find linkage for utf8 library ..." 1>&5
    18170 +echo "${as_me:-configure}:8883: testing find linkage for utf8 library ..." 1>&5
     20941+echo "${as_me:-configure}:8757: testing find linkage for utf8 library ..." 1>&5
    1817120942 
    1817220943-echo "${as_me:-configure}:8115: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5
    18173 +echo "${as_me:-configure}:8885: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5
     20944+echo "${as_me:-configure}:8759: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5
    1817420945 
    1817520946     cf_save_CPPFLAGS="$CPPFLAGS"
    1817620947     cf_test_CPPFLAGS="$CPPFLAGS"
    18177 @@ -8225,11 +8995,11 @@
     20948@@ -8225,11 +8869,11 @@
    1817820949       if test -d $cf_cv_header_path_utf8 ; then
    1817920950         test -n "$verbose" && echo "   ... testing $cf_cv_header_path_utf8" 1>&6
    1818020951 
    1818120952-echo "${as_me:-configure}:8228: testing ... testing $cf_cv_header_path_utf8 ..." 1>&5
    18182 +echo "${as_me:-configure}:8998: testing ... testing $cf_cv_header_path_utf8 ..." 1>&5
     20953+echo "${as_me:-configure}:8872: testing ... testing $cf_cv_header_path_utf8 ..." 1>&5
    1818320954 
    1818420955         CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_utf8"
    1818520956         cat >conftest.$ac_ext <<_ACEOF
    1818620957-#line 8232 "configure"
    18187 +#line 9002 "configure"
     20958+#line 8876 "configure"
    1818820959 #include "confdefs.h"
    1818920960 
    1819020961 #include <libutf8.h>
    18191 @@ -8242,21 +9012,21 @@
     20962@@ -8242,21 +8886,21 @@
    1819220963 }
    1819320964 _ACEOF
    1819420965 rm -f conftest.$ac_objext
    1819520966-if { (eval echo "$as_me:8245: \"$ac_compile\"") >&5
    18196 +if { (eval echo "$as_me:9015: \"$ac_compile\"") >&5
     20967+if { (eval echo "$as_me:8889: \"$ac_compile\"") >&5
    1819720968   (eval $ac_compile) 2>&5
    1819820969   ac_status=$?
    1819920970-  echo "$as_me:8248: \$? = $ac_status" >&5
    18200 +  echo "$as_me:9018: \$? = $ac_status" >&5
     20971+  echo "$as_me:8892: \$? = $ac_status" >&5
    1820120972   (exit $ac_status); } &&
    1820220973          { ac_try='test -s conftest.$ac_objext'
    1820320974-  { (eval echo "$as_me:8251: \"$ac_try\"") >&5
    18204 +  { (eval echo "$as_me:9021: \"$ac_try\"") >&5
     20975+  { (eval echo "$as_me:8895: \"$ac_try\"") >&5
    1820520976   (eval $ac_try) 2>&5
    1820620977   ac_status=$?
    1820720978-  echo "$as_me:8254: \$? = $ac_status" >&5
    18208 +  echo "$as_me:9024: \$? = $ac_status" >&5
     20979+  echo "$as_me:8898: \$? = $ac_status" >&5
    1820920980   (exit $ac_status); }; }; then
    1821020981 
     
    1821220983 
    1821320984-echo "${as_me:-configure}:8259: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5
    18214 +echo "${as_me:-configure}:9029: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5
     20985+echo "${as_me:-configure}:8903: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5
    1821520986 
    1821620987             cf_cv_find_linkage_utf8=maybe
    1821720988             cf_test_CPPFLAGS="$CPPFLAGS"
    18218 @@ -8274,7 +9044,7 @@
     20989@@ -8274,7 +8918,7 @@
    1821920990 
    1822020991     if test "$cf_cv_find_linkage_utf8" = maybe ; then
    1822120992 
    1822220993-echo "${as_me:-configure}:8277: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5
    18223 +echo "${as_me:-configure}:9047: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5
     20994+echo "${as_me:-configure}:8921: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5
    1822420995 
    1822520996       cf_save_LIBS="$LIBS"
    1822620997       cf_save_LDFLAGS="$LDFLAGS"
    18227 @@ -8371,13 +9141,13 @@
     20998@@ -8371,13 +9015,13 @@
    1822820999           if test -d $cf_cv_library_path_utf8 ; then
    1822921000             test -n "$verbose" && echo "       ... testing $cf_cv_library_path_utf8" 1>&6
    1823021001 
    1823121002-echo "${as_me:-configure}:8374: testing ... testing $cf_cv_library_path_utf8 ..." 1>&5
    18232 +echo "${as_me:-configure}:9144: testing ... testing $cf_cv_library_path_utf8 ..." 1>&5
     21003+echo "${as_me:-configure}:9018: testing ... testing $cf_cv_library_path_utf8 ..." 1>&5
    1823321004 
    1823421005             CPPFLAGS="$cf_test_CPPFLAGS"
     
    1823721008             cat >conftest.$ac_ext <<_ACEOF
    1823821009-#line 8380 "configure"
    18239 +#line 9150 "configure"
     21010+#line 9024 "configure"
    1824021011 #include "confdefs.h"
    1824121012 
    1824221013 #include <libutf8.h>
    18243 @@ -8390,21 +9160,21 @@
     21014@@ -8390,21 +9034,21 @@
    1824421015 }
    1824521016 _ACEOF
    1824621017 rm -f conftest.$ac_objext conftest$ac_exeext
    1824721018-if { (eval echo "$as_me:8393: \"$ac_link\"") >&5
    18248 +if { (eval echo "$as_me:9163: \"$ac_link\"") >&5
     21019+if { (eval echo "$as_me:9037: \"$ac_link\"") >&5
    1824921020   (eval $ac_link) 2>&5
    1825021021   ac_status=$?
    1825121022-  echo "$as_me:8396: \$? = $ac_status" >&5
    18252 +  echo "$as_me:9166: \$? = $ac_status" >&5
     21023+  echo "$as_me:9040: \$? = $ac_status" >&5
    1825321024   (exit $ac_status); } &&
    1825421025          { ac_try='test -s conftest$ac_exeext'
    1825521026-  { (eval echo "$as_me:8399: \"$ac_try\"") >&5
    18256 +  { (eval echo "$as_me:9169: \"$ac_try\"") >&5
     21027+  { (eval echo "$as_me:9043: \"$ac_try\"") >&5
    1825721028   (eval $ac_try) 2>&5
    1825821029   ac_status=$?
    1825921030-  echo "$as_me:8402: \$? = $ac_status" >&5
    18260 +  echo "$as_me:9172: \$? = $ac_status" >&5
     21031+  echo "$as_me:9046: \$? = $ac_status" >&5
    1826121032   (exit $ac_status); }; }; then
    1826221033 
     
    1826421035 
    1826521036-echo "${as_me:-configure}:8407: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5
    18266 +echo "${as_me:-configure}:9177: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5
     21037+echo "${as_me:-configure}:9051: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5
    1826721038 
    1826821039                 cf_cv_find_linkage_utf8=yes
    1826921040                 cf_cv_library_file_utf8="-lutf8"
    18270 @@ -8446,7 +9216,7 @@
     21041@@ -8446,7 +9090,7 @@
    1827121042 fi
    1827221043 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    1827321044 fi
    1827421045-echo "$as_me:8449: result: $cf_cv_utf8_lib" >&5
    18275 +echo "$as_me:9219: result: $cf_cv_utf8_lib" >&5
     21046+echo "$as_me:9093: result: $cf_cv_utf8_lib" >&5
    1827621047 echo "${ECHO_T}$cf_cv_utf8_lib" >&6
    1827721048 
    1827821049 # HAVE_LIBUTF8_H is used by ncurses if curses.h is shared between
    18279 @@ -8480,7 +9250,7 @@
     21050@@ -8480,7 +9124,7 @@
    1828021051                          cf_save_CPPFLAGS=$CPPFLAGS
    1828121052                          CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
    1828221053                          cat >conftest.$ac_ext <<_ACEOF
    1828321054-#line 8483 "configure"
    18284 +#line 9253 "configure"
     21055+#line 9127 "configure"
    1828521056 #include "confdefs.h"
    1828621057 #include <stdio.h>
    1828721058 int
    18288 @@ -8492,16 +9262,16 @@
     21059@@ -8492,16 +9136,16 @@
    1828921060 }
    1829021061 _ACEOF
    1829121062 rm -f conftest.$ac_objext
    1829221063-if { (eval echo "$as_me:8495: \"$ac_compile\"") >&5
    18293 +if { (eval echo "$as_me:9265: \"$ac_compile\"") >&5
     21064+if { (eval echo "$as_me:9139: \"$ac_compile\"") >&5
    1829421065   (eval $ac_compile) 2>&5
    1829521066   ac_status=$?
    1829621067-  echo "$as_me:8498: \$? = $ac_status" >&5
    18297 +  echo "$as_me:9268: \$? = $ac_status" >&5
     21068+  echo "$as_me:9142: \$? = $ac_status" >&5
    1829821069   (exit $ac_status); } &&
    1829921070          { ac_try='test -s conftest.$ac_objext'
    1830021071-  { (eval echo "$as_me:8501: \"$ac_try\"") >&5
    18301 +  { (eval echo "$as_me:9271: \"$ac_try\"") >&5
     21072+  { (eval echo "$as_me:9145: \"$ac_try\"") >&5
    1830221073   (eval $ac_try) 2>&5
    1830321074   ac_status=$?
    1830421075-  echo "$as_me:8504: \$? = $ac_status" >&5
    18305 +  echo "$as_me:9274: \$? = $ac_status" >&5
     21076+  echo "$as_me:9148: \$? = $ac_status" >&5
    1830621077   (exit $ac_status); }; }; then
    1830721078   :
    1830821079 else
    18309 @@ -8518,7 +9288,7 @@
     21080@@ -8518,7 +9162,7 @@
    1831021081                if test "$cf_have_incdir" = no ; then
    1831121082                  test -n "$verbose" && echo "  adding $cf_add_incdir to include-path" 1>&6
    1831221083 
    1831321084-echo "${as_me:-configure}:8521: testing adding $cf_add_incdir to include-path ..." 1>&5
    18314 +echo "${as_me:-configure}:9291: testing adding $cf_add_incdir to include-path ..." 1>&5
     21085+echo "${as_me:-configure}:9165: testing adding $cf_add_incdir to include-path ..." 1>&5
    1831521086 
    1831621087                  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
    1831721088 
    18318 @@ -8552,7 +9322,7 @@
     21089@@ -8552,7 +9196,7 @@
    1831921090       if test "$cf_have_libdir" = no ; then
    1832021091         test -n "$verbose" && echo "   adding $cf_add_libdir to library-path" 1>&6
    1832121092 
    1832221093-echo "${as_me:-configure}:8555: testing adding $cf_add_libdir to library-path ..." 1>&5
    18323 +echo "${as_me:-configure}:9325: testing adding $cf_add_libdir to library-path ..." 1>&5
     21094+echo "${as_me:-configure}:9199: testing adding $cf_add_libdir to library-path ..." 1>&5
    1832421095 
    1832521096         LDFLAGS="-L$cf_add_libdir $LDFLAGS"
    1832621097       fi
    18327 @@ -8569,14 +9339,14 @@
     21098@@ -8569,14 +9213,14 @@
    1832821099        fi
    1832921100 
    1833021101 # This is needed on Tru64 5.0 to declare mbstate_t
    1833121102-echo "$as_me:8572: checking if we must include wchar.h to declare mbstate_t" >&5
    18332 +echo "$as_me:9342: checking if we must include wchar.h to declare mbstate_t" >&5
     21103+echo "$as_me:9216: checking if we must include wchar.h to declare mbstate_t" >&5
    1833321104 echo $ECHO_N "checking if we must include wchar.h to declare mbstate_t... $ECHO_C" >&6
    1833421105 if test "${cf_cv_mbstate_t+set}" = set; then
     
    1833821109 cat >conftest.$ac_ext <<_ACEOF
    1833921110-#line 8579 "configure"
    18340 +#line 9349 "configure"
     21111+#line 9223 "configure"
    1834121112 #include "confdefs.h"
    1834221113 
    1834321114 #include <stdlib.h>
    18344 @@ -8594,23 +9364,23 @@
     21115@@ -8594,23 +9238,23 @@
    1834521116 }
    1834621117 _ACEOF
    1834721118 rm -f conftest.$ac_objext
    1834821119-if { (eval echo "$as_me:8597: \"$ac_compile\"") >&5
    18349 +if { (eval echo "$as_me:9367: \"$ac_compile\"") >&5
     21120+if { (eval echo "$as_me:9241: \"$ac_compile\"") >&5
    1835021121   (eval $ac_compile) 2>&5
    1835121122   ac_status=$?
    1835221123-  echo "$as_me:8600: \$? = $ac_status" >&5
    18353 +  echo "$as_me:9370: \$? = $ac_status" >&5
     21124+  echo "$as_me:9244: \$? = $ac_status" >&5
    1835421125   (exit $ac_status); } &&
    1835521126          { ac_try='test -s conftest.$ac_objext'
    1835621127-  { (eval echo "$as_me:8603: \"$ac_try\"") >&5
    18357 +  { (eval echo "$as_me:9373: \"$ac_try\"") >&5
     21128+  { (eval echo "$as_me:9247: \"$ac_try\"") >&5
    1835821129   (eval $ac_try) 2>&5
    1835921130   ac_status=$?
    1836021131-  echo "$as_me:8606: \$? = $ac_status" >&5
    18361 +  echo "$as_me:9376: \$? = $ac_status" >&5
     21132+  echo "$as_me:9250: \$? = $ac_status" >&5
    1836221133   (exit $ac_status); }; }; then
    1836321134   cf_cv_mbstate_t=no
     
    1836721138 cat >conftest.$ac_ext <<_ACEOF
    1836821139-#line 8613 "configure"
    18369 +#line 9383 "configure"
     21140+#line 9257 "configure"
    1837021141 #include "confdefs.h"
    1837121142 
    1837221143 #include <stdlib.h>
    18373 @@ -8629,16 +9399,16 @@
     21144@@ -8629,16 +9273,16 @@
    1837421145 }
    1837521146 _ACEOF
    1837621147 rm -f conftest.$ac_objext
    1837721148-if { (eval echo "$as_me:8632: \"$ac_compile\"") >&5
    18378 +if { (eval echo "$as_me:9402: \"$ac_compile\"") >&5
     21149+if { (eval echo "$as_me:9276: \"$ac_compile\"") >&5
    1837921150   (eval $ac_compile) 2>&5
    1838021151   ac_status=$?
    1838121152-  echo "$as_me:8635: \$? = $ac_status" >&5
    18382 +  echo "$as_me:9405: \$? = $ac_status" >&5
     21153+  echo "$as_me:9279: \$? = $ac_status" >&5
    1838321154   (exit $ac_status); } &&
    1838421155          { ac_try='test -s conftest.$ac_objext'
    1838521156-  { (eval echo "$as_me:8638: \"$ac_try\"") >&5
    18386 +  { (eval echo "$as_me:9408: \"$ac_try\"") >&5
     21157+  { (eval echo "$as_me:9282: \"$ac_try\"") >&5
    1838721158   (eval $ac_try) 2>&5
    1838821159   ac_status=$?
    1838921160-  echo "$as_me:8641: \$? = $ac_status" >&5
    18390 +  echo "$as_me:9411: \$? = $ac_status" >&5
     21161+  echo "$as_me:9285: \$? = $ac_status" >&5
    1839121162   (exit $ac_status); }; }; then
    1839221163   cf_cv_mbstate_t=yes
    1839321164 else
    18394 @@ -8650,7 +9420,7 @@
     21165@@ -8650,7 +9294,7 @@
    1839521166 fi
    1839621167 rm -f conftest.$ac_objext conftest.$ac_ext
    1839721168 fi
    1839821169-echo "$as_me:8653: result: $cf_cv_mbstate_t" >&5
    18399 +echo "$as_me:9423: result: $cf_cv_mbstate_t" >&5
     21170+echo "$as_me:9297: result: $cf_cv_mbstate_t" >&5
    1840021171 echo "${ECHO_T}$cf_cv_mbstate_t" >&6
    1840121172 
    1840221173 if test "$cf_cv_mbstate_t" = yes ; then
    18403 @@ -8667,14 +9437,14 @@
     21174@@ -8667,14 +9311,14 @@
    1840421175 fi
    1840521176 
    1840621177 # This is needed on Tru64 5.0 to declare wchar_t
    1840721178-echo "$as_me:8670: checking if we must include wchar.h to declare wchar_t" >&5
    18408 +echo "$as_me:9440: checking if we must include wchar.h to declare wchar_t" >&5
     21179+echo "$as_me:9314: checking if we must include wchar.h to declare wchar_t" >&5
    1840921180 echo $ECHO_N "checking if we must include wchar.h to declare wchar_t... $ECHO_C" >&6
    1841021181 if test "${cf_cv_wchar_t+set}" = set; then
     
    1841421185 cat >conftest.$ac_ext <<_ACEOF
    1841521186-#line 8677 "configure"
    18416 +#line 9447 "configure"
     21187+#line 9321 "configure"
    1841721188 #include "confdefs.h"
    1841821189 
    1841921190 #include <stdlib.h>
    18420 @@ -8692,23 +9462,23 @@
     21191@@ -8692,23 +9336,23 @@
    1842121192 }
    1842221193 _ACEOF
    1842321194 rm -f conftest.$ac_objext
    1842421195-if { (eval echo "$as_me:8695: \"$ac_compile\"") >&5
    18425 +if { (eval echo "$as_me:9465: \"$ac_compile\"") >&5
     21196+if { (eval echo "$as_me:9339: \"$ac_compile\"") >&5
    1842621197   (eval $ac_compile) 2>&5
    1842721198   ac_status=$?
    1842821199-  echo "$as_me:8698: \$? = $ac_status" >&5
    18429 +  echo "$as_me:9468: \$? = $ac_status" >&5
     21200+  echo "$as_me:9342: \$? = $ac_status" >&5
    1843021201   (exit $ac_status); } &&
    1843121202          { ac_try='test -s conftest.$ac_objext'
    1843221203-  { (eval echo "$as_me:8701: \"$ac_try\"") >&5
    18433 +  { (eval echo "$as_me:9471: \"$ac_try\"") >&5
     21204+  { (eval echo "$as_me:9345: \"$ac_try\"") >&5
    1843421205   (eval $ac_try) 2>&5
    1843521206   ac_status=$?
    1843621207-  echo "$as_me:8704: \$? = $ac_status" >&5
    18437 +  echo "$as_me:9474: \$? = $ac_status" >&5
     21208+  echo "$as_me:9348: \$? = $ac_status" >&5
    1843821209   (exit $ac_status); }; }; then
    1843921210   cf_cv_wchar_t=no
     
    1844321214 cat >conftest.$ac_ext <<_ACEOF
    1844421215-#line 8711 "configure"
    18445 +#line 9481 "configure"
     21216+#line 9355 "configure"
    1844621217 #include "confdefs.h"
    1844721218 
    1844821219 #include <stdlib.h>
    18449 @@ -8727,16 +9497,16 @@
     21220@@ -8727,16 +9371,16 @@
    1845021221 }
    1845121222 _ACEOF
    1845221223 rm -f conftest.$ac_objext
    1845321224-if { (eval echo "$as_me:8730: \"$ac_compile\"") >&5
    18454 +if { (eval echo "$as_me:9500: \"$ac_compile\"") >&5
     21225+if { (eval echo "$as_me:9374: \"$ac_compile\"") >&5
    1845521226   (eval $ac_compile) 2>&5
    1845621227   ac_status=$?
    1845721228-  echo "$as_me:8733: \$? = $ac_status" >&5
    18458 +  echo "$as_me:9503: \$? = $ac_status" >&5
     21229+  echo "$as_me:9377: \$? = $ac_status" >&5
    1845921230   (exit $ac_status); } &&
    1846021231          { ac_try='test -s conftest.$ac_objext'
    1846121232-  { (eval echo "$as_me:8736: \"$ac_try\"") >&5
    18462 +  { (eval echo "$as_me:9506: \"$ac_try\"") >&5
     21233+  { (eval echo "$as_me:9380: \"$ac_try\"") >&5
    1846321234   (eval $ac_try) 2>&5
    1846421235   ac_status=$?
    1846521236-  echo "$as_me:8739: \$? = $ac_status" >&5
    18466 +  echo "$as_me:9509: \$? = $ac_status" >&5
     21237+  echo "$as_me:9383: \$? = $ac_status" >&5
    1846721238   (exit $ac_status); }; }; then
    1846821239   cf_cv_wchar_t=yes
    1846921240 else
    18470 @@ -8748,7 +9518,7 @@
     21241@@ -8748,7 +9392,7 @@
    1847121242 fi
    1847221243 rm -f conftest.$ac_objext conftest.$ac_ext
    1847321244 fi
    1847421245-echo "$as_me:8751: result: $cf_cv_wchar_t" >&5
    18475 +echo "$as_me:9521: result: $cf_cv_wchar_t" >&5
     21246+echo "$as_me:9395: result: $cf_cv_wchar_t" >&5
    1847621247 echo "${ECHO_T}$cf_cv_wchar_t" >&6
    1847721248 
    1847821249 if test "$cf_cv_wchar_t" = yes ; then
    18479 @@ -8770,14 +9540,14 @@
     21250@@ -8770,14 +9414,14 @@
    1848021251 fi
    1848121252 
    1848221253 # This is needed on Tru64 5.0 to declare wint_t
    1848321254-echo "$as_me:8773: checking if we must include wchar.h to declare wint_t" >&5
    18484 +echo "$as_me:9543: checking if we must include wchar.h to declare wint_t" >&5
     21255+echo "$as_me:9417: checking if we must include wchar.h to declare wint_t" >&5
    1848521256 echo $ECHO_N "checking if we must include wchar.h to declare wint_t... $ECHO_C" >&6
    1848621257 if test "${cf_cv_wint_t+set}" = set; then
     
    1849021261 cat >conftest.$ac_ext <<_ACEOF
    1849121262-#line 8780 "configure"
    18492 +#line 9550 "configure"
     21263+#line 9424 "configure"
    1849321264 #include "confdefs.h"
    1849421265 
    1849521266 #include <stdlib.h>
    18496 @@ -8795,23 +9565,23 @@
     21267@@ -8795,23 +9439,23 @@
    1849721268 }
    1849821269 _ACEOF
    1849921270 rm -f conftest.$ac_objext
    1850021271-if { (eval echo "$as_me:8798: \"$ac_compile\"") >&5
    18501 +if { (eval echo "$as_me:9568: \"$ac_compile\"") >&5
     21272+if { (eval echo "$as_me:9442: \"$ac_compile\"") >&5
    1850221273   (eval $ac_compile) 2>&5
    1850321274   ac_status=$?
    1850421275-  echo "$as_me:8801: \$? = $ac_status" >&5
    18505 +  echo "$as_me:9571: \$? = $ac_status" >&5
     21276+  echo "$as_me:9445: \$? = $ac_status" >&5
    1850621277   (exit $ac_status); } &&
    1850721278          { ac_try='test -s conftest.$ac_objext'
    1850821279-  { (eval echo "$as_me:8804: \"$ac_try\"") >&5
    18509 +  { (eval echo "$as_me:9574: \"$ac_try\"") >&5
     21280+  { (eval echo "$as_me:9448: \"$ac_try\"") >&5
    1851021281   (eval $ac_try) 2>&5
    1851121282   ac_status=$?
    1851221283-  echo "$as_me:8807: \$? = $ac_status" >&5
    18513 +  echo "$as_me:9577: \$? = $ac_status" >&5
     21284+  echo "$as_me:9451: \$? = $ac_status" >&5
    1851421285   (exit $ac_status); }; }; then
    1851521286   cf_cv_wint_t=no
     
    1851921290 cat >conftest.$ac_ext <<_ACEOF
    1852021291-#line 8814 "configure"
    18521 +#line 9584 "configure"
     21292+#line 9458 "configure"
    1852221293 #include "confdefs.h"
    1852321294 
    1852421295 #include <stdlib.h>
    18525 @@ -8830,16 +9600,16 @@
     21296@@ -8830,16 +9474,16 @@
    1852621297 }
    1852721298 _ACEOF
    1852821299 rm -f conftest.$ac_objext
    1852921300-if { (eval echo "$as_me:8833: \"$ac_compile\"") >&5
    18530 +if { (eval echo "$as_me:9603: \"$ac_compile\"") >&5
     21301+if { (eval echo "$as_me:9477: \"$ac_compile\"") >&5
    1853121302   (eval $ac_compile) 2>&5
    1853221303   ac_status=$?
    1853321304-  echo "$as_me:8836: \$? = $ac_status" >&5
    18534 +  echo "$as_me:9606: \$? = $ac_status" >&5
     21305+  echo "$as_me:9480: \$? = $ac_status" >&5
    1853521306   (exit $ac_status); } &&
    1853621307          { ac_try='test -s conftest.$ac_objext'
    1853721308-  { (eval echo "$as_me:8839: \"$ac_try\"") >&5
    18538 +  { (eval echo "$as_me:9609: \"$ac_try\"") >&5
     21309+  { (eval echo "$as_me:9483: \"$ac_try\"") >&5
    1853921310   (eval $ac_try) 2>&5
    1854021311   ac_status=$?
    1854121312-  echo "$as_me:8842: \$? = $ac_status" >&5
    18542 +  echo "$as_me:9612: \$? = $ac_status" >&5
     21313+  echo "$as_me:9486: \$? = $ac_status" >&5
    1854321314   (exit $ac_status); }; }; then
    1854421315   cf_cv_wint_t=yes
    1854521316 else
    18546 @@ -8851,7 +9621,7 @@
     21317@@ -8851,7 +9495,7 @@
    1854721318 fi
    1854821319 rm -f conftest.$ac_objext conftest.$ac_ext
    1854921320 fi
    1855021321-echo "$as_me:8854: result: $cf_cv_wint_t" >&5
    18551 +echo "$as_me:9624: result: $cf_cv_wint_t" >&5
     21322+echo "$as_me:9498: result: $cf_cv_wint_t" >&5
    1855221323 echo "${ECHO_T}$cf_cv_wint_t" >&6
    1855321324 
    1855421325 if test "$cf_cv_wint_t" = yes ; then
    18555 @@ -8890,7 +9660,7 @@
     21326@@ -8890,7 +9534,7 @@
    1855621327        ;;
    1855721328 esac
    1855821329 
    1855921330-echo "$as_me:8893: checking whether to enable _LP64 definition in curses.h" >&5
    18560 +echo "$as_me:9663: checking whether to enable _LP64 definition in curses.h" >&5
     21331+echo "$as_me:9537: checking whether to enable _LP64 definition in curses.h" >&5
    1856121332 echo $ECHO_N "checking whether to enable _LP64 definition in curses.h... $ECHO_C" >&6
    1856221333 
    1856321334 # Check whether --enable-lp64 or --disable-lp64 was given.
    18564 @@ -8900,7 +9670,7 @@
     21335@@ -8900,7 +9544,7 @@
    1856521336 else
    1856621337   with_lp64=$default_with_lp64
    1856721338 fi;
    1856821339-echo "$as_me:8903: result: $with_lp64" >&5
    18569 +echo "$as_me:9673: result: $with_lp64" >&5
     21340+echo "$as_me:9547: result: $with_lp64" >&5
    1857021341 echo "${ECHO_T}$with_lp64" >&6
    1857121342 
    1857221343 if test "$with_lp64" = yes ; then
    18573 @@ -8916,7 +9686,7 @@
     21344@@ -8916,7 +9560,7 @@
    1857421345 fi;
    1857521346 if test "$enable_largefile" != no; then
    1857621347 
    1857721348-  echo "$as_me:8919: checking for special C compiler options needed for large files" >&5
    18578 +  echo "$as_me:9689: checking for special C compiler options needed for large files" >&5
     21349+  echo "$as_me:9563: checking for special C compiler options needed for large files" >&5
    1857921350 echo $ECHO_N "checking for special C compiler options needed for large files... $ECHO_C" >&6
    1858021351 if test "${ac_cv_sys_largefile_CC+set}" = set; then
    1858121352   echo $ECHO_N "(cached) $ECHO_C" >&6
    18582 @@ -8928,7 +9698,7 @@
     21353@@ -8928,7 +9572,7 @@
    1858321354         # IRIX 6.2 and later do not support large files by default,
    1858421355         # so use the C compiler's -n32 option if that helps.
    1858521356          cat >conftest.$ac_ext <<_ACEOF
    1858621357-#line 8931 "configure"
    18587 +#line 9701 "configure"
     21358+#line 9575 "configure"
    1858821359 #include "confdefs.h"
    1858921360 #include <sys/types.h>
    1859021361  /* Check that off_t can represent 2**63 - 1 correctly.
    18591 @@ -8948,16 +9718,16 @@
     21362@@ -8948,16 +9592,16 @@
    1859221363 }
    1859321364 _ACEOF
    1859421365         rm -f conftest.$ac_objext
    1859521366-if { (eval echo "$as_me:8951: \"$ac_compile\"") >&5
    18596 +if { (eval echo "$as_me:9721: \"$ac_compile\"") >&5
     21367+if { (eval echo "$as_me:9595: \"$ac_compile\"") >&5
    1859721368   (eval $ac_compile) 2>&5
    1859821369   ac_status=$?
    1859921370-  echo "$as_me:8954: \$? = $ac_status" >&5
    18600 +  echo "$as_me:9724: \$? = $ac_status" >&5
     21371+  echo "$as_me:9598: \$? = $ac_status" >&5
    1860121372   (exit $ac_status); } &&
    1860221373          { ac_try='test -s conftest.$ac_objext'
    1860321374-  { (eval echo "$as_me:8957: \"$ac_try\"") >&5
    18604 +  { (eval echo "$as_me:9727: \"$ac_try\"") >&5
     21375+  { (eval echo "$as_me:9601: \"$ac_try\"") >&5
    1860521376   (eval $ac_try) 2>&5
    1860621377   ac_status=$?
    1860721378-  echo "$as_me:8960: \$? = $ac_status" >&5
    18608 +  echo "$as_me:9730: \$? = $ac_status" >&5
     21379+  echo "$as_me:9604: \$? = $ac_status" >&5
    1860921380   (exit $ac_status); }; }; then
    1861021381   break
    1861121382 else
    18612 @@ -8967,16 +9737,16 @@
     21383@@ -8967,16 +9611,16 @@
    1861321384 rm -f conftest.$ac_objext
    1861421385         CC="$CC -n32"
    1861521386         rm -f conftest.$ac_objext
    1861621387-if { (eval echo "$as_me:8970: \"$ac_compile\"") >&5
    18617 +if { (eval echo "$as_me:9740: \"$ac_compile\"") >&5
     21388+if { (eval echo "$as_me:9614: \"$ac_compile\"") >&5
    1861821389   (eval $ac_compile) 2>&5
    1861921390   ac_status=$?
    1862021391-  echo "$as_me:8973: \$? = $ac_status" >&5
    18621 +  echo "$as_me:9743: \$? = $ac_status" >&5
     21392+  echo "$as_me:9617: \$? = $ac_status" >&5
    1862221393   (exit $ac_status); } &&
    1862321394          { ac_try='test -s conftest.$ac_objext'
    1862421395-  { (eval echo "$as_me:8976: \"$ac_try\"") >&5
    18625 +  { (eval echo "$as_me:9746: \"$ac_try\"") >&5
     21396+  { (eval echo "$as_me:9620: \"$ac_try\"") >&5
    1862621397   (eval $ac_try) 2>&5
    1862721398   ac_status=$?
    1862821399-  echo "$as_me:8979: \$? = $ac_status" >&5
    18629 +  echo "$as_me:9749: \$? = $ac_status" >&5
     21400+  echo "$as_me:9623: \$? = $ac_status" >&5
    1863021401   (exit $ac_status); }; }; then
    1863121402   ac_cv_sys_largefile_CC=' -n32'; break
    1863221403 else
    18633 @@ -8990,13 +9760,13 @@
     21404@@ -8990,13 +9634,13 @@
    1863421405        rm -f conftest.$ac_ext
    1863521406     fi
    1863621407 fi
    1863721408-echo "$as_me:8993: result: $ac_cv_sys_largefile_CC" >&5
    18638 +echo "$as_me:9763: result: $ac_cv_sys_largefile_CC" >&5
     21409+echo "$as_me:9637: result: $ac_cv_sys_largefile_CC" >&5
    1863921410 echo "${ECHO_T}$ac_cv_sys_largefile_CC" >&6
    1864021411   if test "$ac_cv_sys_largefile_CC" != no; then
     
    1864321414 
    1864421415-  echo "$as_me:8999: checking for _FILE_OFFSET_BITS value needed for large files" >&5
    18645 +  echo "$as_me:9769: checking for _FILE_OFFSET_BITS value needed for large files" >&5
     21416+  echo "$as_me:9643: checking for _FILE_OFFSET_BITS value needed for large files" >&5
    1864621417 echo $ECHO_N "checking for _FILE_OFFSET_BITS value needed for large files... $ECHO_C" >&6
    1864721418 if test "${ac_cv_sys_file_offset_bits+set}" = set; then
    1864821419   echo $ECHO_N "(cached) $ECHO_C" >&6
    18649 @@ -9004,7 +9774,7 @@
     21420@@ -9004,7 +9648,7 @@
    1865021421   while :; do
    1865121422   ac_cv_sys_file_offset_bits=no
    1865221423   cat >conftest.$ac_ext <<_ACEOF
    1865321424-#line 9007 "configure"
    18654 +#line 9777 "configure"
     21425+#line 9651 "configure"
    1865521426 #include "confdefs.h"
    1865621427 #include <sys/types.h>
    1865721428  /* Check that off_t can represent 2**63 - 1 correctly.
    18658 @@ -9024,16 +9794,16 @@
     21429@@ -9024,16 +9668,16 @@
    1865921430 }
    1866021431 _ACEOF
    1866121432 rm -f conftest.$ac_objext
    1866221433-if { (eval echo "$as_me:9027: \"$ac_compile\"") >&5
    18663 +if { (eval echo "$as_me:9797: \"$ac_compile\"") >&5
     21434+if { (eval echo "$as_me:9671: \"$ac_compile\"") >&5
    1866421435   (eval $ac_compile) 2>&5
    1866521436   ac_status=$?
    1866621437-  echo "$as_me:9030: \$? = $ac_status" >&5
    18667 +  echo "$as_me:9800: \$? = $ac_status" >&5
     21438+  echo "$as_me:9674: \$? = $ac_status" >&5
    1866821439   (exit $ac_status); } &&
    1866921440          { ac_try='test -s conftest.$ac_objext'
    1867021441-  { (eval echo "$as_me:9033: \"$ac_try\"") >&5
    18671 +  { (eval echo "$as_me:9803: \"$ac_try\"") >&5
     21442+  { (eval echo "$as_me:9677: \"$ac_try\"") >&5
    1867221443   (eval $ac_try) 2>&5
    1867321444   ac_status=$?
    1867421445-  echo "$as_me:9036: \$? = $ac_status" >&5
    18675 +  echo "$as_me:9806: \$? = $ac_status" >&5
     21446+  echo "$as_me:9680: \$? = $ac_status" >&5
    1867621447   (exit $ac_status); }; }; then
    1867721448   break
    1867821449 else
    18679 @@ -9042,7 +9812,7 @@
     21450@@ -9042,7 +9686,7 @@
    1868021451 fi
    1868121452 rm -f conftest.$ac_objext conftest.$ac_ext
    1868221453   cat >conftest.$ac_ext <<_ACEOF
    1868321454-#line 9045 "configure"
    18684 +#line 9815 "configure"
     21455+#line 9689 "configure"
    1868521456 #include "confdefs.h"
    1868621457 #define _FILE_OFFSET_BITS 64
    1868721458 #include <sys/types.h>
    18688 @@ -9063,16 +9833,16 @@
     21459@@ -9063,16 +9707,16 @@
    1868921460 }
    1869021461 _ACEOF
    1869121462 rm -f conftest.$ac_objext
    1869221463-if { (eval echo "$as_me:9066: \"$ac_compile\"") >&5
    18693 +if { (eval echo "$as_me:9836: \"$ac_compile\"") >&5
     21464+if { (eval echo "$as_me:9710: \"$ac_compile\"") >&5
    1869421465   (eval $ac_compile) 2>&5
    1869521466   ac_status=$?
    1869621467-  echo "$as_me:9069: \$? = $ac_status" >&5
    18697 +  echo "$as_me:9839: \$? = $ac_status" >&5
     21468+  echo "$as_me:9713: \$? = $ac_status" >&5
    1869821469   (exit $ac_status); } &&
    1869921470          { ac_try='test -s conftest.$ac_objext'
    1870021471-  { (eval echo "$as_me:9072: \"$ac_try\"") >&5
    18701 +  { (eval echo "$as_me:9842: \"$ac_try\"") >&5
     21472+  { (eval echo "$as_me:9716: \"$ac_try\"") >&5
    1870221473   (eval $ac_try) 2>&5
    1870321474   ac_status=$?
    1870421475-  echo "$as_me:9075: \$? = $ac_status" >&5
    18705 +  echo "$as_me:9845: \$? = $ac_status" >&5
     21476+  echo "$as_me:9719: \$? = $ac_status" >&5
    1870621477   (exit $ac_status); }; }; then
    1870721478   ac_cv_sys_file_offset_bits=64; break
    1870821479 else
    18709 @@ -9083,7 +9853,7 @@
     21480@@ -9083,7 +9727,7 @@
    1871021481   break
    1871121482 done
    1871221483 fi
    1871321484-echo "$as_me:9086: result: $ac_cv_sys_file_offset_bits" >&5
    18714 +echo "$as_me:9856: result: $ac_cv_sys_file_offset_bits" >&5
     21485+echo "$as_me:9730: result: $ac_cv_sys_file_offset_bits" >&5
    1871521486 echo "${ECHO_T}$ac_cv_sys_file_offset_bits" >&6
    1871621487 if test "$ac_cv_sys_file_offset_bits" != no; then
    1871721488 
    18718 @@ -9093,7 +9863,7 @@
     21489@@ -9093,7 +9737,7 @@
    1871921490 
    1872021491 fi
    1872121492 rm -rf conftest*
    1872221493-  echo "$as_me:9096: checking for _LARGE_FILES value needed for large files" >&5
    18723 +  echo "$as_me:9866: checking for _LARGE_FILES value needed for large files" >&5
     21494+  echo "$as_me:9740: checking for _LARGE_FILES value needed for large files" >&5
    1872421495 echo $ECHO_N "checking for _LARGE_FILES value needed for large files... $ECHO_C" >&6
    1872521496 if test "${ac_cv_sys_large_files+set}" = set; then
    1872621497   echo $ECHO_N "(cached) $ECHO_C" >&6
    18727 @@ -9101,7 +9871,7 @@
     21498@@ -9101,7 +9745,7 @@
    1872821499   while :; do
    1872921500   ac_cv_sys_large_files=no
    1873021501   cat >conftest.$ac_ext <<_ACEOF
    1873121502-#line 9104 "configure"
    18732 +#line 9874 "configure"
     21503+#line 9748 "configure"
    1873321504 #include "confdefs.h"
    1873421505 #include <sys/types.h>
    1873521506  /* Check that off_t can represent 2**63 - 1 correctly.
    18736 @@ -9121,16 +9891,16 @@
     21507@@ -9121,16 +9765,16 @@
    1873721508 }
    1873821509 _ACEOF
    1873921510 rm -f conftest.$ac_objext
    1874021511-if { (eval echo "$as_me:9124: \"$ac_compile\"") >&5
    18741 +if { (eval echo "$as_me:9894: \"$ac_compile\"") >&5
     21512+if { (eval echo "$as_me:9768: \"$ac_compile\"") >&5
    1874221513   (eval $ac_compile) 2>&5
    1874321514   ac_status=$?
    1874421515-  echo "$as_me:9127: \$? = $ac_status" >&5
    18745 +  echo "$as_me:9897: \$? = $ac_status" >&5
     21516+  echo "$as_me:9771: \$? = $ac_status" >&5
    1874621517   (exit $ac_status); } &&
    1874721518          { ac_try='test -s conftest.$ac_objext'
    1874821519-  { (eval echo "$as_me:9130: \"$ac_try\"") >&5
    18749 +  { (eval echo "$as_me:9900: \"$ac_try\"") >&5
     21520+  { (eval echo "$as_me:9774: \"$ac_try\"") >&5
    1875021521   (eval $ac_try) 2>&5
    1875121522   ac_status=$?
    1875221523-  echo "$as_me:9133: \$? = $ac_status" >&5
    18753 +  echo "$as_me:9903: \$? = $ac_status" >&5
     21524+  echo "$as_me:9777: \$? = $ac_status" >&5
    1875421525   (exit $ac_status); }; }; then
    1875521526   break
    1875621527 else
    18757 @@ -9139,7 +9909,7 @@
     21528@@ -9139,7 +9783,7 @@
    1875821529 fi
    1875921530 rm -f conftest.$ac_objext conftest.$ac_ext
    1876021531   cat >conftest.$ac_ext <<_ACEOF
    1876121532-#line 9142 "configure"
    18762 +#line 9912 "configure"
     21533+#line 9786 "configure"
    1876321534 #include "confdefs.h"
    1876421535 #define _LARGE_FILES 1
    1876521536 #include <sys/types.h>
    18766 @@ -9160,16 +9930,16 @@
     21537@@ -9160,16 +9804,16 @@
    1876721538 }
    1876821539 _ACEOF
    1876921540 rm -f conftest.$ac_objext
    1877021541-if { (eval echo "$as_me:9163: \"$ac_compile\"") >&5
    18771 +if { (eval echo "$as_me:9933: \"$ac_compile\"") >&5
     21542+if { (eval echo "$as_me:9807: \"$ac_compile\"") >&5
    1877221543   (eval $ac_compile) 2>&5
    1877321544   ac_status=$?
    1877421545-  echo "$as_me:9166: \$? = $ac_status" >&5
    18775 +  echo "$as_me:9936: \$? = $ac_status" >&5
     21546+  echo "$as_me:9810: \$? = $ac_status" >&5
    1877621547   (exit $ac_status); } &&
    1877721548          { ac_try='test -s conftest.$ac_objext'
    1877821549-  { (eval echo "$as_me:9169: \"$ac_try\"") >&5
    18779 +  { (eval echo "$as_me:9939: \"$ac_try\"") >&5
     21550+  { (eval echo "$as_me:9813: \"$ac_try\"") >&5
    1878021551   (eval $ac_try) 2>&5
    1878121552   ac_status=$?
    1878221553-  echo "$as_me:9172: \$? = $ac_status" >&5
    18783 +  echo "$as_me:9942: \$? = $ac_status" >&5
     21554+  echo "$as_me:9816: \$? = $ac_status" >&5
    1878421555   (exit $ac_status); }; }; then
    1878521556   ac_cv_sys_large_files=1; break
    1878621557 else
    18787 @@ -9180,7 +9950,7 @@
     21558@@ -9180,7 +9824,7 @@
    1878821559   break
    1878921560 done
    1879021561 fi
    1879121562-echo "$as_me:9183: result: $ac_cv_sys_large_files" >&5
    18792 +echo "$as_me:9953: result: $ac_cv_sys_large_files" >&5
     21563+echo "$as_me:9827: result: $ac_cv_sys_large_files" >&5
    1879321564 echo "${ECHO_T}$ac_cv_sys_large_files" >&6
    1879421565 if test "$ac_cv_sys_large_files" != no; then
    1879521566 
    18796 @@ -9193,7 +9963,7 @@
     21567@@ -9193,7 +9837,7 @@
    1879721568 fi
    1879821569 
    1879921570     if test "$enable_largefile" != no ; then
    1880021571-       echo "$as_me:9196: checking for _LARGEFILE_SOURCE value needed for large files" >&5
    18801 +       echo "$as_me:9966: checking for _LARGEFILE_SOURCE value needed for large files" >&5
     21572+       echo "$as_me:9840: checking for _LARGEFILE_SOURCE value needed for large files" >&5
    1880221573 echo $ECHO_N "checking for _LARGEFILE_SOURCE value needed for large files... $ECHO_C" >&6
    1880321574 if test "${ac_cv_sys_largefile_source+set}" = set; then
    1880421575   echo $ECHO_N "(cached) $ECHO_C" >&6
    18805 @@ -9201,7 +9971,7 @@
     21576@@ -9201,7 +9845,7 @@
    1880621577   while :; do
    1880721578   ac_cv_sys_largefile_source=no
    1880821579   cat >conftest.$ac_ext <<_ACEOF
    1880921580-#line 9204 "configure"
    18810 +#line 9974 "configure"
     21581+#line 9848 "configure"
    1881121582 #include "confdefs.h"
    1881221583 #include <stdio.h>
    1881321584 int
    18814 @@ -9213,16 +9983,16 @@
     21585@@ -9213,16 +9857,16 @@
    1881521586 }
    1881621587 _ACEOF
    1881721588 rm -f conftest.$ac_objext
    1881821589-if { (eval echo "$as_me:9216: \"$ac_compile\"") >&5
    18819 +if { (eval echo "$as_me:9986: \"$ac_compile\"") >&5
     21590+if { (eval echo "$as_me:9860: \"$ac_compile\"") >&5
    1882021591   (eval $ac_compile) 2>&5
    1882121592   ac_status=$?
    1882221593-  echo "$as_me:9219: \$? = $ac_status" >&5
    18823 +  echo "$as_me:9989: \$? = $ac_status" >&5
     21594+  echo "$as_me:9863: \$? = $ac_status" >&5
    1882421595   (exit $ac_status); } &&
    1882521596          { ac_try='test -s conftest.$ac_objext'
    1882621597-  { (eval echo "$as_me:9222: \"$ac_try\"") >&5
    18827 +  { (eval echo "$as_me:9992: \"$ac_try\"") >&5
     21598+  { (eval echo "$as_me:9866: \"$ac_try\"") >&5
    1882821599   (eval $ac_try) 2>&5
    1882921600   ac_status=$?
    1883021601-  echo "$as_me:9225: \$? = $ac_status" >&5
    18831 +  echo "$as_me:9995: \$? = $ac_status" >&5
     21602+  echo "$as_me:9869: \$? = $ac_status" >&5
    1883221603   (exit $ac_status); }; }; then
    1883321604   break
    1883421605 else
    18835 @@ -9231,7 +10001,7 @@
     21606@@ -9231,7 +9875,7 @@
    1883621607 fi
    1883721608 rm -f conftest.$ac_objext conftest.$ac_ext
    1883821609   cat >conftest.$ac_ext <<_ACEOF
    1883921610-#line 9234 "configure"
    18840 +#line 10004 "configure"
     21611+#line 9878 "configure"
    1884121612 #include "confdefs.h"
    1884221613 #define _LARGEFILE_SOURCE 1
    1884321614 #include <stdio.h>
    18844 @@ -9244,16 +10014,16 @@
     21615@@ -9244,16 +9888,16 @@
    1884521616 }
    1884621617 _ACEOF
    1884721618 rm -f conftest.$ac_objext
    1884821619-if { (eval echo "$as_me:9247: \"$ac_compile\"") >&5
    18849 +if { (eval echo "$as_me:10017: \"$ac_compile\"") >&5
     21620+if { (eval echo "$as_me:9891: \"$ac_compile\"") >&5
    1885021621   (eval $ac_compile) 2>&5
    1885121622   ac_status=$?
    1885221623-  echo "$as_me:9250: \$? = $ac_status" >&5
    18853 +  echo "$as_me:10020: \$? = $ac_status" >&5
     21624+  echo "$as_me:9894: \$? = $ac_status" >&5
    1885421625   (exit $ac_status); } &&
    1885521626          { ac_try='test -s conftest.$ac_objext'
    1885621627-  { (eval echo "$as_me:9253: \"$ac_try\"") >&5
    18857 +  { (eval echo "$as_me:10023: \"$ac_try\"") >&5
     21628+  { (eval echo "$as_me:9897: \"$ac_try\"") >&5
    1885821629   (eval $ac_try) 2>&5
    1885921630   ac_status=$?
    1886021631-  echo "$as_me:9256: \$? = $ac_status" >&5
    18861 +  echo "$as_me:10026: \$? = $ac_status" >&5
     21632+  echo "$as_me:9900: \$? = $ac_status" >&5
    1886221633   (exit $ac_status); }; }; then
    1886321634   ac_cv_sys_largefile_source=1; break
    1886421635 else
    18865 @@ -9264,7 +10034,7 @@
     21636@@ -9264,7 +9908,7 @@
    1886621637   break
    1886721638 done
    1886821639 fi
    1886921640-echo "$as_me:9267: result: $ac_cv_sys_largefile_source" >&5
    18870 +echo "$as_me:10037: result: $ac_cv_sys_largefile_source" >&5
     21641+echo "$as_me:9911: result: $ac_cv_sys_largefile_source" >&5
    1887121642 echo "${ECHO_T}$ac_cv_sys_largefile_source" >&6
    1887221643 if test "$ac_cv_sys_largefile_source" != no; then
    1887321644 
    18874 @@ -9278,13 +10048,13 @@
     21645@@ -9278,13 +9922,13 @@
    1887521646 # We used to try defining _XOPEN_SOURCE=500 too, to work around a bug
    1887621647 # in glibc 2.1.3, but that breaks too many other things.
    1887721648 # If you want fseeko and ftello with glibc, upgrade to a fixed glibc.
    1887821649-echo "$as_me:9281: checking for fseeko" >&5
    18879 +echo "$as_me:10051: checking for fseeko" >&5
     21650+echo "$as_me:9925: checking for fseeko" >&5
    1888021651 echo $ECHO_N "checking for fseeko... $ECHO_C" >&6
    1888121652 if test "${ac_cv_func_fseeko+set}" = set; then
     
    1888421655   cat >conftest.$ac_ext <<_ACEOF
    1888521656-#line 9287 "configure"
    18886 +#line 10057 "configure"
     21657+#line 9931 "configure"
    1888721658 #include "confdefs.h"
    1888821659 #include <stdio.h>
    1888921660 int
    18890 @@ -9296,16 +10066,16 @@
     21661@@ -9296,16 +9940,16 @@
    1889121662 }
    1889221663 _ACEOF
    1889321664 rm -f conftest.$ac_objext conftest$ac_exeext
    1889421665-if { (eval echo "$as_me:9299: \"$ac_link\"") >&5
    18895 +if { (eval echo "$as_me:10069: \"$ac_link\"") >&5
     21666+if { (eval echo "$as_me:9943: \"$ac_link\"") >&5
    1889621667   (eval $ac_link) 2>&5
    1889721668   ac_status=$?
    1889821669-  echo "$as_me:9302: \$? = $ac_status" >&5
    18899 +  echo "$as_me:10072: \$? = $ac_status" >&5
     21670+  echo "$as_me:9946: \$? = $ac_status" >&5
    1890021671   (exit $ac_status); } &&
    1890121672          { ac_try='test -s conftest$ac_exeext'
    1890221673-  { (eval echo "$as_me:9305: \"$ac_try\"") >&5
    18903 +  { (eval echo "$as_me:10075: \"$ac_try\"") >&5
     21674+  { (eval echo "$as_me:9949: \"$ac_try\"") >&5
    1890421675   (eval $ac_try) 2>&5
    1890521676   ac_status=$?
    1890621677-  echo "$as_me:9308: \$? = $ac_status" >&5
    18907 +  echo "$as_me:10078: \$? = $ac_status" >&5
     21678+  echo "$as_me:9952: \$? = $ac_status" >&5
    1890821679   (exit $ac_status); }; }; then
    1890921680   ac_cv_func_fseeko=yes
    1891021681 else
    18911 @@ -9315,7 +10085,7 @@
     21682@@ -9315,7 +9959,7 @@
    1891221683 fi
    1891321684 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    1891421685 fi
    1891521686-echo "$as_me:9318: result: $ac_cv_func_fseeko" >&5
    18916 +echo "$as_me:10088: result: $ac_cv_func_fseeko" >&5
     21687+echo "$as_me:9962: result: $ac_cv_func_fseeko" >&5
    1891721688 echo "${ECHO_T}$ac_cv_func_fseeko" >&6
    1891821689 if test $ac_cv_func_fseeko = yes; then
    1891921690 
    18920 @@ -9336,14 +10106,14 @@
     21691@@ -9336,14 +9980,14 @@
    1892121692        test "$ac_cv_sys_largefile_source" != no && CPPFLAGS="$CPPFLAGS -D_LARGEFILE_SOURCE "
    1892221693        test "$ac_cv_sys_file_offset_bits" != no && CPPFLAGS="$CPPFLAGS -D_FILE_OFFSET_BITS=$ac_cv_sys_file_offset_bits "
    1892321694 
    1892421695-       echo "$as_me:9339: checking whether to use struct dirent64" >&5
    18925 +       echo "$as_me:10109: checking whether to use struct dirent64" >&5
     21696+       echo "$as_me:9983: checking whether to use struct dirent64" >&5
    1892621697 echo $ECHO_N "checking whether to use struct dirent64... $ECHO_C" >&6
    1892721698 if test "${cf_cv_struct_dirent64+set}" = set; then
     
    1893121702                cat >conftest.$ac_ext <<_ACEOF
    1893221703-#line 9346 "configure"
    18933 +#line 10116 "configure"
     21704+#line 9990 "configure"
    1893421705 #include "confdefs.h"
    1893521706 
    1893621707 #include <sys/types.h>
    18937 @@ -9364,16 +10134,16 @@
     21708@@ -9364,16 +10008,16 @@
    1893821709 }
    1893921710 _ACEOF
    1894021711 rm -f conftest.$ac_objext
    1894121712-if { (eval echo "$as_me:9367: \"$ac_compile\"") >&5
    18942 +if { (eval echo "$as_me:10137: \"$ac_compile\"") >&5
     21713+if { (eval echo "$as_me:10011: \"$ac_compile\"") >&5
    1894321714   (eval $ac_compile) 2>&5
    1894421715   ac_status=$?
    1894521716-  echo "$as_me:9370: \$? = $ac_status" >&5
    18946 +  echo "$as_me:10140: \$? = $ac_status" >&5
     21717+  echo "$as_me:10014: \$? = $ac_status" >&5
    1894721718   (exit $ac_status); } &&
    1894821719          { ac_try='test -s conftest.$ac_objext'
    1894921720-  { (eval echo "$as_me:9373: \"$ac_try\"") >&5
    18950 +  { (eval echo "$as_me:10143: \"$ac_try\"") >&5
     21721+  { (eval echo "$as_me:10017: \"$ac_try\"") >&5
    1895121722   (eval $ac_try) 2>&5
    1895221723   ac_status=$?
    1895321724-  echo "$as_me:9376: \$? = $ac_status" >&5
    18954 +  echo "$as_me:10146: \$? = $ac_status" >&5
     21725+  echo "$as_me:10020: \$? = $ac_status" >&5
    1895521726   (exit $ac_status); }; }; then
    1895621727   cf_cv_struct_dirent64=yes
    1895721728 else
    18958 @@ -9384,7 +10154,7 @@
     21729@@ -9384,7 +10028,7 @@
    1895921730 rm -f conftest.$ac_objext conftest.$ac_ext
    1896021731 
    1896121732 fi
    1896221733-echo "$as_me:9387: result: $cf_cv_struct_dirent64" >&5
    18963 +echo "$as_me:10157: result: $cf_cv_struct_dirent64" >&5
     21734+echo "$as_me:10031: result: $cf_cv_struct_dirent64" >&5
    1896421735 echo "${ECHO_T}$cf_cv_struct_dirent64" >&6
    1896521736        test "$cf_cv_struct_dirent64" = yes && cat >>confdefs.h <<\EOF
    1896621737 #define HAVE_STRUCT_DIRENT64 1
    18967 @@ -9393,7 +10163,7 @@
     21738@@ -9393,7 +10037,7 @@
    1896821739     fi
    1896921740 
    1897021741 ###   use option --disable-tparm-varargs to make tparm() conform to X/Open
    1897121742-echo "$as_me:9396: checking if you want tparm not to use X/Open fixed-parameter list" >&5
    18972 +echo "$as_me:10166: checking if you want tparm not to use X/Open fixed-parameter list" >&5
     21743+echo "$as_me:10040: checking if you want tparm not to use X/Open fixed-parameter list" >&5
    1897321744 echo $ECHO_N "checking if you want tparm not to use X/Open fixed-parameter list... $ECHO_C" >&6
    1897421745 
    1897521746 # Check whether --enable-tparm-varargs or --disable-tparm-varargs was given.
    18976 @@ -9403,14 +10173,14 @@
     21747@@ -9403,14 +10047,14 @@
    1897721748 else
    1897821749   with_tparm_varargs=yes
    1897921750 fi;
    1898021751-echo "$as_me:9406: result: $with_tparm_varargs" >&5
    18981 +echo "$as_me:10176: result: $with_tparm_varargs" >&5
     21752+echo "$as_me:10050: result: $with_tparm_varargs" >&5
    1898221753 echo "${ECHO_T}$with_tparm_varargs" >&6
    1898321754 NCURSES_TPARM_VARARGS=0
     
    1898721758 if test "$with_ticlib" != no ; then
    1898821759-echo "$as_me:9413: checking if you want tic library to use explicit dependency on ncurses$LIB_SUFFIX library" >&5
    18989 +echo "$as_me:10183: checking if you want tic library to use explicit dependency on ncurses$LIB_SUFFIX library" >&5
     21760+echo "$as_me:10057: checking if you want tic library to use explicit dependency on ncurses$LIB_SUFFIX library" >&5
    1899021761 echo $ECHO_N "checking if you want tic library to use explicit dependency on ncurses$LIB_SUFFIX library... $ECHO_C" >&6
    1899121762 
    1899221763 # Check whether --enable-tic-depends or --disable-tic-depends was given.
    18993 @@ -9420,14 +10190,14 @@
     21764@@ -9420,14 +10064,14 @@
    1899421765 else
    1899521766   with_tic_depends=yes
    1899621767 fi;
    1899721768-echo "$as_me:9423: result: $with_tic_depends" >&5
    18998 +echo "$as_me:10193: result: $with_tic_depends" >&5
     21769+echo "$as_me:10067: result: $with_tic_depends" >&5
    1899921770 echo "${ECHO_T}$with_tic_depends" >&6
    1900021771 else
     
    1900421775 ###   use option --with-bool to override bool's type
    1900521776-echo "$as_me:9430: checking for type of bool" >&5
    19006 +echo "$as_me:10200: checking for type of bool" >&5
     21777+echo "$as_me:10074: checking for type of bool" >&5
    1900721778 echo $ECHO_N "checking for type of bool... $ECHO_C" >&6
    1900821779 
    1900921780 # Check whether --with-bool or --without-bool was given.
    19010 @@ -9437,10 +10207,10 @@
     21781@@ -9437,10 +10081,10 @@
    1901121782 else
    1901221783   NCURSES_BOOL=auto
    1901321784 fi;
    1901421785-echo "$as_me:9440: result: $NCURSES_BOOL" >&5
    19015 +echo "$as_me:10210: result: $NCURSES_BOOL" >&5
     21786+echo "$as_me:10084: result: $NCURSES_BOOL" >&5
    1901621787 echo "${ECHO_T}$NCURSES_BOOL" >&6
    1901721788 
    1901821789-echo "$as_me:9443: checking for alternate terminal capabilities file" >&5
    19019 +echo "$as_me:10213: checking for alternate terminal capabilities file" >&5
     21790+echo "$as_me:10087: checking for alternate terminal capabilities file" >&5
    1902021791 echo $ECHO_N "checking for alternate terminal capabilities file... $ECHO_C" >&6
    1902121792 
    1902221793 # Check whether --with-caps or --without-caps was given.
    19023 @@ -9451,11 +10221,11 @@
     21794@@ -9451,11 +10095,11 @@
    1902421795   TERMINFO_CAPS=Caps
    1902521796 fi;
    1902621797 test -f "${srcdir}/include/${TERMINFO_CAPS}" || TERMINFO_CAPS=Caps
    1902721798-echo "$as_me:9454: result: $TERMINFO_CAPS" >&5
    19028 +echo "$as_me:10224: result: $TERMINFO_CAPS" >&5
     21799+echo "$as_me:10098: result: $TERMINFO_CAPS" >&5
    1902921800 echo "${ECHO_T}$TERMINFO_CAPS" >&6
    1903021801 
    1903121802 ###   use option --with-chtype to override chtype's type
    1903221803-echo "$as_me:9458: checking for type of chtype" >&5
    19033 +echo "$as_me:10228: checking for type of chtype" >&5
     21804+echo "$as_me:10102: checking for type of chtype" >&5
    1903421805 echo $ECHO_N "checking for type of chtype... $ECHO_C" >&6
    1903521806 
    1903621807 # Check whether --with-chtype or --without-chtype was given.
    19037 @@ -9465,11 +10235,11 @@
     21808@@ -9465,11 +10109,11 @@
    1903821809 else
    1903921810   NCURSES_CHTYPE=auto
    1904021811 fi;
    1904121812-echo "$as_me:9468: result: $NCURSES_CHTYPE" >&5
    19042 +echo "$as_me:10238: result: $NCURSES_CHTYPE" >&5
     21813+echo "$as_me:10112: result: $NCURSES_CHTYPE" >&5
    1904321814 echo "${ECHO_T}$NCURSES_CHTYPE" >&6
    1904421815 
    1904521816 ###   use option --with-ospeed to override ospeed's type
    1904621817-echo "$as_me:9472: checking for type of ospeed" >&5
    19047 +echo "$as_me:10242: checking for type of ospeed" >&5
     21818+echo "$as_me:10116: checking for type of ospeed" >&5
    1904821819 echo $ECHO_N "checking for type of ospeed... $ECHO_C" >&6
    1904921820 
    1905021821 # Check whether --with-ospeed or --without-ospeed was given.
    19051 @@ -9479,11 +10249,11 @@
     21822@@ -9479,11 +10123,11 @@
    1905221823 else
    1905321824   NCURSES_OSPEED=short
    1905421825 fi;
    1905521826-echo "$as_me:9482: result: $NCURSES_OSPEED" >&5
    19056 +echo "$as_me:10252: result: $NCURSES_OSPEED" >&5
     21827+echo "$as_me:10126: result: $NCURSES_OSPEED" >&5
    1905721828 echo "${ECHO_T}$NCURSES_OSPEED" >&6
    1905821829 
    1905921830 ###   use option --with-mmask-t to override mmask_t's type
    1906021831-echo "$as_me:9486: checking for type of mmask_t" >&5
    19061 +echo "$as_me:10256: checking for type of mmask_t" >&5
     21832+echo "$as_me:10130: checking for type of mmask_t" >&5
    1906221833 echo $ECHO_N "checking for type of mmask_t... $ECHO_C" >&6
    1906321834 
    1906421835 # Check whether --with-mmask-t or --without-mmask-t was given.
    19065 @@ -9493,11 +10263,11 @@
     21836@@ -9493,11 +10137,11 @@
    1906621837 else
    1906721838   NCURSES_MMASK_T=auto
    1906821839 fi;
    1906921840-echo "$as_me:9496: result: $NCURSES_MMASK_T" >&5
    19070 +echo "$as_me:10266: result: $NCURSES_MMASK_T" >&5
     21841+echo "$as_me:10140: result: $NCURSES_MMASK_T" >&5
    1907121842 echo "${ECHO_T}$NCURSES_MMASK_T" >&6
    1907221843 
    1907321844 ###   use option --with-ccharw-max to override CCHARW_MAX size
    1907421845-echo "$as_me:9500: checking for size CCHARW_MAX" >&5
    19075 +echo "$as_me:10270: checking for size CCHARW_MAX" >&5
     21846+echo "$as_me:10144: checking for size CCHARW_MAX" >&5
    1907621847 echo $ECHO_N "checking for size CCHARW_MAX... $ECHO_C" >&6
    1907721848 
    1907821849 # Check whether --with-ccharw-max or --without-ccharw-max was given.
    19079 @@ -9507,11 +10277,11 @@
     21850@@ -9507,11 +10151,25 @@
    1908021851 else
    1908121852   NCURSES_CCHARW_MAX=5
    1908221853 fi;
    1908321854-echo "$as_me:9510: result: $NCURSES_CCHARW_MAX" >&5
    19084 +echo "$as_me:10280: result: $NCURSES_CCHARW_MAX" >&5
     21855+echo "$as_me:10154: result: $NCURSES_CCHARW_MAX" >&5
    1908521856 echo "${ECHO_T}$NCURSES_CCHARW_MAX" >&6
    1908621857 
     21858+###   use option --with-tparm-arg to override tparm's argument type
     21859+echo "$as_me:10158: checking for type of tparm args" >&5
     21860+echo $ECHO_N "checking for type of tparm args... $ECHO_C" >&6
     21861+
     21862+# Check whether --with-tparm-arg or --without-tparm-arg was given.
     21863+if test "${with_tparm_arg+set}" = set; then
     21864+  withval="$with_tparm_arg"
     21865+  NCURSES_TPARM_ARG="$withval"
     21866+else
     21867+  NCURSES_TPARM_ARG=long
     21868+fi;
     21869+echo "$as_me:10168: result: $NCURSES_TPARM_ARG" >&5
     21870+echo "${ECHO_T}$NCURSES_TPARM_ARG" >&6
     21871+
    1908721872 ### Enable compiling-in rcs id's
    1908821873-echo "$as_me:9514: checking if RCS identifiers should be compiled-in" >&5
    19089 +echo "$as_me:10284: checking if RCS identifiers should be compiled-in" >&5
     21874+echo "$as_me:10172: checking if RCS identifiers should be compiled-in" >&5
    1909021875 echo $ECHO_N "checking if RCS identifiers should be compiled-in... $ECHO_C" >&6
    1909121876 
    1909221877 # Check whether --with-rcs-ids or --without-rcs-ids was given.
    19093 @@ -9521,7 +10291,7 @@
     21878@@ -9521,7 +10179,7 @@
    1909421879 else
    1909521880   with_rcs_ids=no
    1909621881 fi;
    1909721882-echo "$as_me:9524: result: $with_rcs_ids" >&5
    19098 +echo "$as_me:10294: result: $with_rcs_ids" >&5
     21883+echo "$as_me:10182: result: $with_rcs_ids" >&5
    1909921884 echo "${ECHO_T}$with_rcs_ids" >&6
    1910021885 test "$with_rcs_ids" = yes && cat >>confdefs.h <<\EOF
    1910121886 #define USE_RCS_IDS 1
    19102 @@ -9529,7 +10299,7 @@
     21887@@ -9529,7 +10187,7 @@
    1910321888 
    1910421889 ###############################################################################
    1910521890 
    1910621891-echo "$as_me:9532: checking format of man-pages" >&5
    19107 +echo "$as_me:10302: checking format of man-pages" >&5
     21892+echo "$as_me:10190: checking format of man-pages" >&5
    1910821893 echo $ECHO_N "checking format of man-pages... $ECHO_C" >&6
    1910921894 
    1911021895 # Check whether --with-manpage-format or --without-manpage-format was given.
    19111 @@ -9618,14 +10388,14 @@
     21896@@ -9618,14 +10276,14 @@
    1911221897   ;;
    1911321898 esac
    1911421899 
    1911521900-echo "$as_me:9621: result: $MANPAGE_FORMAT" >&5
    19116 +echo "$as_me:10391: result: $MANPAGE_FORMAT" >&5
     21901+echo "$as_me:10279: result: $MANPAGE_FORMAT" >&5
    1911721902 echo "${ECHO_T}$MANPAGE_FORMAT" >&6
    1911821903 if test -n "$cf_unknown" ; then
    1911921904-  { echo "$as_me:9624: WARNING: Unexpected manpage-format $cf_unknown" >&5
    19120 +  { echo "$as_me:10394: WARNING: Unexpected manpage-format $cf_unknown" >&5
     21905+  { echo "$as_me:10282: WARNING: Unexpected manpage-format $cf_unknown" >&5
    1912121906 echo "$as_me: WARNING: Unexpected manpage-format $cf_unknown" >&2;}
    1912221907 fi
    1912321908 
    1912421909-echo "$as_me:9628: checking for manpage renaming" >&5
    19125 +echo "$as_me:10398: checking for manpage renaming" >&5
     21910+echo "$as_me:10286: checking for manpage renaming" >&5
    1912621911 echo $ECHO_N "checking for manpage renaming... $ECHO_C" >&6
    1912721912 
    1912821913 # Check whether --with-manpage-renames or --without-manpage-renames was given.
    19129 @@ -9653,7 +10423,7 @@
     21914@@ -9653,7 +10311,7 @@
    1913021915   if test -f $srcdir/man/$MANPAGE_RENAMES ; then
    1913121916     MANPAGE_RENAMES=`cd $srcdir/man && pwd`/$MANPAGE_RENAMES
    1913221917   elif test ! -f $MANPAGE_RENAMES ; then
    1913321918-    { { echo "$as_me:9656: error: not a filename: $MANPAGE_RENAMES" >&5
    19134 +    { { echo "$as_me:10426: error: not a filename: $MANPAGE_RENAMES" >&5
     21919+    { { echo "$as_me:10314: error: not a filename: $MANPAGE_RENAMES" >&5
    1913521920 echo "$as_me: error: not a filename: $MANPAGE_RENAMES" >&2;}
    1913621921    { (exit 1); exit 1; }; }
    1913721922   fi
    19138 @@ -9667,10 +10437,10 @@
     21923@@ -9667,10 +10325,10 @@
    1913921924   fi
    1914021925 fi
    1914121926 
    1914221927-echo "$as_me:9670: result: $MANPAGE_RENAMES" >&5
    19143 +echo "$as_me:10440: result: $MANPAGE_RENAMES" >&5
     21928+echo "$as_me:10328: result: $MANPAGE_RENAMES" >&5
    1914421929 echo "${ECHO_T}$MANPAGE_RENAMES" >&6
    1914521930 
    1914621931-echo "$as_me:9673: checking if manpage aliases will be installed" >&5
    19147 +echo "$as_me:10443: checking if manpage aliases will be installed" >&5
     21932+echo "$as_me:10331: checking if manpage aliases will be installed" >&5
    1914821933 echo $ECHO_N "checking if manpage aliases will be installed... $ECHO_C" >&6
    1914921934 
    1915021935 # Check whether --with-manpage-aliases or --without-manpage-aliases was given.
    19151 @@ -9681,7 +10451,7 @@
     21936@@ -9681,7 +10339,7 @@
    1915221937   MANPAGE_ALIASES=yes
    1915321938 fi;
    1915421939 
    1915521940-echo "$as_me:9684: result: $MANPAGE_ALIASES" >&5
    19156 +echo "$as_me:10454: result: $MANPAGE_ALIASES" >&5
     21941+echo "$as_me:10342: result: $MANPAGE_ALIASES" >&5
    1915721942 echo "${ECHO_T}$MANPAGE_ALIASES" >&6
    1915821943 
    1915921944 case "x$LN_S" in #(vi
    19160 @@ -9695,7 +10465,7 @@
     21945@@ -9695,7 +10353,7 @@
    1916121946 
    1916221947 MANPAGE_SYMLINKS=no
    1916321948 if test "$MANPAGE_ALIASES" = yes ; then
    1916421949-echo "$as_me:9698: checking if manpage symlinks should be used" >&5
    19165 +echo "$as_me:10468: checking if manpage symlinks should be used" >&5
     21950+echo "$as_me:10356: checking if manpage symlinks should be used" >&5
    1916621951 echo $ECHO_N "checking if manpage symlinks should be used... $ECHO_C" >&6
    1916721952 
    1916821953 # Check whether --with-manpage-symlinks or --without-manpage-symlinks was given.
    19169 @@ -9708,17 +10478,17 @@
     21954@@ -9708,17 +10366,17 @@
    1917021955 
    1917121956 if test "$$cf_use_symlinks" = no; then
    1917221957 if test "$MANPAGE_SYMLINKS" = yes ; then
    1917321958-       { echo "$as_me:9711: WARNING: cannot make symlinks" >&5
    19174 +       { echo "$as_me:10481: WARNING: cannot make symlinks" >&5
     21959+       { echo "$as_me:10369: WARNING: cannot make symlinks" >&5
    1917521960 echo "$as_me: WARNING: cannot make symlinks" >&2;}
    1917621961        MANPAGE_SYMLINKS=no
     
    1917921964 
    1918021965-echo "$as_me:9717: result: $MANPAGE_SYMLINKS" >&5
    19181 +echo "$as_me:10487: result: $MANPAGE_SYMLINKS" >&5
     21966+echo "$as_me:10375: result: $MANPAGE_SYMLINKS" >&5
    1918221967 echo "${ECHO_T}$MANPAGE_SYMLINKS" >&6
    1918321968 fi
    1918421969 
    1918521970-echo "$as_me:9721: checking for manpage tbl" >&5
    19186 +echo "$as_me:10491: checking for manpage tbl" >&5
     21971+echo "$as_me:10379: checking for manpage tbl" >&5
    1918721972 echo $ECHO_N "checking for manpage tbl... $ECHO_C" >&6
    1918821973 
    1918921974 # Check whether --with-manpage-tbl or --without-manpage-tbl was given.
    19190 @@ -9729,7 +10499,7 @@
     21975@@ -9729,7 +10387,7 @@
    1919121976   MANPAGE_TBL=no
    1919221977 fi;
    1919321978 
    1919421979-echo "$as_me:9732: result: $MANPAGE_TBL" >&5
    19195 +echo "$as_me:10502: result: $MANPAGE_TBL" >&5
     21980+echo "$as_me:10390: result: $MANPAGE_TBL" >&5
    1919621981 echo "${ECHO_T}$MANPAGE_TBL" >&6
    1919721982 
    1919821983   if test "$prefix" = "NONE" ; then
    19199 @@ -9869,7 +10639,9 @@
     21984@@ -9776,6 +10434,7 @@
     21985 # this script is generated by the configure-script CF_MAN_PAGES macro.
     21986 
     21987 prefix="$cf_prefix"
     21988+datarootdir="$datarootdir"
     21989 datadir="$datadir"
     21990 
     21991 NCURSES_MAJOR="$NCURSES_MAJOR"
     21992@@ -9869,7 +10528,9 @@
    1920021993 
    1920121994 if test "$MANPAGE_ALIASES" != no ; then
     
    1920822001 fi
    1920922002 
    19210 @@ -9915,6 +10687,13 @@
     22003@@ -9915,6 +10576,13 @@
    1921122004 fi
    1921222005 CF_EOF
     
    1922222015 cat >>$cf_edit_man <<CF_EOF
    1922322016        sed -e "/\#[    ]*include/s,curses.h,ncurses.h," < \$TMP >\$TMP.out
    19224 @@ -10051,7 +10830,7 @@
     22017@@ -10051,7 +10719,7 @@
    1922522018 ###############################################################################
    1922622019 
    1922722020 ### Note that some functions (such as const) are normally disabled anyway.
    1922822021-echo "$as_me:10054: checking if you want to build with function extensions" >&5
    19229 +echo "$as_me:10833: checking if you want to build with function extensions" >&5
     22022+echo "$as_me:10722: checking if you want to build with function extensions" >&5
    1923022023 echo $ECHO_N "checking if you want to build with function extensions... $ECHO_C" >&6
    1923122024 
    1923222025 # Check whether --enable-ext-funcs or --disable-ext-funcs was given.
    19233 @@ -10061,11 +10840,15 @@
     22026@@ -10061,11 +10729,15 @@
    1923422027 else
    1923522028   with_ext_funcs=yes
    1923622029 fi;
    1923722030-echo "$as_me:10064: result: $with_ext_funcs" >&5
    19238 +echo "$as_me:10843: result: $with_ext_funcs" >&5
     22031+echo "$as_me:10732: result: $with_ext_funcs" >&5
    1923922032 echo "${ECHO_T}$with_ext_funcs" >&6
    1924022033 if test "$with_ext_funcs" = yes ; then
     
    1924822041 EOF
    1924922042 
    19250 @@ -10090,6 +10873,14 @@
     22043@@ -10090,6 +10762,14 @@
    1925122044 EOF
    1925222045 
     
    1926322056 EOF
    1926422057 
    19265 @@ -10103,7 +10894,7 @@
     22058@@ -10103,7 +10783,7 @@
    1926622059        GENERATED_EXT_FUNCS=
    1926722060 fi
    1926822061 
    1926922062-echo "$as_me:10106: checking if you want to build with experimental SCREEN extensions" >&5
    19270 +echo "$as_me:10897: checking if you want to build with experimental SCREEN extensions" >&5
     22063+echo "$as_me:10786: checking if you want to build with experimental SCREEN extensions" >&5
    1927122064 echo $ECHO_N "checking if you want to build with experimental SCREEN extensions... $ECHO_C" >&6
    1927222065 
    1927322066 # Check whether --enable-sp-funcs or --disable-sp-funcs was given.
    19274 @@ -10113,7 +10904,7 @@
     22067@@ -10113,7 +10793,7 @@
    1927522068 else
    1927622069   with_sp_funcs=no
    1927722070 fi;
    1927822071-echo "$as_me:10116: result: $with_sp_funcs" >&5
    19279 +echo "$as_me:10907: result: $with_sp_funcs" >&5
     22072+echo "$as_me:10796: result: $with_sp_funcs" >&5
    1928022073 echo "${ECHO_T}$with_sp_funcs" >&6
    1928122074 if test "$with_sp_funcs" = yes ; then
    1928222075        NCURSES_SP_FUNCS=1
    19283 @@ -10127,7 +10918,7 @@
     22076@@ -10127,7 +10807,7 @@
    1928422077        GENERATED_SP_FUNCS=
    1928522078 fi
    1928622079 
    1928722080-echo "$as_me:10130: checking if you want to build with experimental terminal-driver" >&5
    19288 +echo "$as_me:10921: checking if you want to build with experimental terminal-driver" >&5
     22081+echo "$as_me:10810: checking if you want to build with experimental terminal-driver" >&5
    1928922082 echo $ECHO_N "checking if you want to build with experimental terminal-driver... $ECHO_C" >&6
    1929022083 
    1929122084 # Check whether --enable-term-driver or --disable-term-driver was given.
    19292 @@ -10137,7 +10928,7 @@
     22085@@ -10137,7 +10817,7 @@
    1929322086 else
    1929422087   with_term_driver=no
    1929522088 fi;
    1929622089-echo "$as_me:10140: result: $with_term_driver" >&5
    19297 +echo "$as_me:10931: result: $with_term_driver" >&5
     22090+echo "$as_me:10820: result: $with_term_driver" >&5
    1929822091 echo "${ECHO_T}$with_term_driver" >&6
    1929922092 if test "$with_term_driver" = yes ; then
    1930022093        cat >>confdefs.h <<\EOF
    19301 @@ -10145,14 +10936,14 @@
     22094@@ -10145,14 +10825,14 @@
    1930222095 EOF
    1930322096 
    1930422097        if test "$with_sp_funcs" != yes ; then
    1930522098-               { { echo "$as_me:10148: error: The term-driver option relies upon sp-funcs" >&5
    19306 +               { { echo "$as_me:10939: error: The term-driver option relies upon sp-funcs" >&5
     22099+               { { echo "$as_me:10828: error: The term-driver option relies upon sp-funcs" >&5
    1930722100 echo "$as_me: error: The term-driver option relies upon sp-funcs" >&2;}
    1930822101    { (exit 1); exit 1; }; }
     
    1931222105 ###   use option --enable-const to turn on use of const beyond that in XSI.
    1931322106-echo "$as_me:10155: checking for extended use of const keyword" >&5
    19314 +echo "$as_me:10946: checking for extended use of const keyword" >&5
     22107+echo "$as_me:10835: checking for extended use of const keyword" >&5
    1931522108 echo $ECHO_N "checking for extended use of const keyword... $ECHO_C" >&6
    1931622109 
    1931722110 # Check whether --enable-const or --disable-const was given.
    19318 @@ -10162,7 +10953,7 @@
     22111@@ -10162,7 +10842,7 @@
    1931922112 else
    1932022113   with_ext_const=no
    1932122114 fi;
    1932222115-echo "$as_me:10165: result: $with_ext_const" >&5
    19323 +echo "$as_me:10956: result: $with_ext_const" >&5
     22116+echo "$as_me:10845: result: $with_ext_const" >&5
    1932422117 echo "${ECHO_T}$with_ext_const" >&6
    1932522118 NCURSES_CONST='/*nothing*/'
    1932622119 if test "$with_ext_const" = yes ; then
    19327 @@ -10170,7 +10961,7 @@
     22120@@ -10170,7 +10850,7 @@
    1932822121 fi
    1932922122 
    1933022123 ###   use option --enable-ext-colors to turn on use of colors beyond 16.
    1933122124-echo "$as_me:10173: checking if you want to use extended colors" >&5
    19332 +echo "$as_me:10964: checking if you want to use extended colors" >&5
     22125+echo "$as_me:10853: checking if you want to use extended colors" >&5
    1933322126 echo $ECHO_N "checking if you want to use extended colors... $ECHO_C" >&6
    1933422127 
    1933522128 # Check whether --enable-ext-colors or --disable-ext-colors was given.
    19336 @@ -10180,12 +10971,12 @@
     22129@@ -10180,12 +10860,12 @@
    1933722130 else
    1933822131   with_ext_colors=no
    1933922132 fi;
    1934022133-echo "$as_me:10183: result: $with_ext_colors" >&5
    19341 +echo "$as_me:10974: result: $with_ext_colors" >&5
     22134+echo "$as_me:10863: result: $with_ext_colors" >&5
    1934222135 echo "${ECHO_T}$with_ext_colors" >&6
    1934322136 NCURSES_EXT_COLORS=0
     
    1934522138        if test "$with_widec" != yes ; then
    1934622139-               { { echo "$as_me:10188: error: This option applies only to wide-character library" >&5
    19347 +               { { echo "$as_me:10979: error: This option applies only to wide-character library" >&5
     22140+               { { echo "$as_me:10868: error: This option applies only to wide-character library" >&5
    1934822141 echo "$as_me: error: This option applies only to wide-character library" >&2;}
    1934922142    { (exit 1); exit 1; }; }
    1935022143        else
    19351 @@ -10196,7 +10987,7 @@
     22144@@ -10196,7 +10876,7 @@
    1935222145        5.*)
    1935322146                cf_cv_rel_version=6.0
    1935422147                cf_cv_abi_version=6
    1935522148-               { echo "$as_me:10199: WARNING: Overriding ABI version to $cf_cv_abi_version" >&5
    19356 +               { echo "$as_me:10990: WARNING: Overriding ABI version to $cf_cv_abi_version" >&5
     22149+               { echo "$as_me:10879: WARNING: Overriding ABI version to $cf_cv_abi_version" >&5
    1935722150 echo "$as_me: WARNING: Overriding ABI version to $cf_cv_abi_version" >&2;}
    1935822151                ;;
    1935922152        esac
    19360 @@ -10211,7 +11002,7 @@
     22153@@ -10211,7 +10891,7 @@
    1936122154 fi
    1936222155 
    1936322156 ###   use option --enable-ext-mouse to modify coding to support 5-button mice
    1936422157-echo "$as_me:10214: checking if you want to use extended mouse encoding" >&5
    19365 +echo "$as_me:11005: checking if you want to use extended mouse encoding" >&5
     22158+echo "$as_me:10894: checking if you want to use extended mouse encoding" >&5
    1936622159 echo $ECHO_N "checking if you want to use extended mouse encoding... $ECHO_C" >&6
    1936722160 
    1936822161 # Check whether --enable-ext-mouse or --disable-ext-mouse was given.
    19369 @@ -10221,7 +11012,7 @@
     22162@@ -10221,7 +10901,7 @@
    1937022163 else
    1937122164   with_ext_mouse=no
    1937222165 fi;
    1937322166-echo "$as_me:10224: result: $with_ext_mouse" >&5
    19374 +echo "$as_me:11015: result: $with_ext_mouse" >&5
     22167+echo "$as_me:10904: result: $with_ext_mouse" >&5
    1937522168 echo "${ECHO_T}$with_ext_mouse" >&6
    1937622169 NCURSES_MOUSE_VERSION=1
    1937722170 if test "$with_ext_mouse" = yes ; then
    19378 @@ -10232,7 +11023,7 @@
     22171@@ -10232,7 +10912,7 @@
    1937922172        5.*)
    1938022173                cf_cv_rel_version=6.0
    1938122174                cf_cv_abi_version=6
    1938222175-               { echo "$as_me:10235: WARNING: Overriding ABI version to $cf_cv_abi_version" >&5
    19383 +               { echo "$as_me:11026: WARNING: Overriding ABI version to $cf_cv_abi_version" >&5
     22176+               { echo "$as_me:10915: WARNING: Overriding ABI version to $cf_cv_abi_version" >&5
    1938422177 echo "$as_me: WARNING: Overriding ABI version to $cf_cv_abi_version" >&2;}
    1938522178                ;;
    1938622179        esac
    19387 @@ -10240,7 +11031,7 @@
     22180@@ -10240,7 +10920,7 @@
    1938822181 
    1938922182 fi
    1939022183 
    1939122184-echo "$as_me:10243: checking if you want \$NCURSES_NO_PADDING code" >&5
    19392 +echo "$as_me:11034: checking if you want \$NCURSES_NO_PADDING code" >&5
     22185+echo "$as_me:10923: checking if you want \$NCURSES_NO_PADDING code" >&5
    1939322186 echo $ECHO_N "checking if you want \$NCURSES_NO_PADDING code... $ECHO_C" >&6
    1939422187 
    1939522188 # Check whether --enable-no-padding or --disable-no-padding was given.
    19396 @@ -10250,19 +11041,19 @@
     22189@@ -10250,19 +10930,19 @@
    1939722190 else
    1939822191   with_no_padding=$with_ext_funcs
    1939922192 fi;
    1940022193-echo "$as_me:10253: result: $with_no_padding" >&5
    19401 +echo "$as_me:11044: result: $with_no_padding" >&5
     22194+echo "$as_me:10933: result: $with_no_padding" >&5
    1940222195 echo "${ECHO_T}$with_no_padding" >&6
    1940322196 test "$with_no_padding" = yes && cat >>confdefs.h <<\EOF
     
    1940622199 
    1940722200-echo "$as_me:10259: checking for ANSI C header files" >&5
    19408 +echo "$as_me:11050: checking for ANSI C header files" >&5
     22201+echo "$as_me:10939: checking for ANSI C header files" >&5
    1940922202 echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6
    1941022203 if test "${ac_cv_header_stdc+set}" = set; then
     
    1941322206   cat >conftest.$ac_ext <<_ACEOF
    1941422207-#line 10265 "configure"
    19415 +#line 11056 "configure"
     22208+#line 10945 "configure"
    1941622209 #include "confdefs.h"
    1941722210 #include <stdlib.h>
    1941822211 #include <stdarg.h>
    19419 @@ -10270,13 +11061,13 @@
     22212@@ -10270,13 +10950,13 @@
    1942022213 #include <float.h>
    1942122214 
    1942222215 _ACEOF
    1942322216-if { (eval echo "$as_me:10273: \"$ac_cpp conftest.$ac_ext\"") >&5
    19424 +if { (eval echo "$as_me:11064: \"$ac_cpp conftest.$ac_ext\"") >&5
     22217+if { (eval echo "$as_me:10953: \"$ac_cpp conftest.$ac_ext\"") >&5
    1942522218   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
    1942622219   ac_status=$?
     
    1942922222   cat conftest.err >&5
    1943022223-  echo "$as_me:10279: \$? = $ac_status" >&5
    19431 +  echo "$as_me:11070: \$? = $ac_status" >&5
     22224+  echo "$as_me:10959: \$? = $ac_status" >&5
    1943222225   (exit $ac_status); } >/dev/null; then
    1943322226   if test -s conftest.err; then
    1943422227     ac_cpp_err=$ac_c_preproc_warn_flag
    19435 @@ -10298,7 +11089,7 @@
     22228@@ -10298,7 +10978,7 @@
    1943622229 if test $ac_cv_header_stdc = yes; then
    1943722230   # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
    1943822231   cat >conftest.$ac_ext <<_ACEOF
    1943922232-#line 10301 "configure"
    19440 +#line 11092 "configure"
     22233+#line 10981 "configure"
    1944122234 #include "confdefs.h"
    1944222235 #include <string.h>
    1944322236 
    19444 @@ -10316,7 +11107,7 @@
     22237@@ -10316,7 +10996,7 @@
    1944522238 if test $ac_cv_header_stdc = yes; then
    1944622239   # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
    1944722240   cat >conftest.$ac_ext <<_ACEOF
    1944822241-#line 10319 "configure"
    19449 +#line 11110 "configure"
     22242+#line 10999 "configure"
    1945022243 #include "confdefs.h"
    1945122244 #include <stdlib.h>
    1945222245 
    19453 @@ -10337,7 +11128,7 @@
     22246@@ -10337,7 +11017,7 @@
    1945422247   :
    1945522248 else
    1945622249   cat >conftest.$ac_ext <<_ACEOF
    1945722250-#line 10340 "configure"
    19458 +#line 11131 "configure"
     22251+#line 11020 "configure"
    1945922252 #include "confdefs.h"
    1946022253 #include <ctype.h>
    1946122254 #if ((' ' & 0x0FF) == 0x020)
    19462 @@ -10363,15 +11154,15 @@
     22255@@ -10363,15 +11043,15 @@
    1946322256 }
    1946422257 _ACEOF
    1946522258 rm -f conftest$ac_exeext
    1946622259-if { (eval echo "$as_me:10366: \"$ac_link\"") >&5
    19467 +if { (eval echo "$as_me:11157: \"$ac_link\"") >&5
     22260+if { (eval echo "$as_me:11046: \"$ac_link\"") >&5
    1946822261   (eval $ac_link) 2>&5
    1946922262   ac_status=$?
    1947022263-  echo "$as_me:10369: \$? = $ac_status" >&5
    19471 +  echo "$as_me:11160: \$? = $ac_status" >&5
     22264+  echo "$as_me:11049: \$? = $ac_status" >&5
    1947222265   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
    1947322266-  { (eval echo "$as_me:10371: \"$ac_try\"") >&5
    19474 +  { (eval echo "$as_me:11162: \"$ac_try\"") >&5
     22267+  { (eval echo "$as_me:11051: \"$ac_try\"") >&5
    1947522268   (eval $ac_try) 2>&5
    1947622269   ac_status=$?
    1947722270-  echo "$as_me:10374: \$? = $ac_status" >&5
    19478 +  echo "$as_me:11165: \$? = $ac_status" >&5
     22271+  echo "$as_me:11054: \$? = $ac_status" >&5
    1947922272   (exit $ac_status); }; }; then
    1948022273   :
    1948122274 else
    19482 @@ -10384,7 +11175,7 @@
     22275@@ -10384,7 +11064,7 @@
    1948322276 fi
    1948422277 fi
    1948522278 fi
    1948622279-echo "$as_me:10387: result: $ac_cv_header_stdc" >&5
    19487 +echo "$as_me:11178: result: $ac_cv_header_stdc" >&5
     22280+echo "$as_me:11067: result: $ac_cv_header_stdc" >&5
    1948822281 echo "${ECHO_T}$ac_cv_header_stdc" >&6
    1948922282 if test $ac_cv_header_stdc = yes; then
    1949022283 
    19491 @@ -10400,28 +11191,28 @@
     22284@@ -10400,28 +11080,28 @@
    1949222285                   inttypes.h stdint.h unistd.h
    1949322286 do
    1949422287 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
    1949522288-echo "$as_me:10403: checking for $ac_header" >&5
    19496 +echo "$as_me:11194: checking for $ac_header" >&5
     22289+echo "$as_me:11083: checking for $ac_header" >&5
    1949722290 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
    1949822291 if eval "test \"\${$as_ac_Header+set}\" = set"; then
     
    1950122294   cat >conftest.$ac_ext <<_ACEOF
    1950222295-#line 10409 "configure"
    19503 +#line 11200 "configure"
     22296+#line 11089 "configure"
    1950422297 #include "confdefs.h"
    1950522298 $ac_includes_default
     
    1950822301 rm -f conftest.$ac_objext
    1950922302-if { (eval echo "$as_me:10415: \"$ac_compile\"") >&5
    19510 +if { (eval echo "$as_me:11206: \"$ac_compile\"") >&5
     22303+if { (eval echo "$as_me:11095: \"$ac_compile\"") >&5
    1951122304   (eval $ac_compile) 2>&5
    1951222305   ac_status=$?
    1951322306-  echo "$as_me:10418: \$? = $ac_status" >&5
    19514 +  echo "$as_me:11209: \$? = $ac_status" >&5
     22307+  echo "$as_me:11098: \$? = $ac_status" >&5
    1951522308   (exit $ac_status); } &&
    1951622309          { ac_try='test -s conftest.$ac_objext'
    1951722310-  { (eval echo "$as_me:10421: \"$ac_try\"") >&5
    19518 +  { (eval echo "$as_me:11212: \"$ac_try\"") >&5
     22311+  { (eval echo "$as_me:11101: \"$ac_try\"") >&5
    1951922312   (eval $ac_try) 2>&5
    1952022313   ac_status=$?
    1952122314-  echo "$as_me:10424: \$? = $ac_status" >&5
    19522 +  echo "$as_me:11215: \$? = $ac_status" >&5
     22315+  echo "$as_me:11104: \$? = $ac_status" >&5
    1952322316   (exit $ac_status); }; }; then
    1952422317   eval "$as_ac_Header=yes"
    1952522318 else
    19526 @@ -10431,7 +11222,7 @@
     22319@@ -10431,7 +11111,7 @@
    1952722320 fi
    1952822321 rm -f conftest.$ac_objext conftest.$ac_ext
    1952922322 fi
    1953022323-echo "$as_me:10434: result: `eval echo '${'$as_ac_Header'}'`" >&5
    19531 +echo "$as_me:11225: result: `eval echo '${'$as_ac_Header'}'`" >&5
     22324+echo "$as_me:11114: result: `eval echo '${'$as_ac_Header'}'`" >&5
    1953222325 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
    1953322326 if test `eval echo '${'$as_ac_Header'}'` = yes; then
    1953422327   cat >>confdefs.h <<EOF
    19535 @@ -10441,13 +11232,13 @@
     22328@@ -10441,13 +11121,13 @@
    1953622329 fi
    1953722330 done
    1953822331 
    1953922332-echo "$as_me:10444: checking for signed char" >&5
    19540 +echo "$as_me:11235: checking for signed char" >&5
     22333+echo "$as_me:11124: checking for signed char" >&5
    1954122334 echo $ECHO_N "checking for signed char... $ECHO_C" >&6
    1954222335 if test "${ac_cv_type_signed_char+set}" = set; then
     
    1954522338   cat >conftest.$ac_ext <<_ACEOF
    1954622339-#line 10450 "configure"
    19547 +#line 11241 "configure"
     22340+#line 11130 "configure"
    1954822341 #include "confdefs.h"
    1954922342 $ac_includes_default
    1955022343 int
    19551 @@ -10462,16 +11253,16 @@
     22344@@ -10462,16 +11142,16 @@
    1955222345 }
    1955322346 _ACEOF
    1955422347 rm -f conftest.$ac_objext
    1955522348-if { (eval echo "$as_me:10465: \"$ac_compile\"") >&5
    19556 +if { (eval echo "$as_me:11256: \"$ac_compile\"") >&5
     22349+if { (eval echo "$as_me:11145: \"$ac_compile\"") >&5
    1955722350   (eval $ac_compile) 2>&5
    1955822351   ac_status=$?
    1955922352-  echo "$as_me:10468: \$? = $ac_status" >&5
    19560 +  echo "$as_me:11259: \$? = $ac_status" >&5
     22353+  echo "$as_me:11148: \$? = $ac_status" >&5
    1956122354   (exit $ac_status); } &&
    1956222355          { ac_try='test -s conftest.$ac_objext'
    1956322356-  { (eval echo "$as_me:10471: \"$ac_try\"") >&5
    19564 +  { (eval echo "$as_me:11262: \"$ac_try\"") >&5
     22357+  { (eval echo "$as_me:11151: \"$ac_try\"") >&5
    1956522358   (eval $ac_try) 2>&5
    1956622359   ac_status=$?
    1956722360-  echo "$as_me:10474: \$? = $ac_status" >&5
    19568 +  echo "$as_me:11265: \$? = $ac_status" >&5
     22361+  echo "$as_me:11154: \$? = $ac_status" >&5
    1956922362   (exit $ac_status); }; }; then
    1957022363   ac_cv_type_signed_char=yes
    1957122364 else
    19572 @@ -10481,10 +11272,10 @@
     22365@@ -10481,10 +11161,10 @@
    1957322366 fi
    1957422367 rm -f conftest.$ac_objext conftest.$ac_ext
    1957522368 fi
    1957622369-echo "$as_me:10484: result: $ac_cv_type_signed_char" >&5
    19577 +echo "$as_me:11275: result: $ac_cv_type_signed_char" >&5
     22370+echo "$as_me:11164: result: $ac_cv_type_signed_char" >&5
    1957822371 echo "${ECHO_T}$ac_cv_type_signed_char" >&6
    1957922372 
    1958022373-echo "$as_me:10487: checking size of signed char" >&5
    19581 +echo "$as_me:11278: checking size of signed char" >&5
     22374+echo "$as_me:11167: checking size of signed char" >&5
    1958222375 echo $ECHO_N "checking size of signed char... $ECHO_C" >&6
    1958322376 if test "${ac_cv_sizeof_signed_char+set}" = set; then
    1958422377   echo $ECHO_N "(cached) $ECHO_C" >&6
    19585 @@ -10493,7 +11284,7 @@
     22378@@ -10493,7 +11173,7 @@
    1958622379   if test "$cross_compiling" = yes; then
    1958722380   # Depending upon the size, compute the lo and hi bounds.
    1958822381 cat >conftest.$ac_ext <<_ACEOF
    1958922382-#line 10496 "configure"
    19590 +#line 11287 "configure"
     22383+#line 11176 "configure"
    1959122384 #include "confdefs.h"
    1959222385 $ac_includes_default
    1959322386 int
    19594 @@ -10505,21 +11296,21 @@
     22387@@ -10505,21 +11185,21 @@
    1959522388 }
    1959622389 _ACEOF
    1959722390 rm -f conftest.$ac_objext
    1959822391-if { (eval echo "$as_me:10508: \"$ac_compile\"") >&5
    19599 +if { (eval echo "$as_me:11299: \"$ac_compile\"") >&5
     22392+if { (eval echo "$as_me:11188: \"$ac_compile\"") >&5
    1960022393   (eval $ac_compile) 2>&5
    1960122394   ac_status=$?
    1960222395-  echo "$as_me:10511: \$? = $ac_status" >&5
    19603 +  echo "$as_me:11302: \$? = $ac_status" >&5
     22396+  echo "$as_me:11191: \$? = $ac_status" >&5
    1960422397   (exit $ac_status); } &&
    1960522398          { ac_try='test -s conftest.$ac_objext'
    1960622399-  { (eval echo "$as_me:10514: \"$ac_try\"") >&5
    19607 +  { (eval echo "$as_me:11305: \"$ac_try\"") >&5
     22400+  { (eval echo "$as_me:11194: \"$ac_try\"") >&5
    1960822401   (eval $ac_try) 2>&5
    1960922402   ac_status=$?
    1961022403-  echo "$as_me:10517: \$? = $ac_status" >&5
    19611 +  echo "$as_me:11308: \$? = $ac_status" >&5
     22404+  echo "$as_me:11197: \$? = $ac_status" >&5
    1961222405   (exit $ac_status); }; }; then
    1961322406   ac_lo=0 ac_mid=0
     
    1961522408     cat >conftest.$ac_ext <<_ACEOF
    1961622409-#line 10522 "configure"
    19617 +#line 11313 "configure"
     22410+#line 11202 "configure"
    1961822411 #include "confdefs.h"
    1961922412 $ac_includes_default
    1962022413 int
    19621 @@ -10531,16 +11322,16 @@
     22414@@ -10531,16 +11211,16 @@
    1962222415 }
    1962322416 _ACEOF
    1962422417 rm -f conftest.$ac_objext
    1962522418-if { (eval echo "$as_me:10534: \"$ac_compile\"") >&5
    19626 +if { (eval echo "$as_me:11325: \"$ac_compile\"") >&5
     22419+if { (eval echo "$as_me:11214: \"$ac_compile\"") >&5
    1962722420   (eval $ac_compile) 2>&5
    1962822421   ac_status=$?
    1962922422-  echo "$as_me:10537: \$? = $ac_status" >&5
    19630 +  echo "$as_me:11328: \$? = $ac_status" >&5
     22423+  echo "$as_me:11217: \$? = $ac_status" >&5
    1963122424   (exit $ac_status); } &&
    1963222425          { ac_try='test -s conftest.$ac_objext'
    1963322426-  { (eval echo "$as_me:10540: \"$ac_try\"") >&5
    19634 +  { (eval echo "$as_me:11331: \"$ac_try\"") >&5
     22427+  { (eval echo "$as_me:11220: \"$ac_try\"") >&5
    1963522428   (eval $ac_try) 2>&5
    1963622429   ac_status=$?
    1963722430-  echo "$as_me:10543: \$? = $ac_status" >&5
    19638 +  echo "$as_me:11334: \$? = $ac_status" >&5
     22431+  echo "$as_me:11223: \$? = $ac_status" >&5
    1963922432   (exit $ac_status); }; }; then
    1964022433   ac_hi=$ac_mid; break
    1964122434 else
    19642 @@ -10556,7 +11347,7 @@
     22435@@ -10556,7 +11236,7 @@
    1964322436 ac_hi=-1 ac_mid=-1
    1964422437   while :; do
    1964522438     cat >conftest.$ac_ext <<_ACEOF
    1964622439-#line 10559 "configure"
    19647 +#line 11350 "configure"
     22440+#line 11239 "configure"
    1964822441 #include "confdefs.h"
    1964922442 $ac_includes_default
    1965022443 int
    19651 @@ -10568,16 +11359,16 @@
     22444@@ -10568,16 +11248,16 @@
    1965222445 }
    1965322446 _ACEOF
    1965422447 rm -f conftest.$ac_objext
    1965522448-if { (eval echo "$as_me:10571: \"$ac_compile\"") >&5
    19656 +if { (eval echo "$as_me:11362: \"$ac_compile\"") >&5
     22449+if { (eval echo "$as_me:11251: \"$ac_compile\"") >&5
    1965722450   (eval $ac_compile) 2>&5
    1965822451   ac_status=$?
    1965922452-  echo "$as_me:10574: \$? = $ac_status" >&5
    19660 +  echo "$as_me:11365: \$? = $ac_status" >&5
     22453+  echo "$as_me:11254: \$? = $ac_status" >&5
    1966122454   (exit $ac_status); } &&
    1966222455          { ac_try='test -s conftest.$ac_objext'
    1966322456-  { (eval echo "$as_me:10577: \"$ac_try\"") >&5
    19664 +  { (eval echo "$as_me:11368: \"$ac_try\"") >&5
     22457+  { (eval echo "$as_me:11257: \"$ac_try\"") >&5
    1966522458   (eval $ac_try) 2>&5
    1966622459   ac_status=$?
    1966722460-  echo "$as_me:10580: \$? = $ac_status" >&5
    19668 +  echo "$as_me:11371: \$? = $ac_status" >&5
     22461+  echo "$as_me:11260: \$? = $ac_status" >&5
    1966922462   (exit $ac_status); }; }; then
    1967022463   ac_lo=$ac_mid; break
    1967122464 else
    19672 @@ -10593,7 +11384,7 @@
     22465@@ -10593,7 +11273,7 @@
    1967322466 while test "x$ac_lo" != "x$ac_hi"; do
    1967422467   ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo`
    1967522468   cat >conftest.$ac_ext <<_ACEOF
    1967622469-#line 10596 "configure"
    19677 +#line 11387 "configure"
     22470+#line 11276 "configure"
    1967822471 #include "confdefs.h"
    1967922472 $ac_includes_default
    1968022473 int
    19681 @@ -10605,16 +11396,16 @@
     22474@@ -10605,16 +11285,16 @@
    1968222475 }
    1968322476 _ACEOF
    1968422477 rm -f conftest.$ac_objext
    1968522478-if { (eval echo "$as_me:10608: \"$ac_compile\"") >&5
    19686 +if { (eval echo "$as_me:11399: \"$ac_compile\"") >&5
     22479+if { (eval echo "$as_me:11288: \"$ac_compile\"") >&5
    1968722480   (eval $ac_compile) 2>&5
    1968822481   ac_status=$?
    1968922482-  echo "$as_me:10611: \$? = $ac_status" >&5
    19690 +  echo "$as_me:11402: \$? = $ac_status" >&5
     22483+  echo "$as_me:11291: \$? = $ac_status" >&5
    1969122484   (exit $ac_status); } &&
    1969222485          { ac_try='test -s conftest.$ac_objext'
    1969322486-  { (eval echo "$as_me:10614: \"$ac_try\"") >&5
    19694 +  { (eval echo "$as_me:11405: \"$ac_try\"") >&5
     22487+  { (eval echo "$as_me:11294: \"$ac_try\"") >&5
    1969522488   (eval $ac_try) 2>&5
    1969622489   ac_status=$?
    1969722490-  echo "$as_me:10617: \$? = $ac_status" >&5
    19698 +  echo "$as_me:11408: \$? = $ac_status" >&5
     22491+  echo "$as_me:11297: \$? = $ac_status" >&5
    1969922492   (exit $ac_status); }; }; then
    1970022493   ac_hi=$ac_mid
    1970122494 else
    19702 @@ -10627,12 +11418,12 @@
     22495@@ -10627,12 +11307,12 @@
    1970322496 ac_cv_sizeof_signed_char=$ac_lo
    1970422497 else
    1970522498   if test "$cross_compiling" = yes; then
    1970622499-  { { echo "$as_me:10630: error: cannot run test program while cross compiling" >&5
    19707 +  { { echo "$as_me:11421: error: cannot run test program while cross compiling" >&5
     22500+  { { echo "$as_me:11310: error: cannot run test program while cross compiling" >&5
    1970822501 echo "$as_me: error: cannot run test program while cross compiling" >&2;}
    1970922502    { (exit 1); exit 1; }; }
     
    1971122504   cat >conftest.$ac_ext <<_ACEOF
    1971222505-#line 10635 "configure"
    19713 +#line 11426 "configure"
     22506+#line 11315 "configure"
    1971422507 #include "confdefs.h"
    1971522508 $ac_includes_default
    1971622509 int
    19717 @@ -10648,15 +11439,15 @@
     22510@@ -10648,15 +11328,15 @@
    1971822511 }
    1971922512 _ACEOF
    1972022513 rm -f conftest$ac_exeext
    1972122514-if { (eval echo "$as_me:10651: \"$ac_link\"") >&5
    19722 +if { (eval echo "$as_me:11442: \"$ac_link\"") >&5
     22515+if { (eval echo "$as_me:11331: \"$ac_link\"") >&5
    1972322516   (eval $ac_link) 2>&5
    1972422517   ac_status=$?
    1972522518-  echo "$as_me:10654: \$? = $ac_status" >&5
    19726 +  echo "$as_me:11445: \$? = $ac_status" >&5
     22519+  echo "$as_me:11334: \$? = $ac_status" >&5
    1972722520   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
    1972822521-  { (eval echo "$as_me:10656: \"$ac_try\"") >&5
    19729 +  { (eval echo "$as_me:11447: \"$ac_try\"") >&5
     22522+  { (eval echo "$as_me:11336: \"$ac_try\"") >&5
    1973022523   (eval $ac_try) 2>&5
    1973122524   ac_status=$?
    1973222525-  echo "$as_me:10659: \$? = $ac_status" >&5
    19733 +  echo "$as_me:11450: \$? = $ac_status" >&5
     22526+  echo "$as_me:11339: \$? = $ac_status" >&5
    1973422527   (exit $ac_status); }; }; then
    1973522528   ac_cv_sizeof_signed_char=`cat conftest.val`
    1973622529 else
    19737 @@ -10672,7 +11463,7 @@
     22530@@ -10672,7 +11352,7 @@
    1973822531   ac_cv_sizeof_signed_char=0
    1973922532 fi
    1974022533 fi
    1974122534-echo "$as_me:10675: result: $ac_cv_sizeof_signed_char" >&5
    19742 +echo "$as_me:11466: result: $ac_cv_sizeof_signed_char" >&5
     22535+echo "$as_me:11355: result: $ac_cv_sizeof_signed_char" >&5
    1974322536 echo "${ECHO_T}$ac_cv_sizeof_signed_char" >&6
    1974422537 cat >>confdefs.h <<EOF
    1974522538 #define SIZEOF_SIGNED_CHAR $ac_cv_sizeof_signed_char
    19746 @@ -10683,7 +11474,7 @@
     22539@@ -10683,7 +11363,7 @@
    1974722540 else
    1974822541        NCURSES_SBOOL="char"
    1974922542 fi
    1975022543-echo "$as_me:10686: checking if you want to use signed Boolean array in term.h" >&5
    19751 +echo "$as_me:11477: checking if you want to use signed Boolean array in term.h" >&5
     22544+echo "$as_me:11366: checking if you want to use signed Boolean array in term.h" >&5
    1975222545 echo $ECHO_N "checking if you want to use signed Boolean array in term.h... $ECHO_C" >&6
    1975322546 
    1975422547 # Check whether --enable-signed-char or --disable-signed-char was given.
    19755 @@ -10693,12 +11484,12 @@
     22548@@ -10693,12 +11373,12 @@
    1975622549 else
    1975722550   with_signed_char=no
    1975822551 fi;
    1975922552-echo "$as_me:10696: result: $with_signed_char" >&5
    19760 +echo "$as_me:11487: result: $with_signed_char" >&5
     22553+echo "$as_me:11376: result: $with_signed_char" >&5
    1976122554 echo "${ECHO_T}$with_signed_char" >&6
    1976222555 test "$with_signed_char" != yes && NCURSES_SBOOL="char"
     
    1976422557 ###   use option --enable-sigwinch to turn on use of SIGWINCH logic
    1976522558-echo "$as_me:10701: checking if you want SIGWINCH handler" >&5
    19766 +echo "$as_me:11492: checking if you want SIGWINCH handler" >&5
     22559+echo "$as_me:11381: checking if you want SIGWINCH handler" >&5
    1976722560 echo $ECHO_N "checking if you want SIGWINCH handler... $ECHO_C" >&6
    1976822561 
    1976922562 # Check whether --enable-sigwinch or --disable-sigwinch was given.
    19770 @@ -10708,14 +11499,14 @@
     22563@@ -10708,14 +11388,14 @@
    1977122564 else
    1977222565   with_sigwinch=$with_ext_funcs
    1977322566 fi;
    1977422567-echo "$as_me:10711: result: $with_sigwinch" >&5
    19775 +echo "$as_me:11502: result: $with_sigwinch" >&5
     22568+echo "$as_me:11391: result: $with_sigwinch" >&5
    1977622569 echo "${ECHO_T}$with_sigwinch" >&6
    1977722570 test "$with_sigwinch" = yes && cat >>confdefs.h <<\EOF
     
    1978122574 ###   use option --enable-tcap-names to allow user to define new capabilities
    1978222575-echo "$as_me:10718: checking if you want user-definable terminal capabilities like termcap" >&5
    19783 +echo "$as_me:11509: checking if you want user-definable terminal capabilities like termcap" >&5
     22576+echo "$as_me:11398: checking if you want user-definable terminal capabilities like termcap" >&5
    1978422577 echo $ECHO_N "checking if you want user-definable terminal capabilities like termcap... $ECHO_C" >&6
    1978522578 
    1978622579 # Check whether --enable-tcap-names or --disable-tcap-names was given.
    19787 @@ -10725,7 +11516,7 @@
     22580@@ -10725,7 +11405,7 @@
    1978822581 else
    1978922582   with_tcap_names=$with_ext_funcs
    1979022583 fi;
    1979122584-echo "$as_me:10728: result: $with_tcap_names" >&5
    19792 +echo "$as_me:11519: result: $with_tcap_names" >&5
     22585+echo "$as_me:11408: result: $with_tcap_names" >&5
    1979322586 echo "${ECHO_T}$with_tcap_names" >&6
    1979422587 NCURSES_XNAMES=0
    1979522588 test "$with_tcap_names" = yes && NCURSES_XNAMES=1
    19796 @@ -10733,7 +11524,7 @@
     22589@@ -10733,7 +11413,7 @@
    1979722590 ###############################################################################
    1979822591 # These options are relatively safe to experiment with.
    1979922592 
    1980022593-echo "$as_me:10736: checking if you want all development code" >&5
    19801 +echo "$as_me:11527: checking if you want all development code" >&5
     22594+echo "$as_me:11416: checking if you want all development code" >&5
    1980222595 echo $ECHO_N "checking if you want all development code... $ECHO_C" >&6
    1980322596 
    1980422597 # Check whether --with-develop or --without-develop was given.
    19805 @@ -10743,11 +11534,11 @@
     22598@@ -10743,11 +11423,11 @@
    1980622599 else
    1980722600   with_develop=no
    1980822601 fi;
    1980922602-echo "$as_me:10746: result: $with_develop" >&5
    19810 +echo "$as_me:11537: result: $with_develop" >&5
     22603+echo "$as_me:11426: result: $with_develop" >&5
    1981122604 echo "${ECHO_T}$with_develop" >&6
    1981222605 
    1981322606 ###   use option --enable-hard-tabs to turn on use of hard-tabs optimize
    1981422607-echo "$as_me:10750: checking if you want hard-tabs code" >&5
    19815 +echo "$as_me:11541: checking if you want hard-tabs code" >&5
     22608+echo "$as_me:11430: checking if you want hard-tabs code" >&5
    1981622609 echo $ECHO_N "checking if you want hard-tabs code... $ECHO_C" >&6
    1981722610 
    1981822611 # Check whether --enable-hard-tabs or --disable-hard-tabs was given.
    19819 @@ -10757,14 +11548,14 @@
     22612@@ -10757,14 +11437,14 @@
    1982022613 else
    1982122614   enable_hard_tabs=$with_develop
    1982222615 fi;
    1982322616-echo "$as_me:10760: result: $enable_hard_tabs" >&5
    19824 +echo "$as_me:11551: result: $enable_hard_tabs" >&5
     22617+echo "$as_me:11440: result: $enable_hard_tabs" >&5
    1982522618 echo "${ECHO_T}$enable_hard_tabs" >&6
    1982622619 test "$enable_hard_tabs" = yes && cat >>confdefs.h <<\EOF
     
    1983022623 ###   use option --enable-xmc-glitch to turn on use of magic-cookie optimize
    1983122624-echo "$as_me:10767: checking if you want limited support for xmc" >&5
    19832 +echo "$as_me:11558: checking if you want limited support for xmc" >&5
     22625+echo "$as_me:11447: checking if you want limited support for xmc" >&5
    1983322626 echo $ECHO_N "checking if you want limited support for xmc... $ECHO_C" >&6
    1983422627 
    1983522628 # Check whether --enable-xmc-glitch or --disable-xmc-glitch was given.
    19836 @@ -10774,7 +11565,7 @@
     22629@@ -10774,7 +11454,7 @@
    1983722630 else
    1983822631   enable_xmc_glitch=$with_develop
    1983922632 fi;
    1984022633-echo "$as_me:10777: result: $enable_xmc_glitch" >&5
    19841 +echo "$as_me:11568: result: $enable_xmc_glitch" >&5
     22634+echo "$as_me:11457: result: $enable_xmc_glitch" >&5
    1984222635 echo "${ECHO_T}$enable_xmc_glitch" >&6
    1984322636 test "$enable_xmc_glitch" = yes && cat >>confdefs.h <<\EOF
    1984422637 #define USE_XMC_SUPPORT 1
    19845 @@ -10783,7 +11574,7 @@
     22638@@ -10783,7 +11463,7 @@
    1984622639 ###############################################################################
    1984722640 # These are just experimental, probably should not be in a package:
    1984822641 
    1984922642-echo "$as_me:10786: checking if you do not want to assume colors are white-on-black" >&5
    19850 +echo "$as_me:11577: checking if you do not want to assume colors are white-on-black" >&5
     22643+echo "$as_me:11466: checking if you do not want to assume colors are white-on-black" >&5
    1985122644 echo $ECHO_N "checking if you do not want to assume colors are white-on-black... $ECHO_C" >&6
    1985222645 
    1985322646 # Check whether --enable-assumed-color or --disable-assumed-color was given.
    19854 @@ -10793,14 +11584,14 @@
     22647@@ -10793,14 +11473,14 @@
    1985522648 else
    1985622649   with_assumed_color=yes
    1985722650 fi;
    1985822651-echo "$as_me:10796: result: $with_assumed_color" >&5
    19859 +echo "$as_me:11587: result: $with_assumed_color" >&5
     22652+echo "$as_me:11476: result: $with_assumed_color" >&5
    1986022653 echo "${ECHO_T}$with_assumed_color" >&6
    1986122654 test "$with_assumed_color" = yes && cat >>confdefs.h <<\EOF
     
    1986522658 ###   use option --enable-hashmap to turn on use of hashmap scrolling logic
    1986622659-echo "$as_me:10803: checking if you want hashmap scrolling-optimization code" >&5
    19867 +echo "$as_me:11594: checking if you want hashmap scrolling-optimization code" >&5
     22660+echo "$as_me:11483: checking if you want hashmap scrolling-optimization code" >&5
    1986822661 echo $ECHO_N "checking if you want hashmap scrolling-optimization code... $ECHO_C" >&6
    1986922662 
    1987022663 # Check whether --enable-hashmap or --disable-hashmap was given.
    19871 @@ -10810,14 +11601,14 @@
     22664@@ -10810,14 +11490,14 @@
    1987222665 else
    1987322666   with_hashmap=yes
    1987422667 fi;
    1987522668-echo "$as_me:10813: result: $with_hashmap" >&5
    19876 +echo "$as_me:11604: result: $with_hashmap" >&5
     22669+echo "$as_me:11493: result: $with_hashmap" >&5
    1987722670 echo "${ECHO_T}$with_hashmap" >&6
    1987822671 test "$with_hashmap" = yes && cat >>confdefs.h <<\EOF
     
    1988222675 ###   use option --enable-colorfgbg to turn on use of $COLORFGBG environment
    1988322676-echo "$as_me:10820: checking if you want colorfgbg code" >&5
    19884 +echo "$as_me:11611: checking if you want colorfgbg code" >&5
     22677+echo "$as_me:11500: checking if you want colorfgbg code" >&5
    1988522678 echo $ECHO_N "checking if you want colorfgbg code... $ECHO_C" >&6
    1988622679 
    1988722680 # Check whether --enable-colorfgbg or --disable-colorfgbg was given.
    19888 @@ -10827,14 +11618,14 @@
     22681@@ -10827,14 +11507,14 @@
    1988922682 else
    1989022683   with_colorfgbg=no
    1989122684 fi;
    1989222685-echo "$as_me:10830: result: $with_colorfgbg" >&5
    19893 +echo "$as_me:11621: result: $with_colorfgbg" >&5
     22686+echo "$as_me:11510: result: $with_colorfgbg" >&5
    1989422687 echo "${ECHO_T}$with_colorfgbg" >&6
    1989522688 test "$with_colorfgbg" = yes && cat >>confdefs.h <<\EOF
     
    1989922692 ###   use option --enable-interop to turn on use of bindings used for interop
    1990022693-echo "$as_me:10837: checking if you want interop bindings" >&5
    19901 +echo "$as_me:11628: checking if you want interop bindings" >&5
     22694+echo "$as_me:11517: checking if you want interop bindings" >&5
    1990222695 echo $ECHO_N "checking if you want interop bindings... $ECHO_C" >&6
    1990322696 
    1990422697 # Check whether --enable-interop or --disable-interop was given.
    19905 @@ -10844,7 +11635,7 @@
     22698@@ -10844,7 +11524,7 @@
    1990622699 else
    1990722700   with_exp_interop=no
    1990822701 fi;
    1990922702-echo "$as_me:10847: result: $with_exp_interop" >&5
    19910 +echo "$as_me:11638: result: $with_exp_interop" >&5
     22703+echo "$as_me:11527: result: $with_exp_interop" >&5
    1991122704 echo "${ECHO_T}$with_exp_interop" >&6
    1991222705 
    1991322706 NCURSES_INTEROP_FUNCS=0
    19914 @@ -10853,7 +11644,7 @@
     22707@@ -10853,7 +11533,7 @@
    1991522708 # This is still experimental (20080329), but should ultimately be moved to
    1991622709 # the script-block --with-normal, etc.
    1991722710 
    1991822711-echo "$as_me:10856: checking if you want to link with the pthread library" >&5
    19919 +echo "$as_me:11647: checking if you want to link with the pthread library" >&5
     22712+echo "$as_me:11536: checking if you want to link with the pthread library" >&5
    1992022713 echo $ECHO_N "checking if you want to link with the pthread library... $ECHO_C" >&6
    1992122714 
    1992222715 # Check whether --with-pthread or --without-pthread was given.
    19923 @@ -10863,27 +11654,27 @@
     22716@@ -10863,27 +11543,27 @@
    1992422717 else
    1992522718   with_pthread=no
    1992622719 fi;
    1992722720-echo "$as_me:10866: result: $with_pthread" >&5
    19928 +echo "$as_me:11657: result: $with_pthread" >&5
     22721+echo "$as_me:11546: result: $with_pthread" >&5
    1992922722 echo "${ECHO_T}$with_pthread" >&6
    1993022723 
    1993122724 if test "$with_pthread" != no ; then
    1993222725-    echo "$as_me:10870: checking for pthread.h" >&5
    19933 +    echo "$as_me:11661: checking for pthread.h" >&5
     22726+    echo "$as_me:11550: checking for pthread.h" >&5
    1993422727 echo $ECHO_N "checking for pthread.h... $ECHO_C" >&6
    1993522728 if test "${ac_cv_header_pthread_h+set}" = set; then
     
    1993822731   cat >conftest.$ac_ext <<_ACEOF
    1993922732-#line 10876 "configure"
    19940 +#line 11667 "configure"
     22733+#line 11556 "configure"
    1994122734 #include "confdefs.h"
    1994222735 #include <pthread.h>
    1994322736 _ACEOF
    1994422737-if { (eval echo "$as_me:10880: \"$ac_cpp conftest.$ac_ext\"") >&5
    19945 +if { (eval echo "$as_me:11671: \"$ac_cpp conftest.$ac_ext\"") >&5
     22738+if { (eval echo "$as_me:11560: \"$ac_cpp conftest.$ac_ext\"") >&5
    1994622739   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
    1994722740   ac_status=$?
     
    1995022743   cat conftest.err >&5
    1995122744-  echo "$as_me:10886: \$? = $ac_status" >&5
    19952 +  echo "$as_me:11677: \$? = $ac_status" >&5
     22745+  echo "$as_me:11566: \$? = $ac_status" >&5
    1995322746   (exit $ac_status); } >/dev/null; then
    1995422747   if test -s conftest.err; then
    1995522748     ac_cpp_err=$ac_c_preproc_warn_flag
    19956 @@ -10902,7 +11693,7 @@
     22749@@ -10902,7 +11582,7 @@
    1995722750 fi
    1995822751 rm -f conftest.err conftest.$ac_ext
    1995922752 fi
    1996022753-echo "$as_me:10905: result: $ac_cv_header_pthread_h" >&5
    19961 +echo "$as_me:11696: result: $ac_cv_header_pthread_h" >&5
     22754+echo "$as_me:11585: result: $ac_cv_header_pthread_h" >&5
    1996222755 echo "${ECHO_T}$ac_cv_header_pthread_h" >&6
    1996322756 if test $ac_cv_header_pthread_h = yes; then
    1996422757 
    19965 @@ -10910,12 +11701,14 @@
     22758@@ -10910,12 +11590,14 @@
    1996622759 #define HAVE_PTHREADS_H 1
    1996722760 EOF
     
    1997522768+       for cf_lib_pthread in pthread c_r
    1997622769+       do
    19977 +           echo "$as_me:11706: checking if we can link with the $cf_lib_pthread library" >&5
     22770+           echo "$as_me:11595: checking if we can link with the $cf_lib_pthread library" >&5
    1997822771+echo $ECHO_N "checking if we can link with the $cf_lib_pthread library... $ECHO_C" >&6
    1997922772+           cf_save_LIBS="$LIBS"
    1998022773+           LIBS="-l$cf_lib_pthread $LIBS"
    1998122774+           cat >conftest.$ac_ext <<_ACEOF
    19982 +#line 11711 "configure"
     22775+#line 11600 "configure"
    1998322776 #include "confdefs.h"
    1998422777 
    1998522778 #include <pthread.h>
    19986 @@ -10924,23 +11717,24 @@
     22779@@ -10924,23 +11606,24 @@
    1998722780 main ()
    1998822781 {
     
    1999822791 rm -f conftest.$ac_objext conftest$ac_exeext
    1999922792-if { (eval echo "$as_me:10934: \"$ac_link\"") >&5
    20000 +if { (eval echo "$as_me:11728: \"$ac_link\"") >&5
     22793+if { (eval echo "$as_me:11617: \"$ac_link\"") >&5
    2000122794   (eval $ac_link) 2>&5
    2000222795   ac_status=$?
    2000322796-  echo "$as_me:10937: \$? = $ac_status" >&5
    20004 +  echo "$as_me:11731: \$? = $ac_status" >&5
     22797+  echo "$as_me:11620: \$? = $ac_status" >&5
    2000522798   (exit $ac_status); } &&
    2000622799          { ac_try='test -s conftest$ac_exeext'
    2000722800-  { (eval echo "$as_me:10940: \"$ac_try\"") >&5
    20008 +  { (eval echo "$as_me:11734: \"$ac_try\"") >&5
     22801+  { (eval echo "$as_me:11623: \"$ac_try\"") >&5
    2000922802   (eval $ac_try) 2>&5
    2001022803   ac_status=$?
    2001122804-  echo "$as_me:10943: \$? = $ac_status" >&5
    20012 +  echo "$as_me:11737: \$? = $ac_status" >&5
     22805+  echo "$as_me:11626: \$? = $ac_status" >&5
    2001322806   (exit $ac_status); }; }; then
    2001422807   with_pthread=yes
    2001522808 else
    20016 @@ -10949,34 +11743,36 @@
     22809@@ -10949,34 +11632,36 @@
    2001722810 with_pthread=no
    2001822811 fi
     
    2002122814-        echo "$as_me:10953: result: $with_pthread" >&5
    2002222815+           LIBS="$cf_save_LIBS"
    20023 +           echo "$as_me:11747: result: $with_pthread" >&5
     22816+           echo "$as_me:11636: result: $with_pthread" >&5
    2002422817 echo "${ECHO_T}$with_pthread" >&6
    2002522818+           test "$with_pthread" = yes && break
     
    2003822831-            { { echo "$as_me:10963: error: Cannot link with pthread library" >&5
    2003922832+       else
    20040 +           { { echo "$as_me:11759: error: Cannot link with pthread library" >&5
     22833+           { { echo "$as_me:11648: error: Cannot link with pthread library" >&5
    2004122834 echo "$as_me: error: Cannot link with pthread library" >&2;}
    2004222835    { (exit 1); exit 1; }; }
     
    2005022843 if test "x$with_pthread" != xno; then
    2005122844-       echo "$as_me:10973: checking for pthread_kill" >&5
    20052 +       echo "$as_me:11769: checking for pthread_kill" >&5
     22845+       echo "$as_me:11658: checking for pthread_kill" >&5
    2005322846 echo $ECHO_N "checking for pthread_kill... $ECHO_C" >&6
    2005422847 if test "${ac_cv_func_pthread_kill+set}" = set; then
     
    2005722850   cat >conftest.$ac_ext <<_ACEOF
    2005822851-#line 10979 "configure"
    20059 +#line 11775 "configure"
     22852+#line 11664 "configure"
    2006022853 #include "confdefs.h"
    2006122854 /* System header to define __stub macros and hopefully few prototypes,
    2006222855     which can conflict with char pthread_kill (); below.  */
    20063 @@ -11007,16 +11803,16 @@
     22856@@ -10999,7 +11684,7 @@
     22857 #if defined (__stub_pthread_kill) || defined (__stub___pthread_kill)
     22858 choke me
     22859 #else
     22860-f = pthread_kill;
     22861+f = pthread_kill; /* workaround for ICC 12.0.3 */ if (f == 0) return 1;
     22862 #endif
     22863 
     22864   ;
     22865@@ -11007,16 +11692,16 @@
    2006422866 }
    2006522867 _ACEOF
    2006622868 rm -f conftest.$ac_objext conftest$ac_exeext
    2006722869-if { (eval echo "$as_me:11010: \"$ac_link\"") >&5
    20068 +if { (eval echo "$as_me:11806: \"$ac_link\"") >&5
     22870+if { (eval echo "$as_me:11695: \"$ac_link\"") >&5
    2006922871   (eval $ac_link) 2>&5
    2007022872   ac_status=$?
    2007122873-  echo "$as_me:11013: \$? = $ac_status" >&5
    20072 +  echo "$as_me:11809: \$? = $ac_status" >&5
     22874+  echo "$as_me:11698: \$? = $ac_status" >&5
    2007322875   (exit $ac_status); } &&
    2007422876          { ac_try='test -s conftest$ac_exeext'
    2007522877-  { (eval echo "$as_me:11016: \"$ac_try\"") >&5
    20076 +  { (eval echo "$as_me:11812: \"$ac_try\"") >&5
     22878+  { (eval echo "$as_me:11701: \"$ac_try\"") >&5
    2007722879   (eval $ac_try) 2>&5
    2007822880   ac_status=$?
    2007922881-  echo "$as_me:11019: \$? = $ac_status" >&5
    20080 +  echo "$as_me:11815: \$? = $ac_status" >&5
     22882+  echo "$as_me:11704: \$? = $ac_status" >&5
    2008122883   (exit $ac_status); }; }; then
    2008222884   ac_cv_func_pthread_kill=yes
    2008322885 else
    20084 @@ -11026,11 +11822,11 @@
     22886@@ -11026,11 +11711,11 @@
    2008522887 fi
    2008622888 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    2008722889 fi
    2008822890-echo "$as_me:11029: result: $ac_cv_func_pthread_kill" >&5
    20089 +echo "$as_me:11825: result: $ac_cv_func_pthread_kill" >&5
     22891+echo "$as_me:11714: result: $ac_cv_func_pthread_kill" >&5
    2009022892 echo "${ECHO_T}$ac_cv_func_pthread_kill" >&6
    2009122893 if test $ac_cv_func_pthread_kill = yes; then
    2009222894 
    2009322895-               echo "$as_me:11033: checking if you want to allow EINTR in wgetch with pthreads" >&5
    20094 +               echo "$as_me:11829: checking if you want to allow EINTR in wgetch with pthreads" >&5
     22896+               echo "$as_me:11718: checking if you want to allow EINTR in wgetch with pthreads" >&5
    2009522897 echo $ECHO_N "checking if you want to allow EINTR in wgetch with pthreads... $ECHO_C" >&6
    2009622898 
    2009722899 # Check whether --enable-pthreads-eintr or --disable-pthreads-eintr was given.
    20098 @@ -11040,7 +11836,7 @@
     22900@@ -11040,7 +11725,7 @@
    2009922901 else
    2010022902   use_pthreads_eintr=no
    2010122903 fi;
    2010222904-               echo "$as_me:11043: result: $use_pthreads_eintr" >&5
    20103 +               echo "$as_me:11839: result: $use_pthreads_eintr" >&5
     22905+               echo "$as_me:11728: result: $use_pthreads_eintr" >&5
    2010422906 echo "${ECHO_T}$use_pthreads_eintr" >&6
    2010522907                if test $use_pthreads_eintr = yes ; then
    2010622908                        cat >>confdefs.h <<\EOF
    20107 @@ -11050,7 +11846,7 @@
     22909@@ -11050,7 +11735,7 @@
    2010822910                fi
    2010922911 fi
    2011022912 
    2011122913-       echo "$as_me:11053: checking if you want to use weak-symbols for pthreads" >&5
    20112 +       echo "$as_me:11849: checking if you want to use weak-symbols for pthreads" >&5
     22914+       echo "$as_me:11738: checking if you want to use weak-symbols for pthreads" >&5
    2011322915 echo $ECHO_N "checking if you want to use weak-symbols for pthreads... $ECHO_C" >&6
    2011422916 
    2011522917 # Check whether --enable-weak-symbols or --disable-weak-symbols was given.
    20116 @@ -11060,18 +11856,18 @@
     22918@@ -11060,18 +11745,18 @@
    2011722919 else
    2011822920   use_weak_symbols=no
    2011922921 fi;
    2012022922-       echo "$as_me:11063: result: $use_weak_symbols" >&5
    20121 +       echo "$as_me:11859: result: $use_weak_symbols" >&5
     22923+       echo "$as_me:11748: result: $use_weak_symbols" >&5
    2012222924 echo "${ECHO_T}$use_weak_symbols" >&6
    2012322925        if test "$use_weak_symbols" = yes ; then
    2012422926 
    2012522927-echo "$as_me:11067: checking if $CC supports weak symbols" >&5
    20126 +echo "$as_me:11863: checking if $CC supports weak symbols" >&5
     22928+echo "$as_me:11752: checking if $CC supports weak symbols" >&5
    2012722929 echo $ECHO_N "checking if $CC supports weak symbols... $ECHO_C" >&6
    2012822930 if test "${cf_cv_weak_symbols+set}" = set; then
     
    2013222934 cat >conftest.$ac_ext <<_ACEOF
    2013322935-#line 11074 "configure"
    20134 +#line 11870 "configure"
     22936+#line 11759 "configure"
    2013522937 #include "confdefs.h"
    2013622938 
    2013722939 #include <stdio.h>
    20138 @@ -11097,16 +11893,16 @@
     22940@@ -11097,16 +11782,16 @@
    2013922941 }
    2014022942 _ACEOF
    2014122943 rm -f conftest.$ac_objext
    2014222944-if { (eval echo "$as_me:11100: \"$ac_compile\"") >&5
    20143 +if { (eval echo "$as_me:11896: \"$ac_compile\"") >&5
     22945+if { (eval echo "$as_me:11785: \"$ac_compile\"") >&5
    2014422946   (eval $ac_compile) 2>&5
    2014522947   ac_status=$?
    2014622948-  echo "$as_me:11103: \$? = $ac_status" >&5
    20147 +  echo "$as_me:11899: \$? = $ac_status" >&5
     22949+  echo "$as_me:11788: \$? = $ac_status" >&5
    2014822950   (exit $ac_status); } &&
    2014922951          { ac_try='test -s conftest.$ac_objext'
    2015022952-  { (eval echo "$as_me:11106: \"$ac_try\"") >&5
    20151 +  { (eval echo "$as_me:11902: \"$ac_try\"") >&5
     22953+  { (eval echo "$as_me:11791: \"$ac_try\"") >&5
    2015222954   (eval $ac_try) 2>&5
    2015322955   ac_status=$?
    2015422956-  echo "$as_me:11109: \$? = $ac_status" >&5
    20155 +  echo "$as_me:11905: \$? = $ac_status" >&5
     22957+  echo "$as_me:11794: \$? = $ac_status" >&5
    2015622958   (exit $ac_status); }; }; then
    2015722959   cf_cv_weak_symbols=yes
    2015822960 else
    20159 @@ -11117,7 +11913,7 @@
     22961@@ -11117,7 +11802,7 @@
    2016022962 rm -f conftest.$ac_objext conftest.$ac_ext
    2016122963 
    2016222964 fi
    2016322965-echo "$as_me:11120: result: $cf_cv_weak_symbols" >&5
    20164 +echo "$as_me:11916: result: $cf_cv_weak_symbols" >&5
     22966+echo "$as_me:11805: result: $cf_cv_weak_symbols" >&5
    2016522967 echo "${ECHO_T}$cf_cv_weak_symbols" >&6
    2016622968 
    2016722969        else
    20168 @@ -11148,7 +11944,7 @@
     22970@@ -11148,7 +11833,7 @@
    2016922971 # opaque outside of that, so there is no --enable-opaque option.  We can use
    2017022972 # this option without --with-pthreads, but this will be always set for
    2017122973 # pthreads.
    2017222974-echo "$as_me:11151: checking if you want experimental reentrant code" >&5
    20173 +echo "$as_me:11947: checking if you want experimental reentrant code" >&5
     22975+echo "$as_me:11836: checking if you want experimental reentrant code" >&5
    2017422976 echo $ECHO_N "checking if you want experimental reentrant code... $ECHO_C" >&6
    2017522977 
    2017622978 # Check whether --enable-reentrant or --disable-reentrant was given.
    20177 @@ -11158,7 +11954,7 @@
     22979@@ -11158,7 +11843,7 @@
    2017822980 else
    2017922981   with_reentrant=no
    2018022982 fi;
    2018122983-echo "$as_me:11161: result: $with_reentrant" >&5
    20182 +echo "$as_me:11957: result: $with_reentrant" >&5
     22984+echo "$as_me:11846: result: $with_reentrant" >&5
    2018322985 echo "${ECHO_T}$with_reentrant" >&6
    2018422986 if test "$with_reentrant" = yes ; then
    2018522987        cf_cv_enable_reentrant=1
    20186 @@ -11184,7 +11980,7 @@
     22988@@ -11184,7 +11869,7 @@
    2018722989        5.*)
    2018822990                cf_cv_rel_version=6.0
    2018922991                cf_cv_abi_version=6
    2019022992-               { echo "$as_me:11187: WARNING: Overriding ABI version to $cf_cv_abi_version" >&5
    20191 +               { echo "$as_me:11983: WARNING: Overriding ABI version to $cf_cv_abi_version" >&5
     22993+               { echo "$as_me:11872: WARNING: Overriding ABI version to $cf_cv_abi_version" >&5
    2019222994 echo "$as_me: WARNING: Overriding ABI version to $cf_cv_abi_version" >&2;}
    2019322995                ;;
    2019422996        esac
    20195 @@ -11199,7 +11995,7 @@
     22997@@ -11199,7 +11884,7 @@
    2019622998 
    2019722999 ### Allow using a different wrap-prefix
    2019823000 if test "$cf_cv_enable_reentrant" != 0 || test "$BROKEN_LINKER" = 1 ; then
    2019923001-       echo "$as_me:11202: checking for prefix used to wrap public variables" >&5
    20200 +       echo "$as_me:11998: checking for prefix used to wrap public variables" >&5
     23002+       echo "$as_me:11887: checking for prefix used to wrap public variables" >&5
    2020123003 echo $ECHO_N "checking for prefix used to wrap public variables... $ECHO_C" >&6
    2020223004 
    2020323005 # Check whether --with-wrap-prefix or --without-wrap-prefix was given.
    20204 @@ -11209,7 +12005,7 @@
     23006@@ -11209,7 +11894,7 @@
    2020523007 else
    2020623008   NCURSES_WRAP_PREFIX=_nc_
    2020723009 fi;
    2020823010-       echo "$as_me:11212: result: $NCURSES_WRAP_PREFIX" >&5
    20209 +       echo "$as_me:12008: result: $NCURSES_WRAP_PREFIX" >&5
     23011+       echo "$as_me:11897: result: $NCURSES_WRAP_PREFIX" >&5
    2021023012 echo "${ECHO_T}$NCURSES_WRAP_PREFIX" >&6
    2021123013 else
    2021223014        NCURSES_WRAP_PREFIX=_nc_
    20213 @@ -11219,7 +12015,7 @@
     23015@@ -11219,7 +11904,7 @@
    2021423016 #define NCURSES_WRAP_PREFIX "$NCURSES_WRAP_PREFIX"
    2021523017 EOF
    2021623018 
    2021723019-echo "$as_me:11222: checking if you want experimental safe-sprintf code" >&5
    20218 +echo "$as_me:12018: checking if you want experimental safe-sprintf code" >&5
     23020+echo "$as_me:11907: checking if you want experimental safe-sprintf code" >&5
    2021923021 echo $ECHO_N "checking if you want experimental safe-sprintf code... $ECHO_C" >&6
    2022023022 
    2022123023 # Check whether --enable-safe-sprintf or --disable-safe-sprintf was given.
    20222 @@ -11229,7 +12025,7 @@
     23024@@ -11229,7 +11914,7 @@
    2022323025 else
    2022423026   with_safe_sprintf=no
    2022523027 fi;
    2022623028-echo "$as_me:11232: result: $with_safe_sprintf" >&5
    20227 +echo "$as_me:12028: result: $with_safe_sprintf" >&5
     23029+echo "$as_me:11917: result: $with_safe_sprintf" >&5
    2022823030 echo "${ECHO_T}$with_safe_sprintf" >&6
    2022923031 test "$with_safe_sprintf" = yes && cat >>confdefs.h <<\EOF
    2023023032 #define USE_SAFE_SPRINTF 1
    20231 @@ -11238,7 +12034,7 @@
     23033@@ -11238,7 +11923,7 @@
    2023223034 ###   use option --disable-scroll-hints to turn off use of scroll-hints scrolling logic
    2023323035 # when hashmap is used scroll hints are useless
    2023423036 if test "$with_hashmap" = no ; then
    2023523037-echo "$as_me:11241: checking if you want to experiment without scrolling-hints code" >&5
    20236 +echo "$as_me:12037: checking if you want to experiment without scrolling-hints code" >&5
     23038+echo "$as_me:11926: checking if you want to experiment without scrolling-hints code" >&5
    2023723039 echo $ECHO_N "checking if you want to experiment without scrolling-hints code... $ECHO_C" >&6
    2023823040 
    2023923041 # Check whether --enable-scroll-hints or --disable-scroll-hints was given.
    20240 @@ -11248,7 +12044,7 @@
     23042@@ -11248,7 +11933,7 @@
    2024123043 else
    2024223044   with_scroll_hints=yes
    2024323045 fi;
    2024423046-echo "$as_me:11251: result: $with_scroll_hints" >&5
    20245 +echo "$as_me:12047: result: $with_scroll_hints" >&5
     23047+echo "$as_me:11936: result: $with_scroll_hints" >&5
    2024623048 echo "${ECHO_T}$with_scroll_hints" >&6
    2024723049 test "$with_scroll_hints" = yes && cat >>confdefs.h <<\EOF
    2024823050 #define USE_SCROLL_HINTS 1
    20249 @@ -11256,7 +12052,7 @@
     23051@@ -11256,7 +11941,7 @@
    2025023052 
    2025123053 fi
    2025223054 
    2025323055-echo "$as_me:11259: checking if you want experimental wgetch-events code" >&5
    20254 +echo "$as_me:12055: checking if you want experimental wgetch-events code" >&5
     23056+echo "$as_me:11944: checking if you want experimental wgetch-events code" >&5
    2025523057 echo $ECHO_N "checking if you want experimental wgetch-events code... $ECHO_C" >&6
    2025623058 
    2025723059 # Check whether --enable-wgetch-events or --disable-wgetch-events was given.
    20258 @@ -11266,7 +12062,7 @@
     23060@@ -11266,7 +11951,7 @@
    2025923061 else
    2026023062   with_wgetch_events=no
    2026123063 fi;
    2026223064-echo "$as_me:11269: result: $with_wgetch_events" >&5
    20263 +echo "$as_me:12065: result: $with_wgetch_events" >&5
     23065+echo "$as_me:11954: result: $with_wgetch_events" >&5
    2026423066 echo "${ECHO_T}$with_wgetch_events" >&6
    2026523067 test "$with_wgetch_events" = yes && cat >>confdefs.h <<\EOF
    2026623068 #define NCURSES_WGETCH_EVENTS 1
    20267 @@ -11275,7 +12071,7 @@
     23069@@ -11275,28 +11960,54 @@
    2026823070 ###############################################################################
    2026923071 
    2027023072 ###    use option --disable-echo to suppress full display compiling commands
    2027123073-echo "$as_me:11278: checking if you want to display full commands during build" >&5
    20272 +echo "$as_me:12074: checking if you want to display full commands during build" >&5
    20273  echo $ECHO_N "checking if you want to display full commands during build... $ECHO_C" >&6
     23074-echo $ECHO_N "checking if you want to display full commands during build... $ECHO_C" >&6
     23075+
     23076+echo "$as_me:11964: checking if you want to see long compiling messages" >&5
     23077+echo $ECHO_N "checking if you want to see long compiling messages... $ECHO_C" >&6
    2027423078 
    2027523079 # Check whether --enable-echo or --disable-echo was given.
    20276 @@ -11292,11 +12088,11 @@
     23080 if test "${enable_echo+set}" = set; then
     23081   enableval="$enable_echo"
     23082-  with_echo=$enableval
     23083+  test "$enableval" != no && enableval=yes
     23084+  if test "$enableval" != "yes" ; then
     23085+
     23086+    ECHO_LT='--silent'
     23087+    ECHO_LD='@echo linking $@;'
     23088+    RULE_CC='@echo compiling $<'
     23089+    SHOW_CC='@echo compiling $@'
     23090+    ECHO_CC='@'
     23091+
     23092+  else
     23093+
     23094+    ECHO_LT=''
     23095+    ECHO_LD=''
     23096+    RULE_CC=''
     23097+    SHOW_CC=''
     23098+    ECHO_CC=''
     23099+
     23100+  fi
     23101 else
     23102-  with_echo=yes
     23103+  enableval=yes
     23104+
     23105+    ECHO_LT=''
     23106+    ECHO_LD=''
     23107+    RULE_CC=''
     23108+    SHOW_CC=''
     23109+    ECHO_CC=''
     23110+
     23111 fi;
     23112-if test "$with_echo" = yes; then
     23113+echo "$as_me:11998: result: $enableval" >&5
     23114+echo "${ECHO_T}$enableval" >&6
     23115+
     23116+if test "$enable_echo" = yes; then
     23117        ECHO_LINK=
     23118 else
     23119        ECHO_LINK='@ echo linking $@ ... ;'
    2027723120        test -n "$LIBTOOL" && LIBTOOL="$LIBTOOL --silent"
    2027823121        test -n "$LIBTOOL_CXX" && LIBTOOL_CXX="$LIBTOOL_CXX --silent"
    2027923122 fi
    2028023123-echo "$as_me:11295: result: $with_echo" >&5
    20281 +echo "$as_me:12091: result: $with_echo" >&5
    20282  echo "${ECHO_T}$with_echo" >&6
     23124-echo "${ECHO_T}$with_echo" >&6
    2028323125 
    2028423126 ###    use option --enable-warnings to turn on all gcc warnings
    2028523127-echo "$as_me:11299: checking if you want to see compiler warnings" >&5
    20286 +echo "$as_me:12095: checking if you want to see compiler warnings" >&5
     23128+echo "$as_me:12010: checking if you want to see compiler warnings" >&5
    2028723129 echo $ECHO_N "checking if you want to see compiler warnings... $ECHO_C" >&6
    2028823130 
    2028923131 # Check whether --enable-warnings or --disable-warnings was given.
    20290 @@ -11304,7 +12100,7 @@
     23132@@ -11304,7 +12015,7 @@
    2029123133   enableval="$enable_warnings"
    2029223134   with_warnings=$enableval
    2029323135 fi;
    2029423136-echo "$as_me:11307: result: $with_warnings" >&5
    20295 +echo "$as_me:12103: result: $with_warnings" >&5
     23137+echo "$as_me:12018: result: $with_warnings" >&5
    2029623138 echo "${ECHO_T}$with_warnings" >&6
    2029723139 
    2029823140 if test "x$with_warnings" = "xyes"; then
    20299 @@ -11316,12 +12112,12 @@
     23141@@ -11316,12 +12027,12 @@
    2030023142 if test "$GCC" = yes ; then
    2030123143        case $host_os in
    2030223144        linux*|gnu*)
    2030323145-               echo "$as_me:11319: checking if this is really Intel C compiler" >&5
    20304 +               echo "$as_me:12115: checking if this is really Intel C compiler" >&5
     23146+               echo "$as_me:12030: checking if this is really Intel C compiler" >&5
    2030523147 echo $ECHO_N "checking if this is really Intel C compiler... $ECHO_C" >&6
    2030623148                cf_save_CFLAGS="$CFLAGS"
     
    2030823150                cat >conftest.$ac_ext <<_ACEOF
    2030923151-#line 11324 "configure"
    20310 +#line 12120 "configure"
     23152+#line 12035 "configure"
    2031123153 #include "confdefs.h"
    2031223154 
    2031323155 int
    20314 @@ -11338,16 +12134,16 @@
     23156@@ -11338,16 +12049,16 @@
    2031523157 }
    2031623158 _ACEOF
    2031723159 rm -f conftest.$ac_objext
    2031823160-if { (eval echo "$as_me:11341: \"$ac_compile\"") >&5
    20319 +if { (eval echo "$as_me:12137: \"$ac_compile\"") >&5
     23161+if { (eval echo "$as_me:12052: \"$ac_compile\"") >&5
    2032023162   (eval $ac_compile) 2>&5
    2032123163   ac_status=$?
    2032223164-  echo "$as_me:11344: \$? = $ac_status" >&5
    20323 +  echo "$as_me:12140: \$? = $ac_status" >&5
     23165+  echo "$as_me:12055: \$? = $ac_status" >&5
    2032423166   (exit $ac_status); } &&
    2032523167          { ac_try='test -s conftest.$ac_objext'
    2032623168-  { (eval echo "$as_me:11347: \"$ac_try\"") >&5
    20327 +  { (eval echo "$as_me:12143: \"$ac_try\"") >&5
     23169+  { (eval echo "$as_me:12058: \"$ac_try\"") >&5
    2032823170   (eval $ac_try) 2>&5
    2032923171   ac_status=$?
    2033023172-  echo "$as_me:11350: \$? = $ac_status" >&5
    20331 +  echo "$as_me:12146: \$? = $ac_status" >&5
     23173+  echo "$as_me:12061: \$? = $ac_status" >&5
    2033223174   (exit $ac_status); }; }; then
    2033323175   INTEL_COMPILER=yes
    2033423176 cf_save_CFLAGS="$cf_save_CFLAGS -we147 -no-gcc"
    20335 @@ -11358,14 +12154,14 @@
     23177@@ -11357,15 +12068,64 @@
     23178 cat conftest.$ac_ext >&5
    2033623179 fi
    2033723180 rm -f conftest.$ac_objext conftest.$ac_ext
    20338                 CFLAGS="$cf_save_CFLAGS"
     23181-               CFLAGS="$cf_save_CFLAGS"
    2033923182-               echo "$as_me:11361: result: $INTEL_COMPILER" >&5
    20340 +               echo "$as_me:12157: result: $INTEL_COMPILER" >&5
    20341  echo "${ECHO_T}$INTEL_COMPILER" >&6
    20342                 ;;
    20343         esac
     23183-echo "${ECHO_T}$INTEL_COMPILER" >&6
     23184-               ;;
     23185-       esac
     23186+               CFLAGS="$cf_save_CFLAGS"
     23187+               echo "$as_me:12072: result: $INTEL_COMPILER" >&5
     23188+echo "${ECHO_T}$INTEL_COMPILER" >&6
     23189+               ;;
     23190+       esac
     23191+fi
     23192+
     23193+CLANG_COMPILER=no
     23194+
     23195+if test "$GCC" = yes ; then
     23196+       echo "$as_me:12081: checking if this is really Clang C compiler" >&5
     23197+echo $ECHO_N "checking if this is really Clang C compiler... $ECHO_C" >&6
     23198+       cf_save_CFLAGS="$CFLAGS"
     23199+       CFLAGS="$CFLAGS -Qunused-arguments"
     23200+       cat >conftest.$ac_ext <<_ACEOF
     23201+#line 12086 "configure"
     23202+#include "confdefs.h"
     23203+
     23204+int
     23205+main ()
     23206+{
     23207+
     23208+#ifdef __clang__
     23209+#else
     23210+make an error
     23211+#endif
     23212+
     23213+  ;
     23214+  return 0;
     23215+}
     23216+_ACEOF
     23217+rm -f conftest.$ac_objext
     23218+if { (eval echo "$as_me:12103: \"$ac_compile\"") >&5
     23219+  (eval $ac_compile) 2>&5
     23220+  ac_status=$?
     23221+  echo "$as_me:12106: \$? = $ac_status" >&5
     23222+  (exit $ac_status); } &&
     23223+         { ac_try='test -s conftest.$ac_objext'
     23224+  { (eval echo "$as_me:12109: \"$ac_try\"") >&5
     23225+  (eval $ac_try) 2>&5
     23226+  ac_status=$?
     23227+  echo "$as_me:12112: \$? = $ac_status" >&5
     23228+  (exit $ac_status); }; }; then
     23229+  CLANG_COMPILER=yes
     23230+cf_save_CFLAGS="$cf_save_CFLAGS -Qunused-arguments"
     23231+
     23232+else
     23233+  echo "$as_me: failed program was:" >&5
     23234+cat conftest.$ac_ext >&5
     23235+fi
     23236+rm -f conftest.$ac_objext conftest.$ac_ext
     23237+       CFLAGS="$cf_save_CFLAGS"
     23238+       echo "$as_me:12123: result: $CLANG_COMPILER" >&5
     23239+echo "${ECHO_T}$CLANG_COMPILER" >&6
    2034423240 fi
    2034523241 
    2034623242 cat > conftest.$ac_ext <<EOF
    2034723243-#line 11368 "${as_me:-configure}"
    20348 +#line 12164 "${as_me:-configure}"
     23244+#line 12128 "${as_me:-configure}"
    2034923245 int main(int argc, char *argv[]) { return (argv[argc-1] == 0) ; }
    2035023246 EOF
    2035123247 
    20352 @@ -11382,7 +12178,7 @@
     23248@@ -11382,7 +12142,7 @@
    2035323249 # remark #981: operands are evaluated in unspecified order
    2035423250 # warning #279: controlling expression is constant
    2035523251 
    2035623252-       { echo "$as_me:11385: checking for $CC warning options..." >&5
    20357 +       { echo "$as_me:12181: checking for $CC warning options..." >&5
     23253+       { echo "$as_me:12145: checking for $CC warning options..." >&5
    2035823254 echo "$as_me: checking for $CC warning options..." >&6;}
    2035923255        cf_save_CFLAGS="$CFLAGS"
    2036023256        EXTRA_CFLAGS="-Wall"
    20361 @@ -11398,12 +12194,12 @@
     23257@@ -11398,12 +12158,12 @@
    2036223258                wd981
    2036323259        do
    2036423260                CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt"
    2036523261-               if { (eval echo "$as_me:11401: \"$ac_compile\"") >&5
    20366 +               if { (eval echo "$as_me:12197: \"$ac_compile\"") >&5
     23262+               if { (eval echo "$as_me:12161: \"$ac_compile\"") >&5
    2036723263   (eval $ac_compile) 2>&5
    2036823264   ac_status=$?
    2036923265-  echo "$as_me:11404: \$? = $ac_status" >&5
    20370 +  echo "$as_me:12200: \$? = $ac_status" >&5
     23266+  echo "$as_me:12164: \$? = $ac_status" >&5
    2037123267   (exit $ac_status); }; then
    2037223268-                       test -n "$verbose" && echo "$as_me:11406: result: ... -$cf_opt" >&5
    20373 +                       test -n "$verbose" && echo "$as_me:12202: result: ... -$cf_opt" >&5
     23269+                       test -n "$verbose" && echo "$as_me:12166: result: ... -$cf_opt" >&5
    2037423270 echo "${ECHO_T}... -$cf_opt" >&6
    2037523271                        EXTRA_CFLAGS="$EXTRA_CFLAGS -$cf_opt"
    2037623272                fi
    20377 @@ -11412,7 +12208,7 @@
     23273@@ -11412,7 +12172,7 @@
    2037823274 
    2037923275 elif test "$GCC" = yes
    2038023276 then
    2038123277-       { echo "$as_me:11415: checking for $CC warning options..." >&5
    20382 +       { echo "$as_me:12211: checking for $CC warning options..." >&5
     23278+       { echo "$as_me:12175: checking for $CC warning options..." >&5
    2038323279 echo "$as_me: checking for $CC warning options..." >&6;}
    2038423280        cf_save_CFLAGS="$CFLAGS"
    2038523281        EXTRA_CFLAGS=
    20386 @@ -11432,12 +12228,12 @@
     23282@@ -11432,12 +12192,12 @@
    2038723283                Wundef $cf_warn_CONST Wdeclaration-after-statement Wextra Wno-unknown-pragmas Wswitch-enum
    2038823284        do
    2038923285                CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt"
    2039023286-               if { (eval echo "$as_me:11435: \"$ac_compile\"") >&5
    20391 +               if { (eval echo "$as_me:12231: \"$ac_compile\"") >&5
     23287+               if { (eval echo "$as_me:12195: \"$ac_compile\"") >&5
    2039223288   (eval $ac_compile) 2>&5
    2039323289   ac_status=$?
    2039423290-  echo "$as_me:11438: \$? = $ac_status" >&5
    20395 +  echo "$as_me:12234: \$? = $ac_status" >&5
     23291+  echo "$as_me:12198: \$? = $ac_status" >&5
    2039623292   (exit $ac_status); }; then
    2039723293-                       test -n "$verbose" && echo "$as_me:11440: result: ... -$cf_opt" >&5
    20398 +                       test -n "$verbose" && echo "$as_me:12236: result: ... -$cf_opt" >&5
     23294+                       test -n "$verbose" && echo "$as_me:12200: result: ... -$cf_opt" >&5
    2039923295 echo "${ECHO_T}... -$cf_opt" >&6
    2040023296                        case $cf_opt in #(vi
    2040123297                        Wcast-qual) #(vi
    20402 @@ -11448,7 +12244,7 @@
     23298@@ -11448,7 +12208,17 @@
    2040323299                                [34].*)
    2040423300                                        test -n "$verbose" && echo "    feature is broken in gcc $GCC_VERSION" 1>&6
    2040523301 
    2040623302-echo "${as_me:-configure}:11451: testing feature is broken in gcc $GCC_VERSION ..." 1>&5
    20407 +echo "${as_me:-configure}:12247: testing feature is broken in gcc $GCC_VERSION ..." 1>&5
     23303+echo "${as_me:-configure}:12211: testing feature is broken in gcc $GCC_VERSION ..." 1>&5
     23304+
     23305+                                       continue;;
     23306+                               esac
     23307+                               ;;
     23308+                       Wpointer-arith) #(vi
     23309+                               case $GCC_VERSION in
     23310+                               [12].*)
     23311+                                       test -n "$verbose" && echo "    feature is broken in gcc $GCC_VERSION" 1>&6
     23312+
     23313+echo "${as_me:-configure}:12221: testing feature is broken in gcc $GCC_VERSION ..." 1>&5
    2040823314 
    2040923315                                        continue;;
    2041023316                                esac
    20411 @@ -11468,12 +12264,12 @@
     23317@@ -11468,12 +12238,12 @@
    2041223318 if test "$GCC" = yes ; then
    2041323319        case $host_os in
    2041423320        linux*|gnu*)
    2041523321-               echo "$as_me:11471: checking if this is really Intel C++ compiler" >&5
    20416 +               echo "$as_me:12267: checking if this is really Intel C++ compiler" >&5
     23322+               echo "$as_me:12241: checking if this is really Intel C++ compiler" >&5
    2041723323 echo $ECHO_N "checking if this is really Intel C++ compiler... $ECHO_C" >&6
    2041823324                cf_save_CFLAGS="$CXXFLAGS"
     
    2042023326                cat >conftest.$ac_ext <<_ACEOF
    2042123327-#line 11476 "configure"
    20422 +#line 12272 "configure"
     23328+#line 12246 "configure"
    2042323329 #include "confdefs.h"
    2042423330 
    2042523331 int
    20426 @@ -11490,16 +12286,16 @@
     23332@@ -11490,16 +12260,16 @@
    2042723333 }
    2042823334 _ACEOF
    2042923335 rm -f conftest.$ac_objext
    2043023336-if { (eval echo "$as_me:11493: \"$ac_compile\"") >&5
    20431 +if { (eval echo "$as_me:12289: \"$ac_compile\"") >&5
     23337+if { (eval echo "$as_me:12263: \"$ac_compile\"") >&5
    2043223338   (eval $ac_compile) 2>&5
    2043323339   ac_status=$?
    2043423340-  echo "$as_me:11496: \$? = $ac_status" >&5
    20435 +  echo "$as_me:12292: \$? = $ac_status" >&5
     23341+  echo "$as_me:12266: \$? = $ac_status" >&5
    2043623342   (exit $ac_status); } &&
    2043723343          { ac_try='test -s conftest.$ac_objext'
    2043823344-  { (eval echo "$as_me:11499: \"$ac_try\"") >&5
    20439 +  { (eval echo "$as_me:12295: \"$ac_try\"") >&5
     23345+  { (eval echo "$as_me:12269: \"$ac_try\"") >&5
    2044023346   (eval $ac_try) 2>&5
    2044123347   ac_status=$?
    2044223348-  echo "$as_me:11502: \$? = $ac_status" >&5
    20443 +  echo "$as_me:12298: \$? = $ac_status" >&5
     23349+  echo "$as_me:12272: \$? = $ac_status" >&5
    2044423350   (exit $ac_status); }; }; then
    2044523351   INTEL_CPLUSPLUS=yes
    2044623352 cf_save_CFLAGS="$cf_save_CFLAGS -we147 -no-gcc"
    20447 @@ -11510,7 +12306,7 @@
     23353@@ -11510,12 +12280,61 @@
    2044823354 fi
    2044923355 rm -f conftest.$ac_objext conftest.$ac_ext
    2045023356                CXXFLAGS="$cf_save_CFLAGS"
    2045123357-               echo "$as_me:11513: result: $INTEL_CPLUSPLUS" >&5
    20452 +               echo "$as_me:12309: result: $INTEL_CPLUSPLUS" >&5
     23358+               echo "$as_me:12283: result: $INTEL_CPLUSPLUS" >&5
    2045323359 echo "${ECHO_T}$INTEL_CPLUSPLUS" >&6
    2045423360                ;;
    2045523361        esac
    20456 @@ -11524,7 +12320,7 @@
     23362 fi
     23363 
     23364+CLANG_CPLUSPLUS=no
     23365+
     23366+if test "$GCC" = yes ; then
     23367+       echo "$as_me:12292: checking if this is really Clang C++ compiler" >&5
     23368+echo $ECHO_N "checking if this is really Clang C++ compiler... $ECHO_C" >&6
     23369+       cf_save_CFLAGS="$CXXFLAGS"
     23370+       CXXFLAGS="$CXXFLAGS -Qunused-arguments"
     23371+       cat >conftest.$ac_ext <<_ACEOF
     23372+#line 12297 "configure"
     23373+#include "confdefs.h"
     23374+
     23375+int
     23376+main ()
     23377+{
     23378+
     23379+#ifdef __clang__
     23380+#else
     23381+make an error
     23382+#endif
     23383+
     23384+  ;
     23385+  return 0;
     23386+}
     23387+_ACEOF
     23388+rm -f conftest.$ac_objext
     23389+if { (eval echo "$as_me:12314: \"$ac_compile\"") >&5
     23390+  (eval $ac_compile) 2>&5
     23391+  ac_status=$?
     23392+  echo "$as_me:12317: \$? = $ac_status" >&5
     23393+  (exit $ac_status); } &&
     23394+         { ac_try='test -s conftest.$ac_objext'
     23395+  { (eval echo "$as_me:12320: \"$ac_try\"") >&5
     23396+  (eval $ac_try) 2>&5
     23397+  ac_status=$?
     23398+  echo "$as_me:12323: \$? = $ac_status" >&5
     23399+  (exit $ac_status); }; }; then
     23400+  CLANG_CPLUSPLUS=yes
     23401+cf_save_CFLAGS="$cf_save_CFLAGS -Qunused-arguments"
     23402+
     23403+else
     23404+  echo "$as_me: failed program was:" >&5
     23405+cat conftest.$ac_ext >&5
     23406+fi
     23407+rm -f conftest.$ac_objext conftest.$ac_ext
     23408+       CXXFLAGS="$cf_save_CFLAGS"
     23409+       echo "$as_me:12334: result: $CLANG_CPLUSPLUS" >&5
     23410+echo "${ECHO_T}$CLANG_CPLUSPLUS" >&6
     23411+fi
     23412+
     23413 ac_ext=cc
     23414 ac_cpp='$CXXCPP $CPPFLAGS'
     23415 ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5'
     23416@@ -11524,7 +12343,7 @@
    2045723417 ac_main_return=return
    2045823418 
    2045923419 cat > conftest.$ac_ext <<EOF
    2046023420-#line 11527 "configure"
    20461 +#line 12323 "configure"
     23421+#line 12346 "configure"
    2046223422 int main(int argc, char *argv[]) { return (argv[argc-1] == 0) ; }
    2046323423 EOF
    2046423424 
    20465 @@ -11542,7 +12338,7 @@
     23425@@ -11542,7 +12361,7 @@
    2046623426 # remark #981: operands are evaluated in unspecified order
    2046723427 # warning #269: invalid format string conversion
    2046823428 
    2046923429-       { echo "$as_me:11545: checking for $CC warning options..." >&5
    20470 +       { echo "$as_me:12341: checking for $CC warning options..." >&5
     23430+       { echo "$as_me:12364: checking for $CC warning options..." >&5
    2047123431 echo "$as_me: checking for $CC warning options..." >&6;}
    2047223432        cf_save_CXXFLAGS="$CXXFLAGS"
    2047323433        EXTRA_CXXFLAGS="-Wall"
    20474 @@ -11559,12 +12355,12 @@
     23434@@ -11559,12 +12378,12 @@
    2047523435                wd981
    2047623436        do
    2047723437                CXXFLAGS="$cf_save_CXXFLAGS $EXTRA_CXXFLAGS -$cf_opt"
    2047823438-               if { (eval echo "$as_me:11562: \"$ac_compile\"") >&5
    20479 +               if { (eval echo "$as_me:12358: \"$ac_compile\"") >&5
     23439+               if { (eval echo "$as_me:12381: \"$ac_compile\"") >&5
    2048023440   (eval $ac_compile) 2>&5
    2048123441   ac_status=$?
    2048223442-  echo "$as_me:11565: \$? = $ac_status" >&5
    20483 +  echo "$as_me:12361: \$? = $ac_status" >&5
     23443+  echo "$as_me:12384: \$? = $ac_status" >&5
    2048423444   (exit $ac_status); }; then
    2048523445-                       test -n "$verbose" && echo "$as_me:11567: result: ... -$cf_opt" >&5
    20486 +                       test -n "$verbose" && echo "$as_me:12363: result: ... -$cf_opt" >&5
     23446+                       test -n "$verbose" && echo "$as_me:12386: result: ... -$cf_opt" >&5
    2048723447 echo "${ECHO_T}... -$cf_opt" >&6
    2048823448                        EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS -$cf_opt"
    2048923449                fi
    20490 @@ -11573,7 +12369,7 @@
     23450@@ -11573,7 +12392,7 @@
    2049123451 
    2049223452 elif test "$GXX" = yes
    2049323453 then
    2049423454-       { echo "$as_me:11576: checking for $CXX warning options..." >&5
    20495 +       { echo "$as_me:12372: checking for $CXX warning options..." >&5
     23455+       { echo "$as_me:12395: checking for $CXX warning options..." >&5
    2049623456 echo "$as_me: checking for $CXX warning options..." >&6;}
    2049723457        cf_save_CXXFLAGS="$CXXFLAGS"
    2049823458        EXTRA_CXXFLAGS="-W -Wall"
    20499 @@ -11602,16 +12398,16 @@
     23459@@ -11602,16 +12421,16 @@
    2050023460                Wundef $cf_gxx_extra_warnings Wno-unused
    2050123461        do
    2050223462                CXXFLAGS="$cf_save_CXXFLAGS $EXTRA_CXXFLAGS -Werror -$cf_opt"
    2050323463-               if { (eval echo "$as_me:11605: \"$ac_compile\"") >&5
    20504 +               if { (eval echo "$as_me:12401: \"$ac_compile\"") >&5
     23464+               if { (eval echo "$as_me:12424: \"$ac_compile\"") >&5
    2050523465   (eval $ac_compile) 2>&5
    2050623466   ac_status=$?
    2050723467-  echo "$as_me:11608: \$? = $ac_status" >&5
    20508 +  echo "$as_me:12404: \$? = $ac_status" >&5
     23468+  echo "$as_me:12427: \$? = $ac_status" >&5
    2050923469   (exit $ac_status); }; then
    2051023470-                       test -n "$verbose" && echo "$as_me:11610: result: ... -$cf_opt" >&5
    20511 +                       test -n "$verbose" && echo "$as_me:12406: result: ... -$cf_opt" >&5
     23471+                       test -n "$verbose" && echo "$as_me:12429: result: ... -$cf_opt" >&5
    2051223472 echo "${ECHO_T}... -$cf_opt" >&6
    2051323473                        EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS -$cf_opt"
    2051423474                else
    2051523475-                       test -n "$verbose" && echo "$as_me:11614: result: ... no -$cf_opt" >&5
    20516 +                       test -n "$verbose" && echo "$as_me:12410: result: ... no -$cf_opt" >&5
     23476+                       test -n "$verbose" && echo "$as_me:12433: result: ... no -$cf_opt" >&5
    2051723477 echo "${ECHO_T}... no -$cf_opt" >&6
    2051823478                fi
    2051923479        done
    20520 @@ -11647,10 +12443,10 @@
     23480@@ -11647,10 +12466,10 @@
    2052123481 EOF
    2052223482 if test "$GCC" = yes
    2052323483 then
    2052423484-       { echo "$as_me:11650: checking for $CC __attribute__ directives..." >&5
    20525 +       { echo "$as_me:12446: checking for $CC __attribute__ directives..." >&5
     23485+       { echo "$as_me:12469: checking for $CC __attribute__ directives..." >&5
    2052623486 echo "$as_me: checking for $CC __attribute__ directives..." >&6;}
    2052723487 cat > conftest.$ac_ext <<EOF
    2052823488-#line 11653 "${as_me:-configure}"
    20529 +#line 12449 "${as_me:-configure}"
     23489+#line 12472 "${as_me:-configure}"
    2053023490 #include "confdefs.h"
    2053123491 #include "conftest.h"
    2053223492 #include "conftest.i"
    20533 @@ -11699,12 +12495,12 @@
     23493@@ -11699,12 +12518,12 @@
    2053423494                        ;;
    2053523495                esac
    2053623496 
    2053723497-               if { (eval echo "$as_me:11702: \"$ac_compile\"") >&5
    20538 +               if { (eval echo "$as_me:12498: \"$ac_compile\"") >&5
     23498+               if { (eval echo "$as_me:12521: \"$ac_compile\"") >&5
    2053923499   (eval $ac_compile) 2>&5
    2054023500   ac_status=$?
    2054123501-  echo "$as_me:11705: \$? = $ac_status" >&5
    20542 +  echo "$as_me:12501: \$? = $ac_status" >&5
     23502+  echo "$as_me:12524: \$? = $ac_status" >&5
    2054323503   (exit $ac_status); }; then
    2054423504-                       test -n "$verbose" && echo "$as_me:11707: result: ... $cf_attribute" >&5
    20545 +                       test -n "$verbose" && echo "$as_me:12503: result: ... $cf_attribute" >&5
     23505+                       test -n "$verbose" && echo "$as_me:12526: result: ... $cf_attribute" >&5
    2054623506 echo "${ECHO_T}... $cf_attribute" >&6
    2054723507                        cat conftest.h >>confdefs.h
    2054823508                        case $cf_attribute in #(vi
    20549 @@ -11740,7 +12536,7 @@
    20550  fi
    20551  
     23509@@ -11739,8 +12558,100 @@
     23510 rm -rf conftest*
     23511 fi
     23512 
     23513+echo "$as_me:12561: checking if you want to work around bogus compiler/loader warnings" >&5
     23514+echo $ECHO_N "checking if you want to work around bogus compiler/loader warnings... $ECHO_C" >&6
     23515+
     23516+# Check whether --enable-string-hacks or --disable-string-hacks was given.
     23517+if test "${enable_string_hacks+set}" = set; then
     23518+  enableval="$enable_string_hacks"
     23519+  with_string_hacks=$enableval
     23520+else
     23521+  with_string_hacks=no
     23522+fi;
     23523+echo "$as_me:12571: result: $with_string_hacks" >&5
     23524+echo "${ECHO_T}$with_string_hacks" >&6
     23525+
     23526+if test "x$with_string_hacks" = "xyes"; then
     23527+       cat >>confdefs.h <<\EOF
     23528+#define USE_STRING_HACKS 1
     23529+EOF
     23530+
     23531+       { echo "$as_me:12579: WARNING: enabling string-hacks to work around bogus compiler/loader warnings" >&5
     23532+echo "$as_me: WARNING: enabling string-hacks to work around bogus compiler/loader warnings" >&2;}
     23533+
     23534+for ac_func in strlcat strlcpy snprintf
     23535+do
     23536+as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
     23537+echo "$as_me:12585: checking for $ac_func" >&5
     23538+echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
     23539+if eval "test \"\${$as_ac_var+set}\" = set"; then
     23540+  echo $ECHO_N "(cached) $ECHO_C" >&6
     23541+else
     23542+  cat >conftest.$ac_ext <<_ACEOF
     23543+#line 12591 "configure"
     23544+#include "confdefs.h"
     23545+/* System header to define __stub macros and hopefully few prototypes,
     23546+    which can conflict with char $ac_func (); below.  */
     23547+#include <assert.h>
     23548+/* Override any gcc2 internal prototype to avoid an error.  */
     23549+#ifdef __cplusplus
     23550+extern "C"
     23551+#endif
     23552+/* We use char because int might match the return type of a gcc2
     23553+   builtin and then its argument prototype would still apply.  */
     23554+char $ac_func ();
     23555+char (*f) ();
     23556+
     23557+int
     23558+main ()
     23559+{
     23560+/* The GNU C library defines this for functions which it implements
     23561+    to always fail with ENOSYS.  Some functions are actually named
     23562+    something starting with __ and the normal name is an alias.  */
     23563+#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
     23564+choke me
     23565+#else
     23566+f = $ac_func; /* workaround for ICC 12.0.3 */ if (f == 0) return 1;
     23567+#endif
     23568+
     23569+  ;
     23570+  return 0;
     23571+}
     23572+_ACEOF
     23573+rm -f conftest.$ac_objext conftest$ac_exeext
     23574+if { (eval echo "$as_me:12622: \"$ac_link\"") >&5
     23575+  (eval $ac_link) 2>&5
     23576+  ac_status=$?
     23577+  echo "$as_me:12625: \$? = $ac_status" >&5
     23578+  (exit $ac_status); } &&
     23579+         { ac_try='test -s conftest$ac_exeext'
     23580+  { (eval echo "$as_me:12628: \"$ac_try\"") >&5
     23581+  (eval $ac_try) 2>&5
     23582+  ac_status=$?
     23583+  echo "$as_me:12631: \$? = $ac_status" >&5
     23584+  (exit $ac_status); }; }; then
     23585+  eval "$as_ac_var=yes"
     23586+else
     23587+  echo "$as_me: failed program was:" >&5
     23588+cat conftest.$ac_ext >&5
     23589+eval "$as_ac_var=no"
     23590+fi
     23591+rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
     23592+fi
     23593+echo "$as_me:12641: result: `eval echo '${'$as_ac_var'}'`" >&5
     23594+echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
     23595+if test `eval echo '${'$as_ac_var'}'` = yes; then
     23596+  cat >>confdefs.h <<EOF
     23597+#define `echo "HAVE_$ac_func" | $as_tr_cpp` 1
     23598+EOF
     23599+
     23600+fi
     23601+done
     23602+
     23603+fi
     23604+
    2055223605 ###    use option --enable-assertions to turn on generation of assertion code
    2055323606-echo "$as_me:11743: checking if you want to enable runtime assertions" >&5
    20554 +echo "$as_me:12539: checking if you want to enable runtime assertions" >&5
     23607+echo "$as_me:12654: checking if you want to enable runtime assertions" >&5
    2055523608 echo $ECHO_N "checking if you want to enable runtime assertions... $ECHO_C" >&6
    2055623609 
    2055723610 # Check whether --enable-assertions or --disable-assertions was given.
    20558 @@ -11750,7 +12546,7 @@
     23611@@ -11750,16 +12661,12 @@
    2055923612 else
    2056023613   with_assertions=no
    2056123614 fi;
    2056223615-echo "$as_me:11753: result: $with_assertions" >&5
    20563 +echo "$as_me:12549: result: $with_assertions" >&5
     23616+echo "$as_me:12664: result: $with_assertions" >&5
    2056423617 echo "${ECHO_T}$with_assertions" >&6
    2056523618 if test -n "$GCC"
    2056623619 then
    20567 @@ -11770,7 +12566,7 @@
     23620        if test "$with_assertions" = no
     23621        then
     23622-               cat >>confdefs.h <<\EOF
     23623-#define NDEBUG 1
     23624-EOF
     23625-
     23626                CPPFLAGS="$CPPFLAGS -DNDEBUG"
     23627        else
     23628 
     23629@@ -11770,7 +12677,7 @@
    2056823630 
    2056923631 ###    use option --disable-leaks to suppress "permanent" leaks, for testing
    2057023632 
    2057123633-echo "$as_me:11773: checking if you want to use dmalloc for testing" >&5
    20572 +echo "$as_me:12569: checking if you want to use dmalloc for testing" >&5
     23634+echo "$as_me:12680: checking if you want to use dmalloc for testing" >&5
    2057323635 echo $ECHO_N "checking if you want to use dmalloc for testing... $ECHO_C" >&6
    2057423636 
    2057523637 # Check whether --with-dmalloc or --without-dmalloc was given.
    20576 @@ -11786,7 +12582,7 @@
     23638@@ -11786,7 +12693,7 @@
    2057723639 else
    2057823640   with_dmalloc=
    2057923641 fi;
    2058023642-echo "$as_me:11789: result: ${with_dmalloc:-no}" >&5
    20581 +echo "$as_me:12585: result: ${with_dmalloc:-no}" >&5
     23643+echo "$as_me:12696: result: ${with_dmalloc:-no}" >&5
    2058223644 echo "${ECHO_T}${with_dmalloc:-no}" >&6
    2058323645 
    2058423646 case .$with_cflags in #(vi
    20585 @@ -11880,23 +12676,23 @@
     23647@@ -11880,23 +12787,23 @@
    2058623648 esac
    2058723649 
    2058823650 if test "$with_dmalloc" = yes ; then
    2058923651-       echo "$as_me:11883: checking for dmalloc.h" >&5
    20590 +       echo "$as_me:12679: checking for dmalloc.h" >&5
     23652+       echo "$as_me:12790: checking for dmalloc.h" >&5
    2059123653 echo $ECHO_N "checking for dmalloc.h... $ECHO_C" >&6
    2059223654 if test "${ac_cv_header_dmalloc_h+set}" = set; then
     
    2059523657   cat >conftest.$ac_ext <<_ACEOF
    2059623658-#line 11889 "configure"
    20597 +#line 12685 "configure"
     23659+#line 12796 "configure"
    2059823660 #include "confdefs.h"
    2059923661 #include <dmalloc.h>
    2060023662 _ACEOF
    2060123663-if { (eval echo "$as_me:11893: \"$ac_cpp conftest.$ac_ext\"") >&5
    20602 +if { (eval echo "$as_me:12689: \"$ac_cpp conftest.$ac_ext\"") >&5
     23664+if { (eval echo "$as_me:12800: \"$ac_cpp conftest.$ac_ext\"") >&5
    2060323665   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
    2060423666   ac_status=$?
     
    2060723669   cat conftest.err >&5
    2060823670-  echo "$as_me:11899: \$? = $ac_status" >&5
    20609 +  echo "$as_me:12695: \$? = $ac_status" >&5
     23671+  echo "$as_me:12806: \$? = $ac_status" >&5
    2061023672   (exit $ac_status); } >/dev/null; then
    2061123673   if test -s conftest.err; then
    2061223674     ac_cpp_err=$ac_c_preproc_warn_flag
    20613 @@ -11915,11 +12711,11 @@
     23675@@ -11915,11 +12822,11 @@
    2061423676 fi
    2061523677 rm -f conftest.err conftest.$ac_ext
    2061623678 fi
    2061723679-echo "$as_me:11918: result: $ac_cv_header_dmalloc_h" >&5
    20618 +echo "$as_me:12714: result: $ac_cv_header_dmalloc_h" >&5
     23680+echo "$as_me:12825: result: $ac_cv_header_dmalloc_h" >&5
    2061923681 echo "${ECHO_T}$ac_cv_header_dmalloc_h" >&6
    2062023682 if test $ac_cv_header_dmalloc_h = yes; then
    2062123683 
    2062223684-echo "$as_me:11922: checking for dmalloc_debug in -ldmalloc" >&5
    20623 +echo "$as_me:12718: checking for dmalloc_debug in -ldmalloc" >&5
     23685+echo "$as_me:12829: checking for dmalloc_debug in -ldmalloc" >&5
    2062423686 echo $ECHO_N "checking for dmalloc_debug in -ldmalloc... $ECHO_C" >&6
    2062523687 if test "${ac_cv_lib_dmalloc_dmalloc_debug+set}" = set; then
    2062623688   echo $ECHO_N "(cached) $ECHO_C" >&6
    20627 @@ -11927,7 +12723,7 @@
     23689@@ -11927,7 +12834,7 @@
    2062823690   ac_check_lib_save_LIBS=$LIBS
    2062923691 LIBS="-ldmalloc  $LIBS"
    2063023692 cat >conftest.$ac_ext <<_ACEOF
    2063123693-#line 11930 "configure"
    20632 +#line 12726 "configure"
     23694+#line 12837 "configure"
    2063323695 #include "confdefs.h"
    2063423696 
    2063523697 /* Override any gcc2 internal prototype to avoid an error.  */
    20636 @@ -11946,16 +12742,16 @@
     23698@@ -11946,16 +12853,16 @@
    2063723699 }
    2063823700 _ACEOF
    2063923701 rm -f conftest.$ac_objext conftest$ac_exeext
    2064023702-if { (eval echo "$as_me:11949: \"$ac_link\"") >&5
    20641 +if { (eval echo "$as_me:12745: \"$ac_link\"") >&5
     23703+if { (eval echo "$as_me:12856: \"$ac_link\"") >&5
    2064223704   (eval $ac_link) 2>&5
    2064323705   ac_status=$?
    2064423706-  echo "$as_me:11952: \$? = $ac_status" >&5
    20645 +  echo "$as_me:12748: \$? = $ac_status" >&5
     23707+  echo "$as_me:12859: \$? = $ac_status" >&5
    2064623708   (exit $ac_status); } &&
    2064723709          { ac_try='test -s conftest$ac_exeext'
    2064823710-  { (eval echo "$as_me:11955: \"$ac_try\"") >&5
    20649 +  { (eval echo "$as_me:12751: \"$ac_try\"") >&5
     23711+  { (eval echo "$as_me:12862: \"$ac_try\"") >&5
    2065023712   (eval $ac_try) 2>&5
    2065123713   ac_status=$?
    2065223714-  echo "$as_me:11958: \$? = $ac_status" >&5
    20653 +  echo "$as_me:12754: \$? = $ac_status" >&5
     23715+  echo "$as_me:12865: \$? = $ac_status" >&5
    2065423716   (exit $ac_status); }; }; then
    2065523717   ac_cv_lib_dmalloc_dmalloc_debug=yes
    2065623718 else
    20657 @@ -11966,7 +12762,7 @@
     23719@@ -11966,7 +12873,7 @@
    2065823720 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    2065923721 LIBS=$ac_check_lib_save_LIBS
    2066023722 fi
    2066123723-echo "$as_me:11969: result: $ac_cv_lib_dmalloc_dmalloc_debug" >&5
    20662 +echo "$as_me:12765: result: $ac_cv_lib_dmalloc_dmalloc_debug" >&5
     23724+echo "$as_me:12876: result: $ac_cv_lib_dmalloc_dmalloc_debug" >&5
    2066323725 echo "${ECHO_T}$ac_cv_lib_dmalloc_dmalloc_debug" >&6
    2066423726 if test $ac_cv_lib_dmalloc_dmalloc_debug = yes; then
    2066523727   cat >>confdefs.h <<EOF
    20666 @@ -11981,7 +12777,7 @@
     23728@@ -11981,7 +12888,7 @@
    2066723729 
    2066823730 fi
    2066923731 
    2067023732-echo "$as_me:11984: checking if you want to use dbmalloc for testing" >&5
    20671 +echo "$as_me:12780: checking if you want to use dbmalloc for testing" >&5
     23733+echo "$as_me:12891: checking if you want to use dbmalloc for testing" >&5
    2067223734 echo $ECHO_N "checking if you want to use dbmalloc for testing... $ECHO_C" >&6
    2067323735 
    2067423736 # Check whether --with-dbmalloc or --without-dbmalloc was given.
    20675 @@ -11997,7 +12793,7 @@
     23737@@ -11997,7 +12904,7 @@
    2067623738 else
    2067723739   with_dbmalloc=
    2067823740 fi;
    2067923741-echo "$as_me:12000: result: ${with_dbmalloc:-no}" >&5
    20680 +echo "$as_me:12796: result: ${with_dbmalloc:-no}" >&5
     23742+echo "$as_me:12907: result: ${with_dbmalloc:-no}" >&5
    2068123743 echo "${ECHO_T}${with_dbmalloc:-no}" >&6
    2068223744 
    2068323745 case .$with_cflags in #(vi
    20684 @@ -12091,23 +12887,23 @@
     23746@@ -12091,23 +12998,23 @@
    2068523747 esac
    2068623748 
    2068723749 if test "$with_dbmalloc" = yes ; then
    2068823750-       echo "$as_me:12094: checking for dbmalloc.h" >&5
    20689 +       echo "$as_me:12890: checking for dbmalloc.h" >&5
     23751+       echo "$as_me:13001: checking for dbmalloc.h" >&5
    2069023752 echo $ECHO_N "checking for dbmalloc.h... $ECHO_C" >&6
    2069123753 if test "${ac_cv_header_dbmalloc_h+set}" = set; then
     
    2069423756   cat >conftest.$ac_ext <<_ACEOF
    2069523757-#line 12100 "configure"
    20696 +#line 12896 "configure"
     23758+#line 13007 "configure"
    2069723759 #include "confdefs.h"
    2069823760 #include <dbmalloc.h>
    2069923761 _ACEOF
    2070023762-if { (eval echo "$as_me:12104: \"$ac_cpp conftest.$ac_ext\"") >&5
    20701 +if { (eval echo "$as_me:12900: \"$ac_cpp conftest.$ac_ext\"") >&5
     23763+if { (eval echo "$as_me:13011: \"$ac_cpp conftest.$ac_ext\"") >&5
    2070223764   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
    2070323765   ac_status=$?
     
    2070623768   cat conftest.err >&5
    2070723769-  echo "$as_me:12110: \$? = $ac_status" >&5
    20708 +  echo "$as_me:12906: \$? = $ac_status" >&5
     23770+  echo "$as_me:13017: \$? = $ac_status" >&5
    2070923771   (exit $ac_status); } >/dev/null; then
    2071023772   if test -s conftest.err; then
    2071123773     ac_cpp_err=$ac_c_preproc_warn_flag
    20712 @@ -12126,11 +12922,11 @@
     23774@@ -12126,11 +13033,11 @@
    2071323775 fi
    2071423776 rm -f conftest.err conftest.$ac_ext
    2071523777 fi
    2071623778-echo "$as_me:12129: result: $ac_cv_header_dbmalloc_h" >&5
    20717 +echo "$as_me:12925: result: $ac_cv_header_dbmalloc_h" >&5
     23779+echo "$as_me:13036: result: $ac_cv_header_dbmalloc_h" >&5
    2071823780 echo "${ECHO_T}$ac_cv_header_dbmalloc_h" >&6
    2071923781 if test $ac_cv_header_dbmalloc_h = yes; then
    2072023782 
    2072123783-echo "$as_me:12133: checking for debug_malloc in -ldbmalloc" >&5
    20722 +echo "$as_me:12929: checking for debug_malloc in -ldbmalloc" >&5
     23784+echo "$as_me:13040: checking for debug_malloc in -ldbmalloc" >&5
    2072323785 echo $ECHO_N "checking for debug_malloc in -ldbmalloc... $ECHO_C" >&6
    2072423786 if test "${ac_cv_lib_dbmalloc_debug_malloc+set}" = set; then
    2072523787   echo $ECHO_N "(cached) $ECHO_C" >&6
    20726 @@ -12138,7 +12934,7 @@
     23788@@ -12138,7 +13045,7 @@
    2072723789   ac_check_lib_save_LIBS=$LIBS
    2072823790 LIBS="-ldbmalloc  $LIBS"
    2072923791 cat >conftest.$ac_ext <<_ACEOF
    2073023792-#line 12141 "configure"
    20731 +#line 12937 "configure"
     23793+#line 13048 "configure"
    2073223794 #include "confdefs.h"
    2073323795 
    2073423796 /* Override any gcc2 internal prototype to avoid an error.  */
    20735 @@ -12157,16 +12953,16 @@
     23797@@ -12157,16 +13064,16 @@
    2073623798 }
    2073723799 _ACEOF
    2073823800 rm -f conftest.$ac_objext conftest$ac_exeext
    2073923801-if { (eval echo "$as_me:12160: \"$ac_link\"") >&5
    20740 +if { (eval echo "$as_me:12956: \"$ac_link\"") >&5
     23802+if { (eval echo "$as_me:13067: \"$ac_link\"") >&5
    2074123803   (eval $ac_link) 2>&5
    2074223804   ac_status=$?
    2074323805-  echo "$as_me:12163: \$? = $ac_status" >&5
    20744 +  echo "$as_me:12959: \$? = $ac_status" >&5
     23806+  echo "$as_me:13070: \$? = $ac_status" >&5
    2074523807   (exit $ac_status); } &&
    2074623808          { ac_try='test -s conftest$ac_exeext'
    2074723809-  { (eval echo "$as_me:12166: \"$ac_try\"") >&5
    20748 +  { (eval echo "$as_me:12962: \"$ac_try\"") >&5
     23810+  { (eval echo "$as_me:13073: \"$ac_try\"") >&5
    2074923811   (eval $ac_try) 2>&5
    2075023812   ac_status=$?
    2075123813-  echo "$as_me:12169: \$? = $ac_status" >&5
    20752 +  echo "$as_me:12965: \$? = $ac_status" >&5
     23814+  echo "$as_me:13076: \$? = $ac_status" >&5
    2075323815   (exit $ac_status); }; }; then
    2075423816   ac_cv_lib_dbmalloc_debug_malloc=yes
    2075523817 else
    20756 @@ -12177,7 +12973,7 @@
     23818@@ -12177,7 +13084,7 @@
    2075723819 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    2075823820 LIBS=$ac_check_lib_save_LIBS
    2075923821 fi
    2076023822-echo "$as_me:12180: result: $ac_cv_lib_dbmalloc_debug_malloc" >&5
    20761 +echo "$as_me:12976: result: $ac_cv_lib_dbmalloc_debug_malloc" >&5
     23823+echo "$as_me:13087: result: $ac_cv_lib_dbmalloc_debug_malloc" >&5
    2076223824 echo "${ECHO_T}$ac_cv_lib_dbmalloc_debug_malloc" >&6
    2076323825 if test $ac_cv_lib_dbmalloc_debug_malloc = yes; then
    2076423826   cat >>confdefs.h <<EOF
    20765 @@ -12192,7 +12988,7 @@
     23827@@ -12192,7 +13099,7 @@
    2076623828 
    2076723829 fi
    2076823830 
    2076923831-echo "$as_me:12195: checking if you want to use valgrind for testing" >&5
    20770 +echo "$as_me:12991: checking if you want to use valgrind for testing" >&5
     23832+echo "$as_me:13102: checking if you want to use valgrind for testing" >&5
    2077123833 echo $ECHO_N "checking if you want to use valgrind for testing... $ECHO_C" >&6
    2077223834 
    2077323835 # Check whether --with-valgrind or --without-valgrind was given.
    20774 @@ -12208,7 +13004,7 @@
     23836@@ -12208,7 +13115,7 @@
    2077523837 else
    2077623838   with_valgrind=
    2077723839 fi;
    2077823840-echo "$as_me:12211: result: ${with_valgrind:-no}" >&5
    20779 +echo "$as_me:13007: result: ${with_valgrind:-no}" >&5
     23841+echo "$as_me:13118: result: ${with_valgrind:-no}" >&5
    2078023842 echo "${ECHO_T}${with_valgrind:-no}" >&6
    2078123843 
    2078223844 case .$with_cflags in #(vi
    20783 @@ -12301,7 +13097,7 @@
     23845@@ -12301,7 +13208,7 @@
    2078423846        ;;
    2078523847 esac
    2078623848 
    2078723849-echo "$as_me:12304: checking if you want to perform memory-leak testing" >&5
    20788 +echo "$as_me:13100: checking if you want to perform memory-leak testing" >&5
     23850+echo "$as_me:13211: checking if you want to perform memory-leak testing" >&5
    2078923851 echo $ECHO_N "checking if you want to perform memory-leak testing... $ECHO_C" >&6
    2079023852 
    2079123853 # Check whether --enable-leaks or --disable-leaks was given.
    20792 @@ -12311,7 +13107,7 @@
     23854@@ -12311,7 +13218,7 @@
    2079323855 else
    2079423856   : ${with_no_leaks:=no}
    2079523857 fi;
    2079623858-echo "$as_me:12314: result: $with_no_leaks" >&5
    20797 +echo "$as_me:13110: result: $with_no_leaks" >&5
     23859+echo "$as_me:13221: result: $with_no_leaks" >&5
    2079823860 echo "${ECHO_T}$with_no_leaks" >&6
    2079923861 
    2080023862 if test "$with_no_leaks" = yes ; then
    20801 @@ -12360,7 +13156,7 @@
     23863@@ -12360,7 +13267,7 @@
    2080223864        ;;
    2080323865 esac
    2080423866 
    2080523867-echo "$as_me:12363: checking whether to add trace feature to all models" >&5
    20806 +echo "$as_me:13159: checking whether to add trace feature to all models" >&5
     23868+echo "$as_me:13270: checking whether to add trace feature to all models" >&5
    2080723869 echo $ECHO_N "checking whether to add trace feature to all models... $ECHO_C" >&6
    2080823870 
    2080923871 # Check whether --with-trace or --without-trace was given.
    20810 @@ -12370,7 +13166,7 @@
     23872@@ -12370,7 +13277,7 @@
    2081123873 else
    2081223874   cf_with_trace=$cf_all_traces
    2081323875 fi;
    2081423876-echo "$as_me:12373: result: $cf_with_trace" >&5
    20815 +echo "$as_me:13169: result: $cf_with_trace" >&5
     23877+echo "$as_me:13280: result: $cf_with_trace" >&5
    2081623878 echo "${ECHO_T}$cf_with_trace" >&6
    2081723879 
    2081823880 if test "$cf_with_trace" = yes ; then
    20819 @@ -12465,13 +13261,13 @@
     23881@@ -12465,13 +13372,13 @@
    2082023882 *mingw32*) #(vi
    2082123883        ;;
    2082223884 *)
    2082323885-echo "$as_me:12468: checking for gettimeofday" >&5
    20824 +echo "$as_me:13264: checking for gettimeofday" >&5
     23886+echo "$as_me:13375: checking for gettimeofday" >&5
    2082523887 echo $ECHO_N "checking for gettimeofday... $ECHO_C" >&6
    2082623888 if test "${ac_cv_func_gettimeofday+set}" = set; then
     
    2082923891   cat >conftest.$ac_ext <<_ACEOF
    2083023892-#line 12474 "configure"
    20831 +#line 13270 "configure"
     23893+#line 13381 "configure"
    2083223894 #include "confdefs.h"
    2083323895 /* System header to define __stub macros and hopefully few prototypes,
    2083423896     which can conflict with char gettimeofday (); below.  */
    20835 @@ -12502,16 +13298,16 @@
     23897@@ -12494,7 +13401,7 @@
     23898 #if defined (__stub_gettimeofday) || defined (__stub___gettimeofday)
     23899 choke me
     23900 #else
     23901-f = gettimeofday;
     23902+f = gettimeofday; /* workaround for ICC 12.0.3 */ if (f == 0) return 1;
     23903 #endif
     23904 
     23905   ;
     23906@@ -12502,16 +13409,16 @@
    2083623907 }
    2083723908 _ACEOF
    2083823909 rm -f conftest.$ac_objext conftest$ac_exeext
    2083923910-if { (eval echo "$as_me:12505: \"$ac_link\"") >&5
    20840 +if { (eval echo "$as_me:13301: \"$ac_link\"") >&5
     23911+if { (eval echo "$as_me:13412: \"$ac_link\"") >&5
    2084123912   (eval $ac_link) 2>&5
    2084223913   ac_status=$?
    2084323914-  echo "$as_me:12508: \$? = $ac_status" >&5
    20844 +  echo "$as_me:13304: \$? = $ac_status" >&5
     23915+  echo "$as_me:13415: \$? = $ac_status" >&5
    2084523916   (exit $ac_status); } &&
    2084623917          { ac_try='test -s conftest$ac_exeext'
    2084723918-  { (eval echo "$as_me:12511: \"$ac_try\"") >&5
    20848 +  { (eval echo "$as_me:13307: \"$ac_try\"") >&5
     23919+  { (eval echo "$as_me:13418: \"$ac_try\"") >&5
    2084923920   (eval $ac_try) 2>&5
    2085023921   ac_status=$?
    2085123922-  echo "$as_me:12514: \$? = $ac_status" >&5
    20852 +  echo "$as_me:13310: \$? = $ac_status" >&5
     23923+  echo "$as_me:13421: \$? = $ac_status" >&5
    2085323924   (exit $ac_status); }; }; then
    2085423925   ac_cv_func_gettimeofday=yes
    2085523926 else
    20856 @@ -12521,7 +13317,7 @@
     23927@@ -12521,7 +13428,7 @@
    2085723928 fi
    2085823929 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    2085923930 fi
    2086023931-echo "$as_me:12524: result: $ac_cv_func_gettimeofday" >&5
    20861 +echo "$as_me:13320: result: $ac_cv_func_gettimeofday" >&5
     23932+echo "$as_me:13431: result: $ac_cv_func_gettimeofday" >&5
    2086223933 echo "${ECHO_T}$ac_cv_func_gettimeofday" >&6
    2086323934 if test $ac_cv_func_gettimeofday = yes; then
    2086423935   cat >>confdefs.h <<\EOF
    20865 @@ -12530,7 +13326,7 @@
     23936@@ -12530,7 +13437,7 @@
    2086623937 
    2086723938 else
    2086823939 
    2086923940-echo "$as_me:12533: checking for gettimeofday in -lbsd" >&5
    20870 +echo "$as_me:13329: checking for gettimeofday in -lbsd" >&5
     23941+echo "$as_me:13440: checking for gettimeofday in -lbsd" >&5
    2087123942 echo $ECHO_N "checking for gettimeofday in -lbsd... $ECHO_C" >&6
    2087223943 if test "${ac_cv_lib_bsd_gettimeofday+set}" = set; then
    2087323944   echo $ECHO_N "(cached) $ECHO_C" >&6
    20874 @@ -12538,7 +13334,7 @@
     23945@@ -12538,7 +13445,7 @@
    2087523946   ac_check_lib_save_LIBS=$LIBS
    2087623947 LIBS="-lbsd  $LIBS"
    2087723948 cat >conftest.$ac_ext <<_ACEOF
    2087823949-#line 12541 "configure"
    20879 +#line 13337 "configure"
     23950+#line 13448 "configure"
    2088023951 #include "confdefs.h"
    2088123952 
    2088223953 /* Override any gcc2 internal prototype to avoid an error.  */
    20883 @@ -12557,16 +13353,16 @@
     23954@@ -12557,16 +13464,16 @@
    2088423955 }
    2088523956 _ACEOF
    2088623957 rm -f conftest.$ac_objext conftest$ac_exeext
    2088723958-if { (eval echo "$as_me:12560: \"$ac_link\"") >&5
    20888 +if { (eval echo "$as_me:13356: \"$ac_link\"") >&5
     23959+if { (eval echo "$as_me:13467: \"$ac_link\"") >&5
    2088923960   (eval $ac_link) 2>&5
    2089023961   ac_status=$?
    2089123962-  echo "$as_me:12563: \$? = $ac_status" >&5
    20892 +  echo "$as_me:13359: \$? = $ac_status" >&5
     23963+  echo "$as_me:13470: \$? = $ac_status" >&5
    2089323964   (exit $ac_status); } &&
    2089423965          { ac_try='test -s conftest$ac_exeext'
    2089523966-  { (eval echo "$as_me:12566: \"$ac_try\"") >&5
    20896 +  { (eval echo "$as_me:13362: \"$ac_try\"") >&5
     23967+  { (eval echo "$as_me:13473: \"$ac_try\"") >&5
    2089723968   (eval $ac_try) 2>&5
    2089823969   ac_status=$?
    2089923970-  echo "$as_me:12569: \$? = $ac_status" >&5
    20900 +  echo "$as_me:13365: \$? = $ac_status" >&5
     23971+  echo "$as_me:13476: \$? = $ac_status" >&5
    2090123972   (exit $ac_status); }; }; then
    2090223973   ac_cv_lib_bsd_gettimeofday=yes
    2090323974 else
    20904 @@ -12577,7 +13373,7 @@
     23975@@ -12577,7 +13484,7 @@
    2090523976 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    2090623977 LIBS=$ac_check_lib_save_LIBS
    2090723978 fi
    2090823979-echo "$as_me:12580: result: $ac_cv_lib_bsd_gettimeofday" >&5
    20909 +echo "$as_me:13376: result: $ac_cv_lib_bsd_gettimeofday" >&5
     23980+echo "$as_me:13487: result: $ac_cv_lib_bsd_gettimeofday" >&5
    2091023981 echo "${ECHO_T}$ac_cv_lib_bsd_gettimeofday" >&6
    2091123982 if test $ac_cv_lib_bsd_gettimeofday = yes; then
    2091223983   cat >>confdefs.h <<\EOF
    20913 @@ -12591,14 +13387,14 @@
     23984@@ -12591,14 +13498,14 @@
    2091423985        ;;
    2091523986 esac
    2091623987 
    2091723988-echo "$as_me:12594: checking if -lm needed for math functions" >&5
    20918 +echo "$as_me:13390: checking if -lm needed for math functions" >&5
     23989+echo "$as_me:13501: checking if -lm needed for math functions" >&5
    2091923990 echo $ECHO_N "checking if -lm needed for math functions... $ECHO_C" >&6
    2092023991 if test "${cf_cv_need_libm+set}" = set; then
     
    2092423995        cat >conftest.$ac_ext <<_ACEOF
    2092523996-#line 12601 "configure"
    20926 +#line 13397 "configure"
     23997+#line 13508 "configure"
    2092723998 #include "confdefs.h"
    2092823999 
    2092924000        #include <stdio.h>
    20930 @@ -12613,16 +13409,16 @@
     24001@@ -12613,16 +13520,16 @@
    2093124002 }
    2093224003 _ACEOF
    2093324004 rm -f conftest.$ac_objext conftest$ac_exeext
    2093424005-if { (eval echo "$as_me:12616: \"$ac_link\"") >&5
    20935 +if { (eval echo "$as_me:13412: \"$ac_link\"") >&5
     24006+if { (eval echo "$as_me:13523: \"$ac_link\"") >&5
    2093624007   (eval $ac_link) 2>&5
    2093724008   ac_status=$?
    2093824009-  echo "$as_me:12619: \$? = $ac_status" >&5
    20939 +  echo "$as_me:13415: \$? = $ac_status" >&5
     24010+  echo "$as_me:13526: \$? = $ac_status" >&5
    2094024011   (exit $ac_status); } &&
    2094124012          { ac_try='test -s conftest$ac_exeext'
    2094224013-  { (eval echo "$as_me:12622: \"$ac_try\"") >&5
    20943 +  { (eval echo "$as_me:13418: \"$ac_try\"") >&5
     24014+  { (eval echo "$as_me:13529: \"$ac_try\"") >&5
    2094424015   (eval $ac_try) 2>&5
    2094524016   ac_status=$?
    2094624017-  echo "$as_me:12625: \$? = $ac_status" >&5
    20947 +  echo "$as_me:13421: \$? = $ac_status" >&5
     24018+  echo "$as_me:13532: \$? = $ac_status" >&5
    2094824019   (exit $ac_status); }; }; then
    2094924020   cf_cv_need_libm=no
    2095024021 else
    20951 @@ -12632,7 +13428,7 @@
     24022@@ -12632,7 +13539,7 @@
    2095224023 fi
    2095324024 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    2095424025 fi
    2095524026-echo "$as_me:12635: result: $cf_cv_need_libm" >&5
    20956 +echo "$as_me:13431: result: $cf_cv_need_libm" >&5
     24027+echo "$as_me:13542: result: $cf_cv_need_libm" >&5
    2095724028 echo "${ECHO_T}$cf_cv_need_libm" >&6
    2095824029 if test "$cf_cv_need_libm" = yes
    2095924030 then
    20960 @@ -12640,13 +13436,13 @@
     24031@@ -12640,13 +13547,13 @@
    2096124032 fi
    2096224033 
    2096324034 ###    Checks for header files.
    2096424035-echo "$as_me:12643: checking for ANSI C header files" >&5
    20965 +echo "$as_me:13439: checking for ANSI C header files" >&5
     24036+echo "$as_me:13550: checking for ANSI C header files" >&5
    2096624037 echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6
    2096724038 if test "${ac_cv_header_stdc+set}" = set; then
     
    2097024041   cat >conftest.$ac_ext <<_ACEOF
    2097124042-#line 12649 "configure"
    20972 +#line 13445 "configure"
     24043+#line 13556 "configure"
    2097324044 #include "confdefs.h"
    2097424045 #include <stdlib.h>
    2097524046 #include <stdarg.h>
    20976 @@ -12654,13 +13450,13 @@
     24047@@ -12654,13 +13561,13 @@
    2097724048 #include <float.h>
    2097824049 
    2097924050 _ACEOF
    2098024051-if { (eval echo "$as_me:12657: \"$ac_cpp conftest.$ac_ext\"") >&5
    20981 +if { (eval echo "$as_me:13453: \"$ac_cpp conftest.$ac_ext\"") >&5
     24052+if { (eval echo "$as_me:13564: \"$ac_cpp conftest.$ac_ext\"") >&5
    2098224053   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
    2098324054   ac_status=$?
     
    2098624057   cat conftest.err >&5
    2098724058-  echo "$as_me:12663: \$? = $ac_status" >&5
    20988 +  echo "$as_me:13459: \$? = $ac_status" >&5
     24059+  echo "$as_me:13570: \$? = $ac_status" >&5
    2098924060   (exit $ac_status); } >/dev/null; then
    2099024061   if test -s conftest.err; then
    2099124062     ac_cpp_err=$ac_c_preproc_warn_flag
    20992 @@ -12682,7 +13478,7 @@
     24063@@ -12682,7 +13589,7 @@
    2099324064 if test $ac_cv_header_stdc = yes; then
    2099424065   # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
    2099524066   cat >conftest.$ac_ext <<_ACEOF
    2099624067-#line 12685 "configure"
    20997 +#line 13481 "configure"
     24068+#line 13592 "configure"
    2099824069 #include "confdefs.h"
    2099924070 #include <string.h>
    2100024071 
    21001 @@ -12700,7 +13496,7 @@
     24072@@ -12700,7 +13607,7 @@
    2100224073 if test $ac_cv_header_stdc = yes; then
    2100324074   # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
    2100424075   cat >conftest.$ac_ext <<_ACEOF
    2100524076-#line 12703 "configure"
    21006 +#line 13499 "configure"
     24077+#line 13610 "configure"
    2100724078 #include "confdefs.h"
    2100824079 #include <stdlib.h>
    2100924080 
    21010 @@ -12721,7 +13517,7 @@
     24081@@ -12721,7 +13628,7 @@
    2101124082   :
    2101224083 else
    2101324084   cat >conftest.$ac_ext <<_ACEOF
    2101424085-#line 12724 "configure"
    21015 +#line 13520 "configure"
     24086+#line 13631 "configure"
    2101624087 #include "confdefs.h"
    2101724088 #include <ctype.h>
    2101824089 #if ((' ' & 0x0FF) == 0x020)
    21019 @@ -12747,15 +13543,15 @@
     24090@@ -12747,15 +13654,15 @@
    2102024091 }
    2102124092 _ACEOF
    2102224093 rm -f conftest$ac_exeext
    2102324094-if { (eval echo "$as_me:12750: \"$ac_link\"") >&5
    21024 +if { (eval echo "$as_me:13546: \"$ac_link\"") >&5
     24095+if { (eval echo "$as_me:13657: \"$ac_link\"") >&5
    2102524096   (eval $ac_link) 2>&5
    2102624097   ac_status=$?
    2102724098-  echo "$as_me:12753: \$? = $ac_status" >&5
    21028 +  echo "$as_me:13549: \$? = $ac_status" >&5
     24099+  echo "$as_me:13660: \$? = $ac_status" >&5
    2102924100   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
    2103024101-  { (eval echo "$as_me:12755: \"$ac_try\"") >&5
    21031 +  { (eval echo "$as_me:13551: \"$ac_try\"") >&5
     24102+  { (eval echo "$as_me:13662: \"$ac_try\"") >&5
    2103224103   (eval $ac_try) 2>&5
    2103324104   ac_status=$?
    2103424105-  echo "$as_me:12758: \$? = $ac_status" >&5
    21035 +  echo "$as_me:13554: \$? = $ac_status" >&5
     24106+  echo "$as_me:13665: \$? = $ac_status" >&5
    2103624107   (exit $ac_status); }; }; then
    2103724108   :
    2103824109 else
    21039 @@ -12768,7 +13564,7 @@
     24110@@ -12768,7 +13675,7 @@
    2104024111 fi
    2104124112 fi
    2104224113 fi
    2104324114-echo "$as_me:12771: result: $ac_cv_header_stdc" >&5
    21044 +echo "$as_me:13567: result: $ac_cv_header_stdc" >&5
     24115+echo "$as_me:13678: result: $ac_cv_header_stdc" >&5
    2104524116 echo "${ECHO_T}$ac_cv_header_stdc" >&6
    2104624117 if test $ac_cv_header_stdc = yes; then
    2104724118 
    21048 @@ -12781,13 +13577,13 @@
     24119@@ -12781,13 +13688,13 @@
    2104924120 ac_header_dirent=no
    2105024121 for ac_hdr in dirent.h sys/ndir.h sys/dir.h ndir.h; do
    2105124122   as_ac_Header=`echo "ac_cv_header_dirent_$ac_hdr" | $as_tr_sh`
    2105224123-echo "$as_me:12784: checking for $ac_hdr that defines DIR" >&5
    21053 +echo "$as_me:13580: checking for $ac_hdr that defines DIR" >&5
     24124+echo "$as_me:13691: checking for $ac_hdr that defines DIR" >&5
    2105424125 echo $ECHO_N "checking for $ac_hdr that defines DIR... $ECHO_C" >&6
    2105524126 if eval "test \"\${$as_ac_Header+set}\" = set"; then
     
    2105824129   cat >conftest.$ac_ext <<_ACEOF
    2105924130-#line 12790 "configure"
    21060 +#line 13586 "configure"
     24131+#line 13697 "configure"
    2106124132 #include "confdefs.h"
    2106224133 #include <sys/types.h>
    2106324134 #include <$ac_hdr>
    21064 @@ -12802,16 +13598,16 @@
     24135@@ -12802,16 +13709,16 @@
    2106524136 }
    2106624137 _ACEOF
    2106724138 rm -f conftest.$ac_objext
    2106824139-if { (eval echo "$as_me:12805: \"$ac_compile\"") >&5
    21069 +if { (eval echo "$as_me:13601: \"$ac_compile\"") >&5
     24140+if { (eval echo "$as_me:13712: \"$ac_compile\"") >&5
    2107024141   (eval $ac_compile) 2>&5
    2107124142   ac_status=$?
    2107224143-  echo "$as_me:12808: \$? = $ac_status" >&5
    21073 +  echo "$as_me:13604: \$? = $ac_status" >&5
     24144+  echo "$as_me:13715: \$? = $ac_status" >&5
    2107424145   (exit $ac_status); } &&
    2107524146          { ac_try='test -s conftest.$ac_objext'
    2107624147-  { (eval echo "$as_me:12811: \"$ac_try\"") >&5
    21077 +  { (eval echo "$as_me:13607: \"$ac_try\"") >&5
     24148+  { (eval echo "$as_me:13718: \"$ac_try\"") >&5
    2107824149   (eval $ac_try) 2>&5
    2107924150   ac_status=$?
    2108024151-  echo "$as_me:12814: \$? = $ac_status" >&5
    21081 +  echo "$as_me:13610: \$? = $ac_status" >&5
     24152+  echo "$as_me:13721: \$? = $ac_status" >&5
    2108224153   (exit $ac_status); }; }; then
    2108324154   eval "$as_ac_Header=yes"
    2108424155 else
    21085 @@ -12821,7 +13617,7 @@
     24156@@ -12821,7 +13728,7 @@
    2108624157 fi
    2108724158 rm -f conftest.$ac_objext conftest.$ac_ext
    2108824159 fi
    2108924160-echo "$as_me:12824: result: `eval echo '${'$as_ac_Header'}'`" >&5
    21090 +echo "$as_me:13620: result: `eval echo '${'$as_ac_Header'}'`" >&5
     24161+echo "$as_me:13731: result: `eval echo '${'$as_ac_Header'}'`" >&5
    2109124162 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
    2109224163 if test `eval echo '${'$as_ac_Header'}'` = yes; then
    2109324164   cat >>confdefs.h <<EOF
    21094 @@ -12834,7 +13630,7 @@
     24165@@ -12834,7 +13741,7 @@
    2109524166 done
    2109624167 # Two versions of opendir et al. are in -ldir and -lx on SCO Xenix.
    2109724168 if test $ac_header_dirent = dirent.h; then
    2109824169-  echo "$as_me:12837: checking for opendir in -ldir" >&5
    21099 +  echo "$as_me:13633: checking for opendir in -ldir" >&5
     24170+  echo "$as_me:13744: checking for opendir in -ldir" >&5
    2110024171 echo $ECHO_N "checking for opendir in -ldir... $ECHO_C" >&6
    2110124172 if test "${ac_cv_lib_dir_opendir+set}" = set; then
    2110224173   echo $ECHO_N "(cached) $ECHO_C" >&6
    21103 @@ -12842,7 +13638,7 @@
     24174@@ -12842,7 +13749,7 @@
    2110424175   ac_check_lib_save_LIBS=$LIBS
    2110524176 LIBS="-ldir  $LIBS"
    2110624177 cat >conftest.$ac_ext <<_ACEOF
    2110724178-#line 12845 "configure"
    21108 +#line 13641 "configure"
     24179+#line 13752 "configure"
    2110924180 #include "confdefs.h"
    2111024181 
    2111124182 /* Override any gcc2 internal prototype to avoid an error.  */
    21112 @@ -12861,16 +13657,16 @@
     24183@@ -12861,16 +13768,16 @@
    2111324184 }
    2111424185 _ACEOF
    2111524186 rm -f conftest.$ac_objext conftest$ac_exeext
    2111624187-if { (eval echo "$as_me:12864: \"$ac_link\"") >&5
    21117 +if { (eval echo "$as_me:13660: \"$ac_link\"") >&5
     24188+if { (eval echo "$as_me:13771: \"$ac_link\"") >&5
    2111824189   (eval $ac_link) 2>&5
    2111924190   ac_status=$?
    2112024191-  echo "$as_me:12867: \$? = $ac_status" >&5
    21121 +  echo "$as_me:13663: \$? = $ac_status" >&5
     24192+  echo "$as_me:13774: \$? = $ac_status" >&5
    2112224193   (exit $ac_status); } &&
    2112324194          { ac_try='test -s conftest$ac_exeext'
    2112424195-  { (eval echo "$as_me:12870: \"$ac_try\"") >&5
    21125 +  { (eval echo "$as_me:13666: \"$ac_try\"") >&5
     24196+  { (eval echo "$as_me:13777: \"$ac_try\"") >&5
    2112624197   (eval $ac_try) 2>&5
    2112724198   ac_status=$?
    2112824199-  echo "$as_me:12873: \$? = $ac_status" >&5
    21129 +  echo "$as_me:13669: \$? = $ac_status" >&5
     24200+  echo "$as_me:13780: \$? = $ac_status" >&5
    2113024201   (exit $ac_status); }; }; then
    2113124202   ac_cv_lib_dir_opendir=yes
    2113224203 else
    21133 @@ -12881,14 +13677,14 @@
     24204@@ -12881,14 +13788,14 @@
    2113424205 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    2113524206 LIBS=$ac_check_lib_save_LIBS
    2113624207 fi
    2113724208-echo "$as_me:12884: result: $ac_cv_lib_dir_opendir" >&5
    21138 +echo "$as_me:13680: result: $ac_cv_lib_dir_opendir" >&5
     24209+echo "$as_me:13791: result: $ac_cv_lib_dir_opendir" >&5
    2113924210 echo "${ECHO_T}$ac_cv_lib_dir_opendir" >&6
    2114024211 if test $ac_cv_lib_dir_opendir = yes; then
     
    2114424215 else
    2114524216-  echo "$as_me:12891: checking for opendir in -lx" >&5
    21146 +  echo "$as_me:13687: checking for opendir in -lx" >&5
     24217+  echo "$as_me:13798: checking for opendir in -lx" >&5
    2114724218 echo $ECHO_N "checking for opendir in -lx... $ECHO_C" >&6
    2114824219 if test "${ac_cv_lib_x_opendir+set}" = set; then
    2114924220   echo $ECHO_N "(cached) $ECHO_C" >&6
    21150 @@ -12896,7 +13692,7 @@
     24221@@ -12896,7 +13803,7 @@
    2115124222   ac_check_lib_save_LIBS=$LIBS
    2115224223 LIBS="-lx  $LIBS"
    2115324224 cat >conftest.$ac_ext <<_ACEOF
    2115424225-#line 12899 "configure"
    21155 +#line 13695 "configure"
     24226+#line 13806 "configure"
    2115624227 #include "confdefs.h"
    2115724228 
    2115824229 /* Override any gcc2 internal prototype to avoid an error.  */
    21159 @@ -12915,16 +13711,16 @@
     24230@@ -12915,16 +13822,16 @@
    2116024231 }
    2116124232 _ACEOF
    2116224233 rm -f conftest.$ac_objext conftest$ac_exeext
    2116324234-if { (eval echo "$as_me:12918: \"$ac_link\"") >&5
    21164 +if { (eval echo "$as_me:13714: \"$ac_link\"") >&5
     24235+if { (eval echo "$as_me:13825: \"$ac_link\"") >&5
    2116524236   (eval $ac_link) 2>&5
    2116624237   ac_status=$?
    2116724238-  echo "$as_me:12921: \$? = $ac_status" >&5
    21168 +  echo "$as_me:13717: \$? = $ac_status" >&5
     24239+  echo "$as_me:13828: \$? = $ac_status" >&5
    2116924240   (exit $ac_status); } &&
    2117024241          { ac_try='test -s conftest$ac_exeext'
    2117124242-  { (eval echo "$as_me:12924: \"$ac_try\"") >&5
    21172 +  { (eval echo "$as_me:13720: \"$ac_try\"") >&5
     24243+  { (eval echo "$as_me:13831: \"$ac_try\"") >&5
    2117324244   (eval $ac_try) 2>&5
    2117424245   ac_status=$?
    2117524246-  echo "$as_me:12927: \$? = $ac_status" >&5
    21176 +  echo "$as_me:13723: \$? = $ac_status" >&5
     24247+  echo "$as_me:13834: \$? = $ac_status" >&5
    2117724248   (exit $ac_status); }; }; then
    2117824249   ac_cv_lib_x_opendir=yes
    2117924250 else
    21180 @@ -12935,7 +13731,7 @@
     24251@@ -12935,7 +13842,7 @@
    2118124252 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    2118224253 LIBS=$ac_check_lib_save_LIBS
    2118324254 fi
    2118424255-echo "$as_me:12938: result: $ac_cv_lib_x_opendir" >&5
    21185 +echo "$as_me:13734: result: $ac_cv_lib_x_opendir" >&5
     24256+echo "$as_me:13845: result: $ac_cv_lib_x_opendir" >&5
    2118624257 echo "${ECHO_T}$ac_cv_lib_x_opendir" >&6
    2118724258 if test $ac_cv_lib_x_opendir = yes; then
    2118824259   LIBS="$LIBS -lx"
    21189 @@ -12943,13 +13739,13 @@
     24260@@ -12943,13 +13850,13 @@
    2119024261 
    2119124262 fi
    2119224263 
    2119324264-echo "$as_me:12946: checking whether time.h and sys/time.h may both be included" >&5
    21194 +echo "$as_me:13742: checking whether time.h and sys/time.h may both be included" >&5
     24265+echo "$as_me:13853: checking whether time.h and sys/time.h may both be included" >&5
    2119524266 echo $ECHO_N "checking whether time.h and sys/time.h may both be included... $ECHO_C" >&6
    2119624267 if test "${ac_cv_header_time+set}" = set; then
     
    2119924270   cat >conftest.$ac_ext <<_ACEOF
    2120024271-#line 12952 "configure"
    21201 +#line 13748 "configure"
     24272+#line 13859 "configure"
    2120224273 #include "confdefs.h"
    2120324274 #include <sys/types.h>
    2120424275 #include <sys/time.h>
    21205 @@ -12965,16 +13761,16 @@
     24276@@ -12965,16 +13872,16 @@
    2120624277 }
    2120724278 _ACEOF
    2120824279 rm -f conftest.$ac_objext
    2120924280-if { (eval echo "$as_me:12968: \"$ac_compile\"") >&5
    21210 +if { (eval echo "$as_me:13764: \"$ac_compile\"") >&5
     24281+if { (eval echo "$as_me:13875: \"$ac_compile\"") >&5
    2121124282   (eval $ac_compile) 2>&5
    2121224283   ac_status=$?
    2121324284-  echo "$as_me:12971: \$? = $ac_status" >&5
    21214 +  echo "$as_me:13767: \$? = $ac_status" >&5
     24285+  echo "$as_me:13878: \$? = $ac_status" >&5
    2121524286   (exit $ac_status); } &&
    2121624287          { ac_try='test -s conftest.$ac_objext'
    2121724288-  { (eval echo "$as_me:12974: \"$ac_try\"") >&5
    21218 +  { (eval echo "$as_me:13770: \"$ac_try\"") >&5
     24289+  { (eval echo "$as_me:13881: \"$ac_try\"") >&5
    2121924290   (eval $ac_try) 2>&5
    2122024291   ac_status=$?
    2122124292-  echo "$as_me:12977: \$? = $ac_status" >&5
    21222 +  echo "$as_me:13773: \$? = $ac_status" >&5
     24293+  echo "$as_me:13884: \$? = $ac_status" >&5
    2122324294   (exit $ac_status); }; }; then
    2122424295   ac_cv_header_time=yes
    2122524296 else
    21226 @@ -12984,7 +13780,7 @@
     24297@@ -12984,7 +13891,7 @@
    2122724298 fi
    2122824299 rm -f conftest.$ac_objext conftest.$ac_ext
    2122924300 fi
    2123024301-echo "$as_me:12987: result: $ac_cv_header_time" >&5
    21231 +echo "$as_me:13783: result: $ac_cv_header_time" >&5
     24302+echo "$as_me:13894: result: $ac_cv_header_time" >&5
    2123224303 echo "${ECHO_T}$ac_cv_header_time" >&6
    2123324304 if test $ac_cv_header_time = yes; then
    2123424305 
    21235 @@ -12999,17 +13795,17 @@
     24306@@ -12999,17 +13906,17 @@
    2123624307 cf_regex_libs="regex re"
    2123724308 case $host_os in #(vi
     
    2124324314 
    2124424315-echo "$as_me:13006: checking for regcomp" >&5
    21245 +echo "$as_me:13802: checking for regcomp" >&5
     24316+echo "$as_me:13913: checking for regcomp" >&5
    2124624317 echo $ECHO_N "checking for regcomp... $ECHO_C" >&6
    2124724318 if test "${ac_cv_func_regcomp+set}" = set; then
     
    2125024321   cat >conftest.$ac_ext <<_ACEOF
    2125124322-#line 13012 "configure"
    21252 +#line 13808 "configure"
     24323+#line 13919 "configure"
    2125324324 #include "confdefs.h"
    2125424325 /* System header to define __stub macros and hopefully few prototypes,
    2125524326     which can conflict with char regcomp (); below.  */
    21256 @@ -13040,16 +13836,16 @@
     24327@@ -13032,7 +13939,7 @@
     24328 #if defined (__stub_regcomp) || defined (__stub___regcomp)
     24329 choke me
     24330 #else
     24331-f = regcomp;
     24332+f = regcomp; /* workaround for ICC 12.0.3 */ if (f == 0) return 1;
     24333 #endif
     24334 
     24335   ;
     24336@@ -13040,16 +13947,16 @@
    2125724337 }
    2125824338 _ACEOF
    2125924339 rm -f conftest.$ac_objext conftest$ac_exeext
    2126024340-if { (eval echo "$as_me:13043: \"$ac_link\"") >&5
    21261 +if { (eval echo "$as_me:13839: \"$ac_link\"") >&5
     24341+if { (eval echo "$as_me:13950: \"$ac_link\"") >&5
    2126224342   (eval $ac_link) 2>&5
    2126324343   ac_status=$?
    2126424344-  echo "$as_me:13046: \$? = $ac_status" >&5
    21265 +  echo "$as_me:13842: \$? = $ac_status" >&5
     24345+  echo "$as_me:13953: \$? = $ac_status" >&5
    2126624346   (exit $ac_status); } &&
    2126724347          { ac_try='test -s conftest$ac_exeext'
    2126824348-  { (eval echo "$as_me:13049: \"$ac_try\"") >&5
    21269 +  { (eval echo "$as_me:13845: \"$ac_try\"") >&5
     24349+  { (eval echo "$as_me:13956: \"$ac_try\"") >&5
    2127024350   (eval $ac_try) 2>&5
    2127124351   ac_status=$?
    2127224352-  echo "$as_me:13052: \$? = $ac_status" >&5
    21273 +  echo "$as_me:13848: \$? = $ac_status" >&5
     24353+  echo "$as_me:13959: \$? = $ac_status" >&5
    2127424354   (exit $ac_status); }; }; then
    2127524355   ac_cv_func_regcomp=yes
    2127624356 else
    21277 @@ -13059,7 +13855,7 @@
     24357@@ -13059,7 +13966,7 @@
    2127824358 fi
    2127924359 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    2128024360 fi
    2128124361-echo "$as_me:13062: result: $ac_cv_func_regcomp" >&5
    21282 +echo "$as_me:13858: result: $ac_cv_func_regcomp" >&5
     24362+echo "$as_me:13969: result: $ac_cv_func_regcomp" >&5
    2128324363 echo "${ECHO_T}$ac_cv_func_regcomp" >&6
    2128424364 if test $ac_cv_func_regcomp = yes; then
    2128524365   cf_regex_func=regcomp
    21286 @@ -13068,7 +13864,7 @@
     24366@@ -13068,7 +13975,7 @@
    2128724367        for cf_regex_lib in $cf_regex_libs
    2128824368        do
    2128924369                as_ac_Lib=`echo "ac_cv_lib_$cf_regex_lib''_regcomp" | $as_tr_sh`
    2129024370-echo "$as_me:13071: checking for regcomp in -l$cf_regex_lib" >&5
    21291 +echo "$as_me:13867: checking for regcomp in -l$cf_regex_lib" >&5
     24371+echo "$as_me:13978: checking for regcomp in -l$cf_regex_lib" >&5
    2129224372 echo $ECHO_N "checking for regcomp in -l$cf_regex_lib... $ECHO_C" >&6
    2129324373 if eval "test \"\${$as_ac_Lib+set}\" = set"; then
    2129424374   echo $ECHO_N "(cached) $ECHO_C" >&6
    21295 @@ -13076,7 +13872,7 @@
     24375@@ -13076,7 +13983,7 @@
    2129624376   ac_check_lib_save_LIBS=$LIBS
    2129724377 LIBS="-l$cf_regex_lib  $LIBS"
    2129824378 cat >conftest.$ac_ext <<_ACEOF
    2129924379-#line 13079 "configure"
    21300 +#line 13875 "configure"
     24380+#line 13986 "configure"
    2130124381 #include "confdefs.h"
    2130224382 
    2130324383 /* Override any gcc2 internal prototype to avoid an error.  */
    21304 @@ -13095,16 +13891,16 @@
     24384@@ -13095,16 +14002,16 @@
    2130524385 }
    2130624386 _ACEOF
    2130724387 rm -f conftest.$ac_objext conftest$ac_exeext
    2130824388-if { (eval echo "$as_me:13098: \"$ac_link\"") >&5
    21309 +if { (eval echo "$as_me:13894: \"$ac_link\"") >&5
     24389+if { (eval echo "$as_me:14005: \"$ac_link\"") >&5
    2131024390   (eval $ac_link) 2>&5
    2131124391   ac_status=$?
    2131224392-  echo "$as_me:13101: \$? = $ac_status" >&5
    21313 +  echo "$as_me:13897: \$? = $ac_status" >&5
     24393+  echo "$as_me:14008: \$? = $ac_status" >&5
    2131424394   (exit $ac_status); } &&
    2131524395          { ac_try='test -s conftest$ac_exeext'
    2131624396-  { (eval echo "$as_me:13104: \"$ac_try\"") >&5
    21317 +  { (eval echo "$as_me:13900: \"$ac_try\"") >&5
     24397+  { (eval echo "$as_me:14011: \"$ac_try\"") >&5
    2131824398   (eval $ac_try) 2>&5
    2131924399   ac_status=$?
    2132024400-  echo "$as_me:13107: \$? = $ac_status" >&5
    21321 +  echo "$as_me:13903: \$? = $ac_status" >&5
     24401+  echo "$as_me:14014: \$? = $ac_status" >&5
    2132224402   (exit $ac_status); }; }; then
    2132324403   eval "$as_ac_Lib=yes"
    2132424404 else
    21325 @@ -13115,7 +13911,7 @@
     24405@@ -13115,7 +14022,7 @@
    2132624406 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    2132724407 LIBS=$ac_check_lib_save_LIBS
    2132824408 fi
    2132924409-echo "$as_me:13118: result: `eval echo '${'$as_ac_Lib'}'`" >&5
    21330 +echo "$as_me:13914: result: `eval echo '${'$as_ac_Lib'}'`" >&5
     24410+echo "$as_me:14025: result: `eval echo '${'$as_ac_Lib'}'`" >&5
    2133124411 echo "${ECHO_T}`eval echo '${'$as_ac_Lib'}'`" >&6
    2133224412 if test `eval echo '${'$as_ac_Lib'}'` = yes; then
    2133324413 
    21334 @@ -13129,13 +13925,13 @@
     24414@@ -13129,13 +14036,13 @@
    2133524415 fi
    2133624416 
    2133724417 if test "$cf_regex_func" = no ; then
    2133824418-       echo "$as_me:13132: checking for compile" >&5
    21339 +       echo "$as_me:13928: checking for compile" >&5
     24419+       echo "$as_me:14039: checking for compile" >&5
    2134024420 echo $ECHO_N "checking for compile... $ECHO_C" >&6
    2134124421 if test "${ac_cv_func_compile+set}" = set; then
     
    2134424424   cat >conftest.$ac_ext <<_ACEOF
    2134524425-#line 13138 "configure"
    21346 +#line 13934 "configure"
     24426+#line 14045 "configure"
    2134724427 #include "confdefs.h"
    2134824428 /* System header to define __stub macros and hopefully few prototypes,
    2134924429     which can conflict with char compile (); below.  */
    21350 @@ -13166,16 +13962,16 @@
     24430@@ -13158,7 +14065,7 @@
     24431 #if defined (__stub_compile) || defined (__stub___compile)
     24432 choke me
     24433 #else
     24434-f = compile;
     24435+f = compile; /* workaround for ICC 12.0.3 */ if (f == 0) return 1;
     24436 #endif
     24437 
     24438   ;
     24439@@ -13166,16 +14073,16 @@
    2135124440 }
    2135224441 _ACEOF
    2135324442 rm -f conftest.$ac_objext conftest$ac_exeext
    2135424443-if { (eval echo "$as_me:13169: \"$ac_link\"") >&5
    21355 +if { (eval echo "$as_me:13965: \"$ac_link\"") >&5
     24444+if { (eval echo "$as_me:14076: \"$ac_link\"") >&5
    2135624445   (eval $ac_link) 2>&5
    2135724446   ac_status=$?
    2135824447-  echo "$as_me:13172: \$? = $ac_status" >&5
    21359 +  echo "$as_me:13968: \$? = $ac_status" >&5
     24448+  echo "$as_me:14079: \$? = $ac_status" >&5
    2136024449   (exit $ac_status); } &&
    2136124450          { ac_try='test -s conftest$ac_exeext'
    2136224451-  { (eval echo "$as_me:13175: \"$ac_try\"") >&5
    21363 +  { (eval echo "$as_me:13971: \"$ac_try\"") >&5
     24452+  { (eval echo "$as_me:14082: \"$ac_try\"") >&5
    2136424453   (eval $ac_try) 2>&5
    2136524454   ac_status=$?
    2136624455-  echo "$as_me:13178: \$? = $ac_status" >&5
    21367 +  echo "$as_me:13974: \$? = $ac_status" >&5
     24456+  echo "$as_me:14085: \$? = $ac_status" >&5
    2136824457   (exit $ac_status); }; }; then
    2136924458   ac_cv_func_compile=yes
    2137024459 else
    21371 @@ -13185,13 +13981,13 @@
     24460@@ -13185,13 +14092,13 @@
    2137224461 fi
    2137324462 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    2137424463 fi
    2137524464-echo "$as_me:13188: result: $ac_cv_func_compile" >&5
    21376 +echo "$as_me:13984: result: $ac_cv_func_compile" >&5
     24465+echo "$as_me:14095: result: $ac_cv_func_compile" >&5
    2137724466 echo "${ECHO_T}$ac_cv_func_compile" >&6
    2137824467 if test $ac_cv_func_compile = yes; then
     
    2138124470 
    2138224471-               echo "$as_me:13194: checking for compile in -lgen" >&5
    21383 +               echo "$as_me:13990: checking for compile in -lgen" >&5
     24472+               echo "$as_me:14101: checking for compile in -lgen" >&5
    2138424473 echo $ECHO_N "checking for compile in -lgen... $ECHO_C" >&6
    2138524474 if test "${ac_cv_lib_gen_compile+set}" = set; then
    2138624475   echo $ECHO_N "(cached) $ECHO_C" >&6
    21387 @@ -13199,7 +13995,7 @@
     24476@@ -13199,7 +14106,7 @@
    2138824477   ac_check_lib_save_LIBS=$LIBS
    2138924478 LIBS="-lgen  $LIBS"
    2139024479 cat >conftest.$ac_ext <<_ACEOF
    2139124480-#line 13202 "configure"
    21392 +#line 13998 "configure"
     24481+#line 14109 "configure"
    2139324482 #include "confdefs.h"
    2139424483 
    2139524484 /* Override any gcc2 internal prototype to avoid an error.  */
    21396 @@ -13218,16 +14014,16 @@
     24485@@ -13218,16 +14125,16 @@
    2139724486 }
    2139824487 _ACEOF
    2139924488 rm -f conftest.$ac_objext conftest$ac_exeext
    2140024489-if { (eval echo "$as_me:13221: \"$ac_link\"") >&5
    21401 +if { (eval echo "$as_me:14017: \"$ac_link\"") >&5
     24490+if { (eval echo "$as_me:14128: \"$ac_link\"") >&5
    2140224491   (eval $ac_link) 2>&5
    2140324492   ac_status=$?
    2140424493-  echo "$as_me:13224: \$? = $ac_status" >&5
    21405 +  echo "$as_me:14020: \$? = $ac_status" >&5
     24494+  echo "$as_me:14131: \$? = $ac_status" >&5
    2140624495   (exit $ac_status); } &&
    2140724496          { ac_try='test -s conftest$ac_exeext'
    2140824497-  { (eval echo "$as_me:13227: \"$ac_try\"") >&5
    21409 +  { (eval echo "$as_me:14023: \"$ac_try\"") >&5
     24498+  { (eval echo "$as_me:14134: \"$ac_try\"") >&5
    2141024499   (eval $ac_try) 2>&5
    2141124500   ac_status=$?
    2141224501-  echo "$as_me:13230: \$? = $ac_status" >&5
    21413 +  echo "$as_me:14026: \$? = $ac_status" >&5
     24502+  echo "$as_me:14137: \$? = $ac_status" >&5
    2141424503   (exit $ac_status); }; }; then
    2141524504   ac_cv_lib_gen_compile=yes
    2141624505 else
    21417 @@ -13238,7 +14034,7 @@
     24506@@ -13238,7 +14145,7 @@
    2141824507 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    2141924508 LIBS=$ac_check_lib_save_LIBS
    2142024509 fi
    2142124510-echo "$as_me:13241: result: $ac_cv_lib_gen_compile" >&5
    21422 +echo "$as_me:14037: result: $ac_cv_lib_gen_compile" >&5
     24511+echo "$as_me:14148: result: $ac_cv_lib_gen_compile" >&5
    2142324512 echo "${ECHO_T}$ac_cv_lib_gen_compile" >&6
    2142424513 if test $ac_cv_lib_gen_compile = yes; then
    2142524514 
    21426 @@ -13251,11 +14047,11 @@
     24515@@ -13251,11 +14158,11 @@
    2142724516 fi
    2142824517 
    2142924518 if test "$cf_regex_func" = no ; then
    2143024519-       { echo "$as_me:13254: WARNING: cannot find regular expression library" >&5
    21431 +       { echo "$as_me:14050: WARNING: cannot find regular expression library" >&5
     24520+       { echo "$as_me:14161: WARNING: cannot find regular expression library" >&5
    2143224521 echo "$as_me: WARNING: cannot find regular expression library" >&2;}
    2143324522 fi
    2143424523 
    2143524524-echo "$as_me:13258: checking for regular-expression headers" >&5
    21436 +echo "$as_me:14054: checking for regular-expression headers" >&5
     24525+echo "$as_me:14165: checking for regular-expression headers" >&5
    2143724526 echo $ECHO_N "checking for regular-expression headers... $ECHO_C" >&6
    2143824527 if test "${cf_cv_regex_hdrs+set}" = set; then
    2143924528   echo $ECHO_N "(cached) $ECHO_C" >&6
    21440 @@ -13267,7 +14063,7 @@
     24529@@ -13267,7 +14174,7 @@
    2144124530        for cf_regex_hdr in regexp.h regexpr.h
    2144224531        do
    2144324532                cat >conftest.$ac_ext <<_ACEOF
    2144424533-#line 13270 "configure"
    21445 +#line 14066 "configure"
     24534+#line 14177 "configure"
    2144624535 #include "confdefs.h"
    2144724536 #include <$cf_regex_hdr>
    2144824537 int
    21449 @@ -13282,16 +14078,16 @@
     24538@@ -13282,16 +14189,16 @@
    2145024539 }
    2145124540 _ACEOF
    2145224541 rm -f conftest.$ac_objext conftest$ac_exeext
    2145324542-if { (eval echo "$as_me:13285: \"$ac_link\"") >&5
    21454 +if { (eval echo "$as_me:14081: \"$ac_link\"") >&5
     24543+if { (eval echo "$as_me:14192: \"$ac_link\"") >&5
    2145524544   (eval $ac_link) 2>&5
    2145624545   ac_status=$?
    2145724546-  echo "$as_me:13288: \$? = $ac_status" >&5
    21458 +  echo "$as_me:14084: \$? = $ac_status" >&5
     24547+  echo "$as_me:14195: \$? = $ac_status" >&5
    2145924548   (exit $ac_status); } &&
    2146024549          { ac_try='test -s conftest$ac_exeext'
    2146124550-  { (eval echo "$as_me:13291: \"$ac_try\"") >&5
    21462 +  { (eval echo "$as_me:14087: \"$ac_try\"") >&5
     24551+  { (eval echo "$as_me:14198: \"$ac_try\"") >&5
    2146324552   (eval $ac_try) 2>&5
    2146424553   ac_status=$?
    2146524554-  echo "$as_me:13294: \$? = $ac_status" >&5
    21466 +  echo "$as_me:14090: \$? = $ac_status" >&5
     24555+  echo "$as_me:14201: \$? = $ac_status" >&5
    2146724556   (exit $ac_status); }; }; then
    2146824557 
    2146924558                        cf_cv_regex_hdrs=$cf_regex_hdr
    21470 @@ -13308,7 +14104,7 @@
     24559@@ -13308,7 +14215,7 @@
    2147124560        for cf_regex_hdr in regex.h
    2147224561        do
    2147324562                cat >conftest.$ac_ext <<_ACEOF
    2147424563-#line 13311 "configure"
    21475 +#line 14107 "configure"
     24564+#line 14218 "configure"
    2147624565 #include "confdefs.h"
    2147724566 #include <sys/types.h>
    2147824567 #include <$cf_regex_hdr>
    21479 @@ -13326,16 +14122,16 @@
     24568@@ -13326,16 +14233,16 @@
    2148024569 }
    2148124570 _ACEOF
    2148224571 rm -f conftest.$ac_objext conftest$ac_exeext
    2148324572-if { (eval echo "$as_me:13329: \"$ac_link\"") >&5
    21484 +if { (eval echo "$as_me:14125: \"$ac_link\"") >&5
     24573+if { (eval echo "$as_me:14236: \"$ac_link\"") >&5
    2148524574   (eval $ac_link) 2>&5
    2148624575   ac_status=$?
    2148724576-  echo "$as_me:13332: \$? = $ac_status" >&5
    21488 +  echo "$as_me:14128: \$? = $ac_status" >&5
     24577+  echo "$as_me:14239: \$? = $ac_status" >&5
    2148924578   (exit $ac_status); } &&
    2149024579          { ac_try='test -s conftest$ac_exeext'
    2149124580-  { (eval echo "$as_me:13335: \"$ac_try\"") >&5
    21492 +  { (eval echo "$as_me:14131: \"$ac_try\"") >&5
     24581+  { (eval echo "$as_me:14242: \"$ac_try\"") >&5
    2149324582   (eval $ac_try) 2>&5
    2149424583   ac_status=$?
    2149524584-  echo "$as_me:13338: \$? = $ac_status" >&5
    21496 +  echo "$as_me:14134: \$? = $ac_status" >&5
     24585+  echo "$as_me:14245: \$? = $ac_status" >&5
    2149724586   (exit $ac_status); }; }; then
    2149824587 
    2149924588                        cf_cv_regex_hdrs=$cf_regex_hdr
    21500 @@ -13351,11 +14147,11 @@
     24589@@ -13351,11 +14258,11 @@
    2150124590 esac
    2150224591 
    2150324592 fi
    2150424593-echo "$as_me:13354: result: $cf_cv_regex_hdrs" >&5
    21505 +echo "$as_me:14150: result: $cf_cv_regex_hdrs" >&5
     24594+echo "$as_me:14261: result: $cf_cv_regex_hdrs" >&5
    2150624595 echo "${ECHO_T}$cf_cv_regex_hdrs" >&6
    2150724596 
    2150824597 case $cf_cv_regex_hdrs in #(vi
    2150924598-    no)               { echo "$as_me:13358: WARNING: no regular expression header found" >&5
    21510 +    no)               { echo "$as_me:14154: WARNING: no regular expression header found" >&5
     24599+    no)               { echo "$as_me:14265: WARNING: no regular expression header found" >&5
    2151124600 echo "$as_me: WARNING: no regular expression header found" >&2;} ;; #(vi
    2151224601     regex.h)   cat >>confdefs.h <<\EOF
    2151324602 #define HAVE_REGEX_H_FUNCS 1
    21514 @@ -13391,23 +14187,71 @@
     24603@@ -13391,23 +14298,71 @@
    2151524604 
    2151624605 do
    2151724606 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
    2151824607-echo "$as_me:13394: checking for $ac_header" >&5
    21519 +echo "$as_me:14190: checking for $ac_header" >&5
     24608+echo "$as_me:14301: checking for $ac_header" >&5
    2152024609+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
    2152124610+if eval "test \"\${$as_ac_Header+set}\" = set"; then
     
    2152324612+else
    2152424613+  cat >conftest.$ac_ext <<_ACEOF
    21525 +#line 14196 "configure"
     24614+#line 14307 "configure"
    2152624615+#include "confdefs.h"
    2152724616+#include <$ac_header>
    2152824617+_ACEOF
    21529 +if { (eval echo "$as_me:14200: \"$ac_cpp conftest.$ac_ext\"") >&5
     24618+if { (eval echo "$as_me:14311: \"$ac_cpp conftest.$ac_ext\"") >&5
    2153024619+  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
    2153124620+  ac_status=$?
     
    2153324622+  rm -f conftest.er1
    2153424623+  cat conftest.err >&5
    21535 +  echo "$as_me:14206: \$? = $ac_status" >&5
     24624+  echo "$as_me:14317: \$? = $ac_status" >&5
    2153624625+  (exit $ac_status); } >/dev/null; then
    2153724626+  if test -s conftest.err; then
     
    2155224641+rm -f conftest.err conftest.$ac_ext
    2155324642+fi
    21554 +echo "$as_me:14225: result: `eval echo '${'$as_ac_Header'}'`" >&5
     24643+echo "$as_me:14336: result: `eval echo '${'$as_ac_Header'}'`" >&5
    2155524644+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
    2155624645+if test `eval echo '${'$as_ac_Header'}'` = yes; then
     
    2156524654+do
    2156624655+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
    21567 +echo "$as_me:14238: checking for $ac_header" >&5
     24656+echo "$as_me:14349: checking for $ac_header" >&5
    2156824657 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
    2156924658 if eval "test \"\${$as_ac_Header+set}\" = set"; then
     
    2157224661   cat >conftest.$ac_ext <<_ACEOF
    2157324662-#line 13400 "configure"
    21574 +#line 14244 "configure"
     24663+#line 14355 "configure"
    2157524664 #include "confdefs.h"
    2157624665 #include <$ac_header>
    2157724666 _ACEOF
    2157824667-if { (eval echo "$as_me:13404: \"$ac_cpp conftest.$ac_ext\"") >&5
    21579 +if { (eval echo "$as_me:14248: \"$ac_cpp conftest.$ac_ext\"") >&5
     24668+if { (eval echo "$as_me:14359: \"$ac_cpp conftest.$ac_ext\"") >&5
    2158024669   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
    2158124670   ac_status=$?
     
    2158424673   cat conftest.err >&5
    2158524674-  echo "$as_me:13410: \$? = $ac_status" >&5
    21586 +  echo "$as_me:14254: \$? = $ac_status" >&5
     24675+  echo "$as_me:14365: \$? = $ac_status" >&5
    2158724676   (exit $ac_status); } >/dev/null; then
    2158824677   if test -s conftest.err; then
    2158924678     ac_cpp_err=$ac_c_preproc_warn_flag
    21590 @@ -13426,7 +14270,7 @@
     24679@@ -13426,7 +14381,7 @@
    2159124680 fi
    2159224681 rm -f conftest.err conftest.$ac_ext
    2159324682 fi
    2159424683-echo "$as_me:13429: result: `eval echo '${'$as_ac_Header'}'`" >&5
    21595 +echo "$as_me:14273: result: `eval echo '${'$as_ac_Header'}'`" >&5
     24684+echo "$as_me:14384: result: `eval echo '${'$as_ac_Header'}'`" >&5
    2159624685 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
    2159724686 if test `eval echo '${'$as_ac_Header'}'` = yes; then
    2159824687   cat >>confdefs.h <<EOF
    21599 @@ -13436,11 +14280,64 @@
     24688@@ -13436,11 +14391,64 @@
    2160024689 fi
    2160124690 done
    2160224691 
    21603 +echo "$as_me:14283: checking for header declaring getopt variables" >&5
     24692+echo "$as_me:14394: checking for header declaring getopt variables" >&5
    2160424693+echo $ECHO_N "checking for header declaring getopt variables... $ECHO_C" >&6
    2160524694+if test "${cf_cv_getopt_header+set}" = set; then
     
    2161124700+do
    2161224701+cat >conftest.$ac_ext <<_ACEOF
    21613 +#line 14293 "configure"
     24702+#line 14404 "configure"
    2161424703+#include "confdefs.h"
    2161524704+
     
    2162424713+_ACEOF
    2162524714+rm -f conftest.$ac_objext
    21626 +if { (eval echo "$as_me:14306: \"$ac_compile\"") >&5
     24715+if { (eval echo "$as_me:14417: \"$ac_compile\"") >&5
    2162724716+  (eval $ac_compile) 2>&5
    2162824717+  ac_status=$?
    21629 +  echo "$as_me:14309: \$? = $ac_status" >&5
     24718+  echo "$as_me:14420: \$? = $ac_status" >&5
    2163024719+  (exit $ac_status); } &&
    2163124720+         { ac_try='test -s conftest.$ac_objext'
    21632 +  { (eval echo "$as_me:14312: \"$ac_try\"") >&5
     24721+  { (eval echo "$as_me:14423: \"$ac_try\"") >&5
    2163324722+  (eval $ac_try) 2>&5
    2163424723+  ac_status=$?
    21635 +  echo "$as_me:14315: \$? = $ac_status" >&5
     24724+  echo "$as_me:14426: \$? = $ac_status" >&5
    2163624725+  (exit $ac_status); }; }; then
    2163724726+  cf_cv_getopt_header=$cf_header
     
    2164524734+
    2164624735+fi
    21647 +echo "$as_me:14327: result: $cf_cv_getopt_header" >&5
     24736+echo "$as_me:14438: result: $cf_cv_getopt_header" >&5
    2164824737+echo "${ECHO_T}$cf_cv_getopt_header" >&6
    2164924738+if test $cf_cv_getopt_header != none ; then
     
    2165924748 
    2166024749-echo "$as_me:13443: checking for main in -lcposix" >&5
    21661 +echo "$as_me:14340: checking for main in -lcposix" >&5
     24750+echo "$as_me:14451: checking for main in -lcposix" >&5
    2166224751 echo $ECHO_N "checking for main in -lcposix... $ECHO_C" >&6
    2166324752 if test "${ac_cv_lib_cposix_main+set}" = set; then
    2166424753   echo $ECHO_N "(cached) $ECHO_C" >&6
    21665 @@ -13448,7 +14345,7 @@
     24754@@ -13448,7 +14456,7 @@
    2166624755   ac_check_lib_save_LIBS=$LIBS
    2166724756 LIBS="-lcposix  $LIBS"
    2166824757 cat >conftest.$ac_ext <<_ACEOF
    2166924758-#line 13451 "configure"
    21670 +#line 14348 "configure"
     24759+#line 14459 "configure"
    2167124760 #include "confdefs.h"
    2167224761 
    2167324762 int
    21674 @@ -13460,16 +14357,16 @@
     24763@@ -13460,16 +14468,16 @@
    2167524764 }
    2167624765 _ACEOF
    2167724766 rm -f conftest.$ac_objext conftest$ac_exeext
    2167824767-if { (eval echo "$as_me:13463: \"$ac_link\"") >&5
    21679 +if { (eval echo "$as_me:14360: \"$ac_link\"") >&5
     24768+if { (eval echo "$as_me:14471: \"$ac_link\"") >&5
    2168024769   (eval $ac_link) 2>&5
    2168124770   ac_status=$?
    2168224771-  echo "$as_me:13466: \$? = $ac_status" >&5
    21683 +  echo "$as_me:14363: \$? = $ac_status" >&5
     24772+  echo "$as_me:14474: \$? = $ac_status" >&5
    2168424773   (exit $ac_status); } &&
    2168524774          { ac_try='test -s conftest$ac_exeext'
    2168624775-  { (eval echo "$as_me:13469: \"$ac_try\"") >&5
    21687 +  { (eval echo "$as_me:14366: \"$ac_try\"") >&5
     24776+  { (eval echo "$as_me:14477: \"$ac_try\"") >&5
    2168824777   (eval $ac_try) 2>&5
    2168924778   ac_status=$?
    2169024779-  echo "$as_me:13472: \$? = $ac_status" >&5
    21691 +  echo "$as_me:14369: \$? = $ac_status" >&5
     24780+  echo "$as_me:14480: \$? = $ac_status" >&5
    2169224781   (exit $ac_status); }; }; then
    2169324782   ac_cv_lib_cposix_main=yes
    2169424783 else
    21695 @@ -13480,7 +14377,7 @@
     24784@@ -13480,7 +14488,7 @@
    2169624785 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    2169724786 LIBS=$ac_check_lib_save_LIBS
    2169824787 fi
    2169924788-echo "$as_me:13483: result: $ac_cv_lib_cposix_main" >&5
    21700 +echo "$as_me:14380: result: $ac_cv_lib_cposix_main" >&5
     24789+echo "$as_me:14491: result: $ac_cv_lib_cposix_main" >&5
    2170124790 echo "${ECHO_T}$ac_cv_lib_cposix_main" >&6
    2170224791 if test $ac_cv_lib_cposix_main = yes; then
    2170324792   cat >>confdefs.h <<EOF
    21704 @@ -13491,7 +14388,7 @@
     24793@@ -13491,7 +14499,7 @@
    2170524794 
    2170624795 fi
    2170724796 
    2170824797-       echo "$as_me:13494: checking for bzero in -linet" >&5
    21709 +       echo "$as_me:14391: checking for bzero in -linet" >&5
     24798+       echo "$as_me:14502: checking for bzero in -linet" >&5
    2171024799 echo $ECHO_N "checking for bzero in -linet... $ECHO_C" >&6
    2171124800 if test "${ac_cv_lib_inet_bzero+set}" = set; then
    2171224801   echo $ECHO_N "(cached) $ECHO_C" >&6
    21713 @@ -13499,7 +14396,7 @@
     24802@@ -13499,7 +14507,7 @@
    2171424803   ac_check_lib_save_LIBS=$LIBS
    2171524804 LIBS="-linet  $LIBS"
    2171624805 cat >conftest.$ac_ext <<_ACEOF
    2171724806-#line 13502 "configure"
    21718 +#line 14399 "configure"
     24807+#line 14510 "configure"
    2171924808 #include "confdefs.h"
    2172024809 
    2172124810 /* Override any gcc2 internal prototype to avoid an error.  */
    21722 @@ -13518,16 +14415,16 @@
     24811@@ -13518,16 +14526,16 @@
    2172324812 }
    2172424813 _ACEOF
    2172524814 rm -f conftest.$ac_objext conftest$ac_exeext
    2172624815-if { (eval echo "$as_me:13521: \"$ac_link\"") >&5
    21727 +if { (eval echo "$as_me:14418: \"$ac_link\"") >&5
     24816+if { (eval echo "$as_me:14529: \"$ac_link\"") >&5
    2172824817   (eval $ac_link) 2>&5
    2172924818   ac_status=$?
    2173024819-  echo "$as_me:13524: \$? = $ac_status" >&5
    21731 +  echo "$as_me:14421: \$? = $ac_status" >&5
     24820+  echo "$as_me:14532: \$? = $ac_status" >&5
    2173224821   (exit $ac_status); } &&
    2173324822          { ac_try='test -s conftest$ac_exeext'
    2173424823-  { (eval echo "$as_me:13527: \"$ac_try\"") >&5
    21735 +  { (eval echo "$as_me:14424: \"$ac_try\"") >&5
     24824+  { (eval echo "$as_me:14535: \"$ac_try\"") >&5
    2173624825   (eval $ac_try) 2>&5
    2173724826   ac_status=$?
    2173824827-  echo "$as_me:13530: \$? = $ac_status" >&5
    21739 +  echo "$as_me:14427: \$? = $ac_status" >&5
     24828+  echo "$as_me:14538: \$? = $ac_status" >&5
    2174024829   (exit $ac_status); }; }; then
    2174124830   ac_cv_lib_inet_bzero=yes
    2174224831 else
    21743 @@ -13538,21 +14435,21 @@
     24832@@ -13538,21 +14546,21 @@
    2174424833 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    2174524834 LIBS=$ac_check_lib_save_LIBS
    2174624835 fi
    2174724836-echo "$as_me:13541: result: $ac_cv_lib_inet_bzero" >&5
    21748 +echo "$as_me:14438: result: $ac_cv_lib_inet_bzero" >&5
     24837+echo "$as_me:14549: result: $ac_cv_lib_inet_bzero" >&5
    2174924838 echo "${ECHO_T}$ac_cv_lib_inet_bzero" >&6
    2175024839 if test $ac_cv_lib_inet_bzero = yes; then
     
    2175424843 
    2175524844-echo "$as_me:13548: checking if sys/time.h works with sys/select.h" >&5
    21756 +echo "$as_me:14445: checking if sys/time.h works with sys/select.h" >&5
     24845+echo "$as_me:14556: checking if sys/time.h works with sys/select.h" >&5
    2175724846 echo $ECHO_N "checking if sys/time.h works with sys/select.h... $ECHO_C" >&6
    2175824847 if test "${cf_cv_sys_time_select+set}" = set; then
     
    2176224851 cat >conftest.$ac_ext <<_ACEOF
    2176324852-#line 13555 "configure"
    21764 +#line 14452 "configure"
     24853+#line 14563 "configure"
    2176524854 #include "confdefs.h"
    2176624855 
    2176724856 #include <sys/types.h>
    21768 @@ -13572,16 +14469,16 @@
     24857@@ -13572,16 +14580,16 @@
    2176924858 }
    2177024859 _ACEOF
    2177124860 rm -f conftest.$ac_objext
    2177224861-if { (eval echo "$as_me:13575: \"$ac_compile\"") >&5
    21773 +if { (eval echo "$as_me:14472: \"$ac_compile\"") >&5
     24862+if { (eval echo "$as_me:14583: \"$ac_compile\"") >&5
    2177424863   (eval $ac_compile) 2>&5
    2177524864   ac_status=$?
    2177624865-  echo "$as_me:13578: \$? = $ac_status" >&5
    21777 +  echo "$as_me:14475: \$? = $ac_status" >&5
     24866+  echo "$as_me:14586: \$? = $ac_status" >&5
    2177824867   (exit $ac_status); } &&
    2177924868          { ac_try='test -s conftest.$ac_objext'
    2178024869-  { (eval echo "$as_me:13581: \"$ac_try\"") >&5
    21781 +  { (eval echo "$as_me:14478: \"$ac_try\"") >&5
     24870+  { (eval echo "$as_me:14589: \"$ac_try\"") >&5
    2178224871   (eval $ac_try) 2>&5
    2178324872   ac_status=$?
    2178424873-  echo "$as_me:13584: \$? = $ac_status" >&5
    21785 +  echo "$as_me:14481: \$? = $ac_status" >&5
     24874+  echo "$as_me:14592: \$? = $ac_status" >&5
    2178624875   (exit $ac_status); }; }; then
    2178724876   cf_cv_sys_time_select=yes
    2178824877 else
    21789 @@ -13593,7 +14490,7 @@
     24878@@ -13593,7 +14601,7 @@
    2179024879 
    2179124880 fi
    2179224881 
    2179324882-echo "$as_me:13596: result: $cf_cv_sys_time_select" >&5
    21794 +echo "$as_me:14493: result: $cf_cv_sys_time_select" >&5
     24883+echo "$as_me:14604: result: $cf_cv_sys_time_select" >&5
    2179524884 echo "${ECHO_T}$cf_cv_sys_time_select" >&6
    2179624885 test "$cf_cv_sys_time_select" = yes && cat >>confdefs.h <<\EOF
    2179724886 #define HAVE_SYS_TIME_SELECT 1
    21798 @@ -13607,7 +14504,7 @@
     24887@@ -13607,7 +14615,7 @@
    2179924888 ac_compiler_gnu=$ac_cv_c_compiler_gnu
    2180024889 ac_main_return=return
    2180124890 
    2180224891-echo "$as_me:13610: checking for $CC option to accept ANSI C" >&5
    21803 +echo "$as_me:14507: checking for $CC option to accept ANSI C" >&5
     24892+echo "$as_me:14618: checking for $CC option to accept ANSI C" >&5
    2180424893 echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6
    2180524894 if test "${ac_cv_prog_cc_stdc+set}" = set; then
    2180624895   echo $ECHO_N "(cached) $ECHO_C" >&6
    21807 @@ -13615,7 +14512,7 @@
     24896@@ -13615,7 +14623,7 @@
    2180824897   ac_cv_prog_cc_stdc=no
    2180924898 ac_save_CC=$CC
    2181024899 cat >conftest.$ac_ext <<_ACEOF
    2181124900-#line 13618 "configure"
    21812 +#line 14515 "configure"
     24901+#line 14626 "configure"
    2181324902 #include "confdefs.h"
    2181424903 #include <stdarg.h>
    2181524904 #include <stdio.h>
    21816 @@ -13664,16 +14561,16 @@
     24905@@ -13664,16 +14672,16 @@
    2181724906 do
    2181824907   CC="$ac_save_CC $ac_arg"
    2181924908   rm -f conftest.$ac_objext
    2182024909-if { (eval echo "$as_me:13667: \"$ac_compile\"") >&5
    21821 +if { (eval echo "$as_me:14564: \"$ac_compile\"") >&5
     24910+if { (eval echo "$as_me:14675: \"$ac_compile\"") >&5
    2182224911   (eval $ac_compile) 2>&5
    2182324912   ac_status=$?
    2182424913-  echo "$as_me:13670: \$? = $ac_status" >&5
    21825 +  echo "$as_me:14567: \$? = $ac_status" >&5
     24914+  echo "$as_me:14678: \$? = $ac_status" >&5
    2182624915   (exit $ac_status); } &&
    2182724916          { ac_try='test -s conftest.$ac_objext'
    2182824917-  { (eval echo "$as_me:13673: \"$ac_try\"") >&5
    21829 +  { (eval echo "$as_me:14570: \"$ac_try\"") >&5
     24918+  { (eval echo "$as_me:14681: \"$ac_try\"") >&5
    2183024919   (eval $ac_try) 2>&5
    2183124920   ac_status=$?
    2183224921-  echo "$as_me:13676: \$? = $ac_status" >&5
    21833 +  echo "$as_me:14573: \$? = $ac_status" >&5
     24922+  echo "$as_me:14684: \$? = $ac_status" >&5
    2183424923   (exit $ac_status); }; }; then
    2183524924   ac_cv_prog_cc_stdc=$ac_arg
    2183624925 break
    21837 @@ -13690,21 +14587,21 @@
     24926@@ -13690,21 +14698,21 @@
    2183824927 
    2183924928 case "x$ac_cv_prog_cc_stdc" in
    2184024929   x|xno)
    2184124930-    echo "$as_me:13693: result: none needed" >&5
    21842 +    echo "$as_me:14590: result: none needed" >&5
     24931+    echo "$as_me:14701: result: none needed" >&5
    2184324932 echo "${ECHO_T}none needed" >&6 ;;
    2184424933   *)
    2184524934-    echo "$as_me:13696: result: $ac_cv_prog_cc_stdc" >&5
    21846 +    echo "$as_me:14593: result: $ac_cv_prog_cc_stdc" >&5
     24935+    echo "$as_me:14704: result: $ac_cv_prog_cc_stdc" >&5
    2184724936 echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6
    2184824937     CC="$CC $ac_cv_prog_cc_stdc" ;;
     
    2185024939 
    2185124940-echo "$as_me:13701: checking for an ANSI C-conforming const" >&5
    21852 +echo "$as_me:14598: checking for an ANSI C-conforming const" >&5
     24941+echo "$as_me:14709: checking for an ANSI C-conforming const" >&5
    2185324942 echo $ECHO_N "checking for an ANSI C-conforming const... $ECHO_C" >&6
    2185424943 if test "${ac_cv_c_const+set}" = set; then
     
    2185724946   cat >conftest.$ac_ext <<_ACEOF
    2185824947-#line 13707 "configure"
    21859 +#line 14604 "configure"
     24948+#line 14715 "configure"
    2186024949 #include "confdefs.h"
    2186124950 
    2186224951 int
    21863 @@ -13762,16 +14659,16 @@
     24952@@ -13762,16 +14770,16 @@
    2186424953 }
    2186524954 _ACEOF
    2186624955 rm -f conftest.$ac_objext
    2186724956-if { (eval echo "$as_me:13765: \"$ac_compile\"") >&5
    21868 +if { (eval echo "$as_me:14662: \"$ac_compile\"") >&5
     24957+if { (eval echo "$as_me:14773: \"$ac_compile\"") >&5
    2186924958   (eval $ac_compile) 2>&5
    2187024959   ac_status=$?
    2187124960-  echo "$as_me:13768: \$? = $ac_status" >&5
    21872 +  echo "$as_me:14665: \$? = $ac_status" >&5
     24961+  echo "$as_me:14776: \$? = $ac_status" >&5
    2187324962   (exit $ac_status); } &&
    2187424963          { ac_try='test -s conftest.$ac_objext'
    2187524964-  { (eval echo "$as_me:13771: \"$ac_try\"") >&5
    21876 +  { (eval echo "$as_me:14668: \"$ac_try\"") >&5
     24965+  { (eval echo "$as_me:14779: \"$ac_try\"") >&5
    2187724966   (eval $ac_try) 2>&5
    2187824967   ac_status=$?
    2187924968-  echo "$as_me:13774: \$? = $ac_status" >&5
    21880 +  echo "$as_me:14671: \$? = $ac_status" >&5
     24969+  echo "$as_me:14782: \$? = $ac_status" >&5
    2188124970   (exit $ac_status); }; }; then
    2188224971   ac_cv_c_const=yes
    2188324972 else
    21884 @@ -13781,7 +14678,7 @@
     24973@@ -13781,7 +14789,7 @@
    2188524974 fi
    2188624975 rm -f conftest.$ac_objext conftest.$ac_ext
    2188724976 fi
    2188824977-echo "$as_me:13784: result: $ac_cv_c_const" >&5
    21889 +echo "$as_me:14681: result: $ac_cv_c_const" >&5
     24978+echo "$as_me:14792: result: $ac_cv_c_const" >&5
    2189024979 echo "${ECHO_T}$ac_cv_c_const" >&6
    2189124980 if test $ac_cv_c_const = no; then
    2189224981 
    21893 @@ -13791,7 +14688,7 @@
     24982@@ -13791,7 +14799,7 @@
    2189424983 
    2189524984 fi
    2189624985 
    2189724986-echo "$as_me:13794: checking for inline" >&5
    21898 +echo "$as_me:14691: checking for inline" >&5
     24987+echo "$as_me:14802: checking for inline" >&5
    2189924988 echo $ECHO_N "checking for inline... $ECHO_C" >&6
    2190024989 if test "${ac_cv_c_inline+set}" = set; then
    2190124990   echo $ECHO_N "(cached) $ECHO_C" >&6
    21902 @@ -13799,7 +14696,7 @@
     24991@@ -13799,7 +14807,7 @@
    2190324992   ac_cv_c_inline=no
    2190424993 for ac_kw in inline __inline__ __inline; do
    2190524994   cat >conftest.$ac_ext <<_ACEOF
    2190624995-#line 13802 "configure"
    21907 +#line 14699 "configure"
     24996+#line 14810 "configure"
    2190824997 #include "confdefs.h"
    2190924998 #ifndef __cplusplus
    2191024999 static $ac_kw int static_foo () {return 0; }
    21911 @@ -13808,16 +14705,16 @@
     25000@@ -13808,16 +14816,16 @@
    2191225001 
    2191325002 _ACEOF
    2191425003 rm -f conftest.$ac_objext
    2191525004-if { (eval echo "$as_me:13811: \"$ac_compile\"") >&5
    21916 +if { (eval echo "$as_me:14708: \"$ac_compile\"") >&5
     25005+if { (eval echo "$as_me:14819: \"$ac_compile\"") >&5
    2191725006   (eval $ac_compile) 2>&5
    2191825007   ac_status=$?
    2191925008-  echo "$as_me:13814: \$? = $ac_status" >&5
    21920 +  echo "$as_me:14711: \$? = $ac_status" >&5
     25009+  echo "$as_me:14822: \$? = $ac_status" >&5
    2192125010   (exit $ac_status); } &&
    2192225011          { ac_try='test -s conftest.$ac_objext'
    2192325012-  { (eval echo "$as_me:13817: \"$ac_try\"") >&5
    21924 +  { (eval echo "$as_me:14714: \"$ac_try\"") >&5
     25013+  { (eval echo "$as_me:14825: \"$ac_try\"") >&5
    2192525014   (eval $ac_try) 2>&5
    2192625015   ac_status=$?
    2192725016-  echo "$as_me:13820: \$? = $ac_status" >&5
    21928 +  echo "$as_me:14717: \$? = $ac_status" >&5
     25017+  echo "$as_me:14828: \$? = $ac_status" >&5
    2192925018   (exit $ac_status); }; }; then
    2193025019   ac_cv_c_inline=$ac_kw; break
    2193125020 else
    21932 @@ -13828,7 +14725,7 @@
     25021@@ -13828,7 +14836,7 @@
    2193325022 done
    2193425023 
    2193525024 fi
    2193625025-echo "$as_me:13831: result: $ac_cv_c_inline" >&5
    21937 +echo "$as_me:14728: result: $ac_cv_c_inline" >&5
     25026+echo "$as_me:14839: result: $ac_cv_c_inline" >&5
    2193825027 echo "${ECHO_T}$ac_cv_c_inline" >&6
    2193925028 case $ac_cv_c_inline in
    2194025029   inline | yes) ;;
    21941 @@ -13851,7 +14748,7 @@
     25030@@ -13849,9 +14857,12 @@
     25031   if test "$INTEL_COMPILER" = yes
     25032   then
    2194225033     :
     25034+  elif test "$CLANG_COMPILER" = yes
     25035+  then
     25036+    :
    2194325037   elif test "$GCC" = yes
    2194425038   then
    2194525039-    echo "$as_me:13854: checking if $CC supports options to tune inlining" >&5
    21946 +    echo "$as_me:14751: checking if $CC supports options to tune inlining" >&5
     25040+    echo "$as_me:14865: checking if $CC supports options to tune inlining" >&5
    2194725041 echo $ECHO_N "checking if $CC supports options to tune inlining... $ECHO_C" >&6
    2194825042 if test "${cf_cv_gcc_inline+set}" = set; then
    2194925043   echo $ECHO_N "(cached) $ECHO_C" >&6
    21950 @@ -13860,7 +14757,7 @@
     25044@@ -13860,7 +14871,7 @@
    2195125045       cf_save_CFLAGS=$CFLAGS
    2195225046       CFLAGS="$CFLAGS --param max-inline-insns-single=1200"
    2195325047       cat >conftest.$ac_ext <<_ACEOF
    2195425048-#line 13863 "configure"
    21955 +#line 14760 "configure"
     25049+#line 14874 "configure"
    2195625050 #include "confdefs.h"
    2195725051 inline int foo(void) { return 1; }
    2195825052 int
    21959 @@ -13872,16 +14769,16 @@
     25053@@ -13872,16 +14883,16 @@
    2196025054 }
    2196125055 _ACEOF
    2196225056 rm -f conftest.$ac_objext
    2196325057-if { (eval echo "$as_me:13875: \"$ac_compile\"") >&5
    21964 +if { (eval echo "$as_me:14772: \"$ac_compile\"") >&5
     25058+if { (eval echo "$as_me:14886: \"$ac_compile\"") >&5
    2196525059   (eval $ac_compile) 2>&5
    2196625060   ac_status=$?
    2196725061-  echo "$as_me:13878: \$? = $ac_status" >&5
    21968 +  echo "$as_me:14775: \$? = $ac_status" >&5
     25062+  echo "$as_me:14889: \$? = $ac_status" >&5
    2196925063   (exit $ac_status); } &&
    2197025064          { ac_try='test -s conftest.$ac_objext'
    2197125065-  { (eval echo "$as_me:13881: \"$ac_try\"") >&5
    21972 +  { (eval echo "$as_me:14778: \"$ac_try\"") >&5
     25066+  { (eval echo "$as_me:14892: \"$ac_try\"") >&5
    2197325067   (eval $ac_try) 2>&5
    2197425068   ac_status=$?
    2197525069-  echo "$as_me:13884: \$? = $ac_status" >&5
    21976 +  echo "$as_me:14781: \$? = $ac_status" >&5
     25070+  echo "$as_me:14895: \$? = $ac_status" >&5
    2197725071   (exit $ac_status); }; }; then
    2197825072   cf_cv_gcc_inline=yes
    2197925073 else
    21980 @@ -13893,7 +14790,7 @@
     25074@@ -13893,7 +14904,7 @@
    2198125075       CFLAGS=$cf_save_CFLAGS
    2198225076 
    2198325077 fi
    2198425078-echo "$as_me:13896: result: $cf_cv_gcc_inline" >&5
    21985 +echo "$as_me:14793: result: $cf_cv_gcc_inline" >&5
     25079+echo "$as_me:14907: result: $cf_cv_gcc_inline" >&5
    2198625080 echo "${ECHO_T}$cf_cv_gcc_inline" >&6
    2198725081     if test "$cf_cv_gcc_inline" = yes ; then
    2198825082 
    21989 @@ -13979,7 +14876,7 @@
     25083@@ -13979,7 +14990,7 @@
    2199025084   fi
    2199125085 fi
    2199225086 
    2199325087-echo "$as_me:13982: checking for signal global datatype" >&5
    21994 +echo "$as_me:14879: checking for signal global datatype" >&5
     25088+echo "$as_me:14993: checking for signal global datatype" >&5
    2199525089 echo $ECHO_N "checking for signal global datatype... $ECHO_C" >&6
    2199625090 if test "${cf_cv_sig_atomic_t+set}" = set; then
    2199725091   echo $ECHO_N "(cached) $ECHO_C" >&6
    21998 @@ -13991,7 +14888,7 @@
     25092@@ -13991,7 +15002,7 @@
    2199925093                "int"
    2200025094        do
    2200125095        cat >conftest.$ac_ext <<_ACEOF
    2200225096-#line 13994 "configure"
    22003 +#line 14891 "configure"
     25097+#line 15005 "configure"
    2200425098 #include "confdefs.h"
    2200525099 
    2200625100 #include <sys/types.h>
    22007 @@ -14014,16 +14911,16 @@
     25101@@ -14014,16 +15025,16 @@
    2200825102 }
    2200925103 _ACEOF
    2201025104 rm -f conftest.$ac_objext
    2201125105-if { (eval echo "$as_me:14017: \"$ac_compile\"") >&5
    22012 +if { (eval echo "$as_me:14914: \"$ac_compile\"") >&5
     25106+if { (eval echo "$as_me:15028: \"$ac_compile\"") >&5
    2201325107   (eval $ac_compile) 2>&5
    2201425108   ac_status=$?
    2201525109-  echo "$as_me:14020: \$? = $ac_status" >&5
    22016 +  echo "$as_me:14917: \$? = $ac_status" >&5
     25110+  echo "$as_me:15031: \$? = $ac_status" >&5
    2201725111   (exit $ac_status); } &&
    2201825112          { ac_try='test -s conftest.$ac_objext'
    2201925113-  { (eval echo "$as_me:14023: \"$ac_try\"") >&5
    22020 +  { (eval echo "$as_me:14920: \"$ac_try\"") >&5
     25114+  { (eval echo "$as_me:15034: \"$ac_try\"") >&5
    2202125115   (eval $ac_try) 2>&5
    2202225116   ac_status=$?
    2202325117-  echo "$as_me:14026: \$? = $ac_status" >&5
    22024 +  echo "$as_me:14923: \$? = $ac_status" >&5
     25118+  echo "$as_me:15037: \$? = $ac_status" >&5
    2202525119   (exit $ac_status); }; }; then
    2202625120   cf_cv_sig_atomic_t=$cf_type
    2202725121 else
    22028 @@ -14037,7 +14934,7 @@
     25122@@ -14037,7 +15048,7 @@
    2202925123 
    2203025124 fi
    2203125125 
    2203225126-echo "$as_me:14040: result: $cf_cv_sig_atomic_t" >&5
    22033 +echo "$as_me:14937: result: $cf_cv_sig_atomic_t" >&5
     25127+echo "$as_me:15051: result: $cf_cv_sig_atomic_t" >&5
    2203425128 echo "${ECHO_T}$cf_cv_sig_atomic_t" >&6
    2203525129 test "$cf_cv_sig_atomic_t" != no && cat >>confdefs.h <<EOF
    2203625130 #define SIG_ATOMIC_T $cf_cv_sig_atomic_t
    22037 @@ -14045,7 +14942,7 @@
     25131@@ -14045,7 +15056,7 @@
    2203825132 
    2203925133 if test $NCURSES_CHTYPE = auto ; then
    2204025134 
    2204125135-echo "$as_me:14048: checking for type of chtype" >&5
    22042 +echo "$as_me:14945: checking for type of chtype" >&5
     25136+echo "$as_me:15059: checking for type of chtype" >&5
    2204325137 echo $ECHO_N "checking for type of chtype... $ECHO_C" >&6
    2204425138 if test "${cf_cv_typeof_chtype+set}" = set; then
    2204525139   echo $ECHO_N "(cached) $ECHO_C" >&6
    22046 @@ -14055,7 +14952,7 @@
     25140@@ -14055,7 +15066,7 @@
    2204725141   cf_cv_typeof_chtype=long
    2204825142 else
    2204925143   cat >conftest.$ac_ext <<_ACEOF
    2205025144-#line 14058 "configure"
    22051 +#line 14955 "configure"
     25145+#line 15069 "configure"
    2205225146 #include "confdefs.h"
    2205325147 
    2205425148 #define WANT_BITS 31
    22055 @@ -14090,15 +14987,15 @@
     25149@@ -14090,15 +15101,15 @@
    2205625150 
    2205725151 _ACEOF
    2205825152 rm -f conftest$ac_exeext
    2205925153-if { (eval echo "$as_me:14093: \"$ac_link\"") >&5
    22060 +if { (eval echo "$as_me:14990: \"$ac_link\"") >&5
     25154+if { (eval echo "$as_me:15104: \"$ac_link\"") >&5
    2206125155   (eval $ac_link) 2>&5
    2206225156   ac_status=$?
    2206325157-  echo "$as_me:14096: \$? = $ac_status" >&5
    22064 +  echo "$as_me:14993: \$? = $ac_status" >&5
     25158+  echo "$as_me:15107: \$? = $ac_status" >&5
    2206525159   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
    2206625160-  { (eval echo "$as_me:14098: \"$ac_try\"") >&5
    22067 +  { (eval echo "$as_me:14995: \"$ac_try\"") >&5
     25161+  { (eval echo "$as_me:15109: \"$ac_try\"") >&5
    2206825162   (eval $ac_try) 2>&5
    2206925163   ac_status=$?
    2207025164-  echo "$as_me:14101: \$? = $ac_status" >&5
    22071 +  echo "$as_me:14998: \$? = $ac_status" >&5
     25165+  echo "$as_me:15112: \$? = $ac_status" >&5
    2207225166   (exit $ac_status); }; }; then
    2207325167   cf_cv_typeof_chtype=`cat cf_test.out`
    2207425168 else
    22075 @@ -14113,7 +15010,7 @@
     25169@@ -14113,7 +15124,7 @@
    2207625170 
    2207725171 fi
    2207825172 
    2207925173-echo "$as_me:14116: result: $cf_cv_typeof_chtype" >&5
    22080 +echo "$as_me:15013: result: $cf_cv_typeof_chtype" >&5
     25174+echo "$as_me:15127: result: $cf_cv_typeof_chtype" >&5
    2208125175 echo "${ECHO_T}$cf_cv_typeof_chtype" >&6
    2208225176 
    2208325177 cat >>confdefs.h <<EOF
    22084 @@ -14125,14 +15022,14 @@
     25178@@ -14125,14 +15136,14 @@
    2208525179 fi
    2208625180 test "$cf_cv_typeof_chtype" = unsigned && cf_cv_typeof_chtype=""
    2208725181 
    2208825182-echo "$as_me:14128: checking if unsigned literals are legal" >&5
    22089 +echo "$as_me:15025: checking if unsigned literals are legal" >&5
     25183+echo "$as_me:15139: checking if unsigned literals are legal" >&5
    2209025184 echo $ECHO_N "checking if unsigned literals are legal... $ECHO_C" >&6
    2209125185 if test "${cf_cv_unsigned_literals+set}" = set; then
     
    2209525189        cat >conftest.$ac_ext <<_ACEOF
    2209625190-#line 14135 "configure"
    22097 +#line 15032 "configure"
     25191+#line 15146 "configure"
    2209825192 #include "confdefs.h"
    2209925193 
    2210025194 int
    22101 @@ -14144,16 +15041,16 @@
     25195@@ -14144,16 +15155,16 @@
    2210225196 }
    2210325197 _ACEOF
    2210425198 rm -f conftest.$ac_objext
    2210525199-if { (eval echo "$as_me:14147: \"$ac_compile\"") >&5
    22106 +if { (eval echo "$as_me:15044: \"$ac_compile\"") >&5
     25200+if { (eval echo "$as_me:15158: \"$ac_compile\"") >&5
    2210725201   (eval $ac_compile) 2>&5
    2210825202   ac_status=$?
    2210925203-  echo "$as_me:14150: \$? = $ac_status" >&5
    22110 +  echo "$as_me:15047: \$? = $ac_status" >&5
     25204+  echo "$as_me:15161: \$? = $ac_status" >&5
    2211125205   (exit $ac_status); } &&
    2211225206          { ac_try='test -s conftest.$ac_objext'
    2211325207-  { (eval echo "$as_me:14153: \"$ac_try\"") >&5
    22114 +  { (eval echo "$as_me:15050: \"$ac_try\"") >&5
     25208+  { (eval echo "$as_me:15164: \"$ac_try\"") >&5
    2211525209   (eval $ac_try) 2>&5
    2211625210   ac_status=$?
    2211725211-  echo "$as_me:14156: \$? = $ac_status" >&5
    22118 +  echo "$as_me:15053: \$? = $ac_status" >&5
     25212+  echo "$as_me:15167: \$? = $ac_status" >&5
    2211925213   (exit $ac_status); }; }; then
    2212025214   cf_cv_unsigned_literals=yes
    2212125215 else
    22122 @@ -14165,7 +15062,7 @@
     25216@@ -14165,7 +15176,7 @@
    2212325217 
    2212425218 fi
    2212525219 
    2212625220-echo "$as_me:14168: result: $cf_cv_unsigned_literals" >&5
    22127 +echo "$as_me:15065: result: $cf_cv_unsigned_literals" >&5
     25221+echo "$as_me:15179: result: $cf_cv_unsigned_literals" >&5
    2212825222 echo "${ECHO_T}$cf_cv_unsigned_literals" >&6
    2212925223 
    2213025224 cf_cv_1UL="1"
    22131 @@ -14181,14 +15078,14 @@
     25225@@ -14181,14 +15192,14 @@
    2213225226 
    2213325227 ###    Checks for external-data
    2213425228 
    2213525229-echo "$as_me:14184: checking if external errno is declared" >&5
    22136 +echo "$as_me:15081: checking if external errno is declared" >&5
     25230+echo "$as_me:15195: checking if external errno is declared" >&5
    2213725231 echo $ECHO_N "checking if external errno is declared... $ECHO_C" >&6
    2213825232 if test "${cf_cv_dcl_errno+set}" = set; then
     
    2214225236     cat >conftest.$ac_ext <<_ACEOF
    2214325237-#line 14191 "configure"
    22144 +#line 15088 "configure"
     25238+#line 15202 "configure"
    2214525239 #include "confdefs.h"
    2214625240 
    2214725241 #ifdef HAVE_STDLIB_H
    22148 @@ -14206,16 +15103,16 @@
     25242@@ -14206,16 +15217,16 @@
    2214925243 }
    2215025244 _ACEOF
    2215125245 rm -f conftest.$ac_objext
    2215225246-if { (eval echo "$as_me:14209: \"$ac_compile\"") >&5
    22153 +if { (eval echo "$as_me:15106: \"$ac_compile\"") >&5
     25247+if { (eval echo "$as_me:15220: \"$ac_compile\"") >&5
    2215425248   (eval $ac_compile) 2>&5
    2215525249   ac_status=$?
    2215625250-  echo "$as_me:14212: \$? = $ac_status" >&5
    22157 +  echo "$as_me:15109: \$? = $ac_status" >&5
     25251+  echo "$as_me:15223: \$? = $ac_status" >&5
    2215825252   (exit $ac_status); } &&
    2215925253          { ac_try='test -s conftest.$ac_objext'
    2216025254-  { (eval echo "$as_me:14215: \"$ac_try\"") >&5
    22161 +  { (eval echo "$as_me:15112: \"$ac_try\"") >&5
     25255+  { (eval echo "$as_me:15226: \"$ac_try\"") >&5
    2216225256   (eval $ac_try) 2>&5
    2216325257   ac_status=$?
    2216425258-  echo "$as_me:14218: \$? = $ac_status" >&5
    22165 +  echo "$as_me:15115: \$? = $ac_status" >&5
     25259+  echo "$as_me:15229: \$? = $ac_status" >&5
    2216625260   (exit $ac_status); }; }; then
    2216725261   cf_cv_dcl_errno=yes
    2216825262 else
    22169 @@ -14226,7 +15123,7 @@
     25263@@ -14226,7 +15237,7 @@
    2217025264 rm -f conftest.$ac_objext conftest.$ac_ext
    2217125265 
    2217225266 fi
    2217325267-echo "$as_me:14229: result: $cf_cv_dcl_errno" >&5
    22174 +echo "$as_me:15126: result: $cf_cv_dcl_errno" >&5
     25268+echo "$as_me:15240: result: $cf_cv_dcl_errno" >&5
    2217525269 echo "${ECHO_T}$cf_cv_dcl_errno" >&6
    2217625270 
    2217725271 if test "$cf_cv_dcl_errno" = no ; then
    22178 @@ -14241,14 +15138,14 @@
     25272@@ -14241,14 +15252,14 @@
    2217925273 
    2218025274 # It's possible (for near-UNIX clones) that the data doesn't exist
    2218125275 
    2218225276-echo "$as_me:14244: checking if external errno exists" >&5
    22183 +echo "$as_me:15141: checking if external errno exists" >&5
     25277+echo "$as_me:15255: checking if external errno exists" >&5
    2218425278 echo $ECHO_N "checking if external errno exists... $ECHO_C" >&6
    2218525279 if test "${cf_cv_have_errno+set}" = set; then
     
    2218925283     cat >conftest.$ac_ext <<_ACEOF
    2219025284-#line 14251 "configure"
    22191 +#line 15148 "configure"
     25285+#line 15262 "configure"
    2219225286 #include "confdefs.h"
    2219325287 
    2219425288 #undef errno
    22195 @@ -14263,16 +15160,16 @@
     25289@@ -14263,16 +15274,16 @@
    2219625290 }
    2219725291 _ACEOF
    2219825292 rm -f conftest.$ac_objext conftest$ac_exeext
    2219925293-if { (eval echo "$as_me:14266: \"$ac_link\"") >&5
    22200 +if { (eval echo "$as_me:15163: \"$ac_link\"") >&5
     25294+if { (eval echo "$as_me:15277: \"$ac_link\"") >&5
    2220125295   (eval $ac_link) 2>&5
    2220225296   ac_status=$?
    2220325297-  echo "$as_me:14269: \$? = $ac_status" >&5
    22204 +  echo "$as_me:15166: \$? = $ac_status" >&5
     25298+  echo "$as_me:15280: \$? = $ac_status" >&5
    2220525299   (exit $ac_status); } &&
    2220625300          { ac_try='test -s conftest$ac_exeext'
    2220725301-  { (eval echo "$as_me:14272: \"$ac_try\"") >&5
    22208 +  { (eval echo "$as_me:15169: \"$ac_try\"") >&5
     25302+  { (eval echo "$as_me:15283: \"$ac_try\"") >&5
    2220925303   (eval $ac_try) 2>&5
    2221025304   ac_status=$?
    2221125305-  echo "$as_me:14275: \$? = $ac_status" >&5
    22212 +  echo "$as_me:15172: \$? = $ac_status" >&5
     25306+  echo "$as_me:15286: \$? = $ac_status" >&5
    2221325307   (exit $ac_status); }; }; then
    2221425308   cf_cv_have_errno=yes
    2221525309 else
    22216 @@ -14283,7 +15180,7 @@
     25310@@ -14283,7 +15294,7 @@
    2221725311 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    2221825312 
    2221925313 fi
    2222025314-echo "$as_me:14286: result: $cf_cv_have_errno" >&5
    22221 +echo "$as_me:15183: result: $cf_cv_have_errno" >&5
     25315+echo "$as_me:15297: result: $cf_cv_have_errno" >&5
    2222225316 echo "${ECHO_T}$cf_cv_have_errno" >&6
    2222325317 
    2222425318 if test "$cf_cv_have_errno" = yes ; then
    22225 @@ -14296,7 +15193,7 @@
     25319@@ -14296,7 +15307,7 @@
    2222625320 
    2222725321 fi
    2222825322 
    2222925323-echo "$as_me:14299: checking if data-only library module links" >&5
    22230 +echo "$as_me:15196: checking if data-only library module links" >&5
     25324+echo "$as_me:15310: checking if data-only library module links" >&5
    2223125325 echo $ECHO_N "checking if data-only library module links... $ECHO_C" >&6
    2223225326 if test "${cf_cv_link_dataonly+set}" = set; then
    2223325327   echo $ECHO_N "(cached) $ECHO_C" >&6
    22234 @@ -14304,20 +15201,20 @@
     25328@@ -14304,20 +15315,20 @@
    2223525329 
    2223625330        rm -f conftest.a
    2223725331        cat >conftest.$ac_ext <<EOF
    2223825332-#line 14307 "configure"
    22239 +#line 15204 "configure"
     25333+#line 15318 "configure"
    2224025334 int    testdata[3] = { 123, 456, 789 };
    2224125335 EOF
    2224225336-       if { (eval echo "$as_me:14310: \"$ac_compile\"") >&5
    22243 +       if { (eval echo "$as_me:15207: \"$ac_compile\"") >&5
     25337+       if { (eval echo "$as_me:15321: \"$ac_compile\"") >&5
    2224425338   (eval $ac_compile) 2>&5
    2224525339   ac_status=$?
    2224625340-  echo "$as_me:14313: \$? = $ac_status" >&5
    22247 +  echo "$as_me:15210: \$? = $ac_status" >&5
     25341+  echo "$as_me:15324: \$? = $ac_status" >&5
    2224825342   (exit $ac_status); } ; then
    2224925343                mv conftest.o data.o && \
     
    2225325347        cat >conftest.$ac_ext <<EOF
    2225425348-#line 14320 "configure"
    22255 +#line 15217 "configure"
     25349+#line 15331 "configure"
    2225625350 int    testfunc()
    2225725351 {
    2225825352 #if defined(NeXT)
    22259 @@ -14330,10 +15227,10 @@
     25353@@ -14330,10 +15341,10 @@
    2226025354 #endif
    2226125355 }
    2226225356 EOF
    2226325357-       if { (eval echo "$as_me:14333: \"$ac_compile\"") >&5
    22264 +       if { (eval echo "$as_me:15230: \"$ac_compile\"") >&5
     25358+       if { (eval echo "$as_me:15344: \"$ac_compile\"") >&5
    2226525359   (eval $ac_compile) 2>&5
    2226625360   ac_status=$?
    2226725361-  echo "$as_me:14336: \$? = $ac_status" >&5
    22268 +  echo "$as_me:15233: \$? = $ac_status" >&5
     25362+  echo "$as_me:15347: \$? = $ac_status" >&5
    2226925363   (exit $ac_status); }; then
    2227025364                mv conftest.o func.o && \
    2227125365                ( $AR $ARFLAGS conftest.a func.o ) 2>&5 1>/dev/null
    22272 @@ -14346,7 +15243,7 @@
     25366@@ -14346,7 +15357,7 @@
    2227325367   cf_cv_link_dataonly=unknown
    2227425368 else
    2227525369   cat >conftest.$ac_ext <<_ACEOF
    2227625370-#line 14349 "configure"
    22277 +#line 15246 "configure"
     25371+#line 15360 "configure"
    2227825372 #include "confdefs.h"
    2227925373 
    2228025374        int main()
    22281 @@ -14357,15 +15254,15 @@
     25375@@ -14357,15 +15368,15 @@
    2228225376 
    2228325377 _ACEOF
    2228425378 rm -f conftest$ac_exeext
    2228525379-if { (eval echo "$as_me:14360: \"$ac_link\"") >&5
    22286 +if { (eval echo "$as_me:15257: \"$ac_link\"") >&5
     25380+if { (eval echo "$as_me:15371: \"$ac_link\"") >&5
    2228725381   (eval $ac_link) 2>&5
    2228825382   ac_status=$?
    2228925383-  echo "$as_me:14363: \$? = $ac_status" >&5
    22290 +  echo "$as_me:15260: \$? = $ac_status" >&5
     25384+  echo "$as_me:15374: \$? = $ac_status" >&5
    2229125385   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
    2229225386-  { (eval echo "$as_me:14365: \"$ac_try\"") >&5
    22293 +  { (eval echo "$as_me:15262: \"$ac_try\"") >&5
     25387+  { (eval echo "$as_me:15376: \"$ac_try\"") >&5
    2229425388   (eval $ac_try) 2>&5
    2229525389   ac_status=$?
    2229625390-  echo "$as_me:14368: \$? = $ac_status" >&5
    22297 +  echo "$as_me:15265: \$? = $ac_status" >&5
     25391+  echo "$as_me:15379: \$? = $ac_status" >&5
    2229825392   (exit $ac_status); }; }; then
    2229925393   cf_cv_link_dataonly=yes
    2230025394 else
    22301 @@ -14380,7 +15277,7 @@
     25395@@ -14380,7 +15391,7 @@
    2230225396 
    2230325397 fi
    2230425398 
    2230525399-echo "$as_me:14383: result: $cf_cv_link_dataonly" >&5
    22306 +echo "$as_me:15280: result: $cf_cv_link_dataonly" >&5
     25400+echo "$as_me:15394: result: $cf_cv_link_dataonly" >&5
    2230725401 echo "${ECHO_T}$cf_cv_link_dataonly" >&6
    2230825402 
    2230925403 if test "$cf_cv_link_dataonly" = no ; then
    22310 @@ -14415,13 +15312,13 @@
     25404@@ -14400,10 +15411,12 @@
     25405 getttynam \
     25406 issetugid \
     25407 poll \
     25408+putenv \
     25409 remove \
     25410 select \
     25411 setbuf \
     25412 setbuffer \
     25413+setenv \
     25414 setvbuf \
     25415 sigaction \
     25416 sigvec \
     25417@@ -14415,13 +15428,13 @@
    2231125418 
    2231225419 do
    2231325420 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
    2231425421-echo "$as_me:14418: checking for $ac_func" >&5
    22315 +echo "$as_me:15315: checking for $ac_func" >&5
     25422+echo "$as_me:15431: checking for $ac_func" >&5
    2231625423 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
    2231725424 if eval "test \"\${$as_ac_var+set}\" = set"; then
     
    2232025427   cat >conftest.$ac_ext <<_ACEOF
    2232125428-#line 14424 "configure"
    22322 +#line 15321 "configure"
     25429+#line 15437 "configure"
    2232325430 #include "confdefs.h"
    2232425431 /* System header to define __stub macros and hopefully few prototypes,
    2232525432     which can conflict with char $ac_func (); below.  */
    22326 @@ -14452,16 +15349,16 @@
     25433@@ -14444,7 +15457,7 @@
     25434 #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
     25435 choke me
     25436 #else
     25437-f = $ac_func;
     25438+f = $ac_func; /* workaround for ICC 12.0.3 */ if (f == 0) return 1;
     25439 #endif
     25440 
     25441   ;
     25442@@ -14452,16 +15465,16 @@
    2232725443 }
    2232825444 _ACEOF
    2232925445 rm -f conftest.$ac_objext conftest$ac_exeext
    2233025446-if { (eval echo "$as_me:14455: \"$ac_link\"") >&5
    22331 +if { (eval echo "$as_me:15352: \"$ac_link\"") >&5
     25447+if { (eval echo "$as_me:15468: \"$ac_link\"") >&5
    2233225448   (eval $ac_link) 2>&5
    2233325449   ac_status=$?
    2233425450-  echo "$as_me:14458: \$? = $ac_status" >&5
    22335 +  echo "$as_me:15355: \$? = $ac_status" >&5
     25451+  echo "$as_me:15471: \$? = $ac_status" >&5
    2233625452   (exit $ac_status); } &&
    2233725453          { ac_try='test -s conftest$ac_exeext'
    2233825454-  { (eval echo "$as_me:14461: \"$ac_try\"") >&5
    22339 +  { (eval echo "$as_me:15358: \"$ac_try\"") >&5
     25455+  { (eval echo "$as_me:15474: \"$ac_try\"") >&5
    2234025456   (eval $ac_try) 2>&5
    2234125457   ac_status=$?
    2234225458-  echo "$as_me:14464: \$? = $ac_status" >&5
    22343 +  echo "$as_me:15361: \$? = $ac_status" >&5
     25459+  echo "$as_me:15477: \$? = $ac_status" >&5
    2234425460   (exit $ac_status); }; }; then
    2234525461   eval "$as_ac_var=yes"
    2234625462 else
    22347 @@ -14471,7 +15368,7 @@
     25463@@ -14471,7 +15484,7 @@
    2234825464 fi
    2234925465 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    2235025466 fi
    2235125467-echo "$as_me:14474: result: `eval echo '${'$as_ac_var'}'`" >&5
    22352 +echo "$as_me:15371: result: `eval echo '${'$as_ac_var'}'`" >&5
     25468+echo "$as_me:15487: result: `eval echo '${'$as_ac_var'}'`" >&5
    2235325469 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
    2235425470 if test `eval echo '${'$as_ac_var'}'` = yes; then
    2235525471   cat >>confdefs.h <<EOF
    22356 @@ -14483,14 +15380,14 @@
     25472@@ -14483,14 +15496,70 @@
    2235725473 
    2235825474 if test "$with_getcap" = "yes" ; then
    2235925475 
    2236025476-echo "$as_me:14486: checking for terminal-capability database functions" >&5
    22361 +echo "$as_me:15383: checking for terminal-capability database functions" >&5
     25477+echo "$as_me:15499: checking for terminal-capability database functions" >&5
    2236225478 echo $ECHO_N "checking for terminal-capability database functions... $ECHO_C" >&6
    2236325479 if test "${cf_cv_cgetent+set}" = set; then
     
    2236725483 cat >conftest.$ac_ext <<_ACEOF
    2236825484-#line 14493 "configure"
    22369 +#line 15390 "configure"
    22370  #include "confdefs.h"
    22371  
    22372  #include <stdlib.h>
    22373 @@ -14501,7 +15398,7 @@
    22374         char temp[128];
    22375         char *buf = temp;
    22376         char *db_array = temp;
    22377 -       cgetent(&buf, /* int *, */ &db_array, "vt100");
    22378 +       cgetent(&buf, &db_array, "vt100");
    22379         cgetcap(buf, "tc", '=');
    22380         cgetmatch(buf, "tc");
    22381  
    22382 @@ -14510,16 +15407,16 @@
    22383  }
    22384  _ACEOF
    22385  rm -f conftest.$ac_objext conftest$ac_exeext
    22386 -if { (eval echo "$as_me:14513: \"$ac_link\"") >&5
    22387 +if { (eval echo "$as_me:15410: \"$ac_link\"") >&5
    22388    (eval $ac_link) 2>&5
    22389    ac_status=$?
    22390 -  echo "$as_me:14516: \$? = $ac_status" >&5
    22391 +  echo "$as_me:15413: \$? = $ac_status" >&5
    22392    (exit $ac_status); } &&
    22393           { ac_try='test -s conftest$ac_exeext'
    22394 -  { (eval echo "$as_me:14519: \"$ac_try\"") >&5
    22395 +  { (eval echo "$as_me:15416: \"$ac_try\"") >&5
    22396    (eval $ac_try) 2>&5
    22397    ac_status=$?
    22398 -  echo "$as_me:14522: \$? = $ac_status" >&5
    22399 +  echo "$as_me:15419: \$? = $ac_status" >&5
    22400    (exit $ac_status); }; }; then
    22401    cf_cv_cgetent=yes
    22402  else
    22403 @@ -14530,23 +15427,85 @@
    22404  rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    22405  
    22406  fi
    22407 -
    22408 -echo "$as_me:14534: result: $cf_cv_cgetent" >&5
    22409 +echo "$as_me:15430: result: $cf_cv_cgetent" >&5
    22410  echo "${ECHO_T}$cf_cv_cgetent" >&6
    22411 -test "$cf_cv_cgetent" = yes && cat >>confdefs.h <<\EOF
    22412 +
    22413 +if test "$cf_cv_cgetent" = yes
    22414 +then
    22415 +       cat >>confdefs.h <<\EOF
    22416  #define HAVE_BSD_CGETENT 1
    22417  EOF
    22418  
    22419 +echo "$as_me:15439: checking if cgetent uses const parameter" >&5
    22420 +echo $ECHO_N "checking if cgetent uses const parameter... $ECHO_C" >&6
    22421 +if test "${cf_cv_cgetent_const+set}" = set; then
    22422 +  echo $ECHO_N "(cached) $ECHO_C" >&6
    22423 +else
    22424 +
    22425 +cat >conftest.$ac_ext <<_ACEOF
    22426 +#line 15446 "configure"
     25485+#line 15506 "configure"
    2242725486+#include "confdefs.h"
    2242825487+
     
    2243425493+       char temp[128];
    2243525494+       char *buf = temp;
    22436 +#ifndef _NETBSD_SOURCE                 /* given, since April 2004 in stdlib.h */
    22437 +       const char *db_array = temp;
     25495+       char *db_array = temp;
    2243825496+       cgetent(&buf, &db_array, "vt100");
    22439 +#endif
    2244025497+       cgetcap(buf, "tc", '=');
    2244125498+       cgetmatch(buf, "tc");
     
    2244625503+_ACEOF
    2244725504+rm -f conftest.$ac_objext conftest$ac_exeext
    22448 +if { (eval echo "$as_me:15468: \"$ac_link\"") >&5
     25505+if { (eval echo "$as_me:15526: \"$ac_link\"") >&5
    2244925506+  (eval $ac_link) 2>&5
    2245025507+  ac_status=$?
    22451 +  echo "$as_me:15471: \$? = $ac_status" >&5
     25508+  echo "$as_me:15529: \$? = $ac_status" >&5
    2245225509+  (exit $ac_status); } &&
    2245325510+         { ac_try='test -s conftest$ac_exeext'
    22454 +  { (eval echo "$as_me:15474: \"$ac_try\"") >&5
     25511+  { (eval echo "$as_me:15532: \"$ac_try\"") >&5
    2245525512+  (eval $ac_try) 2>&5
    2245625513+  ac_status=$?
    22457 +  echo "$as_me:15477: \$? = $ac_status" >&5
     25514+  echo "$as_me:15535: \$? = $ac_status" >&5
    2245825515+  (exit $ac_status); }; }; then
    22459 +  cf_cv_cgetent_const=yes
     25516+  cf_cv_cgetent=yes
    2246025517+else
    2246125518+  echo "$as_me: failed program was:" >&5
    2246225519+cat conftest.$ac_ext >&5
    22463 +cf_cv_cgetent_const=no
     25520+cf_cv_cgetent=no
    2246425521+fi
    2246525522+rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    2246625523+
    2246725524+fi
    22468 +echo "$as_me:15488: result: $cf_cv_cgetent_const" >&5
     25525+echo "$as_me:15546: result: $cf_cv_cgetent" >&5
     25526+echo "${ECHO_T}$cf_cv_cgetent" >&6
     25527+
     25528+if test "$cf_cv_cgetent" = yes
     25529+then
     25530+       cat >>confdefs.h <<\EOF
     25531+#define HAVE_BSD_CGETENT 1
     25532+EOF
     25533+
     25534+echo "$as_me:15555: checking if cgetent uses const parameter" >&5
     25535+echo $ECHO_N "checking if cgetent uses const parameter... $ECHO_C" >&6
     25536+if test "${cf_cv_cgetent_const+set}" = set; then
     25537+  echo $ECHO_N "(cached) $ECHO_C" >&6
     25538+else
     25539+
     25540+cat >conftest.$ac_ext <<_ACEOF
     25541+#line 15562 "configure"
     25542 #include "confdefs.h"
     25543 
     25544 #include <stdlib.h>
     25545@@ -14500,8 +15569,10 @@
     25546 
     25547        char temp[128];
     25548        char *buf = temp;
     25549-       char *db_array = temp;
     25550-       cgetent(&buf, /* int *, */ &db_array, "vt100");
     25551+#ifndef _NETBSD_SOURCE                 /* given, since April 2004 in stdlib.h */
     25552+       const char *db_array = temp;
     25553+       cgetent(&buf, &db_array, "vt100");
     25554+#endif
     25555        cgetcap(buf, "tc", '=');
     25556        cgetmatch(buf, "tc");
     25557 
     25558@@ -14510,43 +15581,47 @@
     25559 }
     25560 _ACEOF
     25561 rm -f conftest.$ac_objext conftest$ac_exeext
     25562-if { (eval echo "$as_me:14513: \"$ac_link\"") >&5
     25563+if { (eval echo "$as_me:15584: \"$ac_link\"") >&5
     25564   (eval $ac_link) 2>&5
     25565   ac_status=$?
     25566-  echo "$as_me:14516: \$? = $ac_status" >&5
     25567+  echo "$as_me:15587: \$? = $ac_status" >&5
     25568   (exit $ac_status); } &&
     25569          { ac_try='test -s conftest$ac_exeext'
     25570-  { (eval echo "$as_me:14519: \"$ac_try\"") >&5
     25571+  { (eval echo "$as_me:15590: \"$ac_try\"") >&5
     25572   (eval $ac_try) 2>&5
     25573   ac_status=$?
     25574-  echo "$as_me:14522: \$? = $ac_status" >&5
     25575+  echo "$as_me:15593: \$? = $ac_status" >&5
     25576   (exit $ac_status); }; }; then
     25577-  cf_cv_cgetent=yes
     25578+  cf_cv_cgetent_const=yes
     25579 else
     25580   echo "$as_me: failed program was:" >&5
     25581 cat conftest.$ac_ext >&5
     25582-cf_cv_cgetent=no
     25583+cf_cv_cgetent_const=no
     25584 fi
     25585 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
     25586 
     25587 fi
     25588-
     25589-echo "$as_me:14534: result: $cf_cv_cgetent" >&5
     25590-echo "${ECHO_T}$cf_cv_cgetent" >&6
     25591-test "$cf_cv_cgetent" = yes && cat >>confdefs.h <<\EOF
     25592-#define HAVE_BSD_CGETENT 1
     25593+echo "$as_me:15604: result: $cf_cv_cgetent_const" >&5
    2246925594+echo "${ECHO_T}$cf_cv_cgetent_const" >&6
    2247025595+       if test "$cf_cv_cgetent_const" = yes
     
    2247225597+               cat >>confdefs.h <<EOF
    2247325598+#define CGETENT_CONST const
    22474 +EOF
    22475 +
     25599 EOF
     25600 
    2247625601+       fi
    2247725602+fi
     
    2248025605 
    2248125606-echo "$as_me:14542: checking for isascii" >&5
    22482 +echo "$as_me:15501: checking for isascii" >&5
     25607+echo "$as_me:15617: checking for isascii" >&5
    2248325608 echo $ECHO_N "checking for isascii... $ECHO_C" >&6
    2248425609 if test "${cf_cv_have_isascii+set}" = set; then
     
    2248825613        cat >conftest.$ac_ext <<_ACEOF
    2248925614-#line 14549 "configure"
    22490 +#line 15508 "configure"
     25615+#line 15624 "configure"
    2249125616 #include "confdefs.h"
    2249225617 #include <ctype.h>
    2249325618 int
    22494 @@ -14558,16 +15517,16 @@
     25619@@ -14558,16 +15633,16 @@
    2249525620 }
    2249625621 _ACEOF
    2249725622 rm -f conftest.$ac_objext conftest$ac_exeext
    2249825623-if { (eval echo "$as_me:14561: \"$ac_link\"") >&5
    22499 +if { (eval echo "$as_me:15520: \"$ac_link\"") >&5
     25624+if { (eval echo "$as_me:15636: \"$ac_link\"") >&5
    2250025625   (eval $ac_link) 2>&5
    2250125626   ac_status=$?
    2250225627-  echo "$as_me:14564: \$? = $ac_status" >&5
    22503 +  echo "$as_me:15523: \$? = $ac_status" >&5
     25628+  echo "$as_me:15639: \$? = $ac_status" >&5
    2250425629   (exit $ac_status); } &&
    2250525630          { ac_try='test -s conftest$ac_exeext'
    2250625631-  { (eval echo "$as_me:14567: \"$ac_try\"") >&5
    22507 +  { (eval echo "$as_me:15526: \"$ac_try\"") >&5
     25632+  { (eval echo "$as_me:15642: \"$ac_try\"") >&5
    2250825633   (eval $ac_try) 2>&5
    2250925634   ac_status=$?
    2251025635-  echo "$as_me:14570: \$? = $ac_status" >&5
    22511 +  echo "$as_me:15529: \$? = $ac_status" >&5
     25636+  echo "$as_me:15645: \$? = $ac_status" >&5
    2251225637   (exit $ac_status); }; }; then
    2251325638   cf_cv_have_isascii=yes
    2251425639 else
    22515 @@ -14578,17 +15537,17 @@
     25640@@ -14578,17 +15653,17 @@
    2251625641 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    2251725642 
    2251825643 fi
    2251925644-echo "$as_me:14581: result: $cf_cv_have_isascii" >&5
    22520 +echo "$as_me:15540: result: $cf_cv_have_isascii" >&5
     25645+echo "$as_me:15656: result: $cf_cv_have_isascii" >&5
    2252125646 echo "${ECHO_T}$cf_cv_have_isascii" >&6
    2252225647 test "$cf_cv_have_isascii" = yes && cat >>confdefs.h <<\EOF
     
    2252625651 if test "$ac_cv_func_sigaction" = yes; then
    2252725652-echo "$as_me:14588: checking whether sigaction needs _POSIX_SOURCE" >&5
    22528 +echo "$as_me:15547: checking whether sigaction needs _POSIX_SOURCE" >&5
     25653+echo "$as_me:15663: checking whether sigaction needs _POSIX_SOURCE" >&5
    2252925654 echo $ECHO_N "checking whether sigaction needs _POSIX_SOURCE... $ECHO_C" >&6
    2253025655 cat >conftest.$ac_ext <<_ACEOF
    2253125656-#line 14591 "configure"
    22532 +#line 15550 "configure"
     25657+#line 15666 "configure"
    2253325658 #include "confdefs.h"
    2253425659 
    2253525660 #include <sys/types.h>
    22536 @@ -14602,16 +15561,16 @@
     25661@@ -14602,16 +15677,16 @@
    2253725662 }
    2253825663 _ACEOF
    2253925664 rm -f conftest.$ac_objext
    2254025665-if { (eval echo "$as_me:14605: \"$ac_compile\"") >&5
    22541 +if { (eval echo "$as_me:15564: \"$ac_compile\"") >&5
     25666+if { (eval echo "$as_me:15680: \"$ac_compile\"") >&5
    2254225667   (eval $ac_compile) 2>&5
    2254325668   ac_status=$?
    2254425669-  echo "$as_me:14608: \$? = $ac_status" >&5
    22545 +  echo "$as_me:15567: \$? = $ac_status" >&5
     25670+  echo "$as_me:15683: \$? = $ac_status" >&5
    2254625671   (exit $ac_status); } &&
    2254725672          { ac_try='test -s conftest.$ac_objext'
    2254825673-  { (eval echo "$as_me:14611: \"$ac_try\"") >&5
    22549 +  { (eval echo "$as_me:15570: \"$ac_try\"") >&5
     25674+  { (eval echo "$as_me:15686: \"$ac_try\"") >&5
    2255025675   (eval $ac_try) 2>&5
    2255125676   ac_status=$?
    2255225677-  echo "$as_me:14614: \$? = $ac_status" >&5
    22553 +  echo "$as_me:15573: \$? = $ac_status" >&5
     25678+  echo "$as_me:15689: \$? = $ac_status" >&5
    2255425679   (exit $ac_status); }; }; then
    2255525680   sigact_bad=no
    2255625681 else
    22557 @@ -14619,7 +15578,7 @@
     25682@@ -14619,7 +15694,7 @@
    2255825683 cat conftest.$ac_ext >&5
    2255925684 
    2256025685 cat >conftest.$ac_ext <<_ACEOF
    2256125686-#line 14622 "configure"
    22562 +#line 15581 "configure"
     25687+#line 15697 "configure"
    2256325688 #include "confdefs.h"
    2256425689 
    2256525690 #define _POSIX_SOURCE
    22566 @@ -14634,20 +15593,20 @@
     25691@@ -14634,20 +15709,20 @@
    2256725692 }
    2256825693 _ACEOF
    2256925694 rm -f conftest.$ac_objext
    2257025695-if { (eval echo "$as_me:14637: \"$ac_compile\"") >&5
    22571 +if { (eval echo "$as_me:15596: \"$ac_compile\"") >&5
     25696+if { (eval echo "$as_me:15712: \"$ac_compile\"") >&5
    2257225697   (eval $ac_compile) 2>&5
    2257325698   ac_status=$?
    2257425699-  echo "$as_me:14640: \$? = $ac_status" >&5
    22575 +  echo "$as_me:15599: \$? = $ac_status" >&5
     25700+  echo "$as_me:15715: \$? = $ac_status" >&5
    2257625701   (exit $ac_status); } &&
    2257725702          { ac_try='test -s conftest.$ac_objext'
    2257825703-  { (eval echo "$as_me:14643: \"$ac_try\"") >&5
    22579 +  { (eval echo "$as_me:15602: \"$ac_try\"") >&5
     25704+  { (eval echo "$as_me:15718: \"$ac_try\"") >&5
    2258025705   (eval $ac_try) 2>&5
    2258125706   ac_status=$?
    2258225707-  echo "$as_me:14646: \$? = $ac_status" >&5
    22583 +  echo "$as_me:15605: \$? = $ac_status" >&5
     25708+  echo "$as_me:15721: \$? = $ac_status" >&5
    2258425709   (exit $ac_status); }; }; then
    2258525710   sigact_bad=yes
     
    2259025715 
    2259125716 else
    22592 @@ -14658,11 +15617,11 @@
     25717@@ -14658,11 +15733,11 @@
    2259325718 rm -f conftest.$ac_objext conftest.$ac_ext
    2259425719 fi
    2259525720 rm -f conftest.$ac_objext conftest.$ac_ext
    2259625721-echo "$as_me:14661: result: $sigact_bad" >&5
    22597 +echo "$as_me:15620: result: $sigact_bad" >&5
     25722+echo "$as_me:15736: result: $sigact_bad" >&5
    2259825723 echo "${ECHO_T}$sigact_bad" >&6
    2259925724 fi
    2260025725 
    2260125726-echo "$as_me:14665: checking if nanosleep really works" >&5
    22602 +echo "$as_me:15624: checking if nanosleep really works" >&5
     25727+echo "$as_me:15740: checking if nanosleep really works" >&5
    2260325728 echo $ECHO_N "checking if nanosleep really works... $ECHO_C" >&6
    2260425729 if test "${cf_cv_func_nanosleep+set}" = set; then
    2260525730   echo $ECHO_N "(cached) $ECHO_C" >&6
    22606 @@ -14672,7 +15631,7 @@
     25731@@ -14672,7 +15747,7 @@
    2260725732   cf_cv_func_nanosleep=unknown
    2260825733 else
    2260925734   cat >conftest.$ac_ext <<_ACEOF
    2261025735-#line 14675 "configure"
    22611 +#line 15634 "configure"
     25736+#line 15750 "configure"
    2261225737 #include "confdefs.h"
    2261325738 
    2261425739 #include <stdio.h>
    22615 @@ -14697,15 +15656,15 @@
     25740@@ -14697,15 +15772,15 @@
    2261625741 
    2261725742 _ACEOF
    2261825743 rm -f conftest$ac_exeext
    2261925744-if { (eval echo "$as_me:14700: \"$ac_link\"") >&5
    22620 +if { (eval echo "$as_me:15659: \"$ac_link\"") >&5
     25745+if { (eval echo "$as_me:15775: \"$ac_link\"") >&5
    2262125746   (eval $ac_link) 2>&5
    2262225747   ac_status=$?
    2262325748-  echo "$as_me:14703: \$? = $ac_status" >&5
    22624 +  echo "$as_me:15662: \$? = $ac_status" >&5
     25749+  echo "$as_me:15778: \$? = $ac_status" >&5
    2262525750   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
    2262625751-  { (eval echo "$as_me:14705: \"$ac_try\"") >&5
    22627 +  { (eval echo "$as_me:15664: \"$ac_try\"") >&5
     25752+  { (eval echo "$as_me:15780: \"$ac_try\"") >&5
    2262825753   (eval $ac_try) 2>&5
    2262925754   ac_status=$?
    2263025755-  echo "$as_me:14708: \$? = $ac_status" >&5
    22631 +  echo "$as_me:15667: \$? = $ac_status" >&5
     25756+  echo "$as_me:15783: \$? = $ac_status" >&5
    2263225757   (exit $ac_status); }; }; then
    2263325758   cf_cv_func_nanosleep=yes
    2263425759 else
    22635 @@ -14717,7 +15676,7 @@
     25760@@ -14717,7 +15792,7 @@
    2263625761 rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
    2263725762 fi
    2263825763 fi
    2263925764-echo "$as_me:14720: result: $cf_cv_func_nanosleep" >&5
    22640 +echo "$as_me:15679: result: $cf_cv_func_nanosleep" >&5
     25765+echo "$as_me:15795: result: $cf_cv_func_nanosleep" >&5
    2264125766 echo "${ECHO_T}$cf_cv_func_nanosleep" >&6
    2264225767 
    2264325768 test "$cf_cv_func_nanosleep" = "yes" && cat >>confdefs.h <<\EOF
    22644 @@ -14731,23 +15690,23 @@
     25769@@ -14731,23 +15806,23 @@
    2264525770 
    2264625771 do
    2264725772 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
    2264825773-echo "$as_me:14734: checking for $ac_header" >&5
    22649 +echo "$as_me:15693: checking for $ac_header" >&5
     25774+echo "$as_me:15809: checking for $ac_header" >&5
    2265025775 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
    2265125776 if eval "test \"\${$as_ac_Header+set}\" = set"; then
     
    2265425779   cat >conftest.$ac_ext <<_ACEOF
    2265525780-#line 14740 "configure"
    22656 +#line 15699 "configure"
     25781+#line 15815 "configure"
    2265725782 #include "confdefs.h"
    2265825783 #include <$ac_header>
    2265925784 _ACEOF
    2266025785-if { (eval echo "$as_me:14744: \"$ac_cpp conftest.$ac_ext\"") >&5
    22661 +if { (eval echo "$as_me:15703: \"$ac_cpp conftest.$ac_ext\"") >&5
     25786+if { (eval echo "$as_me:15819: \"$ac_cpp conftest.$ac_ext\"") >&5
    2266225787   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
    2266325788   ac_status=$?
     
    2266625791   cat conftest.err >&5
    2266725792-  echo "$as_me:14750: \$? = $ac_status" >&5
    22668 +  echo "$as_me:15709: \$? = $ac_status" >&5
     25793+  echo "$as_me:15825: \$? = $ac_status" >&5
    2266925794   (exit $ac_status); } >/dev/null; then
    2267025795   if test -s conftest.err; then
    2267125796     ac_cpp_err=$ac_c_preproc_warn_flag
    22672 @@ -14766,7 +15725,7 @@
     25797@@ -14766,7 +15841,7 @@
    2267325798 fi
    2267425799 rm -f conftest.err conftest.$ac_ext
    2267525800 fi
    2267625801-echo "$as_me:14769: result: `eval echo '${'$as_ac_Header'}'`" >&5
    22677 +echo "$as_me:15728: result: `eval echo '${'$as_ac_Header'}'`" >&5
     25802+echo "$as_me:15844: result: `eval echo '${'$as_ac_Header'}'`" >&5
    2267825803 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
    2267925804 if test `eval echo '${'$as_ac_Header'}'` = yes; then
    2268025805   cat >>confdefs.h <<EOF
    22681 @@ -14781,23 +15740,23 @@
     25806@@ -14781,23 +15856,23 @@
    2268225807 for ac_header in sys/termio.h
    2268325808 do
    2268425809 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
    2268525810-echo "$as_me:14784: checking for $ac_header" >&5
    22686 +echo "$as_me:15743: checking for $ac_header" >&5
     25811+echo "$as_me:15859: checking for $ac_header" >&5
    2268725812 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
    2268825813 if eval "test \"\${$as_ac_Header+set}\" = set"; then
     
    2269125816   cat >conftest.$ac_ext <<_ACEOF
    2269225817-#line 14790 "configure"
    22693 +#line 15749 "configure"
     25818+#line 15865 "configure"
    2269425819 #include "confdefs.h"
    2269525820 #include <$ac_header>
    2269625821 _ACEOF
    2269725822-if { (eval echo "$as_me:14794: \"$ac_cpp conftest.$ac_ext\"") >&5
    22698 +if { (eval echo "$as_me:15753: \"$ac_cpp conftest.$ac_ext\"") >&5
     25823+if { (eval echo "$as_me:15869: \"$ac_cpp conftest.$ac_ext\"") >&5
    2269925824   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
    2270025825   ac_status=$?
     
    2270325828   cat conftest.err >&5
    2270425829-  echo "$as_me:14800: \$? = $ac_status" >&5
    22705 +  echo "$as_me:15759: \$? = $ac_status" >&5
     25830+  echo "$as_me:15875: \$? = $ac_status" >&5
    2270625831   (exit $ac_status); } >/dev/null; then
    2270725832   if test -s conftest.err; then
    2270825833     ac_cpp_err=$ac_c_preproc_warn_flag
    22709 @@ -14816,7 +15775,7 @@
     25834@@ -14816,7 +15891,7 @@
    2271025835 fi
    2271125836 rm -f conftest.err conftest.$ac_ext
    2271225837 fi
    2271325838-echo "$as_me:14819: result: `eval echo '${'$as_ac_Header'}'`" >&5
    22714 +echo "$as_me:15778: result: `eval echo '${'$as_ac_Header'}'`" >&5
     25839+echo "$as_me:15894: result: `eval echo '${'$as_ac_Header'}'`" >&5
    2271525840 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
    2271625841 if test `eval echo '${'$as_ac_Header'}'` = yes; then
    2271725842   cat >>confdefs.h <<EOF
    22718 @@ -14834,10 +15793,10 @@
     25843@@ -14834,10 +15909,10 @@
    2271925844        *)      termios_bad=maybe ;;
    2272025845        esac
    2272125846        if test "$termios_bad" = maybe ; then
    2272225847-       echo "$as_me:14837: checking whether termios.h needs _POSIX_SOURCE" >&5
    22723 +       echo "$as_me:15796: checking whether termios.h needs _POSIX_SOURCE" >&5
     25848+       echo "$as_me:15912: checking whether termios.h needs _POSIX_SOURCE" >&5
    2272425849 echo $ECHO_N "checking whether termios.h needs _POSIX_SOURCE... $ECHO_C" >&6
    2272525850        cat >conftest.$ac_ext <<_ACEOF
    2272625851-#line 14840 "configure"
    22727 +#line 15799 "configure"
     25852+#line 15915 "configure"
    2272825853 #include "confdefs.h"
    2272925854 #include <termios.h>
    2273025855 int
    22731 @@ -14849,16 +15808,16 @@
     25856@@ -14849,16 +15924,16 @@
    2273225857 }
    2273325858 _ACEOF
    2273425859 rm -f conftest.$ac_objext
    2273525860-if { (eval echo "$as_me:14852: \"$ac_compile\"") >&5
    22736 +if { (eval echo "$as_me:15811: \"$ac_compile\"") >&5
     25861+if { (eval echo "$as_me:15927: \"$ac_compile\"") >&5
    2273725862   (eval $ac_compile) 2>&5
    2273825863   ac_status=$?
    2273925864-  echo "$as_me:14855: \$? = $ac_status" >&5
    22740 +  echo "$as_me:15814: \$? = $ac_status" >&5
     25865+  echo "$as_me:15930: \$? = $ac_status" >&5
    2274125866   (exit $ac_status); } &&
    2274225867          { ac_try='test -s conftest.$ac_objext'
    2274325868-  { (eval echo "$as_me:14858: \"$ac_try\"") >&5
    22744 +  { (eval echo "$as_me:15817: \"$ac_try\"") >&5
     25869+  { (eval echo "$as_me:15933: \"$ac_try\"") >&5
    2274525870   (eval $ac_try) 2>&5
    2274625871   ac_status=$?
    2274725872-  echo "$as_me:14861: \$? = $ac_status" >&5
    22748 +  echo "$as_me:15820: \$? = $ac_status" >&5
     25873+  echo "$as_me:15936: \$? = $ac_status" >&5
    2274925874   (exit $ac_status); }; }; then
    2275025875   termios_bad=no
    2275125876 else
    22752 @@ -14866,7 +15825,7 @@
     25877@@ -14866,7 +15941,7 @@
    2275325878 cat conftest.$ac_ext >&5
    2275425879 
    2275525880                cat >conftest.$ac_ext <<_ACEOF
    2275625881-#line 14869 "configure"
    22757 +#line 15828 "configure"
     25882+#line 15944 "configure"
    2275825883 #include "confdefs.h"
    2275925884 
    2276025885 #define _POSIX_SOURCE
    22761 @@ -14880,23 +15839,23 @@
     25886@@ -14880,23 +15955,23 @@
    2276225887 }
    2276325888 _ACEOF
    2276425889 rm -f conftest.$ac_objext
    2276525890-if { (eval echo "$as_me:14883: \"$ac_compile\"") >&5
    22766 +if { (eval echo "$as_me:15842: \"$ac_compile\"") >&5
     25891+if { (eval echo "$as_me:15958: \"$ac_compile\"") >&5
    2276725892   (eval $ac_compile) 2>&5
    2276825893   ac_status=$?
    2276925894-  echo "$as_me:14886: \$? = $ac_status" >&5
    22770 +  echo "$as_me:15845: \$? = $ac_status" >&5
     25895+  echo "$as_me:15961: \$? = $ac_status" >&5
    2277125896   (exit $ac_status); } &&
    2277225897          { ac_try='test -s conftest.$ac_objext'
    2277325898-  { (eval echo "$as_me:14889: \"$ac_try\"") >&5
    22774 +  { (eval echo "$as_me:15848: \"$ac_try\"") >&5
     25899+  { (eval echo "$as_me:15964: \"$ac_try\"") >&5
    2277525900   (eval $ac_try) 2>&5
    2277625901   ac_status=$?
    2277725902-  echo "$as_me:14892: \$? = $ac_status" >&5
    22778 +  echo "$as_me:15851: \$? = $ac_status" >&5
     25903+  echo "$as_me:15967: \$? = $ac_status" >&5
    2277925904   (exit $ac_status); }; }; then
    2278025905   termios_bad=unknown
     
    2278825913 
    2278925914 fi
    22790 @@ -14904,19 +15863,19 @@
     25915@@ -14904,19 +15979,19 @@
    2279125916 
    2279225917 fi
    2279325918 rm -f conftest.$ac_objext conftest.$ac_ext
    2279425919-       echo "$as_me:14907: result: $termios_bad" >&5
    22795 +       echo "$as_me:15866: result: $termios_bad" >&5
     25920+       echo "$as_me:15982: result: $termios_bad" >&5
    2279625921 echo "${ECHO_T}$termios_bad" >&6
    2279725922        fi
     
    2279925924 
    2280025925-echo "$as_me:14912: checking for tcgetattr" >&5
    22801 +echo "$as_me:15871: checking for tcgetattr" >&5
     25926+echo "$as_me:15987: checking for tcgetattr" >&5
    2280225927 echo $ECHO_N "checking for tcgetattr... $ECHO_C" >&6
    2280325928 if test "${cf_cv_have_tcgetattr+set}" = set; then
     
    2280725932 cat >conftest.$ac_ext <<_ACEOF
    2280825933-#line 14919 "configure"
    22809 +#line 15878 "configure"
     25934+#line 15994 "configure"
    2281025935 #include "confdefs.h"
    2281125936 
    2281225937 #include <sys/types.h>
    22813 @@ -14944,16 +15903,16 @@
     25938@@ -14944,16 +16019,16 @@
    2281425939 }
    2281525940 _ACEOF
    2281625941 rm -f conftest.$ac_objext conftest$ac_exeext
    2281725942-if { (eval echo "$as_me:14947: \"$ac_link\"") >&5
    22818 +if { (eval echo "$as_me:15906: \"$ac_link\"") >&5
     25943+if { (eval echo "$as_me:16022: \"$ac_link\"") >&5
    2281925944   (eval $ac_link) 2>&5
    2282025945   ac_status=$?
    2282125946-  echo "$as_me:14950: \$? = $ac_status" >&5
    22822 +  echo "$as_me:15909: \$? = $ac_status" >&5
     25947+  echo "$as_me:16025: \$? = $ac_status" >&5
    2282325948   (exit $ac_status); } &&
    2282425949          { ac_try='test -s conftest$ac_exeext'
    2282525950-  { (eval echo "$as_me:14953: \"$ac_try\"") >&5
    22826 +  { (eval echo "$as_me:15912: \"$ac_try\"") >&5
     25951+  { (eval echo "$as_me:16028: \"$ac_try\"") >&5
    2282725952   (eval $ac_try) 2>&5
    2282825953   ac_status=$?
    2282925954-  echo "$as_me:14956: \$? = $ac_status" >&5
    22830 +  echo "$as_me:15915: \$? = $ac_status" >&5
     25955+  echo "$as_me:16031: \$? = $ac_status" >&5
    2283125956   (exit $ac_status); }; }; then
    2283225957   cf_cv_have_tcgetattr=yes
    2283325958 else
    22834 @@ -14963,20 +15922,20 @@
     25959@@ -14963,20 +16038,20 @@
    2283525960 fi
    2283625961 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    2283725962 fi
    2283825963-echo "$as_me:14966: result: $cf_cv_have_tcgetattr" >&5
    22839 +echo "$as_me:15925: result: $cf_cv_have_tcgetattr" >&5
     25964+echo "$as_me:16041: result: $cf_cv_have_tcgetattr" >&5
    2284025965 echo "${ECHO_T}$cf_cv_have_tcgetattr" >&6
    2284125966 test "$cf_cv_have_tcgetattr" = yes && cat >>confdefs.h <<\EOF
     
    2284425969 
    2284525970-echo "$as_me:14972: checking for vsscanf function or workaround" >&5
    22846 +echo "$as_me:15931: checking for vsscanf function or workaround" >&5
     25971+echo "$as_me:16047: checking for vsscanf function or workaround" >&5
    2284725972 echo $ECHO_N "checking for vsscanf function or workaround... $ECHO_C" >&6
    2284825973 if test "${cf_cv_func_vsscanf+set}" = set; then
     
    2285225977 cat >conftest.$ac_ext <<_ACEOF
    2285325978-#line 14979 "configure"
    22854 +#line 15938 "configure"
     25979+#line 16054 "configure"
    2285525980 #include "confdefs.h"
    2285625981 
    2285725982 #include <stdarg.h>
    22858 @@ -14992,16 +15951,16 @@
     25983@@ -14992,16 +16067,16 @@
    2285925984 }
    2286025985 _ACEOF
    2286125986 rm -f conftest.$ac_objext conftest$ac_exeext
    2286225987-if { (eval echo "$as_me:14995: \"$ac_link\"") >&5
    22863 +if { (eval echo "$as_me:15954: \"$ac_link\"") >&5
     25988+if { (eval echo "$as_me:16070: \"$ac_link\"") >&5
    2286425989   (eval $ac_link) 2>&5
    2286525990   ac_status=$?
    2286625991-  echo "$as_me:14998: \$? = $ac_status" >&5
    22867 +  echo "$as_me:15957: \$? = $ac_status" >&5
     25992+  echo "$as_me:16073: \$? = $ac_status" >&5
    2286825993   (exit $ac_status); } &&
    2286925994          { ac_try='test -s conftest$ac_exeext'
    2287025995-  { (eval echo "$as_me:15001: \"$ac_try\"") >&5
    22871 +  { (eval echo "$as_me:15960: \"$ac_try\"") >&5
     25996+  { (eval echo "$as_me:16076: \"$ac_try\"") >&5
    2287225997   (eval $ac_try) 2>&5
    2287325998   ac_status=$?
    2287425999-  echo "$as_me:15004: \$? = $ac_status" >&5
    22875 +  echo "$as_me:15963: \$? = $ac_status" >&5
     26000+  echo "$as_me:16079: \$? = $ac_status" >&5
    2287626001   (exit $ac_status); }; }; then
    2287726002   cf_cv_func_vsscanf=vsscanf
    2287826003 else
    22879 @@ -15009,7 +15968,7 @@
     26004@@ -15009,7 +16084,7 @@
    2288026005 cat conftest.$ac_ext >&5
    2288126006 
    2288226007 cat >conftest.$ac_ext <<_ACEOF
    2288326008-#line 15012 "configure"
    22884 +#line 15971 "configure"
     26009+#line 16087 "configure"
    2288526010 #include "confdefs.h"
    2288626011 
    2288726012 #include <stdarg.h>
    22888 @@ -15031,16 +15990,16 @@
     26013@@ -15031,16 +16106,16 @@
    2288926014 }
    2289026015 _ACEOF
    2289126016 rm -f conftest.$ac_objext conftest$ac_exeext
    2289226017-if { (eval echo "$as_me:15034: \"$ac_link\"") >&5
    22893 +if { (eval echo "$as_me:15993: \"$ac_link\"") >&5
     26018+if { (eval echo "$as_me:16109: \"$ac_link\"") >&5
    2289426019   (eval $ac_link) 2>&5
    2289526020   ac_status=$?
    2289626021-  echo "$as_me:15037: \$? = $ac_status" >&5
    22897 +  echo "$as_me:15996: \$? = $ac_status" >&5
     26022+  echo "$as_me:16112: \$? = $ac_status" >&5
    2289826023   (exit $ac_status); } &&
    2289926024          { ac_try='test -s conftest$ac_exeext'
    2290026025-  { (eval echo "$as_me:15040: \"$ac_try\"") >&5
    22901 +  { (eval echo "$as_me:15999: \"$ac_try\"") >&5
     26026+  { (eval echo "$as_me:16115: \"$ac_try\"") >&5
    2290226027   (eval $ac_try) 2>&5
    2290326028   ac_status=$?
    2290426029-  echo "$as_me:15043: \$? = $ac_status" >&5
    22905 +  echo "$as_me:16002: \$? = $ac_status" >&5
     26030+  echo "$as_me:16118: \$? = $ac_status" >&5
    2290626031   (exit $ac_status); }; }; then
    2290726032   cf_cv_func_vsscanf=vfscanf
    2290826033 else
    22909 @@ -15048,7 +16007,7 @@
     26034@@ -15048,7 +16123,7 @@
    2291026035 cat conftest.$ac_ext >&5
    2291126036 
    2291226037 cat >conftest.$ac_ext <<_ACEOF
    2291326038-#line 15051 "configure"
    22914 +#line 16010 "configure"
     26039+#line 16126 "configure"
    2291526040 #include "confdefs.h"
    2291626041 
    2291726042 #include <stdarg.h>
    22918 @@ -15070,16 +16029,16 @@
     26043@@ -15070,16 +16145,16 @@
    2291926044 }
    2292026045 _ACEOF
    2292126046 rm -f conftest.$ac_objext conftest$ac_exeext
    2292226047-if { (eval echo "$as_me:15073: \"$ac_link\"") >&5
    22923 +if { (eval echo "$as_me:16032: \"$ac_link\"") >&5
     26048+if { (eval echo "$as_me:16148: \"$ac_link\"") >&5
    2292426049   (eval $ac_link) 2>&5
    2292526050   ac_status=$?
    2292626051-  echo "$as_me:15076: \$? = $ac_status" >&5
    22927 +  echo "$as_me:16035: \$? = $ac_status" >&5
     26052+  echo "$as_me:16151: \$? = $ac_status" >&5
    2292826053   (exit $ac_status); } &&
    2292926054          { ac_try='test -s conftest$ac_exeext'
    2293026055-  { (eval echo "$as_me:15079: \"$ac_try\"") >&5
    22931 +  { (eval echo "$as_me:16038: \"$ac_try\"") >&5
     26056+  { (eval echo "$as_me:16154: \"$ac_try\"") >&5
    2293226057   (eval $ac_try) 2>&5
    2293326058   ac_status=$?
    2293426059-  echo "$as_me:15082: \$? = $ac_status" >&5
    22935 +  echo "$as_me:16041: \$? = $ac_status" >&5
     26060+  echo "$as_me:16157: \$? = $ac_status" >&5
    2293626061   (exit $ac_status); }; }; then
    2293726062   cf_cv_func_vsscanf=_doscan
    2293826063 else
    22939 @@ -15094,7 +16053,7 @@
     26064@@ -15094,7 +16169,7 @@
    2294026065 fi
    2294126066 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    2294226067 fi
    2294326068-echo "$as_me:15097: result: $cf_cv_func_vsscanf" >&5
    22944 +echo "$as_me:16056: result: $cf_cv_func_vsscanf" >&5
     26069+echo "$as_me:16172: result: $cf_cv_func_vsscanf" >&5
    2294526070 echo "${ECHO_T}$cf_cv_func_vsscanf" >&6
    2294626071 
    2294726072 case $cf_cv_func_vsscanf in #(vi
    22948 @@ -15112,7 +16071,7 @@
     26073@@ -15112,7 +16187,7 @@
    2294926074 ;;
    2295026075 esac
    2295126076 
    2295226077-echo "$as_me:15115: checking for working mkstemp" >&5
    22953 +echo "$as_me:16074: checking for working mkstemp" >&5
     26078+echo "$as_me:16190: checking for working mkstemp" >&5
    2295426079 echo $ECHO_N "checking for working mkstemp... $ECHO_C" >&6
    2295526080 if test "${cf_cv_func_mkstemp+set}" = set; then
    2295626081   echo $ECHO_N "(cached) $ECHO_C" >&6
    22957 @@ -15120,13 +16079,13 @@
     26082@@ -15120,68 +16195,10 @@
    2295826083 
    2295926084 rm -rf conftest*
    2296026085 if test "$cross_compiling" = yes; then
    2296126086-  echo "$as_me:15123: checking for mkstemp" >&5
    22962 +  echo "$as_me:16082: checking for mkstemp" >&5
    22963  echo $ECHO_N "checking for mkstemp... $ECHO_C" >&6
    22964  if test "${ac_cv_func_mkstemp+set}" = set; then
    22965    echo $ECHO_N "(cached) $ECHO_C" >&6
    22966  else
    22967    cat >conftest.$ac_ext <<_ACEOF
     26087-echo $ECHO_N "checking for mkstemp... $ECHO_C" >&6
     26088-if test "${ac_cv_func_mkstemp+set}" = set; then
     26089-  echo $ECHO_N "(cached) $ECHO_C" >&6
     26090-else
     26091-  cat >conftest.$ac_ext <<_ACEOF
    2296826092-#line 15129 "configure"
    22969 +#line 16088 "configure"
    22970  #include "confdefs.h"
    22971  /* System header to define __stub macros and hopefully few prototypes,
    22972      which can conflict with char mkstemp (); below.  */
    22973 @@ -15157,16 +16116,16 @@
    22974  }
    22975  _ACEOF
    22976  rm -f conftest.$ac_objext conftest$ac_exeext
     26093-#include "confdefs.h"
     26094-/* System header to define __stub macros and hopefully few prototypes,
     26095-    which can conflict with char mkstemp (); below.  */
     26096-#include <assert.h>
     26097-/* Override any gcc2 internal prototype to avoid an error.  */
     26098-#ifdef __cplusplus
     26099-extern "C"
     26100-#endif
     26101-/* We use char because int might match the return type of a gcc2
     26102-   builtin and then its argument prototype would still apply.  */
     26103-char mkstemp ();
     26104-char (*f) ();
     26105-
     26106-int
     26107-main ()
     26108-{
     26109-/* The GNU C library defines this for functions which it implements
     26110-    to always fail with ENOSYS.  Some functions are actually named
     26111-    something starting with __ and the normal name is an alias.  */
     26112-#if defined (__stub_mkstemp) || defined (__stub___mkstemp)
     26113-choke me
     26114-#else
     26115-f = mkstemp;
     26116-#endif
     26117-
     26118-  ;
     26119-  return 0;
     26120-}
     26121-_ACEOF
     26122-rm -f conftest.$ac_objext conftest$ac_exeext
    2297726123-if { (eval echo "$as_me:15160: \"$ac_link\"") >&5
    22978 +if { (eval echo "$as_me:16119: \"$ac_link\"") >&5
    22979    (eval $ac_link) 2>&5
    22980    ac_status=$?
     26124-  (eval $ac_link) 2>&5
     26125-  ac_status=$?
    2298126126-  echo "$as_me:15163: \$? = $ac_status" >&5
    22982 +  echo "$as_me:16122: \$? = $ac_status" >&5
    22983    (exit $ac_status); } &&
    22984           { ac_try='test -s conftest$ac_exeext'
     26127-  (exit $ac_status); } &&
     26128-         { ac_try='test -s conftest$ac_exeext'
    2298526129-  { (eval echo "$as_me:15166: \"$ac_try\"") >&5
    22986 +  { (eval echo "$as_me:16125: \"$ac_try\"") >&5
    22987    (eval $ac_try) 2>&5
    22988    ac_status=$?
     26130-  (eval $ac_try) 2>&5
     26131-  ac_status=$?
    2298926132-  echo "$as_me:15169: \$? = $ac_status" >&5
    22990 +  echo "$as_me:16128: \$? = $ac_status" >&5
    22991    (exit $ac_status); }; }; then
    22992    ac_cv_func_mkstemp=yes
    22993  else
    22994 @@ -15176,12 +16135,12 @@
    22995  fi
    22996  rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    22997  fi
     26133-  (exit $ac_status); }; }; then
     26134-  ac_cv_func_mkstemp=yes
     26135-else
     26136-  echo "$as_me: failed program was:" >&5
     26137-cat conftest.$ac_ext >&5
     26138-ac_cv_func_mkstemp=no
     26139-fi
     26140-rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
     26141-fi
    2299826142-echo "$as_me:15179: result: $ac_cv_func_mkstemp" >&5
    22999 +echo "$as_me:16138: result: $ac_cv_func_mkstemp" >&5
    23000  echo "${ECHO_T}$ac_cv_func_mkstemp" >&6
    23001  
     26143-echo "${ECHO_T}$ac_cv_func_mkstemp" >&6
     26144-
     26145+  cf_cv_func_mkstemp=maybe
    2300226146 else
    2300326147   cat >conftest.$ac_ext <<_ACEOF
    2300426148-#line 15184 "configure"
    23005 +#line 16143 "configure"
     26149+#line 16201 "configure"
    2300626150 #include "confdefs.h"
    2300726151 
    2300826152 #include <sys/types.h>
    23009 @@ -15219,15 +16178,15 @@
     26153@@ -15219,15 +16236,15 @@
    2301026154 
    2301126155 _ACEOF
    2301226156 rm -f conftest$ac_exeext
    2301326157-if { (eval echo "$as_me:15222: \"$ac_link\"") >&5
    23014 +if { (eval echo "$as_me:16181: \"$ac_link\"") >&5
     26158+if { (eval echo "$as_me:16239: \"$ac_link\"") >&5
    2301526159   (eval $ac_link) 2>&5
    2301626160   ac_status=$?
    2301726161-  echo "$as_me:15225: \$? = $ac_status" >&5
    23018 +  echo "$as_me:16184: \$? = $ac_status" >&5
     26162+  echo "$as_me:16242: \$? = $ac_status" >&5
    2301926163   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
    2302026164-  { (eval echo "$as_me:15227: \"$ac_try\"") >&5
    23021 +  { (eval echo "$as_me:16186: \"$ac_try\"") >&5
     26165+  { (eval echo "$as_me:16244: \"$ac_try\"") >&5
    2302226166   (eval $ac_try) 2>&5
    2302326167   ac_status=$?
    2302426168-  echo "$as_me:15230: \$? = $ac_status" >&5
    23025 +  echo "$as_me:16189: \$? = $ac_status" >&5
     26169+  echo "$as_me:16247: \$? = $ac_status" >&5
    2302626170   (exit $ac_status); }; }; then
    2302726171   cf_cv_func_mkstemp=yes
    2302826172 
    23029 @@ -15242,7 +16201,7 @@
     26173@@ -15242,8 +16259,69 @@
    2303026174 fi
    2303126175 
    2303226176 fi
    2303326177-echo "$as_me:15245: result: $cf_cv_func_mkstemp" >&5
    23034 +echo "$as_me:16204: result: $cf_cv_func_mkstemp" >&5
     26178+echo "$as_me:16262: result: $cf_cv_func_mkstemp" >&5
    2303526179 echo "${ECHO_T}$cf_cv_func_mkstemp" >&6
     26180+if test "x$cf_cv_func_mkstemp" = xmaybe ; then
     26181+       echo "$as_me:16265: checking for mkstemp" >&5
     26182+echo $ECHO_N "checking for mkstemp... $ECHO_C" >&6
     26183+if test "${ac_cv_func_mkstemp+set}" = set; then
     26184+  echo $ECHO_N "(cached) $ECHO_C" >&6
     26185+else
     26186+  cat >conftest.$ac_ext <<_ACEOF
     26187+#line 16271 "configure"
     26188+#include "confdefs.h"
     26189+/* System header to define __stub macros and hopefully few prototypes,
     26190+    which can conflict with char mkstemp (); below.  */
     26191+#include <assert.h>
     26192+/* Override any gcc2 internal prototype to avoid an error.  */
     26193+#ifdef __cplusplus
     26194+extern "C"
     26195+#endif
     26196+/* We use char because int might match the return type of a gcc2
     26197+   builtin and then its argument prototype would still apply.  */
     26198+char mkstemp ();
     26199+char (*f) ();
     26200+
     26201+int
     26202+main ()
     26203+{
     26204+/* The GNU C library defines this for functions which it implements
     26205+    to always fail with ENOSYS.  Some functions are actually named
     26206+    something starting with __ and the normal name is an alias.  */
     26207+#if defined (__stub_mkstemp) || defined (__stub___mkstemp)
     26208+choke me
     26209+#else
     26210+f = mkstemp; /* workaround for ICC 12.0.3 */ if (f == 0) return 1;
     26211+#endif
     26212+
     26213+  ;
     26214+  return 0;
     26215+}
     26216+_ACEOF
     26217+rm -f conftest.$ac_objext conftest$ac_exeext
     26218+if { (eval echo "$as_me:16302: \"$ac_link\"") >&5
     26219+  (eval $ac_link) 2>&5
     26220+  ac_status=$?
     26221+  echo "$as_me:16305: \$? = $ac_status" >&5
     26222+  (exit $ac_status); } &&
     26223+         { ac_try='test -s conftest$ac_exeext'
     26224+  { (eval echo "$as_me:16308: \"$ac_try\"") >&5
     26225+  (eval $ac_try) 2>&5
     26226+  ac_status=$?
     26227+  echo "$as_me:16311: \$? = $ac_status" >&5
     26228+  (exit $ac_status); }; }; then
     26229+  ac_cv_func_mkstemp=yes
     26230+else
     26231+  echo "$as_me: failed program was:" >&5
     26232+cat conftest.$ac_ext >&5
     26233+ac_cv_func_mkstemp=no
     26234+fi
     26235+rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
     26236+fi
     26237+echo "$as_me:16321: result: $ac_cv_func_mkstemp" >&5
     26238+echo "${ECHO_T}$ac_cv_func_mkstemp" >&6
     26239+
     26240+fi
    2303626241 if test "x$cf_cv_func_mkstemp" = xyes || test "x$ac_cv_func_mkstemp" = xyes ; then
    2303726242        cat >>confdefs.h <<\EOF
    23038 @@ -15260,21 +16219,21 @@
     26243 #define HAVE_MKSTEMP 1
     26244@@ -15260,21 +16338,21 @@
    2303926245 fi
    2304026246 
    2304126247 if test "$cross_compiling" = yes ; then
    2304226248-       { echo "$as_me:15263: WARNING: cross compiling: assume setvbuf params not reversed" >&5
    23043 +       { echo "$as_me:16222: WARNING: cross compiling: assume setvbuf params not reversed" >&5
     26249+       { echo "$as_me:16341: WARNING: cross compiling: assume setvbuf params not reversed" >&5
    2304426250 echo "$as_me: WARNING: cross compiling: assume setvbuf params not reversed" >&2;}
    2304526251 else
    2304626252-       echo "$as_me:15266: checking whether setvbuf arguments are reversed" >&5
    23047 +       echo "$as_me:16225: checking whether setvbuf arguments are reversed" >&5
     26253+       echo "$as_me:16344: checking whether setvbuf arguments are reversed" >&5
    2304826254 echo $ECHO_N "checking whether setvbuf arguments are reversed... $ECHO_C" >&6
    2304926255 if test "${ac_cv_func_setvbuf_reversed+set}" = set; then
     
    2305226258   if test "$cross_compiling" = yes; then
    2305326259-  { { echo "$as_me:15272: error: cannot run test program while cross compiling" >&5
    23054 +  { { echo "$as_me:16231: error: cannot run test program while cross compiling" >&5
     26260+  { { echo "$as_me:16350: error: cannot run test program while cross compiling" >&5
    2305526261 echo "$as_me: error: cannot run test program while cross compiling" >&2;}
    2305626262    { (exit 1); exit 1; }; }
     
    2305826264   cat >conftest.$ac_ext <<_ACEOF
    2305926265-#line 15277 "configure"
    23060 +#line 16236 "configure"
     26266+#line 16355 "configure"
    2306126267 #include "confdefs.h"
    2306226268 #include <stdio.h>
    2306326269 /* If setvbuf has the reversed format, exit 0. */
    23064 @@ -15291,15 +16250,15 @@
     26270@@ -15291,15 +16369,15 @@
    2306526271 }
    2306626272 _ACEOF
    2306726273 rm -f conftest$ac_exeext
    2306826274-if { (eval echo "$as_me:15294: \"$ac_link\"") >&5
    23069 +if { (eval echo "$as_me:16253: \"$ac_link\"") >&5
     26275+if { (eval echo "$as_me:16372: \"$ac_link\"") >&5
    2307026276   (eval $ac_link) 2>&5
    2307126277   ac_status=$?
    2307226278-  echo "$as_me:15297: \$? = $ac_status" >&5
    23073 +  echo "$as_me:16256: \$? = $ac_status" >&5
     26279+  echo "$as_me:16375: \$? = $ac_status" >&5
    2307426280   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
    2307526281-  { (eval echo "$as_me:15299: \"$ac_try\"") >&5
    23076 +  { (eval echo "$as_me:16258: \"$ac_try\"") >&5
     26282+  { (eval echo "$as_me:16377: \"$ac_try\"") >&5
    2307726283   (eval $ac_try) 2>&5
    2307826284   ac_status=$?
    2307926285-  echo "$as_me:15302: \$? = $ac_status" >&5
    23080 +  echo "$as_me:16261: \$? = $ac_status" >&5
     26286+  echo "$as_me:16380: \$? = $ac_status" >&5
    2308126287   (exit $ac_status); }; }; then
    2308226288   ac_cv_func_setvbuf_reversed=yes
    2308326289 else
    23084 @@ -15312,7 +16271,7 @@
     26290@@ -15312,7 +16390,7 @@
    2308526291 fi
    2308626292 rm -f core core.* *.core
    2308726293 fi
    2308826294-echo "$as_me:15315: result: $ac_cv_func_setvbuf_reversed" >&5
    23089 +echo "$as_me:16274: result: $ac_cv_func_setvbuf_reversed" >&5
     26295+echo "$as_me:16393: result: $ac_cv_func_setvbuf_reversed" >&5
    2309026296 echo "${ECHO_T}$ac_cv_func_setvbuf_reversed" >&6
    2309126297 if test $ac_cv_func_setvbuf_reversed = yes; then
    2309226298 
    23093 @@ -15323,13 +16282,13 @@
     26299@@ -15323,13 +16401,13 @@
    2309426300 fi
    2309526301 
    2309626302 fi
    2309726303-echo "$as_me:15326: checking return type of signal handlers" >&5
    23098 +echo "$as_me:16285: checking return type of signal handlers" >&5
     26304+echo "$as_me:16404: checking return type of signal handlers" >&5
    2309926305 echo $ECHO_N "checking return type of signal handlers... $ECHO_C" >&6
    2310026306 if test "${ac_cv_type_signal+set}" = set; then
     
    2310326309   cat >conftest.$ac_ext <<_ACEOF
    2310426310-#line 15332 "configure"
    23105 +#line 16291 "configure"
     26311+#line 16410 "configure"
    2310626312 #include "confdefs.h"
    2310726313 #include <sys/types.h>
    2310826314 #include <signal.h>
    23109 @@ -15351,16 +16310,16 @@
     26315@@ -15351,16 +16429,16 @@
    2311026316 }
    2311126317 _ACEOF
    2311226318 rm -f conftest.$ac_objext
    2311326319-if { (eval echo "$as_me:15354: \"$ac_compile\"") >&5
    23114 +if { (eval echo "$as_me:16313: \"$ac_compile\"") >&5
     26320+if { (eval echo "$as_me:16432: \"$ac_compile\"") >&5
    2311526321   (eval $ac_compile) 2>&5
    2311626322   ac_status=$?
    2311726323-  echo "$as_me:15357: \$? = $ac_status" >&5
    23118 +  echo "$as_me:16316: \$? = $ac_status" >&5
     26324+  echo "$as_me:16435: \$? = $ac_status" >&5
    2311926325   (exit $ac_status); } &&
    2312026326          { ac_try='test -s conftest.$ac_objext'
    2312126327-  { (eval echo "$as_me:15360: \"$ac_try\"") >&5
    23122 +  { (eval echo "$as_me:16319: \"$ac_try\"") >&5
     26328+  { (eval echo "$as_me:16438: \"$ac_try\"") >&5
    2312326329   (eval $ac_try) 2>&5
    2312426330   ac_status=$?
    2312526331-  echo "$as_me:15363: \$? = $ac_status" >&5
    23126 +  echo "$as_me:16322: \$? = $ac_status" >&5
     26332+  echo "$as_me:16441: \$? = $ac_status" >&5
    2312726333   (exit $ac_status); }; }; then
    2312826334   ac_cv_type_signal=void
    2312926335 else
    23130 @@ -15370,21 +16329,73 @@
     26336@@ -15370,21 +16448,73 @@
    2313126337 fi
    2313226338 rm -f conftest.$ac_objext conftest.$ac_ext
    2313326339 fi
    2313426340-echo "$as_me:15373: result: $ac_cv_type_signal" >&5
    23135 +echo "$as_me:16332: result: $ac_cv_type_signal" >&5
     26341+echo "$as_me:16451: result: $ac_cv_type_signal" >&5
    2313626342 echo "${ECHO_T}$ac_cv_type_signal" >&6
    2313726343 
     
    2314126347 
    2314226348-echo "$as_me:15380: checking for type sigaction_t" >&5
    23143 +echo "$as_me:16339: checking for intptr_t" >&5
     26349+echo "$as_me:16458: checking for intptr_t" >&5
    2314426350+echo $ECHO_N "checking for intptr_t... $ECHO_C" >&6
    2314526351+if test "${ac_cv_type_intptr_t+set}" = set; then
     
    2314726353+else
    2314826354+  cat >conftest.$ac_ext <<_ACEOF
    23149 +#line 16345 "configure"
     26355+#line 16464 "configure"
    2315026356+#include "confdefs.h"
    2315126357+$ac_includes_default
     
    2316226368+_ACEOF
    2316326369+rm -f conftest.$ac_objext
    23164 +if { (eval echo "$as_me:16360: \"$ac_compile\"") >&5
     26370+if { (eval echo "$as_me:16479: \"$ac_compile\"") >&5
    2316526371+  (eval $ac_compile) 2>&5
    2316626372+  ac_status=$?
    23167 +  echo "$as_me:16363: \$? = $ac_status" >&5
     26373+  echo "$as_me:16482: \$? = $ac_status" >&5
    2316826374+  (exit $ac_status); } &&
    2316926375+         { ac_try='test -s conftest.$ac_objext'
    23170 +  { (eval echo "$as_me:16366: \"$ac_try\"") >&5
     26376+  { (eval echo "$as_me:16485: \"$ac_try\"") >&5
    2317126377+  (eval $ac_try) 2>&5
    2317226378+  ac_status=$?
    23173 +  echo "$as_me:16369: \$? = $ac_status" >&5
     26379+  echo "$as_me:16488: \$? = $ac_status" >&5
    2317426380+  (exit $ac_status); }; }; then
    2317526381+  ac_cv_type_intptr_t=yes
     
    2318126387+rm -f conftest.$ac_objext conftest.$ac_ext
    2318226388+fi
    23183 +echo "$as_me:16379: result: $ac_cv_type_intptr_t" >&5
     26389+echo "$as_me:16498: result: $ac_cv_type_intptr_t" >&5
    2318426390+echo "${ECHO_T}$ac_cv_type_intptr_t" >&6
    2318526391+if test $ac_cv_type_intptr_t = yes; then
     
    2319326399+fi
    2319426400+
    23195 +echo "$as_me:16391: checking for type sigaction_t" >&5
     26401+echo "$as_me:16510: checking for type sigaction_t" >&5
    2319626402 echo $ECHO_N "checking for type sigaction_t... $ECHO_C" >&6
    2319726403 if test "${cf_cv_type_sigaction+set}" = set; then
     
    2320126407        cat >conftest.$ac_ext <<_ACEOF
    2320226408-#line 15387 "configure"
    23203 +#line 16398 "configure"
     26409+#line 16517 "configure"
    2320426410 #include "confdefs.h"
    2320526411 
    2320626412 #include <signal.h>
    23207 @@ -15397,16 +16408,16 @@
     26413@@ -15397,16 +16527,16 @@
    2320826414 }
    2320926415 _ACEOF
    2321026416 rm -f conftest.$ac_objext
    2321126417-if { (eval echo "$as_me:15400: \"$ac_compile\"") >&5
    23212 +if { (eval echo "$as_me:16411: \"$ac_compile\"") >&5
     26418+if { (eval echo "$as_me:16530: \"$ac_compile\"") >&5
    2321326419   (eval $ac_compile) 2>&5
    2321426420   ac_status=$?
    2321526421-  echo "$as_me:15403: \$? = $ac_status" >&5
    23216 +  echo "$as_me:16414: \$? = $ac_status" >&5
     26422+  echo "$as_me:16533: \$? = $ac_status" >&5
    2321726423   (exit $ac_status); } &&
    2321826424          { ac_try='test -s conftest.$ac_objext'
    2321926425-  { (eval echo "$as_me:15406: \"$ac_try\"") >&5
    23220 +  { (eval echo "$as_me:16417: \"$ac_try\"") >&5
     26426+  { (eval echo "$as_me:16536: \"$ac_try\"") >&5
    2322126427   (eval $ac_try) 2>&5
    2322226428   ac_status=$?
    2322326429-  echo "$as_me:15409: \$? = $ac_status" >&5
    23224 +  echo "$as_me:16420: \$? = $ac_status" >&5
     26430+  echo "$as_me:16539: \$? = $ac_status" >&5
    2322526431   (exit $ac_status); }; }; then
    2322626432   cf_cv_type_sigaction=yes
    2322726433 else
    23228 @@ -15417,13 +16428,13 @@
     26434@@ -15417,13 +16547,13 @@
    2322926435 rm -f conftest.$ac_objext conftest.$ac_ext
    2323026436 fi
    2323126437 
    2323226438-echo "$as_me:15420: result: $cf_cv_type_sigaction" >&5
    23233 +echo "$as_me:16431: result: $cf_cv_type_sigaction" >&5
     26439+echo "$as_me:16550: result: $cf_cv_type_sigaction" >&5
    2323426440 echo "${ECHO_T}$cf_cv_type_sigaction" >&6
    2323526441 test "$cf_cv_type_sigaction" = yes && cat >>confdefs.h <<\EOF
     
    2323826444 
    2323926445-echo "$as_me:15426: checking declaration of size-change" >&5
    23240 +echo "$as_me:16437: checking declaration of size-change" >&5
     26446+echo "$as_me:16556: checking declaration of size-change" >&5
    2324126447 echo $ECHO_N "checking declaration of size-change... $ECHO_C" >&6
    2324226448 if test "${cf_cv_sizechange+set}" = set; then
    2324326449   echo $ECHO_N "(cached) $ECHO_C" >&6
    23244 @@ -15438,7 +16449,7 @@
     26450@@ -15438,7 +16568,7 @@
    2324526451     CPPFLAGS="$cf_save_CPPFLAGS"
    2324626452     test -n "$cf_opts" && CPPFLAGS="$CPPFLAGS -D$cf_opts"
    2324726453     cat >conftest.$ac_ext <<_ACEOF
    2324826454-#line 15441 "configure"
    23249 +#line 16452 "configure"
     26455+#line 16571 "configure"
    2325026456 #include "confdefs.h"
    2325126457 #include <sys/types.h>
    2325226458 #ifdef HAVE_TERMIOS_H
    23253 @@ -15482,16 +16493,16 @@
     26459@@ -15482,16 +16612,16 @@
    2325426460 }
    2325526461 _ACEOF
    2325626462 rm -f conftest.$ac_objext
    2325726463-if { (eval echo "$as_me:15485: \"$ac_compile\"") >&5
    23258 +if { (eval echo "$as_me:16496: \"$ac_compile\"") >&5
     26464+if { (eval echo "$as_me:16615: \"$ac_compile\"") >&5
    2325926465   (eval $ac_compile) 2>&5
    2326026466   ac_status=$?
    2326126467-  echo "$as_me:15488: \$? = $ac_status" >&5
    23262 +  echo "$as_me:16499: \$? = $ac_status" >&5
     26468+  echo "$as_me:16618: \$? = $ac_status" >&5
    2326326469   (exit $ac_status); } &&
    2326426470          { ac_try='test -s conftest.$ac_objext'
    2326526471-  { (eval echo "$as_me:15491: \"$ac_try\"") >&5
    23266 +  { (eval echo "$as_me:16502: \"$ac_try\"") >&5
     26472+  { (eval echo "$as_me:16621: \"$ac_try\"") >&5
    2326726473   (eval $ac_try) 2>&5
    2326826474   ac_status=$?
    2326926475-  echo "$as_me:15494: \$? = $ac_status" >&5
    23270 +  echo "$as_me:16505: \$? = $ac_status" >&5
     26476+  echo "$as_me:16624: \$? = $ac_status" >&5
    2327126477   (exit $ac_status); }; }; then
    2327226478   cf_cv_sizechange=yes
    2327326479 else
    23274 @@ -15510,7 +16521,7 @@
     26480@@ -15510,7 +16640,7 @@
    2327526481 done
    2327626482 
    2327726483 fi
    2327826484-echo "$as_me:15513: result: $cf_cv_sizechange" >&5
    23279 +echo "$as_me:16524: result: $cf_cv_sizechange" >&5
     26485+echo "$as_me:16643: result: $cf_cv_sizechange" >&5
    2328026486 echo "${ECHO_T}$cf_cv_sizechange" >&6
    2328126487 if test "$cf_cv_sizechange" != no ; then
    2328226488        cat >>confdefs.h <<\EOF
    23283 @@ -15527,13 +16538,13 @@
     26489@@ -15527,13 +16657,13 @@
    2328426490        esac
    2328526491 fi
    2328626492 
    2328726493-echo "$as_me:15530: checking for memmove" >&5
    23288 +echo "$as_me:16541: checking for memmove" >&5
     26494+echo "$as_me:16660: checking for memmove" >&5
    2328926495 echo $ECHO_N "checking for memmove... $ECHO_C" >&6
    2329026496 if test "${ac_cv_func_memmove+set}" = set; then
     
    2329326499   cat >conftest.$ac_ext <<_ACEOF
    2329426500-#line 15536 "configure"
    23295 +#line 16547 "configure"
     26501+#line 16666 "configure"
    2329626502 #include "confdefs.h"
    2329726503 /* System header to define __stub macros and hopefully few prototypes,
    2329826504     which can conflict with char memmove (); below.  */
    23299 @@ -15564,16 +16575,16 @@
     26505@@ -15556,7 +16686,7 @@
     26506 #if defined (__stub_memmove) || defined (__stub___memmove)
     26507 choke me
     26508 #else
     26509-f = memmove;
     26510+f = memmove; /* workaround for ICC 12.0.3 */ if (f == 0) return 1;
     26511 #endif
     26512 
     26513   ;
     26514@@ -15564,16 +16694,16 @@
    2330026515 }
    2330126516 _ACEOF
    2330226517 rm -f conftest.$ac_objext conftest$ac_exeext
    2330326518-if { (eval echo "$as_me:15567: \"$ac_link\"") >&5
    23304 +if { (eval echo "$as_me:16578: \"$ac_link\"") >&5
     26519+if { (eval echo "$as_me:16697: \"$ac_link\"") >&5
    2330526520   (eval $ac_link) 2>&5
    2330626521   ac_status=$?
    2330726522-  echo "$as_me:15570: \$? = $ac_status" >&5
    23308 +  echo "$as_me:16581: \$? = $ac_status" >&5
     26523+  echo "$as_me:16700: \$? = $ac_status" >&5
    2330926524   (exit $ac_status); } &&
    2331026525          { ac_try='test -s conftest$ac_exeext'
    2331126526-  { (eval echo "$as_me:15573: \"$ac_try\"") >&5
    23312 +  { (eval echo "$as_me:16584: \"$ac_try\"") >&5
     26527+  { (eval echo "$as_me:16703: \"$ac_try\"") >&5
    2331326528   (eval $ac_try) 2>&5
    2331426529   ac_status=$?
    2331526530-  echo "$as_me:15576: \$? = $ac_status" >&5
    23316 +  echo "$as_me:16587: \$? = $ac_status" >&5
     26531+  echo "$as_me:16706: \$? = $ac_status" >&5
    2331726532   (exit $ac_status); }; }; then
    2331826533   ac_cv_func_memmove=yes
    2331926534 else
    23320 @@ -15583,19 +16594,19 @@
     26535@@ -15583,19 +16713,19 @@
    2332126536 fi
    2332226537 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    2332326538 fi
    2332426539-echo "$as_me:15586: result: $ac_cv_func_memmove" >&5
    23325 +echo "$as_me:16597: result: $ac_cv_func_memmove" >&5
     26540+echo "$as_me:16716: result: $ac_cv_func_memmove" >&5
    2332626541 echo "${ECHO_T}$ac_cv_func_memmove" >&6
    2332726542 if test $ac_cv_func_memmove = yes; then
     
    2333026545 
    2333126546-echo "$as_me:15592: checking for bcopy" >&5
    23332 +echo "$as_me:16603: checking for bcopy" >&5
     26547+echo "$as_me:16722: checking for bcopy" >&5
    2333326548 echo $ECHO_N "checking for bcopy... $ECHO_C" >&6
    2333426549 if test "${ac_cv_func_bcopy+set}" = set; then
     
    2333726552   cat >conftest.$ac_ext <<_ACEOF
    2333826553-#line 15598 "configure"
    23339 +#line 16609 "configure"
     26554+#line 16728 "configure"
    2334026555 #include "confdefs.h"
    2334126556 /* System header to define __stub macros and hopefully few prototypes,
    2334226557     which can conflict with char bcopy (); below.  */
    23343 @@ -15626,16 +16637,16 @@
     26558@@ -15618,7 +16748,7 @@
     26559 #if defined (__stub_bcopy) || defined (__stub___bcopy)
     26560 choke me
     26561 #else
     26562-f = bcopy;
     26563+f = bcopy; /* workaround for ICC 12.0.3 */ if (f == 0) return 1;
     26564 #endif
     26565 
     26566   ;
     26567@@ -15626,16 +16756,16 @@
    2334426568 }
    2334526569 _ACEOF
    2334626570 rm -f conftest.$ac_objext conftest$ac_exeext
    2334726571-if { (eval echo "$as_me:15629: \"$ac_link\"") >&5
    23348 +if { (eval echo "$as_me:16640: \"$ac_link\"") >&5
     26572+if { (eval echo "$as_me:16759: \"$ac_link\"") >&5
    2334926573   (eval $ac_link) 2>&5
    2335026574   ac_status=$?
    2335126575-  echo "$as_me:15632: \$? = $ac_status" >&5
    23352 +  echo "$as_me:16643: \$? = $ac_status" >&5
     26576+  echo "$as_me:16762: \$? = $ac_status" >&5
    2335326577   (exit $ac_status); } &&
    2335426578          { ac_try='test -s conftest$ac_exeext'
    2335526579-  { (eval echo "$as_me:15635: \"$ac_try\"") >&5
    23356 +  { (eval echo "$as_me:16646: \"$ac_try\"") >&5
     26580+  { (eval echo "$as_me:16765: \"$ac_try\"") >&5
    2335726581   (eval $ac_try) 2>&5
    2335826582   ac_status=$?
    2335926583-  echo "$as_me:15638: \$? = $ac_status" >&5
    23360 +  echo "$as_me:16649: \$? = $ac_status" >&5
     26584+  echo "$as_me:16768: \$? = $ac_status" >&5
    2336126585   (exit $ac_status); }; }; then
    2336226586   ac_cv_func_bcopy=yes
    2336326587 else
    23364 @@ -15645,11 +16656,11 @@
     26588@@ -15645,11 +16775,11 @@
    2336526589 fi
    2336626590 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    2336726591 fi
    2336826592-echo "$as_me:15648: result: $ac_cv_func_bcopy" >&5
    23369 +echo "$as_me:16659: result: $ac_cv_func_bcopy" >&5
     26593+echo "$as_me:16778: result: $ac_cv_func_bcopy" >&5
    2337026594 echo "${ECHO_T}$ac_cv_func_bcopy" >&6
    2337126595 if test $ac_cv_func_bcopy = yes; then
    2337226596 
    2337326597-       echo "$as_me:15652: checking if bcopy does overlapping moves" >&5
    23374 +       echo "$as_me:16663: checking if bcopy does overlapping moves" >&5
     26598+       echo "$as_me:16782: checking if bcopy does overlapping moves" >&5
    2337526599 echo $ECHO_N "checking if bcopy does overlapping moves... $ECHO_C" >&6
    2337626600 if test "${cf_cv_good_bcopy+set}" = set; then
    2337726601   echo $ECHO_N "(cached) $ECHO_C" >&6
    23378 @@ -15659,7 +16670,7 @@
     26602@@ -15659,7 +16789,7 @@
    2337926603   cf_cv_good_bcopy=unknown
    2338026604 else
    2338126605   cat >conftest.$ac_ext <<_ACEOF
    2338226606-#line 15662 "configure"
    23383 +#line 16673 "configure"
     26607+#line 16792 "configure"
    2338426608 #include "confdefs.h"
    2338526609 
    2338626610 int main() {
    23387 @@ -15673,15 +16684,15 @@
     26611@@ -15673,15 +16803,15 @@
    2338826612 
    2338926613 _ACEOF
    2339026614 rm -f conftest$ac_exeext
    2339126615-if { (eval echo "$as_me:15676: \"$ac_link\"") >&5
    23392 +if { (eval echo "$as_me:16687: \"$ac_link\"") >&5
     26616+if { (eval echo "$as_me:16806: \"$ac_link\"") >&5
    2339326617   (eval $ac_link) 2>&5
    2339426618   ac_status=$?
    2339526619-  echo "$as_me:15679: \$? = $ac_status" >&5
    23396 +  echo "$as_me:16690: \$? = $ac_status" >&5
     26620+  echo "$as_me:16809: \$? = $ac_status" >&5
    2339726621   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
    2339826622-  { (eval echo "$as_me:15681: \"$ac_try\"") >&5
    23399 +  { (eval echo "$as_me:16692: \"$ac_try\"") >&5
     26623+  { (eval echo "$as_me:16811: \"$ac_try\"") >&5
    2340026624   (eval $ac_try) 2>&5
    2340126625   ac_status=$?
    2340226626-  echo "$as_me:15684: \$? = $ac_status" >&5
    23403 +  echo "$as_me:16695: \$? = $ac_status" >&5
     26627+  echo "$as_me:16814: \$? = $ac_status" >&5
    2340426628   (exit $ac_status); }; }; then
    2340526629   cf_cv_good_bcopy=yes
    2340626630 else
    23407 @@ -15694,7 +16705,7 @@
     26631@@ -15694,7 +16824,7 @@
    2340826632 fi
    2340926633 
    2341026634 fi
    2341126635-echo "$as_me:15697: result: $cf_cv_good_bcopy" >&5
    23412 +echo "$as_me:16708: result: $cf_cv_good_bcopy" >&5
     26636+echo "$as_me:16827: result: $cf_cv_good_bcopy" >&5
    2341326637 echo "${ECHO_T}$cf_cv_good_bcopy" >&6
    2341426638 
    2341526639 else
    23416 @@ -15715,7 +16726,7 @@
     26640@@ -15715,7 +16845,7 @@
    2341726641 
    2341826642 fi
    2341926643 
    2342026644-echo "$as_me:15718: checking if poll really works" >&5
    23421 +echo "$as_me:16729: checking if poll really works" >&5
     26645+echo "$as_me:16848: checking if poll really works" >&5
    2342226646 echo $ECHO_N "checking if poll really works... $ECHO_C" >&6
    2342326647 if test "${cf_cv_working_poll+set}" = set; then
    2342426648   echo $ECHO_N "(cached) $ECHO_C" >&6
    23425 @@ -15725,7 +16736,7 @@
     26649@@ -15725,10 +16855,13 @@
    2342626650   cf_cv_working_poll=unknown
    2342726651 else
    2342826652   cat >conftest.$ac_ext <<_ACEOF
    2342926653-#line 15728 "configure"
    23430 +#line 16739 "configure"
     26654+#line 16858 "configure"
    2343126655 #include "confdefs.h"
    2343226656 
     26657+#include <stdlib.h>
    2343326658 #include <stdio.h>
    23434 @@ -15746,15 +16757,15 @@
     26659+#include <unistd.h>
     26660+#include <fcntl.h>
     26661 #ifdef HAVE_POLL_H
     26662 #include <poll.h>
     26663 #else
     26664@@ -15738,23 +16871,46 @@
     26665        struct pollfd myfds;
     26666        int ret;
     26667 
     26668-       myfds.fd = 0;
     26669+       /* check for Darwin bug with respect to "devices" */
     26670+       myfds.fd = open("/dev/null", 1);        /* O_WRONLY */
     26671+       if (myfds.fd < 0)
     26672+               myfds.fd = 0;
     26673        myfds.events = POLLIN;
     26674+       myfds.revents = 0;
     26675 
     26676        ret = poll(&myfds, 1, 100);
     26677-       ${cf_cv_main_return:-return}(ret != 0);
     26678+
     26679+       if (ret < 0 || (myfds.revents & POLLNVAL)) {
     26680+               ret = -1;
     26681+       } else {
     26682+               int fd = 0;
     26683+               if (!isatty(fd)) {
     26684+                       fd = open("/dev/tty", 2);       /* O_RDWR */
     26685+               }
     26686+
     26687+               if (fd >= 0) {
     26688+                       /* also check with standard input */
     26689+                       myfds.fd = fd;
     26690+                       myfds.events = POLLIN;
     26691+                       myfds.revents = 0;
     26692+                       ret = poll(&myfds, 1, 100);
     26693+               } else {
     26694+                       ret = -1;
     26695+               }
     26696+       }
     26697+       ${cf_cv_main_return:-return}(ret < 0);
    2343526698 }
    2343626699 _ACEOF
    2343726700 rm -f conftest$ac_exeext
    2343826701-if { (eval echo "$as_me:15749: \"$ac_link\"") >&5
    23439 +if { (eval echo "$as_me:16760: \"$ac_link\"") >&5
     26702+if { (eval echo "$as_me:16905: \"$ac_link\"") >&5
    2344026703   (eval $ac_link) 2>&5
    2344126704   ac_status=$?
    2344226705-  echo "$as_me:15752: \$? = $ac_status" >&5
    23443 +  echo "$as_me:16763: \$? = $ac_status" >&5
     26706+  echo "$as_me:16908: \$? = $ac_status" >&5
    2344426707   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
    2344526708-  { (eval echo "$as_me:15754: \"$ac_try\"") >&5
    23446 +  { (eval echo "$as_me:16765: \"$ac_try\"") >&5
     26709+  { (eval echo "$as_me:16910: \"$ac_try\"") >&5
    2344726710   (eval $ac_try) 2>&5
    2344826711   ac_status=$?
    2344926712-  echo "$as_me:15757: \$? = $ac_status" >&5
    23450 +  echo "$as_me:16768: \$? = $ac_status" >&5
     26713+  echo "$as_me:16913: \$? = $ac_status" >&5
    2345126714   (exit $ac_status); }; }; then
    2345226715   cf_cv_working_poll=yes
    2345326716 else
    23454 @@ -15766,20 +16777,20 @@
     26717@@ -15766,20 +16922,20 @@
    2345526718 rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
    2345626719 fi
    2345726720 fi
    2345826721-echo "$as_me:15769: result: $cf_cv_working_poll" >&5
    23459 +echo "$as_me:16780: result: $cf_cv_working_poll" >&5
     26722+echo "$as_me:16925: result: $cf_cv_working_poll" >&5
    2346026723 echo "${ECHO_T}$cf_cv_working_poll" >&6
    2346126724 test "$cf_cv_working_poll" = "yes" && cat >>confdefs.h <<\EOF
     
    2346426727 
    2346526728-echo "$as_me:15775: checking for va_copy" >&5
    23466 +echo "$as_me:16786: checking for va_copy" >&5
     26729+echo "$as_me:16931: checking for va_copy" >&5
    2346726730 echo $ECHO_N "checking for va_copy... $ECHO_C" >&6
    2346826731 if test "${cf_cv_have_va_copy+set}" = set; then
     
    2347226735 cat >conftest.$ac_ext <<_ACEOF
    2347326736-#line 15782 "configure"
    23474 +#line 16793 "configure"
     26737+#line 16938 "configure"
    2347526738 #include "confdefs.h"
    2347626739 
    2347726740 #include <stdarg.h>
    23478 @@ -15796,16 +16807,16 @@
     26741@@ -15796,16 +16952,16 @@
    2347926742 }
    2348026743 _ACEOF
    2348126744 rm -f conftest.$ac_objext conftest$ac_exeext
    2348226745-if { (eval echo "$as_me:15799: \"$ac_link\"") >&5
    23483 +if { (eval echo "$as_me:16810: \"$ac_link\"") >&5
     26746+if { (eval echo "$as_me:16955: \"$ac_link\"") >&5
    2348426747   (eval $ac_link) 2>&5
    2348526748   ac_status=$?
    2348626749-  echo "$as_me:15802: \$? = $ac_status" >&5
    23487 +  echo "$as_me:16813: \$? = $ac_status" >&5
     26750+  echo "$as_me:16958: \$? = $ac_status" >&5
    2348826751   (exit $ac_status); } &&
    2348926752          { ac_try='test -s conftest$ac_exeext'
    2349026753-  { (eval echo "$as_me:15805: \"$ac_try\"") >&5
    23491 +  { (eval echo "$as_me:16816: \"$ac_try\"") >&5
     26754+  { (eval echo "$as_me:16961: \"$ac_try\"") >&5
    2349226755   (eval $ac_try) 2>&5
    2349326756   ac_status=$?
    2349426757-  echo "$as_me:15808: \$? = $ac_status" >&5
    23495 +  echo "$as_me:16819: \$? = $ac_status" >&5
     26758+  echo "$as_me:16964: \$? = $ac_status" >&5
    2349626759   (exit $ac_status); }; }; then
    2349726760   cf_cv_have_va_copy=yes
    2349826761 else
    23499 @@ -15815,21 +16826,21 @@
     26762@@ -15815,21 +16971,21 @@
    2350026763 fi
    2350126764 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    2350226765 fi
    2350326766-echo "$as_me:15818: result: $cf_cv_have_va_copy" >&5
    23504 +echo "$as_me:16829: result: $cf_cv_have_va_copy" >&5
     26767+echo "$as_me:16974: result: $cf_cv_have_va_copy" >&5
    2350526768 echo "${ECHO_T}$cf_cv_have_va_copy" >&6
    2350626769 
     
    2351026773 
    2351126774-echo "$as_me:15825: checking for __va_copy" >&5
    23512 +echo "$as_me:16836: checking for __va_copy" >&5
     26775+echo "$as_me:16981: checking for __va_copy" >&5
    2351326776 echo $ECHO_N "checking for __va_copy... $ECHO_C" >&6
    2351426777 if test "${cf_cv_have___va_copy+set}" = set; then
     
    2351826781 cat >conftest.$ac_ext <<_ACEOF
    2351926782-#line 15832 "configure"
    23520 +#line 16843 "configure"
     26783+#line 16988 "configure"
    2352126784 #include "confdefs.h"
    2352226785 
    2352326786 #include <stdarg.h>
    23524 @@ -15846,16 +16857,16 @@
     26787@@ -15846,16 +17002,16 @@
    2352526788 }
    2352626789 _ACEOF
    2352726790 rm -f conftest.$ac_objext conftest$ac_exeext
    2352826791-if { (eval echo "$as_me:15849: \"$ac_link\"") >&5
    23529 +if { (eval echo "$as_me:16860: \"$ac_link\"") >&5
     26792+if { (eval echo "$as_me:17005: \"$ac_link\"") >&5
    2353026793   (eval $ac_link) 2>&5
    2353126794   ac_status=$?
    2353226795-  echo "$as_me:15852: \$? = $ac_status" >&5
    23533 +  echo "$as_me:16863: \$? = $ac_status" >&5
     26796+  echo "$as_me:17008: \$? = $ac_status" >&5
    2353426797   (exit $ac_status); } &&
    2353526798          { ac_try='test -s conftest$ac_exeext'
    2353626799-  { (eval echo "$as_me:15855: \"$ac_try\"") >&5
    23537 +  { (eval echo "$as_me:16866: \"$ac_try\"") >&5
     26800+  { (eval echo "$as_me:17011: \"$ac_try\"") >&5
    2353826801   (eval $ac_try) 2>&5
    2353926802   ac_status=$?
    2354026803-  echo "$as_me:15858: \$? = $ac_status" >&5
    23541 +  echo "$as_me:16869: \$? = $ac_status" >&5
     26804+  echo "$as_me:17014: \$? = $ac_status" >&5
    2354226805   (exit $ac_status); }; }; then
    2354326806   cf_cv_have___va_copy=yes
    2354426807 else
    23545 @@ -15865,20 +16876,20 @@
     26808@@ -15865,20 +17021,20 @@
    2354626809 fi
    2354726810 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    2354826811 fi
    2354926812-echo "$as_me:15868: result: $cf_cv_have___va_copy" >&5
    23550 +echo "$as_me:16879: result: $cf_cv_have___va_copy" >&5
     26813+echo "$as_me:17024: result: $cf_cv_have___va_copy" >&5
    2355126814 echo "${ECHO_T}$cf_cv_have___va_copy" >&6
    2355226815 
     
    2355626819 
    2355726820-echo "$as_me:15875: checking for pid_t" >&5
    23558 +echo "$as_me:16886: checking for pid_t" >&5
     26821+echo "$as_me:17031: checking for pid_t" >&5
    2355926822 echo $ECHO_N "checking for pid_t... $ECHO_C" >&6
    2356026823 if test "${ac_cv_type_pid_t+set}" = set; then
     
    2356326826   cat >conftest.$ac_ext <<_ACEOF
    2356426827-#line 15881 "configure"
    23565 +#line 16892 "configure"
     26828+#line 17037 "configure"
    2356626829 #include "confdefs.h"
    2356726830 $ac_includes_default
    2356826831 int
    23569 @@ -15893,16 +16904,16 @@
     26832@@ -15893,16 +17049,16 @@
    2357026833 }
    2357126834 _ACEOF
    2357226835 rm -f conftest.$ac_objext
    2357326836-if { (eval echo "$as_me:15896: \"$ac_compile\"") >&5
    23574 +if { (eval echo "$as_me:16907: \"$ac_compile\"") >&5
     26837+if { (eval echo "$as_me:17052: \"$ac_compile\"") >&5
    2357526838   (eval $ac_compile) 2>&5
    2357626839   ac_status=$?
    2357726840-  echo "$as_me:15899: \$? = $ac_status" >&5
    23578 +  echo "$as_me:16910: \$? = $ac_status" >&5
     26841+  echo "$as_me:17055: \$? = $ac_status" >&5
    2357926842   (exit $ac_status); } &&
    2358026843          { ac_try='test -s conftest.$ac_objext'
    2358126844-  { (eval echo "$as_me:15902: \"$ac_try\"") >&5
    23582 +  { (eval echo "$as_me:16913: \"$ac_try\"") >&5
     26845+  { (eval echo "$as_me:17058: \"$ac_try\"") >&5
    2358326846   (eval $ac_try) 2>&5
    2358426847   ac_status=$?
    2358526848-  echo "$as_me:15905: \$? = $ac_status" >&5
    23586 +  echo "$as_me:16916: \$? = $ac_status" >&5
     26849+  echo "$as_me:17061: \$? = $ac_status" >&5
    2358726850   (exit $ac_status); }; }; then
    2358826851   ac_cv_type_pid_t=yes
    2358926852 else
    23590 @@ -15912,7 +16923,7 @@
     26853@@ -15912,7 +17068,7 @@
    2359126854 fi
    2359226855 rm -f conftest.$ac_objext conftest.$ac_ext
    2359326856 fi
    2359426857-echo "$as_me:15915: result: $ac_cv_type_pid_t" >&5
    23595 +echo "$as_me:16926: result: $ac_cv_type_pid_t" >&5
     26858+echo "$as_me:17071: result: $ac_cv_type_pid_t" >&5
    2359626859 echo "${ECHO_T}$ac_cv_type_pid_t" >&6
    2359726860 if test $ac_cv_type_pid_t = yes; then
    2359826861   :
    23599 @@ -15927,23 +16938,23 @@
     26862@@ -15927,23 +17083,23 @@
    2360026863 for ac_header in unistd.h vfork.h
    2360126864 do
    2360226865 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
    2360326866-echo "$as_me:15930: checking for $ac_header" >&5
    23604 +echo "$as_me:16941: checking for $ac_header" >&5
     26867+echo "$as_me:17086: checking for $ac_header" >&5
    2360526868 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
    2360626869 if eval "test \"\${$as_ac_Header+set}\" = set"; then
     
    2360926872   cat >conftest.$ac_ext <<_ACEOF
    2361026873-#line 15936 "configure"
    23611 +#line 16947 "configure"
     26874+#line 17092 "configure"
    2361226875 #include "confdefs.h"
    2361326876 #include <$ac_header>
    2361426877 _ACEOF
    2361526878-if { (eval echo "$as_me:15940: \"$ac_cpp conftest.$ac_ext\"") >&5
    23616 +if { (eval echo "$as_me:16951: \"$ac_cpp conftest.$ac_ext\"") >&5
     26879+if { (eval echo "$as_me:17096: \"$ac_cpp conftest.$ac_ext\"") >&5
    2361726880   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
    2361826881   ac_status=$?
     
    2362126884   cat conftest.err >&5
    2362226885-  echo "$as_me:15946: \$? = $ac_status" >&5
    23623 +  echo "$as_me:16957: \$? = $ac_status" >&5
     26886+  echo "$as_me:17102: \$? = $ac_status" >&5
    2362426887   (exit $ac_status); } >/dev/null; then
    2362526888   if test -s conftest.err; then
    2362626889     ac_cpp_err=$ac_c_preproc_warn_flag
    23627 @@ -15962,7 +16973,7 @@
     26890@@ -15962,7 +17118,7 @@
    2362826891 fi
    2362926892 rm -f conftest.err conftest.$ac_ext
    2363026893 fi
    2363126894-echo "$as_me:15965: result: `eval echo '${'$as_ac_Header'}'`" >&5
    23632 +echo "$as_me:16976: result: `eval echo '${'$as_ac_Header'}'`" >&5
     26895+echo "$as_me:17121: result: `eval echo '${'$as_ac_Header'}'`" >&5
    2363326896 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
    2363426897 if test `eval echo '${'$as_ac_Header'}'` = yes; then
    2363526898   cat >>confdefs.h <<EOF
    23636 @@ -15975,13 +16986,13 @@
     26899@@ -15975,13 +17131,13 @@
    2363726900 for ac_func in fork vfork
    2363826901 do
    2363926902 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
    2364026903-echo "$as_me:15978: checking for $ac_func" >&5
    23641 +echo "$as_me:16989: checking for $ac_func" >&5
     26904+echo "$as_me:17134: checking for $ac_func" >&5
    2364226905 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
    2364326906 if eval "test \"\${$as_ac_var+set}\" = set"; then
     
    2364626909   cat >conftest.$ac_ext <<_ACEOF
    2364726910-#line 15984 "configure"
    23648 +#line 16995 "configure"
     26911+#line 17140 "configure"
    2364926912 #include "confdefs.h"
    2365026913 /* System header to define __stub macros and hopefully few prototypes,
    2365126914     which can conflict with char $ac_func (); below.  */
    23652 @@ -16012,16 +17023,16 @@
     26915@@ -16004,7 +17160,7 @@
     26916 #if defined (__stub_$ac_func) || defined (__stub___$ac_func)
     26917 choke me
     26918 #else
     26919-f = $ac_func;
     26920+f = $ac_func; /* workaround for ICC 12.0.3 */ if (f == 0) return 1;
     26921 #endif
     26922 
     26923   ;
     26924@@ -16012,16 +17168,16 @@
    2365326925 }
    2365426926 _ACEOF
    2365526927 rm -f conftest.$ac_objext conftest$ac_exeext
    2365626928-if { (eval echo "$as_me:16015: \"$ac_link\"") >&5
    23657 +if { (eval echo "$as_me:17026: \"$ac_link\"") >&5
     26929+if { (eval echo "$as_me:17171: \"$ac_link\"") >&5
    2365826930   (eval $ac_link) 2>&5
    2365926931   ac_status=$?
    2366026932-  echo "$as_me:16018: \$? = $ac_status" >&5
    23661 +  echo "$as_me:17029: \$? = $ac_status" >&5
     26933+  echo "$as_me:17174: \$? = $ac_status" >&5
    2366226934   (exit $ac_status); } &&
    2366326935          { ac_try='test -s conftest$ac_exeext'
    2366426936-  { (eval echo "$as_me:16021: \"$ac_try\"") >&5
    23665 +  { (eval echo "$as_me:17032: \"$ac_try\"") >&5
     26937+  { (eval echo "$as_me:17177: \"$ac_try\"") >&5
    2366626938   (eval $ac_try) 2>&5
    2366726939   ac_status=$?
    2366826940-  echo "$as_me:16024: \$? = $ac_status" >&5
    23669 +  echo "$as_me:17035: \$? = $ac_status" >&5
     26941+  echo "$as_me:17180: \$? = $ac_status" >&5
    2367026942   (exit $ac_status); }; }; then
    2367126943   eval "$as_ac_var=yes"
    2367226944 else
    23673 @@ -16031,7 +17042,7 @@
     26945@@ -16031,7 +17187,7 @@
    2367426946 fi
    2367526947 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    2367626948 fi
    2367726949-echo "$as_me:16034: result: `eval echo '${'$as_ac_var'}'`" >&5
    23678 +echo "$as_me:17045: result: `eval echo '${'$as_ac_var'}'`" >&5
     26950+echo "$as_me:17190: result: `eval echo '${'$as_ac_var'}'`" >&5
    2367926951 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
    2368026952 if test `eval echo '${'$as_ac_var'}'` = yes; then
    2368126953   cat >>confdefs.h <<EOF
    23682 @@ -16043,7 +17054,7 @@
     26954@@ -16043,7 +17199,7 @@
    2368326955 
    2368426956 ac_cv_func_fork_works=$ac_cv_func_fork
    2368526957 if test "x$ac_cv_func_fork" = xyes; then
    2368626958-  echo "$as_me:16046: checking for working fork" >&5
    23687 +  echo "$as_me:17057: checking for working fork" >&5
     26959+  echo "$as_me:17202: checking for working fork" >&5
    2368826960 echo $ECHO_N "checking for working fork... $ECHO_C" >&6
    2368926961 if test "${ac_cv_func_fork_works+set}" = set; then
    2369026962   echo $ECHO_N "(cached) $ECHO_C" >&6
    23691 @@ -16066,15 +17077,15 @@
     26963@@ -16066,15 +17222,15 @@
    2369226964       }
    2369326965 _ACEOF
    2369426966 rm -f conftest$ac_exeext
    2369526967-if { (eval echo "$as_me:16069: \"$ac_link\"") >&5
    23696 +if { (eval echo "$as_me:17080: \"$ac_link\"") >&5
     26968+if { (eval echo "$as_me:17225: \"$ac_link\"") >&5
    2369726969   (eval $ac_link) 2>&5
    2369826970   ac_status=$?
    2369926971-  echo "$as_me:16072: \$? = $ac_status" >&5
    23700 +  echo "$as_me:17083: \$? = $ac_status" >&5
     26972+  echo "$as_me:17228: \$? = $ac_status" >&5
    2370126973   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
    2370226974-  { (eval echo "$as_me:16074: \"$ac_try\"") >&5
    23703 +  { (eval echo "$as_me:17085: \"$ac_try\"") >&5
     26975+  { (eval echo "$as_me:17230: \"$ac_try\"") >&5
    2370426976   (eval $ac_try) 2>&5
    2370526977   ac_status=$?
    2370626978-  echo "$as_me:16077: \$? = $ac_status" >&5
    23707 +  echo "$as_me:17088: \$? = $ac_status" >&5
     26979+  echo "$as_me:17233: \$? = $ac_status" >&5
    2370826980   (exit $ac_status); }; }; then
    2370926981   ac_cv_func_fork_works=yes
    2371026982 else
    23711 @@ -16086,7 +17097,7 @@
     26983@@ -16086,7 +17242,7 @@
    2371226984 rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
    2371326985 fi
    2371426986 fi
    2371526987-echo "$as_me:16089: result: $ac_cv_func_fork_works" >&5
    23716 +echo "$as_me:17100: result: $ac_cv_func_fork_works" >&5
     26988+echo "$as_me:17245: result: $ac_cv_func_fork_works" >&5
    2371726989 echo "${ECHO_T}$ac_cv_func_fork_works" >&6
    2371826990 
    2371926991 fi
    23720 @@ -16100,12 +17111,12 @@
     26992@@ -16100,12 +17256,12 @@
    2372126993       ac_cv_func_fork_works=yes
    2372226994       ;;
    2372326995   esac
    2372426996-  { echo "$as_me:16103: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&5
    23725 +  { echo "$as_me:17114: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&5
     26997+  { echo "$as_me:17259: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&5
    2372626998 echo "$as_me: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&2;}
    2372726999 fi
     
    2372927001 if test "x$ac_cv_func_vfork" = xyes; then
    2373027002-  echo "$as_me:16108: checking for working vfork" >&5
    23731 +  echo "$as_me:17119: checking for working vfork" >&5
     27003+  echo "$as_me:17264: checking for working vfork" >&5
    2373227004 echo $ECHO_N "checking for working vfork... $ECHO_C" >&6
    2373327005 if test "${ac_cv_func_vfork_works+set}" = set; then
    2373427006   echo $ECHO_N "(cached) $ECHO_C" >&6
    23735 @@ -16114,7 +17125,7 @@
     27007@@ -16114,7 +17270,7 @@
    2373627008   ac_cv_func_vfork_works=cross
    2373727009 else
    2373827010   cat >conftest.$ac_ext <<_ACEOF
    2373927011-#line 16117 "configure"
    23740 +#line 17128 "configure"
     27012+#line 17273 "configure"
    2374127013 #include "confdefs.h"
    2374227014 /* Thanks to Paul Eggert for this test.  */
    2374327015 #include <stdio.h>
    23744 @@ -16211,15 +17222,15 @@
     27016@@ -16211,15 +17367,15 @@
    2374527017 }
    2374627018 _ACEOF
    2374727019 rm -f conftest$ac_exeext
    2374827020-if { (eval echo "$as_me:16214: \"$ac_link\"") >&5
    23749 +if { (eval echo "$as_me:17225: \"$ac_link\"") >&5
     27021+if { (eval echo "$as_me:17370: \"$ac_link\"") >&5
    2375027022   (eval $ac_link) 2>&5
    2375127023   ac_status=$?
    2375227024-  echo "$as_me:16217: \$? = $ac_status" >&5
    23753 +  echo "$as_me:17228: \$? = $ac_status" >&5
     27025+  echo "$as_me:17373: \$? = $ac_status" >&5
    2375427026   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
    2375527027-  { (eval echo "$as_me:16219: \"$ac_try\"") >&5
    23756 +  { (eval echo "$as_me:17230: \"$ac_try\"") >&5
     27028+  { (eval echo "$as_me:17375: \"$ac_try\"") >&5
    2375727029   (eval $ac_try) 2>&5
    2375827030   ac_status=$?
    2375927031-  echo "$as_me:16222: \$? = $ac_status" >&5
    23760 +  echo "$as_me:17233: \$? = $ac_status" >&5
     27032+  echo "$as_me:17378: \$? = $ac_status" >&5
    2376127033   (exit $ac_status); }; }; then
    2376227034   ac_cv_func_vfork_works=yes
    2376327035 else
    23764 @@ -16231,13 +17242,13 @@
     27036@@ -16231,13 +17387,13 @@
    2376527037 rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
    2376627038 fi
    2376727039 fi
    2376827040-echo "$as_me:16234: result: $ac_cv_func_vfork_works" >&5
    23769 +echo "$as_me:17245: result: $ac_cv_func_vfork_works" >&5
     27041+echo "$as_me:17390: result: $ac_cv_func_vfork_works" >&5
    2377027042 echo "${ECHO_T}$ac_cv_func_vfork_works" >&6
    2377127043 
     
    2377427046   ac_cv_func_vfork_works=ac_cv_func_vfork
    2377527047-  { echo "$as_me:16240: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&5
    23776 +  { echo "$as_me:17251: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&5
     27048+  { echo "$as_me:17396: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&5
    2377727049 echo "$as_me: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&2;}
    2377827050 fi
    2377927051 
    23780 @@ -16264,7 +17275,7 @@
     27052@@ -16264,7 +17420,7 @@
    2378127053 
    2378227054 # special check for test/ditto.c
    2378327055 
    2378427056-echo "$as_me:16267: checking for openpty in -lutil" >&5
    23785 +echo "$as_me:17278: checking for openpty in -lutil" >&5
     27057+echo "$as_me:17423: checking for openpty in -lutil" >&5
    2378627058 echo $ECHO_N "checking for openpty in -lutil... $ECHO_C" >&6
    2378727059 if test "${ac_cv_lib_util_openpty+set}" = set; then
    2378827060   echo $ECHO_N "(cached) $ECHO_C" >&6
    23789 @@ -16272,7 +17283,7 @@
     27061@@ -16272,7 +17428,7 @@
    2379027062   ac_check_lib_save_LIBS=$LIBS
    2379127063 LIBS="-lutil  $LIBS"
    2379227064 cat >conftest.$ac_ext <<_ACEOF
    2379327065-#line 16275 "configure"
    23794 +#line 17286 "configure"
     27066+#line 17431 "configure"
    2379527067 #include "confdefs.h"
    2379627068 
    2379727069 /* Override any gcc2 internal prototype to avoid an error.  */
    23798 @@ -16291,16 +17302,16 @@
     27070@@ -16291,16 +17447,16 @@
    2379927071 }
    2380027072 _ACEOF
    2380127073 rm -f conftest.$ac_objext conftest$ac_exeext
    2380227074-if { (eval echo "$as_me:16294: \"$ac_link\"") >&5
    23803 +if { (eval echo "$as_me:17305: \"$ac_link\"") >&5
     27075+if { (eval echo "$as_me:17450: \"$ac_link\"") >&5
    2380427076   (eval $ac_link) 2>&5
    2380527077   ac_status=$?
    2380627078-  echo "$as_me:16297: \$? = $ac_status" >&5
    23807 +  echo "$as_me:17308: \$? = $ac_status" >&5
     27079+  echo "$as_me:17453: \$? = $ac_status" >&5
    2380827080   (exit $ac_status); } &&
    2380927081          { ac_try='test -s conftest$ac_exeext'
    2381027082-  { (eval echo "$as_me:16300: \"$ac_try\"") >&5
    23811 +  { (eval echo "$as_me:17311: \"$ac_try\"") >&5
     27083+  { (eval echo "$as_me:17456: \"$ac_try\"") >&5
    2381227084   (eval $ac_try) 2>&5
    2381327085   ac_status=$?
    2381427086-  echo "$as_me:16303: \$? = $ac_status" >&5
    23815 +  echo "$as_me:17314: \$? = $ac_status" >&5
     27087+  echo "$as_me:17459: \$? = $ac_status" >&5
    2381627088   (exit $ac_status); }; }; then
    2381727089   ac_cv_lib_util_openpty=yes
    2381827090 else
    23819 @@ -16311,7 +17322,7 @@
     27091@@ -16311,7 +17467,7 @@
    2382027092 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    2382127093 LIBS=$ac_check_lib_save_LIBS
    2382227094 fi
    2382327095-echo "$as_me:16314: result: $ac_cv_lib_util_openpty" >&5
    23824 +echo "$as_me:17325: result: $ac_cv_lib_util_openpty" >&5
     27096+echo "$as_me:17470: result: $ac_cv_lib_util_openpty" >&5
    2382527097 echo "${ECHO_T}$ac_cv_lib_util_openpty" >&6
    2382627098 if test $ac_cv_lib_util_openpty = yes; then
    2382727099   cf_cv_lib_util=yes
    23828 @@ -16319,7 +17330,7 @@
     27100@@ -16319,7 +17475,7 @@
    2382927101   cf_cv_lib_util=no
    2383027102 fi
    2383127103 
    2383227104-echo "$as_me:16322: checking for openpty header" >&5
    23833 +echo "$as_me:17333: checking for openpty header" >&5
     27105+echo "$as_me:17478: checking for openpty header" >&5
    2383427106 echo $ECHO_N "checking for openpty header... $ECHO_C" >&6
    2383527107 if test "${cf_cv_func_openpty+set}" = set; then
    2383627108   echo $ECHO_N "(cached) $ECHO_C" >&6
    23837 @@ -16330,7 +17341,7 @@
     27109@@ -16330,7 +17486,7 @@
    2383827110     for cf_header in pty.h libutil.h util.h
    2383927111     do
    2384027112     cat >conftest.$ac_ext <<_ACEOF
    2384127113-#line 16333 "configure"
    23842 +#line 17344 "configure"
     27114+#line 17489 "configure"
    2384327115 #include "confdefs.h"
    2384427116 
    2384527117 #include <$cf_header>
    23846 @@ -16347,16 +17358,16 @@
     27118@@ -16347,16 +17503,16 @@
    2384727119 }
    2384827120 _ACEOF
    2384927121 rm -f conftest.$ac_objext conftest$ac_exeext
    2385027122-if { (eval echo "$as_me:16350: \"$ac_link\"") >&5
    23851 +if { (eval echo "$as_me:17361: \"$ac_link\"") >&5
     27123+if { (eval echo "$as_me:17506: \"$ac_link\"") >&5
    2385227124   (eval $ac_link) 2>&5
    2385327125   ac_status=$?
    2385427126-  echo "$as_me:16353: \$? = $ac_status" >&5
    23855 +  echo "$as_me:17364: \$? = $ac_status" >&5
     27127+  echo "$as_me:17509: \$? = $ac_status" >&5
    2385627128   (exit $ac_status); } &&
    2385727129          { ac_try='test -s conftest$ac_exeext'
    2385827130-  { (eval echo "$as_me:16356: \"$ac_try\"") >&5
    23859 +  { (eval echo "$as_me:17367: \"$ac_try\"") >&5
     27131+  { (eval echo "$as_me:17512: \"$ac_try\"") >&5
    2386027132   (eval $ac_try) 2>&5
    2386127133   ac_status=$?
    2386227134-  echo "$as_me:16359: \$? = $ac_status" >&5
    23863 +  echo "$as_me:17370: \$? = $ac_status" >&5
     27135+  echo "$as_me:17515: \$? = $ac_status" >&5
    2386427136   (exit $ac_status); }; }; then
    2386527137 
    2386627138         cf_cv_func_openpty=$cf_header
    23867 @@ -16374,7 +17385,7 @@
     27139@@ -16374,7 +17530,7 @@
    2386827140     LIBS="$cf_save_LIBS"
    2386927141 
    2387027142 fi
    2387127143-echo "$as_me:16377: result: $cf_cv_func_openpty" >&5
    23872 +echo "$as_me:17388: result: $cf_cv_func_openpty" >&5
     27144+echo "$as_me:17533: result: $cf_cv_func_openpty" >&5
    2387327145 echo "${ECHO_T}$cf_cv_func_openpty" >&6
    2387427146 
    2387527147 if test "$cf_cv_func_openpty" != no ; then
    23876 @@ -16426,7 +17437,7 @@
     27148@@ -16426,7 +17582,7 @@
    2387727149                          cf_save_CPPFLAGS=$CPPFLAGS
    2387827150                          CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
    2387927151                          cat >conftest.$ac_ext <<_ACEOF
    2388027152-#line 16429 "configure"
    23881 +#line 17440 "configure"
     27153+#line 17585 "configure"
    2388227154 #include "confdefs.h"
    2388327155 #include <stdio.h>
    2388427156 int
    23885 @@ -16438,16 +17449,16 @@
     27157@@ -16438,16 +17594,16 @@
    2388627158 }
    2388727159 _ACEOF
    2388827160 rm -f conftest.$ac_objext
    2388927161-if { (eval echo "$as_me:16441: \"$ac_compile\"") >&5
    23890 +if { (eval echo "$as_me:17452: \"$ac_compile\"") >&5
     27162+if { (eval echo "$as_me:17597: \"$ac_compile\"") >&5
    2389127163   (eval $ac_compile) 2>&5
    2389227164   ac_status=$?
    2389327165-  echo "$as_me:16444: \$? = $ac_status" >&5
    23894 +  echo "$as_me:17455: \$? = $ac_status" >&5
     27166+  echo "$as_me:17600: \$? = $ac_status" >&5
    2389527167   (exit $ac_status); } &&
    2389627168          { ac_try='test -s conftest.$ac_objext'
    2389727169-  { (eval echo "$as_me:16447: \"$ac_try\"") >&5
    23898 +  { (eval echo "$as_me:17458: \"$ac_try\"") >&5
     27170+  { (eval echo "$as_me:17603: \"$ac_try\"") >&5
    2389927171   (eval $ac_try) 2>&5
    2390027172   ac_status=$?
    2390127173-  echo "$as_me:16450: \$? = $ac_status" >&5
    23902 +  echo "$as_me:17461: \$? = $ac_status" >&5
     27174+  echo "$as_me:17606: \$? = $ac_status" >&5
    2390327175   (exit $ac_status); }; }; then
    2390427176   :
    2390527177 else
    23906 @@ -16464,7 +17475,7 @@
     27178@@ -16464,7 +17620,7 @@
    2390727179                if test "$cf_have_incdir" = no ; then
    2390827180                  test -n "$verbose" && echo "  adding $cf_add_incdir to include-path" 1>&6
    2390927181 
    2391027182-echo "${as_me:-configure}:16467: testing adding $cf_add_incdir to include-path ..." 1>&5
    23911 +echo "${as_me:-configure}:17478: testing adding $cf_add_incdir to include-path ..." 1>&5
     27183+echo "${as_me:-configure}:17623: testing adding $cf_add_incdir to include-path ..." 1>&5
    2391227184 
    2391327185                  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
    2391427186 
    23915 @@ -16498,7 +17509,7 @@
     27187@@ -16498,7 +17654,7 @@
    2391627188       if test "$cf_have_libdir" = no ; then
    2391727189         test -n "$verbose" && echo "   adding $cf_add_libdir to library-path" 1>&6
    2391827190 
    2391927191-echo "${as_me:-configure}:16501: testing adding $cf_add_libdir to library-path ..." 1>&5
    23920 +echo "${as_me:-configure}:17512: testing adding $cf_add_libdir to library-path ..." 1>&5
     27192+echo "${as_me:-configure}:17657: testing adding $cf_add_libdir to library-path ..." 1>&5
    2392127193 
    2392227194         LDFLAGS="-L$cf_add_libdir $LDFLAGS"
    2392327195       fi
    23924 @@ -16509,23 +17520,23 @@
     27196@@ -16509,23 +17665,23 @@
    2392527197     fi
    2392627198 esac
    2392727199 
    2392827200-echo "$as_me:16512: checking for db.h" >&5
    23929 +echo "$as_me:17523: checking for db.h" >&5
     27201+echo "$as_me:17668: checking for db.h" >&5
    2393027202 echo $ECHO_N "checking for db.h... $ECHO_C" >&6
    2393127203 if test "${ac_cv_header_db_h+set}" = set; then
     
    2393427206   cat >conftest.$ac_ext <<_ACEOF
    2393527207-#line 16518 "configure"
    23936 +#line 17529 "configure"
     27208+#line 17674 "configure"
    2393727209 #include "confdefs.h"
    2393827210 #include <db.h>
    2393927211 _ACEOF
    2394027212-if { (eval echo "$as_me:16522: \"$ac_cpp conftest.$ac_ext\"") >&5
    23941 +if { (eval echo "$as_me:17533: \"$ac_cpp conftest.$ac_ext\"") >&5
     27213+if { (eval echo "$as_me:17678: \"$ac_cpp conftest.$ac_ext\"") >&5
    2394227214   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
    2394327215   ac_status=$?
     
    2394627218   cat conftest.err >&5
    2394727219-  echo "$as_me:16528: \$? = $ac_status" >&5
    23948 +  echo "$as_me:17539: \$? = $ac_status" >&5
     27220+  echo "$as_me:17684: \$? = $ac_status" >&5
    2394927221   (exit $ac_status); } >/dev/null; then
    2395027222   if test -s conftest.err; then
    2395127223     ac_cpp_err=$ac_c_preproc_warn_flag
    23952 @@ -16544,11 +17555,11 @@
     27224@@ -16544,11 +17700,11 @@
    2395327225 fi
    2395427226 rm -f conftest.err conftest.$ac_ext
    2395527227 fi
    2395627228-echo "$as_me:16547: result: $ac_cv_header_db_h" >&5
    23957 +echo "$as_me:17558: result: $ac_cv_header_db_h" >&5
     27229+echo "$as_me:17703: result: $ac_cv_header_db_h" >&5
    2395827230 echo "${ECHO_T}$ac_cv_header_db_h" >&6
    2395927231 if test $ac_cv_header_db_h = yes; then
    2396027232 
    2396127233-echo "$as_me:16551: checking for version of db" >&5
    23962 +echo "$as_me:17562: checking for version of db" >&5
     27234+echo "$as_me:17707: checking for version of db" >&5
    2396327235 echo $ECHO_N "checking for version of db... $ECHO_C" >&6
    2396427236 if test "${cf_cv_hashed_db_version+set}" = set; then
    2396527237   echo $ECHO_N "(cached) $ECHO_C" >&6
    23966 @@ -16559,10 +17570,10 @@
     27238@@ -16559,10 +17715,10 @@
    2396727239 for cf_db_version in 1 2 3 4 5
    2396827240 do
    2396927241 
    2397027242-echo "${as_me:-configure}:16562: testing checking for db version $cf_db_version ..." 1>&5
    23971 +echo "${as_me:-configure}:17573: testing checking for db version $cf_db_version ..." 1>&5
     27243+echo "${as_me:-configure}:17718: testing checking for db version $cf_db_version ..." 1>&5
    2397227244 
    2397327245        cat >conftest.$ac_ext <<_ACEOF
    2397427246-#line 16565 "configure"
    23975 +#line 17576 "configure"
     27247+#line 17721 "configure"
    2397627248 #include "confdefs.h"
    2397727249 
    2397827250 $ac_includes_default
    23979 @@ -16592,16 +17603,16 @@
     27251@@ -16592,16 +17748,16 @@
    2398027252 }
    2398127253 _ACEOF
    2398227254 rm -f conftest.$ac_objext
    2398327255-if { (eval echo "$as_me:16595: \"$ac_compile\"") >&5
    23984 +if { (eval echo "$as_me:17606: \"$ac_compile\"") >&5
     27256+if { (eval echo "$as_me:17751: \"$ac_compile\"") >&5
    2398527257   (eval $ac_compile) 2>&5
    2398627258   ac_status=$?
    2398727259-  echo "$as_me:16598: \$? = $ac_status" >&5
    23988 +  echo "$as_me:17609: \$? = $ac_status" >&5
     27260+  echo "$as_me:17754: \$? = $ac_status" >&5
    2398927261   (exit $ac_status); } &&
    2399027262          { ac_try='test -s conftest.$ac_objext'
    2399127263-  { (eval echo "$as_me:16601: \"$ac_try\"") >&5
    23992 +  { (eval echo "$as_me:17612: \"$ac_try\"") >&5
     27264+  { (eval echo "$as_me:17757: \"$ac_try\"") >&5
    2399327265   (eval $ac_try) 2>&5
    2399427266   ac_status=$?
    2399527267-  echo "$as_me:16604: \$? = $ac_status" >&5
    23996 +  echo "$as_me:17615: \$? = $ac_status" >&5
     27268+  echo "$as_me:17760: \$? = $ac_status" >&5
    2399727269   (exit $ac_status); }; }; then
    2399827270 
    2399927271        cf_cv_hashed_db_version=$cf_db_version
    24000 @@ -16615,16 +17626,16 @@
     27272@@ -16615,16 +17771,16 @@
    2400127273 done
    2400227274 
    2400327275 fi
    2400427276-echo "$as_me:16618: result: $cf_cv_hashed_db_version" >&5
    24005 +echo "$as_me:17629: result: $cf_cv_hashed_db_version" >&5
     27277+echo "$as_me:17774: result: $cf_cv_hashed_db_version" >&5
    2400627278 echo "${ECHO_T}$cf_cv_hashed_db_version" >&6
    2400727279 
    2400827280 if test "$cf_cv_hashed_db_version" = unknown ; then
    2400927281-       { { echo "$as_me:16622: error: Cannot determine version of db" >&5
    24010 +       { { echo "$as_me:17633: error: Cannot determine version of db" >&5
     27282+       { { echo "$as_me:17778: error: Cannot determine version of db" >&5
    2401127283 echo "$as_me: error: Cannot determine version of db" >&2;}
    2401227284    { (exit 1); exit 1; }; }
     
    2401427286 
    2401527287-echo "$as_me:16627: checking for db libraries" >&5
    24016 +echo "$as_me:17638: checking for db libraries" >&5
     27288+echo "$as_me:17783: checking for db libraries" >&5
    2401727289 echo $ECHO_N "checking for db libraries... $ECHO_C" >&6
    2401827290 if test "${cf_cv_hashed_db_libs+set}" = set; then
    2401927291   echo $ECHO_N "(cached) $ECHO_C" >&6
    24020 @@ -16638,10 +17649,10 @@
     27292@@ -16638,10 +17794,10 @@
    2402127293                LIBS="-l$cf_db_libs $LIBS"
    2402227294        fi
    2402327295 
    2402427296-echo "${as_me:-configure}:16641: testing checking for library "$cf_db_libs" ..." 1>&5
    24025 +echo "${as_me:-configure}:17652: testing checking for library "$cf_db_libs" ..." 1>&5
     27297+echo "${as_me:-configure}:17797: testing checking for library "$cf_db_libs" ..." 1>&5
    2402627298 
    2402727299        cat >conftest.$ac_ext <<_ACEOF
    2402827300-#line 16644 "configure"
    24029 +#line 17655 "configure"
     27301+#line 17800 "configure"
    2403027302 #include "confdefs.h"
    2403127303 
    2403227304 $ac_includes_default
    24033 @@ -16696,16 +17707,16 @@
     27305@@ -16696,16 +17852,16 @@
    2403427306 }
    2403527307 _ACEOF
    2403627308 rm -f conftest.$ac_objext conftest$ac_exeext
    2403727309-if { (eval echo "$as_me:16699: \"$ac_link\"") >&5
    24038 +if { (eval echo "$as_me:17710: \"$ac_link\"") >&5
     27310+if { (eval echo "$as_me:17855: \"$ac_link\"") >&5
    2403927311   (eval $ac_link) 2>&5
    2404027312   ac_status=$?
    2404127313-  echo "$as_me:16702: \$? = $ac_status" >&5
    24042 +  echo "$as_me:17713: \$? = $ac_status" >&5
     27314+  echo "$as_me:17858: \$? = $ac_status" >&5
    2404327315   (exit $ac_status); } &&
    2404427316          { ac_try='test -s conftest$ac_exeext'
    2404527317-  { (eval echo "$as_me:16705: \"$ac_try\"") >&5
    24046 +  { (eval echo "$as_me:17716: \"$ac_try\"") >&5
     27318+  { (eval echo "$as_me:17861: \"$ac_try\"") >&5
    2404727319   (eval $ac_try) 2>&5
    2404827320   ac_status=$?
    2404927321-  echo "$as_me:16708: \$? = $ac_status" >&5
    24050 +  echo "$as_me:17719: \$? = $ac_status" >&5
     27322+  echo "$as_me:17864: \$? = $ac_status" >&5
    2405127323   (exit $ac_status); }; }; then
    2405227324 
    2405327325        if test -n "$cf_db_libs" ; then
    24054 @@ -16725,11 +17736,11 @@
     27326@@ -16725,11 +17881,11 @@
    2405527327 done
    2405627328 
    2405727329 fi
    2405827330-echo "$as_me:16728: result: $cf_cv_hashed_db_libs" >&5
    24059 +echo "$as_me:17739: result: $cf_cv_hashed_db_libs" >&5
     27331+echo "$as_me:17884: result: $cf_cv_hashed_db_libs" >&5
    2406027332 echo "${ECHO_T}$cf_cv_hashed_db_libs" >&6
    2406127333 
    2406227334        if test "$cf_cv_hashed_db_libs" = unknown ; then
    2406327335-               { { echo "$as_me:16732: error: Cannot determine library for db" >&5
    24064 +               { { echo "$as_me:17743: error: Cannot determine library for db" >&5
     27336+               { { echo "$as_me:17888: error: Cannot determine library for db" >&5
    2406527337 echo "$as_me: error: Cannot determine library for db" >&2;}
    2406627338    { (exit 1); exit 1; }; }
    2406727339        elif test "$cf_cv_hashed_db_libs" != default ; then
    24068 @@ -16739,7 +17750,7 @@
     27340@@ -16739,7 +17895,7 @@
    2406927341 
    2407027342 else
    2407127343 
    2407227344-       { { echo "$as_me:16742: error: Cannot find db.h" >&5
    24073 +       { { echo "$as_me:17753: error: Cannot find db.h" >&5
     27345+       { { echo "$as_me:17898: error: Cannot find db.h" >&5
    2407427346 echo "$as_me: error: Cannot find db.h" >&2;}
    2407527347    { (exit 1); exit 1; }; }
    2407627348 
    24077 @@ -16754,7 +17765,7 @@
     27349@@ -16754,7 +17910,7 @@
    2407827350 
    2407927351 # Just in case, check if the C compiler has a bool type.
    2408027352 
    2408127353-echo "$as_me:16757: checking if we should include stdbool.h" >&5
    24082 +echo "$as_me:17768: checking if we should include stdbool.h" >&5
     27354+echo "$as_me:17913: checking if we should include stdbool.h" >&5
    2408327355 echo $ECHO_N "checking if we should include stdbool.h... $ECHO_C" >&6
    2408427356 
    2408527357 if test "${cf_cv_header_stdbool_h+set}" = set; then
    24086 @@ -16762,7 +17773,7 @@
     27358@@ -16762,7 +17918,7 @@
    2408727359 else
    2408827360 
    2408927361        cat >conftest.$ac_ext <<_ACEOF
    2409027362-#line 16765 "configure"
    24091 +#line 17776 "configure"
     27363+#line 17921 "configure"
    2409227364 #include "confdefs.h"
    2409327365 
    2409427366 int
    24095 @@ -16774,23 +17785,23 @@
     27367@@ -16774,23 +17930,23 @@
    2409627368 }
    2409727369 _ACEOF
    2409827370 rm -f conftest.$ac_objext
    2409927371-if { (eval echo "$as_me:16777: \"$ac_compile\"") >&5
    24100 +if { (eval echo "$as_me:17788: \"$ac_compile\"") >&5
     27372+if { (eval echo "$as_me:17933: \"$ac_compile\"") >&5
    2410127373   (eval $ac_compile) 2>&5
    2410227374   ac_status=$?
    2410327375-  echo "$as_me:16780: \$? = $ac_status" >&5
    24104 +  echo "$as_me:17791: \$? = $ac_status" >&5
     27376+  echo "$as_me:17936: \$? = $ac_status" >&5
    2410527377   (exit $ac_status); } &&
    2410627378          { ac_try='test -s conftest.$ac_objext'
    2410727379-  { (eval echo "$as_me:16783: \"$ac_try\"") >&5
    24108 +  { (eval echo "$as_me:17794: \"$ac_try\"") >&5
     27380+  { (eval echo "$as_me:17939: \"$ac_try\"") >&5
    2410927381   (eval $ac_try) 2>&5
    2411027382   ac_status=$?
    2411127383-  echo "$as_me:16786: \$? = $ac_status" >&5
    24112 +  echo "$as_me:17797: \$? = $ac_status" >&5
     27384+  echo "$as_me:17942: \$? = $ac_status" >&5
    2411327385   (exit $ac_status); }; }; then
    2411427386   cf_cv_header_stdbool_h=0
     
    2411827390 cat >conftest.$ac_ext <<_ACEOF
    2411927391-#line 16793 "configure"
    24120 +#line 17804 "configure"
     27392+#line 17949 "configure"
    2412127393 #include "confdefs.h"
    2412227394 
    2412327395 #ifndef __BEOS__
    24124 @@ -16806,16 +17817,16 @@
     27396@@ -16806,16 +17962,16 @@
    2412527397 }
    2412627398 _ACEOF
    2412727399 rm -f conftest.$ac_objext
    2412827400-if { (eval echo "$as_me:16809: \"$ac_compile\"") >&5
    24129 +if { (eval echo "$as_me:17820: \"$ac_compile\"") >&5
     27401+if { (eval echo "$as_me:17965: \"$ac_compile\"") >&5
    2413027402   (eval $ac_compile) 2>&5
    2413127403   ac_status=$?
    2413227404-  echo "$as_me:16812: \$? = $ac_status" >&5
    24133 +  echo "$as_me:17823: \$? = $ac_status" >&5
     27405+  echo "$as_me:17968: \$? = $ac_status" >&5
    2413427406   (exit $ac_status); } &&
    2413527407          { ac_try='test -s conftest.$ac_objext'
    2413627408-  { (eval echo "$as_me:16815: \"$ac_try\"") >&5
    24137 +  { (eval echo "$as_me:17826: \"$ac_try\"") >&5
     27409+  { (eval echo "$as_me:17971: \"$ac_try\"") >&5
    2413827410   (eval $ac_try) 2>&5
    2413927411   ac_status=$?
    2414027412-  echo "$as_me:16818: \$? = $ac_status" >&5
    24141 +  echo "$as_me:17829: \$? = $ac_status" >&5
     27413+  echo "$as_me:17974: \$? = $ac_status" >&5
    2414227414   (exit $ac_status); }; }; then
    2414327415   cf_cv_header_stdbool_h=1
    2414427416 else
    24145 @@ -16829,13 +17840,13 @@
     27417@@ -16829,13 +17985,13 @@
    2414627418 fi
    2414727419 
    2414827420 if test "$cf_cv_header_stdbool_h" = 1
    2414927421-then   echo "$as_me:16832: result: yes" >&5
    24150 +then   echo "$as_me:17843: result: yes" >&5
     27422+then   echo "$as_me:17988: result: yes" >&5
    2415127423 echo "${ECHO_T}yes" >&6
    2415227424-else   echo "$as_me:16834: result: no" >&5
    24153 +else   echo "$as_me:17845: result: no" >&5
     27425+else   echo "$as_me:17990: result: no" >&5
    2415427426 echo "${ECHO_T}no" >&6
    2415527427 fi
    2415627428 
    2415727429-echo "$as_me:16838: checking for builtin bool type" >&5
    24158 +echo "$as_me:17849: checking for builtin bool type" >&5
     27430+echo "$as_me:17994: checking for builtin bool type" >&5
    2415927431 echo $ECHO_N "checking for builtin bool type... $ECHO_C" >&6
    2416027432 
    2416127433 if test "${cf_cv_cc_bool_type+set}" = set; then
    24162 @@ -16843,7 +17854,7 @@
     27434@@ -16843,7 +17999,7 @@
    2416327435 else
    2416427436 
    2416527437        cat >conftest.$ac_ext <<_ACEOF
    2416627438-#line 16846 "configure"
    24167 +#line 17857 "configure"
     27439+#line 18002 "configure"
    2416827440 #include "confdefs.h"
    2416927441 
    2417027442 #include <stdio.h>
    24171 @@ -16858,16 +17869,16 @@
     27443@@ -16858,16 +18014,16 @@
    2417227444 }
    2417327445 _ACEOF
    2417427446 rm -f conftest.$ac_objext
    2417527447-if { (eval echo "$as_me:16861: \"$ac_compile\"") >&5
    24176 +if { (eval echo "$as_me:17872: \"$ac_compile\"") >&5
     27448+if { (eval echo "$as_me:18017: \"$ac_compile\"") >&5
    2417727449   (eval $ac_compile) 2>&5
    2417827450   ac_status=$?
    2417927451-  echo "$as_me:16864: \$? = $ac_status" >&5
    24180 +  echo "$as_me:17875: \$? = $ac_status" >&5
     27452+  echo "$as_me:18020: \$? = $ac_status" >&5
    2418127453   (exit $ac_status); } &&
    2418227454          { ac_try='test -s conftest.$ac_objext'
    2418327455-  { (eval echo "$as_me:16867: \"$ac_try\"") >&5
    24184 +  { (eval echo "$as_me:17878: \"$ac_try\"") >&5
     27456+  { (eval echo "$as_me:18023: \"$ac_try\"") >&5
    2418527457   (eval $ac_try) 2>&5
    2418627458   ac_status=$?
    2418727459-  echo "$as_me:16870: \$? = $ac_status" >&5
    24188 +  echo "$as_me:17881: \$? = $ac_status" >&5
     27460+  echo "$as_me:18026: \$? = $ac_status" >&5
    2418927461   (exit $ac_status); }; }; then
    2419027462   cf_cv_cc_bool_type=1
    2419127463 else
    24192 @@ -16880,9 +17891,9 @@
     27464@@ -16880,9 +18036,9 @@
    2419327465 fi
    2419427466 
    2419527467 if test "$cf_cv_cc_bool_type" = 1
    2419627468-then   echo "$as_me:16883: result: yes" >&5
    24197 +then   echo "$as_me:17894: result: yes" >&5
     27469+then   echo "$as_me:18039: result: yes" >&5
    2419827470 echo "${ECHO_T}yes" >&6
    2419927471-else   echo "$as_me:16885: result: no" >&5
    24200 +else   echo "$as_me:17896: result: no" >&5
     27472+else   echo "$as_me:18041: result: no" >&5
    2420127473 echo "${ECHO_T}no" >&6
    2420227474 fi
    2420327475 
    24204 @@ -16904,7 +17915,7 @@
     27476@@ -16904,7 +18060,7 @@
    2420527477        cf_stdcpp_libname=stdc++
    2420627478        ;;
    2420727479 esac
    2420827480-echo "$as_me:16907: checking for library $cf_stdcpp_libname" >&5
    24209 +echo "$as_me:17918: checking for library $cf_stdcpp_libname" >&5
     27481+echo "$as_me:18063: checking for library $cf_stdcpp_libname" >&5
    2421027482 echo $ECHO_N "checking for library $cf_stdcpp_libname... $ECHO_C" >&6
    2421127483 if test "${cf_cv_libstdcpp+set}" = set; then
    2421227484   echo $ECHO_N "(cached) $ECHO_C" >&6
    24213 @@ -16913,7 +17924,7 @@
     27485@@ -16913,7 +18069,7 @@
    2421427486        cf_save="$LIBS"
    2421527487        LIBS="-l$cf_stdcpp_libname $LIBS"
    2421627488 cat >conftest.$ac_ext <<_ACEOF
    2421727489-#line 16916 "configure"
    24218 +#line 17927 "configure"
     27490+#line 18072 "configure"
    2421927491 #include "confdefs.h"
    2422027492 
    2422127493 #include <strstream.h>
    24222 @@ -16929,16 +17940,16 @@
     27494@@ -16929,16 +18085,16 @@
    2422327495 }
    2422427496 _ACEOF
    2422527497 rm -f conftest.$ac_objext conftest$ac_exeext
    2422627498-if { (eval echo "$as_me:16932: \"$ac_link\"") >&5
    24227 +if { (eval echo "$as_me:17943: \"$ac_link\"") >&5
     27499+if { (eval echo "$as_me:18088: \"$ac_link\"") >&5
    2422827500   (eval $ac_link) 2>&5
    2422927501   ac_status=$?
    2423027502-  echo "$as_me:16935: \$? = $ac_status" >&5
    24231 +  echo "$as_me:17946: \$? = $ac_status" >&5
     27503+  echo "$as_me:18091: \$? = $ac_status" >&5
    2423227504   (exit $ac_status); } &&
    2423327505          { ac_try='test -s conftest$ac_exeext'
    2423427506-  { (eval echo "$as_me:16938: \"$ac_try\"") >&5
    24235 +  { (eval echo "$as_me:17949: \"$ac_try\"") >&5
     27507+  { (eval echo "$as_me:18094: \"$ac_try\"") >&5
    2423627508   (eval $ac_try) 2>&5
    2423727509   ac_status=$?
    2423827510-  echo "$as_me:16941: \$? = $ac_status" >&5
    24239 +  echo "$as_me:17952: \$? = $ac_status" >&5
     27511+  echo "$as_me:18097: \$? = $ac_status" >&5
    2424027512   (exit $ac_status); }; }; then
    2424127513   cf_cv_libstdcpp=yes
    2424227514 else
    24243 @@ -16950,12 +17961,12 @@
     27515@@ -16950,12 +18106,12 @@
    2424427516        LIBS="$cf_save"
    2424527517 
    2424627518 fi
    2424727519-echo "$as_me:16953: result: $cf_cv_libstdcpp" >&5
    24248 +echo "$as_me:17964: result: $cf_cv_libstdcpp" >&5
     27520+echo "$as_me:18109: result: $cf_cv_libstdcpp" >&5
    2424927521 echo "${ECHO_T}$cf_cv_libstdcpp" >&6
    2425027522 test "$cf_cv_libstdcpp" = yes && CXXLIBS="-l$cf_stdcpp_libname $CXXLIBS"
     
    2425227524 
    2425327525-       echo "$as_me:16958: checking whether $CXX understands -c and -o together" >&5
    24254 +       echo "$as_me:17969: checking whether $CXX understands -c and -o together" >&5
     27526+       echo "$as_me:18114: checking whether $CXX understands -c and -o together" >&5
    2425527527 echo $ECHO_N "checking whether $CXX understands -c and -o together... $ECHO_C" >&6
    2425627528 if test "${cf_cv_prog_CXX_c_o+set}" = set; then
    2425727529   echo $ECHO_N "(cached) $ECHO_C" >&6
    24258 @@ -16971,15 +17982,15 @@
     27530@@ -16971,15 +18127,15 @@
    2425927531 # We do the test twice because some compilers refuse to overwrite an
    2426027532 # existing .o file with -o, though they will create one.
    2426127533 ac_try='$CXX -c conftest.$ac_ext -o conftest2.$ac_objext >&5'
    2426227534-if { (eval echo "$as_me:16974: \"$ac_try\"") >&5
    24263 +if { (eval echo "$as_me:17985: \"$ac_try\"") >&5
     27535+if { (eval echo "$as_me:18130: \"$ac_try\"") >&5
    2426427536   (eval $ac_try) 2>&5
    2426527537   ac_status=$?
    2426627538-  echo "$as_me:16977: \$? = $ac_status" >&5
    24267 +  echo "$as_me:17988: \$? = $ac_status" >&5
     27539+  echo "$as_me:18133: \$? = $ac_status" >&5
    2426827540   (exit $ac_status); } &&
    2426927541-  test -f conftest2.$ac_objext && { (eval echo "$as_me:16979: \"$ac_try\"") >&5
    24270 +  test -f conftest2.$ac_objext && { (eval echo "$as_me:17990: \"$ac_try\"") >&5
     27542+  test -f conftest2.$ac_objext && { (eval echo "$as_me:18135: \"$ac_try\"") >&5
    2427127543   (eval $ac_try) 2>&5
    2427227544   ac_status=$?
    2427327545-  echo "$as_me:16982: \$? = $ac_status" >&5
    24274 +  echo "$as_me:17993: \$? = $ac_status" >&5
     27546+  echo "$as_me:18138: \$? = $ac_status" >&5
    2427527547   (exit $ac_status); };
    2427627548 then
    2427727549   eval cf_cv_prog_CXX_c_o=yes
    24278 @@ -16990,10 +18001,10 @@
     27550@@ -16990,10 +18146,10 @@
    2427927551 
    2428027552 fi
    2428127553 if test $cf_cv_prog_CXX_c_o = yes; then
    2428227554-  echo "$as_me:16993: result: yes" >&5
    24283 +  echo "$as_me:18004: result: yes" >&5
     27555+  echo "$as_me:18149: result: yes" >&5
    2428427556 echo "${ECHO_T}yes" >&6
    2428527557 else
    2428627558-  echo "$as_me:16996: result: no" >&5
    24287 +  echo "$as_me:18007: result: no" >&5
     27559+  echo "$as_me:18152: result: no" >&5
    2428827560 echo "${ECHO_T}no" >&6
    2428927561 fi
    2429027562 
    24291 @@ -17013,12 +18024,12 @@
     27563@@ -17013,12 +18169,12 @@
    2429227564        ;;
    2429327565 esac
    2429427566 if test "$GXX" = yes; then
    2429527567-       echo "$as_me:17016: checking for lib$cf_gpp_libname" >&5
    24296 +       echo "$as_me:18027: checking for lib$cf_gpp_libname" >&5
     27568+       echo "$as_me:18172: checking for lib$cf_gpp_libname" >&5
    2429727569 echo $ECHO_N "checking for lib$cf_gpp_libname... $ECHO_C" >&6
    2429827570        cf_save="$LIBS"
     
    2430027572        cat >conftest.$ac_ext <<_ACEOF
    2430127573-#line 17021 "configure"
    24302 +#line 18032 "configure"
     27574+#line 18177 "configure"
    2430327575 #include "confdefs.h"
    2430427576 
    2430527577 #include <$cf_gpp_libname/builtin.h>
    24306 @@ -17032,16 +18043,16 @@
     27578@@ -17032,16 +18188,16 @@
    2430727579 }
    2430827580 _ACEOF
    2430927581 rm -f conftest.$ac_objext conftest$ac_exeext
    2431027582-if { (eval echo "$as_me:17035: \"$ac_link\"") >&5
    24311 +if { (eval echo "$as_me:18046: \"$ac_link\"") >&5
     27583+if { (eval echo "$as_me:18191: \"$ac_link\"") >&5
    2431227584   (eval $ac_link) 2>&5
    2431327585   ac_status=$?
    2431427586-  echo "$as_me:17038: \$? = $ac_status" >&5
    24315 +  echo "$as_me:18049: \$? = $ac_status" >&5
     27587+  echo "$as_me:18194: \$? = $ac_status" >&5
    2431627588   (exit $ac_status); } &&
    2431727589          { ac_try='test -s conftest$ac_exeext'
    2431827590-  { (eval echo "$as_me:17041: \"$ac_try\"") >&5
    24319 +  { (eval echo "$as_me:18052: \"$ac_try\"") >&5
     27591+  { (eval echo "$as_me:18197: \"$ac_try\"") >&5
    2432027592   (eval $ac_try) 2>&5
    2432127593   ac_status=$?
    2432227594-  echo "$as_me:17044: \$? = $ac_status" >&5
    24323 +  echo "$as_me:18055: \$? = $ac_status" >&5
     27595+  echo "$as_me:18200: \$? = $ac_status" >&5
    2432427596   (exit $ac_status); }; }; then
    2432527597   cf_cxx_library=yes
    2432627598         CXXLIBS="-l$cf_gpp_libname $CXXLIBS"
    24327 @@ -17060,7 +18071,7 @@
     27599@@ -17060,7 +18216,7 @@
    2432827600   echo "$as_me: failed program was:" >&5
    2432927601 cat conftest.$ac_ext >&5
    2433027602 cat >conftest.$ac_ext <<_ACEOF
    2433127603-#line 17063 "configure"
    24332 +#line 18074 "configure"
     27604+#line 18219 "configure"
    2433327605 #include "confdefs.h"
    2433427606 
    2433527607 #include <builtin.h>
    24336 @@ -17074,16 +18085,16 @@
     27608@@ -17074,16 +18230,16 @@
    2433727609 }
    2433827610 _ACEOF
    2433927611 rm -f conftest.$ac_objext conftest$ac_exeext
    2434027612-if { (eval echo "$as_me:17077: \"$ac_link\"") >&5
    24341 +if { (eval echo "$as_me:18088: \"$ac_link\"") >&5
     27613+if { (eval echo "$as_me:18233: \"$ac_link\"") >&5
    2434227614   (eval $ac_link) 2>&5
    2434327615   ac_status=$?
    2434427616-  echo "$as_me:17080: \$? = $ac_status" >&5
    24345 +  echo "$as_me:18091: \$? = $ac_status" >&5
     27617+  echo "$as_me:18236: \$? = $ac_status" >&5
    2434627618   (exit $ac_status); } &&
    2434727619          { ac_try='test -s conftest$ac_exeext'
    2434827620-  { (eval echo "$as_me:17083: \"$ac_try\"") >&5
    24349 +  { (eval echo "$as_me:18094: \"$ac_try\"") >&5
     27621+  { (eval echo "$as_me:18239: \"$ac_try\"") >&5
    2435027622   (eval $ac_try) 2>&5
    2435127623   ac_status=$?
    2435227624-  echo "$as_me:17086: \$? = $ac_status" >&5
    24353 +  echo "$as_me:18097: \$? = $ac_status" >&5
     27625+  echo "$as_me:18242: \$? = $ac_status" >&5
    2435427626   (exit $ac_status); }; }; then
    2435527627   cf_cxx_library=yes
    2435627628         CXXLIBS="-l$cf_gpp_libname $CXXLIBS"
    24357 @@ -17100,7 +18111,7 @@
     27629@@ -17100,7 +18256,7 @@
    2435827630 fi
    2435927631 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    2436027632        LIBS="$cf_save"
    2436127633-       echo "$as_me:17103: result: $cf_cxx_library" >&5
    24362 +       echo "$as_me:18114: result: $cf_cxx_library" >&5
     27634+       echo "$as_me:18259: result: $cf_cxx_library" >&5
    2436327635 echo "${ECHO_T}$cf_cxx_library" >&6
    2436427636 fi
    2436527637 
    24366 @@ -17116,7 +18127,7 @@
     27638@@ -17116,7 +18272,7 @@
    2436727639 ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
    2436827640 ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
    2436927641 ac_main_return=return
    2437027642-echo "$as_me:17119: checking how to run the C++ preprocessor" >&5
    24371 +echo "$as_me:18130: checking how to run the C++ preprocessor" >&5
     27643+echo "$as_me:18275: checking how to run the C++ preprocessor" >&5
    2437227644 echo $ECHO_N "checking how to run the C++ preprocessor... $ECHO_C" >&6
    2437327645 if test -z "$CXXCPP"; then
    2437427646   if test "${ac_cv_prog_CXXCPP+set}" = set; then
    24375 @@ -17133,18 +18144,18 @@
     27647@@ -17133,18 +18289,18 @@
    2437627648   # On the NeXT, cc -E runs the code through the compiler's parser,
    2437727649   # not just through cpp. "Syntax error" is here to catch this case.
    2437827650   cat >conftest.$ac_ext <<_ACEOF
    2437927651-#line 17136 "configure"
    24380 +#line 18147 "configure"
     27652+#line 18292 "configure"
    2438127653 #include "confdefs.h"
    2438227654 #include <assert.h>
     
    2438427656 _ACEOF
    2438527657-if { (eval echo "$as_me:17141: \"$ac_cpp conftest.$ac_ext\"") >&5
    24386 +if { (eval echo "$as_me:18152: \"$ac_cpp conftest.$ac_ext\"") >&5
     27658+if { (eval echo "$as_me:18297: \"$ac_cpp conftest.$ac_ext\"") >&5
    2438727659   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
    2438827660   ac_status=$?
     
    2439127663   cat conftest.err >&5
    2439227664-  echo "$as_me:17147: \$? = $ac_status" >&5
    24393 +  echo "$as_me:18158: \$? = $ac_status" >&5
     27665+  echo "$as_me:18303: \$? = $ac_status" >&5
    2439427666   (exit $ac_status); } >/dev/null; then
    2439527667   if test -s conftest.err; then
    2439627668     ac_cpp_err=$ac_cxx_preproc_warn_flag
    24397 @@ -17167,17 +18178,17 @@
     27669@@ -17167,17 +18323,17 @@
    2439827670   # OK, works on sane cases.  Now check whether non-existent headers
    2439927671   # can be detected and how.
    2440027672   cat >conftest.$ac_ext <<_ACEOF
    2440127673-#line 17170 "configure"
    24402 +#line 18181 "configure"
     27674+#line 18326 "configure"
    2440327675 #include "confdefs.h"
    2440427676 #include <ac_nonexistent.h>
    2440527677 _ACEOF
    2440627678-if { (eval echo "$as_me:17174: \"$ac_cpp conftest.$ac_ext\"") >&5
    24407 +if { (eval echo "$as_me:18185: \"$ac_cpp conftest.$ac_ext\"") >&5
     27679+if { (eval echo "$as_me:18330: \"$ac_cpp conftest.$ac_ext\"") >&5
    2440827680   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
    2440927681   ac_status=$?
     
    2441227684   cat conftest.err >&5
    2441327685-  echo "$as_me:17180: \$? = $ac_status" >&5
    24414 +  echo "$as_me:18191: \$? = $ac_status" >&5
     27686+  echo "$as_me:18336: \$? = $ac_status" >&5
    2441527687   (exit $ac_status); } >/dev/null; then
    2441627688   if test -s conftest.err; then
    2441727689     ac_cpp_err=$ac_cxx_preproc_warn_flag
    24418 @@ -17214,7 +18225,7 @@
     27690@@ -17214,7 +18370,7 @@
    2441927691 else
    2442027692   ac_cv_prog_CXXCPP=$CXXCPP
    2442127693 fi
    2442227694-echo "$as_me:17217: result: $CXXCPP" >&5
    24423 +echo "$as_me:18228: result: $CXXCPP" >&5
     27695+echo "$as_me:18373: result: $CXXCPP" >&5
    2442427696 echo "${ECHO_T}$CXXCPP" >&6
    2442527697 ac_preproc_ok=false
    2442627698 for ac_cxx_preproc_warn_flag in '' yes
    24427 @@ -17224,18 +18235,18 @@
     27699@@ -17224,18 +18380,18 @@
    2442827700   # On the NeXT, cc -E runs the code through the compiler's parser,
    2442927701   # not just through cpp. "Syntax error" is here to catch this case.
    2443027702   cat >conftest.$ac_ext <<_ACEOF
    2443127703-#line 17227 "configure"
    24432 +#line 18238 "configure"
     27704+#line 18383 "configure"
    2443327705 #include "confdefs.h"
    2443427706 #include <assert.h>
     
    2443627708 _ACEOF
    2443727709-if { (eval echo "$as_me:17232: \"$ac_cpp conftest.$ac_ext\"") >&5
    24438 +if { (eval echo "$as_me:18243: \"$ac_cpp conftest.$ac_ext\"") >&5
     27710+if { (eval echo "$as_me:18388: \"$ac_cpp conftest.$ac_ext\"") >&5
    2443927711   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
    2444027712   ac_status=$?
     
    2444327715   cat conftest.err >&5
    2444427716-  echo "$as_me:17238: \$? = $ac_status" >&5
    24445 +  echo "$as_me:18249: \$? = $ac_status" >&5
     27717+  echo "$as_me:18394: \$? = $ac_status" >&5
    2444627718   (exit $ac_status); } >/dev/null; then
    2444727719   if test -s conftest.err; then
    2444827720     ac_cpp_err=$ac_cxx_preproc_warn_flag
    24449 @@ -17258,17 +18269,17 @@
     27721@@ -17258,17 +18414,17 @@
    2445027722   # OK, works on sane cases.  Now check whether non-existent headers
    2445127723   # can be detected and how.
    2445227724   cat >conftest.$ac_ext <<_ACEOF
    2445327725-#line 17261 "configure"
    24454 +#line 18272 "configure"
     27726+#line 18417 "configure"
    2445527727 #include "confdefs.h"
    2445627728 #include <ac_nonexistent.h>
    2445727729 _ACEOF
    2445827730-if { (eval echo "$as_me:17265: \"$ac_cpp conftest.$ac_ext\"") >&5
    24459 +if { (eval echo "$as_me:18276: \"$ac_cpp conftest.$ac_ext\"") >&5
     27731+if { (eval echo "$as_me:18421: \"$ac_cpp conftest.$ac_ext\"") >&5
    2446027732   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
    2446127733   ac_status=$?
     
    2446427736   cat conftest.err >&5
    2446527737-  echo "$as_me:17271: \$? = $ac_status" >&5
    24466 +  echo "$as_me:18282: \$? = $ac_status" >&5
     27738+  echo "$as_me:18427: \$? = $ac_status" >&5
    2446727739   (exit $ac_status); } >/dev/null; then
    2446827740   if test -s conftest.err; then
    2446927741     ac_cpp_err=$ac_cxx_preproc_warn_flag
    24470 @@ -17296,7 +18307,7 @@
     27742@@ -17296,7 +18452,7 @@
    2447127743 if $ac_preproc_ok; then
    2447227744   :
    2447327745 else
    2447427746-  { { echo "$as_me:17299: error: C++ preprocessor \"$CXXCPP\" fails sanity check" >&5
    24475 +  { { echo "$as_me:18310: error: C++ preprocessor \"$CXXCPP\" fails sanity check" >&5
     27747+  { { echo "$as_me:18455: error: C++ preprocessor \"$CXXCPP\" fails sanity check" >&5
    2447627748 echo "$as_me: error: C++ preprocessor \"$CXXCPP\" fails sanity check" >&2;}
    2447727749    { (exit 1); exit 1; }; }
    2447827750 fi
    24479 @@ -17308,26 +18319,74 @@
     27751@@ -17308,26 +18464,74 @@
    2448027752 ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
    2448127753 ac_main_return=return
     
    2448527757+do
    2448627758+as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
    24487 +echo "$as_me:18325: checking for $ac_header" >&5
     27759+echo "$as_me:18470: checking for $ac_header" >&5
    2448827760+echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
    2448927761+if eval "test \"\${$as_ac_Header+set}\" = set"; then
     
    2449127763+else
    2449227764+  cat >conftest.$ac_ext <<_ACEOF
    24493 +#line 18331 "configure"
     27765+#line 18476 "configure"
    2449427766+#include "confdefs.h"
    2449527767+#include <$ac_header>
    2449627768+_ACEOF
    24497 +if { (eval echo "$as_me:18335: \"$ac_cpp conftest.$ac_ext\"") >&5
     27769+if { (eval echo "$as_me:18480: \"$ac_cpp conftest.$ac_ext\"") >&5
    2449827770+  (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
    2449927771+  ac_status=$?
     
    2450127773+  rm -f conftest.er1
    2450227774+  cat conftest.err >&5
    24503 +  echo "$as_me:18341: \$? = $ac_status" >&5
     27775+  echo "$as_me:18486: \$? = $ac_status" >&5
    2450427776+  (exit $ac_status); } >/dev/null; then
    2450527777+  if test -s conftest.err; then
     
    2452027792+rm -f conftest.err conftest.$ac_ext
    2452127793+fi
    24522 +echo "$as_me:18360: result: `eval echo '${'$as_ac_Header'}'`" >&5
     27794+echo "$as_me:18505: result: `eval echo '${'$as_ac_Header'}'`" >&5
    2452327795+echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
    2452427796+if test `eval echo '${'$as_ac_Header'}'` = yes; then
     
    2453427806 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
    2453527807-echo "$as_me:17314: checking for $ac_header" >&5
    24536 +echo "$as_me:18373: checking for $ac_header" >&5
     27808+echo "$as_me:18518: checking for $ac_header" >&5
    2453727809 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
    2453827810 if eval "test \"\${$as_ac_Header+set}\" = set"; then
     
    2454127813   cat >conftest.$ac_ext <<_ACEOF
    2454227814-#line 17320 "configure"
    24543 +#line 18379 "configure"
     27815+#line 18524 "configure"
    2454427816 #include "confdefs.h"
    2454527817 #include <$ac_header>
    2454627818 _ACEOF
    2454727819-if { (eval echo "$as_me:17324: \"$ac_cpp conftest.$ac_ext\"") >&5
    24548 +if { (eval echo "$as_me:18383: \"$ac_cpp conftest.$ac_ext\"") >&5
     27820+if { (eval echo "$as_me:18528: \"$ac_cpp conftest.$ac_ext\"") >&5
    2454927821   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
    2455027822   ac_status=$?
     
    2455327825   cat conftest.err >&5
    2455427826-  echo "$as_me:17330: \$? = $ac_status" >&5
    24555 +  echo "$as_me:18389: \$? = $ac_status" >&5
     27827+  echo "$as_me:18534: \$? = $ac_status" >&5
    2455627828   (exit $ac_status); } >/dev/null; then
    2455727829   if test -s conftest.err; then
    2455827830     ac_cpp_err=$ac_cxx_preproc_warn_flag
    24559 @@ -17346,7 +18405,7 @@
     27831@@ -17346,7 +18550,7 @@
    2456027832 fi
    2456127833 rm -f conftest.err conftest.$ac_ext
    2456227834 fi
    2456327835-echo "$as_me:17349: result: `eval echo '${'$as_ac_Header'}'`" >&5
    24564 +echo "$as_me:18408: result: `eval echo '${'$as_ac_Header'}'`" >&5
     27836+echo "$as_me:18553: result: `eval echo '${'$as_ac_Header'}'`" >&5
    2456527837 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
    2456627838 if test `eval echo '${'$as_ac_Header'}'` = yes; then
    2456727839   cat >>confdefs.h <<EOF
    24568 @@ -17356,11 +18415,11 @@
     27840@@ -17356,11 +18560,11 @@
    2456927841 fi
    2457027842 done
     
    2457327845-        echo "$as_me:17360: checking if iostream uses std-namespace" >&5
    2457427846+if test x"$ac_cv_header_iostream" = xyes ; then
    24575 +       echo "$as_me:18419: checking if iostream uses std-namespace" >&5
     27847+       echo "$as_me:18564: checking if iostream uses std-namespace" >&5
    2457627848 echo $ECHO_N "checking if iostream uses std-namespace... $ECHO_C" >&6
    2457727849-        cat >conftest.$ac_ext <<_ACEOF
    2457827850-#line 17363 "configure"
    2457927851+       cat >conftest.$ac_ext <<_ACEOF
    24580 +#line 18422 "configure"
     27852+#line 18567 "configure"
    2458127853 #include "confdefs.h"
    2458227854 
    2458327855 #include <iostream>
    24584 @@ -17377,16 +18436,16 @@
     27856@@ -17377,16 +18581,16 @@
    2458527857 }
    2458627858 _ACEOF
    2458727859 rm -f conftest.$ac_objext
    2458827860-if { (eval echo "$as_me:17380: \"$ac_compile\"") >&5
    24589 +if { (eval echo "$as_me:18439: \"$ac_compile\"") >&5
     27861+if { (eval echo "$as_me:18584: \"$ac_compile\"") >&5
    2459027862   (eval $ac_compile) 2>&5
    2459127863   ac_status=$?
    2459227864-  echo "$as_me:17383: \$? = $ac_status" >&5
    24593 +  echo "$as_me:18442: \$? = $ac_status" >&5
     27865+  echo "$as_me:18587: \$? = $ac_status" >&5
    2459427866   (exit $ac_status); } &&
    2459527867          { ac_try='test -s conftest.$ac_objext'
    2459627868-  { (eval echo "$as_me:17386: \"$ac_try\"") >&5
    24597 +  { (eval echo "$as_me:18445: \"$ac_try\"") >&5
     27869+  { (eval echo "$as_me:18590: \"$ac_try\"") >&5
    2459827870   (eval $ac_try) 2>&5
    2459927871   ac_status=$?
    2460027872-  echo "$as_me:17389: \$? = $ac_status" >&5
    24601 +  echo "$as_me:18448: \$? = $ac_status" >&5
     27873+  echo "$as_me:18593: \$? = $ac_status" >&5
    2460227874   (exit $ac_status); }; }; then
    2460327875   cf_iostream_namespace=yes
    2460427876 else
    24605 @@ -17395,17 +18454,17 @@
     27877@@ -17395,17 +18599,17 @@
    2460627878 cf_iostream_namespace=no
    2460727879 fi
    2460827880 rm -f conftest.$ac_objext conftest.$ac_ext
    2460927881-        echo "$as_me:17398: result: $cf_iostream_namespace" >&5
    24610 +       echo "$as_me:18457: result: $cf_iostream_namespace" >&5
     27882+       echo "$as_me:18602: result: $cf_iostream_namespace" >&5
    2461127883 echo "${ECHO_T}$cf_iostream_namespace" >&6
    2461227884-        if test "$cf_iostream_namespace" = yes ; then
     
    2462327895 
    2462427896-echo "$as_me:17408: checking if we should include stdbool.h" >&5
    24625 +echo "$as_me:18467: checking if we should include stdbool.h" >&5
     27897+echo "$as_me:18612: checking if we should include stdbool.h" >&5
    2462627898 echo $ECHO_N "checking if we should include stdbool.h... $ECHO_C" >&6
    2462727899 
    2462827900 if test "${cf_cv_header_stdbool_h+set}" = set; then
    24629 @@ -17413,7 +18472,7 @@
     27901@@ -17413,7 +18617,7 @@
    2463027902 else
    2463127903 
    2463227904        cat >conftest.$ac_ext <<_ACEOF
    2463327905-#line 17416 "configure"
    24634 +#line 18475 "configure"
     27906+#line 18620 "configure"
    2463527907 #include "confdefs.h"
    2463627908 
    2463727909 int
    24638 @@ -17425,23 +18484,23 @@
     27910@@ -17425,23 +18629,23 @@
    2463927911 }
    2464027912 _ACEOF
    2464127913 rm -f conftest.$ac_objext
    2464227914-if { (eval echo "$as_me:17428: \"$ac_compile\"") >&5
    24643 +if { (eval echo "$as_me:18487: \"$ac_compile\"") >&5
     27915+if { (eval echo "$as_me:18632: \"$ac_compile\"") >&5
    2464427916   (eval $ac_compile) 2>&5
    2464527917   ac_status=$?
    2464627918-  echo "$as_me:17431: \$? = $ac_status" >&5
    24647 +  echo "$as_me:18490: \$? = $ac_status" >&5
     27919+  echo "$as_me:18635: \$? = $ac_status" >&5
    2464827920   (exit $ac_status); } &&
    2464927921          { ac_try='test -s conftest.$ac_objext'
    2465027922-  { (eval echo "$as_me:17434: \"$ac_try\"") >&5
    24651 +  { (eval echo "$as_me:18493: \"$ac_try\"") >&5
     27923+  { (eval echo "$as_me:18638: \"$ac_try\"") >&5
    2465227924   (eval $ac_try) 2>&5
    2465327925   ac_status=$?
    2465427926-  echo "$as_me:17437: \$? = $ac_status" >&5
    24655 +  echo "$as_me:18496: \$? = $ac_status" >&5
     27927+  echo "$as_me:18641: \$? = $ac_status" >&5
    2465627928   (exit $ac_status); }; }; then
    2465727929   cf_cv_header_stdbool_h=0
     
    2466127933 cat >conftest.$ac_ext <<_ACEOF
    2466227934-#line 17444 "configure"
    24663 +#line 18503 "configure"
     27935+#line 18648 "configure"
    2466427936 #include "confdefs.h"
    2466527937 
    2466627938 #ifndef __BEOS__
    24667 @@ -17457,16 +18516,16 @@
     27939@@ -17457,16 +18661,16 @@
    2466827940 }
    2466927941 _ACEOF
    2467027942 rm -f conftest.$ac_objext
    2467127943-if { (eval echo "$as_me:17460: \"$ac_compile\"") >&5
    24672 +if { (eval echo "$as_me:18519: \"$ac_compile\"") >&5
     27944+if { (eval echo "$as_me:18664: \"$ac_compile\"") >&5
    2467327945   (eval $ac_compile) 2>&5
    2467427946   ac_status=$?
    2467527947-  echo "$as_me:17463: \$? = $ac_status" >&5
    24676 +  echo "$as_me:18522: \$? = $ac_status" >&5
     27948+  echo "$as_me:18667: \$? = $ac_status" >&5
    2467727949   (exit $ac_status); } &&
    2467827950          { ac_try='test -s conftest.$ac_objext'
    2467927951-  { (eval echo "$as_me:17466: \"$ac_try\"") >&5
    24680 +  { (eval echo "$as_me:18525: \"$ac_try\"") >&5
     27952+  { (eval echo "$as_me:18670: \"$ac_try\"") >&5
    2468127953   (eval $ac_try) 2>&5
    2468227954   ac_status=$?
    2468327955-  echo "$as_me:17469: \$? = $ac_status" >&5
    24684 +  echo "$as_me:18528: \$? = $ac_status" >&5
     27956+  echo "$as_me:18673: \$? = $ac_status" >&5
    2468527957   (exit $ac_status); }; }; then
    2468627958   cf_cv_header_stdbool_h=1
    2468727959 else
    24688 @@ -17480,13 +18539,13 @@
     27960@@ -17480,13 +18684,13 @@
    2468927961 fi
    2469027962 
    2469127963 if test "$cf_cv_header_stdbool_h" = 1
    2469227964-then   echo "$as_me:17483: result: yes" >&5
    24693 +then   echo "$as_me:18542: result: yes" >&5
     27965+then   echo "$as_me:18687: result: yes" >&5
    2469427966 echo "${ECHO_T}yes" >&6
    2469527967-else   echo "$as_me:17485: result: no" >&5
    24696 +else   echo "$as_me:18544: result: no" >&5
     27968+else   echo "$as_me:18689: result: no" >&5
    2469727969 echo "${ECHO_T}no" >&6
    2469827970 fi
    2469927971 
    2470027972-echo "$as_me:17489: checking for builtin bool type" >&5
    24701 +echo "$as_me:18548: checking for builtin bool type" >&5
     27973+echo "$as_me:18693: checking for builtin bool type" >&5
    2470227974 echo $ECHO_N "checking for builtin bool type... $ECHO_C" >&6
    2470327975 
    2470427976 if test "${cf_cv_builtin_bool+set}" = set; then
    24705 @@ -17494,7 +18553,7 @@
     27977@@ -17494,7 +18698,7 @@
    2470627978 else
    2470727979 
    2470827980        cat >conftest.$ac_ext <<_ACEOF
    2470927981-#line 17497 "configure"
    24710 +#line 18556 "configure"
     27982+#line 18701 "configure"
    2471127983 #include "confdefs.h"
    2471227984 
    2471327985 #include <stdio.h>
    24714 @@ -17509,16 +18568,16 @@
     27986@@ -17509,16 +18713,16 @@
    2471527987 }
    2471627988 _ACEOF
    2471727989 rm -f conftest.$ac_objext
    2471827990-if { (eval echo "$as_me:17512: \"$ac_compile\"") >&5
    24719 +if { (eval echo "$as_me:18571: \"$ac_compile\"") >&5
     27991+if { (eval echo "$as_me:18716: \"$ac_compile\"") >&5
    2472027992   (eval $ac_compile) 2>&5
    2472127993   ac_status=$?
    2472227994-  echo "$as_me:17515: \$? = $ac_status" >&5
    24723 +  echo "$as_me:18574: \$? = $ac_status" >&5
     27995+  echo "$as_me:18719: \$? = $ac_status" >&5
    2472427996   (exit $ac_status); } &&
    2472527997          { ac_try='test -s conftest.$ac_objext'
    2472627998-  { (eval echo "$as_me:17518: \"$ac_try\"") >&5
    24727 +  { (eval echo "$as_me:18577: \"$ac_try\"") >&5
     27999+  { (eval echo "$as_me:18722: \"$ac_try\"") >&5
    2472828000   (eval $ac_try) 2>&5
    2472928001   ac_status=$?
    2473028002-  echo "$as_me:17521: \$? = $ac_status" >&5
    24731 +  echo "$as_me:18580: \$? = $ac_status" >&5
     28003+  echo "$as_me:18725: \$? = $ac_status" >&5
    2473228004   (exit $ac_status); }; }; then
    2473328005   cf_cv_builtin_bool=1
    2473428006 else
    24735 @@ -17531,13 +18590,13 @@
     28007@@ -17531,13 +18735,13 @@
    2473628008 fi
    2473728009 
    2473828010 if test "$cf_cv_builtin_bool" = 1
    2473928011-then   echo "$as_me:17534: result: yes" >&5
    24740 +then   echo "$as_me:18593: result: yes" >&5
     28012+then   echo "$as_me:18738: result: yes" >&5
    2474128013 echo "${ECHO_T}yes" >&6
    2474228014-else   echo "$as_me:17536: result: no" >&5
    24743 +else   echo "$as_me:18595: result: no" >&5
     28015+else   echo "$as_me:18740: result: no" >&5
    2474428016 echo "${ECHO_T}no" >&6
    2474528017 fi
    2474628018 
    2474728019-echo "$as_me:17540: checking for size of bool" >&5
    24748 +echo "$as_me:18599: checking for size of bool" >&5
     28020+echo "$as_me:18744: checking for size of bool" >&5
    2474928021 echo $ECHO_N "checking for size of bool... $ECHO_C" >&6
    2475028022 if test "${cf_cv_type_of_bool+set}" = set; then
    2475128023   echo $ECHO_N "(cached) $ECHO_C" >&6
    24752 @@ -17548,7 +18607,7 @@
     28024@@ -17548,7 +18752,7 @@
    2475328025   cf_cv_type_of_bool=unknown
    2475428026 else
    2475528027   cat >conftest.$ac_ext <<_ACEOF
    2475628028-#line 17551 "configure"
    24757 +#line 18610 "configure"
     28029+#line 18755 "configure"
    2475828030 #include "confdefs.h"
    2475928031 
    2476028032 #include <stdlib.h>
    24761 @@ -17590,15 +18649,15 @@
     28033@@ -17590,15 +18794,15 @@
    2476228034 
    2476328035 _ACEOF
    2476428036 rm -f conftest$ac_exeext
    2476528037-if { (eval echo "$as_me:17593: \"$ac_link\"") >&5
    24766 +if { (eval echo "$as_me:18652: \"$ac_link\"") >&5
     28038+if { (eval echo "$as_me:18797: \"$ac_link\"") >&5
    2476728039   (eval $ac_link) 2>&5
    2476828040   ac_status=$?
    2476928041-  echo "$as_me:17596: \$? = $ac_status" >&5
    24770 +  echo "$as_me:18655: \$? = $ac_status" >&5
     28042+  echo "$as_me:18800: \$? = $ac_status" >&5
    2477128043   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
    2477228044-  { (eval echo "$as_me:17598: \"$ac_try\"") >&5
    24773 +  { (eval echo "$as_me:18657: \"$ac_try\"") >&5
     28045+  { (eval echo "$as_me:18802: \"$ac_try\"") >&5
    2477428046   (eval $ac_try) 2>&5
    2477528047   ac_status=$?
    2477628048-  echo "$as_me:17601: \$? = $ac_status" >&5
    24777 +  echo "$as_me:18660: \$? = $ac_status" >&5
     28049+  echo "$as_me:18805: \$? = $ac_status" >&5
    2477828050   (exit $ac_status); }; }; then
    2477928051   cf_cv_type_of_bool=`cat cf_test.out`
    2478028052                 if test -z "$cf_cv_type_of_bool"; then
    24781 @@ -17616,30 +18675,36 @@
     28053@@ -17616,30 +18820,36 @@
    2478228054 fi
    2478328055 
    2478428056        rm -f cf_test.out
    2478528057-echo "$as_me:17619: result: $cf_cv_type_of_bool" >&5
    24786 +echo "$as_me:18678: result: $cf_cv_type_of_bool" >&5
     28058+echo "$as_me:18823: result: $cf_cv_type_of_bool" >&5
    2478728059 echo "${ECHO_T}$cf_cv_type_of_bool" >&6
    2478828060 if test "$cf_cv_type_of_bool" = unknown ; then
     
    2479128063        esac
    2479228064-       { echo "$as_me:17625: WARNING: Assuming $NCURSES_BOOL for type of bool" >&5
    24793 +       { echo "$as_me:18684: WARNING: Assuming $NCURSES_BOOL for type of bool" >&5
     28065+       { echo "$as_me:18829: WARNING: Assuming $NCURSES_BOOL for type of bool" >&5
    2479428066 echo "$as_me: WARNING: Assuming $NCURSES_BOOL for type of bool" >&2;}
    2479528067        cf_cv_type_of_bool=$NCURSES_BOOL
     
    2479728069 
    2479828070-echo "$as_me:17630: checking for special defines needed for etip.h" >&5
    24799 +echo "$as_me:18689: checking for special defines needed for etip.h" >&5
     28071+echo "$as_me:18834: checking for special defines needed for etip.h" >&5
    2480028072 echo $ECHO_N "checking for special defines needed for etip.h... $ECHO_C" >&6
    2480128073 cf_save_CXXFLAGS="$CXXFLAGS"
     
    2481728089 cat >conftest.$ac_ext <<_ACEOF
    2481828090-#line 17642 "configure"
    24819 +#line 18707 "configure"
     28091+#line 18852 "configure"
    2482028092 #include "confdefs.h"
    2482128093 
    2482228094 #include <etip.h.in>
    24823 @@ -17653,16 +18718,16 @@
     28095@@ -17653,16 +18863,16 @@
    2482428096 }
    2482528097 _ACEOF
    2482628098 rm -f conftest.$ac_objext
    2482728099-if { (eval echo "$as_me:17656: \"$ac_compile\"") >&5
    24828 +if { (eval echo "$as_me:18721: \"$ac_compile\"") >&5
     28100+if { (eval echo "$as_me:18866: \"$ac_compile\"") >&5
    2482928101   (eval $ac_compile) 2>&5
    2483028102   ac_status=$?
    2483128103-  echo "$as_me:17659: \$? = $ac_status" >&5
    24832 +  echo "$as_me:18724: \$? = $ac_status" >&5
     28104+  echo "$as_me:18869: \$? = $ac_status" >&5
    2483328105   (exit $ac_status); } &&
    2483428106          { ac_try='test -s conftest.$ac_objext'
    2483528107-  { (eval echo "$as_me:17662: \"$ac_try\"") >&5
    24836 +  { (eval echo "$as_me:18727: \"$ac_try\"") >&5
     28108+  { (eval echo "$as_me:18872: \"$ac_try\"") >&5
    2483728109   (eval $ac_try) 2>&5
    2483828110   ac_status=$?
    2483928111-  echo "$as_me:17665: \$? = $ac_status" >&5
    24840 +  echo "$as_me:18730: \$? = $ac_status" >&5
     28112+  echo "$as_me:18875: \$? = $ac_status" >&5
    2484128113   (exit $ac_status); }; }; then
    2484228114 
    2484328115        test -n "$cf_math" && cat >>confdefs.h <<EOF
    24844 @@ -17683,12 +18748,12 @@
     28116@@ -17674,7 +18884,7 @@
     28117 EOF
     28118 
     28119        cf_result="$cf_math $cf_excp"
     28120-       break
     28121+       break 2
     28122 
     28123 else
     28124   echo "$as_me: failed program was:" >&5
     28125@@ -17683,12 +18893,12 @@
    2484528126 rm -f conftest.$ac_objext conftest.$ac_ext
    2484628127 done
    2484728128 done
    2484828129-echo "$as_me:17686: result: $cf_result" >&5
    24849 +echo "$as_me:18751: result: $cf_result" >&5
     28130+echo "$as_me:18896: result: $cf_result" >&5
    2485028131 echo "${ECHO_T}$cf_result" >&6
    2485128132 CXXFLAGS="$cf_save_CXXFLAGS"
     
    2485328134 if test -n "$CXX"; then
    2485428135-echo "$as_me:17691: checking if $CXX accepts parameter initialization" >&5
    24855 +echo "$as_me:18756: checking if $CXX accepts parameter initialization" >&5
     28136+echo "$as_me:18901: checking if $CXX accepts parameter initialization" >&5
    2485628137 echo $ECHO_N "checking if $CXX accepts parameter initialization... $ECHO_C" >&6
    2485728138 if test "${cf_cv_cpp_param_init+set}" = set; then
    2485828139   echo $ECHO_N "(cached) $ECHO_C" >&6
    24859 @@ -17705,7 +18770,7 @@
     28140@@ -17705,7 +18915,7 @@
    2486028141   cf_cv_cpp_param_init=unknown
    2486128142 else
    2486228143   cat >conftest.$ac_ext <<_ACEOF
    2486328144-#line 17708 "configure"
    24864 +#line 18773 "configure"
     28145+#line 18918 "configure"
    2486528146 #include "confdefs.h"
    2486628147 
    2486728148 class TEST {
    24868 @@ -17720,19 +18785,19 @@
     28149@@ -17720,19 +18930,19 @@
    2486928150 {
    2487028151        value = x;
     
    2487628157 rm -f conftest$ac_exeext
    2487728158-if { (eval echo "$as_me:17727: \"$ac_link\"") >&5
    24878 +if { (eval echo "$as_me:18792: \"$ac_link\"") >&5
     28159+if { (eval echo "$as_me:18937: \"$ac_link\"") >&5
    2487928160   (eval $ac_link) 2>&5
    2488028161   ac_status=$?
    2488128162-  echo "$as_me:17730: \$? = $ac_status" >&5
    24882 +  echo "$as_me:18795: \$? = $ac_status" >&5
     28163+  echo "$as_me:18940: \$? = $ac_status" >&5
    2488328164   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
    2488428165-  { (eval echo "$as_me:17732: \"$ac_try\"") >&5
    24885 +  { (eval echo "$as_me:18797: \"$ac_try\"") >&5
     28166+  { (eval echo "$as_me:18942: \"$ac_try\"") >&5
    2488628167   (eval $ac_try) 2>&5
    2488728168   ac_status=$?
    2488828169-  echo "$as_me:17735: \$? = $ac_status" >&5
    24889 +  echo "$as_me:18800: \$? = $ac_status" >&5
     28170+  echo "$as_me:18945: \$? = $ac_status" >&5
    2489028171   (exit $ac_status); }; }; then
    2489128172   cf_cv_cpp_param_init=yes
    2489228173 else
    24893 @@ -17751,7 +18816,7 @@
     28174@@ -17751,7 +18961,7 @@
    2489428175 ac_main_return=return
    2489528176 
    2489628177 fi
    2489728178-echo "$as_me:17754: result: $cf_cv_cpp_param_init" >&5
    24898 +echo "$as_me:18819: result: $cf_cv_cpp_param_init" >&5
     28179+echo "$as_me:18964: result: $cf_cv_cpp_param_init" >&5
    2489928180 echo "${ECHO_T}$cf_cv_cpp_param_init" >&6
    2490028181 fi
    2490128182 test "$cf_cv_cpp_param_init" = yes && cat >>confdefs.h <<\EOF
    24902 @@ -17760,7 +18825,7 @@
     28183@@ -17760,7 +18970,7 @@
    2490328184 
    2490428185 if test -n "$CXX"; then
    2490528186 
    2490628187-echo "$as_me:17763: checking if $CXX accepts static_cast" >&5
    24907 +echo "$as_me:18828: checking if $CXX accepts static_cast" >&5
     28188+echo "$as_me:18973: checking if $CXX accepts static_cast" >&5
    2490828189 echo $ECHO_N "checking if $CXX accepts static_cast... $ECHO_C" >&6
    2490928190 if test "${cf_cv_cpp_static_cast+set}" = set; then
    2491028191   echo $ECHO_N "(cached) $ECHO_C" >&6
    24911 @@ -17774,7 +18839,7 @@
     28192@@ -17774,7 +18984,7 @@
    2491228193 ac_main_return=return
    2491328194 
    2491428195        cat >conftest.$ac_ext <<_ACEOF
    2491528196-#line 17777 "configure"
    24916 +#line 18842 "configure"
     28197+#line 18987 "configure"
    2491728198 #include "confdefs.h"
    2491828199 
    2491928200 class NCursesPanel
    24920 @@ -17818,16 +18883,16 @@
     28201@@ -17818,16 +19028,16 @@
    2492128202 }
    2492228203 _ACEOF
    2492328204 rm -f conftest.$ac_objext
    2492428205-if { (eval echo "$as_me:17821: \"$ac_compile\"") >&5
    24925 +if { (eval echo "$as_me:18886: \"$ac_compile\"") >&5
     28206+if { (eval echo "$as_me:19031: \"$ac_compile\"") >&5
    2492628207   (eval $ac_compile) 2>&5
    2492728208   ac_status=$?
    2492828209-  echo "$as_me:17824: \$? = $ac_status" >&5
    24929 +  echo "$as_me:18889: \$? = $ac_status" >&5
     28210+  echo "$as_me:19034: \$? = $ac_status" >&5
    2493028211   (exit $ac_status); } &&
    2493128212          { ac_try='test -s conftest.$ac_objext'
    2493228213-  { (eval echo "$as_me:17827: \"$ac_try\"") >&5
    24933 +  { (eval echo "$as_me:18892: \"$ac_try\"") >&5
     28214+  { (eval echo "$as_me:19037: \"$ac_try\"") >&5
    2493428215   (eval $ac_try) 2>&5
    2493528216   ac_status=$?
    2493628217-  echo "$as_me:17830: \$? = $ac_status" >&5
    24937 +  echo "$as_me:18895: \$? = $ac_status" >&5
     28218+  echo "$as_me:19040: \$? = $ac_status" >&5
    2493828219   (exit $ac_status); }; }; then
    2493928220   cf_cv_cpp_static_cast=yes
    2494028221 else
    24941 @@ -17845,7 +18910,7 @@
     28222@@ -17845,7 +19055,7 @@
    2494228223 ac_main_return=return
    2494328224 
    2494428225 fi
    2494528226-echo "$as_me:17848: result: $cf_cv_cpp_static_cast" >&5
    24946 +echo "$as_me:18913: result: $cf_cv_cpp_static_cast" >&5
     28227+echo "$as_me:19058: result: $cf_cv_cpp_static_cast" >&5
    2494728228 echo "${ECHO_T}$cf_cv_cpp_static_cast" >&6
    2494828229 
    2494928230 fi
    24950 @@ -17893,7 +18958,7 @@
     28231@@ -17893,7 +19103,7 @@
    2495128232        else
    2495228233                if test "$cf_cv_header_stdbool_h" = 1 ; then
    2495328234 
    2495428235-echo "$as_me:17896: checking for size of bool" >&5
    24955 +echo "$as_me:18961: checking for size of bool" >&5
     28236+echo "$as_me:19106: checking for size of bool" >&5
    2495628237 echo $ECHO_N "checking for size of bool... $ECHO_C" >&6
    2495728238 if test "${cf_cv_type_of_bool+set}" = set; then
    2495828239   echo $ECHO_N "(cached) $ECHO_C" >&6
    24959 @@ -17904,7 +18969,7 @@
     28240@@ -17904,7 +19114,7 @@
    2496028241   cf_cv_type_of_bool=unknown
    2496128242 else
    2496228243   cat >conftest.$ac_ext <<_ACEOF
    2496328244-#line 17907 "configure"
    24964 +#line 18972 "configure"
     28245+#line 19117 "configure"
    2496528246 #include "confdefs.h"
    2496628247 
    2496728248 #include <stdlib.h>
    24968 @@ -17946,15 +19011,15 @@
     28249@@ -17946,15 +19156,15 @@
    2496928250 
    2497028251 _ACEOF
    2497128252 rm -f conftest$ac_exeext
    2497228253-if { (eval echo "$as_me:17949: \"$ac_link\"") >&5
    24973 +if { (eval echo "$as_me:19014: \"$ac_link\"") >&5
     28254+if { (eval echo "$as_me:19159: \"$ac_link\"") >&5
    2497428255   (eval $ac_link) 2>&5
    2497528256   ac_status=$?
    2497628257-  echo "$as_me:17952: \$? = $ac_status" >&5
    24977 +  echo "$as_me:19017: \$? = $ac_status" >&5
     28258+  echo "$as_me:19162: \$? = $ac_status" >&5
    2497828259   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
    2497928260-  { (eval echo "$as_me:17954: \"$ac_try\"") >&5
    24980 +  { (eval echo "$as_me:19019: \"$ac_try\"") >&5
     28261+  { (eval echo "$as_me:19164: \"$ac_try\"") >&5
    2498128262   (eval $ac_try) 2>&5
    2498228263   ac_status=$?
    2498328264-  echo "$as_me:17957: \$? = $ac_status" >&5
    24984 +  echo "$as_me:19022: \$? = $ac_status" >&5
     28265+  echo "$as_me:19167: \$? = $ac_status" >&5
    2498528266   (exit $ac_status); }; }; then
    2498628267   cf_cv_type_of_bool=`cat cf_test.out`
    2498728268                 if test -z "$cf_cv_type_of_bool"; then
    24988 @@ -17972,25 +19037,25 @@
     28269@@ -17972,25 +19182,25 @@
    2498928270 fi
    2499028271 
    2499128272        rm -f cf_test.out
    2499228273-echo "$as_me:17975: result: $cf_cv_type_of_bool" >&5
    24993 +echo "$as_me:19040: result: $cf_cv_type_of_bool" >&5
     28274+echo "$as_me:19185: result: $cf_cv_type_of_bool" >&5
    2499428275 echo "${ECHO_T}$cf_cv_type_of_bool" >&6
    2499528276 if test "$cf_cv_type_of_bool" = unknown ; then
     
    2499828279        esac
    2499928280-       { echo "$as_me:17981: WARNING: Assuming $NCURSES_BOOL for type of bool" >&5
    25000 +       { echo "$as_me:19046: WARNING: Assuming $NCURSES_BOOL for type of bool" >&5
     28281+       { echo "$as_me:19191: WARNING: Assuming $NCURSES_BOOL for type of bool" >&5
    2500128282 echo "$as_me: WARNING: Assuming $NCURSES_BOOL for type of bool" >&2;}
    2500228283        cf_cv_type_of_bool=$NCURSES_BOOL
     
    2500528286                else
    2500628287-                       echo "$as_me:17987: checking for fallback type of bool" >&5
    25007 +                       echo "$as_me:19052: checking for fallback type of bool" >&5
     28288+                       echo "$as_me:19197: checking for fallback type of bool" >&5
    2500828289 echo $ECHO_N "checking for fallback type of bool... $ECHO_C" >&6
    2500928290                        case "$host_cpu" in #(vi
     
    2501228293                        esac
    2501328294-                       echo "$as_me:17993: result: $cf_cv_type_of_bool" >&5
    25014 +                       echo "$as_me:19058: result: $cf_cv_type_of_bool" >&5
     28295+                       echo "$as_me:19203: result: $cf_cv_type_of_bool" >&5
    2501528296 echo "${ECHO_T}$cf_cv_type_of_bool" >&6
    2501628297                fi
    2501728298        fi
    25018 @@ -18019,7 +19084,7 @@
     28299@@ -18019,7 +19229,7 @@
    2501928300 
    2502028301        if test "$cf_with_ada" != "no" ; then
    2502128302                if test "$with_libtool" != "no"; then
    2502228303-                       { echo "$as_me:18022: WARNING: libtool does not support Ada - disabling feature" >&5
    25023 +                       { echo "$as_me:19087: WARNING: libtool does not support Ada - disabling feature" >&5
     28304+                       { echo "$as_me:19232: WARNING: libtool does not support Ada - disabling feature" >&5
    2502428305 echo "$as_me: WARNING: libtool does not support Ada - disabling feature" >&2;}
    2502528306                        cf_with_ada=no
    2502628307                fi
    25027 @@ -18030,7 +19095,7 @@
     28308@@ -18030,7 +19240,7 @@
    2502828309 cf_ada_make=gnatmake
    2502928310 # Extract the first word of "$cf_ada_make", so it can be a program name with args.
    2503028311 set dummy $cf_ada_make; ac_word=$2
    2503128312-echo "$as_me:18033: checking for $ac_word" >&5
    25032 +echo "$as_me:19098: checking for $ac_word" >&5
     28313+echo "$as_me:19243: checking for $ac_word" >&5
    2503328314 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    2503428315 if test "${ac_cv_prog_gnat_exists+set}" = set; then
    2503528316   echo $ECHO_N "(cached) $ECHO_C" >&6
    25036 @@ -18045,7 +19110,7 @@
     28317@@ -18045,7 +19255,7 @@
    2503728318   test -z "$ac_dir" && ac_dir=.
    2503828319   $as_executable_p "$ac_dir/$ac_word" || continue
    2503928320 ac_cv_prog_gnat_exists="yes"
    2504028321-echo "$as_me:18048: found $ac_dir/$ac_word" >&5
    25041 +echo "$as_me:19113: found $ac_dir/$ac_word" >&5
     28322+echo "$as_me:19258: found $ac_dir/$ac_word" >&5
    2504228323 break
    2504328324 done
    2504428325 
    25045 @@ -18054,31 +19119,32 @@
     28326@@ -18054,31 +19264,32 @@
    2504628327 fi
    2504728328 gnat_exists=$ac_cv_prog_gnat_exists
    2504828329 if test -n "$gnat_exists"; then
    2504928330-  echo "$as_me:18057: result: $gnat_exists" >&5
    25050 +  echo "$as_me:19122: result: $gnat_exists" >&5
     28331+  echo "$as_me:19267: result: $gnat_exists" >&5
    2505128332 echo "${ECHO_T}$gnat_exists" >&6
    2505228333 else
    2505328334-  echo "$as_me:18060: result: no" >&5
    25054 +  echo "$as_me:19125: result: no" >&5
     28335+  echo "$as_me:19270: result: no" >&5
    2505528336 echo "${ECHO_T}no" >&6
    2505628337 fi
     
    2506228343 
    2506328344-echo "$as_me:18068: checking for gnat version" >&5
    25064 +echo "$as_me:19134: checking for gnat version" >&5
     28345+echo "$as_me:19279: checking for gnat version" >&5
    2506528346 echo $ECHO_N "checking for gnat version... $ECHO_C" >&6
    2506628347 cf_gnat_version=`${cf_ada_make:-gnatmake} -v 2>&1 | \
     
    2506828349     sed -e '2,$d' -e 's/[^0-9 \.]//g' -e 's/^[ ]*//' -e 's/ .*//'`
    2506928350-echo "$as_me:18073: result: $cf_gnat_version" >&5
    25070 +echo "$as_me:19139: result: $cf_gnat_version" >&5
     28351+echo "$as_me:19284: result: $cf_gnat_version" >&5
    2507128352 echo "${ECHO_T}$cf_gnat_version" >&6
    2507228353 
     
    2507828359 *)
    2507928360-       { echo "$as_me:18081: WARNING: Unsupported GNAT version $cf_gnat_version. We require 3.11 or better. Disabling Ada95 binding." >&5
    25080 +       { echo "$as_me:19147: WARNING: Unsupported GNAT version $cf_gnat_version. We require 3.11 or better. Disabling Ada95 binding." >&5
     28361+       { echo "$as_me:19292: WARNING: Unsupported GNAT version $cf_gnat_version. We require 3.11 or better. Disabling Ada95 binding." >&5
    2508128362 echo "$as_me: WARNING: Unsupported GNAT version $cf_gnat_version. We require 3.11 or better. Disabling Ada95 binding." >&2;}
    2508228363        cf_cv_prog_gnat_correct=no
    2508328364        ;;
    25084 @@ -18086,7 +19152,7 @@
     28365@@ -18086,7 +19297,7 @@
    2508528366 
    2508628367    # Extract the first word of "m4", so it can be a program name with args.
    2508728368 set dummy m4; ac_word=$2
    2508828369-echo "$as_me:18089: checking for $ac_word" >&5
    25089 +echo "$as_me:19155: checking for $ac_word" >&5
     28370+echo "$as_me:19300: checking for $ac_word" >&5
    2509028371 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
    2509128372 if test "${ac_cv_prog_M4_exists+set}" = set; then
    2509228373   echo $ECHO_N "(cached) $ECHO_C" >&6
    25093 @@ -18101,7 +19167,7 @@
     28374@@ -18101,7 +19312,7 @@
    2509428375   test -z "$ac_dir" && ac_dir=.
    2509528376   $as_executable_p "$ac_dir/$ac_word" || continue
    2509628377 ac_cv_prog_M4_exists="yes"
    2509728378-echo "$as_me:18104: found $ac_dir/$ac_word" >&5
    25098 +echo "$as_me:19170: found $ac_dir/$ac_word" >&5
     28379+echo "$as_me:19315: found $ac_dir/$ac_word" >&5
    2509928380 break
    2510028381 done
    2510128382 
    25102 @@ -18110,10 +19176,10 @@
     28383@@ -18110,10 +19321,10 @@
    2510328384 fi
    2510428385 M4_exists=$ac_cv_prog_M4_exists
    2510528386 if test -n "$M4_exists"; then
    2510628387-  echo "$as_me:18113: result: $M4_exists" >&5
    25107 +  echo "$as_me:19179: result: $M4_exists" >&5
     28388+  echo "$as_me:19324: result: $M4_exists" >&5
    2510828389 echo "${ECHO_T}$M4_exists" >&6
    2510928390 else
    2511028391-  echo "$as_me:18116: result: no" >&5
    25111 +  echo "$as_me:19182: result: no" >&5
     28392+  echo "$as_me:19327: result: no" >&5
    2511228393 echo "${ECHO_T}no" >&6
    2511328394 fi
    2511428395 
    25115 @@ -18122,7 +19188,7 @@
     28396@@ -18122,7 +19333,7 @@
    2511628397       echo Ada95 binding required program m4 not found. Ada95 binding disabled.
    2511728398    fi
    2511828399    if test "$cf_cv_prog_gnat_correct" = yes; then
    2511928400-      echo "$as_me:18125: checking if GNAT works" >&5
    25120 +      echo "$as_me:19191: checking if GNAT works" >&5
     28401+      echo "$as_me:19336: checking if GNAT works" >&5
    2512128402 echo $ECHO_N "checking if GNAT works... $ECHO_C" >&6
    2512228403 
    2512328404 rm -rf conftest* *~conftest*
    25124 @@ -18150,7 +19216,7 @@
     28405@@ -18150,7 +19361,7 @@
    2512528406 fi
    2512628407 rm -rf conftest* *~conftest*
    2512728408 
    2512828409-      echo "$as_me:18153: result: $cf_cv_prog_gnat_correct" >&5
    25129 +      echo "$as_me:19219: result: $cf_cv_prog_gnat_correct" >&5
     28410+      echo "$as_me:19364: result: $cf_cv_prog_gnat_correct" >&5
    2513028411 echo "${ECHO_T}$cf_cv_prog_gnat_correct" >&6
    2513128412    fi
    2513228413 fi
    25133 @@ -18175,7 +19241,7 @@
    25134                                 ;;
    25135                         esac
     28414@@ -18159,23 +19370,27 @@
     28415 
     28416        ADAFLAGS="$ADAFLAGS -gnatpn"
     28417 
     28418-                       # make ADAFLAGS consistent with CFLAGS
     28419-                       case "$CFLAGS" in
     28420-                       *-g*)
     28421+       echo "$as_me:19373: checking optimization options for ADAFLAGS" >&5
     28422+echo $ECHO_N "checking optimization options for ADAFLAGS... $ECHO_C" >&6
     28423+       case "$CFLAGS" in
     28424+       *-g*)
     28425 
     28426        ADAFLAGS="$ADAFLAGS -g"
     28427 
     28428-                               ;;
     28429-                       esac
     28430-                       case "$CFLAGS" in
     28431-                       *-O*)
     28432+               ;;
     28433+       esac
     28434+       case "$CFLAGS" in
     28435+       *-O*)
     28436+               cf_O_flag=`echo "$CFLAGS" |sed -e 's/^.*-O/-O/' -e 's/[         ].*//'`
     28437 
     28438-       ADAFLAGS="$ADAFLAGS -O3"
     28439+       ADAFLAGS="$ADAFLAGS $cf_O_flag"
     28440 
     28441-                               ;;
     28442-                       esac
     28443+               ;;
     28444+       esac
     28445+       echo "$as_me:19390: result: $ADAFLAGS" >&5
     28446+echo "${ECHO_T}$ADAFLAGS" >&6
    2513628447 
    2513728448-echo "$as_me:18178: checking if GNAT supports generics" >&5
    25138 +echo "$as_me:19244: checking if GNAT supports generics" >&5
     28449+echo "$as_me:19393: checking if GNAT supports generics" >&5
    2513928450 echo $ECHO_N "checking if GNAT supports generics... $ECHO_C" >&6
    2514028451 case $cf_gnat_version in #(vi
    2514128452 3.[1-9]*|[4-9].*) #(vi
    25142 @@ -18185,7 +19251,7 @@
     28453@@ -18185,7 +19400,7 @@
    2514328454        cf_gnat_generics=no
    2514428455        ;;
    2514528456 esac
    2514628457-echo "$as_me:18188: result: $cf_gnat_generics" >&5
    25147 +echo "$as_me:19254: result: $cf_gnat_generics" >&5
     28458+echo "$as_me:19403: result: $cf_gnat_generics" >&5
    2514828459 echo "${ECHO_T}$cf_gnat_generics" >&6
    2514928460 
    2515028461 if test "$cf_gnat_generics" = yes
    25151 @@ -18197,7 +19263,7 @@
     28462@@ -18197,7 +19412,7 @@
    2515228463        cf_generic_objects=
    2515328464 fi
    2515428465 
    2515528466-echo "$as_me:18200: checking if GNAT supports SIGINT" >&5
    25156 +echo "$as_me:19266: checking if GNAT supports SIGINT" >&5
     28467+echo "$as_me:19415: checking if GNAT supports SIGINT" >&5
    2515728468 echo $ECHO_N "checking if GNAT supports SIGINT... $ECHO_C" >&6
    2515828469 if test "${cf_cv_gnat_sigint+set}" = set; then
    2515928470   echo $ECHO_N "(cached) $ECHO_C" >&6
    25160 @@ -18245,7 +19311,7 @@
     28471@@ -18245,7 +19460,7 @@
    2516128472 rm -rf conftest* *~conftest*
    2516228473 
    2516328474 fi
    2516428475-echo "$as_me:18248: result: $cf_cv_gnat_sigint" >&5
    25165 +echo "$as_me:19314: result: $cf_cv_gnat_sigint" >&5
     28476+echo "$as_me:19463: result: $cf_cv_gnat_sigint" >&5
    2516628477 echo "${ECHO_T}$cf_cv_gnat_sigint" >&6
    2516728478 
    2516828479 if test $cf_cv_gnat_sigint = yes ; then
    25169 @@ -18254,7 +19320,7 @@
     28480@@ -18254,7 +19469,7 @@
    2517028481        USE_GNAT_SIGINT="#"
    2517128482 fi
    2517228483 
    2517328484-echo "$as_me:18257: checking if GNAT pragma Unreferenced works" >&5
    25174 +echo "$as_me:19323: checking if GNAT pragma Unreferenced works" >&5
     28485+echo "$as_me:19472: checking if GNAT pragma Unreferenced works" >&5
    2517528486 echo $ECHO_N "checking if GNAT pragma Unreferenced works... $ECHO_C" >&6
    2517628487 if test "${cf_cv_pragma_unreferenced+set}" = set; then
    2517728488   echo $ECHO_N "(cached) $ECHO_C" >&6
    25178 @@ -18285,7 +19351,7 @@
     28489@@ -18285,7 +19500,7 @@
    2517928490 rm -rf conftest* *~conftest*
    2518028491 
    2518128492 fi
    2518228493-echo "$as_me:18288: result: $cf_cv_pragma_unreferenced" >&5
    25183 +echo "$as_me:19354: result: $cf_cv_pragma_unreferenced" >&5
     28494+echo "$as_me:19503: result: $cf_cv_pragma_unreferenced" >&5
    2518428495 echo "${ECHO_T}$cf_cv_pragma_unreferenced" >&6
    2518528496 
    2518628497 # if the pragma is supported, use it (needed in the Trace code).
    25187 @@ -18298,7 +19364,7 @@
     28498@@ -18298,7 +19513,7 @@
    2518828499 cf_gnat_libraries=no
    2518928500 cf_gnat_projects=no
    2519028501 
    2519128502-echo "$as_me:18301: checking if GNAT supports project files" >&5
    25192 +echo "$as_me:19367: checking if GNAT supports project files" >&5
     28503+echo "$as_me:19516: checking if GNAT supports project files" >&5
    2519328504 echo $ECHO_N "checking if GNAT supports project files... $ECHO_C" >&6
    2519428505 case $cf_gnat_version in #(vi
    2519528506 3.[0-9]*) #(vi
    25196 @@ -18366,14 +19432,14 @@
     28507@@ -18366,14 +19581,14 @@
    2519728508        esac
    2519828509        ;;
    2519928510 esac
    2520028511-echo "$as_me:18369: result: $cf_gnat_projects" >&5
    25201 +echo "$as_me:19435: result: $cf_gnat_projects" >&5
     28512+echo "$as_me:19584: result: $cf_gnat_projects" >&5
    2520228513 echo "${ECHO_T}$cf_gnat_projects" >&6
    2520328514 
     
    2520528516 then
    2520628517-       echo "$as_me:18374: checking if GNAT supports libraries" >&5
    25207 +       echo "$as_me:19440: checking if GNAT supports libraries" >&5
     28518+       echo "$as_me:19589: checking if GNAT supports libraries" >&5
    2520828519 echo $ECHO_N "checking if GNAT supports libraries... $ECHO_C" >&6
    2520928520-       echo "$as_me:18376: result: $cf_gnat_libraries" >&5
    25210 +       echo "$as_me:19442: result: $cf_gnat_libraries" >&5
     28521+       echo "$as_me:19591: result: $cf_gnat_libraries" >&5
    2521128522 echo "${ECHO_T}$cf_gnat_libraries" >&6
    2521228523 fi
    2521328524 
    25214 @@ -18393,7 +19459,7 @@
     28525@@ -18393,7 +19608,7 @@
    2521528526        USE_GNAT_LIBRARIES="#"
    2521628527 fi
    2521728528 
    2521828529-echo "$as_me:18396: checking for ada-compiler" >&5
    25219 +echo "$as_me:19462: checking for ada-compiler" >&5
     28530+echo "$as_me:19611: checking for ada-compiler" >&5
    2522028531 echo $ECHO_N "checking for ada-compiler... $ECHO_C" >&6
    2522128532 
    2522228533 # Check whether --with-ada-compiler or --without-ada-compiler was given.
    25223 @@ -18404,12 +19470,12 @@
     28534@@ -18404,12 +19619,12 @@
    2522428535   cf_ada_compiler=gnatmake
    2522528536 fi;
    2522628537 
    2522728538-echo "$as_me:18407: result: $cf_ada_compiler" >&5
    25228 +echo "$as_me:19473: result: $cf_ada_compiler" >&5
     28539+echo "$as_me:19622: result: $cf_ada_compiler" >&5
    2522928540 echo "${ECHO_T}$cf_ada_compiler" >&6
    2523028541 
     
    2523228543 
    2523328544-echo "$as_me:18412: checking for ada-include" >&5
    25234 +echo "$as_me:19478: checking for ada-include" >&5
     28545+echo "$as_me:19627: checking for ada-include" >&5
    2523528546 echo $ECHO_N "checking for ada-include... $ECHO_C" >&6
    2523628547 
    2523728548 # Check whether --with-ada-include or --without-ada-include was given.
    25238 @@ -18445,7 +19511,7 @@
     28549@@ -18433,7 +19648,7 @@
     28550   ;;
     28551 .[a-zA-Z]:[\\/]*) #(vi OS/2 EMX
     28552   ;;
     28553-.\${*prefix}*) #(vi
     28554+.\${*prefix}*|.\${*dir}*) #(vi
     28555   eval withval="$withval"
     28556   case ".$withval" in #(vi
     28557   .NONE/*)
     28558@@ -18445,7 +19660,7 @@
    2523928559   withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%`
    2524028560   ;;
    2524128561 *)
    2524228562-  { { echo "$as_me:18448: error: expected a pathname, not \"$withval\"" >&5
    25243 +  { { echo "$as_me:19514: error: expected a pathname, not \"$withval\"" >&5
     28563+  { { echo "$as_me:19663: error: expected a pathname, not \"$withval\"" >&5
    2524428564 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;}
    2524528565    { (exit 1); exit 1; }; }
    2524628566   ;;
    25247 @@ -18454,10 +19520,10 @@
     28567@@ -18454,10 +19669,10 @@
    2524828568 fi
    2524928569 ADA_INCLUDE="$withval"
    2525028570 
    2525128571-echo "$as_me:18457: result: $ADA_INCLUDE" >&5
    25252 +echo "$as_me:19523: result: $ADA_INCLUDE" >&5
     28572+echo "$as_me:19672: result: $ADA_INCLUDE" >&5
    2525328573 echo "${ECHO_T}$ADA_INCLUDE" >&6
    2525428574 
    2525528575-echo "$as_me:18460: checking for ada-objects" >&5
    25256 +echo "$as_me:19526: checking for ada-objects" >&5
     28576+echo "$as_me:19675: checking for ada-objects" >&5
    2525728577 echo $ECHO_N "checking for ada-objects... $ECHO_C" >&6
    2525828578 
    2525928579 # Check whether --with-ada-objects or --without-ada-objects was given.
    25260 @@ -18493,7 +19559,7 @@
     28580@@ -18481,7 +19696,7 @@
     28581   ;;
     28582 .[a-zA-Z]:[\\/]*) #(vi OS/2 EMX
     28583   ;;
     28584-.\${*prefix}*) #(vi
     28585+.\${*prefix}*|.\${*dir}*) #(vi
     28586   eval withval="$withval"
     28587   case ".$withval" in #(vi
     28588   .NONE/*)
     28589@@ -18493,7 +19708,7 @@
    2526128590   withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%`
    2526228591   ;;
    2526328592 *)
    2526428593-  { { echo "$as_me:18496: error: expected a pathname, not \"$withval\"" >&5
    25265 +  { { echo "$as_me:19562: error: expected a pathname, not \"$withval\"" >&5
     28594+  { { echo "$as_me:19711: error: expected a pathname, not \"$withval\"" >&5
    2526628595 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;}
    2526728596    { (exit 1); exit 1; }; }
    2526828597   ;;
    25269 @@ -18502,10 +19568,10 @@
     28598@@ -18502,10 +19717,10 @@
    2527028599 fi
    2527128600 ADA_OBJECTS="$withval"
    2527228601 
    2527328602-echo "$as_me:18505: result: $ADA_OBJECTS" >&5
    25274 +echo "$as_me:19571: result: $ADA_OBJECTS" >&5
     28603+echo "$as_me:19720: result: $ADA_OBJECTS" >&5
    2527528604 echo "${ECHO_T}$ADA_OBJECTS" >&6
    2527628605 
    2527728606-echo "$as_me:18508: checking if an Ada95 shared-library should be built" >&5
    25278 +echo "$as_me:19574: checking if an Ada95 shared-library should be built" >&5
     28607+echo "$as_me:19723: checking if an Ada95 shared-library should be built" >&5
    2527928608 echo $ECHO_N "checking if an Ada95 shared-library should be built... $ECHO_C" >&6
    2528028609 
    2528128610 # Check whether --with-ada-sharedlib or --without-ada-sharedlib was given.
    25282 @@ -18515,7 +19581,7 @@
     28611@@ -18515,7 +19730,7 @@
    2528328612 else
    2528428613   with_ada_sharedlib=no
    2528528614 fi;
    2528628615-echo "$as_me:18518: result: $with_ada_sharedlib" >&5
    25287 +echo "$as_me:19584: result: $with_ada_sharedlib" >&5
     28616+echo "$as_me:19733: result: $with_ada_sharedlib" >&5
    2528828617 echo "${ECHO_T}$with_ada_sharedlib" >&6
    2528928618 
    2529028619 ADA_SHAREDLIB='lib$(LIB_NAME).so.1'
    25291 @@ -18546,7 +19612,7 @@
     28620@@ -18546,7 +19761,7 @@
    2529228621 ### chooses to split module lists into libraries.
    2529328622 ###
    2529428623 ### (see CF_LIB_RULES).
    2529528624-echo "$as_me:18549: checking for library subsets" >&5
    25296 +echo "$as_me:19615: checking for library subsets" >&5
     28625+echo "$as_me:19764: checking for library subsets" >&5
    2529728626 echo $ECHO_N "checking for library subsets... $ECHO_C" >&6
    2529828627 LIB_SUBSETS=
    2529928628 
    25300 @@ -18587,7 +19653,7 @@
     28629@@ -18587,7 +19802,7 @@
    2530128630 test "$with_widec"     = yes && LIB_SUBSETS="${LIB_SUBSETS}+widechar"
    2530228631 test "$with_ext_funcs" = yes && LIB_SUBSETS="${LIB_SUBSETS}+ext_funcs"
    2530328632 
    2530428633-echo "$as_me:18590: result: $LIB_SUBSETS" >&5
    25305 +echo "$as_me:19656: result: $LIB_SUBSETS" >&5
     28634+echo "$as_me:19805: result: $LIB_SUBSETS" >&5
    2530628635 echo "${ECHO_T}$LIB_SUBSETS" >&6
    2530728636 
    2530828637 ### Construct the list of include-directories to be generated
    25309 @@ -18625,7 +19691,7 @@
     28638@@ -18625,7 +19840,7 @@
    2531028639 fi
    2531128640 
    2531228641 ### Build up pieces for makefile rules
    2531328642-echo "$as_me:18628: checking default library suffix" >&5
    25314 +echo "$as_me:19694: checking default library suffix" >&5
     28643+echo "$as_me:19843: checking default library suffix" >&5
    2531528644 echo $ECHO_N "checking default library suffix... $ECHO_C" >&6
    2531628645 
    2531728646        case $DFT_LWR_MODEL in
    25318 @@ -18636,10 +19702,10 @@
     28647@@ -18636,10 +19851,10 @@
    2531928648        shared)  DFT_ARG_SUFFIX=''   ;;
    2532028649        esac
    2532128650        test -n "$LIB_SUFFIX" && DFT_ARG_SUFFIX="${LIB_SUFFIX}${DFT_ARG_SUFFIX}"
    2532228651-echo "$as_me:18639: result: $DFT_ARG_SUFFIX" >&5
    25323 +echo "$as_me:19705: result: $DFT_ARG_SUFFIX" >&5
     28652+echo "$as_me:19854: result: $DFT_ARG_SUFFIX" >&5
    2532428653 echo "${ECHO_T}$DFT_ARG_SUFFIX" >&6
    2532528654 
    2532628655-echo "$as_me:18642: checking default library-dependency suffix" >&5
    25327 +echo "$as_me:19708: checking default library-dependency suffix" >&5
     28656+echo "$as_me:19857: checking default library-dependency suffix" >&5
    2532828657 echo $ECHO_N "checking default library-dependency suffix... $ECHO_C" >&6
    2532928658 
    2533028659        case $DFT_LWR_MODEL in #(vi
    25331 @@ -18661,7 +19727,7 @@
     28660@@ -18661,11 +19876,11 @@
    2533228661                ;;
    2533328662        shared) #(vi
     
    2533828667                        DFT_DEP_SUFFIX=$DFT_LIB_SUFFIX
    2533928668                        ;;
    25340 @@ -18692,10 +19758,10 @@
     28669-               cygwin*) #(vi
     28670+               cygwin*|mingw*) #(vi
     28671                        DFT_LIB_SUFFIX='.dll'
     28672                        DFT_DEP_SUFFIX='.dll.a'
     28673                        ;;
     28674@@ -18692,10 +19907,10 @@
    2534128675        esac
    2534228676        test -n "$LIB_SUFFIX" && DFT_LIB_SUFFIX="${LIB_SUFFIX}${DFT_LIB_SUFFIX}"
    2534328677        test -n "$LIB_SUFFIX" && DFT_DEP_SUFFIX="${LIB_SUFFIX}${DFT_DEP_SUFFIX}"
    2534428678-echo "$as_me:18695: result: $DFT_DEP_SUFFIX" >&5
    25345 +echo "$as_me:19761: result: $DFT_DEP_SUFFIX" >&5
     28679+echo "$as_me:19910: result: $DFT_DEP_SUFFIX" >&5
    2534628680 echo "${ECHO_T}$DFT_DEP_SUFFIX" >&6
    2534728681 
    2534828682-echo "$as_me:18698: checking default object directory" >&5
    25349 +echo "$as_me:19764: checking default object directory" >&5
     28683+echo "$as_me:19913: checking default object directory" >&5
    2535028684 echo $ECHO_N "checking default object directory... $ECHO_C" >&6
    2535128685 
    2535228686        case $DFT_LWR_MODEL in
    25353 @@ -18711,12 +19777,12 @@
     28687@@ -18711,12 +19926,12 @@
    2535428688                        DFT_OBJ_SUBDIR='obj_s' ;;
    2535528689                esac
    2535628690        esac
    2535728691-echo "$as_me:18714: result: $DFT_OBJ_SUBDIR" >&5
    25358 +echo "$as_me:19780: result: $DFT_OBJ_SUBDIR" >&5
     28692+echo "$as_me:19929: result: $DFT_OBJ_SUBDIR" >&5
    2535928693 echo "${ECHO_T}$DFT_OBJ_SUBDIR" >&6
    2536028694 
     
    2536228696 if test "$cf_with_cxx" = yes ; then
    2536328697-echo "$as_me:18719: checking c++ library-dependency suffix" >&5
    25364 +echo "$as_me:19785: checking c++ library-dependency suffix" >&5
     28698+echo "$as_me:19934: checking c++ library-dependency suffix" >&5
    2536528699 echo $ECHO_N "checking c++ library-dependency suffix... $ECHO_C" >&6
    2536628700 if test "$with_libtool" != "no"; then
    2536728701        CXX_LIB_SUFFIX=$DFT_DEP_SUFFIX
    25368 @@ -18741,7 +19807,7 @@
     28702@@ -18741,11 +19956,11 @@
    2536928703                ;;
    2537028704        shared) #(vi
     
    2537528709                        CXX_DEP_SUFFIX=$CXX_LIB_SUFFIX
    2537628710                        ;;
    25377 @@ -18773,7 +19839,7 @@
     28711-               cygwin*) #(vi
     28712+               cygwin*|mingw*) #(vi
     28713                        CXX_LIB_SUFFIX='.dll'
     28714                        CXX_DEP_SUFFIX='.dll.a'
     28715                        ;;
     28716@@ -18773,7 +19988,7 @@
    2537828717        test -n "$LIB_SUFFIX" && CXX_LIB_SUFFIX="${LIB_SUFFIX}${CXX_LIB_SUFFIX}"
    2537928718        test -n "$LIB_SUFFIX" && CXX_DEP_SUFFIX="${LIB_SUFFIX}${CXX_DEP_SUFFIX}"
    2538028719 fi
    2538128720-echo "$as_me:18776: result: $CXX_LIB_SUFFIX" >&5
    25382 +echo "$as_me:19842: result: $CXX_LIB_SUFFIX" >&5
     28721+echo "$as_me:19991: result: $CXX_LIB_SUFFIX" >&5
    2538328722 echo "${ECHO_T}$CXX_LIB_SUFFIX" >&6
    2538428723 
    2538528724 fi
    25386 @@ -18812,9 +19878,11 @@
     28725@@ -18812,9 +20027,11 @@
    2538728726                TICS_DEP_SUFFIX="${TICS_NAME}${DFT_DEP_SUFFIX}"
    2538828727                TICS_LIB_SUFFIX="${TICS_NAME}${LIB_SUFFIX}"
     
    2539828737 
    2539928738 if test "$with_termlib" != no ; then
    25400 @@ -18837,14 +19905,22 @@
     28739@@ -18837,14 +20054,22 @@
    2540128740        if test "$DFT_LWR_MODEL" = "libtool"; then
    2540228741                TEST_ARGS="${TEST_DEPS}"
     
    2542428763        fi
    2542528764 else
    25426 @@ -18858,7 +19934,8 @@
     28765@@ -18858,7 +20083,8 @@
    2542728766                TICS_LIST="$SHLIB_LIST"
    2542828767        fi
     
    2543428773 
    2543528774 if test "$DFT_LWR_MODEL" = shared ; then
    25436 @@ -18882,7 +19959,7 @@
     28775@@ -18882,7 +20108,7 @@
    2543728776 fi
    2543828777 
     
    2544328782 case $DFT_LWR_MODEL in
    2544428783 normal|debug|profile)
    25445 @@ -18900,7 +19977,7 @@
     28784@@ -18900,7 +20126,7 @@
    2544628785     esac
    2544728786 else
     
    2545228791                LDFLAGS_SHARED=-bdynamic
    2545328792                ;;
    25454 @@ -18927,19 +20004,19 @@
     28793@@ -18927,19 +20153,19 @@
    2545528794 
    2545628795 if test -n "$LDFLAGS_STATIC" && test -n "$LDFLAGS_SHARED"
    2545728796 then
    2545828797-       echo "$as_me:18930: checking if linker supports switching between static/dynamic" >&5
    25459 +       echo "$as_me:20007: checking if linker supports switching between static/dynamic" >&5
     28798+       echo "$as_me:20156: checking if linker supports switching between static/dynamic" >&5
    2546028799 echo $ECHO_N "checking if linker supports switching between static/dynamic... $ECHO_C" >&6
    2546128800 
     
    2546328802        cat >conftest.$ac_ext <<EOF
    2546428803-#line 18935 "configure"
    25465 +#line 20012 "configure"
     28804+#line 20161 "configure"
    2546628805 #include <stdio.h>
    2546728806 int cf_ldflags_static(FILE *fp) { return fflush(fp); }
    2546828807 EOF
    2546928808-       if { (eval echo "$as_me:18939: \"$ac_compile\"") >&5
    25470 +       if { (eval echo "$as_me:20016: \"$ac_compile\"") >&5
     28809+       if { (eval echo "$as_me:20165: \"$ac_compile\"") >&5
    2547128810   (eval $ac_compile) 2>&5
    2547228811   ac_status=$?
    2547328812-  echo "$as_me:18942: \$? = $ac_status" >&5