Changeset 8ec404e6 for patches


Ignore:
Timestamp:
Jun 5, 2009, 9:04:05 PM (15 years ago)
Author:
Jim Gifford <clfs@…>
Branches:
clfs-1.2, clfs-2.1, clfs-3.0.0-systemd, clfs-3.0.0-sysvinit, master, systemd, sysvinit
Children:
613a326
Parents:
b057cfe
Message:

Updated Ncurses Branch Update Patch to -14

File:
1 moved

Legend:

Unmodified
Added
Removed
  • patches/ncurses-5.7-branch_update-14.patch

    rb057cfe r8ec404e6  
    11Submitted By: Jim Gifford (jim at cross-lfs dot org)
    2 Date: 03-22-2009
     2Date: 06-05-2009
    33Initial Package Version: 5.7
    44Origin: Upstream
    55Upstream Status: Applied
    66Description: This is a branch update for NCurses-5.7, and should be
    7              rechecked periodically. This patch covers up to 5.7-20090321.
     7             rechecked periodically. This patch covers up to 5.7-20090530.
    88
    99diff -Naur ncurses-5.7.orig/aclocal.m4 ncurses-5.7/aclocal.m4
    1010--- ncurses-5.7.orig/aclocal.m4 2008-10-25 15:15:32.000000000 -0700
    11 +++ ncurses-5.7/aclocal.m4      2009-03-22 21:17:11.616376588 -0700
     11+++ ncurses-5.7/aclocal.m4      2009-06-05 14:01:31.000000000 -0700
    1212@@ -1,5 +1,5 @@
    1313 dnl***************************************************************************
     
    2222 dnl
    2323-dnl $Id: aclocal.m4,v 1.470 2008/10/25 22:15:32 tom Exp $
    24 +dnl $Id: aclocal.m4,v 1.485 2009/03/21 23:15:19 tom Exp $
     24+dnl $Id: aclocal.m4,v 1.487 2009/04/04 22:32:42 tom Exp $
    2525 dnl Macros used in NCURSES auto-configuration script.
    2626 dnl
     
    297297 dnl ---------------------------------------------------------------------------
    298298-dnl CF_LDFLAGS_STATIC version: 4 updated: 2008/10/18 17:58:20
    299 +dnl CF_LDFLAGS_STATIC version: 6 updated: 2009/03/14 14:03:25
     299+dnl CF_LDFLAGS_STATIC version: 7 updated: 2009/04/04 18:31:04
    300300 dnl -----------------
    301301 dnl Check for compiler/linker flags used to temporarily force usage of static
     
    306306        case $cf_cv_system_name in #(
    307307-       OS/2*|os2*|aix[[45]]*)  #( vi
    308 +       OS/2*|os2*|aix[[4]]*|solaris2.1[[0-9]])         #( vi
     308+       OS/2*|os2*|aix[[4]]*|solaris2.1[[0-9]]|darwin*)         #( vi
    309309                LDFLAGS_STATIC=
    310310                LDFLAGS_SHARED=
     
    829829 dnl ---------------------------------------------------------------------------
    830830-dnl CF_WITH_LIBTOOL version: 19 updated: 2008/03/29 15:46:43
    831 +dnl CF_WITH_LIBTOOL version: 22 updated: 2009/03/21 19:14:56
     831+dnl CF_WITH_LIBTOOL version: 23 updated: 2009/03/28 14:26:27
    832832 dnl ---------------
    833833 dnl Provide a configure option to incorporate libtool.  Define several useful
     
    856856 dnl
    857857 AC_DEFUN([CF_WITH_LIBTOOL],
    858 @@ -5306,15 +5455,15 @@
     858@@ -5306,17 +5455,17 @@
    859859        AC_PROG_LIBTOOL
    860860        # missing_content_AC_PROG_LIBTOOL}}
     
    876876+       fi
    877877 ])dnl
    878         LIB_CREATE='${LIBTOOL} --mode=link ${CC} -rpath ${DESTDIR}${libdir} -version-info `cut -f1 ${srcdir}/VERSION` ${LIBTOOL_OPTS} -o'
     878-       LIB_CREATE='${LIBTOOL} --mode=link ${CC} -rpath ${DESTDIR}${libdir} -version-info `cut -f1 ${srcdir}/VERSION` ${LIBTOOL_OPTS} -o'
     879+       LIB_CREATE='${LIBTOOL} --mode=link ${CC} -rpath ${DESTDIR}${libdir} -version-info `cut -f1 ${srcdir}/VERSION` ${LIBTOOL_OPTS} ${LT_UNDEF} -o'
    879880        LIB_OBJECT='${OBJECTS:.o=.lo}'
    880 @@ -5331,16 +5480,23 @@
     881        LIB_SUFFIX=.la
     882        LIB_CLEAN='${LIBTOOL} --mode=clean'
     883@@ -5331,16 +5480,25 @@
    881884 
    882885        # Save the version in a cache variable - this is not entirely a good
     
    891894 
    892895+       # special hack to add -no-undefined (which libtool should do for itself)
     896+       LT_UNDEF=
    893897+       case "$cf_cv_system_name" in #(vi
    894898+       cygwin*|mingw32*|uwin*|aix[[456]]) #(vi
    895 +               LIBTOOL="$LIBTOOL -no-undefined"
     899+               LT_UNDEF=-no-undefined
    896900+               ;;
    897901+       esac
     902+       AC_SUBST([LT_UNDEF])
    898903+
    899904        # special hack to add --tag option for C++ compiler
     
    901906-       1.[[5-9]]*|[[2-9]]*)
    902907+       case $cf_cv_libtool_version in #(vi
    903 +       1.[[5-9]]*|[[2-9]]*) #(vi
     908+       1.[[5-9]]*|[[2-9]].[[0-9.a-z]]*) #(vi
    904909                LIBTOOL_CXX="$LIBTOOL --tag=CXX"
    905910                LIBTOOL="$LIBTOOL --tag=CC"
    906911                ;;
    907 @@ -5393,7 +5549,7 @@
     912@@ -5393,7 +5551,7 @@
    908913 AC_SUBST($3)dnl
    909914 ])dnl
     
    914919 dnl Process an option specifying a list of colon-separated paths.
    915920 dnl
    916 @@ -5409,7 +5565,7 @@
     921@@ -5409,7 +5567,7 @@
    917922 AC_ARG_WITH($1,[$2 ](default: ifelse($4,,empty,$4)),,
    918923 ifelse($4,,[withval=${$3}],[withval=${$3-ifelse($5,,$4,$5)}]))dnl
     
    923928 for cf_src_path in $withval
    924929 do
    925 @@ -5535,7 +5691,7 @@
     930@@ -5535,7 +5693,7 @@
    926931        [USE_VALGRIND])
    927932 ])dnl
     
    932937 dnl Try to get _XOPEN_SOURCE defined properly that we can use POSIX functions,
    933938 dnl or adapt to the vendor's definitions to get equivalent functionality,
    934 @@ -5552,7 +5708,7 @@
     939@@ -5552,7 +5710,7 @@
    935940 cf_POSIX_C_SOURCE=ifelse($2,,199506L,$2)
    936941 
     
    941946        ;;
    942947 freebsd*|dragonfly*) #(vi
    943 @@ -5569,7 +5725,7 @@
     948@@ -5569,7 +5727,7 @@
    944949 irix[[56]].*) #(vi
    945950        CPPFLAGS="$CPPFLAGS -D_SGI_SOURCE"
     
    952957diff -Naur ncurses-5.7.orig/Ada95/gen/adacurses-config.in ncurses-5.7/Ada95/gen/adacurses-config.in
    953958--- ncurses-5.7.orig/Ada95/gen/adacurses-config.in      2007-04-07 14:06:50.000000000 -0700
    954 +++ ncurses-5.7/Ada95/gen/adacurses-config.in   2009-03-22 21:16:59.575606928 -0700
     959+++ ncurses-5.7/Ada95/gen/adacurses-config.in   2009-06-05 14:01:07.000000000 -0700
    955960@@ -1,18 +1,47 @@
    956961 #! /bin/sh
     
    10261031diff -Naur ncurses-5.7.orig/Ada95/gen/gen.c ncurses-5.7/Ada95/gen/gen.c
    10271032--- ncurses-5.7.orig/Ada95/gen/gen.c    2008-10-04 14:59:37.000000000 -0700
    1028 +++ ncurses-5.7/Ada95/gen/gen.c 2009-03-22 21:17:11.612376588 -0700
     1033+++ ncurses-5.7/Ada95/gen/gen.c 2009-06-05 14:01:24.000000000 -0700
    10291034@@ -1,5 +1,5 @@
    10301035 /****************************************************************************
     
    10651070diff -Naur ncurses-5.7.orig/Ada95/gen/Makefile.in ncurses-5.7/Ada95/gen/Makefile.in
    10661071--- ncurses-5.7.orig/Ada95/gen/Makefile.in      2008-10-04 15:58:31.000000000 -0700
    1067 +++ ncurses-5.7/Ada95/gen/Makefile.in   2009-03-22 21:16:59.575606928 -0700
     1072+++ ncurses-5.7/Ada95/gen/Makefile.in   2009-06-05 14:01:07.000000000 -0700
    10681073@@ -1,5 +1,5 @@
    10691074 ##############################################################################
     
    11211126diff -Naur ncurses-5.7.orig/Ada95/samples/Makefile.in ncurses-5.7/Ada95/samples/Makefile.in
    11221127--- ncurses-5.7.orig/Ada95/samples/Makefile.in  2006-12-17 08:45:02.000000000 -0800
    1123 +++ ncurses-5.7/Ada95/samples/Makefile.in       2009-03-22 21:16:59.579606090 -0700
     1128+++ ncurses-5.7/Ada95/samples/Makefile.in       2009-06-05 14:01:07.000000000 -0700
    11241129@@ -1,5 +1,5 @@
    11251130 ##############################################################################
     
    11601165diff -Naur ncurses-5.7.orig/Ada95/src/Makefile.in ncurses-5.7/Ada95/src/Makefile.in
    11611166--- ncurses-5.7.orig/Ada95/src/Makefile.in      2007-09-15 11:22:24.000000000 -0700
    1162 +++ ncurses-5.7/Ada95/src/Makefile.in   2009-03-22 21:16:59.579606090 -0700
     1167+++ ncurses-5.7/Ada95/src/Makefile.in   2009-06-05 14:01:07.000000000 -0700
    11631168@@ -1,5 +1,5 @@
    11641169 ##############################################################################
     
    12521257diff -Naur ncurses-5.7.orig/Ada95/src/terminal_interface-curses-mouse.adb ncurses-5.7/Ada95/src/terminal_interface-curses-mouse.adb
    12531258--- ncurses-5.7.orig/Ada95/src/terminal_interface-curses-mouse.adb      2008-07-26 11:51:11.000000000 -0700
    1254 +++ ncurses-5.7/Ada95/src/terminal_interface-curses-mouse.adb   2009-03-22 21:16:46.486767984 -0700
     1259+++ ncurses-5.7/Ada95/src/terminal_interface-curses-mouse.adb   2009-06-05 14:00:52.000000000 -0700
    12551260@@ -35,8 +35,8 @@
    12561261 ------------------------------------------------------------------------------
     
    12751280diff -Naur ncurses-5.7.orig/c++/cursesw.cc ncurses-5.7/c++/cursesw.cc
    12761281--- ncurses-5.7.orig/c++/cursesw.cc     2007-12-15 15:01:57.000000000 -0800
    1277 +++ ncurses-5.7/c++/cursesw.cc  2009-03-22 21:16:46.490769660 -0700
     1282+++ ncurses-5.7/c++/cursesw.cc  2009-06-05 14:01:30.000000000 -0700
    12781283@@ -1,6 +1,6 @@
    12791284 // * this is for making emacs happy: -*-Mode: C++;-*-
    12801285 /****************************************************************************
    12811286- * Copyright (c) 2007 Free Software Foundation, Inc.                        *
    1282 + * Copyright (c) 2007,2008 Free Software Foundation, Inc.                   *
     1287+ * Copyright (c) 2007-2008,2009 Free Software Foundation, Inc.              *
    12831288  *                                                                          *
    12841289  * Permission is hereby granted, free of charge, to any person obtaining a  *
     
    12891294 
    12901295-MODULE_ID("$Id: cursesw.cc,v 1.49 2007/12/15 23:01:57 tom Exp $")
    1291 +MODULE_ID("$Id: cursesw.cc,v 1.50 2008/11/23 00:17:31 juergen Exp $")
     1296+MODULE_ID("$Id: cursesw.cc,v 1.51 2009/03/28 21:31:37 tom Exp $")
    12921297 
    12931298 #define COLORS_NEED_INITIALIZATION  -1
     
    13011306 
    13021307 int _nc_xx_ripoff_init(WINDOW *w, int ncols)
    1303 @@ -464,7 +463,7 @@
     1308@@ -296,8 +295,7 @@
     1309 
     1310     RIPOFFINIT init = *prip++;
     1311     if (init) {
     1312-       NCursesWindow* W = new NCursesWindow(w,ncols);
     1313-       res = init(*W);
     1314+       res = init(*(new NCursesWindow(w,ncols)));
     1315     }
     1316     return res;
     1317 }
     1318@@ -464,7 +462,7 @@
    13041319 #if HAVE_HAS_KEY
    13051320 bool NCursesWindow::has_mouse() const
     
    13101325 }
    13111326 #endif
     1327diff -Naur ncurses-5.7.orig/c++/demo.cc ncurses-5.7/c++/demo.cc
     1328--- ncurses-5.7.orig/c++/demo.cc        2008-08-04 10:16:57.000000000 -0700
     1329+++ ncurses-5.7/c++/demo.cc     2009-06-05 14:01:49.000000000 -0700
     1330@@ -35,7 +35,7 @@
     1331  *   Demo code for NCursesMenu and NCursesForm written by
     1332  *   Juergen Pfeifer
     1333  *
     1334- * $Id: demo.cc,v 1.38 2008/08/04 17:16:57 tom Exp $
     1335+ * $Id: demo.cc,v 1.39 2008/12/07 02:07:34 juergen Exp $
     1336  */
     1337 
     1338 #include "internal.h"
     1339@@ -43,7 +43,13 @@
     1340 #include "cursesm.h"
     1341 #include "cursesf.h"
     1342 
     1343+#ifdef __MINGW32__
     1344+#undef KEY_EVENT
     1345+#endif
     1346+
     1347+#ifndef __MINGW32__
     1348 extern "C" unsigned int sleep(unsigned int);
     1349+#endif
     1350 
     1351 #undef index // needed for NeXT
     1352 
     1353diff -Naur ncurses-5.7.orig/c++/internal.h ncurses-5.7/c++/internal.h
     1354--- ncurses-5.7.orig/c++/internal.h     2008-10-25 14:35:44.000000000 -0700
     1355+++ ncurses-5.7/c++/internal.h  2009-06-05 14:01:49.000000000 -0700
     1356@@ -31,7 +31,7 @@
     1357  *   Author: Juergen Pfeifer, 1997                                          *
     1358  ****************************************************************************/
     1359 
     1360-// $Id: internal.h,v 1.16 2008/10/25 21:35:44 tom Exp $
     1361+// $Id: internal.h,v 1.17 2008/12/07 02:07:34 juergen Exp $
     1362 
     1363 #ifndef NCURSES_CPLUS_INTERNAL_H
     1364 #define NCURSES_CPLUS_INTERNAL_H 1
     1365@@ -44,6 +44,11 @@
     1366 #define MODULE_ID(id) /*nothing*/
     1367 #endif
     1368 
     1369+#ifdef __MINGW32__
     1370+#include <nc_mingw.h>
     1371+#undef KEY_EVENT
     1372+#endif
     1373+
     1374 #ifndef _QNX_SOURCE
     1375 #include <stdlib.h>
     1376 #include <string.h>
    13121377diff -Naur ncurses-5.7.orig/c++/Makefile.in ncurses-5.7/c++/Makefile.in
    13131378--- ncurses-5.7.orig/c++/Makefile.in    2007-04-28 08:29:12.000000000 -0700
    1314 +++ ncurses-5.7/c++/Makefile.in 2009-03-22 21:17:11.616376588 -0700
     1379+++ ncurses-5.7/c++/Makefile.in 2009-06-05 14:01:30.000000000 -0700
    13151380@@ -1,6 +1,6 @@
    13161381-# $Id: Makefile.in,v 1.84 2007/04/28 15:29:12 tom Exp $
    1317 +# $Id: Makefile.in,v 1.86 2009/03/21 20:02:11 Charles.Wilson Exp $
     1382+# $Id: Makefile.in,v 1.87 2009/03/28 18:22:39 Charles.Wilson Exp $
    13181383 ##############################################################################
    13191384-# Copyright (c) 1998-2006,2007 Free Software Foundation, Inc.                #
     
    13221387 # Permission is hereby granted, free of charge, to any person obtaining a    #
    13231388 # copy of this software and associated documentation files (the "Software"), #
    1324 @@ -61,10 +61,10 @@
     1389@@ -55,16 +55,17 @@
     1390 LIBTOOL_LINK   = @LIB_LINK@
     1391 LIBTOOL_INSTALL        = @LIB_INSTALL@
     1392 LIBTOOL_UNINSTALL = @LIB_UNINSTALL@
     1393+LT_UNDEF       = @LT_UNDEF@
     1394 
     1395 INSTALL                = @INSTALL@
     1396 INSTALL_LIB    = @INSTALL@ @INSTALL_LIB@
    13251397 INSTALL_DATA   = @INSTALL_DATA@
    13261398 
     
    13351407 
    13361408 CXX            = @CXX@
    1337 @@ -95,7 +95,7 @@
     1409@@ -95,7 +96,7 @@
    13381410 
    13391411 LINK           = @LINK_PROGS@ $(LIBTOOL_LINK) @CXXLDFLAGS@
     
    13441416 LIBROOT                = ncurses++
    13451417 
    1346 @@ -153,7 +153,7 @@
     1418@@ -153,14 +154,14 @@
    13471419        $(MODEL)/cursesmain$o
    13481420 
     
    13531425 
    13541426 ../lib/$(LIBNAME_LIBTOOL) : $(LIB_OBJS)
     1427        cd ../lib && $(LIBTOOL_LINK) $(CXX) $(CXXFLAGS) \
     1428                -o $(LIBNAME) $(LIB_OBJS:$o=.lo) \
     1429                -rpath $(INSTALL_PREFIX)$(libdir) \
     1430-               -version-info $(NCURSES_MAJOR):$(NCURSES_MINOR) $(SHLIB_LIST)
     1431+               -version-info $(NCURSES_MAJOR):$(NCURSES_MINOR) $(LT_UNDEF) $(SHLIB_LIST)
     1432 
     1433 OBJS_DEMO = $(MODEL)/demo$o
     1434 
    13551435diff -Naur ncurses-5.7.orig/config.guess ncurses-5.7/config.guess
    13561436--- ncurses-5.7.orig/config.guess       2008-08-30 13:25:07.000000000 -0700
    1357 +++ ncurses-5.7/config.guess    2009-03-22 21:16:55.651353540 -0700
     1437+++ ncurses-5.7/config.guess    2009-06-05 14:01:03.000000000 -0700
    13581438@@ -4,7 +4,7 @@
    13591439 #   2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
     
    14251505diff -Naur ncurses-5.7.orig/config.sub ncurses-5.7/config.sub
    14261506--- ncurses-5.7.orig/config.sub 2008-08-30 13:25:02.000000000 -0700
    1427 +++ ncurses-5.7/config.sub      2009-03-22 21:16:55.651353540 -0700
     1507+++ ncurses-5.7/config.sub      2009-06-05 14:01:03.000000000 -0700
    14281508@@ -4,7 +4,7 @@
    14291509 #   2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
     
    15091589diff -Naur ncurses-5.7.orig/configure ncurses-5.7/configure
    15101590--- ncurses-5.7.orig/configure  2008-10-25 17:04:38.000000000 -0700
    1511 +++ ncurses-5.7/configure       2009-03-22 21:17:11.632377985 -0700
     1591+++ ncurses-5.7/configure       2009-06-05 14:01:31.000000000 -0700
    15121592@@ -1,7 +1,7 @@
    15131593 #! /bin/sh
    15141594-# From configure.in Revision: 1.454 .
    1515 +# From configure.in Revision: 1.469 .
     1595+# From configure.in Revision: 1.470 .
    15161596 # Guess values for system-dependent variables and create Makefiles.
    15171597-# Generated by Autoconf 2.52.20080325.
     
    38203900+echo "${ECHO_T}no" >&6
    38213901+fi
    3822 +
     3902 
     3903-if test -z "$AR_OPTS" ; then
     3904-       AR_OPTS=rv
    38233905+fi
    38243906+if test -z "$ac_cv_prog_AR"; then
     
    38453927+done
    38463928 
    3847 -if test -z "$AR_OPTS" ; then
    3848 -       AR_OPTS=rv
    38493929+  test -z "$ac_cv_prog_ac_ct_AR" && ac_cv_prog_ac_ct_AR="ar"
    38503930+fi
    3851 +fi
     3931 fi
    38523932+ac_ct_AR=$ac_cv_prog_ac_ct_AR
    38533933+if test -n "$ac_ct_AR"; then
     
    38583938+echo "${ECHO_T}no" >&6
    38593939+fi
    3860  
     3940+
    38613941+  AR=$ac_ct_AR
    38623942+else
    38633943+  AR="$ac_cv_prog_AR"
    3864  fi
    3865  
    3866 -cf_cv_subst_AR_OPTS=$AR_OPTS
    3867 -echo "$as_me:3840: result: $AR_OPTS" >&5
    3868 -echo "${ECHO_T}$AR_OPTS" >&6
     3944+fi
     3945+
    38693946+echo "$as_me:4048: checking for options to update archives" >&5
    38703947+echo $ECHO_N "checking for options to update archives... $ECHO_C" >&6
     
    38783955+               rm -f conftest.$ac_cv_objext
    38793956+               rm -f conftest.a
    3880 +
     3957 
     3958-cf_cv_subst_AR_OPTS=$AR_OPTS
     3959-echo "$as_me:3840: result: $AR_OPTS" >&5
     3960-echo "${ECHO_T}$AR_OPTS" >&6
    38813961+               cat >conftest.$ac_ext <<EOF
    38823962+#line 4061 "configure"
     
    40934173 fi
    40944174 done
    4095 @@ -4106,19 +4351,19 @@
     4175@@ -4106,20 +4351,20 @@
    40964176 LIBTOOL=$ac_cv_path_LIBTOOL
    40974177 
     
    41154195    { (exit 1); exit 1; }; }
    41164196-       fi
     4197-       LIB_CREATE='${LIBTOOL} --mode=link ${CC} -rpath ${DESTDIR}${libdir} -version-info `cut -f1 ${srcdir}/VERSION` ${LIBTOOL_OPTS} -o'
    41174198+       fi
    4118         LIB_CREATE='${LIBTOOL} --mode=link ${CC} -rpath ${DESTDIR}${libdir} -version-info `cut -f1 ${srcdir}/VERSION` ${LIBTOOL_OPTS} -o'
     4199+       LIB_CREATE='${LIBTOOL} --mode=link ${CC} -rpath ${DESTDIR}${libdir} -version-info `cut -f1 ${srcdir}/VERSION` ${LIBTOOL_OPTS} ${LT_UNDEF} -o'
    41194200        LIB_OBJECT='${OBJECTS:.o=.lo}'
    41204201        LIB_SUFFIX=.la
    4121 @@ -4130,24 +4375,31 @@
     4202        LIB_CLEAN='${LIBTOOL} --mode=clean'
     4203@@ -4130,24 +4375,32 @@
    41224204        LIB_PREP=:
    41234205 
     
    41434225 
    41444226+       # special hack to add -no-undefined (which libtool should do for itself)
     4227+       LT_UNDEF=
    41454228+       case "$cf_cv_system_name" in #(vi
    41464229+       cygwin*|mingw32*|uwin*|aix[456]) #(vi
    4147 +               LIBTOOL="$LIBTOOL -no-undefined"
     4230+               LT_UNDEF=-no-undefined
    41484231+               ;;
    41494232+       esac
     
    41534236-       1.[5-9]*|[2-9]*)
    41544237+       case $cf_cv_libtool_version in #(vi
    4155 +       1.[5-9]*|[2-9]*) #(vi
     4238+       1.[5-9]*|[2-9].[0-9.a-z]*) #(vi
    41564239                LIBTOOL_CXX="$LIBTOOL --tag=CXX"
    41574240                LIBTOOL="$LIBTOOL --tag=CC"
    41584241                ;;
    4159 @@ -4168,7 +4420,7 @@
     4242@@ -4168,7 +4421,7 @@
    41604243 
    41614244 else
    41624245 
    41634246-echo "$as_me:4171: checking if you want to build shared libraries" >&5
    4164 +echo "$as_me:4423: checking if you want to build shared libraries" >&5
     4247+echo "$as_me:4424: checking if you want to build shared libraries" >&5
    41654248 echo $ECHO_N "checking if you want to build shared libraries... $ECHO_C" >&6
    41664249 
    41674250 # Check whether --with-shared or --without-shared was given.
    4168 @@ -4178,11 +4430,11 @@
     4251@@ -4178,11 +4431,11 @@
    41694252 else
    41704253   with_shared=no
    41714254 fi;
    41724255-echo "$as_me:4181: result: $with_shared" >&5
    4173 +echo "$as_me:4433: result: $with_shared" >&5
     4256+echo "$as_me:4434: result: $with_shared" >&5
    41744257 echo "${ECHO_T}$with_shared" >&6
    41754258 test "$with_shared" = "yes" && cf_list_models="$cf_list_models shared"
    41764259 
    41774260-echo "$as_me:4185: checking if you want to build static libraries" >&5
    4178 +echo "$as_me:4437: checking if you want to build static libraries" >&5
     4261+echo "$as_me:4438: checking if you want to build static libraries" >&5
    41794262 echo $ECHO_N "checking if you want to build static libraries... $ECHO_C" >&6
    41804263 
    41814264 # Check whether --with-normal or --without-normal was given.
    4182 @@ -4192,11 +4444,11 @@
     4265@@ -4192,11 +4445,11 @@
    41834266 else
    41844267   with_normal=yes
    41854268 fi;
    41864269-echo "$as_me:4195: result: $with_normal" >&5
    4187 +echo "$as_me:4447: result: $with_normal" >&5
     4270+echo "$as_me:4448: result: $with_normal" >&5
    41884271 echo "${ECHO_T}$with_normal" >&6
    41894272 test "$with_normal" = "yes" && cf_list_models="$cf_list_models normal"
    41904273 
    41914274-echo "$as_me:4199: checking if you want to build debug libraries" >&5
    4192 +echo "$as_me:4451: checking if you want to build debug libraries" >&5
     4275+echo "$as_me:4452: checking if you want to build debug libraries" >&5
    41934276 echo $ECHO_N "checking if you want to build debug libraries... $ECHO_C" >&6
    41944277 
    41954278 # Check whether --with-debug or --without-debug was given.
    4196 @@ -4206,11 +4458,11 @@
     4279@@ -4206,11 +4459,11 @@
    41974280 else
    41984281   with_debug=yes
    41994282 fi;
    42004283-echo "$as_me:4209: result: $with_debug" >&5
    4201 +echo "$as_me:4461: result: $with_debug" >&5
     4284+echo "$as_me:4462: result: $with_debug" >&5
    42024285 echo "${ECHO_T}$with_debug" >&6
    42034286 test "$with_debug" = "yes" && cf_list_models="$cf_list_models debug"
    42044287 
    42054288-echo "$as_me:4213: checking if you want to build profiling libraries" >&5
    4206 +echo "$as_me:4465: checking if you want to build profiling libraries" >&5
     4289+echo "$as_me:4466: checking if you want to build profiling libraries" >&5
    42074290 echo $ECHO_N "checking if you want to build profiling libraries... $ECHO_C" >&6
    42084291 
    42094292 # Check whether --with-profile or --without-profile was given.
    4210 @@ -4220,7 +4472,7 @@
     4293@@ -4220,7 +4473,7 @@
    42114294 else
    42124295   with_profile=no
    42134296 fi;
    42144297-echo "$as_me:4223: result: $with_profile" >&5
    4215 +echo "$as_me:4475: result: $with_profile" >&5
     4298+echo "$as_me:4476: result: $with_profile" >&5
    42164299 echo "${ECHO_T}$with_profile" >&6
    42174300 test "$with_profile" = "yes" && cf_list_models="$cf_list_models profile"
    42184301 
    4219 @@ -4228,19 +4480,19 @@
     4302@@ -4228,19 +4481,19 @@
    42204303 
    42214304 ###############################################################################
    42224305 
    42234306-echo "$as_me:4231: checking for specified models" >&5
    4224 +echo "$as_me:4483: checking for specified models" >&5
     4307+echo "$as_me:4484: checking for specified models" >&5
    42254308 echo $ECHO_N "checking for specified models... $ECHO_C" >&6
    42264309 test -z "$cf_list_models" && cf_list_models=normal
    42274310 test "$with_libtool" != "no" && cf_list_models=libtool
    42284311-echo "$as_me:4235: result: $cf_list_models" >&5
    4229 +echo "$as_me:4487: result: $cf_list_models" >&5
     4312+echo "$as_me:4488: result: $cf_list_models" >&5
    42304313 echo "${ECHO_T}$cf_list_models" >&6
    42314314 
     
    42334316 ### up test-applications.
    42344317-echo "$as_me:4240: checking for default model" >&5
    4235 +echo "$as_me:4492: checking for default model" >&5
     4318+echo "$as_me:4493: checking for default model" >&5
    42364319 echo $ECHO_N "checking for default model... $ECHO_C" >&6
    42374320 DFT_LWR_MODEL=`echo "$cf_list_models" | $AWK '{print $1}'`
    42384321-echo "$as_me:4243: result: $DFT_LWR_MODEL" >&5
    4239 +echo "$as_me:4495: result: $DFT_LWR_MODEL" >&5
     4322+echo "$as_me:4496: result: $DFT_LWR_MODEL" >&5
    42404323 echo "${ECHO_T}$DFT_LWR_MODEL" >&6
    42414324 
    42424325 DFT_UPR_MODEL=`echo "$DFT_LWR_MODEL" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%`
    4243 @@ -4269,7 +4521,7 @@
     4326@@ -4269,7 +4522,7 @@
    42444327 
    42454328 ###############################################################################
    42464329 
    42474330-echo "$as_me:4272: checking if you want to build a separate terminfo library" >&5
    4248 +echo "$as_me:4524: checking if you want to build a separate terminfo library" >&5
     4331+echo "$as_me:4525: checking if you want to build a separate terminfo library" >&5
    42494332 echo $ECHO_N "checking if you want to build a separate terminfo library... $ECHO_C" >&6
    42504333 
    42514334 # Check whether --with-termlib or --without-termlib was given.
    4252 @@ -4279,10 +4531,10 @@
     4335@@ -4279,10 +4532,10 @@
    42534336 else
    42544337   with_termlib=no
    42554338 fi;
    42564339-echo "$as_me:4282: result: $with_termlib" >&5
    4257 +echo "$as_me:4534: result: $with_termlib" >&5
     4340+echo "$as_me:4535: result: $with_termlib" >&5
    42584341 echo "${ECHO_T}$with_termlib" >&6
    42594342 
    42604343-echo "$as_me:4285: checking if you want to build a separate tic library" >&5
    4261 +echo "$as_me:4537: checking if you want to build a separate tic library" >&5
     4344+echo "$as_me:4538: checking if you want to build a separate tic library" >&5
    42624345 echo $ECHO_N "checking if you want to build a separate tic library... $ECHO_C" >&6
    42634346 
    42644347 # Check whether --with-ticlib or --without-ticlib was given.
    4265 @@ -4292,13 +4544,13 @@
     4348@@ -4292,13 +4545,13 @@
    42664349 else
    42674350   with_ticlib=no
    42684351 fi;
    42694352-echo "$as_me:4295: result: $with_ticlib" >&5
    4270 +echo "$as_me:4547: result: $with_ticlib" >&5
     4353+echo "$as_me:4548: result: $with_ticlib" >&5
    42714354 echo "${ECHO_T}$with_ticlib" >&6
    42724355 
     
    42754358 
    42764359-echo "$as_me:4301: checking if you want to link with the GPM mouse library" >&5
    4277 +echo "$as_me:4553: checking if you want to link with the GPM mouse library" >&5
     4360+echo "$as_me:4554: checking if you want to link with the GPM mouse library" >&5
    42784361 echo $ECHO_N "checking if you want to link with the GPM mouse library... $ECHO_C" >&6
    42794362 
    42804363 # Check whether --with-gpm or --without-gpm was given.
    4281 @@ -4308,27 +4560,27 @@
     4364@@ -4308,27 +4561,27 @@
    42824365 else
    42834366   with_gpm=maybe
    42844367 fi;
    42854368-echo "$as_me:4311: result: $with_gpm" >&5
    4286 +echo "$as_me:4563: result: $with_gpm" >&5
     4369+echo "$as_me:4564: result: $with_gpm" >&5
    42874370 echo "${ECHO_T}$with_gpm" >&6
    42884371 
    42894372 if test "$with_gpm" != no ; then
    42904373-       echo "$as_me:4315: checking for gpm.h" >&5
    4291 +       echo "$as_me:4567: checking for gpm.h" >&5
     4374+       echo "$as_me:4568: checking for gpm.h" >&5
    42924375 echo $ECHO_N "checking for gpm.h... $ECHO_C" >&6
    42934376 if test "${ac_cv_header_gpm_h+set}" = set; then
     
    42964379   cat >conftest.$ac_ext <<_ACEOF
    42974380-#line 4321 "configure"
    4298 +#line 4573 "configure"
     4381+#line 4574 "configure"
    42994382 #include "confdefs.h"
    43004383 #include <gpm.h>
    43014384 _ACEOF
    43024385-if { (eval echo "$as_me:4325: \"$ac_cpp conftest.$ac_ext\"") >&5
    4303 +if { (eval echo "$as_me:4577: \"$ac_cpp conftest.$ac_ext\"") >&5
     4386+if { (eval echo "$as_me:4578: \"$ac_cpp conftest.$ac_ext\"") >&5
    43044387   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
    43054388   ac_status=$?
     
    43084391   cat conftest.err >&5
    43094392-  echo "$as_me:4331: \$? = $ac_status" >&5
    4310 +  echo "$as_me:4583: \$? = $ac_status" >&5
     4393+  echo "$as_me:4584: \$? = $ac_status" >&5
    43114394   (exit $ac_status); } >/dev/null; then
    43124395   if test -s conftest.err; then
    43134396     ac_cpp_err=$ac_c_preproc_warn_flag
    4314 @@ -4347,7 +4599,7 @@
     4397@@ -4347,7 +4600,7 @@
    43154398 fi
    43164399 rm -f conftest.err conftest.$ac_ext
    43174400 fi
    43184401-echo "$as_me:4350: result: $ac_cv_header_gpm_h" >&5
    4319 +echo "$as_me:4602: result: $ac_cv_header_gpm_h" >&5
     4402+echo "$as_me:4603: result: $ac_cv_header_gpm_h" >&5
    43204403 echo "${ECHO_T}$ac_cv_header_gpm_h" >&6
    43214404 if test $ac_cv_header_gpm_h = yes; then
    43224405 
    4323 @@ -4358,14 +4610,14 @@
     4406@@ -4358,14 +4611,14 @@
    43244407                if test "$with_gpm" != yes && test "$with_gpm" != maybe ; then
    43254408                        test -n "$verbose" && echo "    assuming we really have GPM library" 1>&6
    43264409 
    43274410-echo "${as_me-configure}:4361: testing assuming we really have GPM library ..." 1>&5
    4328 +echo "${as_me-configure}:4613: testing assuming we really have GPM library ..." 1>&5
     4411+echo "${as_me-configure}:4614: testing assuming we really have GPM library ..." 1>&5
    43294412 
    43304413                        cat >>confdefs.h <<\EOF
     
    43344417                else
    43354418-                       echo "$as_me:4368: checking for Gpm_Open in -lgpm" >&5
    4336 +                       echo "$as_me:4620: checking for Gpm_Open in -lgpm" >&5
     4419+                       echo "$as_me:4621: checking for Gpm_Open in -lgpm" >&5
    43374420 echo $ECHO_N "checking for Gpm_Open in -lgpm... $ECHO_C" >&6
    43384421 if test "${ac_cv_lib_gpm_Gpm_Open+set}" = set; then
    43394422   echo $ECHO_N "(cached) $ECHO_C" >&6
    4340 @@ -4373,7 +4625,7 @@
     4423@@ -4373,7 +4626,7 @@
    43414424   ac_check_lib_save_LIBS=$LIBS
    43424425 LIBS="-lgpm  $LIBS"
    43434426 cat >conftest.$ac_ext <<_ACEOF
    43444427-#line 4376 "configure"
    4345 +#line 4628 "configure"
     4428+#line 4629 "configure"
    43464429 #include "confdefs.h"
    43474430 
    43484431 /* Override any gcc2 internal prototype to avoid an error.  */
    4349 @@ -4392,16 +4644,16 @@
     4432@@ -4392,16 +4645,16 @@
    43504433 }
    43514434 _ACEOF
    43524435 rm -f conftest.$ac_objext conftest$ac_exeext
    43534436-if { (eval echo "$as_me:4395: \"$ac_link\"") >&5
    4354 +if { (eval echo "$as_me:4647: \"$ac_link\"") >&5
     4437+if { (eval echo "$as_me:4648: \"$ac_link\"") >&5
    43554438   (eval $ac_link) 2>&5
    43564439   ac_status=$?
    43574440-  echo "$as_me:4398: \$? = $ac_status" >&5
    4358 +  echo "$as_me:4650: \$? = $ac_status" >&5
     4441+  echo "$as_me:4651: \$? = $ac_status" >&5
    43594442   (exit $ac_status); } &&
    43604443          { ac_try='test -s conftest$ac_exeext'
    43614444-  { (eval echo "$as_me:4401: \"$ac_try\"") >&5
    4362 +  { (eval echo "$as_me:4653: \"$ac_try\"") >&5
     4445+  { (eval echo "$as_me:4654: \"$ac_try\"") >&5
    43634446   (eval $ac_try) 2>&5
    43644447   ac_status=$?
    43654448-  echo "$as_me:4404: \$? = $ac_status" >&5
    4366 +  echo "$as_me:4656: \$? = $ac_status" >&5
     4449+  echo "$as_me:4657: \$? = $ac_status" >&5
    43674450   (exit $ac_status); }; }; then
    43684451   ac_cv_lib_gpm_Gpm_Open=yes
    43694452 else
    4370 @@ -4412,13 +4664,13 @@
     4453@@ -4412,13 +4665,13 @@
    43714454 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    43724455 LIBS=$ac_check_lib_save_LIBS
    43734456 fi
    43744457-echo "$as_me:4415: result: $ac_cv_lib_gpm_Gpm_Open" >&5
    4375 +echo "$as_me:4667: result: $ac_cv_lib_gpm_Gpm_Open" >&5
     4458+echo "$as_me:4668: result: $ac_cv_lib_gpm_Gpm_Open" >&5
    43764459 echo "${ECHO_T}$ac_cv_lib_gpm_Gpm_Open" >&6
    43774460 if test $ac_cv_lib_gpm_Gpm_Open = yes; then
     
    43804463 
    43814464-                               { { echo "$as_me:4421: error: Cannot link with GPM library" >&5
    4382 +                               { { echo "$as_me:4673: error: Cannot link with GPM library" >&5
     4465+                               { { echo "$as_me:4674: error: Cannot link with GPM library" >&5
    43834466 echo "$as_me: error: Cannot link with GPM library" >&2;}
    43844467    { (exit 1); exit 1; }; }
    43854468                fi
    4386 @@ -4428,7 +4680,7 @@
     4469@@ -4428,7 +4681,7 @@
    43874470 
    43884471 else
    43894472 
    43904473-               test "$with_gpm" != maybe && { echo "$as_me:4431: WARNING: Cannot find GPM header" >&5
    4391 +               test "$with_gpm" != maybe && { echo "$as_me:4683: WARNING: Cannot find GPM header" >&5
     4474+               test "$with_gpm" != maybe && { echo "$as_me:4684: WARNING: Cannot find GPM header" >&5
    43924475 echo "$as_me: WARNING: Cannot find GPM header" >&2;}
    43934476                with_gpm=no
    43944477 
    4395 @@ -4437,7 +4689,7 @@
     4478@@ -4437,7 +4690,7 @@
    43964479 fi
    43974480 
    43984481 if test "$with_gpm" != no ; then
    43994482-       echo "$as_me:4440: checking if you want to load GPM dynamically" >&5
    4400 +       echo "$as_me:4692: checking if you want to load GPM dynamically" >&5
     4483+       echo "$as_me:4693: checking if you want to load GPM dynamically" >&5
    44014484 echo $ECHO_N "checking if you want to load GPM dynamically... $ECHO_C" >&6
    44024485 
    44034486 # Check whether --with-dlsym or --without-dlsym was given.
    4404 @@ -4447,18 +4699,18 @@
     4487@@ -4447,18 +4700,18 @@
    44054488 else
    44064489   with_dlsym=yes
    44074490 fi;
    44084491-       echo "$as_me:4450: result: $with_dlsym" >&5
    4409 +       echo "$as_me:4702: result: $with_dlsym" >&5
     4492+       echo "$as_me:4703: result: $with_dlsym" >&5
    44104493 echo "${ECHO_T}$with_dlsym" >&6
    44114494        if test "$with_dlsym" = yes ; then
     
    44134496 cf_have_dlsym=no
    44144497-echo "$as_me:4455: checking for dlsym" >&5
    4415 +echo "$as_me:4707: checking for dlsym" >&5
     4498+echo "$as_me:4708: checking for dlsym" >&5
    44164499 echo $ECHO_N "checking for dlsym... $ECHO_C" >&6
    44174500 if test "${ac_cv_func_dlsym+set}" = set; then
     
    44204503   cat >conftest.$ac_ext <<_ACEOF
    44214504-#line 4461 "configure"
    4422 +#line 4713 "configure"
     4505+#line 4714 "configure"
    44234506 #include "confdefs.h"
    44244507 /* System header to define __stub macros and hopefully few prototypes,
    44254508     which can conflict with char dlsym (); below.  */
    4426 @@ -4489,16 +4741,16 @@
     4509@@ -4489,16 +4742,16 @@
    44274510 }
    44284511 _ACEOF
    44294512 rm -f conftest.$ac_objext conftest$ac_exeext
    44304513-if { (eval echo "$as_me:4492: \"$ac_link\"") >&5
    4431 +if { (eval echo "$as_me:4744: \"$ac_link\"") >&5
     4514+if { (eval echo "$as_me:4745: \"$ac_link\"") >&5
    44324515   (eval $ac_link) 2>&5
    44334516   ac_status=$?
    44344517-  echo "$as_me:4495: \$? = $ac_status" >&5
    4435 +  echo "$as_me:4747: \$? = $ac_status" >&5
     4518+  echo "$as_me:4748: \$? = $ac_status" >&5
    44364519   (exit $ac_status); } &&
    44374520          { ac_try='test -s conftest$ac_exeext'
    44384521-  { (eval echo "$as_me:4498: \"$ac_try\"") >&5
    4439 +  { (eval echo "$as_me:4750: \"$ac_try\"") >&5
     4522+  { (eval echo "$as_me:4751: \"$ac_try\"") >&5
    44404523   (eval $ac_try) 2>&5
    44414524   ac_status=$?
    44424525-  echo "$as_me:4501: \$? = $ac_status" >&5
    4443 +  echo "$as_me:4753: \$? = $ac_status" >&5
     4526+  echo "$as_me:4754: \$? = $ac_status" >&5
    44444527   (exit $ac_status); }; }; then
    44454528   ac_cv_func_dlsym=yes
    44464529 else
    4447 @@ -4508,14 +4760,14 @@
     4530@@ -4508,14 +4761,14 @@
    44484531 fi
    44494532 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    44504533 fi
    44514534-echo "$as_me:4511: result: $ac_cv_func_dlsym" >&5
    4452 +echo "$as_me:4763: result: $ac_cv_func_dlsym" >&5
     4535+echo "$as_me:4764: result: $ac_cv_func_dlsym" >&5
    44534536 echo "${ECHO_T}$ac_cv_func_dlsym" >&6
    44544537 if test $ac_cv_func_dlsym = yes; then
     
    44584541 cf_have_libdl=no
    44594542-echo "$as_me:4518: checking for dlsym in -ldl" >&5
    4460 +echo "$as_me:4770: checking for dlsym in -ldl" >&5
     4543+echo "$as_me:4771: checking for dlsym in -ldl" >&5
    44614544 echo $ECHO_N "checking for dlsym in -ldl... $ECHO_C" >&6
    44624545 if test "${ac_cv_lib_dl_dlsym+set}" = set; then
    44634546   echo $ECHO_N "(cached) $ECHO_C" >&6
    4464 @@ -4523,7 +4775,7 @@
     4547@@ -4523,7 +4776,7 @@
    44654548   ac_check_lib_save_LIBS=$LIBS
    44664549 LIBS="-ldl  $LIBS"
    44674550 cat >conftest.$ac_ext <<_ACEOF
    44684551-#line 4526 "configure"
    4469 +#line 4778 "configure"
     4552+#line 4779 "configure"
    44704553 #include "confdefs.h"
    44714554 
    44724555 /* Override any gcc2 internal prototype to avoid an error.  */
    4473 @@ -4542,16 +4794,16 @@
     4556@@ -4542,16 +4795,16 @@
    44744557 }
    44754558 _ACEOF
    44764559 rm -f conftest.$ac_objext conftest$ac_exeext
    44774560-if { (eval echo "$as_me:4545: \"$ac_link\"") >&5
    4478 +if { (eval echo "$as_me:4797: \"$ac_link\"") >&5
     4561+if { (eval echo "$as_me:4798: \"$ac_link\"") >&5
    44794562   (eval $ac_link) 2>&5
    44804563   ac_status=$?
    44814564-  echo "$as_me:4548: \$? = $ac_status" >&5
    4482 +  echo "$as_me:4800: \$? = $ac_status" >&5
     4565+  echo "$as_me:4801: \$? = $ac_status" >&5
    44834566   (exit $ac_status); } &&
    44844567          { ac_try='test -s conftest$ac_exeext'
    44854568-  { (eval echo "$as_me:4551: \"$ac_try\"") >&5
    4486 +  { (eval echo "$as_me:4803: \"$ac_try\"") >&5
     4569+  { (eval echo "$as_me:4804: \"$ac_try\"") >&5
    44874570   (eval $ac_try) 2>&5
    44884571   ac_status=$?
    44894572-  echo "$as_me:4554: \$? = $ac_status" >&5
    4490 +  echo "$as_me:4806: \$? = $ac_status" >&5
     4573+  echo "$as_me:4807: \$? = $ac_status" >&5
    44914574   (exit $ac_status); }; }; then
    44924575   ac_cv_lib_dl_dlsym=yes
    44934576 else
    4494 @@ -4562,7 +4814,7 @@
     4577@@ -4562,7 +4815,7 @@
    44954578 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    44964579 LIBS=$ac_check_lib_save_LIBS
    44974580 fi
    44984581-echo "$as_me:4565: result: $ac_cv_lib_dl_dlsym" >&5
    4499 +echo "$as_me:4817: result: $ac_cv_lib_dl_dlsym" >&5
     4582+echo "$as_me:4818: result: $ac_cv_lib_dl_dlsym" >&5
    45004583 echo "${ECHO_T}$ac_cv_lib_dl_dlsym" >&6
    45014584 if test $ac_cv_lib_dl_dlsym = yes; then
    45024585 
    4503 @@ -4575,10 +4827,10 @@
     4586@@ -4575,10 +4828,10 @@
    45044587 if test "$cf_have_dlsym" = yes ; then
    45054588        test "$cf_have_libdl" = yes && LIBS="-ldl $LIBS"
    45064589 
    45074590-       echo "$as_me:4578: checking whether able to link to dl*() functions" >&5
    4508 +       echo "$as_me:4830: checking whether able to link to dl*() functions" >&5
     4591+       echo "$as_me:4831: checking whether able to link to dl*() functions" >&5
    45094592 echo $ECHO_N "checking whether able to link to dl*() functions... $ECHO_C" >&6
    45104593        cat >conftest.$ac_ext <<_ACEOF
    45114594-#line 4581 "configure"
    4512 +#line 4833 "configure"
     4595+#line 4834 "configure"
    45134596 #include "confdefs.h"
    45144597 #include <dlfcn.h>
    45154598 int
    4516 @@ -4596,16 +4848,16 @@
     4599@@ -4596,16 +4849,16 @@
    45174600 }
    45184601 _ACEOF
    45194602 rm -f conftest.$ac_objext conftest$ac_exeext
    45204603-if { (eval echo "$as_me:4599: \"$ac_link\"") >&5
    4521 +if { (eval echo "$as_me:4851: \"$ac_link\"") >&5
     4604+if { (eval echo "$as_me:4852: \"$ac_link\"") >&5
    45224605   (eval $ac_link) 2>&5
    45234606   ac_status=$?
    45244607-  echo "$as_me:4602: \$? = $ac_status" >&5
    4525 +  echo "$as_me:4854: \$? = $ac_status" >&5
     4608+  echo "$as_me:4855: \$? = $ac_status" >&5
    45264609   (exit $ac_status); } &&
    45274610          { ac_try='test -s conftest$ac_exeext'
    45284611-  { (eval echo "$as_me:4605: \"$ac_try\"") >&5
    4529 +  { (eval echo "$as_me:4857: \"$ac_try\"") >&5
     4612+  { (eval echo "$as_me:4858: \"$ac_try\"") >&5
    45304613   (eval $ac_try) 2>&5
    45314614   ac_status=$?
    45324615-  echo "$as_me:4608: \$? = $ac_status" >&5
    4533 +  echo "$as_me:4860: \$? = $ac_status" >&5
     4616+  echo "$as_me:4861: \$? = $ac_status" >&5
    45344617   (exit $ac_status); }; }; then
    45354618 
    45364619                cat >>confdefs.h <<\EOF
    4537 @@ -4616,15 +4868,15 @@
     4620@@ -4616,15 +4869,15 @@
    45384621   echo "$as_me: failed program was:" >&5
    45394622 cat conftest.$ac_ext >&5
    45404623 
    45414624-               { { echo "$as_me:4619: error: Cannot link test program for libdl" >&5
    4542 +               { { echo "$as_me:4871: error: Cannot link test program for libdl" >&5
     4625+               { { echo "$as_me:4872: error: Cannot link test program for libdl" >&5
    45434626 echo "$as_me: error: Cannot link test program for libdl" >&2;}
    45444627    { (exit 1); exit 1; }; }
     
    45464629 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    45474630-       echo "$as_me:4624: result: ok" >&5
    4548 +       echo "$as_me:4876: result: ok" >&5
     4631+       echo "$as_me:4877: result: ok" >&5
    45494632 echo "${ECHO_T}ok" >&6
    45504633 else
    45514634-       { { echo "$as_me:4627: error: Cannot find dlsym function" >&5
    4552 +       { { echo "$as_me:4879: error: Cannot find dlsym function" >&5
     4635+       { { echo "$as_me:4880: error: Cannot find dlsym function" >&5
    45534636 echo "$as_me: error: Cannot find dlsym function" >&2;}
    45544637    { (exit 1); exit 1; }; }
    45554638 fi
    4556 @@ -4632,12 +4884,12 @@
     4639@@ -4632,12 +4885,12 @@
    45574640                if test "$with_gpm" != yes ; then
    45584641                        test -n "$verbose" && echo "    assuming soname for gpm is $with_gpm" 1>&6
    45594642 
    45604643-echo "${as_me-configure}:4635: testing assuming soname for gpm is $with_gpm ..." 1>&5
    4561 +echo "${as_me-configure}:4887: testing assuming soname for gpm is $with_gpm ..." 1>&5
     4644+echo "${as_me-configure}:4888: testing assuming soname for gpm is $with_gpm ..." 1>&5
    45624645 
    45634646                        cf_cv_gpm_soname="$with_gpm"
     
    45654648 
    45664649-echo "$as_me:4640: checking for soname of gpm library" >&5
    4567 +echo "$as_me:4892: checking for soname of gpm library" >&5
     4650+echo "$as_me:4893: checking for soname of gpm library" >&5
    45684651 echo $ECHO_N "checking for soname of gpm library... $ECHO_C" >&6
    45694652 if test "${cf_cv_gpm_soname+set}" = set; then
    45704653   echo $ECHO_N "(cached) $ECHO_C" >&6
    4571 @@ -4655,15 +4907,15 @@
     4654@@ -4655,15 +4908,15 @@
    45724655 CF_EOF
    45734656 cf_save_LIBS="$LIBS"
    45744657        LIBS="-lgpm $LIBS"
    45754658-       if { (eval echo "$as_me:4658: \"$ac_compile\"") >&5
    4576 +       if { (eval echo "$as_me:4910: \"$ac_compile\"") >&5
     4659+       if { (eval echo "$as_me:4911: \"$ac_compile\"") >&5
    45774660   (eval $ac_compile) 2>&5
    45784661   ac_status=$?
    45794662-  echo "$as_me:4661: \$? = $ac_status" >&5
    4580 +  echo "$as_me:4913: \$? = $ac_status" >&5
     4663+  echo "$as_me:4914: \$? = $ac_status" >&5
    45814664   (exit $ac_status); } ; then
    45824665-               if { (eval echo "$as_me:4663: \"$ac_link\"") >&5
    4583 +               if { (eval echo "$as_me:4915: \"$ac_link\"") >&5
     4666+               if { (eval echo "$as_me:4916: \"$ac_link\"") >&5
    45844667   (eval $ac_link) 2>&5
    45854668   ac_status=$?
    45864669-  echo "$as_me:4666: \$? = $ac_status" >&5
    4587 +  echo "$as_me:4918: \$? = $ac_status" >&5
     4670+  echo "$as_me:4919: \$? = $ac_status" >&5
    45884671   (exit $ac_status); } ; then
    45894672                        cf_cv_gpm_soname=`ldd conftest$ac_exeext 2>/dev/null | sed -e 's,^.*/,,' -e 's, .*$,,' | fgrep libgpm.`
    45904673                        test -z "$cf_cv_gpm_soname" && cf_cv_gpm_soname=unknown
    4591 @@ -4674,7 +4926,7 @@
     4674@@ -4674,7 +4927,7 @@
    45924675 fi
    45934676 
    45944677 fi
    45954678-echo "$as_me:4677: result: $cf_cv_gpm_soname" >&5
    4596 +echo "$as_me:4929: result: $cf_cv_gpm_soname" >&5
     4679+echo "$as_me:4930: result: $cf_cv_gpm_soname" >&5
    45974680 echo "${ECHO_T}$cf_cv_gpm_soname" >&6
    45984681 
    45994682                fi
    4600 @@ -4690,7 +4942,7 @@
     4683@@ -4690,7 +4943,7 @@
    46014684 #define HAVE_LIBGPM 1
    46024685 EOF
    46034686 
    46044687-echo "$as_me:4693: checking for Gpm_Wgetch in -lgpm" >&5
    4605 +echo "$as_me:4945: checking for Gpm_Wgetch in -lgpm" >&5
     4688+echo "$as_me:4946: checking for Gpm_Wgetch in -lgpm" >&5
    46064689 echo $ECHO_N "checking for Gpm_Wgetch in -lgpm... $ECHO_C" >&6
    46074690 if test "${ac_cv_lib_gpm_Gpm_Wgetch+set}" = set; then
    46084691   echo $ECHO_N "(cached) $ECHO_C" >&6
    4609 @@ -4698,7 +4950,7 @@
     4692@@ -4698,7 +4951,7 @@
    46104693   ac_check_lib_save_LIBS=$LIBS
    46114694 LIBS="-lgpm  $LIBS"
    46124695 cat >conftest.$ac_ext <<_ACEOF
    46134696-#line 4701 "configure"
    4614 +#line 4953 "configure"
     4697+#line 4954 "configure"
    46154698 #include "confdefs.h"
    46164699 
    46174700 /* Override any gcc2 internal prototype to avoid an error.  */
    4618 @@ -4717,16 +4969,16 @@
     4701@@ -4717,16 +4970,16 @@
    46194702 }
    46204703 _ACEOF
    46214704 rm -f conftest.$ac_objext conftest$ac_exeext
    46224705-if { (eval echo "$as_me:4720: \"$ac_link\"") >&5
    4623 +if { (eval echo "$as_me:4972: \"$ac_link\"") >&5
     4706+if { (eval echo "$as_me:4973: \"$ac_link\"") >&5
    46244707   (eval $ac_link) 2>&5
    46254708   ac_status=$?
    46264709-  echo "$as_me:4723: \$? = $ac_status" >&5
    4627 +  echo "$as_me:4975: \$? = $ac_status" >&5
     4710+  echo "$as_me:4976: \$? = $ac_status" >&5
    46284711   (exit $ac_status); } &&
    46294712          { ac_try='test -s conftest$ac_exeext'
    46304713-  { (eval echo "$as_me:4726: \"$ac_try\"") >&5
    4631 +  { (eval echo "$as_me:4978: \"$ac_try\"") >&5
     4714+  { (eval echo "$as_me:4979: \"$ac_try\"") >&5
    46324715   (eval $ac_try) 2>&5
    46334716   ac_status=$?
    46344717-  echo "$as_me:4729: \$? = $ac_status" >&5
    4635 +  echo "$as_me:4981: \$? = $ac_status" >&5
     4718+  echo "$as_me:4982: \$? = $ac_status" >&5
    46364719   (exit $ac_status); }; }; then
    46374720   ac_cv_lib_gpm_Gpm_Wgetch=yes
    46384721 else
    4639 @@ -4737,11 +4989,11 @@
     4722@@ -4737,11 +4990,11 @@
    46404723 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    46414724 LIBS=$ac_check_lib_save_LIBS
    46424725 fi
    46434726-echo "$as_me:4740: result: $ac_cv_lib_gpm_Gpm_Wgetch" >&5
    4644 +echo "$as_me:4992: result: $ac_cv_lib_gpm_Gpm_Wgetch" >&5
     4727+echo "$as_me:4993: result: $ac_cv_lib_gpm_Gpm_Wgetch" >&5
    46454728 echo "${ECHO_T}$ac_cv_lib_gpm_Gpm_Wgetch" >&6
    46464729 if test $ac_cv_lib_gpm_Gpm_Wgetch = yes; then
    46474730 
    46484731-echo "$as_me:4744: checking if GPM is weakly bound to curses library" >&5
    4649 +echo "$as_me:4996: checking if GPM is weakly bound to curses library" >&5
     4732+echo "$as_me:4997: checking if GPM is weakly bound to curses library" >&5
    46504733 echo $ECHO_N "checking if GPM is weakly bound to curses library... $ECHO_C" >&6
    46514734 if test "${cf_cv_check_gpm_wgetch+set}" = set; then
    46524735   echo $ECHO_N "(cached) $ECHO_C" >&6
    4653 @@ -4765,15 +5017,15 @@
     4736@@ -4765,15 +5018,15 @@
    46544737        # to rely on the static library, noting that some packagers may not
    46554738        # include it.
    46564739        LIBS="-static -lgpm -dynamic $LIBS"
    46574740-       if { (eval echo "$as_me:4768: \"$ac_compile\"") >&5
    4658 +       if { (eval echo "$as_me:5020: \"$ac_compile\"") >&5
     4741+       if { (eval echo "$as_me:5021: \"$ac_compile\"") >&5
    46594742   (eval $ac_compile) 2>&5
    46604743   ac_status=$?
    46614744-  echo "$as_me:4771: \$? = $ac_status" >&5
    4662 +  echo "$as_me:5023: \$? = $ac_status" >&5
     4745+  echo "$as_me:5024: \$? = $ac_status" >&5
    46634746   (exit $ac_status); } ; then
    46644747-               if { (eval echo "$as_me:4773: \"$ac_link\"") >&5
    4665 +               if { (eval echo "$as_me:5025: \"$ac_link\"") >&5
     4748+               if { (eval echo "$as_me:5026: \"$ac_link\"") >&5
    46664749   (eval $ac_link) 2>&5
    46674750   ac_status=$?
    46684751-  echo "$as_me:4776: \$? = $ac_status" >&5
    4669 +  echo "$as_me:5028: \$? = $ac_status" >&5
     4752+  echo "$as_me:5029: \$? = $ac_status" >&5
    46704753   (exit $ac_status); } ; then
    46714754                        cf_cv_check_gpm_wgetch=`nm conftest$ac_exeext | egrep '\<wgetch\>' | egrep '\<[vVwW]\>'`
    46724755                        test -n "$cf_cv_check_gpm_wgetch" && cf_cv_check_gpm_wgetch=yes
    4673 @@ -4785,11 +5037,11 @@
     4756@@ -4785,11 +5038,11 @@
    46744757 fi
    46754758 
    46764759 fi
    46774760-echo "$as_me:4788: result: $cf_cv_check_gpm_wgetch" >&5
    4678 +echo "$as_me:5040: result: $cf_cv_check_gpm_wgetch" >&5
     4761+echo "$as_me:5041: result: $cf_cv_check_gpm_wgetch" >&5
    46794762 echo "${ECHO_T}$cf_cv_check_gpm_wgetch" >&6
    46804763 
    46814764 if test "$cf_cv_check_gpm_wgetch" != yes ; then
    46824765-       { echo "$as_me:4792: WARNING: GPM library is already linked with curses - read the FAQ" >&5
    4683 +       { echo "$as_me:5044: WARNING: GPM library is already linked with curses - read the FAQ" >&5
     4766+       { echo "$as_me:5045: WARNING: GPM library is already linked with curses - read the FAQ" >&5
    46844767 echo "$as_me: WARNING: GPM library is already linked with curses - read the FAQ" >&2;}
    46854768 fi
    46864769 
    4687 @@ -4799,7 +5051,7 @@
     4770@@ -4799,7 +5052,7 @@
    46884771 
    46894772 # not everyone has "test -c"
    46904773 if test -c /dev/sysmouse 2>/dev/null ; then
    46914774-echo "$as_me:4802: checking if you want to use sysmouse" >&5
    4692 +echo "$as_me:5054: checking if you want to use sysmouse" >&5
     4775+echo "$as_me:5055: checking if you want to use sysmouse" >&5
    46934776 echo $ECHO_N "checking if you want to use sysmouse... $ECHO_C" >&6
    46944777 
    46954778 # Check whether --with-sysmouse or --without-sysmouse was given.
    4696 @@ -4811,7 +5063,7 @@
     4779@@ -4811,7 +5064,7 @@
    46974780 fi;
    46984781        if test "$cf_with_sysmouse" != no ; then
    46994782        cat >conftest.$ac_ext <<_ACEOF
    47004783-#line 4814 "configure"
    4701 +#line 5066 "configure"
     4784+#line 5067 "configure"
    47024785 #include "confdefs.h"
    47034786 
    47044787 #include <osreldate.h>
    4705 @@ -4834,16 +5086,16 @@
     4788@@ -4834,16 +5087,16 @@
    47064789 }
    47074790 _ACEOF
    47084791 rm -f conftest.$ac_objext
    47094792-if { (eval echo "$as_me:4837: \"$ac_compile\"") >&5
    4710 +if { (eval echo "$as_me:5089: \"$ac_compile\"") >&5
     4793+if { (eval echo "$as_me:5090: \"$ac_compile\"") >&5
    47114794   (eval $ac_compile) 2>&5
    47124795   ac_status=$?
    47134796-  echo "$as_me:4840: \$? = $ac_status" >&5
    4714 +  echo "$as_me:5092: \$? = $ac_status" >&5
     4797+  echo "$as_me:5093: \$? = $ac_status" >&5
    47154798   (exit $ac_status); } &&
    47164799          { ac_try='test -s conftest.$ac_objext'
    47174800-  { (eval echo "$as_me:4843: \"$ac_try\"") >&5
    4718 +  { (eval echo "$as_me:5095: \"$ac_try\"") >&5
     4801+  { (eval echo "$as_me:5096: \"$ac_try\"") >&5
    47194802   (eval $ac_try) 2>&5
    47204803   ac_status=$?
    47214804-  echo "$as_me:4846: \$? = $ac_status" >&5
    4722 +  echo "$as_me:5098: \$? = $ac_status" >&5
     4805+  echo "$as_me:5099: \$? = $ac_status" >&5
    47234806   (exit $ac_status); }; }; then
    47244807   cf_with_sysmouse=yes
    47254808 else
    4726 @@ -4853,7 +5105,7 @@
     4809@@ -4853,7 +5106,7 @@
    47274810 fi
    47284811 rm -f conftest.$ac_objext conftest.$ac_ext
    47294812        fi
    47304813-echo "$as_me:4856: result: $cf_with_sysmouse" >&5
    4731 +echo "$as_me:5108: result: $cf_with_sysmouse" >&5
     4814+echo "$as_me:5109: result: $cf_with_sysmouse" >&5
    47324815 echo "${ECHO_T}$cf_with_sysmouse" >&6
    47334816 test "$cf_with_sysmouse" = yes && cat >>confdefs.h <<\EOF
    47344817 #define USE_SYSMOUSE 1
    4735 @@ -4871,7 +5123,7 @@
     4818@@ -4871,7 +5124,7 @@
    47364819        test -n "$GXX" && test "${ac_cv_prog_cxx_g}" != yes && CXX_G_OPT=''
    47374820 fi
    47384821 
    47394822-echo "$as_me:4874: checking for default loader flags" >&5
    4740 +echo "$as_me:5126: checking for default loader flags" >&5
     4823+echo "$as_me:5127: checking for default loader flags" >&5
    47414824 echo $ECHO_N "checking for default loader flags... $ECHO_C" >&6
    47424825 case $DFT_LWR_MODEL in
    47434826 libtool) LD_MODEL=''   ;;
    4744 @@ -4880,13 +5132,13 @@
     4827@@ -4880,13 +5133,13 @@
    47454828 profile) LD_MODEL='-pg';;
    47464829 shared)  LD_MODEL=''   ;;
    47474830 esac
    47484831-echo "$as_me:4883: result: $LD_MODEL" >&5
    4749 +echo "$as_me:5135: result: $LD_MODEL" >&5
     4832+echo "$as_me:5136: result: $LD_MODEL" >&5
    47504833 echo "${ECHO_T}$LD_MODEL" >&6
    47514834 
     
    47544837 
    47554838-echo "$as_me:4889: checking if rpath option should be used" >&5
    4756 +echo "$as_me:5141: checking if rpath option should be used" >&5
     4839+echo "$as_me:5142: checking if rpath option should be used" >&5
    47574840 echo $ECHO_N "checking if rpath option should be used... $ECHO_C" >&6
    47584841 
    47594842 # Check whether --enable-rpath or --disable-rpath was given.
    4760 @@ -4896,10 +5148,10 @@
     4843@@ -4896,10 +5149,10 @@
    47614844 else
    47624845   cf_cv_ld_rpath=no
    47634846 fi;
    47644847-echo "$as_me:4899: result: $cf_cv_ld_rpath" >&5
    4765 +echo "$as_me:5151: result: $cf_cv_ld_rpath" >&5
     4848+echo "$as_me:5152: result: $cf_cv_ld_rpath" >&5
    47664849 echo "${ECHO_T}$cf_cv_ld_rpath" >&6
    47674850 
    47684851-echo "$as_me:4902: checking if shared libraries should be relinked during install" >&5
    4769 +echo "$as_me:5154: checking if shared libraries should be relinked during install" >&5
     4852+echo "$as_me:5155: checking if shared libraries should be relinked during install" >&5
    47704853 echo $ECHO_N "checking if shared libraries should be relinked during install... $ECHO_C" >&6
    47714854 
    47724855 # Check whether --enable-relink or --disable-relink was given.
    4773 @@ -4909,19 +5161,20 @@
     4856@@ -4909,19 +5162,20 @@
    47744857 else
    47754858   cf_cv_do_relink=yes
    47764859 fi;
    47774860-echo "$as_me:4912: result: $cf_cv_do_relink" >&5
    4778 +echo "$as_me:5164: result: $cf_cv_do_relink" >&5
     4861+echo "$as_me:5165: result: $cf_cv_do_relink" >&5
    47794862 echo "${ECHO_T}$cf_cv_do_relink" >&6
    47804863        ;;
     
    47904873 
    47914874-       echo "$as_me:4924: checking if release/abi version should be used for shared libs" >&5
    4792 +       echo "$as_me:5177: checking if release/abi version should be used for shared libs" >&5
     4875+       echo "$as_me:5178: checking if release/abi version should be used for shared libs" >&5
    47934876 echo $ECHO_N "checking if release/abi version should be used for shared libs... $ECHO_C" >&6
    47944877 
    47954878 # Check whether --with-shlib-version or --without-shlib-version was given.
    4796 @@ -4936,7 +5189,7 @@
     4879@@ -4936,7 +5190,7 @@
    47974880                cf_cv_shlib_version=$withval
    47984881                ;;
    47994882        *)
    48004883-               { { echo "$as_me:4939: error: option value must be one of: rel, abi, auto or no" >&5
    4801 +               { { echo "$as_me:5192: error: option value must be one of: rel, abi, auto or no" >&5
     4884+               { { echo "$as_me:5193: error: option value must be one of: rel, abi, auto or no" >&5
    48024885 echo "$as_me: error: option value must be one of: rel, abi, auto or no" >&2;}
    48034886    { (exit 1); exit 1; }; }
    48044887                ;;
    4805 @@ -4945,7 +5198,7 @@
     4888@@ -4945,7 +5199,7 @@
    48064889 else
    48074890   cf_cv_shlib_version=auto
    48084891 fi;
    48094892-       echo "$as_me:4948: result: $cf_cv_shlib_version" >&5
    4810 +       echo "$as_me:5201: result: $cf_cv_shlib_version" >&5
     4893+       echo "$as_me:5202: result: $cf_cv_shlib_version" >&5
    48114894 echo "${ECHO_T}$cf_cv_shlib_version" >&6
    48124895 
    48134896        cf_cv_rm_so_locs=no
    4814 @@ -4954,14 +5207,14 @@
     4897@@ -4954,14 +5208,14 @@
    48154898        CC_SHARED_OPTS=
    48164899        if test "$GCC" = yes
    48174900        then
    48184901-               echo "$as_me:4957: checking which $CC option to use" >&5
    4819 +               echo "$as_me:5210: checking which $CC option to use" >&5
     4902+               echo "$as_me:5211: checking which $CC option to use" >&5
    48204903 echo $ECHO_N "checking which $CC option to use... $ECHO_C" >&6
    48214904                cf_save_CFLAGS="$CFLAGS"
     
    48254908                        cat >conftest.$ac_ext <<_ACEOF
    48264909-#line 4964 "configure"
    4827 +#line 5217 "configure"
     4910+#line 5218 "configure"
    48284911 #include "confdefs.h"
    48294912 #include <stdio.h>
    48304913 int
    4831 @@ -4973,16 +5226,16 @@
     4914@@ -4973,16 +5227,16 @@
    48324915 }
    48334916 _ACEOF
    48344917 rm -f conftest.$ac_objext
    48354918-if { (eval echo "$as_me:4976: \"$ac_compile\"") >&5
    4836 +if { (eval echo "$as_me:5229: \"$ac_compile\"") >&5
     4919+if { (eval echo "$as_me:5230: \"$ac_compile\"") >&5
    48374920   (eval $ac_compile) 2>&5
    48384921   ac_status=$?
    48394922-  echo "$as_me:4979: \$? = $ac_status" >&5
    4840 +  echo "$as_me:5232: \$? = $ac_status" >&5
     4923+  echo "$as_me:5233: \$? = $ac_status" >&5
    48414924   (exit $ac_status); } &&
    48424925          { ac_try='test -s conftest.$ac_objext'
    48434926-  { (eval echo "$as_me:4982: \"$ac_try\"") >&5
    4844 +  { (eval echo "$as_me:5235: \"$ac_try\"") >&5
     4927+  { (eval echo "$as_me:5236: \"$ac_try\"") >&5
    48454928   (eval $ac_try) 2>&5
    48464929   ac_status=$?
    48474930-  echo "$as_me:4985: \$? = $ac_status" >&5
    4848 +  echo "$as_me:5238: \$? = $ac_status" >&5
     4931+  echo "$as_me:5239: \$? = $ac_status" >&5
    48494932   (exit $ac_status); }; }; then
    48504933   break
    48514934 else
    4852 @@ -4991,7 +5244,7 @@
     4935@@ -4991,7 +5245,7 @@
    48534936 fi
    48544937 rm -f conftest.$ac_objext conftest.$ac_ext
    48554938                done
    48564939-               echo "$as_me:4994: result: $CC_SHARED_OPTS" >&5
    4857 +               echo "$as_me:5247: result: $CC_SHARED_OPTS" >&5
     4940+               echo "$as_me:5248: result: $CC_SHARED_OPTS" >&5
    48584941 echo "${ECHO_T}$CC_SHARED_OPTS" >&6
    48594942                CFLAGS="$cf_save_CFLAGS"
    48604943        fi
    4861 @@ -4999,6 +5252,12 @@
     4944@@ -4999,6 +5253,12 @@
    48624945        cf_cv_shlib_version_infix=no
    48634946 
     
    48724955                MK_SHARED_LIB='${CC} ${CFLAGS} -o $@ -Xlinker -soname=`basename $@` -nostart -e 0'
    48734956                ;;
    4874 @@ -5027,7 +5286,7 @@
     4957@@ -5027,7 +5287,7 @@
    48754958                MK_SHARED_LIB='${CC} ${CFLAGS} -dynamiclib -install_name ${libdir}/`basename $@` -compatibility_version ${ABI_VERSION} -current_version ${ABI_VERSION} -o $@'
    48764959                test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=abi
    48774960                cf_cv_shlib_version_infix=yes
    48784961-               echo "$as_me:5030: checking if ld -search_paths_first works" >&5
    4879 +               echo "$as_me:5289: checking if ld -search_paths_first works" >&5
     4962+               echo "$as_me:5290: checking if ld -search_paths_first works" >&5
    48804963 echo $ECHO_N "checking if ld -search_paths_first works... $ECHO_C" >&6
    48814964 if test "${cf_cv_ldflags_search_paths_first+set}" = set; then
    48824965   echo $ECHO_N "(cached) $ECHO_C" >&6
    4883 @@ -5036,7 +5295,7 @@
     4966@@ -5036,7 +5296,7 @@
    48844967                        cf_save_LDFLAGS=$LDFLAGS
    48854968                        LDFLAGS="$LDFLAGS -Wl,-search_paths_first"
    48864969                        cat >conftest.$ac_ext <<_ACEOF
    48874970-#line 5039 "configure"
    4888 +#line 5298 "configure"
     4971+#line 5299 "configure"
    48894972 #include "confdefs.h"
    48904973 
    48914974 int
    4892 @@ -5048,16 +5307,16 @@
     4975@@ -5048,16 +5308,16 @@
    48934976 }
    48944977 _ACEOF
    48954978 rm -f conftest.$ac_objext conftest$ac_exeext
    48964979-if { (eval echo "$as_me:5051: \"$ac_link\"") >&5
    4897 +if { (eval echo "$as_me:5310: \"$ac_link\"") >&5
     4980+if { (eval echo "$as_me:5311: \"$ac_link\"") >&5
    48984981   (eval $ac_link) 2>&5
    48994982   ac_status=$?
    49004983-  echo "$as_me:5054: \$? = $ac_status" >&5
    4901 +  echo "$as_me:5313: \$? = $ac_status" >&5
     4984+  echo "$as_me:5314: \$? = $ac_status" >&5
    49024985   (exit $ac_status); } &&
    49034986          { ac_try='test -s conftest$ac_exeext'
    49044987-  { (eval echo "$as_me:5057: \"$ac_try\"") >&5
    4905 +  { (eval echo "$as_me:5316: \"$ac_try\"") >&5
     4988+  { (eval echo "$as_me:5317: \"$ac_try\"") >&5
    49064989   (eval $ac_try) 2>&5
    49074990   ac_status=$?
    49084991-  echo "$as_me:5060: \$? = $ac_status" >&5
    4909 +  echo "$as_me:5319: \$? = $ac_status" >&5
     4992+  echo "$as_me:5320: \$? = $ac_status" >&5
    49104993   (exit $ac_status); }; }; then
    49114994   cf_cv_ldflags_search_paths_first=yes
    49124995 else
    4913 @@ -5068,7 +5327,7 @@
     4996@@ -5068,7 +5328,7 @@
    49144997 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    49154998                                LDFLAGS=$cf_save_LDFLAGS
    49164999 fi
    49175000-echo "$as_me:5071: result: $cf_cv_ldflags_search_paths_first" >&5
    4918 +echo "$as_me:5330: result: $cf_cv_ldflags_search_paths_first" >&5
     5001+echo "$as_me:5331: result: $cf_cv_ldflags_search_paths_first" >&5
    49195002 echo "${ECHO_T}$cf_cv_ldflags_search_paths_first" >&6
    49205003                if test $cf_cv_ldflags_search_paths_first = yes; then
    49215004                        LDFLAGS="$LDFLAGS -Wl,-search_paths_first"
    4922 @@ -5090,10 +5349,10 @@
     5005@@ -5090,10 +5350,10 @@
    49235006        irix*)
    49245007                if test "$cf_cv_ld_rpath" = yes ; then
     
    49335016                        fi
    49345017                fi
    4935 @@ -5112,7 +5371,7 @@
     5018@@ -5112,7 +5372,7 @@
    49365019                        LOCAL_LDFLAGS2="$LOCAL_LDFLAGS"
    49375020                fi
     
    49425025                fi
    49435026 
    4944 @@ -5131,7 +5390,7 @@
     5027@@ -5131,7 +5391,7 @@
    49455028                        LOCAL_LDFLAGS2="$LOCAL_LDFLAGS"
    49465029                fi
     
    49515034                fi
    49525035                CC_SHARED_OPTS="$CC_SHARED_OPTS -DPIC"
    4953 @@ -5143,7 +5402,7 @@
     5036@@ -5143,7 +5403,7 @@
    49545037                cf_cv_shared_soname='`basename $@`'
    49555038        fi
     
    49605043        nto-qnx*|openbsd*|freebsd[12].*)
    49615044                CC_SHARED_OPTS="$CC_SHARED_OPTS -DPIC"
    4962 @@ -5155,7 +5414,7 @@
     5045@@ -5155,7 +5415,7 @@
    49635046                if test "$DFT_LWR_MODEL" = "shared" && test "$cf_cv_ld_rpath" = yes ; then
    49645047                        LOCAL_LDFLAGS="-rpath \$(LOCAL_LIBDIR)"
     
    49695052                fi
    49705053 
    4971 @@ -5166,11 +5425,11 @@
     5054@@ -5166,11 +5426,11 @@
    49725055                cf_cv_shared_soname='`basename $@`'
    49735056        fi
     
    49835066                        LOCAL_LDFLAGS="-Wl,-rpath,\$(LOCAL_LIBDIR)"
    49845067                        LOCAL_LDFLAGS2="$LOCAL_LDFLAGS"
    4985 @@ -5192,7 +5451,7 @@
     5068@@ -5192,7 +5452,7 @@
    49865069 
    49875070                        MK_SHARED_LIB='${CC} ${CFLAGS} -shared -Wl,-soname,'$cf_cv_shared_soname' -o $@'
     
    49925075                ;;
    49935076        osf*|mls+*)
    4994 @@ -5211,7 +5470,7 @@
     5077@@ -5211,7 +5471,7 @@
    49955078                        LOCAL_LDFLAGS2="$LOCAL_LDFLAGS"
    49965079                fi
     
    50015084                fi
    50025085                cf_cv_rm_so_locs=yes
    5003 @@ -5246,7 +5505,7 @@
     5086@@ -5246,7 +5506,7 @@
    50045087                        LOCAL_LDFLAGS2="$LOCAL_LDFLAGS"
    50055088                fi
     
    50105093                fi
    50115094 
    5012 @@ -5258,7 +5517,43 @@
     5095@@ -5258,7 +5518,43 @@
    50135096        fi
    50145097 
     
    50205103+                               CFLAGS="$cf_shared_opts $cf_save_CFLAGS"
    50215104+                               cat >conftest.$ac_ext <<_ACEOF
    5022 +#line 5525 "configure"
     5105+#line 5526 "configure"
    50235106+#include "confdefs.h"
    50245107+#include <stdio.h>
     
    50325115+_ACEOF
    50335116+rm -f conftest.$ac_objext
    5034 +if { (eval echo "$as_me:5537: \"$ac_compile\"") >&5
     5117+if { (eval echo "$as_me:5538: \"$ac_compile\"") >&5
    50355118+  (eval $ac_compile) 2>&5
    50365119+  ac_status=$?
    5037 +  echo "$as_me:5540: \$? = $ac_status" >&5
     5120+  echo "$as_me:5541: \$? = $ac_status" >&5
    50385121+  (exit $ac_status); } &&
    50395122+         { ac_try='test -s conftest.$ac_objext'
    5040 +  { (eval echo "$as_me:5543: \"$ac_try\"") >&5
     5123+  { (eval echo "$as_me:5544: \"$ac_try\"") >&5
    50415124+  (eval $ac_try) 2>&5
    50425125+  ac_status=$?
    5043 +  echo "$as_me:5546: \$? = $ac_status" >&5
     5126+  echo "$as_me:5547: \$? = $ac_status" >&5
    50445127+  (exit $ac_status); }; }; then
    50455128+  break
     
    50555138                else
    50565139                        MK_SHARED_LIB='${CC} -shared -dy -G -h '$cf_cv_shared_soname' -o $@'
    5057 @@ -5285,20 +5580,20 @@
     5140@@ -5285,20 +5581,20 @@
    50585141                        test "$cf_cv_do_symlinks" = no && cf_cv_do_symlinks=yes
    50595142                        ;;
    50605143                *)
    50615144-                       { echo "$as_me:5288: WARNING: ignored --with-shlib-version" >&5
    5062 +                       { echo "$as_me:5583: WARNING: ignored --with-shlib-version" >&5
     5145+                       { echo "$as_me:5584: WARNING: ignored --with-shlib-version" >&5
    50635146 echo "$as_me: WARNING: ignored --with-shlib-version" >&2;}
    50645147                        ;;
     
    50705153-               echo "$as_me:5296: checking if we need a space after rpath option" >&5
    50715154+       if test -n "$LD_RPATH_OPT" ; then
    5072 +               echo "$as_me:5591: checking if we need a space after rpath option" >&5
     5155+               echo "$as_me:5592: checking if we need a space after rpath option" >&5
    50735156 echo $ECHO_N "checking if we need a space after rpath option... $ECHO_C" >&6
    50745157                cf_save_LIBS="$LIBS"
     
    50775160                cat >conftest.$ac_ext <<_ACEOF
    50785161-#line 5301 "configure"
    5079 +#line 5596 "configure"
     5162+#line 5597 "configure"
    50805163 #include "confdefs.h"
    50815164 
    50825165 int
    5083 @@ -5310,16 +5605,16 @@
     5166@@ -5310,16 +5606,16 @@
    50845167 }
    50855168 _ACEOF
    50865169 rm -f conftest.$ac_objext conftest$ac_exeext
    50875170-if { (eval echo "$as_me:5313: \"$ac_link\"") >&5
    5088 +if { (eval echo "$as_me:5608: \"$ac_link\"") >&5
     5171+if { (eval echo "$as_me:5609: \"$ac_link\"") >&5
    50895172   (eval $ac_link) 2>&5
    50905173   ac_status=$?
    50915174-  echo "$as_me:5316: \$? = $ac_status" >&5
    5092 +  echo "$as_me:5611: \$? = $ac_status" >&5
     5175+  echo "$as_me:5612: \$? = $ac_status" >&5
    50935176   (exit $ac_status); } &&
    50945177          { ac_try='test -s conftest$ac_exeext'
    50955178-  { (eval echo "$as_me:5319: \"$ac_try\"") >&5
    5096 +  { (eval echo "$as_me:5614: \"$ac_try\"") >&5
     5179+  { (eval echo "$as_me:5615: \"$ac_try\"") >&5
    50975180   (eval $ac_try) 2>&5
    50985181   ac_status=$?
    50995182-  echo "$as_me:5322: \$? = $ac_status" >&5
    5100 +  echo "$as_me:5617: \$? = $ac_status" >&5
     5183+  echo "$as_me:5618: \$? = $ac_status" >&5
    51015184   (exit $ac_status); }; }; then
    51025185   cf_rpath_space=no
    51035186 else
    5104 @@ -5329,16 +5624,16 @@
     5187@@ -5329,16 +5625,16 @@
    51055188 fi
    51065189 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    51075190                LIBS="$cf_save_LIBS"
    51085191-               echo "$as_me:5332: result: $cf_rpath_space" >&5
    5109 +               echo "$as_me:5627: result: $cf_rpath_space" >&5
     5192+               echo "$as_me:5628: result: $cf_rpath_space" >&5
    51105193 echo "${ECHO_T}$cf_rpath_space" >&6
    51115194-               test "$cf_rpath_space" = yes && cf_ld_rpath_opt="$cf_ld_rpath_opt "
     
    51195202                if test "$model" = "shared"; then
    51205203-                       { { echo "$as_me:5341: error: Shared libraries are not supported in this version" >&5
    5121 +                       { { echo "$as_me:5636: error: Shared libraries are not supported in this version" >&5
     5204+                       { { echo "$as_me:5637: error: Shared libraries are not supported in this version" >&5
    51225205 echo "$as_me: error: Shared libraries are not supported in this version" >&2;}
    51235206    { (exit 1); exit 1; }; }
    51245207                fi
    5125 @@ -5348,7 +5643,7 @@
     5208@@ -5348,7 +5644,7 @@
    51265209 ###############################################################################
    51275210 
    51285211 ###    use option --disable-overwrite to leave out the link to -lcurses
    51295212-echo "$as_me:5351: checking if you wish to install ncurses overwriting curses" >&5
    5130 +echo "$as_me:5646: checking if you wish to install ncurses overwriting curses" >&5
     5213+echo "$as_me:5647: checking if you wish to install ncurses overwriting curses" >&5
    51315214 echo $ECHO_N "checking if you wish to install ncurses overwriting curses... $ECHO_C" >&6
    51325215 
    51335216 # Check whether --enable-overwrite or --disable-overwrite was given.
    5134 @@ -5358,10 +5653,10 @@
     5217@@ -5358,10 +5654,10 @@
    51355218 else
    51365219   if test "$prefix" = "/usr" ; then with_overwrite=yes; else with_overwrite=no; fi
    51375220 fi;
    51385221-echo "$as_me:5361: result: $with_overwrite" >&5
    5139 +echo "$as_me:5656: result: $with_overwrite" >&5
     5222+echo "$as_me:5657: result: $with_overwrite" >&5
    51405223 echo "${ECHO_T}$with_overwrite" >&6
    51415224 
    51425225-echo "$as_me:5364: checking if external terminfo-database is used" >&5
    5143 +echo "$as_me:5659: checking if external terminfo-database is used" >&5
     5226+echo "$as_me:5660: checking if external terminfo-database is used" >&5
    51445227 echo $ECHO_N "checking if external terminfo-database is used... $ECHO_C" >&6
    51455228 
    51465229 # Check whether --enable-database or --disable-database was given.
    5147 @@ -5371,7 +5666,7 @@
     5230@@ -5371,7 +5667,7 @@
    51485231 else
    51495232   use_database=yes
    51505233 fi;
    51515234-echo "$as_me:5374: result: $use_database" >&5
    5152 +echo "$as_me:5669: result: $use_database" >&5
     5235+echo "$as_me:5670: result: $use_database" >&5
    51535236 echo "${ECHO_T}$use_database" >&6
    51545237 
    51555238 case $host_os in #(vi
    5156 @@ -5384,8 +5679,8 @@
     5239@@ -5384,8 +5680,8 @@
    51575240 esac
    51585241 
     
    51655248 
    51665249 if test "$use_database" != no ; then
    5167 @@ -5393,7 +5688,7 @@
     5250@@ -5393,7 +5689,7 @@
    51685251 #define USE_DATABASE 1
    51695252 EOF
    51705253 
    51715254-       echo "$as_me:5396: checking which terminfo source-file will be installed" >&5
    5172 +       echo "$as_me:5691: checking which terminfo source-file will be installed" >&5
     5255+       echo "$as_me:5692: checking which terminfo source-file will be installed" >&5
    51735256 echo $ECHO_N "checking which terminfo source-file will be installed... $ECHO_C" >&6
    51745257 
    51755258 # Check whether --enable-database or --disable-database was given.
    5176 @@ -5401,10 +5696,10 @@
     5259@@ -5401,10 +5697,10 @@
    51775260   enableval="$enable_database"
    51785261   TERMINFO_SRC=$withval
    51795262 fi;
    51805263-       echo "$as_me:5404: result: $TERMINFO_SRC" >&5
    5181 +       echo "$as_me:5699: result: $TERMINFO_SRC" >&5
     5264+       echo "$as_me:5700: result: $TERMINFO_SRC" >&5
    51825265 echo "${ECHO_T}$TERMINFO_SRC" >&6
    51835266 
    51845267-       echo "$as_me:5407: checking whether to use hashed database instead of directory/tree" >&5
    5185 +       echo "$as_me:5702: checking whether to use hashed database instead of directory/tree" >&5
     5268+       echo "$as_me:5703: checking whether to use hashed database instead of directory/tree" >&5
    51865269 echo $ECHO_N "checking whether to use hashed database instead of directory/tree... $ECHO_C" >&6
    51875270 
    51885271 # Check whether --with-hashed-db or --without-hashed-db was given.
    5189 @@ -5414,13 +5709,13 @@
     5272@@ -5414,13 +5710,13 @@
    51905273 else
    51915274   with_hashed_db=no
    51925275 fi;
    51935276-       echo "$as_me:5417: result: $with_hashed_db" >&5
    5194 +       echo "$as_me:5712: result: $with_hashed_db" >&5
     5277+       echo "$as_me:5713: result: $with_hashed_db" >&5
    51955278 echo "${ECHO_T}$with_hashed_db" >&6
    51965279 else
     
    51995282 
    52005283-echo "$as_me:5423: checking for list of fallback descriptions" >&5
    5201 +echo "$as_me:5718: checking for list of fallback descriptions" >&5
     5284+echo "$as_me:5719: checking for list of fallback descriptions" >&5
    52025285 echo $ECHO_N "checking for list of fallback descriptions... $ECHO_C" >&6
    52035286 
    52045287 # Check whether --with-fallbacks or --without-fallbacks was given.
    5205 @@ -5430,11 +5725,11 @@
     5288@@ -5430,11 +5726,11 @@
    52065289 else
    52075290   with_fallback=
    52085291 fi;
    52095292-echo "$as_me:5433: result: $with_fallback" >&5
    5210 +echo "$as_me:5728: result: $with_fallback" >&5
     5293+echo "$as_me:5729: result: $with_fallback" >&5
    52115294 echo "${ECHO_T}$with_fallback" >&6
    52125295 FALLBACK_LIST=`echo "$with_fallback" | sed -e 's/,/ /g'`
    52135296 
    52145297-echo "$as_me:5437: checking if you want modern xterm or antique" >&5
    5215 +echo "$as_me:5732: checking if you want modern xterm or antique" >&5
     5298+echo "$as_me:5733: checking if you want modern xterm or antique" >&5
    52165299 echo $ECHO_N "checking if you want modern xterm or antique... $ECHO_C" >&6
    52175300 
    52185301 # Check whether --with-xterm-new or --without-xterm-new was given.
    5219 @@ -5448,7 +5743,7 @@
     5302@@ -5448,7 +5744,7 @@
    52205303 no)    with_xterm_new=xterm-old;;
    52215304 *)     with_xterm_new=xterm-new;;
    52225305 esac
    52235306-echo "$as_me:5451: result: $with_xterm_new" >&5
    5224 +echo "$as_me:5746: result: $with_xterm_new" >&5
     5307+echo "$as_me:5747: result: $with_xterm_new" >&5
    52255308 echo "${ECHO_T}$with_xterm_new" >&6
    52265309 WHICH_XTERM=$with_xterm_new
    52275310 
    5228 @@ -5458,7 +5753,7 @@
     5311@@ -5458,7 +5754,7 @@
    52295312        MAKE_TERMINFO="#"
    52305313 else
    52315314 
    52325315-echo "$as_me:5461: checking for list of terminfo directories" >&5
    5233 +echo "$as_me:5756: checking for list of terminfo directories" >&5
     5316+echo "$as_me:5757: checking for list of terminfo directories" >&5
    52345317 echo $ECHO_N "checking for list of terminfo directories... $ECHO_C" >&6
    52355318 
    52365319 # Check whether --with-terminfo-dirs or --without-terminfo-dirs was given.
    5237 @@ -5468,7 +5763,7 @@
     5320@@ -5468,7 +5764,7 @@
    52385321 else
    52395322   withval=${TERMINFO_DIRS-${datadir}/terminfo}
     
    52445327 for cf_src_path in $withval
    52455328 do
    5246 @@ -5498,7 +5793,7 @@
     5329@@ -5498,7 +5794,7 @@
    52475330   cf_src_path=`echo $cf_src_path | sed -e s%NONE%$cf_path_syntax%`
    52485331   ;;
    52495332 *)
    52505333-  { { echo "$as_me:5501: error: expected a pathname, not \"$cf_src_path\"" >&5
    5251 +  { { echo "$as_me:5796: error: expected a pathname, not \"$cf_src_path\"" >&5
     5334+  { { echo "$as_me:5797: error: expected a pathname, not \"$cf_src_path\"" >&5
    52525335 echo "$as_me: error: expected a pathname, not \"$cf_src_path\"" >&2;}
    52535336    { (exit 1); exit 1; }; }
    52545337   ;;
    5255 @@ -5511,13 +5806,13 @@
     5338@@ -5511,13 +5807,13 @@
    52565339 
    52575340 eval 'TERMINFO_DIRS="$cf_dst_path"'
    52585341 
    52595342-echo "$as_me:5514: result: $TERMINFO_DIRS" >&5
    5260 +echo "$as_me:5809: result: $TERMINFO_DIRS" >&5
     5343+echo "$as_me:5810: result: $TERMINFO_DIRS" >&5
    52615344 echo "${ECHO_T}$TERMINFO_DIRS" >&6
    52625345 test -n "$TERMINFO_DIRS" && cat >>confdefs.h <<EOF
     
    52655348 
    52665349-echo "$as_me:5520: checking for default terminfo directory" >&5
    5267 +echo "$as_me:5815: checking for default terminfo directory" >&5
     5350+echo "$as_me:5816: checking for default terminfo directory" >&5
    52685351 echo $ECHO_N "checking for default terminfo directory... $ECHO_C" >&6
    52695352 
    52705353 # Check whether --with-default-terminfo-dir or --without-default-terminfo-dir was given.
    5271 @@ -5553,7 +5848,7 @@
     5354@@ -5553,7 +5849,7 @@
    52725355   withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%`
    52735356   ;;
    52745357 *)
    52755358-  { { echo "$as_me:5556: error: expected a pathname, not \"$withval\"" >&5
    5276 +  { { echo "$as_me:5851: error: expected a pathname, not \"$withval\"" >&5
     5359+  { { echo "$as_me:5852: error: expected a pathname, not \"$withval\"" >&5
    52775360 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;}
    52785361    { (exit 1); exit 1; }; }
    52795362   ;;
    5280 @@ -5562,7 +5857,7 @@
     5363@@ -5562,7 +5858,7 @@
    52815364 fi
    52825365 TERMINFO="$withval"
    52835366 
    52845367-echo "$as_me:5565: result: $TERMINFO" >&5
    5285 +echo "$as_me:5860: result: $TERMINFO" >&5
     5368+echo "$as_me:5861: result: $TERMINFO" >&5
    52865369 echo "${ECHO_T}$TERMINFO" >&6
    52875370 cat >>confdefs.h <<EOF
    52885371 #define TERMINFO "$TERMINFO"
    5289 @@ -5572,7 +5867,7 @@
     5372@@ -5572,7 +5868,7 @@
    52905373 
    52915374 ###    use option --disable-big-core to make tic run on small machines
    52925375 ###    We need 4Mb, check if we can allocate 50% more than that.
    52935376-echo "$as_me:5575: checking if big-core option selected" >&5
    5294 +echo "$as_me:5870: checking if big-core option selected" >&5
     5377+echo "$as_me:5871: checking if big-core option selected" >&5
    52955378 echo $ECHO_N "checking if big-core option selected... $ECHO_C" >&6
    52965379 
    52975380 # Check whether --enable-big-core or --disable-big-core was given.
    5298 @@ -5584,7 +5879,7 @@
     5381@@ -5584,7 +5880,7 @@
    52995382   with_big_core=no
    53005383 else
    53015384   cat >conftest.$ac_ext <<_ACEOF
    53025385-#line 5587 "configure"
    5303 +#line 5882 "configure"
     5386+#line 5883 "configure"
    53045387 #include "confdefs.h"
    53055388 
    53065389 #include <stdlib.h>
    5307 @@ -5598,15 +5893,15 @@
     5390@@ -5598,15 +5894,15 @@
    53085391 }
    53095392 _ACEOF
    53105393 rm -f conftest$ac_exeext
    53115394-if { (eval echo "$as_me:5601: \"$ac_link\"") >&5
    5312 +if { (eval echo "$as_me:5896: \"$ac_link\"") >&5
     5395+if { (eval echo "$as_me:5897: \"$ac_link\"") >&5
    53135396   (eval $ac_link) 2>&5
    53145397   ac_status=$?
    53155398-  echo "$as_me:5604: \$? = $ac_status" >&5
    5316 +  echo "$as_me:5899: \$? = $ac_status" >&5
     5399+  echo "$as_me:5900: \$? = $ac_status" >&5
    53175400   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
    53185401-  { (eval echo "$as_me:5606: \"$ac_try\"") >&5
    5319 +  { (eval echo "$as_me:5901: \"$ac_try\"") >&5
     5402+  { (eval echo "$as_me:5902: \"$ac_try\"") >&5
    53205403   (eval $ac_try) 2>&5
    53215404   ac_status=$?
    53225405-  echo "$as_me:5609: \$? = $ac_status" >&5
    5323 +  echo "$as_me:5904: \$? = $ac_status" >&5
     5406+  echo "$as_me:5905: \$? = $ac_status" >&5
    53245407   (exit $ac_status); }; }; then
    53255408   with_big_core=yes
    53265409 else
    5327 @@ -5618,7 +5913,7 @@
     5410@@ -5618,7 +5914,7 @@
    53285411 rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
    53295412 fi
    53305413 fi;
    53315414-echo "$as_me:5621: result: $with_big_core" >&5
    5332 +echo "$as_me:5916: result: $with_big_core" >&5
     5415+echo "$as_me:5917: result: $with_big_core" >&5
    53335416 echo "${ECHO_T}$with_big_core" >&6
    53345417 test "$with_big_core" = "yes" && cat >>confdefs.h <<\EOF
    53355418 #define HAVE_BIG_CORE 1
    5336 @@ -5627,7 +5922,7 @@
     5419@@ -5627,7 +5923,7 @@
    53375420 ### ISO C only guarantees 512-char strings, we have tables which load faster
    53385421 ### when constructed using "big" strings.  More than the C compiler, the awk
    53395422 ### program is a limit on most vendor UNIX systems.  Check that we can build.
    53405423-echo "$as_me:5630: checking if big-strings option selected" >&5
    5341 +echo "$as_me:5925: checking if big-strings option selected" >&5
     5424+echo "$as_me:5926: checking if big-strings option selected" >&5
    53425425 echo $ECHO_N "checking if big-strings option selected... $ECHO_C" >&6
    53435426 
    53445427 # Check whether --enable-big-strings or --disable-big-strings was given.
    5345 @@ -5636,29 +5931,29 @@
     5428@@ -5636,29 +5932,29 @@
    53465429   with_big_strings=$enableval
    53475430 else
     
    53765459 fi;
    53775460-echo "$as_me:5654: result: $with_big_strings" >&5
    5378 +echo "$as_me:5949: result: $with_big_strings" >&5
     5461+echo "$as_me:5950: result: $with_big_strings" >&5
    53795462 echo "${ECHO_T}$with_big_strings" >&6
    53805463 
     
    53845467 ###    use option --enable-termcap to compile in the termcap fallback support
    53855468-echo "$as_me:5661: checking if you want termcap-fallback support" >&5
    5386 +echo "$as_me:5956: checking if you want termcap-fallback support" >&5
     5469+echo "$as_me:5957: checking if you want termcap-fallback support" >&5
    53875470 echo $ECHO_N "checking if you want termcap-fallback support... $ECHO_C" >&6
    53885471 
    53895472 # Check whether --enable-termcap or --disable-termcap was given.
    5390 @@ -5668,13 +5963,13 @@
     5473@@ -5668,13 +5964,13 @@
    53915474 else
    53925475   with_termcap=no
    53935476 fi;
    53945477-echo "$as_me:5671: result: $with_termcap" >&5
    5395 +echo "$as_me:5966: result: $with_termcap" >&5
     5478+echo "$as_me:5967: result: $with_termcap" >&5
    53965479 echo "${ECHO_T}$with_termcap" >&6
    53975480 
     
    54005483                if test -z "$with_fallback" ; then
    54015484-                       { { echo "$as_me:5677: error: You have disabled the database w/o specifying fallbacks" >&5
    5402 +                       { { echo "$as_me:5972: error: You have disabled the database w/o specifying fallbacks" >&5
     5485+                       { { echo "$as_me:5973: error: You have disabled the database w/o specifying fallbacks" >&5
    54035486 echo "$as_me: error: You have disabled the database w/o specifying fallbacks" >&2;}
    54045487    { (exit 1); exit 1; }; }
    54055488                fi
    5406 @@ -5686,7 +5981,7 @@
     5489@@ -5686,7 +5982,7 @@
    54075490 else
    54085491 
    54095492 if test "$with_ticlib" != no ; then
    54105493-       { { echo "$as_me:5689: error: Options --with-ticlib and --enable-termcap cannot be combined" >&5
    5411 +       { { echo "$as_me:5984: error: Options --with-ticlib and --enable-termcap cannot be combined" >&5
     5494+       { { echo "$as_me:5985: error: Options --with-ticlib and --enable-termcap cannot be combined" >&5
    54125495 echo "$as_me: error: Options --with-ticlib and --enable-termcap cannot be combined" >&2;}
    54135496    { (exit 1); exit 1; }; }
    54145497 fi
    5415 @@ -5695,7 +5990,7 @@
     5498@@ -5695,7 +5991,7 @@
    54165499 #define USE_TERMCAP 1
    54175500 EOF
    54185501 
    54195502-echo "$as_me:5698: checking for list of termcap files" >&5
    5420 +echo "$as_me:5993: checking for list of termcap files" >&5
     5503+echo "$as_me:5994: checking for list of termcap files" >&5
    54215504 echo $ECHO_N "checking for list of termcap files... $ECHO_C" >&6
    54225505 
    54235506 # Check whether --with-termpath or --without-termpath was given.
    5424 @@ -5705,7 +6000,7 @@
     5507@@ -5705,7 +6001,7 @@
    54255508 else
    54265509   withval=${TERMPATH-/etc/termcap:/usr/share/misc/termcap}
     
    54315514 for cf_src_path in $withval
    54325515 do
    5433 @@ -5735,7 +6030,7 @@
     5516@@ -5735,7 +6031,7 @@
    54345517   cf_src_path=`echo $cf_src_path | sed -e s%NONE%$cf_path_syntax%`
    54355518   ;;
    54365519 *)
    54375520-  { { echo "$as_me:5738: error: expected a pathname, not \"$cf_src_path\"" >&5
    5438 +  { { echo "$as_me:6033: error: expected a pathname, not \"$cf_src_path\"" >&5
     5521+  { { echo "$as_me:6034: error: expected a pathname, not \"$cf_src_path\"" >&5
    54395522 echo "$as_me: error: expected a pathname, not \"$cf_src_path\"" >&2;}
    54405523    { (exit 1); exit 1; }; }
    54415524   ;;
    5442 @@ -5748,14 +6043,14 @@
     5525@@ -5748,14 +6044,14 @@
    54435526 
    54445527 eval 'TERMPATH="$cf_dst_path"'
    54455528 
    54465529-echo "$as_me:5751: result: $TERMPATH" >&5
    5447 +echo "$as_me:6046: result: $TERMPATH" >&5
     5530+echo "$as_me:6047: result: $TERMPATH" >&5
    54485531 echo "${ECHO_T}$TERMPATH" >&6
    54495532 test -n "$TERMPATH" && cat >>confdefs.h <<EOF
     
    54535536 ###    use option --enable-getcap to use a hacked getcap for reading termcaps
    54545537-echo "$as_me:5758: checking if fast termcap-loader is needed" >&5
    5455 +echo "$as_me:6053: checking if fast termcap-loader is needed" >&5
     5538+echo "$as_me:6054: checking if fast termcap-loader is needed" >&5
    54565539 echo $ECHO_N "checking if fast termcap-loader is needed... $ECHO_C" >&6
    54575540 
    54585541 # Check whether --enable-getcap or --disable-getcap was given.
    5459 @@ -5765,13 +6060,13 @@
     5542@@ -5765,13 +6061,13 @@
    54605543 else
    54615544   with_getcap=no
    54625545 fi;
    54635546-echo "$as_me:5768: result: $with_getcap" >&5
    5464 +echo "$as_me:6063: result: $with_getcap" >&5
     5547+echo "$as_me:6064: result: $with_getcap" >&5
    54655548 echo "${ECHO_T}$with_getcap" >&6
    54665549 test "$with_getcap" = "yes" && cat >>confdefs.h <<\EOF
     
    54695552 
    54705553-echo "$as_me:5774: checking if translated termcaps will be cached in ~/.terminfo" >&5
    5471 +echo "$as_me:6069: checking if translated termcaps will be cached in ~/.terminfo" >&5
     5554+echo "$as_me:6070: checking if translated termcaps will be cached in ~/.terminfo" >&5
    54725555 echo $ECHO_N "checking if translated termcaps will be cached in ~/.terminfo... $ECHO_C" >&6
    54735556 
    54745557 # Check whether --enable-getcap-cache or --disable-getcap-cache was given.
    5475 @@ -5781,7 +6076,7 @@
     5558@@ -5781,7 +6077,7 @@
    54765559 else
    54775560   with_getcap_cache=no
    54785561 fi;
    54795562-echo "$as_me:5784: result: $with_getcap_cache" >&5
    5480 +echo "$as_me:6079: result: $with_getcap_cache" >&5
     5563+echo "$as_me:6080: result: $with_getcap_cache" >&5
    54815564 echo "${ECHO_T}$with_getcap_cache" >&6
    54825565 test "$with_getcap_cache" = "yes" && cat >>confdefs.h <<\EOF
    54835566 #define USE_GETCAP_CACHE 1
    5484 @@ -5790,7 +6085,7 @@
     5567@@ -5790,7 +6086,7 @@
    54855568 fi
    54865569 
    54875570 ###   Use option --disable-home-terminfo to completely remove ~/.terminfo
    54885571-echo "$as_me:5793: checking if ~/.terminfo is wanted" >&5
    5489 +echo "$as_me:6088: checking if ~/.terminfo is wanted" >&5
     5572+echo "$as_me:6089: checking if ~/.terminfo is wanted" >&5
    54905573 echo $ECHO_N "checking if ~/.terminfo is wanted... $ECHO_C" >&6
    54915574 
    54925575 # Check whether --enable-home-terminfo or --disable-home-terminfo was given.
    5493 @@ -5800,13 +6095,13 @@
     5576@@ -5800,13 +6096,13 @@
    54945577 else
    54955578   with_home_terminfo=yes
    54965579 fi;
    54975580-echo "$as_me:5803: result: $with_home_terminfo" >&5
    5498 +echo "$as_me:6098: result: $with_home_terminfo" >&5
     5581+echo "$as_me:6099: result: $with_home_terminfo" >&5
    54995582 echo "${ECHO_T}$with_home_terminfo" >&6
    55005583 test "$with_home_terminfo" = "yes" && cat >>confdefs.h <<\EOF
     
    55035586 
    55045587-echo "$as_me:5809: checking if you want to use restricted environment when running as root" >&5
    5505 +echo "$as_me:6104: checking if you want to use restricted environment when running as root" >&5
     5588+echo "$as_me:6105: checking if you want to use restricted environment when running as root" >&5
    55065589 echo $ECHO_N "checking if you want to use restricted environment when running as root... $ECHO_C" >&6
    55075590 
    55085591 # Check whether --enable-root-environ or --disable-root-environ was given.
    5509 @@ -5816,7 +6111,7 @@
     5592@@ -5816,7 +6112,7 @@
    55105593 else
    55115594   with_root_environ=yes
    55125595 fi;
    55135596-echo "$as_me:5819: result: $with_root_environ" >&5
    5514 +echo "$as_me:6114: result: $with_root_environ" >&5
     5597+echo "$as_me:6115: result: $with_root_environ" >&5
    55155598 echo "${ECHO_T}$with_root_environ" >&6
    55165599 test "$with_root_environ" = yes && cat >>confdefs.h <<\EOF
    55175600 #define USE_ROOT_ENVIRON 1
    5518 @@ -5830,13 +6125,13 @@
     5601@@ -5830,13 +6126,13 @@
    55195602        unlink
    55205603 do
    55215604 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
    55225605-echo "$as_me:5833: checking for $ac_func" >&5
    5523 +echo "$as_me:6128: checking for $ac_func" >&5
     5606+echo "$as_me:6129: checking for $ac_func" >&5
    55245607 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
    55255608 if eval "test \"\${$as_ac_var+set}\" = set"; then
     
    55285611   cat >conftest.$ac_ext <<_ACEOF
    55295612-#line 5839 "configure"
    5530 +#line 6134 "configure"
     5613+#line 6135 "configure"
    55315614 #include "confdefs.h"
    55325615 /* System header to define __stub macros and hopefully few prototypes,
    55335616     which can conflict with char $ac_func (); below.  */
    5534 @@ -5867,16 +6162,16 @@
     5617@@ -5867,16 +6163,16 @@
    55355618 }
    55365619 _ACEOF
    55375620 rm -f conftest.$ac_objext conftest$ac_exeext
    55385621-if { (eval echo "$as_me:5870: \"$ac_link\"") >&5
    5539 +if { (eval echo "$as_me:6165: \"$ac_link\"") >&5
     5622+if { (eval echo "$as_me:6166: \"$ac_link\"") >&5
    55405623   (eval $ac_link) 2>&5
    55415624   ac_status=$?
    55425625-  echo "$as_me:5873: \$? = $ac_status" >&5
    5543 +  echo "$as_me:6168: \$? = $ac_status" >&5
     5626+  echo "$as_me:6169: \$? = $ac_status" >&5
    55445627   (exit $ac_status); } &&
    55455628          { ac_try='test -s conftest$ac_exeext'
    55465629-  { (eval echo "$as_me:5876: \"$ac_try\"") >&5
    5547 +  { (eval echo "$as_me:6171: \"$ac_try\"") >&5
     5630+  { (eval echo "$as_me:6172: \"$ac_try\"") >&5
    55485631   (eval $ac_try) 2>&5
    55495632   ac_status=$?
    55505633-  echo "$as_me:5879: \$? = $ac_status" >&5
    5551 +  echo "$as_me:6174: \$? = $ac_status" >&5
     5634+  echo "$as_me:6175: \$? = $ac_status" >&5
    55525635   (exit $ac_status); }; }; then
    55535636   eval "$as_ac_var=yes"
    55545637 else
    5555 @@ -5886,7 +6181,7 @@
     5638@@ -5886,7 +6182,7 @@
    55565639 fi
    55575640 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    55585641 fi
    55595642-echo "$as_me:5889: result: `eval echo '${'$as_ac_var'}'`" >&5
    5560 +echo "$as_me:6184: result: `eval echo '${'$as_ac_var'}'`" >&5
     5643+echo "$as_me:6185: result: `eval echo '${'$as_ac_var'}'`" >&5
    55615644 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
    55625645 if test `eval echo '${'$as_ac_var'}'` = yes; then
    55635646   cat >>confdefs.h <<EOF
    5564 @@ -5903,13 +6198,13 @@
     5647@@ -5903,13 +6199,13 @@
    55655648                symlink
    55665649 do
    55675650 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
    55685651-echo "$as_me:5906: checking for $ac_func" >&5
    5569 +echo "$as_me:6201: checking for $ac_func" >&5
     5652+echo "$as_me:6202: checking for $ac_func" >&5
    55705653 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
    55715654 if eval "test \"\${$as_ac_var+set}\" = set"; then
     
    55745657   cat >conftest.$ac_ext <<_ACEOF
    55755658-#line 5912 "configure"
    5576 +#line 6207 "configure"
     5659+#line 6208 "configure"
    55775660 #include "confdefs.h"
    55785661 /* System header to define __stub macros and hopefully few prototypes,
    55795662     which can conflict with char $ac_func (); below.  */
    5580 @@ -5940,16 +6235,16 @@
     5663@@ -5940,16 +6236,16 @@
    55815664 }
    55825665 _ACEOF
    55835666 rm -f conftest.$ac_objext conftest$ac_exeext
    55845667-if { (eval echo "$as_me:5943: \"$ac_link\"") >&5
    5585 +if { (eval echo "$as_me:6238: \"$ac_link\"") >&5
     5668+if { (eval echo "$as_me:6239: \"$ac_link\"") >&5
    55865669   (eval $ac_link) 2>&5
    55875670   ac_status=$?
    55885671-  echo "$as_me:5946: \$? = $ac_status" >&5
    5589 +  echo "$as_me:6241: \$? = $ac_status" >&5
     5672+  echo "$as_me:6242: \$? = $ac_status" >&5
    55905673   (exit $ac_status); } &&
    55915674          { ac_try='test -s conftest$ac_exeext'
    55925675-  { (eval echo "$as_me:5949: \"$ac_try\"") >&5
    5593 +  { (eval echo "$as_me:6244: \"$ac_try\"") >&5
     5676+  { (eval echo "$as_me:6245: \"$ac_try\"") >&5
    55945677   (eval $ac_try) 2>&5
    55955678   ac_status=$?
    55965679-  echo "$as_me:5952: \$? = $ac_status" >&5
    5597 +  echo "$as_me:6247: \$? = $ac_status" >&5
     5680+  echo "$as_me:6248: \$? = $ac_status" >&5
    55985681   (exit $ac_status); }; }; then
    55995682   eval "$as_ac_var=yes"
    56005683 else
    5601 @@ -5959,7 +6254,7 @@
     5684@@ -5959,7 +6255,7 @@
    56025685 fi
    56035686 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    56045687 fi
    56055688-echo "$as_me:5962: result: `eval echo '${'$as_ac_var'}'`" >&5
    5606 +echo "$as_me:6257: result: `eval echo '${'$as_ac_var'}'`" >&5
     5689+echo "$as_me:6258: result: `eval echo '${'$as_ac_var'}'`" >&5
    56075690 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
    56085691 if test `eval echo '${'$as_ac_var'}'` = yes; then
    56095692   cat >>confdefs.h <<EOF
    5610 @@ -5970,7 +6265,7 @@
     5693@@ -5970,7 +6266,7 @@
    56115694 done
    56125695 
    56135696 else
    56145697-       echo "$as_me:5973: checking if link/symlink functions work" >&5
    5615 +       echo "$as_me:6268: checking if link/symlink functions work" >&5
     5698+       echo "$as_me:6269: checking if link/symlink functions work" >&5
    56165699 echo $ECHO_N "checking if link/symlink functions work... $ECHO_C" >&6
    56175700 if test "${cf_cv_link_funcs+set}" = set; then
    56185701   echo $ECHO_N "(cached) $ECHO_C" >&6
    5619 @@ -5983,7 +6278,7 @@
     5702@@ -5983,7 +6279,7 @@
    56205703                        eval 'ac_cv_func_'$cf_func'=error'
    56215704 else
    56225705   cat >conftest.$ac_ext <<_ACEOF
    56235706-#line 5986 "configure"
    5624 +#line 6281 "configure"
     5707+#line 6282 "configure"
    56255708 #include "confdefs.h"
    56265709 
    56275710 #include <sys/types.h>
    5628 @@ -6013,15 +6308,15 @@
     5711@@ -6013,15 +6309,15 @@
    56295712 
    56305713 _ACEOF
    56315714 rm -f conftest$ac_exeext
    56325715-if { (eval echo "$as_me:6016: \"$ac_link\"") >&5
    5633 +if { (eval echo "$as_me:6311: \"$ac_link\"") >&5
     5716+if { (eval echo "$as_me:6312: \"$ac_link\"") >&5
    56345717   (eval $ac_link) 2>&5
    56355718   ac_status=$?
    56365719-  echo "$as_me:6019: \$? = $ac_status" >&5
    5637 +  echo "$as_me:6314: \$? = $ac_status" >&5
     5720+  echo "$as_me:6315: \$? = $ac_status" >&5
    56385721   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
    56395722-  { (eval echo "$as_me:6021: \"$ac_try\"") >&5
    5640 +  { (eval echo "$as_me:6316: \"$ac_try\"") >&5
     5723+  { (eval echo "$as_me:6317: \"$ac_try\"") >&5
    56415724   (eval $ac_try) 2>&5
    56425725   ac_status=$?
    56435726-  echo "$as_me:6024: \$? = $ac_status" >&5
    5644 +  echo "$as_me:6319: \$? = $ac_status" >&5
     5727+  echo "$as_me:6320: \$? = $ac_status" >&5
    56455728   (exit $ac_status); }; }; then
    56465729 
    56475730                        cf_cv_link_funcs="$cf_cv_link_funcs $cf_func"
    5648 @@ -6039,7 +6334,7 @@
     5731@@ -6039,7 +6335,7 @@
    56495732                test -z "$cf_cv_link_funcs" && cf_cv_link_funcs=no
    56505733 
    56515734 fi
    56525735-echo "$as_me:6042: result: $cf_cv_link_funcs" >&5
    5653 +echo "$as_me:6337: result: $cf_cv_link_funcs" >&5
     5736+echo "$as_me:6338: result: $cf_cv_link_funcs" >&5
    56545737 echo "${ECHO_T}$cf_cv_link_funcs" >&6
    56555738        test "$ac_cv_func_link"    = yes && cat >>confdefs.h <<\EOF
    56565739 #define HAVE_LINK 1
    5657 @@ -6057,7 +6352,7 @@
     5740@@ -6057,7 +6353,7 @@
    56585741 # soft links (symbolic links) are useful for some systems where hard links do
    56595742 # not work, or to make it simpler to copy terminfo trees around.
    56605743 if test "$ac_cv_func_symlink" = yes ; then
    56615744-    echo "$as_me:6060: checking if tic should use symbolic links" >&5
    5662 +    echo "$as_me:6355: checking if tic should use symbolic links" >&5
     5745+    echo "$as_me:6356: checking if tic should use symbolic links" >&5
    56635746 echo $ECHO_N "checking if tic should use symbolic links... $ECHO_C" >&6
    56645747 
    56655748 # Check whether --enable-symlinks or --disable-symlinks was given.
    5666 @@ -6067,21 +6362,21 @@
     5749@@ -6067,21 +6363,21 @@
    56675750 else
    56685751   with_symlinks=no
    56695752 fi;
    56705753-    echo "$as_me:6070: result: $with_symlinks" >&5
    5671 +    echo "$as_me:6365: result: $with_symlinks" >&5
     5754+    echo "$as_me:6366: result: $with_symlinks" >&5
    56725755 echo "${ECHO_T}$with_symlinks" >&6
    56735756 fi
     
    56775760 if test "$with_symlinks" = no ; then
    56785761-    echo "$as_me:6077: checking if tic should use hard links" >&5
    5679 +    echo "$as_me:6372: checking if tic should use hard links" >&5
     5762+    echo "$as_me:6373: checking if tic should use hard links" >&5
    56805763 echo $ECHO_N "checking if tic should use hard links... $ECHO_C" >&6
    56815764     if test "$ac_cv_func_link" = yes ; then
     
    56855768     fi
    56865769-    echo "$as_me:6084: result: $with_links" >&5
    5687 +    echo "$as_me:6379: result: $with_links" >&5
     5770+    echo "$as_me:6380: result: $with_links" >&5
    56885771 echo "${ECHO_T}$with_links" >&6
    56895772 fi
    56905773 
    5691 @@ -6094,7 +6389,7 @@
     5774@@ -6094,7 +6390,7 @@
    56925775 EOF
    56935776 
    56945777 ###   use option --enable-broken-linker to force on use of broken-linker support
    56955778-echo "$as_me:6097: checking if you want broken-linker support code" >&5
    5696 +echo "$as_me:6392: checking if you want broken-linker support code" >&5
     5779+echo "$as_me:6393: checking if you want broken-linker support code" >&5
    56975780 echo $ECHO_N "checking if you want broken-linker support code... $ECHO_C" >&6
    56985781 
    56995782 # Check whether --enable-broken_linker or --disable-broken_linker was given.
    5700 @@ -6104,7 +6399,7 @@
     5783@@ -6104,7 +6400,7 @@
    57015784 else
    57025785   with_broken_linker=${BROKEN_LINKER-no}
    57035786 fi;
    57045787-echo "$as_me:6107: result: $with_broken_linker" >&5
    5705 +echo "$as_me:6402: result: $with_broken_linker" >&5
     5788+echo "$as_me:6403: result: $with_broken_linker" >&5
    57065789 echo "${ECHO_T}$with_broken_linker" >&6
    57075790 
    57085791 BROKEN_LINKER=0
    5709 @@ -6124,14 +6419,14 @@
     5792@@ -6124,14 +6420,14 @@
    57105793                BROKEN_LINKER=1
    57115794                test -n "$verbose" && echo "    cygwin linker is broken anyway" 1>&6
    57125795 
    57135796-echo "${as_me-configure}:6127: testing cygwin linker is broken anyway ..." 1>&5
    5714 +echo "${as_me-configure}:6422: testing cygwin linker is broken anyway ..." 1>&5
     5797+echo "${as_me-configure}:6423: testing cygwin linker is broken anyway ..." 1>&5
    57155798 
    57165799                ;;
     
    57205803 ###   use option --enable-bsdpad to have tputs process BSD-style prefix padding
    57215804-echo "$as_me:6134: checking if tputs should process BSD-style prefix padding" >&5
    5722 +echo "$as_me:6429: checking if tputs should process BSD-style prefix padding" >&5
     5805+echo "$as_me:6430: checking if tputs should process BSD-style prefix padding" >&5
    57235806 echo $ECHO_N "checking if tputs should process BSD-style prefix padding... $ECHO_C" >&6
    57245807 
    57255808 # Check whether --enable-bsdpad or --disable-bsdpad was given.
    5726 @@ -6141,7 +6436,7 @@
     5809@@ -6141,7 +6437,7 @@
    57275810 else
    57285811   with_bsdpad=no
    57295812 fi;
    57305813-echo "$as_me:6144: result: $with_bsdpad" >&5
    5731 +echo "$as_me:6439: result: $with_bsdpad" >&5
     5814+echo "$as_me:6440: result: $with_bsdpad" >&5
    57325815 echo "${ECHO_T}$with_bsdpad" >&6
    57335816 test "$with_bsdpad" = yes && cat >>confdefs.h <<\EOF
    57345817 #define BSD_TPUTS 1
    5735 @@ -6158,7 +6453,7 @@
     5818@@ -6158,7 +6454,7 @@
    57365819 
    57375820 # Check to define _XOPEN_SOURCE "automatically"
    57385821 
    57395822-echo "$as_me:6161: checking if $CC -U and -D options work together" >&5
    5740 +echo "$as_me:6456: checking if $CC -U and -D options work together" >&5
     5823+echo "$as_me:6457: checking if $CC -U and -D options work together" >&5
    57415824 echo $ECHO_N "checking if $CC -U and -D options work together... $ECHO_C" >&6
    57425825 if test "${cf_cv_cc_u_d_options+set}" = set; then
    57435826   echo $ECHO_N "(cached) $ECHO_C" >&6
    5744 @@ -6167,7 +6462,7 @@
     5827@@ -6167,7 +6463,7 @@
    57455828        cf_save_CPPFLAGS="$CPPFLAGS"
    57465829        CPPFLAGS="-UU_D_OPTIONS -DU_D_OPTIONS -DD_U_OPTIONS -UD_U_OPTIONS"
    57475830        cat >conftest.$ac_ext <<_ACEOF
    57485831-#line 6170 "configure"
    5749 +#line 6465 "configure"
     5832+#line 6466 "configure"
    57505833 #include "confdefs.h"
    57515834 
    57525835 int
    5753 @@ -6186,16 +6481,16 @@
     5836@@ -6186,16 +6482,16 @@
    57545837 }
    57555838 _ACEOF
    57565839 rm -f conftest.$ac_objext
    57575840-if { (eval echo "$as_me:6189: \"$ac_compile\"") >&5
    5758 +if { (eval echo "$as_me:6484: \"$ac_compile\"") >&5
     5841+if { (eval echo "$as_me:6485: \"$ac_compile\"") >&5
    57595842   (eval $ac_compile) 2>&5
    57605843   ac_status=$?
    57615844-  echo "$as_me:6192: \$? = $ac_status" >&5
    5762 +  echo "$as_me:6487: \$? = $ac_status" >&5
     5845+  echo "$as_me:6488: \$? = $ac_status" >&5
    57635846   (exit $ac_status); } &&
    57645847          { ac_try='test -s conftest.$ac_objext'
    57655848-  { (eval echo "$as_me:6195: \"$ac_try\"") >&5
    5766 +  { (eval echo "$as_me:6490: \"$ac_try\"") >&5
     5849+  { (eval echo "$as_me:6491: \"$ac_try\"") >&5
    57675850   (eval $ac_try) 2>&5
    57685851   ac_status=$?
    57695852-  echo "$as_me:6198: \$? = $ac_status" >&5
    5770 +  echo "$as_me:6493: \$? = $ac_status" >&5
     5853+  echo "$as_me:6494: \$? = $ac_status" >&5
    57715854   (exit $ac_status); }; }; then
    57725855 
    57735856        cf_cv_cc_u_d_options=yes
    5774 @@ -6209,14 +6504,14 @@
     5857@@ -6209,14 +6505,14 @@
    57755858        CPPFLAGS="$cf_save_CPPFLAGS"
    57765859 
    57775860 fi
    57785861-echo "$as_me:6212: result: $cf_cv_cc_u_d_options" >&5
    5779 +echo "$as_me:6507: result: $cf_cv_cc_u_d_options" >&5
     5862+echo "$as_me:6508: result: $cf_cv_cc_u_d_options" >&5
    57805863 echo "${ECHO_T}$cf_cv_cc_u_d_options" >&6
    57815864 
     
    57895872        ;;
    57905873 freebsd*|dragonfly*) #(vi
    5791 @@ -6233,16 +6528,16 @@
     5874@@ -6233,16 +6529,16 @@
    57925875 irix[56].*) #(vi
    57935876        CPPFLAGS="$CPPFLAGS -D_SGI_SOURCE"
     
    57975880 
    57985881-echo "$as_me:6238: checking if we must define _GNU_SOURCE" >&5
    5799 +echo "$as_me:6533: checking if we must define _GNU_SOURCE" >&5
     5882+echo "$as_me:6534: checking if we must define _GNU_SOURCE" >&5
    58005883 echo $ECHO_N "checking if we must define _GNU_SOURCE... $ECHO_C" >&6
    58015884 if test "${cf_cv_gnu_source+set}" = set; then
     
    58055888 cat >conftest.$ac_ext <<_ACEOF
    58065889-#line 6245 "configure"
    5807 +#line 6540 "configure"
     5890+#line 6541 "configure"
    58085891 #include "confdefs.h"
    58095892 #include <sys/types.h>
    58105893 int
    5811 @@ -6257,16 +6552,16 @@
     5894@@ -6257,16 +6553,16 @@
    58125895 }
    58135896 _ACEOF
    58145897 rm -f conftest.$ac_objext
    58155898-if { (eval echo "$as_me:6260: \"$ac_compile\"") >&5
    5816 +if { (eval echo "$as_me:6555: \"$ac_compile\"") >&5
     5899+if { (eval echo "$as_me:6556: \"$ac_compile\"") >&5
    58175900   (eval $ac_compile) 2>&5
    58185901   ac_status=$?
    58195902-  echo "$as_me:6263: \$? = $ac_status" >&5
    5820 +  echo "$as_me:6558: \$? = $ac_status" >&5
     5903+  echo "$as_me:6559: \$? = $ac_status" >&5
    58215904   (exit $ac_status); } &&
    58225905          { ac_try='test -s conftest.$ac_objext'
    58235906-  { (eval echo "$as_me:6266: \"$ac_try\"") >&5
    5824 +  { (eval echo "$as_me:6561: \"$ac_try\"") >&5
     5907+  { (eval echo "$as_me:6562: \"$ac_try\"") >&5
    58255908   (eval $ac_try) 2>&5
    58265909   ac_status=$?
    58275910-  echo "$as_me:6269: \$? = $ac_status" >&5
    5828 +  echo "$as_me:6564: \$? = $ac_status" >&5
     5911+  echo "$as_me:6565: \$? = $ac_status" >&5
    58295912   (exit $ac_status); }; }; then
    58305913   cf_cv_gnu_source=no
    58315914 else
    5832 @@ -6275,7 +6570,7 @@
     5915@@ -6275,7 +6571,7 @@
    58335916 cf_save="$CPPFLAGS"
    58345917         CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
    58355918         cat >conftest.$ac_ext <<_ACEOF
    58365919-#line 6278 "configure"
    5837 +#line 6573 "configure"
     5920+#line 6574 "configure"
    58385921 #include "confdefs.h"
    58395922 #include <sys/types.h>
    58405923 int
    5841 @@ -6290,16 +6585,16 @@
     5924@@ -6290,16 +6586,16 @@
    58425925 }
    58435926 _ACEOF
    58445927 rm -f conftest.$ac_objext
    58455928-if { (eval echo "$as_me:6293: \"$ac_compile\"") >&5
    5846 +if { (eval echo "$as_me:6588: \"$ac_compile\"") >&5
     5929+if { (eval echo "$as_me:6589: \"$ac_compile\"") >&5
    58475930   (eval $ac_compile) 2>&5
    58485931   ac_status=$?
    58495932-  echo "$as_me:6296: \$? = $ac_status" >&5
    5850 +  echo "$as_me:6591: \$? = $ac_status" >&5
     5933+  echo "$as_me:6592: \$? = $ac_status" >&5
    58515934   (exit $ac_status); } &&
    58525935          { ac_try='test -s conftest.$ac_objext'
    58535936-  { (eval echo "$as_me:6299: \"$ac_try\"") >&5
    5854 +  { (eval echo "$as_me:6594: \"$ac_try\"") >&5
     5937+  { (eval echo "$as_me:6595: \"$ac_try\"") >&5
    58555938   (eval $ac_try) 2>&5
    58565939   ac_status=$?
    58575940-  echo "$as_me:6302: \$? = $ac_status" >&5
    5858 +  echo "$as_me:6597: \$? = $ac_status" >&5
     5941+  echo "$as_me:6598: \$? = $ac_status" >&5
    58595942   (exit $ac_status); }; }; then
    58605943   cf_cv_gnu_source=no
    58615944 else
    5862 @@ -6314,7 +6609,7 @@
     5945@@ -6314,7 +6610,7 @@
    58635946 rm -f conftest.$ac_objext conftest.$ac_ext
    58645947 
    58655948 fi
    58665949-echo "$as_me:6317: result: $cf_cv_gnu_source" >&5
    5867 +echo "$as_me:6612: result: $cf_cv_gnu_source" >&5
     5950+echo "$as_me:6613: result: $cf_cv_gnu_source" >&5
    58685951 echo "${ECHO_T}$cf_cv_gnu_source" >&6
    58695952 test "$cf_cv_gnu_source" = yes && CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
    58705953 
    5871 @@ -6341,14 +6636,14 @@
     5954@@ -6341,14 +6637,14 @@
    58725955        CPPFLAGS="$CPPFLAGS -D__EXTENSIONS__"
    58735956        ;;
    58745957 *)
    58755958-       echo "$as_me:6344: checking if we should define _XOPEN_SOURCE" >&5
    5876 +       echo "$as_me:6639: checking if we should define _XOPEN_SOURCE" >&5
     5959+       echo "$as_me:6640: checking if we should define _XOPEN_SOURCE" >&5
    58775960 echo $ECHO_N "checking if we should define _XOPEN_SOURCE... $ECHO_C" >&6
    58785961 if test "${cf_cv_xopen_source+set}" = set; then
     
    58825965        cat >conftest.$ac_ext <<_ACEOF
    58835966-#line 6351 "configure"
    5884 +#line 6646 "configure"
     5967+#line 6647 "configure"
    58855968 #include "confdefs.h"
    58865969 #include <sys/types.h>
    58875970 int
    5888 @@ -6363,16 +6658,16 @@
     5971@@ -6363,16 +6659,16 @@
    58895972 }
    58905973 _ACEOF
    58915974 rm -f conftest.$ac_objext
    58925975-if { (eval echo "$as_me:6366: \"$ac_compile\"") >&5
    5893 +if { (eval echo "$as_me:6661: \"$ac_compile\"") >&5
     5976+if { (eval echo "$as_me:6662: \"$ac_compile\"") >&5
    58945977   (eval $ac_compile) 2>&5
    58955978   ac_status=$?
    58965979-  echo "$as_me:6369: \$? = $ac_status" >&5
    5897 +  echo "$as_me:6664: \$? = $ac_status" >&5
     5980+  echo "$as_me:6665: \$? = $ac_status" >&5
    58985981   (exit $ac_status); } &&
    58995982          { ac_try='test -s conftest.$ac_objext'
    59005983-  { (eval echo "$as_me:6372: \"$ac_try\"") >&5
    5901 +  { (eval echo "$as_me:6667: \"$ac_try\"") >&5
     5984+  { (eval echo "$as_me:6668: \"$ac_try\"") >&5
    59025985   (eval $ac_try) 2>&5
    59035986   ac_status=$?
    59045987-  echo "$as_me:6375: \$? = $ac_status" >&5
    5905 +  echo "$as_me:6670: \$? = $ac_status" >&5
     5988+  echo "$as_me:6671: \$? = $ac_status" >&5
    59065989   (exit $ac_status); }; }; then
    59075990   cf_cv_xopen_source=no
    59085991 else
    5909 @@ -6381,7 +6676,7 @@
     5992@@ -6381,7 +6677,7 @@
    59105993 cf_save="$CPPFLAGS"
    59115994         CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=$cf_XOPEN_SOURCE"
    59125995         cat >conftest.$ac_ext <<_ACEOF
    59135996-#line 6384 "configure"
    5914 +#line 6679 "configure"
     5997+#line 6680 "configure"
    59155998 #include "confdefs.h"
    59165999 #include <sys/types.h>
    59176000 int
    5918 @@ -6396,16 +6691,16 @@
     6001@@ -6396,16 +6692,16 @@
    59196002 }
    59206003 _ACEOF
    59216004 rm -f conftest.$ac_objext
    59226005-if { (eval echo "$as_me:6399: \"$ac_compile\"") >&5
    5923 +if { (eval echo "$as_me:6694: \"$ac_compile\"") >&5
     6006+if { (eval echo "$as_me:6695: \"$ac_compile\"") >&5
    59246007   (eval $ac_compile) 2>&5
    59256008   ac_status=$?
    59266009-  echo "$as_me:6402: \$? = $ac_status" >&5
    5927 +  echo "$as_me:6697: \$? = $ac_status" >&5
     6010+  echo "$as_me:6698: \$? = $ac_status" >&5
    59286011   (exit $ac_status); } &&
    59296012          { ac_try='test -s conftest.$ac_objext'
    59306013-  { (eval echo "$as_me:6405: \"$ac_try\"") >&5
    5931 +  { (eval echo "$as_me:6700: \"$ac_try\"") >&5
     6014+  { (eval echo "$as_me:6701: \"$ac_try\"") >&5
    59326015   (eval $ac_try) 2>&5
    59336016   ac_status=$?
    59346017-  echo "$as_me:6408: \$? = $ac_status" >&5
    5935 +  echo "$as_me:6703: \$? = $ac_status" >&5
     6018+  echo "$as_me:6704: \$? = $ac_status" >&5
    59366019   (exit $ac_status); }; }; then
    59376020   cf_cv_xopen_source=no
    59386021 else
    5939 @@ -6420,7 +6715,7 @@
     6022@@ -6420,7 +6716,7 @@
    59406023 rm -f conftest.$ac_objext conftest.$ac_ext
    59416024 
    59426025 fi
    59436026-echo "$as_me:6423: result: $cf_cv_xopen_source" >&5
    5944 +echo "$as_me:6718: result: $cf_cv_xopen_source" >&5
     6027+echo "$as_me:6719: result: $cf_cv_xopen_source" >&5
    59456028 echo "${ECHO_T}$cf_cv_xopen_source" >&6
    59466029        if test "$cf_cv_xopen_source" != no ; then
    59476030 
    5948 @@ -6454,16 +6749,16 @@
     6031@@ -6454,16 +6750,16 @@
    59496032        sed     -e 's/-[UD]_POSIX_C_SOURCE\(=[^         ]*\)\?[         ]/ /g' \
    59506033                -e 's/-[UD]_POSIX_C_SOURCE\(=[^         ]*\)\?$//g'`
    59516034 
    59526035-echo "$as_me:6457: checking if we should define _POSIX_C_SOURCE" >&5
    5953 +echo "$as_me:6752: checking if we should define _POSIX_C_SOURCE" >&5
     6036+echo "$as_me:6753: checking if we should define _POSIX_C_SOURCE" >&5
    59546037 echo $ECHO_N "checking if we should define _POSIX_C_SOURCE... $ECHO_C" >&6
    59556038 if test "${cf_cv_posix_c_source+set}" = set; then
     
    59586041 
    59596042-echo "${as_me-configure}:6463: testing if the symbol is already defined go no further ..." 1>&5
    5960 +echo "${as_me-configure}:6758: testing if the symbol is already defined go no further ..." 1>&5
     6043+echo "${as_me-configure}:6759: testing if the symbol is already defined go no further ..." 1>&5
    59616044 
    59626045        cat >conftest.$ac_ext <<_ACEOF
    59636046-#line 6466 "configure"
    5964 +#line 6761 "configure"
     6047+#line 6762 "configure"
    59656048 #include "confdefs.h"
    59666049 #include <sys/types.h>
    59676050 int
    5968 @@ -6478,16 +6773,16 @@
     6051@@ -6478,16 +6774,16 @@
    59696052 }
    59706053 _ACEOF
    59716054 rm -f conftest.$ac_objext
    59726055-if { (eval echo "$as_me:6481: \"$ac_compile\"") >&5
    5973 +if { (eval echo "$as_me:6776: \"$ac_compile\"") >&5
     6056+if { (eval echo "$as_me:6777: \"$ac_compile\"") >&5
    59746057   (eval $ac_compile) 2>&5
    59756058   ac_status=$?
    59766059-  echo "$as_me:6484: \$? = $ac_status" >&5
    5977 +  echo "$as_me:6779: \$? = $ac_status" >&5
     6060+  echo "$as_me:6780: \$? = $ac_status" >&5
    59786061   (exit $ac_status); } &&
    59796062          { ac_try='test -s conftest.$ac_objext'
    59806063-  { (eval echo "$as_me:6487: \"$ac_try\"") >&5
    5981 +  { (eval echo "$as_me:6782: \"$ac_try\"") >&5
     6064+  { (eval echo "$as_me:6783: \"$ac_try\"") >&5
    59826065   (eval $ac_try) 2>&5
    59836066   ac_status=$?
    59846067-  echo "$as_me:6490: \$? = $ac_status" >&5
    5985 +  echo "$as_me:6785: \$? = $ac_status" >&5
     6068+  echo "$as_me:6786: \$? = $ac_status" >&5
    59866069   (exit $ac_status); }; }; then
    59876070   cf_cv_posix_c_source=no
    59886071 else
    5989 @@ -6508,7 +6803,7 @@
     6072@@ -6508,7 +6804,7 @@
    59906073         esac
    59916074         if test "$cf_want_posix_source" = yes ; then
    59926075                cat >conftest.$ac_ext <<_ACEOF
    59936076-#line 6511 "configure"
    5994 +#line 6806 "configure"
     6077+#line 6807 "configure"
    59956078 #include "confdefs.h"
    59966079 #include <sys/types.h>
    59976080 int
    5998 @@ -6523,16 +6818,16 @@
     6081@@ -6523,16 +6819,16 @@
    59996082 }
    60006083 _ACEOF
    60016084 rm -f conftest.$ac_objext
    60026085-if { (eval echo "$as_me:6526: \"$ac_compile\"") >&5
    6003 +if { (eval echo "$as_me:6821: \"$ac_compile\"") >&5
     6086+if { (eval echo "$as_me:6822: \"$ac_compile\"") >&5
    60046087   (eval $ac_compile) 2>&5
    60056088   ac_status=$?
    60066089-  echo "$as_me:6529: \$? = $ac_status" >&5
    6007 +  echo "$as_me:6824: \$? = $ac_status" >&5
     6090+  echo "$as_me:6825: \$? = $ac_status" >&5
    60086091   (exit $ac_status); } &&
    60096092          { ac_try='test -s conftest.$ac_objext'
    60106093-  { (eval echo "$as_me:6532: \"$ac_try\"") >&5
    6011 +  { (eval echo "$as_me:6827: \"$ac_try\"") >&5
     6094+  { (eval echo "$as_me:6828: \"$ac_try\"") >&5
    60126095   (eval $ac_try) 2>&5
    60136096   ac_status=$?
    60146097-  echo "$as_me:6535: \$? = $ac_status" >&5
    6015 +  echo "$as_me:6830: \$? = $ac_status" >&5
     6098+  echo "$as_me:6831: \$? = $ac_status" >&5
    60166099   (exit $ac_status); }; }; then
    60176100   :
    60186101 else
    6019 @@ -6543,15 +6838,15 @@
     6102@@ -6543,15 +6839,15 @@
    60206103 rm -f conftest.$ac_objext conftest.$ac_ext
    60216104         fi
    60226105 
    60236106-echo "${as_me-configure}:6546: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5
    6024 +echo "${as_me-configure}:6841: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5
     6107+echo "${as_me-configure}:6842: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5
    60256108 
    60266109         CFLAGS="$cf_trim_CFLAGS"
     
    60286111 
    60296112-echo "${as_me-configure}:6551: testing if the second compile does not leave our definition intact error ..." 1>&5
    6030 +echo "${as_me-configure}:6846: testing if the second compile does not leave our definition intact error ..." 1>&5
     6113+echo "${as_me-configure}:6847: testing if the second compile does not leave our definition intact error ..." 1>&5
    60316114 
    60326115         cat >conftest.$ac_ext <<_ACEOF
    60336116-#line 6554 "configure"
    6034 +#line 6849 "configure"
     6117+#line 6850 "configure"
    60356118 #include "confdefs.h"
    60366119 #include <sys/types.h>
    60376120 int
    6038 @@ -6566,16 +6861,16 @@
     6121@@ -6566,16 +6862,16 @@
    60396122 }
    60406123 _ACEOF
    60416124 rm -f conftest.$ac_objext
    60426125-if { (eval echo "$as_me:6569: \"$ac_compile\"") >&5
    6043 +if { (eval echo "$as_me:6864: \"$ac_compile\"") >&5
     6126+if { (eval echo "$as_me:6865: \"$ac_compile\"") >&5
    60446127   (eval $ac_compile) 2>&5
    60456128   ac_status=$?
    60466129-  echo "$as_me:6572: \$? = $ac_status" >&5
    6047 +  echo "$as_me:6867: \$? = $ac_status" >&5
     6130+  echo "$as_me:6868: \$? = $ac_status" >&5
    60486131   (exit $ac_status); } &&
    60496132          { ac_try='test -s conftest.$ac_objext'
    60506133-  { (eval echo "$as_me:6575: \"$ac_try\"") >&5
    6051 +  { (eval echo "$as_me:6870: \"$ac_try\"") >&5
     6134+  { (eval echo "$as_me:6871: \"$ac_try\"") >&5
    60526135   (eval $ac_try) 2>&5
    60536136   ac_status=$?
    60546137-  echo "$as_me:6578: \$? = $ac_status" >&5
    6055 +  echo "$as_me:6873: \$? = $ac_status" >&5
     6138+  echo "$as_me:6874: \$? = $ac_status" >&5
    60566139   (exit $ac_status); }; }; then
    60576140   :
    60586141 else
    6059 @@ -6591,7 +6886,7 @@
     6142@@ -6591,7 +6887,7 @@
    60606143 rm -f conftest.$ac_objext conftest.$ac_ext
    60616144 
    60626145 fi
    60636146-echo "$as_me:6594: result: $cf_cv_posix_c_source" >&5
    6064 +echo "$as_me:6889: result: $cf_cv_posix_c_source" >&5
     6147+echo "$as_me:6890: result: $cf_cv_posix_c_source" >&5
    60656148 echo "${ECHO_T}$cf_cv_posix_c_source" >&6
    60666149 
    60676150 if test "$cf_cv_posix_c_source" != no ; then
    6068 @@ -6610,14 +6905,14 @@
     6151@@ -6610,14 +6906,14 @@
    60696152 
    60706153 # Work around breakage on OS X
    60716154 
    60726155-echo "$as_me:6613: checking if SIGWINCH is defined" >&5
    6073 +echo "$as_me:6908: checking if SIGWINCH is defined" >&5
     6156+echo "$as_me:6909: checking if SIGWINCH is defined" >&5
    60746157 echo $ECHO_N "checking if SIGWINCH is defined... $ECHO_C" >&6
    60756158 if test "${cf_cv_define_sigwinch+set}" = set; then
     
    60796162        cat >conftest.$ac_ext <<_ACEOF
    60806163-#line 6620 "configure"
    6081 +#line 6915 "configure"
     6164+#line 6916 "configure"
    60826165 #include "confdefs.h"
    60836166 
    60846167 #include <sys/types.h>
    6085 @@ -6632,23 +6927,23 @@
     6168@@ -6632,23 +6928,23 @@
    60866169 }
    60876170 _ACEOF
    60886171 rm -f conftest.$ac_objext
    60896172-if { (eval echo "$as_me:6635: \"$ac_compile\"") >&5
    6090 +if { (eval echo "$as_me:6930: \"$ac_compile\"") >&5
     6173+if { (eval echo "$as_me:6931: \"$ac_compile\"") >&5
    60916174   (eval $ac_compile) 2>&5
    60926175   ac_status=$?
    60936176-  echo "$as_me:6638: \$? = $ac_status" >&5
    6094 +  echo "$as_me:6933: \$? = $ac_status" >&5
     6177+  echo "$as_me:6934: \$? = $ac_status" >&5
    60956178   (exit $ac_status); } &&
    60966179          { ac_try='test -s conftest.$ac_objext'
    60976180-  { (eval echo "$as_me:6641: \"$ac_try\"") >&5
    6098 +  { (eval echo "$as_me:6936: \"$ac_try\"") >&5
     6181+  { (eval echo "$as_me:6937: \"$ac_try\"") >&5
    60996182   (eval $ac_try) 2>&5
    61006183   ac_status=$?
    61016184-  echo "$as_me:6644: \$? = $ac_status" >&5
    6102 +  echo "$as_me:6939: \$? = $ac_status" >&5
     6185+  echo "$as_me:6940: \$? = $ac_status" >&5
    61036186   (exit $ac_status); }; }; then
    61046187   cf_cv_define_sigwinch=yes
     
    61086191 cat >conftest.$ac_ext <<_ACEOF
    61096192-#line 6651 "configure"
    6110 +#line 6946 "configure"
     6193+#line 6947 "configure"
    61116194 #include "confdefs.h"
    61126195 
    61136196 #undef _XOPEN_SOURCE
    6114 @@ -6666,16 +6961,16 @@
     6197@@ -6666,16 +6962,16 @@
    61156198 }
    61166199 _ACEOF
    61176200 rm -f conftest.$ac_objext
    61186201-if { (eval echo "$as_me:6669: \"$ac_compile\"") >&5
    6119 +if { (eval echo "$as_me:6964: \"$ac_compile\"") >&5
     6202+if { (eval echo "$as_me:6965: \"$ac_compile\"") >&5
    61206203   (eval $ac_compile) 2>&5
    61216204   ac_status=$?
    61226205-  echo "$as_me:6672: \$? = $ac_status" >&5
    6123 +  echo "$as_me:6967: \$? = $ac_status" >&5
     6206+  echo "$as_me:6968: \$? = $ac_status" >&5
    61246207   (exit $ac_status); } &&
    61256208          { ac_try='test -s conftest.$ac_objext'
    61266209-  { (eval echo "$as_me:6675: \"$ac_try\"") >&5
    6127 +  { (eval echo "$as_me:6970: \"$ac_try\"") >&5
     6210+  { (eval echo "$as_me:6971: \"$ac_try\"") >&5
    61286211   (eval $ac_try) 2>&5
    61296212   ac_status=$?
    61306213-  echo "$as_me:6678: \$? = $ac_status" >&5
    6131 +  echo "$as_me:6973: \$? = $ac_status" >&5
     6214+  echo "$as_me:6974: \$? = $ac_status" >&5
    61326215   (exit $ac_status); }; }; then
    61336216   cf_cv_define_sigwinch=maybe
    61346217 else
    6135 @@ -6689,11 +6984,11 @@
     6218@@ -6689,11 +6985,11 @@
    61366219 rm -f conftest.$ac_objext conftest.$ac_ext
    61376220 
    61386221 fi
    61396222-echo "$as_me:6692: result: $cf_cv_define_sigwinch" >&5
    6140 +echo "$as_me:6987: result: $cf_cv_define_sigwinch" >&5
     6223+echo "$as_me:6988: result: $cf_cv_define_sigwinch" >&5
    61416224 echo "${ECHO_T}$cf_cv_define_sigwinch" >&6
    61426225 
    61436226 if test "$cf_cv_define_sigwinch" = maybe ; then
    61446227-echo "$as_me:6696: checking for actual SIGWINCH definition" >&5
    6145 +echo "$as_me:6991: checking for actual SIGWINCH definition" >&5
     6228+echo "$as_me:6992: checking for actual SIGWINCH definition" >&5
    61466229 echo $ECHO_N "checking for actual SIGWINCH definition... $ECHO_C" >&6
    61476230 if test "${cf_cv_fixup_sigwinch+set}" = set; then
    61486231   echo $ECHO_N "(cached) $ECHO_C" >&6
    6149 @@ -6704,7 +6999,7 @@
     6232@@ -6704,7 +7000,7 @@
    61506233 while test $cf_sigwinch != 1
    61516234 do
    61526235        cat >conftest.$ac_ext <<_ACEOF
    61536236-#line 6707 "configure"
    6154 +#line 7002 "configure"
     6237+#line 7003 "configure"
    61556238 #include "confdefs.h"
    61566239 
    61576240 #undef _XOPEN_SOURCE
    6158 @@ -6726,16 +7021,16 @@
     6241@@ -6726,16 +7022,16 @@
    61596242 }
    61606243 _ACEOF
    61616244 rm -f conftest.$ac_objext
    61626245-if { (eval echo "$as_me:6729: \"$ac_compile\"") >&5
    6163 +if { (eval echo "$as_me:7024: \"$ac_compile\"") >&5
     6246+if { (eval echo "$as_me:7025: \"$ac_compile\"") >&5
    61646247   (eval $ac_compile) 2>&5
    61656248   ac_status=$?
    61666249-  echo "$as_me:6732: \$? = $ac_status" >&5
    6167 +  echo "$as_me:7027: \$? = $ac_status" >&5
     6250+  echo "$as_me:7028: \$? = $ac_status" >&5
    61686251   (exit $ac_status); } &&
    61696252          { ac_try='test -s conftest.$ac_objext'
    61706253-  { (eval echo "$as_me:6735: \"$ac_try\"") >&5
    6171 +  { (eval echo "$as_me:7030: \"$ac_try\"") >&5
     6254+  { (eval echo "$as_me:7031: \"$ac_try\"") >&5
    61726255   (eval $ac_try) 2>&5
    61736256   ac_status=$?
    61746257-  echo "$as_me:6738: \$? = $ac_status" >&5
    6175 +  echo "$as_me:7033: \$? = $ac_status" >&5
     6258+  echo "$as_me:7034: \$? = $ac_status" >&5
    61766259   (exit $ac_status); }; }; then
    61776260   cf_cv_fixup_sigwinch=$cf_sigwinch
    61786261         break
    6179 @@ -6749,7 +7044,7 @@
     6262@@ -6749,7 +7045,7 @@
    61806263 done
    61816264 
    61826265 fi
    61836266-echo "$as_me:6752: result: $cf_cv_fixup_sigwinch" >&5
    6184 +echo "$as_me:7047: result: $cf_cv_fixup_sigwinch" >&5
     6267+echo "$as_me:7048: result: $cf_cv_fixup_sigwinch" >&5
    61856268 echo "${ECHO_T}$cf_cv_fixup_sigwinch" >&6
    61866269 
    61876270        if test "$cf_cv_fixup_sigwinch" != unknown ; then
    6188 @@ -6759,13 +7054,13 @@
     6271@@ -6759,13 +7055,13 @@
    61896272 
    61906273 # Checks for CODESET support.
    61916274 
    61926275-  echo "$as_me:6762: checking for nl_langinfo and CODESET" >&5
    6193 +  echo "$as_me:7057: checking for nl_langinfo and CODESET" >&5
     6276+  echo "$as_me:7058: checking for nl_langinfo and CODESET" >&5
    61946277 echo $ECHO_N "checking for nl_langinfo and CODESET... $ECHO_C" >&6
    61956278 if test "${am_cv_langinfo_codeset+set}" = set; then
     
    61986281   cat >conftest.$ac_ext <<_ACEOF
    61996282-#line 6768 "configure"
    6200 +#line 7063 "configure"
     6283+#line 7064 "configure"
    62016284 #include "confdefs.h"
    62026285 #include <langinfo.h>
    62036286 int
    6204 @@ -6777,16 +7072,16 @@
     6287@@ -6777,16 +7073,16 @@
    62056288 }
    62066289 _ACEOF
    62076290 rm -f conftest.$ac_objext conftest$ac_exeext
    62086291-if { (eval echo "$as_me:6780: \"$ac_link\"") >&5
    6209 +if { (eval echo "$as_me:7075: \"$ac_link\"") >&5
     6292+if { (eval echo "$as_me:7076: \"$ac_link\"") >&5
    62106293   (eval $ac_link) 2>&5
    62116294   ac_status=$?
    62126295-  echo "$as_me:6783: \$? = $ac_status" >&5
    6213 +  echo "$as_me:7078: \$? = $ac_status" >&5
     6296+  echo "$as_me:7079: \$? = $ac_status" >&5
    62146297   (exit $ac_status); } &&
    62156298          { ac_try='test -s conftest$ac_exeext'
    62166299-  { (eval echo "$as_me:6786: \"$ac_try\"") >&5
    6217 +  { (eval echo "$as_me:7081: \"$ac_try\"") >&5
     6300+  { (eval echo "$as_me:7082: \"$ac_try\"") >&5
    62186301   (eval $ac_try) 2>&5
    62196302   ac_status=$?
    62206303-  echo "$as_me:6789: \$? = $ac_status" >&5
    6221 +  echo "$as_me:7084: \$? = $ac_status" >&5
     6304+  echo "$as_me:7085: \$? = $ac_status" >&5
    62226305   (exit $ac_status); }; }; then
    62236306   am_cv_langinfo_codeset=yes
    62246307 else
    6225 @@ -6797,7 +7092,7 @@
     6308@@ -6797,7 +7093,7 @@
    62266309 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    62276310 
    62286311 fi
    62296312-echo "$as_me:6800: result: $am_cv_langinfo_codeset" >&5
    6230 +echo "$as_me:7095: result: $am_cv_langinfo_codeset" >&5
     6313+echo "$as_me:7096: result: $am_cv_langinfo_codeset" >&5
    62316314 echo "${ECHO_T}$am_cv_langinfo_codeset" >&6
    62326315   if test $am_cv_langinfo_codeset = yes; then
    62336316 
    6234 @@ -6811,7 +7106,7 @@
     6317@@ -6811,7 +7107,7 @@
    62356318 NCURSES_OK_WCHAR_T=
    62366319 NCURSES_OK_WINT_T=
    62376320 
    62386321-echo "$as_me:6814: checking if you want wide-character code" >&5
    6239 +echo "$as_me:7109: checking if you want wide-character code" >&5
     6322+echo "$as_me:7110: checking if you want wide-character code" >&5
    62406323 echo $ECHO_N "checking if you want wide-character code... $ECHO_C" >&6
    62416324 
    62426325 # Check whether --enable-widec or --disable-widec was given.
    6243 @@ -6821,7 +7116,7 @@
     6326@@ -6821,7 +7117,7 @@
    62446327 else
    62456328   with_widec=no
    62466329 fi;
    62476330-echo "$as_me:6824: result: $with_widec" >&5
    6248 +echo "$as_me:7119: result: $with_widec" >&5
     6331+echo "$as_me:7120: result: $with_widec" >&5
    62496332 echo "${ECHO_T}$with_widec" >&6
    62506333 if test "$with_widec" = yes ; then
    62516334        LIB_SUFFIX="w${LIB_SUFFIX}"
    6252 @@ -6829,10 +7124,10 @@
     6335@@ -6829,10 +7125,10 @@
    62536336 #define USE_WIDEC_SUPPORT 1
    62546337 EOF
    62556338 
    62566339-echo "$as_me:6832: checking if we must define _XOPEN_SOURCE_EXTENDED" >&5
    6257 +echo "$as_me:7127: checking if we must define _XOPEN_SOURCE_EXTENDED" >&5
     6340+echo "$as_me:7128: checking if we must define _XOPEN_SOURCE_EXTENDED" >&5
    62586341 echo $ECHO_N "checking if we must define _XOPEN_SOURCE_EXTENDED... $ECHO_C" >&6
    62596342 cat >conftest.$ac_ext <<_ACEOF
    62606343-#line 6835 "configure"
    6261 +#line 7130 "configure"
     6344+#line 7131 "configure"
    62626345 #include "confdefs.h"
    62636346 #include <sys/types.h>
    62646347 
    6265 @@ -6848,16 +7143,16 @@
     6348@@ -6848,16 +7144,16 @@
    62666349 }
    62676350 _ACEOF
    62686351 rm -f conftest.$ac_objext
    62696352-if { (eval echo "$as_me:6851: \"$ac_compile\"") >&5
    6270 +if { (eval echo "$as_me:7146: \"$ac_compile\"") >&5
     6353+if { (eval echo "$as_me:7147: \"$ac_compile\"") >&5
    62716354   (eval $ac_compile) 2>&5
    62726355   ac_status=$?
    62736356-  echo "$as_me:6854: \$? = $ac_status" >&5
    6274 +  echo "$as_me:7149: \$? = $ac_status" >&5
     6357+  echo "$as_me:7150: \$? = $ac_status" >&5
    62756358   (exit $ac_status); } &&
    62766359          { ac_try='test -s conftest.$ac_objext'
    62776360-  { (eval echo "$as_me:6857: \"$ac_try\"") >&5
    6278 +  { (eval echo "$as_me:7152: \"$ac_try\"") >&5
     6361+  { (eval echo "$as_me:7153: \"$ac_try\"") >&5
    62796362   (eval $ac_try) 2>&5
    62806363   ac_status=$?
    62816364-  echo "$as_me:6860: \$? = $ac_status" >&5
    6282 +  echo "$as_me:7155: \$? = $ac_status" >&5
     6365+  echo "$as_me:7156: \$? = $ac_status" >&5
    62836366   (exit $ac_status); }; }; then
    62846367   cf_result=no
    62856368 else
    6286 @@ -6866,16 +7161,16 @@
     6369@@ -6866,16 +7162,16 @@
    62876370 cf_result=yes
    62886371 fi
    62896372 rm -f conftest.$ac_objext conftest.$ac_ext
    62906373-echo "$as_me:6869: result: $cf_result" >&5
    6291 +echo "$as_me:7164: result: $cf_result" >&5
     6374+echo "$as_me:7165: result: $cf_result" >&5
    62926375 echo "${ECHO_T}$cf_result" >&6
    62936376 
     
    62966379 elif test "x" != "x" ; then
    62976380-       echo "$as_me:6875: checking checking for compatible value versus " >&5
    6298 +       echo "$as_me:7170: checking checking for compatible value versus " >&5
     6381+       echo "$as_me:7171: checking checking for compatible value versus " >&5
    62996382 echo $ECHO_N "checking checking for compatible value versus ... $ECHO_C" >&6
    63006383        cat >conftest.$ac_ext <<_ACEOF
    63016384-#line 6878 "configure"
    6302 +#line 7173 "configure"
     6385+#line 7174 "configure"
    63036386 #include "confdefs.h"
    63046387 #include <sys/types.h>
    63056388 
    6306 @@ -6891,16 +7186,16 @@
     6389@@ -6891,16 +7187,16 @@
    63076390 }
    63086391 _ACEOF
    63096392 rm -f conftest.$ac_objext
    63106393-if { (eval echo "$as_me:6894: \"$ac_compile\"") >&5
    6311 +if { (eval echo "$as_me:7189: \"$ac_compile\"") >&5
     6394+if { (eval echo "$as_me:7190: \"$ac_compile\"") >&5
    63126395   (eval $ac_compile) 2>&5
    63136396   ac_status=$?
    63146397-  echo "$as_me:6897: \$? = $ac_status" >&5
    6315 +  echo "$as_me:7192: \$? = $ac_status" >&5
     6398+  echo "$as_me:7193: \$? = $ac_status" >&5
    63166399   (exit $ac_status); } &&
    63176400          { ac_try='test -s conftest.$ac_objext'
    63186401-  { (eval echo "$as_me:6900: \"$ac_try\"") >&5
    6319 +  { (eval echo "$as_me:7195: \"$ac_try\"") >&5
     6402+  { (eval echo "$as_me:7196: \"$ac_try\"") >&5
    63206403   (eval $ac_try) 2>&5
    63216404   ac_status=$?
    63226405-  echo "$as_me:6903: \$? = $ac_status" >&5
    6323 +  echo "$as_me:7198: \$? = $ac_status" >&5
     6406+  echo "$as_me:7199: \$? = $ac_status" >&5
    63246407   (exit $ac_status); }; }; then
    63256408   cf_result=yes
    63266409 else
    6327 @@ -6909,7 +7204,7 @@
     6410@@ -6909,7 +7205,7 @@
    63286411 cf_result=no
    63296412 fi
    63306413 rm -f conftest.$ac_objext conftest.$ac_ext
    63316414-       echo "$as_me:6912: result: $cf_result" >&5
    6332 +       echo "$as_me:7207: result: $cf_result" >&5
     6415+       echo "$as_me:7208: result: $cf_result" >&5
    63336416 echo "${ECHO_T}$cf_result" >&6
    63346417        if test "$cf_result" = no ; then
    63356418                # perhaps we can override it - try...
    6336 @@ -6923,13 +7218,13 @@
     6419@@ -6923,13 +7219,13 @@
    63376420 for ac_func in putwc btowc wctob mbtowc wctomb mblen mbrlen mbrtowc wcsrtombs mbsrtowcs wcstombs mbstowcs
    63386421 do
    63396422 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
    63406423-echo "$as_me:6926: checking for $ac_func" >&5
    6341 +echo "$as_me:7221: checking for $ac_func" >&5
     6424+echo "$as_me:7222: checking for $ac_func" >&5
    63426425 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
    63436426 if eval "test \"\${$as_ac_var+set}\" = set"; then
     
    63466429   cat >conftest.$ac_ext <<_ACEOF
    63476430-#line 6932 "configure"
    6348 +#line 7227 "configure"
     6431+#line 7228 "configure"
    63496432 #include "confdefs.h"
    63506433 /* System header to define __stub macros and hopefully few prototypes,
    63516434     which can conflict with char $ac_func (); below.  */
    6352 @@ -6960,16 +7255,16 @@
     6435@@ -6960,16 +7256,16 @@
    63536436 }
    63546437 _ACEOF
    63556438 rm -f conftest.$ac_objext conftest$ac_exeext
    63566439-if { (eval echo "$as_me:6963: \"$ac_link\"") >&5
    6357 +if { (eval echo "$as_me:7258: \"$ac_link\"") >&5
     6440+if { (eval echo "$as_me:7259: \"$ac_link\"") >&5
    63586441   (eval $ac_link) 2>&5
    63596442   ac_status=$?
    63606443-  echo "$as_me:6966: \$? = $ac_status" >&5
    6361 +  echo "$as_me:7261: \$? = $ac_status" >&5
     6444+  echo "$as_me:7262: \$? = $ac_status" >&5
    63626445   (exit $ac_status); } &&
    63636446          { ac_try='test -s conftest$ac_exeext'
    63646447-  { (eval echo "$as_me:6969: \"$ac_try\"") >&5
    6365 +  { (eval echo "$as_me:7264: \"$ac_try\"") >&5
     6448+  { (eval echo "$as_me:7265: \"$ac_try\"") >&5
    63666449   (eval $ac_try) 2>&5
    63676450   ac_status=$?
    63686451-  echo "$as_me:6972: \$? = $ac_status" >&5
    6369 +  echo "$as_me:7267: \$? = $ac_status" >&5
     6452+  echo "$as_me:7268: \$? = $ac_status" >&5
    63706453   (exit $ac_status); }; }; then
    63716454   eval "$as_ac_var=yes"
    63726455 else
    6373 @@ -6979,7 +7274,7 @@
     6456@@ -6979,7 +7275,7 @@
    63746457 fi
    63756458 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    63766459 fi
    63776460-echo "$as_me:6982: result: `eval echo '${'$as_ac_var'}'`" >&5
    6378 +echo "$as_me:7277: result: `eval echo '${'$as_ac_var'}'`" >&5
     6461+echo "$as_me:7278: result: `eval echo '${'$as_ac_var'}'`" >&5
    63796462 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
    63806463 if test `eval echo '${'$as_ac_var'}'` = yes; then
    63816464   cat >>confdefs.h <<EOF
    6382 @@ -6991,7 +7286,7 @@
     6465@@ -6991,7 +7287,7 @@
    63836466 
    63846467        if test "$ac_cv_func_putwc" != yes ; then
    63856468 
    63866469-echo "$as_me:6994: checking for multibyte character support" >&5
    6387 +echo "$as_me:7289: checking for multibyte character support" >&5
     6470+echo "$as_me:7290: checking for multibyte character support" >&5
    63886471 echo $ECHO_N "checking for multibyte character support... $ECHO_C" >&6
    63896472 if test "${cf_cv_utf8_lib+set}" = set; then
    63906473   echo $ECHO_N "(cached) $ECHO_C" >&6
    6391 @@ -6999,7 +7294,7 @@
     6474@@ -6999,7 +7295,7 @@
    63926475 
    63936476        cf_save_LIBS="$LIBS"
    63946477        cat >conftest.$ac_ext <<_ACEOF
    63956478-#line 7002 "configure"
    6396 +#line 7297 "configure"
     6479+#line 7298 "configure"
    63976480 #include "confdefs.h"
    63986481 
    63996482 #include <stdlib.h>
    6400 @@ -7012,16 +7307,16 @@
     6483@@ -7012,16 +7308,16 @@
    64016484 }
    64026485 _ACEOF
    64036486 rm -f conftest.$ac_objext conftest$ac_exeext
    64046487-if { (eval echo "$as_me:7015: \"$ac_link\"") >&5
    6405 +if { (eval echo "$as_me:7310: \"$ac_link\"") >&5
     6488+if { (eval echo "$as_me:7311: \"$ac_link\"") >&5
    64066489   (eval $ac_link) 2>&5
    64076490   ac_status=$?
    64086491-  echo "$as_me:7018: \$? = $ac_status" >&5
    6409 +  echo "$as_me:7313: \$? = $ac_status" >&5
     6492+  echo "$as_me:7314: \$? = $ac_status" >&5
    64106493   (exit $ac_status); } &&
    64116494          { ac_try='test -s conftest$ac_exeext'
    64126495-  { (eval echo "$as_me:7021: \"$ac_try\"") >&5
    6413 +  { (eval echo "$as_me:7316: \"$ac_try\"") >&5
     6496+  { (eval echo "$as_me:7317: \"$ac_try\"") >&5
    64146497   (eval $ac_try) 2>&5
    64156498   ac_status=$?
    64166499-  echo "$as_me:7024: \$? = $ac_status" >&5
    6417 +  echo "$as_me:7319: \$? = $ac_status" >&5
     6500+  echo "$as_me:7320: \$? = $ac_status" >&5
    64186501   (exit $ac_status); }; }; then
    64196502   cf_cv_utf8_lib=yes
    64206503 else
    6421 @@ -7033,10 +7328,10 @@
     6504@@ -7033,10 +7329,10 @@
    64226505 cf_cv_header_path_utf8=
    64236506 cf_cv_library_path_utf8=
    64246507 
    64256508-echo "${as_me-configure}:7036: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5
    6426 +echo "${as_me-configure}:7331: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5
     6509+echo "${as_me-configure}:7332: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5
    64276510 
    64286511 cat >conftest.$ac_ext <<_ACEOF
    64296512-#line 7039 "configure"
    6430 +#line 7334 "configure"
     6513+#line 7335 "configure"
    64316514 #include "confdefs.h"
    64326515 
    64336516 #include <libutf8.h>
    6434 @@ -7049,16 +7344,16 @@
     6517@@ -7049,16 +7345,16 @@
    64356518 }
    64366519 _ACEOF
    64376520 rm -f conftest.$ac_objext conftest$ac_exeext
    64386521-if { (eval echo "$as_me:7052: \"$ac_link\"") >&5
    6439 +if { (eval echo "$as_me:7347: \"$ac_link\"") >&5
     6522+if { (eval echo "$as_me:7348: \"$ac_link\"") >&5
    64406523   (eval $ac_link) 2>&5
    64416524   ac_status=$?
    64426525-  echo "$as_me:7055: \$? = $ac_status" >&5
    6443 +  echo "$as_me:7350: \$? = $ac_status" >&5
     6526+  echo "$as_me:7351: \$? = $ac_status" >&5
    64446527   (exit $ac_status); } &&
    64456528          { ac_try='test -s conftest$ac_exeext'
    64466529-  { (eval echo "$as_me:7058: \"$ac_try\"") >&5
    6447 +  { (eval echo "$as_me:7353: \"$ac_try\"") >&5
     6530+  { (eval echo "$as_me:7354: \"$ac_try\"") >&5
    64486531   (eval $ac_try) 2>&5
    64496532   ac_status=$?
    64506533-  echo "$as_me:7061: \$? = $ac_status" >&5
    6451 +  echo "$as_me:7356: \$? = $ac_status" >&5
     6534+  echo "$as_me:7357: \$? = $ac_status" >&5
    64526535   (exit $ac_status); }; }; then
    64536536   cf_cv_find_linkage_utf8=yes
    64546537 else
    6455 @@ -7067,12 +7362,41 @@
     6538@@ -7067,12 +7363,41 @@
    64566539 
    64576540     cf_cv_find_linkage_utf8=no
     
    64606543+    test -n "$verbose" && echo "       find linkage for utf8 library" 1>&6
    64616544+
    6462 +echo "${as_me-configure}:7367: testing find linkage for utf8 library ..." 1>&5
    6463 +
    6464 +echo "${as_me-configure}:7369: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5
     6545+echo "${as_me-configure}:7368: testing find linkage for utf8 library ..." 1>&5
     6546+
     6547+echo "${as_me-configure}:7370: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5
    64656548 
    64666549     cf_save_CPPFLAGS="$CPPFLAGS"
     
    64976580 test "/usr" != "$prefix" && \
    64986581 test -d "/usr" && \
    6499 @@ -7143,16 +7467,18 @@
     6582@@ -7143,16 +7468,18 @@
    65006583        test -d $oldincludedir/utf8 && cf_search="$cf_search $oldincludedir/utf8"
    65016584 }
     
    65096592 
    65106593-echo "${as_me-configure}:7151: testing ... testing $cf_cv_header_path_utf8 ..." 1>&5
    6511 +echo "${as_me-configure}:7477: testing ... testing $cf_cv_header_path_utf8 ..." 1>&5
     6594+echo "${as_me-configure}:7478: testing ... testing $cf_cv_header_path_utf8 ..." 1>&5
    65126595 
    65136596         CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_utf8"
    65146597         cat >conftest.$ac_ext <<_ACEOF
    65156598-#line 7155 "configure"
    6516 +#line 7481 "configure"
     6599+#line 7482 "configure"
    65176600 #include "confdefs.h"
    65186601 
    65196602 #include <libutf8.h>
    6520 @@ -7165,21 +7491,21 @@
     6603@@ -7165,21 +7492,21 @@
    65216604 }
    65226605 _ACEOF
    65236606 rm -f conftest.$ac_objext
    65246607-if { (eval echo "$as_me:7168: \"$ac_compile\"") >&5
    6525 +if { (eval echo "$as_me:7494: \"$ac_compile\"") >&5
     6608+if { (eval echo "$as_me:7495: \"$ac_compile\"") >&5
    65266609   (eval $ac_compile) 2>&5
    65276610   ac_status=$?
    65286611-  echo "$as_me:7171: \$? = $ac_status" >&5
    6529 +  echo "$as_me:7497: \$? = $ac_status" >&5
     6612+  echo "$as_me:7498: \$? = $ac_status" >&5
    65306613   (exit $ac_status); } &&
    65316614          { ac_try='test -s conftest.$ac_objext'
    65326615-  { (eval echo "$as_me:7174: \"$ac_try\"") >&5
    6533 +  { (eval echo "$as_me:7500: \"$ac_try\"") >&5
     6616+  { (eval echo "$as_me:7501: \"$ac_try\"") >&5
    65346617   (eval $ac_try) 2>&5
    65356618   ac_status=$?
    65366619-  echo "$as_me:7177: \$? = $ac_status" >&5
    6537 +  echo "$as_me:7503: \$? = $ac_status" >&5
     6620+  echo "$as_me:7504: \$? = $ac_status" >&5
    65386621   (exit $ac_status); }; }; then
    65396622 
     
    65416624 
    65426625-echo "${as_me-configure}:7182: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5
    6543 +echo "${as_me-configure}:7508: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5
     6626+echo "${as_me-configure}:7509: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5
    65446627 
    65456628             cf_cv_find_linkage_utf8=maybe
    65466629             cf_test_CPPFLAGS="$CPPFLAGS"
    6547 @@ -7197,13 +7523,39 @@
     6630@@ -7197,13 +7524,39 @@
    65486631 
    65496632     if test "$cf_cv_find_linkage_utf8" = maybe ; then
    65506633 
    65516634-echo "${as_me-configure}:7200: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5
    6552 +echo "${as_me-configure}:7526: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5
     6635+echo "${as_me-configure}:7527: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5
    65536636 
    65546637       cf_save_LIBS="$LIBS"
     
    65876670 test "/usr" != "$prefix" && \
    65886671 test -d "/usr" && \
    6589 @@ -7260,18 +7612,20 @@
     6672@@ -7260,18 +7613,20 @@
    65906673        test -d $HOME/utf8/lib/utf8 &&    cf_search="$cf_search $HOME/utf8/lib/utf8"
    65916674 }
     
    65996682 
    66006683-echo "${as_me-configure}:7268: testing ... testing $cf_cv_library_path_utf8 ..." 1>&5
    6601 +echo "${as_me-configure}:7622: testing ... testing $cf_cv_library_path_utf8 ..." 1>&5
     6684+echo "${as_me-configure}:7623: testing ... testing $cf_cv_library_path_utf8 ..." 1>&5
    66026685 
    66036686             CPPFLAGS="$cf_test_CPPFLAGS"
     
    66066689             cat >conftest.$ac_ext <<_ACEOF
    66076690-#line 7274 "configure"
    6608 +#line 7628 "configure"
     6691+#line 7629 "configure"
    66096692 #include "confdefs.h"
    66106693 
    66116694 #include <libutf8.h>
    6612 @@ -7284,21 +7638,21 @@
     6695@@ -7284,21 +7639,21 @@
    66136696 }
    66146697 _ACEOF
    66156698 rm -f conftest.$ac_objext conftest$ac_exeext
    66166699-if { (eval echo "$as_me:7287: \"$ac_link\"") >&5
    6617 +if { (eval echo "$as_me:7641: \"$ac_link\"") >&5
     6700+if { (eval echo "$as_me:7642: \"$ac_link\"") >&5
    66186701   (eval $ac_link) 2>&5
    66196702   ac_status=$?
    66206703-  echo "$as_me:7290: \$? = $ac_status" >&5
    6621 +  echo "$as_me:7644: \$? = $ac_status" >&5
     6704+  echo "$as_me:7645: \$? = $ac_status" >&5
    66226705   (exit $ac_status); } &&
    66236706          { ac_try='test -s conftest$ac_exeext'
    66246707-  { (eval echo "$as_me:7293: \"$ac_try\"") >&5
    6625 +  { (eval echo "$as_me:7647: \"$ac_try\"") >&5
     6708+  { (eval echo "$as_me:7648: \"$ac_try\"") >&5
    66266709   (eval $ac_try) 2>&5
    66276710   ac_status=$?
    66286711-  echo "$as_me:7296: \$? = $ac_status" >&5
    6629 +  echo "$as_me:7650: \$? = $ac_status" >&5
     6712+  echo "$as_me:7651: \$? = $ac_status" >&5
    66306713   (exit $ac_status); }; }; then
    66316714 
     
    66336716 
    66346717-echo "${as_me-configure}:7301: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5
    6635 +echo "${as_me-configure}:7655: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5
     6718+echo "${as_me-configure}:7656: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5
    66366719 
    66376720                 cf_cv_find_linkage_utf8=yes
    66386721                 cf_cv_library_file_utf8="-lutf8"
    6639 @@ -7336,7 +7690,7 @@
     6722@@ -7336,7 +7691,7 @@
    66406723 fi
    66416724 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    66426725 fi
    66436726-echo "$as_me:7339: result: $cf_cv_utf8_lib" >&5
    6644 +echo "$as_me:7693: result: $cf_cv_utf8_lib" >&5
     6727+echo "$as_me:7694: result: $cf_cv_utf8_lib" >&5
    66456728 echo "${ECHO_T}$cf_cv_utf8_lib" >&6
    66466729 
    66476730 # HAVE_LIBUTF8_H is used by ncurses if curses.h is shared between
    6648 @@ -7364,13 +7718,13 @@
     6731@@ -7364,13 +7719,13 @@
    66496732                fi
    66506733 
     
    66586741                          cat >conftest.$ac_ext <<_ACEOF
    66596742-#line 7373 "configure"
    6660 +#line 7727 "configure"
     6743+#line 7728 "configure"
    66616744 #include "confdefs.h"
    66626745 #include <stdio.h>
    66636746 int
    6664 @@ -7382,16 +7736,16 @@
     6747@@ -7382,16 +7737,16 @@
    66656748 }
    66666749 _ACEOF
    66676750 rm -f conftest.$ac_objext
    66686751-if { (eval echo "$as_me:7385: \"$ac_compile\"") >&5
    6669 +if { (eval echo "$as_me:7739: \"$ac_compile\"") >&5
     6752+if { (eval echo "$as_me:7740: \"$ac_compile\"") >&5
    66706753   (eval $ac_compile) 2>&5
    66716754   ac_status=$?
    66726755-  echo "$as_me:7388: \$? = $ac_status" >&5
    6673 +  echo "$as_me:7742: \$? = $ac_status" >&5
     6756+  echo "$as_me:7743: \$? = $ac_status" >&5
    66746757   (exit $ac_status); } &&
    66756758          { ac_try='test -s conftest.$ac_objext'
    66766759-  { (eval echo "$as_me:7391: \"$ac_try\"") >&5
    6677 +  { (eval echo "$as_me:7745: \"$ac_try\"") >&5
     6760+  { (eval echo "$as_me:7746: \"$ac_try\"") >&5
    66786761   (eval $ac_try) 2>&5
    66796762   ac_status=$?
    66806763-  echo "$as_me:7394: \$? = $ac_status" >&5
    6681 +  echo "$as_me:7748: \$? = $ac_status" >&5
     6764+  echo "$as_me:7749: \$? = $ac_status" >&5
    66826765   (exit $ac_status); }; }; then
    66836766   :
    66846767 else
    6685 @@ -7408,13 +7762,13 @@
     6768@@ -7408,13 +7763,13 @@
    66866769                if test "$cf_have_incdir" = no ; then
    66876770                  test -n "$verbose" && echo "  adding $cf_add_incdir to include-path" 1>&6
    66886771 
    66896772-echo "${as_me-configure}:7411: testing adding $cf_add_incdir to include-path ..." 1>&5
    6690 +echo "${as_me-configure}:7765: testing adding $cf_add_incdir to include-path ..." 1>&5
     6773+echo "${as_me-configure}:7766: testing adding $cf_add_incdir to include-path ..." 1>&5
    66916774 
    66926775-                 CPPFLAGS="-I$cf_add_incdir $CPPFLAGS"
     
    67026785                  break
    67036786                fi
    6704 @@ -7442,7 +7796,7 @@
     6787@@ -7442,7 +7797,7 @@
    67056788       if test "$cf_have_libdir" = no ; then
    67066789         test -n "$verbose" && echo "   adding $cf_add_libdir to library-path" 1>&6
    67076790 
    67086791-echo "${as_me-configure}:7445: testing adding $cf_add_libdir to library-path ..." 1>&5
    6709 +echo "${as_me-configure}:7799: testing adding $cf_add_libdir to library-path ..." 1>&5
     6792+echo "${as_me-configure}:7800: testing adding $cf_add_libdir to library-path ..." 1>&5
    67106793 
    67116794         LDFLAGS="-L$cf_add_libdir $LDFLAGS"
    67126795       fi
    6713 @@ -7459,14 +7813,14 @@
     6796@@ -7459,14 +7814,14 @@
    67146797        fi
    67156798 
    67166799 # This is needed on Tru64 5.0 to declare mbstate_t
    67176800-echo "$as_me:7462: checking if we must include wchar.h to declare mbstate_t" >&5
    6718 +echo "$as_me:7816: checking if we must include wchar.h to declare mbstate_t" >&5
     6801+echo "$as_me:7817: checking if we must include wchar.h to declare mbstate_t" >&5
    67196802 echo $ECHO_N "checking if we must include wchar.h to declare mbstate_t... $ECHO_C" >&6
    67206803 if test "${cf_cv_mbstate_t+set}" = set; then
     
    67246807 cat >conftest.$ac_ext <<_ACEOF
    67256808-#line 7469 "configure"
    6726 +#line 7823 "configure"
     6809+#line 7824 "configure"
    67276810 #include "confdefs.h"
    67286811 
    67296812 #include <stdlib.h>
    6730 @@ -7484,23 +7838,23 @@
     6813@@ -7484,23 +7839,23 @@
    67316814 }
    67326815 _ACEOF
    67336816 rm -f conftest.$ac_objext
    67346817-if { (eval echo "$as_me:7487: \"$ac_compile\"") >&5
    6735 +if { (eval echo "$as_me:7841: \"$ac_compile\"") >&5
     6818+if { (eval echo "$as_me:7842: \"$ac_compile\"") >&5
    67366819   (eval $ac_compile) 2>&5
    67376820   ac_status=$?
    67386821-  echo "$as_me:7490: \$? = $ac_status" >&5
    6739 +  echo "$as_me:7844: \$? = $ac_status" >&5
     6822+  echo "$as_me:7845: \$? = $ac_status" >&5
    67406823   (exit $ac_status); } &&
    67416824          { ac_try='test -s conftest.$ac_objext'
    67426825-  { (eval echo "$as_me:7493: \"$ac_try\"") >&5
    6743 +  { (eval echo "$as_me:7847: \"$ac_try\"") >&5
     6826+  { (eval echo "$as_me:7848: \"$ac_try\"") >&5
    67446827   (eval $ac_try) 2>&5
    67456828   ac_status=$?
    67466829-  echo "$as_me:7496: \$? = $ac_status" >&5
    6747 +  echo "$as_me:7850: \$? = $ac_status" >&5
     6830+  echo "$as_me:7851: \$? = $ac_status" >&5
    67486831   (exit $ac_status); }; }; then
    67496832   cf_cv_mbstate_t=no
     
    67536836 cat >conftest.$ac_ext <<_ACEOF
    67546837-#line 7503 "configure"
    6755 +#line 7857 "configure"
     6838+#line 7858 "configure"
    67566839 #include "confdefs.h"
    67576840 
    67586841 #include <stdlib.h>
    6759 @@ -7519,16 +7873,16 @@
     6842@@ -7519,16 +7874,16 @@
    67606843 }
    67616844 _ACEOF
    67626845 rm -f conftest.$ac_objext
    67636846-if { (eval echo "$as_me:7522: \"$ac_compile\"") >&5
    6764 +if { (eval echo "$as_me:7876: \"$ac_compile\"") >&5
     6847+if { (eval echo "$as_me:7877: \"$ac_compile\"") >&5
    67656848   (eval $ac_compile) 2>&5
    67666849   ac_status=$?
    67676850-  echo "$as_me:7525: \$? = $ac_status" >&5
    6768 +  echo "$as_me:7879: \$? = $ac_status" >&5
     6851+  echo "$as_me:7880: \$? = $ac_status" >&5
    67696852   (exit $ac_status); } &&
    67706853          { ac_try='test -s conftest.$ac_objext'
    67716854-  { (eval echo "$as_me:7528: \"$ac_try\"") >&5
    6772 +  { (eval echo "$as_me:7882: \"$ac_try\"") >&5
     6855+  { (eval echo "$as_me:7883: \"$ac_try\"") >&5
    67736856   (eval $ac_try) 2>&5
    67746857   ac_status=$?
    67756858-  echo "$as_me:7531: \$? = $ac_status" >&5
    6776 +  echo "$as_me:7885: \$? = $ac_status" >&5
     6859+  echo "$as_me:7886: \$? = $ac_status" >&5
    67776860   (exit $ac_status); }; }; then
    67786861   cf_cv_mbstate_t=yes
    67796862 else
    6780 @@ -7540,7 +7894,7 @@
     6863@@ -7540,7 +7895,7 @@
    67816864 fi
    67826865 rm -f conftest.$ac_objext conftest.$ac_ext
    67836866 fi
    67846867-echo "$as_me:7543: result: $cf_cv_mbstate_t" >&5
    6785 +echo "$as_me:7897: result: $cf_cv_mbstate_t" >&5
     6868+echo "$as_me:7898: result: $cf_cv_mbstate_t" >&5
    67866869 echo "${ECHO_T}$cf_cv_mbstate_t" >&6
    67876870 
    67886871 if test "$cf_cv_mbstate_t" = yes ; then
    6789 @@ -7557,14 +7911,14 @@
     6872@@ -7557,14 +7912,14 @@
    67906873 fi
    67916874 
    67926875 # This is needed on Tru64 5.0 to declare wchar_t
    67936876-echo "$as_me:7560: checking if we must include wchar.h to declare wchar_t" >&5
    6794 +echo "$as_me:7914: checking if we must include wchar.h to declare wchar_t" >&5
     6877+echo "$as_me:7915: checking if we must include wchar.h to declare wchar_t" >&5
    67956878 echo $ECHO_N "checking if we must include wchar.h to declare wchar_t... $ECHO_C" >&6
    67966879 if test "${cf_cv_wchar_t+set}" = set; then
     
    68006883 cat >conftest.$ac_ext <<_ACEOF
    68016884-#line 7567 "configure"
    6802 +#line 7921 "configure"
     6885+#line 7922 "configure"
    68036886 #include "confdefs.h"
    68046887 
    68056888 #include <stdlib.h>
    6806 @@ -7582,23 +7936,23 @@
     6889@@ -7582,23 +7937,23 @@
    68076890 }
    68086891 _ACEOF
    68096892 rm -f conftest.$ac_objext
    68106893-if { (eval echo "$as_me:7585: \"$ac_compile\"") >&5
    6811 +if { (eval echo "$as_me:7939: \"$ac_compile\"") >&5
     6894+if { (eval echo "$as_me:7940: \"$ac_compile\"") >&5
    68126895   (eval $ac_compile) 2>&5
    68136896   ac_status=$?
    68146897-  echo "$as_me:7588: \$? = $ac_status" >&5
    6815 +  echo "$as_me:7942: \$? = $ac_status" >&5
     6898+  echo "$as_me:7943: \$? = $ac_status" >&5
    68166899   (exit $ac_status); } &&
    68176900          { ac_try='test -s conftest.$ac_objext'
    68186901-  { (eval echo "$as_me:7591: \"$ac_try\"") >&5
    6819 +  { (eval echo "$as_me:7945: \"$ac_try\"") >&5
     6902+  { (eval echo "$as_me:7946: \"$ac_try\"") >&5
    68206903   (eval $ac_try) 2>&5
    68216904   ac_status=$?
    68226905-  echo "$as_me:7594: \$? = $ac_status" >&5
    6823 +  echo "$as_me:7948: \$? = $ac_status" >&5
     6906+  echo "$as_me:7949: \$? = $ac_status" >&5
    68246907   (exit $ac_status); }; }; then
    68256908   cf_cv_wchar_t=no
     
    68296912 cat >conftest.$ac_ext <<_ACEOF
    68306913-#line 7601 "configure"
    6831 +#line 7955 "configure"
     6914+#line 7956 "configure"
    68326915 #include "confdefs.h"
    68336916 
    68346917 #include <stdlib.h>
    6835 @@ -7617,16 +7971,16 @@
     6918@@ -7617,16 +7972,16 @@
    68366919 }
    68376920 _ACEOF
    68386921 rm -f conftest.$ac_objext
    68396922-if { (eval echo "$as_me:7620: \"$ac_compile\"") >&5
    6840 +if { (eval echo "$as_me:7974: \"$ac_compile\"") >&5
     6923+if { (eval echo "$as_me:7975: \"$ac_compile\"") >&5
    68416924   (eval $ac_compile) 2>&5
    68426925   ac_status=$?
    68436926-  echo "$as_me:7623: \$? = $ac_status" >&5
    6844 +  echo "$as_me:7977: \$? = $ac_status" >&5
     6927+  echo "$as_me:7978: \$? = $ac_status" >&5
    68456928   (exit $ac_status); } &&
    68466929          { ac_try='test -s conftest.$ac_objext'
    68476930-  { (eval echo "$as_me:7626: \"$ac_try\"") >&5
    6848 +  { (eval echo "$as_me:7980: \"$ac_try\"") >&5
     6931+  { (eval echo "$as_me:7981: \"$ac_try\"") >&5
    68496932   (eval $ac_try) 2>&5
    68506933   ac_status=$?
    68516934-  echo "$as_me:7629: \$? = $ac_status" >&5
    6852 +  echo "$as_me:7983: \$? = $ac_status" >&5
     6935+  echo "$as_me:7984: \$? = $ac_status" >&5
    68536936   (exit $ac_status); }; }; then
    68546937   cf_cv_wchar_t=yes
    68556938 else
    6856 @@ -7638,7 +7992,7 @@
     6939@@ -7638,7 +7993,7 @@
    68576940 fi
    68586941 rm -f conftest.$ac_objext conftest.$ac_ext
    68596942 fi
    68606943-echo "$as_me:7641: result: $cf_cv_wchar_t" >&5
    6861 +echo "$as_me:7995: result: $cf_cv_wchar_t" >&5
     6944+echo "$as_me:7996: result: $cf_cv_wchar_t" >&5
    68626945 echo "${ECHO_T}$cf_cv_wchar_t" >&6
    68636946 
    68646947 if test "$cf_cv_wchar_t" = yes ; then
    6865 @@ -7660,14 +8014,14 @@
     6948@@ -7660,14 +8015,14 @@
    68666949 fi
    68676950 
    68686951 # This is needed on Tru64 5.0 to declare wint_t
    68696952-echo "$as_me:7663: checking if we must include wchar.h to declare wint_t" >&5
    6870 +echo "$as_me:8017: checking if we must include wchar.h to declare wint_t" >&5
     6953+echo "$as_me:8018: checking if we must include wchar.h to declare wint_t" >&5
    68716954 echo $ECHO_N "checking if we must include wchar.h to declare wint_t... $ECHO_C" >&6
    68726955 if test "${cf_cv_wint_t+set}" = set; then
     
    68766959 cat >conftest.$ac_ext <<_ACEOF
    68776960-#line 7670 "configure"
    6878 +#line 8024 "configure"
     6961+#line 8025 "configure"
    68796962 #include "confdefs.h"
    68806963 
    68816964 #include <stdlib.h>
    6882 @@ -7685,23 +8039,23 @@
     6965@@ -7685,23 +8040,23 @@
    68836966 }
    68846967 _ACEOF
    68856968 rm -f conftest.$ac_objext
    68866969-if { (eval echo "$as_me:7688: \"$ac_compile\"") >&5
    6887 +if { (eval echo "$as_me:8042: \"$ac_compile\"") >&5
     6970+if { (eval echo "$as_me:8043: \"$ac_compile\"") >&5
    68886971   (eval $ac_compile) 2>&5
    68896972   ac_status=$?
    68906973-  echo "$as_me:7691: \$? = $ac_status" >&5
    6891 +  echo "$as_me:8045: \$? = $ac_status" >&5
     6974+  echo "$as_me:8046: \$? = $ac_status" >&5
    68926975   (exit $ac_status); } &&
    68936976          { ac_try='test -s conftest.$ac_objext'
    68946977-  { (eval echo "$as_me:7694: \"$ac_try\"") >&5
    6895 +  { (eval echo "$as_me:8048: \"$ac_try\"") >&5
     6978+  { (eval echo "$as_me:8049: \"$ac_try\"") >&5
    68966979   (eval $ac_try) 2>&5
    68976980   ac_status=$?
    68986981-  echo "$as_me:7697: \$? = $ac_status" >&5
    6899 +  echo "$as_me:8051: \$? = $ac_status" >&5
     6982+  echo "$as_me:8052: \$? = $ac_status" >&5
    69006983   (exit $ac_status); }; }; then
    69016984   cf_cv_wint_t=no
     
    69056988 cat >conftest.$ac_ext <<_ACEOF
    69066989-#line 7704 "configure"
    6907 +#line 8058 "configure"
     6990+#line 8059 "configure"
    69086991 #include "confdefs.h"
    69096992 
    69106993 #include <stdlib.h>
    6911 @@ -7720,16 +8074,16 @@
     6994@@ -7720,16 +8075,16 @@
    69126995 }
    69136996 _ACEOF
    69146997 rm -f conftest.$ac_objext
    69156998-if { (eval echo "$as_me:7723: \"$ac_compile\"") >&5
    6916 +if { (eval echo "$as_me:8077: \"$ac_compile\"") >&5
     6999+if { (eval echo "$as_me:8078: \"$ac_compile\"") >&5
    69177000   (eval $ac_compile) 2>&5
    69187001   ac_status=$?
    69197002-  echo "$as_me:7726: \$? = $ac_status" >&5
    6920 +  echo "$as_me:8080: \$? = $ac_status" >&5
     7003+  echo "$as_me:8081: \$? = $ac_status" >&5
    69217004   (exit $ac_status); } &&
    69227005          { ac_try='test -s conftest.$ac_objext'
    69237006-  { (eval echo "$as_me:7729: \"$ac_try\"") >&5
    6924 +  { (eval echo "$as_me:8083: \"$ac_try\"") >&5
     7007+  { (eval echo "$as_me:8084: \"$ac_try\"") >&5
    69257008   (eval $ac_try) 2>&5
    69267009   ac_status=$?
    69277010-  echo "$as_me:7732: \$? = $ac_status" >&5
    6928 +  echo "$as_me:8086: \$? = $ac_status" >&5
     7011+  echo "$as_me:8087: \$? = $ac_status" >&5
    69297012   (exit $ac_status); }; }; then
    69307013   cf_cv_wint_t=yes
    69317014 else
    6932 @@ -7741,7 +8095,7 @@
     7015@@ -7741,7 +8096,7 @@
    69337016 fi
    69347017 rm -f conftest.$ac_objext conftest.$ac_ext
    69357018 fi
    69367019-echo "$as_me:7744: result: $cf_cv_wint_t" >&5
    6937 +echo "$as_me:8098: result: $cf_cv_wint_t" >&5
     7020+echo "$as_me:8099: result: $cf_cv_wint_t" >&5
    69387021 echo "${ECHO_T}$cf_cv_wint_t" >&6
    69397022 
    69407023 if test "$cf_cv_wint_t" = yes ; then
    6941 @@ -7780,7 +8134,7 @@
     7024@@ -7780,7 +8135,7 @@
    69427025        ;;
    69437026 esac
    69447027 
    69457028-echo "$as_me:7783: checking whether to enable _LP64 definition in curses.h" >&5
    6946 +echo "$as_me:8137: checking whether to enable _LP64 definition in curses.h" >&5
     7029+echo "$as_me:8138: checking whether to enable _LP64 definition in curses.h" >&5
    69477030 echo $ECHO_N "checking whether to enable _LP64 definition in curses.h... $ECHO_C" >&6
    69487031 
    69497032 # Check whether --enable-lp64 or --disable-lp64 was given.
    6950 @@ -7790,7 +8144,7 @@
     7033@@ -7790,7 +8145,7 @@
    69517034 else
    69527035   with_lp64=$default_with_lp64
    69537036 fi;
    69547037-echo "$as_me:7793: result: $with_lp64" >&5
    6955 +echo "$as_me:8147: result: $with_lp64" >&5
     7038+echo "$as_me:8148: result: $with_lp64" >&5
    69567039 echo "${ECHO_T}$with_lp64" >&6
    69577040 
    69587041 if test "$with_lp64" = yes ; then
    6959 @@ -7806,7 +8160,7 @@
     7042@@ -7806,7 +8161,7 @@
    69607043 fi;
    69617044 if test "$enable_largefile" != no; then
    69627045 
    69637046-  echo "$as_me:7809: checking for special C compiler options needed for large files" >&5
    6964 +  echo "$as_me:8163: checking for special C compiler options needed for large files" >&5
     7047+  echo "$as_me:8164: checking for special C compiler options needed for large files" >&5
    69657048 echo $ECHO_N "checking for special C compiler options needed for large files... $ECHO_C" >&6
    69667049 if test "${ac_cv_sys_largefile_CC+set}" = set; then
    69677050   echo $ECHO_N "(cached) $ECHO_C" >&6
    6968 @@ -7818,7 +8172,7 @@
     7051@@ -7818,7 +8173,7 @@
    69697052         # IRIX 6.2 and later do not support large files by default,
    69707053         # so use the C compiler's -n32 option if that helps.
    69717054          cat >conftest.$ac_ext <<_ACEOF
    69727055-#line 7821 "configure"
    6973 +#line 8175 "configure"
     7056+#line 8176 "configure"
    69747057 #include "confdefs.h"
    69757058 #include <sys/types.h>
    69767059  /* Check that off_t can represent 2**63 - 1 correctly.
    6977 @@ -7838,16 +8192,16 @@
     7060@@ -7838,16 +8193,16 @@
    69787061 }
    69797062 _ACEOF
    69807063         rm -f conftest.$ac_objext
    69817064-if { (eval echo "$as_me:7841: \"$ac_compile\"") >&5
    6982 +if { (eval echo "$as_me:8195: \"$ac_compile\"") >&5
     7065+if { (eval echo "$as_me:8196: \"$ac_compile\"") >&5
    69837066   (eval $ac_compile) 2>&5
    69847067   ac_status=$?
    69857068-  echo "$as_me:7844: \$? = $ac_status" >&5
    6986 +  echo "$as_me:8198: \$? = $ac_status" >&5
     7069+  echo "$as_me:8199: \$? = $ac_status" >&5
    69877070   (exit $ac_status); } &&
    69887071          { ac_try='test -s conftest.$ac_objext'
    69897072-  { (eval echo "$as_me:7847: \"$ac_try\"") >&5
    6990 +  { (eval echo "$as_me:8201: \"$ac_try\"") >&5
     7073+  { (eval echo "$as_me:8202: \"$ac_try\"") >&5
    69917074   (eval $ac_try) 2>&5
    69927075   ac_status=$?
    69937076-  echo "$as_me:7850: \$? = $ac_status" >&5
    6994 +  echo "$as_me:8204: \$? = $ac_status" >&5
     7077+  echo "$as_me:8205: \$? = $ac_status" >&5
    69957078   (exit $ac_status); }; }; then
    69967079   break
    69977080 else
    6998 @@ -7857,16 +8211,16 @@
     7081@@ -7857,16 +8212,16 @@
    69997082 rm -f conftest.$ac_objext
    70007083         CC="$CC -n32"
    70017084         rm -f conftest.$ac_objext
    70027085-if { (eval echo "$as_me:7860: \"$ac_compile\"") >&5
    7003 +if { (eval echo "$as_me:8214: \"$ac_compile\"") >&5
     7086+if { (eval echo "$as_me:8215: \"$ac_compile\"") >&5
    70047087   (eval $ac_compile) 2>&5
    70057088   ac_status=$?
    70067089-  echo "$as_me:7863: \$? = $ac_status" >&5
    7007 +  echo "$as_me:8217: \$? = $ac_status" >&5
     7090+  echo "$as_me:8218: \$? = $ac_status" >&5
    70087091   (exit $ac_status); } &&
    70097092          { ac_try='test -s conftest.$ac_objext'
    70107093-  { (eval echo "$as_me:7866: \"$ac_try\"") >&5
    7011 +  { (eval echo "$as_me:8220: \"$ac_try\"") >&5
     7094+  { (eval echo "$as_me:8221: \"$ac_try\"") >&5
    70127095   (eval $ac_try) 2>&5
    70137096   ac_status=$?
    70147097-  echo "$as_me:7869: \$? = $ac_status" >&5
    7015 +  echo "$as_me:8223: \$? = $ac_status" >&5
     7098+  echo "$as_me:8224: \$? = $ac_status" >&5
    70167099   (exit $ac_status); }; }; then
    70177100   ac_cv_sys_largefile_CC=' -n32'; break
    70187101 else
    7019 @@ -7880,13 +8234,13 @@
     7102@@ -7880,13 +8235,13 @@
    70207103        rm -f conftest.$ac_ext
    70217104     fi
    70227105 fi
    70237106-echo "$as_me:7883: result: $ac_cv_sys_largefile_CC" >&5
    7024 +echo "$as_me:8237: result: $ac_cv_sys_largefile_CC" >&5
     7107+echo "$as_me:8238: result: $ac_cv_sys_largefile_CC" >&5
    70257108 echo "${ECHO_T}$ac_cv_sys_largefile_CC" >&6
    70267109   if test "$ac_cv_sys_largefile_CC" != no; then
     
    70297112 
    70307113-  echo "$as_me:7889: checking for _FILE_OFFSET_BITS value needed for large files" >&5
    7031 +  echo "$as_me:8243: checking for _FILE_OFFSET_BITS value needed for large files" >&5
     7114+  echo "$as_me:8244: checking for _FILE_OFFSET_BITS value needed for large files" >&5
    70327115 echo $ECHO_N "checking for _FILE_OFFSET_BITS value needed for large files... $ECHO_C" >&6
    70337116 if test "${ac_cv_sys_file_offset_bits+set}" = set; then
    70347117   echo $ECHO_N "(cached) $ECHO_C" >&6
    7035 @@ -7894,7 +8248,7 @@
     7118@@ -7894,7 +8249,7 @@
    70367119   while :; do
    70377120   ac_cv_sys_file_offset_bits=no
    70387121   cat >conftest.$ac_ext <<_ACEOF
    70397122-#line 7897 "configure"
    7040 +#line 8251 "configure"
     7123+#line 8252 "configure"
    70417124 #include "confdefs.h"
    70427125 #include <sys/types.h>
    70437126  /* Check that off_t can represent 2**63 - 1 correctly.
    7044 @@ -7914,16 +8268,16 @@
     7127@@ -7914,16 +8269,16 @@
    70457128 }
    70467129 _ACEOF
    70477130 rm -f conftest.$ac_objext
    70487131-if { (eval echo "$as_me:7917: \"$ac_compile\"") >&5
    7049 +if { (eval echo "$as_me:8271: \"$ac_compile\"") >&5
     7132+if { (eval echo "$as_me:8272: \"$ac_compile\"") >&5
    70507133   (eval $ac_compile) 2>&5
    70517134   ac_status=$?
    70527135-  echo "$as_me:7920: \$? = $ac_status" >&5
    7053 +  echo "$as_me:8274: \$? = $ac_status" >&5
     7136+  echo "$as_me:8275: \$? = $ac_status" >&5
    70547137   (exit $ac_status); } &&
    70557138          { ac_try='test -s conftest.$ac_objext'
    70567139-  { (eval echo "$as_me:7923: \"$ac_try\"") >&5
    7057 +  { (eval echo "$as_me:8277: \"$ac_try\"") >&5
     7140+  { (eval echo "$as_me:8278: \"$ac_try\"") >&5
    70587141   (eval $ac_try) 2>&5
    70597142   ac_status=$?
    70607143-  echo "$as_me:7926: \$? = $ac_status" >&5
    7061 +  echo "$as_me:8280: \$? = $ac_status" >&5
     7144+  echo "$as_me:8281: \$? = $ac_status" >&5
    70627145   (exit $ac_status); }; }; then
    70637146   break
    70647147 else
    7065 @@ -7932,7 +8286,7 @@
     7148@@ -7932,7 +8287,7 @@
    70667149 fi
    70677150 rm -f conftest.$ac_objext conftest.$ac_ext
    70687151   cat >conftest.$ac_ext <<_ACEOF
    70697152-#line 7935 "configure"
    7070 +#line 8289 "configure"
     7153+#line 8290 "configure"
    70717154 #include "confdefs.h"
    70727155 #define _FILE_OFFSET_BITS 64
    70737156 #include <sys/types.h>
    7074 @@ -7953,16 +8307,16 @@
     7157@@ -7953,16 +8308,16 @@
    70757158 }
    70767159 _ACEOF
    70777160 rm -f conftest.$ac_objext
    70787161-if { (eval echo "$as_me:7956: \"$ac_compile\"") >&5
    7079 +if { (eval echo "$as_me:8310: \"$ac_compile\"") >&5
     7162+if { (eval echo "$as_me:8311: \"$ac_compile\"") >&5
    70807163   (eval $ac_compile) 2>&5
    70817164   ac_status=$?
    70827165-  echo "$as_me:7959: \$? = $ac_status" >&5
    7083 +  echo "$as_me:8313: \$? = $ac_status" >&5
     7166+  echo "$as_me:8314: \$? = $ac_status" >&5
    70847167   (exit $ac_status); } &&
    70857168          { ac_try='test -s conftest.$ac_objext'
    70867169-  { (eval echo "$as_me:7962: \"$ac_try\"") >&5
    7087 +  { (eval echo "$as_me:8316: \"$ac_try\"") >&5
     7170+  { (eval echo "$as_me:8317: \"$ac_try\"") >&5
    70887171   (eval $ac_try) 2>&5
    70897172   ac_status=$?
    70907173-  echo "$as_me:7965: \$? = $ac_status" >&5
    7091 +  echo "$as_me:8319: \$? = $ac_status" >&5
     7174+  echo "$as_me:8320: \$? = $ac_status" >&5
    70927175   (exit $ac_status); }; }; then
    70937176   ac_cv_sys_file_offset_bits=64; break
    70947177 else
    7095 @@ -7973,7 +8327,7 @@
     7178@@ -7973,7 +8328,7 @@
    70967179   break
    70977180 done
    70987181 fi
    70997182-echo "$as_me:7976: result: $ac_cv_sys_file_offset_bits" >&5
    7100 +echo "$as_me:8330: result: $ac_cv_sys_file_offset_bits" >&5
     7183+echo "$as_me:8331: result: $ac_cv_sys_file_offset_bits" >&5
    71017184 echo "${ECHO_T}$ac_cv_sys_file_offset_bits" >&6
    71027185 if test "$ac_cv_sys_file_offset_bits" != no; then
    71037186 
    7104 @@ -7983,7 +8337,7 @@
     7187@@ -7983,7 +8338,7 @@
    71057188 
    71067189 fi
    71077190 rm -f conftest*
    71087191-  echo "$as_me:7986: checking for _LARGE_FILES value needed for large files" >&5
    7109 +  echo "$as_me:8340: checking for _LARGE_FILES value needed for large files" >&5
     7192+  echo "$as_me:8341: checking for _LARGE_FILES value needed for large files" >&5
    71107193 echo $ECHO_N "checking for _LARGE_FILES value needed for large files... $ECHO_C" >&6
    71117194 if test "${ac_cv_sys_large_files+set}" = set; then
    71127195   echo $ECHO_N "(cached) $ECHO_C" >&6
    7113 @@ -7991,7 +8345,7 @@
     7196@@ -7991,7 +8346,7 @@
    71147197   while :; do
    71157198   ac_cv_sys_large_files=no
    71167199   cat >conftest.$ac_ext <<_ACEOF
    71177200-#line 7994 "configure"
    7118 +#line 8348 "configure"
     7201+#line 8349 "configure"
    71197202 #include "confdefs.h"
    71207203 #include <sys/types.h>
    71217204  /* Check that off_t can represent 2**63 - 1 correctly.
    7122 @@ -8011,16 +8365,16 @@
     7205@@ -8011,16 +8366,16 @@
    71237206 }
    71247207 _ACEOF
    71257208 rm -f conftest.$ac_objext
    71267209-if { (eval echo "$as_me:8014: \"$ac_compile\"") >&5
    7127 +if { (eval echo "$as_me:8368: \"$ac_compile\"") >&5
     7210+if { (eval echo "$as_me:8369: \"$ac_compile\"") >&5
    71287211   (eval $ac_compile) 2>&5
    71297212   ac_status=$?
    71307213-  echo "$as_me:8017: \$? = $ac_status" >&5
    7131 +  echo "$as_me:8371: \$? = $ac_status" >&5
     7214+  echo "$as_me:8372: \$? = $ac_status" >&5
    71327215   (exit $ac_status); } &&
    71337216          { ac_try='test -s conftest.$ac_objext'
    71347217-  { (eval echo "$as_me:8020: \"$ac_try\"") >&5
    7135 +  { (eval echo "$as_me:8374: \"$ac_try\"") >&5
     7218+  { (eval echo "$as_me:8375: \"$ac_try\"") >&5
    71367219   (eval $ac_try) 2>&5
    71377220   ac_status=$?
    71387221-  echo "$as_me:8023: \$? = $ac_status" >&5
    7139 +  echo "$as_me:8377: \$? = $ac_status" >&5
     7222+  echo "$as_me:8378: \$? = $ac_status" >&5
    71407223   (exit $ac_status); }; }; then
    71417224   break
    71427225 else
    7143 @@ -8029,7 +8383,7 @@
     7226@@ -8029,7 +8384,7 @@
    71447227 fi
    71457228 rm -f conftest.$ac_objext conftest.$ac_ext
    71467229   cat >conftest.$ac_ext <<_ACEOF
    71477230-#line 8032 "configure"
    7148 +#line 8386 "configure"
     7231+#line 8387 "configure"
    71497232 #include "confdefs.h"
    71507233 #define _LARGE_FILES 1
    71517234 #include <sys/types.h>
    7152 @@ -8050,16 +8404,16 @@
     7235@@ -8050,16 +8405,16 @@
    71537236 }
    71547237 _ACEOF
    71557238 rm -f conftest.$ac_objext
    71567239-if { (eval echo "$as_me:8053: \"$ac_compile\"") >&5
    7157 +if { (eval echo "$as_me:8407: \"$ac_compile\"") >&5
     7240+if { (eval echo "$as_me:8408: \"$ac_compile\"") >&5
    71587241   (eval $ac_compile) 2>&5
    71597242   ac_status=$?
    71607243-  echo "$as_me:8056: \$? = $ac_status" >&5
    7161 +  echo "$as_me:8410: \$? = $ac_status" >&5
     7244+  echo "$as_me:8411: \$? = $ac_status" >&5
    71627245   (exit $ac_status); } &&
    71637246          { ac_try='test -s conftest.$ac_objext'
    71647247-  { (eval echo "$as_me:8059: \"$ac_try\"") >&5
    7165 +  { (eval echo "$as_me:8413: \"$ac_try\"") >&5
     7248+  { (eval echo "$as_me:8414: \"$ac_try\"") >&5
    71667249   (eval $ac_try) 2>&5
    71677250   ac_status=$?
    71687251-  echo "$as_me:8062: \$? = $ac_status" >&5
    7169 +  echo "$as_me:8416: \$? = $ac_status" >&5
     7252+  echo "$as_me:8417: \$? = $ac_status" >&5
    71707253   (exit $ac_status); }; }; then
    71717254   ac_cv_sys_large_files=1; break
    71727255 else
    7173 @@ -8070,7 +8424,7 @@
     7256@@ -8070,7 +8425,7 @@
    71747257   break
    71757258 done
    71767259 fi
    71777260-echo "$as_me:8073: result: $ac_cv_sys_large_files" >&5
    7178 +echo "$as_me:8427: result: $ac_cv_sys_large_files" >&5
     7261+echo "$as_me:8428: result: $ac_cv_sys_large_files" >&5
    71797262 echo "${ECHO_T}$ac_cv_sys_large_files" >&6
    71807263 if test "$ac_cv_sys_large_files" != no; then
    71817264 
    7182 @@ -8083,7 +8437,7 @@
     7265@@ -8083,7 +8438,7 @@
    71837266 fi
    71847267 
    71857268     if test "$enable_largefile" != no ; then
    71867269-       echo "$as_me:8086: checking for _LARGEFILE_SOURCE value needed for large files" >&5
    7187 +       echo "$as_me:8440: checking for _LARGEFILE_SOURCE value needed for large files" >&5
     7270+       echo "$as_me:8441: checking for _LARGEFILE_SOURCE value needed for large files" >&5
    71887271 echo $ECHO_N "checking for _LARGEFILE_SOURCE value needed for large files... $ECHO_C" >&6
    71897272 if test "${ac_cv_sys_largefile_source+set}" = set; then
    71907273   echo $ECHO_N "(cached) $ECHO_C" >&6
    7191 @@ -8091,7 +8445,7 @@
     7274@@ -8091,7 +8446,7 @@
    71927275   while :; do
    71937276   ac_cv_sys_largefile_source=no
    71947277   cat >conftest.$ac_ext <<_ACEOF
    71957278-#line 8094 "configure"
    7196 +#line 8448 "configure"
     7279+#line 8449 "configure"
    71977280 #include "confdefs.h"
    71987281 #include <stdio.h>
    71997282 int
    7200 @@ -8103,16 +8457,16 @@
     7283@@ -8103,16 +8458,16 @@
    72017284 }
    72027285 _ACEOF
    72037286 rm -f conftest.$ac_objext
    72047287-if { (eval echo "$as_me:8106: \"$ac_compile\"") >&5
    7205 +if { (eval echo "$as_me:8460: \"$ac_compile\"") >&5
     7288+if { (eval echo "$as_me:8461: \"$ac_compile\"") >&5
    72067289   (eval $ac_compile) 2>&5
    72077290   ac_status=$?
    72087291-  echo "$as_me:8109: \$? = $ac_status" >&5
    7209 +  echo "$as_me:8463: \$? = $ac_status" >&5
     7292+  echo "$as_me:8464: \$? = $ac_status" >&5
    72107293   (exit $ac_status); } &&
    72117294          { ac_try='test -s conftest.$ac_objext'
    72127295-  { (eval echo "$as_me:8112: \"$ac_try\"") >&5
    7213 +  { (eval echo "$as_me:8466: \"$ac_try\"") >&5
     7296+  { (eval echo "$as_me:8467: \"$ac_try\"") >&5
    72147297   (eval $ac_try) 2>&5
    72157298   ac_status=$?
    72167299-  echo "$as_me:8115: \$? = $ac_status" >&5
    7217 +  echo "$as_me:8469: \$? = $ac_status" >&5
     7300+  echo "$as_me:8470: \$? = $ac_status" >&5
    72187301   (exit $ac_status); }; }; then
    72197302   break
    72207303 else
    7221 @@ -8121,7 +8475,7 @@
     7304@@ -8121,7 +8476,7 @@
    72227305 fi
    72237306 rm -f conftest.$ac_objext conftest.$ac_ext
    72247307   cat >conftest.$ac_ext <<_ACEOF
    72257308-#line 8124 "configure"
    7226 +#line 8478 "configure"
     7309+#line 8479 "configure"
    72277310 #include "confdefs.h"
    72287311 #define _LARGEFILE_SOURCE 1
    72297312 #include <stdio.h>
    7230 @@ -8134,16 +8488,16 @@
     7313@@ -8134,16 +8489,16 @@
    72317314 }
    72327315 _ACEOF
    72337316 rm -f conftest.$ac_objext
    72347317-if { (eval echo "$as_me:8137: \"$ac_compile\"") >&5
    7235 +if { (eval echo "$as_me:8491: \"$ac_compile\"") >&5
     7318+if { (eval echo "$as_me:8492: \"$ac_compile\"") >&5
    72367319   (eval $ac_compile) 2>&5
    72377320   ac_status=$?
    72387321-  echo "$as_me:8140: \$? = $ac_status" >&5
    7239 +  echo "$as_me:8494: \$? = $ac_status" >&5
     7322+  echo "$as_me:8495: \$? = $ac_status" >&5
    72407323   (exit $ac_status); } &&
    72417324          { ac_try='test -s conftest.$ac_objext'
    72427325-  { (eval echo "$as_me:8143: \"$ac_try\"") >&5
    7243 +  { (eval echo "$as_me:8497: \"$ac_try\"") >&5
     7326+  { (eval echo "$as_me:8498: \"$ac_try\"") >&5
    72447327   (eval $ac_try) 2>&5
    72457328   ac_status=$?
    72467329-  echo "$as_me:8146: \$? = $ac_status" >&5
    7247 +  echo "$as_me:8500: \$? = $ac_status" >&5
     7330+  echo "$as_me:8501: \$? = $ac_status" >&5
    72487331   (exit $ac_status); }; }; then
    72497332   ac_cv_sys_largefile_source=1; break
    72507333 else
    7251 @@ -8154,7 +8508,7 @@
     7334@@ -8154,7 +8509,7 @@
    72527335   break
    72537336 done
    72547337 fi
    72557338-echo "$as_me:8157: result: $ac_cv_sys_largefile_source" >&5
    7256 +echo "$as_me:8511: result: $ac_cv_sys_largefile_source" >&5
     7339+echo "$as_me:8512: result: $ac_cv_sys_largefile_source" >&5
    72577340 echo "${ECHO_T}$ac_cv_sys_largefile_source" >&6
    72587341 if test "$ac_cv_sys_largefile_source" != no; then
    72597342 
    7260 @@ -8168,13 +8522,13 @@
     7343@@ -8168,13 +8523,13 @@
    72617344 # We used to try defining _XOPEN_SOURCE=500 too, to work around a bug
    72627345 # in glibc 2.1.3, but that breaks too many other things.
    72637346 # If you want fseeko and ftello with glibc, upgrade to a fixed glibc.
    72647347-echo "$as_me:8171: checking for fseeko" >&5
    7265 +echo "$as_me:8525: checking for fseeko" >&5
     7348+echo "$as_me:8526: checking for fseeko" >&5
    72667349 echo $ECHO_N "checking for fseeko... $ECHO_C" >&6
    72677350 if test "${ac_cv_func_fseeko+set}" = set; then
     
    72707353   cat >conftest.$ac_ext <<_ACEOF
    72717354-#line 8177 "configure"
    7272 +#line 8531 "configure"
     7355+#line 8532 "configure"
    72737356 #include "confdefs.h"
    72747357 #include <stdio.h>
    72757358 int
    7276 @@ -8186,16 +8540,16 @@
     7359@@ -8186,16 +8541,16 @@
    72777360 }
    72787361 _ACEOF
    72797362 rm -f conftest.$ac_objext conftest$ac_exeext
    72807363-if { (eval echo "$as_me:8189: \"$ac_link\"") >&5
    7281 +if { (eval echo "$as_me:8543: \"$ac_link\"") >&5
     7364+if { (eval echo "$as_me:8544: \"$ac_link\"") >&5
    72827365   (eval $ac_link) 2>&5
    72837366   ac_status=$?
    72847367-  echo "$as_me:8192: \$? = $ac_status" >&5
    7285 +  echo "$as_me:8546: \$? = $ac_status" >&5
     7368+  echo "$as_me:8547: \$? = $ac_status" >&5
    72867369   (exit $ac_status); } &&
    72877370          { ac_try='test -s conftest$ac_exeext'
    72887371-  { (eval echo "$as_me:8195: \"$ac_try\"") >&5
    7289 +  { (eval echo "$as_me:8549: \"$ac_try\"") >&5
     7372+  { (eval echo "$as_me:8550: \"$ac_try\"") >&5
    72907373   (eval $ac_try) 2>&5
    72917374   ac_status=$?
    72927375-  echo "$as_me:8198: \$? = $ac_status" >&5
    7293 +  echo "$as_me:8552: \$? = $ac_status" >&5
     7376+  echo "$as_me:8553: \$? = $ac_status" >&5
    72947377   (exit $ac_status); }; }; then
    72957378   ac_cv_func_fseeko=yes
    72967379 else
    7297 @@ -8205,7 +8559,7 @@
     7380@@ -8205,7 +8560,7 @@
    72987381 fi
    72997382 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    73007383 fi
    73017384-echo "$as_me:8208: result: $ac_cv_func_fseeko" >&5
    7302 +echo "$as_me:8562: result: $ac_cv_func_fseeko" >&5
     7385+echo "$as_me:8563: result: $ac_cv_func_fseeko" >&5
    73037386 echo "${ECHO_T}$ac_cv_func_fseeko" >&6
    73047387 if test $ac_cv_func_fseeko = yes; then
    73057388 
    7306 @@ -8226,14 +8580,14 @@
     7389@@ -8226,14 +8581,14 @@
    73077390        test "$ac_cv_sys_largefile_source" != no && CPPFLAGS="$CPPFLAGS -D_LARGEFILE_SOURCE "
    73087391        test "$ac_cv_sys_file_offset_bits" != no && CPPFLAGS="$CPPFLAGS -D_FILE_OFFSET_BITS=$ac_cv_sys_file_offset_bits "
    73097392 
    73107393-       echo "$as_me:8229: checking whether to use struct dirent64" >&5
    7311 +       echo "$as_me:8583: checking whether to use struct dirent64" >&5
     7394+       echo "$as_me:8584: checking whether to use struct dirent64" >&5
    73127395 echo $ECHO_N "checking whether to use struct dirent64... $ECHO_C" >&6
    73137396 if test "${cf_cv_struct_dirent64+set}" = set; then
     
    73177400                cat >conftest.$ac_ext <<_ACEOF
    73187401-#line 8236 "configure"
    7319 +#line 8590 "configure"
     7402+#line 8591 "configure"
    73207403 #include "confdefs.h"
    73217404 
    73227405 #include <sys/types.h>
    7323 @@ -8254,16 +8608,16 @@
     7406@@ -8254,16 +8609,16 @@
    73247407 }
    73257408 _ACEOF
    73267409 rm -f conftest.$ac_objext
    73277410-if { (eval echo "$as_me:8257: \"$ac_compile\"") >&5
    7328 +if { (eval echo "$as_me:8611: \"$ac_compile\"") >&5
     7411+if { (eval echo "$as_me:8612: \"$ac_compile\"") >&5
    73297412   (eval $ac_compile) 2>&5
    73307413   ac_status=$?
    73317414-  echo "$as_me:8260: \$? = $ac_status" >&5
    7332 +  echo "$as_me:8614: \$? = $ac_status" >&5
     7415+  echo "$as_me:8615: \$? = $ac_status" >&5
    73337416   (exit $ac_status); } &&
    73347417          { ac_try='test -s conftest.$ac_objext'
    73357418-  { (eval echo "$as_me:8263: \"$ac_try\"") >&5
    7336 +  { (eval echo "$as_me:8617: \"$ac_try\"") >&5
     7419+  { (eval echo "$as_me:8618: \"$ac_try\"") >&5
    73377420   (eval $ac_try) 2>&5
    73387421   ac_status=$?
    73397422-  echo "$as_me:8266: \$? = $ac_status" >&5
    7340 +  echo "$as_me:8620: \$? = $ac_status" >&5
     7423+  echo "$as_me:8621: \$? = $ac_status" >&5
    73417424   (exit $ac_status); }; }; then
    73427425   cf_cv_struct_dirent64=yes
    73437426 else
    7344 @@ -8274,7 +8628,7 @@
     7427@@ -8274,7 +8629,7 @@
    73457428 rm -f conftest.$ac_objext conftest.$ac_ext
    73467429 
    73477430 fi
    73487431-echo "$as_me:8277: result: $cf_cv_struct_dirent64" >&5
    7349 +echo "$as_me:8631: result: $cf_cv_struct_dirent64" >&5
     7432+echo "$as_me:8632: result: $cf_cv_struct_dirent64" >&5
    73507433 echo "${ECHO_T}$cf_cv_struct_dirent64" >&6
    73517434        test "$cf_cv_struct_dirent64" = yes && cat >>confdefs.h <<\EOF
    73527435 #define HAVE_STRUCT_DIRENT64 1
    7353 @@ -8283,7 +8637,7 @@
     7436@@ -8283,7 +8638,7 @@
    73547437     fi
    73557438 
    73567439 ###   use option --disable-tparm-varargs to make tparm() conform to X/Open
    73577440-echo "$as_me:8286: checking if you want tparm not to use X/Open fixed-parameter list" >&5
    7358 +echo "$as_me:8640: checking if you want tparm not to use X/Open fixed-parameter list" >&5
     7441+echo "$as_me:8641: checking if you want tparm not to use X/Open fixed-parameter list" >&5
    73597442 echo $ECHO_N "checking if you want tparm not to use X/Open fixed-parameter list... $ECHO_C" >&6
    73607443 
    73617444 # Check whether --enable-tparm-varargs or --disable-tparm-varargs was given.
    7362 @@ -8293,14 +8647,14 @@
     7445@@ -8293,14 +8648,14 @@
    73637446 else
    73647447   with_tparm_varargs=yes
    73657448 fi;
    73667449-echo "$as_me:8296: result: $with_tparm_varargs" >&5
    7367 +echo "$as_me:8650: result: $with_tparm_varargs" >&5
     7450+echo "$as_me:8651: result: $with_tparm_varargs" >&5
    73687451 echo "${ECHO_T}$with_tparm_varargs" >&6
    73697452 NCURSES_TPARM_VARARGS=0
     
    73737456 if test "$with_ticlib" != no ; then
    73747457-echo "$as_me:8303: checking if you want tic library to use explicit dependency on ncurses$LIB_SUFFIX library" >&5
    7375 +echo "$as_me:8657: checking if you want tic library to use explicit dependency on ncurses$LIB_SUFFIX library" >&5
     7458+echo "$as_me:8658: checking if you want tic library to use explicit dependency on ncurses$LIB_SUFFIX library" >&5
    73767459 echo $ECHO_N "checking if you want tic library to use explicit dependency on ncurses$LIB_SUFFIX library... $ECHO_C" >&6
    73777460 
    73787461 # Check whether --enable-tic-depends or --disable-tic-depends was given.
    7379 @@ -8310,14 +8664,14 @@
     7462@@ -8310,14 +8665,14 @@
    73807463 else
    73817464   with_tic_depends=yes
    73827465 fi;
    73837466-echo "$as_me:8313: result: $with_tic_depends" >&5
    7384 +echo "$as_me:8667: result: $with_tic_depends" >&5
     7467+echo "$as_me:8668: result: $with_tic_depends" >&5
    73857468 echo "${ECHO_T}$with_tic_depends" >&6
    73867469 else
     
    73907473 ###   use option --with-bool to override bool's type
    73917474-echo "$as_me:8320: checking for type of bool" >&5
    7392 +echo "$as_me:8674: checking for type of bool" >&5
     7475+echo "$as_me:8675: checking for type of bool" >&5
    73937476 echo $ECHO_N "checking for type of bool... $ECHO_C" >&6
    73947477 
    73957478 # Check whether --with-bool or --without-bool was given.
    7396 @@ -8327,10 +8681,10 @@
     7479@@ -8327,10 +8682,10 @@
    73977480 else
    73987481   NCURSES_BOOL=auto
    73997482 fi;
    74007483-echo "$as_me:8330: result: $NCURSES_BOOL" >&5
    7401 +echo "$as_me:8684: result: $NCURSES_BOOL" >&5
     7484+echo "$as_me:8685: result: $NCURSES_BOOL" >&5
    74027485 echo "${ECHO_T}$NCURSES_BOOL" >&6
    74037486 
    74047487-echo "$as_me:8333: checking for alternate terminal capabilities file" >&5
    7405 +echo "$as_me:8687: checking for alternate terminal capabilities file" >&5
     7488+echo "$as_me:8688: checking for alternate terminal capabilities file" >&5
    74067489 echo $ECHO_N "checking for alternate terminal capabilities file... $ECHO_C" >&6
    74077490 
    74087491 # Check whether --with-caps or --without-caps was given.
    7409 @@ -8341,11 +8695,11 @@
     7492@@ -8341,11 +8696,11 @@
    74107493   TERMINFO_CAPS=Caps
    74117494 fi;
    74127495 test -f "${srcdir}/include/${TERMINFO_CAPS}" || TERMINFO_CAPS=Caps
    74137496-echo "$as_me:8344: result: $TERMINFO_CAPS" >&5
    7414 +echo "$as_me:8698: result: $TERMINFO_CAPS" >&5
     7497+echo "$as_me:8699: result: $TERMINFO_CAPS" >&5
    74157498 echo "${ECHO_T}$TERMINFO_CAPS" >&6
    74167499 
    74177500 ###   use option --with-chtype to override chtype's type
    74187501-echo "$as_me:8348: checking for type of chtype" >&5
    7419 +echo "$as_me:8702: checking for type of chtype" >&5
     7502+echo "$as_me:8703: checking for type of chtype" >&5
    74207503 echo $ECHO_N "checking for type of chtype... $ECHO_C" >&6
    74217504 
    74227505 # Check whether --with-chtype or --without-chtype was given.
    7423 @@ -8355,11 +8709,11 @@
     7506@@ -8355,11 +8710,11 @@
    74247507 else
    74257508   NCURSES_CHTYPE=auto
    74267509 fi;
    74277510-echo "$as_me:8358: result: $NCURSES_CHTYPE" >&5
    7428 +echo "$as_me:8712: result: $NCURSES_CHTYPE" >&5
     7511+echo "$as_me:8713: result: $NCURSES_CHTYPE" >&5
    74297512 echo "${ECHO_T}$NCURSES_CHTYPE" >&6
    74307513 
    74317514 ###   use option --with-ospeed to override ospeed's type
    74327515-echo "$as_me:8362: checking for type of ospeed" >&5
    7433 +echo "$as_me:8716: checking for type of ospeed" >&5
     7516+echo "$as_me:8717: checking for type of ospeed" >&5
    74347517 echo $ECHO_N "checking for type of ospeed... $ECHO_C" >&6
    74357518 
    74367519 # Check whether --with-ospeed or --without-ospeed was given.
    7437 @@ -8369,11 +8723,11 @@
     7520@@ -8369,11 +8724,11 @@
    74387521 else
    74397522   NCURSES_OSPEED=short
    74407523 fi;
    74417524-echo "$as_me:8372: result: $NCURSES_OSPEED" >&5
    7442 +echo "$as_me:8726: result: $NCURSES_OSPEED" >&5
     7525+echo "$as_me:8727: result: $NCURSES_OSPEED" >&5
    74437526 echo "${ECHO_T}$NCURSES_OSPEED" >&6
    74447527 
    74457528 ###   use option --with-mmask-t to override mmask_t's type
    74467529-echo "$as_me:8376: checking for type of mmask_t" >&5
    7447 +echo "$as_me:8730: checking for type of mmask_t" >&5
     7530+echo "$as_me:8731: checking for type of mmask_t" >&5
    74487531 echo $ECHO_N "checking for type of mmask_t... $ECHO_C" >&6
    74497532 
    74507533 # Check whether --with-mmask-t or --without-mmask-t was given.
    7451 @@ -8383,11 +8737,11 @@
     7534@@ -8383,11 +8738,11 @@
    74527535 else
    74537536   NCURSES_MMASK_T=auto
    74547537 fi;
    74557538-echo "$as_me:8386: result: $NCURSES_MMASK_T" >&5
    7456 +echo "$as_me:8740: result: $NCURSES_MMASK_T" >&5
     7539+echo "$as_me:8741: result: $NCURSES_MMASK_T" >&5
    74577540 echo "${ECHO_T}$NCURSES_MMASK_T" >&6
    74587541 
    74597542 ### Enable compiling-in rcs id's
    74607543-echo "$as_me:8390: checking if RCS identifiers should be compiled-in" >&5
    7461 +echo "$as_me:8744: checking if RCS identifiers should be compiled-in" >&5
     7544+echo "$as_me:8745: checking if RCS identifiers should be compiled-in" >&5
    74627545 echo $ECHO_N "checking if RCS identifiers should be compiled-in... $ECHO_C" >&6
    74637546 
    74647547 # Check whether --with-rcs-ids or --without-rcs-ids was given.
    7465 @@ -8397,7 +8751,7 @@
     7548@@ -8397,7 +8752,7 @@
    74667549 else
    74677550   with_rcs_ids=no
    74687551 fi;
    74697552-echo "$as_me:8400: result: $with_rcs_ids" >&5
    7470 +echo "$as_me:8754: result: $with_rcs_ids" >&5
     7553+echo "$as_me:8755: result: $with_rcs_ids" >&5
    74717554 echo "${ECHO_T}$with_rcs_ids" >&6
    74727555 test "$with_rcs_ids" = yes && cat >>confdefs.h <<\EOF
    74737556 #define USE_RCS_IDS 1
    7474 @@ -8405,7 +8759,7 @@
     7557@@ -8405,7 +8760,7 @@
    74757558 
    74767559 ###############################################################################
    74777560 
    74787561-echo "$as_me:8408: checking format of man-pages" >&5
    7479 +echo "$as_me:8762: checking format of man-pages" >&5
     7562+echo "$as_me:8763: checking format of man-pages" >&5
    74807563 echo $ECHO_N "checking format of man-pages... $ECHO_C" >&6
    74817564 
    74827565 # Check whether --with-manpage-format or --without-manpage-format was given.
    7483 @@ -8433,7 +8787,7 @@
     7566@@ -8433,7 +8788,7 @@
    74847567   cf_catonly=yes
    74857568   cf_example=date
     
    74907573     test -z "$cf_dir" && cf_dir=/usr/man
    74917574     for cf_name in $cf_dir/man*/$cf_example.[01]* $cf_dir/cat*/$cf_example.[01]* $cf_dir/man*/$cf_example $cf_dir/cat*/$cf_example
    7492 @@ -8494,14 +8848,14 @@
     7575@@ -8494,14 +8849,14 @@
    74937576   ;;
    74947577 esac
    74957578 
    74967579-echo "$as_me:8497: result: $MANPAGE_FORMAT" >&5
    7497 +echo "$as_me:8851: result: $MANPAGE_FORMAT" >&5
     7580+echo "$as_me:8852: result: $MANPAGE_FORMAT" >&5
    74987581 echo "${ECHO_T}$MANPAGE_FORMAT" >&6
    74997582 if test -n "$cf_unknown" ; then
    75007583-  { echo "$as_me:8500: WARNING: Unexpected manpage-format $cf_unknown" >&5
    7501 +  { echo "$as_me:8854: WARNING: Unexpected manpage-format $cf_unknown" >&5
     7584+  { echo "$as_me:8855: WARNING: Unexpected manpage-format $cf_unknown" >&5
    75027585 echo "$as_me: WARNING: Unexpected manpage-format $cf_unknown" >&2;}
    75037586 fi
    75047587 
    75057588-echo "$as_me:8504: checking for manpage renaming" >&5
    7506 +echo "$as_me:8858: checking for manpage renaming" >&5
     7589+echo "$as_me:8859: checking for manpage renaming" >&5
    75077590 echo $ECHO_N "checking for manpage renaming... $ECHO_C" >&6
    75087591 
    75097592 # Check whether --with-manpage-renames or --without-manpage-renames was given.
    7510 @@ -8529,7 +8883,7 @@
     7593@@ -8529,7 +8884,7 @@
    75117594   if test -f $srcdir/man/$MANPAGE_RENAMES ; then
    75127595     MANPAGE_RENAMES=`cd $srcdir/man && pwd`/$MANPAGE_RENAMES
    75137596   elif test ! -f $MANPAGE_RENAMES ; then
    75147597-    { { echo "$as_me:8532: error: not a filename: $MANPAGE_RENAMES" >&5
    7515 +    { { echo "$as_me:8886: error: not a filename: $MANPAGE_RENAMES" >&5
     7598+    { { echo "$as_me:8887: error: not a filename: $MANPAGE_RENAMES" >&5
    75167599 echo "$as_me: error: not a filename: $MANPAGE_RENAMES" >&2;}
    75177600    { (exit 1); exit 1; }; }
    75187601   fi
    7519 @@ -8543,10 +8897,10 @@
     7602@@ -8543,10 +8898,10 @@
    75207603   fi
    75217604 fi
    75227605 
    75237606-echo "$as_me:8546: result: $MANPAGE_RENAMES" >&5
    7524 +echo "$as_me:8900: result: $MANPAGE_RENAMES" >&5
     7607+echo "$as_me:8901: result: $MANPAGE_RENAMES" >&5
    75257608 echo "${ECHO_T}$MANPAGE_RENAMES" >&6
    75267609 
    75277610-echo "$as_me:8549: checking if manpage aliases will be installed" >&5
    7528 +echo "$as_me:8903: checking if manpage aliases will be installed" >&5
     7611+echo "$as_me:8904: checking if manpage aliases will be installed" >&5
    75297612 echo $ECHO_N "checking if manpage aliases will be installed... $ECHO_C" >&6
    75307613 
    75317614 # Check whether --with-manpage-aliases or --without-manpage-aliases was given.
    7532 @@ -8557,7 +8911,7 @@
     7615@@ -8557,7 +8912,7 @@
    75337616   MANPAGE_ALIASES=yes
    75347617 fi;
    75357618 
    75367619-echo "$as_me:8560: result: $MANPAGE_ALIASES" >&5
    7537 +echo "$as_me:8914: result: $MANPAGE_ALIASES" >&5
     7620+echo "$as_me:8915: result: $MANPAGE_ALIASES" >&5
    75387621 echo "${ECHO_T}$MANPAGE_ALIASES" >&6
    75397622 
    75407623 if test "$LN_S" = "ln -s"; then
    7541 @@ -8568,7 +8922,7 @@
     7624@@ -8568,7 +8923,7 @@
    75427625 
    75437626 MANPAGE_SYMLINKS=no
    75447627 if test "$MANPAGE_ALIASES" = yes ; then
    75457628-echo "$as_me:8571: checking if manpage symlinks should be used" >&5
    7546 +echo "$as_me:8925: checking if manpage symlinks should be used" >&5
     7629+echo "$as_me:8926: checking if manpage symlinks should be used" >&5
    75477630 echo $ECHO_N "checking if manpage symlinks should be used... $ECHO_C" >&6
    75487631 
    75497632 # Check whether --with-manpage-symlinks or --without-manpage-symlinks was given.
    7550 @@ -8581,17 +8935,17 @@
     7633@@ -8581,17 +8936,17 @@
    75517634 
    75527635 if test "$$cf_use_symlinks" = no; then
    75537636 if test "$MANPAGE_SYMLINKS" = yes ; then
    75547637-       { echo "$as_me:8584: WARNING: cannot make symlinks" >&5
    7555 +       { echo "$as_me:8938: WARNING: cannot make symlinks" >&5
     7638+       { echo "$as_me:8939: WARNING: cannot make symlinks" >&5
    75567639 echo "$as_me: WARNING: cannot make symlinks" >&2;}
    75577640        MANPAGE_SYMLINKS=no
     
    75607643 
    75617644-echo "$as_me:8590: result: $MANPAGE_SYMLINKS" >&5
    7562 +echo "$as_me:8944: result: $MANPAGE_SYMLINKS" >&5
     7645+echo "$as_me:8945: result: $MANPAGE_SYMLINKS" >&5
    75637646 echo "${ECHO_T}$MANPAGE_SYMLINKS" >&6
    75647647 fi
    75657648 
    75667649-echo "$as_me:8594: checking for manpage tbl" >&5
    7567 +echo "$as_me:8948: checking for manpage tbl" >&5
     7650+echo "$as_me:8949: checking for manpage tbl" >&5
    75687651 echo $ECHO_N "checking for manpage tbl... $ECHO_C" >&6
    75697652 
    75707653 # Check whether --with-manpage-tbl or --without-manpage-tbl was given.
    7571 @@ -8602,7 +8956,7 @@
     7654@@ -8602,7 +8957,7 @@
    75727655   MANPAGE_TBL=no
    75737656 fi;
    75747657 
    75757658-echo "$as_me:8605: result: $MANPAGE_TBL" >&5
    7576 +echo "$as_me:8959: result: $MANPAGE_TBL" >&5
     7659+echo "$as_me:8960: result: $MANPAGE_TBL" >&5
    75777660 echo "${ECHO_T}$MANPAGE_TBL" >&6
    75787661 
    75797662   if test "$prefix" = "NONE" ; then
    7580 @@ -8718,7 +9072,7 @@
     7663@@ -8718,7 +9073,7 @@
    75817664                s,@NCURSES_OSPEED@,\$NCURSES_OSPEED,g
    75827665 CF_EOF
     
    75877670                cf_NAME=`echo "$cf_name" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%`
    75887671                cf_name=`echo $cf_name|sed "$program_transform_name"`
    7589 @@ -8913,7 +9267,7 @@
     7672@@ -8913,7 +9268,7 @@
    75907673 ###############################################################################
    75917674 
    75927675 ### Note that some functions (such as const) are normally disabled anyway.
    75937676-echo "$as_me:8916: checking if you want to build with function extensions" >&5
    7594 +echo "$as_me:9270: checking if you want to build with function extensions" >&5
     7677+echo "$as_me:9271: checking if you want to build with function extensions" >&5
    75957678 echo $ECHO_N "checking if you want to build with function extensions... $ECHO_C" >&6
    75967679 
    75977680 # Check whether --enable-ext-funcs or --disable-ext-funcs was given.
    7598 @@ -8923,7 +9277,7 @@
     7681@@ -8923,7 +9278,7 @@
    75997682 else
    76007683   with_ext_funcs=yes
    76017684 fi;
    76027685-echo "$as_me:8926: result: $with_ext_funcs" >&5
    7603 +echo "$as_me:9280: result: $with_ext_funcs" >&5
     7686+echo "$as_me:9281: result: $with_ext_funcs" >&5
    76047687 echo "${ECHO_T}$with_ext_funcs" >&6
    76057688 if test "$with_ext_funcs" = yes ; then
    76067689        NCURSES_EXT_FUNCS=1
    7607 @@ -8955,12 +9309,38 @@
     7690@@ -8955,12 +9310,38 @@
    76087691 #define NCURSES_EXT_FUNCS 1
    76097692 EOF
     
    76157698+fi
    76167699+
    7617 +echo "$as_me:9318: checking if you want to build with experimental SCREEN extensions" >&5
     7700+echo "$as_me:9319: checking if you want to build with experimental SCREEN extensions" >&5
    76187701+echo $ECHO_N "checking if you want to build with experimental SCREEN extensions... $ECHO_C" >&6
    76197702+
     
    76257708+  with_sp_funcs=no
    76267709+fi;
    7627 +echo "$as_me:9328: result: $with_sp_funcs" >&5
     7710+echo "$as_me:9329: result: $with_sp_funcs" >&5
    76287711+echo "${ECHO_T}$with_sp_funcs" >&6
    76297712+if test "$with_sp_funcs" = yes ; then
     
    76417724 ###   use option --enable-const to turn on use of const beyond that in XSI.
    76427725-echo "$as_me:8963: checking for extended use of const keyword" >&5
    7643 +echo "$as_me:9343: checking for extended use of const keyword" >&5
     7726+echo "$as_me:9344: checking for extended use of const keyword" >&5
    76447727 echo $ECHO_N "checking for extended use of const keyword... $ECHO_C" >&6
    76457728 
    76467729 # Check whether --enable-const or --disable-const was given.
    7647 @@ -8970,7 +9350,7 @@
     7730@@ -8970,7 +9351,7 @@
    76487731 else
    76497732   with_ext_const=no
    76507733 fi;
    76517734-echo "$as_me:8973: result: $with_ext_const" >&5
    7652 +echo "$as_me:9353: result: $with_ext_const" >&5
     7735+echo "$as_me:9354: result: $with_ext_const" >&5
    76537736 echo "${ECHO_T}$with_ext_const" >&6
    76547737 NCURSES_CONST='/*nothing*/'
    76557738 if test "$with_ext_const" = yes ; then
    7656 @@ -8978,7 +9358,7 @@
     7739@@ -8978,7 +9359,7 @@
    76577740 fi
    76587741 
    76597742 ###   use option --enable-ext-colors to turn on use of colors beyond 16.
    76607743-echo "$as_me:8981: checking if you want to use extended colors" >&5
    7661 +echo "$as_me:9361: checking if you want to use extended colors" >&5
     7744+echo "$as_me:9362: checking if you want to use extended colors" >&5
    76627745 echo $ECHO_N "checking if you want to use extended colors... $ECHO_C" >&6
    76637746 
    76647747 # Check whether --enable-ext-colors or --disable-ext-colors was given.
    7665 @@ -8988,12 +9368,12 @@
     7748@@ -8988,12 +9369,12 @@
    76667749 else
    76677750   with_ext_colors=no
    76687751 fi;
    76697752-echo "$as_me:8991: result: $with_ext_colors" >&5
    7670 +echo "$as_me:9371: result: $with_ext_colors" >&5
     7753+echo "$as_me:9372: result: $with_ext_colors" >&5
    76717754 echo "${ECHO_T}$with_ext_colors" >&6
    76727755 NCURSES_EXT_COLORS=0
     
    76747757        if test "$with_widec" != yes ; then
    76757758-               { { echo "$as_me:8996: error: This option applies only to wide-character library" >&5
    7676 +               { { echo "$as_me:9376: error: This option applies only to wide-character library" >&5
     7759+               { { echo "$as_me:9377: error: This option applies only to wide-character library" >&5
    76777760 echo "$as_me: error: This option applies only to wide-character library" >&2;}
    76787761    { (exit 1); exit 1; }; }
    76797762        else
    7680 @@ -9004,7 +9384,7 @@
     7763@@ -9004,7 +9385,7 @@
    76817764        5.*)
    76827765                cf_cv_rel_version=6.0
    76837766                cf_cv_abi_version=6
    76847767-               { echo "$as_me:9007: WARNING: Overriding ABI version to $cf_cv_abi_version" >&5
    7685 +               { echo "$as_me:9387: WARNING: Overriding ABI version to $cf_cv_abi_version" >&5
     7768+               { echo "$as_me:9388: WARNING: Overriding ABI version to $cf_cv_abi_version" >&5
    76867769 echo "$as_me: WARNING: Overriding ABI version to $cf_cv_abi_version" >&2;}
    76877770                ;;
    76887771        esac
    7689 @@ -9019,7 +9399,7 @@
     7772@@ -9019,7 +9400,7 @@
    76907773 fi
    76917774 
    76927775 ###   use option --enable-ext-mouse to modify coding to support 5-button mice
    76937776-echo "$as_me:9022: checking if you want to use extended mouse encoding" >&5
    7694 +echo "$as_me:9402: checking if you want to use extended mouse encoding" >&5
     7777+echo "$as_me:9403: checking if you want to use extended mouse encoding" >&5
    76957778 echo $ECHO_N "checking if you want to use extended mouse encoding... $ECHO_C" >&6
    76967779 
    76977780 # Check whether --enable-ext-mouse or --disable-ext-mouse was given.
    7698 @@ -9029,7 +9409,7 @@
     7781@@ -9029,7 +9410,7 @@
    76997782 else
    77007783   with_ext_mouse=no
    77017784 fi;
    77027785-echo "$as_me:9032: result: $with_ext_mouse" >&5
    7703 +echo "$as_me:9412: result: $with_ext_mouse" >&5
     7786+echo "$as_me:9413: result: $with_ext_mouse" >&5
    77047787 echo "${ECHO_T}$with_ext_mouse" >&6
    77057788 NCURSES_MOUSE_VERSION=1
    77067789 if test "$with_ext_mouse" = yes ; then
    7707 @@ -9040,7 +9420,7 @@
     7790@@ -9040,7 +9421,7 @@
    77087791        5.*)
    77097792                cf_cv_rel_version=6.0
    77107793                cf_cv_abi_version=6
    77117794-               { echo "$as_me:9043: WARNING: Overriding ABI version to $cf_cv_abi_version" >&5
    7712 +               { echo "$as_me:9423: WARNING: Overriding ABI version to $cf_cv_abi_version" >&5
     7795+               { echo "$as_me:9424: WARNING: Overriding ABI version to $cf_cv_abi_version" >&5
    77137796 echo "$as_me: WARNING: Overriding ABI version to $cf_cv_abi_version" >&2;}
    77147797                ;;
    77157798        esac
    7716 @@ -9048,7 +9428,7 @@
     7799@@ -9048,7 +9429,7 @@
    77177800 
    77187801 fi
    77197802 
    77207803-echo "$as_me:9051: checking if you want \$NCURSES_NO_PADDING code" >&5
    7721 +echo "$as_me:9431: checking if you want \$NCURSES_NO_PADDING code" >&5
     7804+echo "$as_me:9432: checking if you want \$NCURSES_NO_PADDING code" >&5
    77227805 echo $ECHO_N "checking if you want \$NCURSES_NO_PADDING code... $ECHO_C" >&6
    77237806 
    77247807 # Check whether --enable-no-padding or --disable-no-padding was given.
    7725 @@ -9058,19 +9438,19 @@
     7808@@ -9058,19 +9439,19 @@
    77267809 else
    77277810   with_no_padding=$with_ext_funcs
    77287811 fi;
    77297812-echo "$as_me:9061: result: $with_no_padding" >&5
    7730 +echo "$as_me:9441: result: $with_no_padding" >&5
     7813+echo "$as_me:9442: result: $with_no_padding" >&5
    77317814 echo "${ECHO_T}$with_no_padding" >&6
    77327815 test "$with_no_padding" = yes && cat >>confdefs.h <<\EOF
     
    77357818 
    77367819-echo "$as_me:9067: checking for ANSI C header files" >&5
    7737 +echo "$as_me:9447: checking for ANSI C header files" >&5
     7820+echo "$as_me:9448: checking for ANSI C header files" >&5
    77387821 echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6
    77397822 if test "${ac_cv_header_stdc+set}" = set; then
     
    77427825   cat >conftest.$ac_ext <<_ACEOF
    77437826-#line 9073 "configure"
    7744 +#line 9453 "configure"
     7827+#line 9454 "configure"
    77457828 #include "confdefs.h"
    77467829 #include <stdlib.h>
    77477830 #include <stdarg.h>
    7748 @@ -9078,13 +9458,13 @@
     7831@@ -9078,13 +9459,13 @@
    77497832 #include <float.h>
    77507833 
    77517834 _ACEOF
    77527835-if { (eval echo "$as_me:9081: \"$ac_cpp conftest.$ac_ext\"") >&5
    7753 +if { (eval echo "$as_me:9461: \"$ac_cpp conftest.$ac_ext\"") >&5
     7836+if { (eval echo "$as_me:9462: \"$ac_cpp conftest.$ac_ext\"") >&5
    77547837   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
    77557838   ac_status=$?
     
    77587841   cat conftest.err >&5
    77597842-  echo "$as_me:9087: \$? = $ac_status" >&5
    7760 +  echo "$as_me:9467: \$? = $ac_status" >&5
     7843+  echo "$as_me:9468: \$? = $ac_status" >&5
    77617844   (exit $ac_status); } >/dev/null; then
    77627845   if test -s conftest.err; then
    77637846     ac_cpp_err=$ac_c_preproc_warn_flag
    7764 @@ -9106,7 +9486,7 @@
     7847@@ -9106,7 +9487,7 @@
    77657848 if test $ac_cv_header_stdc = yes; then
    77667849   # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
    77677850   cat >conftest.$ac_ext <<_ACEOF
    77687851-#line 9109 "configure"
    7769 +#line 9489 "configure"
     7852+#line 9490 "configure"
    77707853 #include "confdefs.h"
    77717854 #include <string.h>
    77727855 
    7773 @@ -9124,7 +9504,7 @@
     7856@@ -9124,7 +9505,7 @@
    77747857 if test $ac_cv_header_stdc = yes; then
    77757858   # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
    77767859   cat >conftest.$ac_ext <<_ACEOF
    77777860-#line 9127 "configure"
    7778 +#line 9507 "configure"
     7861+#line 9508 "configure"
    77797862 #include "confdefs.h"
    77807863 #include <stdlib.h>
    77817864 
    7782 @@ -9145,7 +9525,7 @@
     7865@@ -9145,7 +9526,7 @@
    77837866   :
    77847867 else
    77857868   cat >conftest.$ac_ext <<_ACEOF
    77867869-#line 9148 "configure"
    7787 +#line 9528 "configure"
     7870+#line 9529 "configure"
    77887871 #include "confdefs.h"
    77897872 #include <ctype.h>
    77907873 #if ((' ' & 0x0FF) == 0x020)
    7791 @@ -9171,15 +9551,15 @@
     7874@@ -9171,15 +9552,15 @@
    77927875 }
    77937876 _ACEOF
    77947877 rm -f conftest$ac_exeext
    77957878-if { (eval echo "$as_me:9174: \"$ac_link\"") >&5
    7796 +if { (eval echo "$as_me:9554: \"$ac_link\"") >&5
     7879+if { (eval echo "$as_me:9555: \"$ac_link\"") >&5
    77977880   (eval $ac_link) 2>&5
    77987881   ac_status=$?
    77997882-  echo "$as_me:9177: \$? = $ac_status" >&5
    7800 +  echo "$as_me:9557: \$? = $ac_status" >&5
     7883+  echo "$as_me:9558: \$? = $ac_status" >&5
    78017884   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
    78027885-  { (eval echo "$as_me:9179: \"$ac_try\"") >&5
    7803 +  { (eval echo "$as_me:9559: \"$ac_try\"") >&5
     7886+  { (eval echo "$as_me:9560: \"$ac_try\"") >&5
    78047887   (eval $ac_try) 2>&5
    78057888   ac_status=$?
    78067889-  echo "$as_me:9182: \$? = $ac_status" >&5
    7807 +  echo "$as_me:9562: \$? = $ac_status" >&5
     7890+  echo "$as_me:9563: \$? = $ac_status" >&5
    78087891   (exit $ac_status); }; }; then
    78097892   :
    78107893 else
    7811 @@ -9192,7 +9572,7 @@
     7894@@ -9192,7 +9573,7 @@
    78127895 fi
    78137896 fi
    78147897 fi
    78157898-echo "$as_me:9195: result: $ac_cv_header_stdc" >&5
    7816 +echo "$as_me:9575: result: $ac_cv_header_stdc" >&5
     7899+echo "$as_me:9576: result: $ac_cv_header_stdc" >&5
    78177900 echo "${ECHO_T}$ac_cv_header_stdc" >&6
    78187901 if test $ac_cv_header_stdc = yes; then
    78197902 
    7820 @@ -9208,28 +9588,28 @@
     7903@@ -9208,28 +9589,28 @@
    78217904                   inttypes.h stdint.h unistd.h
    78227905 do
    78237906 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
    78247907-echo "$as_me:9211: checking for $ac_header" >&5
    7825 +echo "$as_me:9591: checking for $ac_header" >&5
     7908+echo "$as_me:9592: checking for $ac_header" >&5
    78267909 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
    78277910 if eval "test \"\${$as_ac_Header+set}\" = set"; then
     
    78307913   cat >conftest.$ac_ext <<_ACEOF
    78317914-#line 9217 "configure"
    7832 +#line 9597 "configure"
     7915+#line 9598 "configure"
    78337916 #include "confdefs.h"
    78347917 $ac_includes_default
     
    78377920 rm -f conftest.$ac_objext
    78387921-if { (eval echo "$as_me:9223: \"$ac_compile\"") >&5
    7839 +if { (eval echo "$as_me:9603: \"$ac_compile\"") >&5
     7922+if { (eval echo "$as_me:9604: \"$ac_compile\"") >&5
    78407923   (eval $ac_compile) 2>&5
    78417924   ac_status=$?
    78427925-  echo "$as_me:9226: \$? = $ac_status" >&5
    7843 +  echo "$as_me:9606: \$? = $ac_status" >&5
     7926+  echo "$as_me:9607: \$? = $ac_status" >&5
    78447927   (exit $ac_status); } &&
    78457928          { ac_try='test -s conftest.$ac_objext'
    78467929-  { (eval echo "$as_me:9229: \"$ac_try\"") >&5
    7847 +  { (eval echo "$as_me:9609: \"$ac_try\"") >&5
     7930+  { (eval echo "$as_me:9610: \"$ac_try\"") >&5
    78487931   (eval $ac_try) 2>&5
    78497932   ac_status=$?
    78507933-  echo "$as_me:9232: \$? = $ac_status" >&5
    7851 +  echo "$as_me:9612: \$? = $ac_status" >&5
     7934+  echo "$as_me:9613: \$? = $ac_status" >&5
    78527935   (exit $ac_status); }; }; then
    78537936   eval "$as_ac_Header=yes"
    78547937 else
    7855 @@ -9239,7 +9619,7 @@
     7938@@ -9239,7 +9620,7 @@
    78567939 fi
    78577940 rm -f conftest.$ac_objext conftest.$ac_ext
    78587941 fi
    78597942-echo "$as_me:9242: result: `eval echo '${'$as_ac_Header'}'`" >&5
    7860 +echo "$as_me:9622: result: `eval echo '${'$as_ac_Header'}'`" >&5
     7943+echo "$as_me:9623: result: `eval echo '${'$as_ac_Header'}'`" >&5
    78617944 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
    78627945 if test `eval echo '${'$as_ac_Header'}'` = yes; then
    78637946   cat >>confdefs.h <<EOF
    7864 @@ -9249,13 +9629,13 @@
     7947@@ -9249,13 +9630,13 @@
    78657948 fi
    78667949 done
    78677950 
    78687951-echo "$as_me:9252: checking for signed char" >&5
    7869 +echo "$as_me:9632: checking for signed char" >&5
     7952+echo "$as_me:9633: checking for signed char" >&5
    78707953 echo $ECHO_N "checking for signed char... $ECHO_C" >&6
    78717954 if test "${ac_cv_type_signed_char+set}" = set; then
     
    78747957   cat >conftest.$ac_ext <<_ACEOF
    78757958-#line 9258 "configure"
    7876 +#line 9638 "configure"
     7959+#line 9639 "configure"
    78777960 #include "confdefs.h"
    78787961 $ac_includes_default
    78797962 int
    7880 @@ -9270,16 +9650,16 @@
     7963@@ -9270,16 +9651,16 @@
    78817964 }
    78827965 _ACEOF
    78837966 rm -f conftest.$ac_objext
    78847967-if { (eval echo "$as_me:9273: \"$ac_compile\"") >&5
    7885 +if { (eval echo "$as_me:9653: \"$ac_compile\"") >&5
     7968+if { (eval echo "$as_me:9654: \"$ac_compile\"") >&5
    78867969   (eval $ac_compile) 2>&5
    78877970   ac_status=$?
    78887971-  echo "$as_me:9276: \$? = $ac_status" >&5
    7889 +  echo "$as_me:9656: \$? = $ac_status" >&5
     7972+  echo "$as_me:9657: \$? = $ac_status" >&5
    78907973   (exit $ac_status); } &&
    78917974          { ac_try='test -s conftest.$ac_objext'
    78927975-  { (eval echo "$as_me:9279: \"$ac_try\"") >&5
    7893 +  { (eval echo "$as_me:9659: \"$ac_try\"") >&5
     7976+  { (eval echo "$as_me:9660: \"$ac_try\"") >&5
    78947977   (eval $ac_try) 2>&5
    78957978   ac_status=$?
    78967979-  echo "$as_me:9282: \$? = $ac_status" >&5
    7897 +  echo "$as_me:9662: \$? = $ac_status" >&5
     7980+  echo "$as_me:9663: \$? = $ac_status" >&5
    78987981   (exit $ac_status); }; }; then
    78997982   ac_cv_type_signed_char=yes
    79007983 else
    7901 @@ -9289,10 +9669,10 @@
     7984@@ -9289,10 +9670,10 @@
    79027985 fi
    79037986 rm -f conftest.$ac_objext conftest.$ac_ext
    79047987 fi
    79057988-echo "$as_me:9292: result: $ac_cv_type_signed_char" >&5
    7906 +echo "$as_me:9672: result: $ac_cv_type_signed_char" >&5
     7989+echo "$as_me:9673: result: $ac_cv_type_signed_char" >&5
    79077990 echo "${ECHO_T}$ac_cv_type_signed_char" >&6
    79087991 
    79097992-echo "$as_me:9295: checking size of signed char" >&5
    7910 +echo "$as_me:9675: checking size of signed char" >&5
     7993+echo "$as_me:9676: checking size of signed char" >&5
    79117994 echo $ECHO_N "checking size of signed char... $ECHO_C" >&6
    79127995 if test "${ac_cv_sizeof_signed_char+set}" = set; then
    79137996   echo $ECHO_N "(cached) $ECHO_C" >&6
    7914 @@ -9301,7 +9681,7 @@
     7997@@ -9301,7 +9682,7 @@
    79157998   if test "$cross_compiling" = yes; then
    79167999   # Depending upon the size, compute the lo and hi bounds.
    79178000 cat >conftest.$ac_ext <<_ACEOF
    79188001-#line 9304 "configure"
    7919 +#line 9684 "configure"
     8002+#line 9685 "configure"
    79208003 #include "confdefs.h"
    79218004 $ac_includes_default
    79228005 int
    7923 @@ -9313,21 +9693,21 @@
     8006@@ -9313,21 +9694,21 @@
    79248007 }
    79258008 _ACEOF
    79268009 rm -f conftest.$ac_objext
    79278010-if { (eval echo "$as_me:9316: \"$ac_compile\"") >&5
    7928 +if { (eval echo "$as_me:9696: \"$ac_compile\"") >&5
     8011+if { (eval echo "$as_me:9697: \"$ac_compile\"") >&5
    79298012   (eval $ac_compile) 2>&5
    79308013   ac_status=$?
    79318014-  echo "$as_me:9319: \$? = $ac_status" >&5
    7932 +  echo "$as_me:9699: \$? = $ac_status" >&5
     8015+  echo "$as_me:9700: \$? = $ac_status" >&5
    79338016   (exit $ac_status); } &&
    79348017          { ac_try='test -s conftest.$ac_objext'
    79358018-  { (eval echo "$as_me:9322: \"$ac_try\"") >&5
    7936 +  { (eval echo "$as_me:9702: \"$ac_try\"") >&5
     8019+  { (eval echo "$as_me:9703: \"$ac_try\"") >&5
    79378020   (eval $ac_try) 2>&5
    79388021   ac_status=$?
    79398022-  echo "$as_me:9325: \$? = $ac_status" >&5
    7940 +  echo "$as_me:9705: \$? = $ac_status" >&5
     8023+  echo "$as_me:9706: \$? = $ac_status" >&5
    79418024   (exit $ac_status); }; }; then
    79428025   ac_lo=0 ac_mid=0
     
    79448027     cat >conftest.$ac_ext <<_ACEOF
    79458028-#line 9330 "configure"
    7946 +#line 9710 "configure"
     8029+#line 9711 "configure"
    79478030 #include "confdefs.h"
    79488031 $ac_includes_default
    79498032 int
    7950 @@ -9339,16 +9719,16 @@
     8033@@ -9339,16 +9720,16 @@
    79518034 }
    79528035 _ACEOF
    79538036 rm -f conftest.$ac_objext
    79548037-if { (eval echo "$as_me:9342: \"$ac_compile\"") >&5
    7955 +if { (eval echo "$as_me:9722: \"$ac_compile\"") >&5
     8038+if { (eval echo "$as_me:9723: \"$ac_compile\"") >&5
    79568039   (eval $ac_compile) 2>&5
    79578040   ac_status=$?
    79588041-  echo "$as_me:9345: \$? = $ac_status" >&5
    7959 +  echo "$as_me:9725: \$? = $ac_status" >&5
     8042+  echo "$as_me:9726: \$? = $ac_status" >&5
    79608043   (exit $ac_status); } &&
    79618044          { ac_try='test -s conftest.$ac_objext'
    79628045-  { (eval echo "$as_me:9348: \"$ac_try\"") >&5
    7963 +  { (eval echo "$as_me:9728: \"$ac_try\"") >&5
     8046+  { (eval echo "$as_me:9729: \"$ac_try\"") >&5
    79648047   (eval $ac_try) 2>&5
    79658048   ac_status=$?
    79668049-  echo "$as_me:9351: \$? = $ac_status" >&5
    7967 +  echo "$as_me:9731: \$? = $ac_status" >&5
     8050+  echo "$as_me:9732: \$? = $ac_status" >&5
    79688051   (exit $ac_status); }; }; then
    79698052   ac_hi=$ac_mid; break
    79708053 else
    7971 @@ -9364,7 +9744,7 @@
     8054@@ -9364,7 +9745,7 @@
    79728055 ac_hi=-1 ac_mid=-1
    79738056   while :; do
    79748057     cat >conftest.$ac_ext <<_ACEOF
    79758058-#line 9367 "configure"
    7976 +#line 9747 "configure"
     8059+#line 9748 "configure"
    79778060 #include "confdefs.h"
    79788061 $ac_includes_default
    79798062 int
    7980 @@ -9376,16 +9756,16 @@
     8063@@ -9376,16 +9757,16 @@
    79818064 }
    79828065 _ACEOF
    79838066 rm -f conftest.$ac_objext
    79848067-if { (eval echo "$as_me:9379: \"$ac_compile\"") >&5
    7985 +if { (eval echo "$as_me:9759: \"$ac_compile\"") >&5
     8068+if { (eval echo "$as_me:9760: \"$ac_compile\"") >&5
    79868069   (eval $ac_compile) 2>&5
    79878070   ac_status=$?
    79888071-  echo "$as_me:9382: \$? = $ac_status" >&5
    7989 +  echo "$as_me:9762: \$? = $ac_status" >&5
     8072+  echo "$as_me:9763: \$? = $ac_status" >&5
    79908073   (exit $ac_status); } &&
    79918074          { ac_try='test -s conftest.$ac_objext'
    79928075-  { (eval echo "$as_me:9385: \"$ac_try\"") >&5
    7993 +  { (eval echo "$as_me:9765: \"$ac_try\"") >&5
     8076+  { (eval echo "$as_me:9766: \"$ac_try\"") >&5
    79948077   (eval $ac_try) 2>&5
    79958078   ac_status=$?
    79968079-  echo "$as_me:9388: \$? = $ac_status" >&5
    7997 +  echo "$as_me:9768: \$? = $ac_status" >&5
     8080+  echo "$as_me:9769: \$? = $ac_status" >&5
    79988081   (exit $ac_status); }; }; then
    79998082   ac_lo=$ac_mid; break
    80008083 else
    8001 @@ -9401,7 +9781,7 @@
     8084@@ -9401,7 +9782,7 @@
    80028085 while test "x$ac_lo" != "x$ac_hi"; do
    80038086   ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo`
    80048087   cat >conftest.$ac_ext <<_ACEOF
    80058088-#line 9404 "configure"
    8006 +#line 9784 "configure"
     8089+#line 9785 "configure"
    80078090 #include "confdefs.h"
    80088091 $ac_includes_default
    80098092 int
    8010 @@ -9413,16 +9793,16 @@
     8093@@ -9413,16 +9794,16 @@
    80118094 }
    80128095 _ACEOF
    80138096 rm -f conftest.$ac_objext
    80148097-if { (eval echo "$as_me:9416: \"$ac_compile\"") >&5
    8015 +if { (eval echo "$as_me:9796: \"$ac_compile\"") >&5
     8098+if { (eval echo "$as_me:9797: \"$ac_compile\"") >&5
    80168099   (eval $ac_compile) 2>&5
    80178100   ac_status=$?
    80188101-  echo "$as_me:9419: \$? = $ac_status" >&5
    8019 +  echo "$as_me:9799: \$? = $ac_status" >&5
     8102+  echo "$as_me:9800: \$? = $ac_status" >&5
    80208103   (exit $ac_status); } &&
    80218104          { ac_try='test -s conftest.$ac_objext'
    80228105-  { (eval echo "$as_me:9422: \"$ac_try\"") >&5
    8023 +  { (eval echo "$as_me:9802: \"$ac_try\"") >&5
     8106+  { (eval echo "$as_me:9803: \"$ac_try\"") >&5
    80248107   (eval $ac_try) 2>&5
    80258108   ac_status=$?
    80268109-  echo "$as_me:9425: \$? = $ac_status" >&5
    8027 +  echo "$as_me:9805: \$? = $ac_status" >&5
     8110+  echo "$as_me:9806: \$? = $ac_status" >&5
    80288111   (exit $ac_status); }; }; then
    80298112   ac_hi=$ac_mid
    80308113 else
    8031 @@ -9435,12 +9815,12 @@
     8114@@ -9435,12 +9816,12 @@
    80328115 ac_cv_sizeof_signed_char=$ac_lo
    80338116 else
    80348117   if test "$cross_compiling" = yes; then
    80358118-  { { echo "$as_me:9438: error: cannot run test program while cross compiling" >&5
    8036 +  { { echo "$as_me:9818: error: cannot run test program while cross compiling" >&5
     8119+  { { echo "$as_me:9819: error: cannot run test program while cross compiling" >&5
    80378120 echo "$as_me: error: cannot run test program while cross compiling" >&2;}
    80388121    { (exit 1); exit 1; }; }
     
    80408123   cat >conftest.$ac_ext <<_ACEOF
    80418124-#line 9443 "configure"
    8042 +#line 9823 "configure"
     8125+#line 9824 "configure"
    80438126 #include "confdefs.h"
    80448127 $ac_includes_default
    80458128 int
    8046 @@ -9456,15 +9836,15 @@
     8129@@ -9456,15 +9837,15 @@
    80478130 }
    80488131 _ACEOF
    80498132 rm -f conftest$ac_exeext
    80508133-if { (eval echo "$as_me:9459: \"$ac_link\"") >&5
    8051 +if { (eval echo "$as_me:9839: \"$ac_link\"") >&5
     8134+if { (eval echo "$as_me:9840: \"$ac_link\"") >&5
    80528135   (eval $ac_link) 2>&5
    80538136   ac_status=$?
    80548137-  echo "$as_me:9462: \$? = $ac_status" >&5
    8055 +  echo "$as_me:9842: \$? = $ac_status" >&5
     8138+  echo "$as_me:9843: \$? = $ac_status" >&5
    80568139   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
    80578140-  { (eval echo "$as_me:9464: \"$ac_try\"") >&5
    8058 +  { (eval echo "$as_me:9844: \"$ac_try\"") >&5
     8141+  { (eval echo "$as_me:9845: \"$ac_try\"") >&5
    80598142   (eval $ac_try) 2>&5
    80608143   ac_status=$?
    80618144-  echo "$as_me:9467: \$? = $ac_status" >&5
    8062 +  echo "$as_me:9847: \$? = $ac_status" >&5
     8145+  echo "$as_me:9848: \$? = $ac_status" >&5
    80638146   (exit $ac_status); }; }; then
    80648147   ac_cv_sizeof_signed_char=`cat conftest.val`
    80658148 else
    8066 @@ -9480,7 +9860,7 @@
     8149@@ -9480,7 +9861,7 @@
    80678150   ac_cv_sizeof_signed_char=0
    80688151 fi
    80698152 fi
    80708153-echo "$as_me:9483: result: $ac_cv_sizeof_signed_char" >&5
    8071 +echo "$as_me:9863: result: $ac_cv_sizeof_signed_char" >&5
     8154+echo "$as_me:9864: result: $ac_cv_sizeof_signed_char" >&5
    80728155 echo "${ECHO_T}$ac_cv_sizeof_signed_char" >&6
    80738156 cat >>confdefs.h <<EOF
    80748157 #define SIZEOF_SIGNED_CHAR $ac_cv_sizeof_signed_char
    8075 @@ -9491,7 +9871,7 @@
     8158@@ -9491,7 +9872,7 @@
    80768159 else
    80778160        NCURSES_SBOOL="char"
    80788161 fi
    80798162-echo "$as_me:9494: checking if you want to use signed Boolean array in term.h" >&5
    8080 +echo "$as_me:9874: checking if you want to use signed Boolean array in term.h" >&5
     8163+echo "$as_me:9875: checking if you want to use signed Boolean array in term.h" >&5
    80818164 echo $ECHO_N "checking if you want to use signed Boolean array in term.h... $ECHO_C" >&6
    80828165 
    80838166 # Check whether --enable-signed-char or --disable-signed-char was given.
    8084 @@ -9501,12 +9881,12 @@
     8167@@ -9501,12 +9882,12 @@
    80858168 else
    80868169   with_signed_char=no
    80878170 fi;
    80888171-echo "$as_me:9504: result: $with_signed_char" >&5
    8089 +echo "$as_me:9884: result: $with_signed_char" >&5
     8172+echo "$as_me:9885: result: $with_signed_char" >&5
    80908173 echo "${ECHO_T}$with_signed_char" >&6
    80918174 test "$with_signed_char" != yes && NCURSES_SBOOL="char"
     
    80938176 ###   use option --enable-sigwinch to turn on use of SIGWINCH logic
    80948177-echo "$as_me:9509: checking if you want SIGWINCH handler" >&5
    8095 +echo "$as_me:9889: checking if you want SIGWINCH handler" >&5
     8178+echo "$as_me:9890: checking if you want SIGWINCH handler" >&5
    80968179 echo $ECHO_N "checking if you want SIGWINCH handler... $ECHO_C" >&6
    80978180 
    80988181 # Check whether --enable-sigwinch or --disable-sigwinch was given.
    8099 @@ -9516,14 +9896,14 @@
     8182@@ -9516,14 +9897,14 @@
    81008183 else
    81018184   with_sigwinch=$with_ext_funcs
    81028185 fi;
    81038186-echo "$as_me:9519: result: $with_sigwinch" >&5
    8104 +echo "$as_me:9899: result: $with_sigwinch" >&5
     8187+echo "$as_me:9900: result: $with_sigwinch" >&5
    81058188 echo "${ECHO_T}$with_sigwinch" >&6
    81068189 test "$with_sigwinch" = yes && cat >>confdefs.h <<\EOF
     
    81108193 ###   use option --enable-tcap-names to allow user to define new capabilities
    81118194-echo "$as_me:9526: checking if you want user-definable terminal capabilities like termcap" >&5
    8112 +echo "$as_me:9906: checking if you want user-definable terminal capabilities like termcap" >&5
     8195+echo "$as_me:9907: checking if you want user-definable terminal capabilities like termcap" >&5
    81138196 echo $ECHO_N "checking if you want user-definable terminal capabilities like termcap... $ECHO_C" >&6
    81148197 
    81158198 # Check whether --enable-tcap-names or --disable-tcap-names was given.
    8116 @@ -9533,7 +9913,7 @@
     8199@@ -9533,7 +9914,7 @@
    81178200 else
    81188201   with_tcap_names=$with_ext_funcs
    81198202 fi;
    81208203-echo "$as_me:9536: result: $with_tcap_names" >&5
    8121 +echo "$as_me:9916: result: $with_tcap_names" >&5
     8204+echo "$as_me:9917: result: $with_tcap_names" >&5
    81228205 echo "${ECHO_T}$with_tcap_names" >&6
    81238206 NCURSES_XNAMES=0
    81248207 test "$with_tcap_names" = yes && NCURSES_XNAMES=1
    8125 @@ -9541,7 +9921,7 @@
     8208@@ -9541,7 +9922,7 @@
    81268209 ###############################################################################
    81278210 # These options are relatively safe to experiment with.
    81288211 
    81298212-echo "$as_me:9544: checking if you want all development code" >&5
    8130 +echo "$as_me:9924: checking if you want all development code" >&5
     8213+echo "$as_me:9925: checking if you want all development code" >&5
    81318214 echo $ECHO_N "checking if you want all development code... $ECHO_C" >&6
    81328215 
    81338216 # Check whether --with-develop or --without-develop was given.
    8134 @@ -9551,11 +9931,11 @@
     8217@@ -9551,11 +9932,11 @@
    81358218 else
    81368219   with_develop=no
    81378220 fi;
    81388221-echo "$as_me:9554: result: $with_develop" >&5
    8139 +echo "$as_me:9934: result: $with_develop" >&5
     8222+echo "$as_me:9935: result: $with_develop" >&5
    81408223 echo "${ECHO_T}$with_develop" >&6
    81418224 
    81428225 ###   use option --enable-hard-tabs to turn on use of hard-tabs optimize
    81438226-echo "$as_me:9558: checking if you want hard-tabs code" >&5
    8144 +echo "$as_me:9938: checking if you want hard-tabs code" >&5
     8227+echo "$as_me:9939: checking if you want hard-tabs code" >&5
    81458228 echo $ECHO_N "checking if you want hard-tabs code... $ECHO_C" >&6
    81468229 
    81478230 # Check whether --enable-hard-tabs or --disable-hard-tabs was given.
    8148 @@ -9565,14 +9945,14 @@
     8231@@ -9565,14 +9946,14 @@
    81498232 else
    81508233   enable_hard_tabs=$with_develop
    81518234 fi;
    81528235-echo "$as_me:9568: result: $enable_hard_tabs" >&5
    8153 +echo "$as_me:9948: result: $enable_hard_tabs" >&5
     8236+echo "$as_me:9949: result: $enable_hard_tabs" >&5
    81548237 echo "${ECHO_T}$enable_hard_tabs" >&6
    81558238 test "$enable_hard_tabs" = yes && cat >>confdefs.h <<\EOF
     
    81598242 ###   use option --enable-xmc-glitch to turn on use of magic-cookie optimize
    81608243-echo "$as_me:9575: checking if you want limited support for xmc" >&5
    8161 +echo "$as_me:9955: checking if you want limited support for xmc" >&5
     8244+echo "$as_me:9956: checking if you want limited support for xmc" >&5
    81628245 echo $ECHO_N "checking if you want limited support for xmc... $ECHO_C" >&6
    81638246 
    81648247 # Check whether --enable-xmc-glitch or --disable-xmc-glitch was given.
    8165 @@ -9582,7 +9962,7 @@
     8248@@ -9582,7 +9963,7 @@
    81668249 else
    81678250   enable_xmc_glitch=$with_develop
    81688251 fi;
    81698252-echo "$as_me:9585: result: $enable_xmc_glitch" >&5
    8170 +echo "$as_me:9965: result: $enable_xmc_glitch" >&5
     8253+echo "$as_me:9966: result: $enable_xmc_glitch" >&5
    81718254 echo "${ECHO_T}$enable_xmc_glitch" >&6
    81728255 test "$enable_xmc_glitch" = yes && cat >>confdefs.h <<\EOF
    81738256 #define USE_XMC_SUPPORT 1
    8174 @@ -9591,7 +9971,7 @@
     8257@@ -9591,7 +9972,7 @@
    81758258 ###############################################################################
    81768259 # These are just experimental, probably should not be in a package:
    81778260 
    81788261-echo "$as_me:9594: checking if you do not want to assume colors are white-on-black" >&5
    8179 +echo "$as_me:9974: checking if you do not want to assume colors are white-on-black" >&5
     8262+echo "$as_me:9975: checking if you do not want to assume colors are white-on-black" >&5
    81808263 echo $ECHO_N "checking if you do not want to assume colors are white-on-black... $ECHO_C" >&6
    81818264 
    81828265 # Check whether --enable-assumed-color or --disable-assumed-color was given.
    8183 @@ -9601,14 +9981,14 @@
     8266@@ -9601,14 +9982,14 @@
    81848267 else
    81858268   with_assumed_color=yes
    81868269 fi;
    81878270-echo "$as_me:9604: result: $with_assumed_color" >&5
    8188 +echo "$as_me:9984: result: $with_assumed_color" >&5
     8271+echo "$as_me:9985: result: $with_assumed_color" >&5
    81898272 echo "${ECHO_T}$with_assumed_color" >&6
    81908273 test "$with_assumed_color" = yes && cat >>confdefs.h <<\EOF
     
    81948277 ###   use option --enable-hashmap to turn on use of hashmap scrolling logic
    81958278-echo "$as_me:9611: checking if you want hashmap scrolling-optimization code" >&5
    8196 +echo "$as_me:9991: checking if you want hashmap scrolling-optimization code" >&5
     8279+echo "$as_me:9992: checking if you want hashmap scrolling-optimization code" >&5
    81978280 echo $ECHO_N "checking if you want hashmap scrolling-optimization code... $ECHO_C" >&6
    81988281 
    81998282 # Check whether --enable-hashmap or --disable-hashmap was given.
    8200 @@ -9618,14 +9998,14 @@
     8283@@ -9618,14 +9999,14 @@
    82018284 else
    82028285   with_hashmap=yes
    82038286 fi;
    82048287-echo "$as_me:9621: result: $with_hashmap" >&5
    8205 +echo "$as_me:10001: result: $with_hashmap" >&5
     8288+echo "$as_me:10002: result: $with_hashmap" >&5
    82068289 echo "${ECHO_T}$with_hashmap" >&6
    82078290 test "$with_hashmap" = yes && cat >>confdefs.h <<\EOF
     
    82118294 ###   use option --enable-colorfgbg to turn on use of $COLORFGBG environment
    82128295-echo "$as_me:9628: checking if you want colorfgbg code" >&5
    8213 +echo "$as_me:10008: checking if you want colorfgbg code" >&5
     8296+echo "$as_me:10009: checking if you want colorfgbg code" >&5
    82148297 echo $ECHO_N "checking if you want colorfgbg code... $ECHO_C" >&6
    82158298 
    82168299 # Check whether --enable-colorfgbg or --disable-colorfgbg was given.
    8217 @@ -9635,7 +10015,7 @@
     8300@@ -9635,7 +10016,7 @@
    82188301 else
    82198302   with_colorfgbg=no
    82208303 fi;
    82218304-echo "$as_me:9638: result: $with_colorfgbg" >&5
    8222 +echo "$as_me:10018: result: $with_colorfgbg" >&5
     8305+echo "$as_me:10019: result: $with_colorfgbg" >&5
    82238306 echo "${ECHO_T}$with_colorfgbg" >&6
    82248307 test "$with_colorfgbg" = yes && cat >>confdefs.h <<\EOF
    82258308 #define USE_COLORFGBG 1
    8226 @@ -9644,7 +10024,7 @@
     8309@@ -9644,7 +10025,7 @@
    82278310 # This is still experimental (20080329), but should ultimately be moved to
    82288311 # the script-block --with-normal, etc.
    82298312 
    82308313-echo "$as_me:9647: checking if you want to link with the pthread library" >&5
    8231 +echo "$as_me:10027: checking if you want to link with the pthread library" >&5
     8314+echo "$as_me:10028: checking if you want to link with the pthread library" >&5
    82328315 echo $ECHO_N "checking if you want to link with the pthread library... $ECHO_C" >&6
    82338316 
    82348317 # Check whether --with-pthread or --without-pthread was given.
    8235 @@ -9654,27 +10034,27 @@
     8318@@ -9654,27 +10035,27 @@
    82368319 else
    82378320   with_pthread=no
    82388321 fi;
    82398322-echo "$as_me:9657: result: $with_pthread" >&5
    8240 +echo "$as_me:10037: result: $with_pthread" >&5
     8323+echo "$as_me:10038: result: $with_pthread" >&5
    82418324 echo "${ECHO_T}$with_pthread" >&6
    82428325 
    82438326 if test "$with_pthread" != no ; then
    82448327-    echo "$as_me:9661: checking for pthread.h" >&5
    8245 +    echo "$as_me:10041: checking for pthread.h" >&5
     8328+    echo "$as_me:10042: checking for pthread.h" >&5
    82468329 echo $ECHO_N "checking for pthread.h... $ECHO_C" >&6
    82478330 if test "${ac_cv_header_pthread_h+set}" = set; then
     
    82508333   cat >conftest.$ac_ext <<_ACEOF
    82518334-#line 9667 "configure"
    8252 +#line 10047 "configure"
     8335+#line 10048 "configure"
    82538336 #include "confdefs.h"
    82548337 #include <pthread.h>
    82558338 _ACEOF
    82568339-if { (eval echo "$as_me:9671: \"$ac_cpp conftest.$ac_ext\"") >&5
    8257 +if { (eval echo "$as_me:10051: \"$ac_cpp conftest.$ac_ext\"") >&5
     8340+if { (eval echo "$as_me:10052: \"$ac_cpp conftest.$ac_ext\"") >&5
    82588341   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
    82598342   ac_status=$?
     
    82628345   cat conftest.err >&5
    82638346-  echo "$as_me:9677: \$? = $ac_status" >&5
    8264 +  echo "$as_me:10057: \$? = $ac_status" >&5
     8347+  echo "$as_me:10058: \$? = $ac_status" >&5
    82658348   (exit $ac_status); } >/dev/null; then
    82668349   if test -s conftest.err; then
    82678350     ac_cpp_err=$ac_c_preproc_warn_flag
    8268 @@ -9693,7 +10073,7 @@
     8351@@ -9693,7 +10074,7 @@
    82698352 fi
    82708353 rm -f conftest.err conftest.$ac_ext
    82718354 fi
    82728355-echo "$as_me:9696: result: $ac_cv_header_pthread_h" >&5
    8273 +echo "$as_me:10076: result: $ac_cv_header_pthread_h" >&5
     8356+echo "$as_me:10077: result: $ac_cv_header_pthread_h" >&5
    82748357 echo "${ECHO_T}$ac_cv_header_pthread_h" >&6
    82758358 if test $ac_cv_header_pthread_h = yes; then
    82768359 
    8277 @@ -9701,12 +10081,12 @@
     8360@@ -9701,12 +10082,12 @@
    82788361 #define HAVE_PTHREADS_H 1
    82798362 EOF
    82808363 
    82818364-        echo "$as_me:9704: checking if we can link with the pthread library" >&5
    8282 +        echo "$as_me:10084: checking if we can link with the pthread library" >&5
     8365+        echo "$as_me:10085: checking if we can link with the pthread library" >&5
    82838366 echo $ECHO_N "checking if we can link with the pthread library... $ECHO_C" >&6
    82848367         cf_save_LIBS="$LIBS"
     
    82868369         cat >conftest.$ac_ext <<_ACEOF
    82878370-#line 9709 "configure"
    8288 +#line 10089 "configure"
     8371+#line 10090 "configure"
    82898372 #include "confdefs.h"
    82908373 
    82918374 #include <pthread.h>
    8292 @@ -9722,16 +10102,16 @@
     8375@@ -9722,16 +10103,16 @@
    82938376 }
    82948377 _ACEOF
    82958378 rm -f conftest.$ac_objext conftest$ac_exeext
    82968379-if { (eval echo "$as_me:9725: \"$ac_link\"") >&5
    8297 +if { (eval echo "$as_me:10105: \"$ac_link\"") >&5
     8380+if { (eval echo "$as_me:10106: \"$ac_link\"") >&5
    82988381   (eval $ac_link) 2>&5
    82998382   ac_status=$?
    83008383-  echo "$as_me:9728: \$? = $ac_status" >&5
    8301 +  echo "$as_me:10108: \$? = $ac_status" >&5
     8384+  echo "$as_me:10109: \$? = $ac_status" >&5
    83028385   (exit $ac_status); } &&
    83038386          { ac_try='test -s conftest$ac_exeext'
    83048387-  { (eval echo "$as_me:9731: \"$ac_try\"") >&5
    8305 +  { (eval echo "$as_me:10111: \"$ac_try\"") >&5
     8388+  { (eval echo "$as_me:10112: \"$ac_try\"") >&5
    83068389   (eval $ac_try) 2>&5
    83078390   ac_status=$?
    83088391-  echo "$as_me:9734: \$? = $ac_status" >&5
    8309 +  echo "$as_me:10114: \$? = $ac_status" >&5
     8392+  echo "$as_me:10115: \$? = $ac_status" >&5
    83108393   (exit $ac_status); }; }; then
    83118394   with_pthread=yes
    83128395 else
    8313 @@ -9741,7 +10121,7 @@
     8396@@ -9741,7 +10122,7 @@
    83148397 fi
    83158398 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
    83168399         LIBS="$cf_save_LIBS"
    83178400-        echo "$as_me:9744: result: $with_pthread" >&5
    8318 +        echo "$as_me:10124: result: $with_pthread" >&5
     8401+        echo "$as_me:10125: result: $with_pthread" >&5
    83198402 echo "${ECHO_T}$with_pthread" >&6
    83208403 
    83218404         if test "$with_pthread" = yes ; then
    8322 @@ -9751,7 +10131,7 @@
     8405@@ -9751,7 +10132,7 @@
    83238406 EOF
    83248407 
    83258408         else
    83268409-            { { echo "$as_me:9754: error: Cannot link with pthread library" >&5
    8327 +            { { echo "$as_me:10134: error: Cannot link with pthread library" >&5
     8410+            { { echo "$as_me:10135: error: Cannot link with pthread library" >&5
    83288411 echo "$as_me: error: Cannot link with pthread library" >&2;}
    83298412    { (exit 1); exit 1; }; }
    83308413         fi
    8331 @@ -9760,7 +10140,7 @@
     8414@@ -9760,7 +10141,7 @@
    83328415 
    83338416 fi
    83348417 
    83358418-echo "$as_me:9763: checking if you want to use weak-symbols for pthreads" >&5
    8336 +echo "$as_me:10143: checking if you want to use weak-symbols for pthreads" >&5
     8419+echo "$as_me:10144: checking if you want to use weak-symbols for pthreads" >&5
    83378420 echo $ECHO_N "checking if you want to use weak-symbols for pthreads... $ECHO_C" >&6
    83388421 
    83398422 # Check whether --enable-weak-symbols or --disable-weak-symbols was given.
    8340 @@ -9770,18 +10150,18 @@
     8423@@ -9770,18 +10151,18 @@
    83418424 else
    83428425   use_weak_symbols=no
    83438426 fi;
    83448427-echo "$as_me:9773: result: $use_weak_symbols" >&5
    8345 +echo "$as_me:10153: result: $use_weak_symbols" >&5
     8428+echo "$as_me:10154: result: $use_weak_symbols" >&5
    83468429 echo "${ECHO_T}$use_weak_symbols" >&6
    83478430 if test "$use_weak_symbols" = yes ; then
    83488431 
    83498432-echo "$as_me:9777: checking if $CC supports weak symbols" >&5
    8350 +echo "$as_me:10157: checking if $CC supports weak symbols" >&5
     8433+echo "$as_me:10158: checking if $CC supports weak symbols" >&5
    83518434 echo $ECHO_N "checking if $CC supports weak symbols... $ECHO_C" >&6
    83528435 if test "${cf_cv_weak_symbols+set}" = set; then
     
    83568439 cat >conftest.$ac_ext <<_ACEOF
    83578440-#line 9784 "configure"
    8358 +#line 10164 "configure"
     8441+#line 10165 "configure"
    83598442 #include "confdefs.h"
    83608443 
    83618444 #include <stdio.h>
    8362 @@ -9807,16 +10187,16 @@
     8445@@ -9807,16 +10188,16 @@
    83638446 }
    83648447 _ACEOF
    83658448 rm -f conftest.$ac_objext
    83668449-if { (eval echo "$as_me:9810: \"$ac_compile\"") >&5
    8367 +if { (eval echo "$as_me:10190: \"$ac_compile\"") >&5
     8450+if { (eval echo "$as_me:10191: \"$ac_compile\"") >&5
    83688451   (eval $ac_compile) 2>&5
    83698452   ac_status=$?
    83708453-  echo "$as_me:9813: \$? = $ac_status" >&5
    8371 +  echo "$as_me:10193: \$? = $ac_status" >&5
     8454+  echo "$as_me:10194: \$? = $ac_status" >&5
    83728455   (exit $ac_status); } &&
    83738456          { ac_try='test -s conftest.$ac_objext'
    83748457-  { (eval echo "$as_me:9816: \"$ac_try\"") >&5
    8375 +  { (eval echo "$as_me:10196: \"$ac_try\"") >&5
     8458+  { (eval echo "$as_me:10197: \"$ac_try\"") >&5
    83768459   (eval $ac_try) 2>&5
    83778460   ac_status=$?
    83788461-  echo "$as_me:9819: \$? = $ac_status" >&5
    8379 +  echo "$as_me:10199: \$? = $ac_status" >&5
     8462+  echo "$as_me:10200: \$? = $ac_status" >&5
    83808463   (exit $ac_status); }; }; then
    83818464   cf_cv_weak_symbols=yes
    83828465 else
    8383 @@ -9827,7 +10207,7 @@
     8466@@ -9827,7 +10208,7 @@
    83848467 rm -f conftest.$ac_objext conftest.$ac_ext
    83858468 
    83868469 fi
    83878470-echo "$as_me:9830: result: $cf_cv_weak_symbols" >&5
    8388 +echo "$as_me:10210: result: $cf_cv_weak_symbols" >&5
     8471+echo "$as_me:10211: result: $cf_cv_weak_symbols" >&5
    83898472 echo "${ECHO_T}$cf_cv_weak_symbols" >&6
    83908473 
    83918474 else
    8392 @@ -9857,7 +10237,7 @@
     8475@@ -9857,7 +10238,7 @@
    83938476 # opaque outside of that, so there is no --enable-opaque option.  We can use
    83948477 # this option without --with-pthreads, but this will be always set for
    83958478 # pthreads.
    83968479-echo "$as_me:9860: checking if you want experimental reentrant code" >&5
    8397 +echo "$as_me:10240: checking if you want experimental reentrant code" >&5
     8480+echo "$as_me:10241: checking if you want experimental reentrant code" >&5
    83988481 echo $ECHO_N "checking if you want experimental reentrant code... $ECHO_C" >&6
    83998482 
    84008483 # Check whether --enable-reentrant or --disable-reentrant was given.
    8401 @@ -9867,21 +10247,21 @@
     8484@@ -9867,21 +10248,21 @@
    84028485 else
    84038486   with_reentrant=no
    84048487 fi;
    84058488-echo "$as_me:9870: result: $with_reentrant" >&5
    8406 +echo "$as_me:10250: result: $with_reentrant" >&5
     8489+echo "$as_me:10251: result: $with_reentrant" >&5
    84078490 echo "${ECHO_T}$with_reentrant" >&6
    84088491 if test "$with_reentrant" = yes ; then
     
    84268509 #define USE_REENTRANT 1
    84278510 EOF
    8428 @@ -9891,7 +10271,7 @@
     8511@@ -9891,7 +10272,7 @@
    84298512        5.*)
    84308513                cf_cv_rel_version=6.0
    84318514                cf_cv_abi_version=6
    84328515-               { echo "$as_me:9894: WARNING: Overriding ABI version to $cf_cv_abi_version" >&5
    8433 +               { echo "$as_me:10274: WARNING: Overriding ABI version to $cf_cv_abi_version" >&5
     8516+               { echo "$as_me:10275: WARNING: Overriding ABI version to $cf_cv_abi_version" >&5
    84348517 echo "$as_me: WARNING: Overriding ABI version to $cf_cv_abi_version" >&2;}
    84358518                ;;
    84368519        esac
    8437 @@ -9904,7 +10284,29 @@
     8520@@ -9904,7 +10285,29 @@
    84388521        NCURSES_SIZE_T=short
    84398522 fi
     
    84418524-echo "$as_me:9907: checking if you want experimental safe-sprintf code" >&5
    84428525+### Allow using a different wrap-prefix
    8443 +if test "$cf_cv_enable_reentrant" != 0 ; then
    8444 +       echo "$as_me:10289: checking for prefix used to wrap public variables" >&5
     8526+if test "$cf_cv_enable_reentrant" != 0 || test "$BROKEN_LINKER" = 1 ; then
     8527+       echo "$as_me:10290: checking for prefix used to wrap public variables" >&5
    84458528+echo $ECHO_N "checking for prefix used to wrap public variables... $ECHO_C" >&6
    84468529+
     
    84528535+  NCURSES_WRAP_PREFIX=_nc_
    84538536+fi;
    8454 +       echo "$as_me:10299: result: $NCURSES_WRAP_PREFIX" >&5
     8537+       echo "$as_me:10300: result: $NCURSES_WRAP_PREFIX" >&5
    84558538+echo "${ECHO_T}$NCURSES_WRAP_PREFIX" >&6
    84568539+else
     
    84628545+EOF
    84638546+
    8464 +echo "$as_me:10309: checking if you want experimental safe-sprintf code" >&5
     8547+echo "$as_me:10310: checking if you want experimental safe-sprintf code" >&5
    84658548 echo $ECHO_N "checking if you want experimental safe-sprintf code... $ECHO_C" >&6
    84668549 
    84678550 # Check whether --enable-safe-sprintf or --disable-safe-sprintf was given.
    8468 @@ -9914,7 +10316,7 @@
     8551@@ -9914,7 +10317,7 @@
    84698552 else
    84708553   with_safe_sprintf=no
    84718554 fi;
    84728555-echo "$as_me:9917: result: $with_safe_sprintf" >&5
    8473 +echo "$as_me:10319: result: $with_safe_sprintf" >&5
     8556+echo "$as_me:10320: result: $with_safe_sprintf" >&5
    84748557 echo "${ECHO_T}$with_safe_sprintf" >&6
    84758558 test "$with_safe_sprintf" = yes && cat >>confdefs.h <<\EOF
    84768559 #define USE_SAFE_SPRINTF 1
    8477 @@ -9923,7 +10325,7 @@
     8560@@ -9923,7 +10326,7 @@
    84788561 ###   use option --disable-scroll-hints to turn off use of scroll-hints scrolling logic
    84798562 # when hashmap is used scroll hints are useless
    84808563 if test "$with_hashmap" = no ; then
    84818564-echo "$as_me:9926: checking if you want to experiment without scrolling-hints code" >&5
    8482 +echo "$as_me:10328: checking if you want to experiment without scrolling-hints code" >&5
     8565+echo "$as_me:10329: checking if you want to experiment without scrolling-hints code" >&5
    84838566 echo $ECHO_N "checking if you want to experiment without scrolling-hints code... $ECHO_C" >&6
    84848567 
    84858568 # Check whether --enable-scroll-hints or --disable-scroll-hints was given.
    8486 @@ -9933,7 +10335,7 @@
     8569@@ -9933,7 +10336,7 @@
    84878570 else
    84888571   with_scroll_hints=yes
    84898572 fi;
    84908573-echo "$as_me:9936: result: $with_scroll_hints" >&5
    8491 +echo "$as_me:10338: result: $with_scroll_hints" >&5
     8574+echo "$as_me:10339: result: $with_scroll_hints" >&5
    84928575 echo "${ECHO_T}$with_scroll_hints" >&6
    84938576 test "$with_scroll_hints" = yes && cat >>confdefs.h <<\EOF
    84948577 #define USE_SCROLL_HINTS 1
    8495 @@ -9941,7 +10343,7 @@
     8578@@ -9941,7 +10344,7 @@
    84968579 
    84978580 fi
    84988581 
    84998582-echo "$as_me:9944: checking if you want experimental wgetch-events code" >&5
    8500 +echo "$as_me:10346: checking if you want experimental wgetch-events code" >&5
     8583+echo "$as_me:10347: checking if you want experimental wgetch-events code" >&5
    85018584 echo $ECHO_N "checking if you want experimental wgetch-events code... $ECHO_C" >&6
    85028585 
    85038586 # Check whether --enable-wgetch-events or --disable-wgetch-events was given.
    8504 @@ -9951,7 +10353,7 @@
     8587@@ -9951,7 +10354,7 @@
    85058588 else
    85068589   with_wgetch_events=no
    85078590 fi;
    85088591-echo "$as_me:9954: result: $with_wgetch_events" >&5
    8509 +echo "$as_me:10356: result: $with_wgetch_events" >&5
     8592+echo "$as_me:10357: result: $with_wgetch_events" >&5
    85108593 echo "${ECHO_T}$with_wgetch_events" >&6
    85118594 test "$with_wgetch_events" = yes && cat >>confdefs.h <<\EOF
    85128595 #define NCURSES_WGETCH_EVENTS 1
    8513 @@ -9960,7 +10362,7 @@
     8596@@ -9960,7 +10363,7 @@
    85148597 ###############################################################################
    85158598 
    85168599 ###    use option --disable-echo to suppress full display compiling commands
    85178600-echo "$as_me:9963: checking if you want to display full commands during build" >&5
    8518 +echo "$as_me:10365: checking if you want to display full commands during build" >&5
     8601+echo "$as_me:10366: checking if you want to display full commands during build" >&5
    85198602 echo $ECHO_N "checking if you want to display full commands during build... $ECHO_C" >&6
    85208603 
    85218604 # Check whether --enable-echo or --disable-echo was given.
    8522 @@ -9977,11 +10379,11 @@
     8605@@ -9977,11 +10380,11 @@
    85238606        test -n "$LIBTOOL" && LIBTOOL="$LIBTOOL --silent"
    85248607        test -n "$LIBTOOL_CXX" && LIBTOOL_CXX="$LIBTOOL_CXX --silent"
    85258608 fi
    85268609-echo "$as_me:9980: result: $with_echo" >&5
    8527 +echo "$as_me:10382: result: $with_echo" >&5
     8610+echo "$as_me:10383: result: $with_echo" >&5
    85288611 echo "${ECHO_T}$with_echo" >&6
    85298612 
    85308613 ###    use option --enable-warnings to turn on all gcc warnings
    85318614-echo "$as_me:9984: checking if you want to see compiler warnings" >&5
    8532 +echo "$as_me:10386: checking if you want to see compiler warnings" >&5
     8615+echo "$as_me:10387: checking if you want to see compiler warnings" >&5
    85338616 echo $ECHO_N "checking if you want to see compiler warnings... $ECHO_C" >&6
    85348617 
    85358618 # Check whether --enable-warnings or --disable-warnings was given.
    8536 @@ -9989,7 +10391,7 @@
     8619@@ -9989,7 +10392,7 @@
    85378620   enableval="$enable_warnings"
    85388621   with_warnings=$enableval
    85398622 fi;
    85408623-echo "$as_me:9992: result: $with_warnings" >&5
    8541 +echo "$as_me:10394: result: $with_warnings" >&5
     8624+echo "$as_me:10395: result: $with_warnings" >&5
    85428625 echo "${ECHO_T}$with_warnings" >&6
    85438626 
    85448627 if test "x$with_warnings" = "xyes"; then
    8545 @@ -10000,12 +10402,12 @@
     8628@@ -10000,12 +10403,12 @@
    85468629 if test "$GCC" = yes ; then
    85478630        case $host_os in
    85488631        linux*|gnu*)
    85498632-               echo "$as_me:10003: checking if this is really Intel C compiler" >&5
    8550 +               echo "$as_me:10405: checking if this is really Intel C compiler" >&5
     8633+               echo "$as_me:10406: checking if this is really Intel C compiler" >&5
    85518634 echo $ECHO_N "checking if this is really Intel C compiler... $ECHO_C" >&6
    85528635                cf_save_CFLAGS="$CFLAGS"
     
    85548637                cat >conftest.$ac_ext <<_ACEOF
    85558638-#line 10008 "configure"
    8556 +#line 10410 "configure"
     8639+#line 10411 "configure"
    85578640 #include "confdefs.h"
    85588641 
    85598642 int
    8560 @@ -10022,16 +10424,16 @@
     8643@@ -10022,16 +10425,16 @@
    85618644 }
    85628645 _ACEOF
    85638646 rm -f conftest.$ac_objext
    85648647-if { (eval echo "$as_me:10025: \"$ac_compile\"") >&5
    8565 +if { (eval echo "$as_me:10427: \"$ac_compile\"") >&5
     8648+if { (eval echo "$as_me:10428: \"$ac_compile\"") >&5
    85668649   (eval $ac_compile) 2>&5
    85678650   ac_status=$?
    85688651-  echo "$as_me:10028: \$? = $ac_status" >&5
    8569 +  echo "$as_me:10430: \$? = $ac_status" >&5
     8652+  echo "$as_me:10431: \$? = $ac_status" >&5
    85708653   (exit $ac_status); } &&
    85718654          { ac_try='test -s conftest.$ac_objext'
    85728655-  { (eval echo "$as_me:10031: \"$ac_try\"") >&5
    8573 +  { (eval echo "$as_me:10433: \"$ac_try\"") >&5
     8656+  { (eval echo "$as_me:10434: \"$ac_try\"") >&5
    85748657   (eval $ac_try) 2>&5
    85758658   ac_status=$?
    85768659-  echo "$as_me:10034: \$? = $ac_status" >&5
    8577 +  echo "$as_me:10436: \$? = $ac_status" >&5
     8660+  echo "$as_me:10437: \$? = $ac_status" >&5
    85788661   (exit $ac_status); }; }; then
    85798662   INTEL_COMPILER=yes
    85808663 cf_save_CFLAGS="$cf_save_CFLAGS -we147 -no-gcc"
    8581 @@ -10042,14 +10444,14 @@
     8664@@ -10042,14 +10445,14 @@
    85828665 fi
    85838666 rm -f conftest.$ac_objext conftest.$ac_ext
    85848667                CFLAGS="$cf_save_CFLAGS"
    85858668-               echo "$as_me:10045: result: $INTEL_COMPILER" >&5
    8586 +               echo "$as_me:10447: result: $INTEL_COMPILER" >&5
     8669+               echo "$as_me:10448: result: $INTEL_COMPILER" >&5
    85878670 echo "${ECHO_T}$INTEL_COMPILER" >&6
    85888671                ;;
     
    85928675 cat > conftest.$ac_ext <<EOF
    85938676-#line 10052 "${as_me-configure}"
    8594 +#line 10454 "${as_me-configure}"
     8677+#line 10455 "${as_me-configure}"
    85958678 int main(int argc, char *argv[]) { return (argv[argc-1] == 0) ; }
    85968679 EOF
    85978680 
    8598 @@ -10057,7 +10459,6 @@
     8681@@ -10057,7 +10460,6 @@
    85998682 then
    86008683 # The "-wdXXX" options suppress warnings:
     
    86048687 # remark #1684: conversion from pointer to same-sized integral type (potential portability problem)
    86058688 # remark #193: zero used for undefined preprocessing identifier
    8606 @@ -10065,31 +10466,30 @@
     8689@@ -10065,31 +10467,30 @@
    86078690 # remark #810: conversion from "int" to "Dimension={unsigned short}" may lose significant bits
    86088691 # remark #869: parameter "tw" was never referenced
     
    86128695 
    86138696-       { echo "$as_me:10070: checking for $CC warning options..." >&5
    8614 +       { echo "$as_me:10471: checking for $CC warning options..." >&5
     8697+       { echo "$as_me:10472: checking for $CC warning options..." >&5
    86158698 echo "$as_me: checking for $CC warning options..." >&6;}
    86168699        cf_save_CFLAGS="$CFLAGS"
     
    86318714                CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt"
    86328715-               if { (eval echo "$as_me:10087: \"$ac_compile\"") >&5
    8633 +               if { (eval echo "$as_me:10487: \"$ac_compile\"") >&5
     8716+               if { (eval echo "$as_me:10488: \"$ac_compile\"") >&5
    86348717   (eval $ac_compile) 2>&5
    86358718   ac_status=$?
    86368719-  echo "$as_me:10090: \$? = $ac_status" >&5
    8637 +  echo "$as_me:10490: \$? = $ac_status" >&5
     8720+  echo "$as_me:10491: \$? = $ac_status" >&5
    86388721   (exit $ac_status); }; then
    86398722-                       test -n "$verbose" && echo "$as_me:10092: result: ... -$cf_opt" >&5
    8640 +                       test -n "$verbose" && echo "$as_me:10492: result: ... -$cf_opt" >&5
     8723+                       test -n "$verbose" && echo "$as_me:10493: result: ... -$cf_opt" >&5
    86418724 echo "${ECHO_T}... -$cf_opt" >&6
    86428725                        EXTRA_CFLAGS="$EXTRA_CFLAGS -$cf_opt"
    86438726                fi
    8644 @@ -10098,7 +10498,7 @@
     8727@@ -10098,7 +10499,7 @@
    86458728 
    86468729 elif test "$GCC" = yes
    86478730 then
    86488731-       { echo "$as_me:10101: checking for $CC warning options..." >&5
    8649 +       { echo "$as_me:10501: checking for $CC warning options..." >&5
     8732+       { echo "$as_me:10502: checking for $CC warning options..." >&5
    86508733 echo "$as_me: checking for $CC warning options..." >&6;}
    86518734        cf_save_CFLAGS="$CFLAGS"
    86528735        EXTRA_CFLAGS="-W -Wall"
    8653 @@ -10118,12 +10518,12 @@
     8736@@ -10118,12 +10519,12 @@
    86548737                Wundef $cf_warn_CONST Wdeclaration-after-statement Wextra Wno-unknown-pragmas Wswitch-enum
    86558738        do
    86568739                CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt"
    86578740-               if { (eval echo "$as_me:10121: \"$ac_compile\"") >&5
    8658 +               if { (eval echo "$as_me:10521: \"$ac_compile\"") >&5
     8741+               if { (eval echo "$as_me:10522: \"$ac_compile\"") >&5
    86598742   (eval $ac_compile) 2>&5
    86608743   ac_status=$?
    86618744-  echo "$as_me:10124: \$? = $ac_status" >&5
    8662 +  echo "$as_me:10524: \$? = $ac_status" >&5
     8745+  echo "$as_me:10525: \$? = $ac_status" >&5
    86638746   (exit $ac_status); }; then
    86648747-                       test -n "$verbose" && echo "$as_me:10126: result: ... -$cf_opt" >&5
    8665 +                       test -n "$verbose" && echo "$as_me:10526: result: ... -$cf_opt" >&5
     8748+                       test -n "$verbose" && echo "$as_me:10527: result: ... -$cf_opt" >&5
    86668749 echo "${ECHO_T}... -$cf_opt" >&6
    86678750                        case $cf_opt in #(vi
    86688751                        Wcast-qual) #(vi
    8669 @@ -10134,7 +10534,7 @@
     8752@@ -10134,7 +10535,7 @@
    86708753                                [34].*)
    86718754                                        test -n "$verbose" && echo "    feature is broken in gcc $GCC_VERSION" 1>&6
    86728755 
    86738756-echo "${as_me-configure}:10137: testing feature is broken in gcc $GCC_VERSION ..." 1>&5
    8674 +echo "${as_me-configure}:10537: testing feature is broken in gcc $GCC_VERSION ..." 1>&5
     8757+echo "${as_me-configure}:10538: testing feature is broken in gcc $GCC_VERSION ..." 1>&5
    86758758 
    86768759                                        continue;;
    86778760                                esac
    8678 @@ -10154,12 +10554,12 @@
     8761@@ -10154,12 +10555,12 @@
    86798762 if test "$GCC" = yes ; then
    86808763        case $host_os in
    86818764        linux*|gnu*)
    86828765-               echo "$as_me:10157: checking if this is really Intel C++ compiler" >&5
    8683 +               echo "$as_me:10557: checking if this is really Intel C++ compiler" >&5
     8766+               echo "$as_me:10558: checking if this is really Intel C++ compiler" >&5
    86848767 echo $ECHO_N "checking if this is really Intel C++ compiler... $ECHO_C" >&6
    86858768                cf_save_CFLAGS="$CXXFLAGS"
     
    86878770                cat >conftest.$ac_ext <<_ACEOF
    86888771-#line 10162 "configure"
    8689 +#line 10562 "configure"
     8772+#line 10563 "configure"
    86908773 #include "confdefs.h"
    86918774 
    86928775 int
    8693 @@ -10176,16 +10576,16 @@
     8776@@ -10176,16 +10577,16 @@
    86948777 }
    86958778 _ACEOF
    86968779 rm -f conftest.$ac_objext
    86978780-if { (eval echo "$as_me:10179: \"$ac_compile\"") >&5
    8698 +if { (eval echo "$as_me:10579: \"$ac_compile\"") >&5
     8781+if { (eval echo "$as_me:10580: \"$ac_compile\"") >&5
    86998782   (eval $ac_compile) 2>&5
    87008783   ac_status=$?
    87018784-  echo "$as_me:10182: \$? = $ac_status" >&5
    8702 +  echo "$as_me:10582: \$? = $ac_status" >&5
     8785+  echo "$as_me:10583: \$? = $ac_status" >&5
    87038786   (exit $ac_status); } &&
    87048787          { ac_try='test -s conftest.$ac_objext'
    87058788-  { (eval echo "$as_me:10185: \"$ac_try\"") >&5
    8706 +  { (eval echo "$as_me:10585: \"$ac_try\"") >&5
     8789+  { (eval echo "$as_me:10586: \"$ac_try\"") >&5
    87078790   (eval $ac_try) 2>&5
    87088791   ac_status=$?
    87098792-  echo "$as_me:10188: \$? = $ac_status" >&5
    8710 +  echo "$as_me:10588: \$? = $ac_status" >&5
     8793+  echo "$as_me:10589: \$? = $ac_status" >&5
    87118794   (exit $ac_status); }; }; then
    87128795   INTEL_CPLUSPLUS=yes
    87138796 cf_save_CFLAGS="$cf_save_CFLAGS -we147 -no-gcc"
    8714 @@ -10196,7 +10596,7 @@
     8797@@ -10196,7 +10597,7 @@
    87158798 fi
    87168799 rm -f conftest.$ac_objext conftest.$ac_ext
    87178800                CXXFLAGS="$cf_save_CFLAGS"
    87188801-               echo "$as_me:10199: result: $INTEL_CPLUSPLUS" >&5
    8719 +               echo "$as_me:10599: result: $INTEL_CPLUSPLUS" >&5
     8802+               echo "$as_me:10600: result: $INTEL_CPLUSPLUS" >&5
    87208803 echo "${ECHO_T}$INTEL_CPLUSPLUS" >&6
    87218804                ;;
    87228805        esac
    8723 @@ -10210,7 +10610,7 @@
     8806@@ -10210,7 +10611,7 @@
    87248807 ac_main_return=return
    87258808 
    87268809 cat > conftest.$ac_ext <<EOF
    87278810-#line 10213 "configure"
    8728 +#line 10613 "configure"
     8811+#line 10614 "configure"
    87298812 int main(int argc, char *argv[]) { return (argv[argc-1] == 0) ; }
    87308813 EOF
    87318814 
    8732 @@ -10228,7 +10628,7 @@
     8815@@ -10228,7 +10629,7 @@
    87338816 # remark #981: operands are evaluated in unspecified order
    87348817 # warning #269: invalid format string conversion
    87358818 
    87368819-       { echo "$as_me:10231: checking for $CC warning options..." >&5
    8737 +       { echo "$as_me:10631: checking for $CC warning options..." >&5
     8820+       { echo "$as_me:10632: checking for $CC warning options..." >&5
    87388821 echo "$as_me: checking for $CC warning options..." >&6;}
    87398822        cf_save_CXXFLAGS="$CXXFLAGS"
    87408823        EXTRA_CXXFLAGS="-Wall"
    8741 @@ -10245,12 +10645,12 @@
     8824@@ -10245,12 +10646,12 @@
    87428825                wd981
    87438826        do
    87448827                CXXFLAGS="$cf_save_CXXFLAGS $EXTRA_CXXFLAGS -$cf_opt"
    87458828-               if { (eval echo "$as_me:10248: \"$ac_compile\"") >&5
    8746 +               if { (eval echo "$as_me:10648: \"$ac_compile\"") >&5
     8829+               if { (eval echo "$as_me:10649: \"$ac_compile\"") >&5
    87478830   (eval $ac_compile) 2>&5
    87488831   ac_status=$?
    87498832-  echo "$as_me:10251: \$? = $ac_status" >&5
    8750 +  echo "$as_me:10651: \$? = $ac_status" >&5
     8833+  echo "$as_me:10652: \$? = $ac_status" >&5
    87518834   (exit $ac_status); }; then
    87528835-                       test -n "$verbose" && echo "$as_me:10253: result: ... -$cf_opt" >&5
    8753 +                       test -n "$verbose" && echo "$as_me:10653: result: ... -$cf_opt" >&5
     8836+                       test -n "$verbose" && echo "$as_me:10654: result: ... -$cf_opt" >&5
    87548837 echo "${ECHO_T}... -$cf_opt" >&6
    87558838                        EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS -$cf_opt"
    87568839                fi
    8757 @@ -10259,7 +10659,7 @@
     8840@@ -10259,7 +10660,7 @@
    87588841 
    87598842 elif test "$GXX" = yes
    87608843 then
    87618844-       { echo "$as_me:10262: checking for $CXX warning options..." >&5
    8762 +       { echo "$as_me:10662: checking for $CXX warning options..." >&5
     8845+       { echo "$as_me:10663: checking for $CXX warning options..." >&5
    87638846 echo "$as_me: checking for $CXX warning options..." >&6;}
    87648847        cf_save_CXXFLAGS="$CXXFLAGS"
    87658848        EXTRA_CXXFLAGS="-W -Wall"
    8766 @@ -10288,16 +10688,16 @@
     8849@@ -10288,16 +10689,16 @@
    87678850                Wundef $cf_gxx_extra_warnings Wno-unused
    87688851        do
    87698852                CXXFLAGS="$cf_save_CXXFLAGS $EXTRA_CXXFLAGS -Werror -$cf_opt"
    87708853-               if { (eval echo "$as_me:10291: \"$ac_compile\"") >&5
    8771 +               if { (eval echo "$as_me:10691: \"$ac_compile\"") >&5
     8854+               if { (eval echo "$as_me:10692: \"$ac_compile\"") >&5
    87728855   (eval $ac_compile) 2>&5
    87738856   ac_status=$?
    87748857-  echo "$as_me:10294: \$? = $ac_status" >&5
    8775 +  echo "$as_me:10694: \$? = $ac_status" >&5
     8858+  echo "$as_me:10695: \$? = $ac_status" >&5
    87768859   (exit $ac_status); }; then
    87778860-                       test -n "$verbose" && echo "$as_me:10296: result: ... -$cf_opt" >&5
    8778 +                       test -n "$verbose" && echo "$as_me:10696: result: ... -$cf_opt" >&5
     8861+                       test -n "$verbose" && echo "$as_me:10697: result: ... -$cf_opt" >&5
    87798862 echo "${ECHO_T}... -$cf_opt" >&6
    87808863                        EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS -$cf_opt"
    87818864                else
    87828865-                       test -n "$verbose" && echo "$as_me:10300: result: ... no -$cf_opt" >&5
    8783 +                       test -n "$verbose" && echo "$as_me:10700: result: ... no -$cf_opt" >&5
     8866+                       test -n "$verbose" && echo "$as_me:10701: result: ... no -$cf_opt" >&5
    87848867 echo "${ECHO_T}... no -$cf_opt" >&6
    87858868                fi
    87868869        done
    8787 @@ -10333,10 +10733,10 @@
     8870@@ -10333,10 +10734,10 @@
    87888871 EOF
    87898872 if test "$GCC" = yes
    87908873 then
    87918874-       { echo "$as_me:10336: checking for $CC __attribute__ directives..." >&5
    8792 +       { echo "$as_me:10736: checking for $CC __attribute__ directives..." >&5
     8875+       { echo "$as_me:10737: checking for $CC __attribute__ directives..." >&5
    87938876 echo "$as_me: checking for $CC __attribute__ directives..." >&6;}
    87948877 cat > conftest.$ac_ext <<EOF
    87958878-#line 10339 "${as_me-configure}"
    8796 +#line 10739 "${as_me-configure}"
     8879+#line 10740 "${as_me-configure}"
    87978880 #include "confdefs.h"
    87988881 #include "conftest.h"
    87998882 #include "conftest.i"
    8800 @@ -10374,12 +10774,12 @@
     8883@@ -10374,12 +10775,12 @@
    88018884 EOF
    88028885                        ;;
    88038886                esac
    88048887-               if { (eval echo "$as_me:10377: \"$ac_compile\"") >&5
    8805 +               if { (eval echo "$as_me:10777: \"$ac_compile\"") >&5
     8888+               if { (eval echo "$as_me:10778: \"$ac_compile\"") >&5
    88068889   (eval $ac_compile) 2>&5
    88078890   ac_status=$?
    88088891-  echo "$as_me:10380: \$? = $ac_status" >&5
    8809 +  echo "$as_me:10780: \$? = $ac_status" >&5
     8892+  echo "$as_me:10781: \$? = $ac_status" >&5
    88108893   (exit $ac_status); }; then
    88118894-                       test -n "$verbose" && echo "$as_me:10382: result: ... $cf_attribute" >&5
    8812 +                       test -n "$verbose" && echo "$as_me:10782: result: ... $cf_attribute" >&5
     8895+                       test -n "$verbose" && echo "$as_me:10783: result: ... $cf_attribute" >&5
    88138896 echo "${ECHO_T}... $cf_attribute" >&6
    88148897      &nb