1# ncurses 6.1 - patch 20190907 - Thomas E. Dickey
2#
3# ------------------------------------------------------------------------------
4#
5# Ncurses 6.1 is at
6# 	ftp.gnu.org:/pub/gnu
7#
8# Patches for ncurses 6.1 can be found at
9# 	ftp://ftp.invisible-island.net/ncurses/6.1
10#	http://invisible-mirror.net/archives/ncurses/6.1
11#
12# ------------------------------------------------------------------------------
13# ftp://ftp.invisible-island.net/ncurses/6.1/ncurses-6.1-20190907.patch.gz
14# patch by Thomas E. Dickey <dickey@invisible-island.net>
15# created  Sun Sep  8 01:44:15 UTC 2019
16# ------------------------------------------------------------------------------
17# Ada95/aclocal.m4                                            |   97
18# Ada95/configure                                             | 2844 +++---
19# Ada95/configure.in                                          |    7
20# Ada95/doc/Makefile.in                                       |    6
21# Ada95/gen/adacurses-config.in                               |    8
22# Ada95/package/AdaCurses-doc.spec                            |    7
23# Ada95/package/AdaCurses.spec                                |   21
24# Ada95/samples/Makefile.in                                   |   45
25# Ada95/src/Makefile.in                                       |   21
26# Ada95/src/library-cfg.sh                                    |    8
27# INSTALL                                                     |    5
28# MANIFEST                                                    |    4
29# NEWS                                                        |   10
30# VERSION                                                     |    2
31# aclocal.m4                                                  |   37
32# configure                                                   | 4679 +++++-----
33# configure.in                                                |   19
34# dist.mk                                                     |    4
35# man/MKada_config.in                                         |   16
36# ncurses-6.1-20190907/Ada95/samples/sample-explanation.adb_p |  441
37# ncurses-6.1-20190907/Ada95/src/library.gpr.in               |   57
38# package/debian-mingw/changelog                              |    4
39# package/debian-mingw64/changelog                            |    4
40# package/debian/changelog                                    |    4
41# package/mingw-ncurses.nsi                                   |    4
42# package/mingw-ncurses.spec                                  |    2
43# package/ncurses.spec                                        |    2
44# package/ncursest.spec                                       |    2
45# test/aclocal.m4                                             |   84
46# test/configure                                              | 3283 +++----
47# test/demo_panels.c                                          |    2
48# test/ncurses.c                                              |    2
49# 32 files changed, 6314 insertions(+), 5417 deletions(-)
50# ------------------------------------------------------------------------------
51# Please remove the following files before applying this patch.
52# (You can feed this patch to 'sh' to do so.)
53
54rm -f Ada95/samples/sample-explanation.adb
55rm -f Ada95/src/library.gpr
56exit
57
58Index: Ada95/aclocal.m4
59Prereq:  1.142
60--- ncurses-6.1-20190831+/Ada95/aclocal.m4	2019-01-01 01:46:17.000000000 +0000
61+++ ncurses-6.1-20190907/Ada95/aclocal.m4	2019-09-07 23:37:09.000000000 +0000
62@@ -1,5 +1,5 @@
63 dnl***************************************************************************
64-dnl Copyright (c) 2010-2017,2018 Free Software Foundation, Inc.              *
65+dnl Copyright (c) 2010-2018,2019 Free Software Foundation, Inc.              *
66 dnl                                                                          *
67 dnl Permission is hereby granted, free of charge, to any person obtaining a  *
68 dnl copy of this software and associated documentation files (the            *
69@@ -28,7 +28,7 @@
70 dnl
71 dnl Author: Thomas E. Dickey
72 dnl
73-dnl $Id: aclocal.m4,v 1.142 2019/01/01 01:46:17 tom Exp $
74+dnl $Id: aclocal.m4,v 1.145 2019/09/07 23:37:09 tom Exp $
75 dnl Macros used in NCURSES Ada95 auto-configuration script.
76 dnl
77 dnl These macros are maintained separately from NCURSES.  The copyright on
78@@ -710,6 +710,60 @@
79 fi
80 ])
81 dnl ---------------------------------------------------------------------------
82+dnl CF_CONST_X_STRING version: 1 updated: 2019/04/08 17:50:29
83+dnl -----------------
84+dnl The X11R4-X11R6 Xt specification uses an ambiguous String type for most
85+dnl character-strings.
86+dnl
87+dnl It is ambiguous because the specification accommodated the pre-ANSI
88+dnl compilers bundled by more than one vendor in lieu of providing a standard C
89+dnl compiler other than by costly add-ons.  Because of this, the specification
90+dnl did not take into account the use of const for telling the compiler that
91+dnl string literals would be in readonly memory.
92+dnl
93+dnl As a workaround, one could (starting with X11R5) define XTSTRINGDEFINES, to
94+dnl let the compiler decide how to represent Xt's strings which were #define'd.
95+dnl That does not solve the problem of using the block of Xt's strings which
96+dnl are compiled into the library (and is less efficient than one might want).
97+dnl
98+dnl Xt specification 7 introduces the _CONST_X_STRING symbol which is used both
99+dnl when compiling the library and compiling using the library, to tell the
100+dnl compiler that String is const.
101+AC_DEFUN([CF_CONST_X_STRING],
102+[
103+AC_TRY_COMPILE(
104+[
105+#include <stdlib.h>
106+#include <X11/Intrinsic.h>
107+],
108+[String foo = malloc(1)],[
109+
110+AC_CACHE_CHECK(for X11/Xt const-feature,cf_cv_const_x_string,[
111+	AC_TRY_COMPILE(
112+		[
113+#define _CONST_X_STRING	/* X11R7.8 (perhaps) */
114+#undef  XTSTRINGDEFINES	/* X11R5 and later */
115+#include <stdlib.h>
116+#include <X11/Intrinsic.h>
117+		],[String foo = malloc(1); *foo = 0],[
118+			cf_cv_const_x_string=no
119+		],[
120+			cf_cv_const_x_string=yes
121+		])
122+])
123+
124+case $cf_cv_const_x_string in
125+(no)
126+	CF_APPEND_TEXT(CPPFLAGS,-DXTSTRINGDEFINES)
127+	;;
128+(*)
129+	CF_APPEND_TEXT(CPPFLAGS,-D_CONST_X_STRING)
130+	;;
131+esac
132+
133+])
134+])dnl
135+dnl ---------------------------------------------------------------------------
136 dnl CF_CURSES_HEADER version: 5 updated: 2015/04/23 20:35:30
137 dnl ----------------
138 dnl Find a "curses" header file, e.g,. "curses.h", or one of the more common
139@@ -1100,9 +1154,10 @@
140 fi
141 ])dnl
142 dnl ---------------------------------------------------------------------------
143-dnl CF_GCC_VERSION version: 7 updated: 2012/10/18 06:46:33
144+dnl CF_GCC_VERSION version: 8 updated: 2019/09/07 13:38:36
145 dnl --------------
146-dnl Find version of gcc
147+dnl Find version of gcc, and (because icc/clang pretend to be gcc without being
148+dnl compatible), attempt to determine if icc/clang is actually used.
149 AC_DEFUN([CF_GCC_VERSION],[
150 AC_REQUIRE([AC_PROG_CC])
151 GCC_VERSION=none
152@@ -1112,9 +1167,11 @@
153 	test -z "$GCC_VERSION" && GCC_VERSION=unknown
154 	AC_MSG_RESULT($GCC_VERSION)
155 fi
156+CF_INTEL_COMPILER(GCC,INTEL_COMPILER,CFLAGS)
157+CF_CLANG_COMPILER(GCC,CLANG_COMPILER,CFLAGS)
158 ])dnl
159 dnl ---------------------------------------------------------------------------
160-dnl CF_GCC_WARNINGS version: 33 updated: 2018/06/20 20:23:13
161+dnl CF_GCC_WARNINGS version: 36 updated: 2019/09/07 13:38:36
162 dnl ---------------
163 dnl Check if the compiler supports useful warning options.  There's a few that
164 dnl we don't use, simply because they're too noisy:
165@@ -1136,14 +1193,11 @@
166 AC_DEFUN([CF_GCC_WARNINGS],
167 [
168 AC_REQUIRE([CF_GCC_VERSION])
169-CF_INTEL_COMPILER(GCC,INTEL_COMPILER,CFLAGS)
170-CF_CLANG_COMPILER(GCC,CLANG_COMPILER,CFLAGS)
171-
172+if test "x$have_x" = xyes; then CF_CONST_X_STRING fi
173 cat > conftest.$ac_ext <<EOF
174 #line __oline__ "${as_me:-configure}"
175 int main(int argc, char *argv[[]]) { return (argv[[argc-1]] == 0) ; }
176 EOF
177-
178 if test "$INTEL_COMPILER" = yes
179 then
180 # The "-wdXXX" options suppress warnings:
181@@ -1178,7 +1232,6 @@
182 		fi
183 	done
184 	CFLAGS="$cf_save_CFLAGS"
185-
186 elif test "$GCC" = yes
187 then
188 	AC_CHECKING([for $CC warning options])
189@@ -1207,9 +1260,6 @@
190 		if AC_TRY_EVAL(ac_compile); then
191 			test -n "$verbose" && AC_MSG_RESULT(... -$cf_opt)
192 			case $cf_opt in
193-			(Wcast-qual)
194-				CF_APPEND_TEXT(CPPFLAGS,-DXTSTRINGDEFINES)
195-				;;
196 			(Winline)
197 				case $GCC_VERSION in
198 				([[34]].*)
199@@ -3925,6 +3975,27 @@
200 AC_MSG_RESULT($ADA_INCLUDE)
201 ])dnl
202 dnl ---------------------------------------------------------------------------
203+dnl CF_WITH_ADA_LIBNAME version: 1 updated: 2019/09/07 18:59:41
204+dnl -------------------
205+dnl CF_WITH_ADA_LIBNAME
206+dnl -------------------
207+dnl Command-line option to specify how to name the resulting Ada library.
208+dnl $1 = default value
209+AC_DEFUN([CF_WITH_ADA_LIBNAME],[
210+AC_MSG_CHECKING(for ada-libname)
211+AC_ARG_WITH(ada-libname,
212+   [  --with-ada-libname=XXX  override default Ada library-name],
213+   ADA_LIBNAME=[$]withval,
214+   ADA_LIBNAME=$1)
215+case "x$ADA_LIBNAME" in
216+(x|xyes|xno)
217+	ADA_LIBNAME=$1
218+	;;
219+esac
220+AC_SUBST(ADA_LIBNAME)
221+AC_MSG_RESULT($ADA_LIBNAME)
222+])dnl
223+dnl ---------------------------------------------------------------------------
224 dnl CF_WITH_ADA_OBJECTS version: 2 updated: 2010/06/26 17:35:58
225 dnl -------------------
226 dnl Command-line option to specify where Ada objects will install.
227Index: Ada95/configure
228--- ncurses-6.1-20190831+/Ada95/configure	2019-08-31 21:40:31.000000000 +0000
229+++ ncurses-6.1-20190907/Ada95/configure	2019-09-07 23:37:18.000000000 +0000
230@@ -1,7 +1,7 @@
231 #! /bin/sh
232-# From configure.in Revision: 1.71 .
233+# From configure.in Revision: 1.72 .
234 # Guess values for system-dependent variables and create Makefiles.
235-# Generated by Autoconf 2.52.20190828.
236+# Generated by Autoconf 2.52.20190901.
237 #
238 # Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001
239 # Free Software Foundation, Inc.
240@@ -748,6 +748,7 @@
241   --with-ada-include=DIR  Ada includes are in DIR (default: PREFIX/share/ada/adainclude)
242   --with-ada-objects=DIR  Ada objects are in DIR (default: PREFIX/lib/ada/adalib)
243   --with-ada-sharedlib=soname build shared-library (requires GNAT projects)
244+  --with-ada-libname=XXX  override default Ada library-name
245
246 Some influential environment variables:
247   CC          C compiler command
248@@ -817,7 +818,7 @@
249 running configure, to aid debugging if configure makes a mistake.
250
251 It was created by $as_me, which was
252-generated by GNU Autoconf 2.52.20190828.  Invocation command line was
253+generated by GNU Autoconf 2.52.20190901.  Invocation command line was
254
255   $ $0 $@
256
257@@ -941,7 +942,7 @@
258 fi
259 for ac_site_file in $CONFIG_SITE; do
260   if test -r "$ac_site_file"; then
261-    { echo "$as_me:944: loading site script $ac_site_file" >&5
262+    { echo "$as_me:945: loading site script $ac_site_file" >&5
263 echo "$as_me: loading site script $ac_site_file" >&6;}
264     cat "$ac_site_file" >&5
265     . "$ac_site_file"
266@@ -952,7 +953,7 @@
267   # Some versions of bash will fail to source /dev/null (special
268   # files actually), so we avoid doing that.
269   if test -f "$cache_file"; then
270-    { echo "$as_me:955: loading cache $cache_file" >&5
271+    { echo "$as_me:956: loading cache $cache_file" >&5
272 echo "$as_me: loading cache $cache_file" >&6;}
273     case $cache_file in
274       [\\/]* | ?:[\\/]* ) . $cache_file;;
275@@ -960,7 +961,7 @@
276     esac
277   fi
278 else
279-  { echo "$as_me:963: creating cache $cache_file" >&5
280+  { echo "$as_me:964: creating cache $cache_file" >&5
281 echo "$as_me: creating cache $cache_file" >&6;}
282   >$cache_file
283 fi
284@@ -976,21 +977,21 @@
285   eval ac_new_val="\$ac_env_${ac_var}_value"
286   case $ac_old_set,$ac_new_set in
287     set,)
288-      { echo "$as_me:979: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
289+      { echo "$as_me:980: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
290 echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
291       ac_cache_corrupted=: ;;
292     ,set)
293-      { echo "$as_me:983: error: \`$ac_var' was not set in the previous run" >&5
294+      { echo "$as_me:984: error: \`$ac_var' was not set in the previous run" >&5
295 echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
296       ac_cache_corrupted=: ;;
297     ,);;
298     *)
299       if test "x$ac_old_val" != "x$ac_new_val"; then
300-        { echo "$as_me:989: error: \`$ac_var' has changed since the previous run:" >&5
301+        { echo "$as_me:990: error: \`$ac_var' has changed since the previous run:" >&5
302 echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
303-        { echo "$as_me:991:   former value:  $ac_old_val" >&5
304+        { echo "$as_me:992:   former value:  $ac_old_val" >&5
305 echo "$as_me:   former value:  $ac_old_val" >&2;}
306-        { echo "$as_me:993:   current value: $ac_new_val" >&5
307+        { echo "$as_me:994:   current value: $ac_new_val" >&5
308 echo "$as_me:   current value: $ac_new_val" >&2;}
309         ac_cache_corrupted=:
310       fi;;
311@@ -1009,9 +1010,9 @@
312   fi
313 done
314 if $ac_cache_corrupted; then
315-  { echo "$as_me:1012: error: changes in the environment can compromise the build" >&5
316+  { echo "$as_me:1013: error: changes in the environment can compromise the build" >&5
317 echo "$as_me: error: changes in the environment can compromise the build" >&2;}
318-  { { echo "$as_me:1014: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5
319+  { { echo "$as_me:1015: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5
320 echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;}
321    { (exit 1); exit 1; }; }
322 fi
323@@ -1032,10 +1033,10 @@
324 echo "#! $SHELL" >conftest.sh
325 echo  "exit 0"   >>conftest.sh
326 chmod +x conftest.sh
327-if { (echo "$as_me:1035: PATH=\".;.\"; conftest.sh") >&5
328+if { (echo "$as_me:1036: PATH=\".;.\"; conftest.sh") >&5
329   (PATH=".;."; conftest.sh) 2>&5
330   ac_status=$?
331-  echo "$as_me:1038: \$? = $ac_status" >&5
332+  echo "$as_me:1039: \$? = $ac_status" >&5
333   (exit $ac_status); }; then
334   ac_path_separator=';'
335 else
336@@ -1065,7 +1066,7 @@
337   fi
338 done
339 if test -z "$ac_aux_dir"; then
340-  { { echo "$as_me:1068: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5
341+  { { echo "$as_me:1069: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5
342 echo "$as_me: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&2;}
343    { (exit 1); exit 1; }; }
344 fi
345@@ -1075,11 +1076,11 @@
346
347 # Make sure we can run config.sub.
348 $ac_config_sub sun4 >/dev/null 2>&1 ||
349-  { { echo "$as_me:1078: error: cannot run $ac_config_sub" >&5
350+  { { echo "$as_me:1079: error: cannot run $ac_config_sub" >&5
351 echo "$as_me: error: cannot run $ac_config_sub" >&2;}
352    { (exit 1); exit 1; }; }
353
354-echo "$as_me:1082: checking build system type" >&5
355+echo "$as_me:1083: checking build system type" >&5
356 echo $ECHO_N "checking build system type... $ECHO_C" >&6
357 if test "${ac_cv_build+set}" = set; then
358   echo $ECHO_N "(cached) $ECHO_C" >&6
359@@ -1088,23 +1089,23 @@
360 test -z "$ac_cv_build_alias" &&
361   ac_cv_build_alias=`$ac_config_guess`
362 test -z "$ac_cv_build_alias" &&
363-  { { echo "$as_me:1091: error: cannot guess build type; you must specify one" >&5
364+  { { echo "$as_me:1092: error: cannot guess build type; you must specify one" >&5
365 echo "$as_me: error: cannot guess build type; you must specify one" >&2;}
366    { (exit 1); exit 1; }; }
367 ac_cv_build=`$ac_config_sub $ac_cv_build_alias` ||
368-  { { echo "$as_me:1095: error: $ac_config_sub $ac_cv_build_alias failed." >&5
369+  { { echo "$as_me:1096: error: $ac_config_sub $ac_cv_build_alias failed." >&5
370 echo "$as_me: error: $ac_config_sub $ac_cv_build_alias failed." >&2;}
371    { (exit 1); exit 1; }; }
372
373 fi
374-echo "$as_me:1100: result: $ac_cv_build" >&5
375+echo "$as_me:1101: result: $ac_cv_build" >&5
376 echo "${ECHO_T}$ac_cv_build" >&6
377 build=$ac_cv_build
378 build_cpu=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
379 build_vendor=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
380 build_os=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
381
382-echo "$as_me:1107: checking host system type" >&5
383+echo "$as_me:1108: checking host system type" >&5
384 echo $ECHO_N "checking host system type... $ECHO_C" >&6
385 if test "${ac_cv_host+set}" = set; then
386   echo $ECHO_N "(cached) $ECHO_C" >&6
387@@ -1113,12 +1114,12 @@
388 test -z "$ac_cv_host_alias" &&
389   ac_cv_host_alias=$ac_cv_build_alias
390 ac_cv_host=`$ac_config_sub $ac_cv_host_alias` ||
391-  { { echo "$as_me:1116: error: $ac_config_sub $ac_cv_host_alias failed" >&5
392+  { { echo "$as_me:1117: error: $ac_config_sub $ac_cv_host_alias failed" >&5
393 echo "$as_me: error: $ac_config_sub $ac_cv_host_alias failed" >&2;}
394    { (exit 1); exit 1; }; }
395
396 fi
397-echo "$as_me:1121: result: $ac_cv_host" >&5
398+echo "$as_me:1122: result: $ac_cv_host" >&5
399 echo "${ECHO_T}$ac_cv_host" >&6
400 host=$ac_cv_host
401 host_cpu=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
402@@ -1126,7 +1127,7 @@
403 host_os=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
404
405 if test -f $srcdir/config.guess || test -f $ac_aux_dir/config.guess ; then
406-	echo "$as_me:1129: checking target system type" >&5
407+	echo "$as_me:1130: checking target system type" >&5
408 echo $ECHO_N "checking target system type... $ECHO_C" >&6
409 if test "${ac_cv_target+set}" = set; then
410   echo $ECHO_N "(cached) $ECHO_C" >&6
411@@ -1135,12 +1136,12 @@
412 test "x$ac_cv_target_alias" = "x" &&
413   ac_cv_target_alias=$ac_cv_host_alias
414 ac_cv_target=`$ac_config_sub $ac_cv_target_alias` ||
415-  { { echo "$as_me:1138: error: $ac_config_sub $ac_cv_target_alias failed" >&5
416+  { { echo "$as_me:1139: error: $ac_config_sub $ac_cv_target_alias failed" >&5
417 echo "$as_me: error: $ac_config_sub $ac_cv_target_alias failed" >&2;}
418    { (exit 1); exit 1; }; }
419
420 fi
421-echo "$as_me:1143: result: $ac_cv_target" >&5
422+echo "$as_me:1144: result: $ac_cv_target" >&5
423 echo "${ECHO_T}$ac_cv_target" >&6
424 target=$ac_cv_target
425 target_cpu=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
426@@ -1172,13 +1173,13 @@
427 fi
428
429 test -z "$system_name" && system_name="$cf_cv_system_name"
430-test -n "$cf_cv_system_name" && echo "$as_me:1175: result: Configuring for $cf_cv_system_name" >&5
431+test -n "$cf_cv_system_name" && echo "$as_me:1176: result: Configuring for $cf_cv_system_name" >&5
432 echo "${ECHO_T}Configuring for $cf_cv_system_name" >&6
433
434 if test ".$system_name" != ".$cf_cv_system_name" ; then
435-	echo "$as_me:1179: result: Cached system name ($system_name) does not agree with actual ($cf_cv_system_name)" >&5
436+	echo "$as_me:1180: result: Cached system name ($system_name) does not agree with actual ($cf_cv_system_name)" >&5
437 echo "${ECHO_T}Cached system name ($system_name) does not agree with actual ($cf_cv_system_name)" >&6
438-	{ { echo "$as_me:1181: error: \"Please remove config.cache and try again.\"" >&5
439+	{ { echo "$as_me:1182: error: \"Please remove config.cache and try again.\"" >&5
440 echo "$as_me: error: \"Please remove config.cache and try again.\"" >&2;}
441    { (exit 1); exit 1; }; }
442 fi
443@@ -1186,7 +1187,7 @@
444 # Check whether --with-system-type or --without-system-type was given.
445 if test "${with_system_type+set}" = set; then
446   withval="$with_system_type"
447-  { echo "$as_me:1189: WARNING: overriding system type to $withval" >&5
448+  { echo "$as_me:1190: WARNING: overriding system type to $withval" >&5
449 echo "$as_me: WARNING: overriding system type to $withval" >&2;}
450 	cf_cv_system_name=$withval
451 	host_os=$withval
452@@ -1198,7 +1199,7 @@
453
454 ###	Default install-location
455
456-echo "$as_me:1201: checking for prefix" >&5
457+echo "$as_me:1202: checking for prefix" >&5
458 echo $ECHO_N "checking for prefix... $ECHO_C" >&6
459 if test "x$prefix" = "xNONE" ; then
460 	case "$cf_cv_system_name" in
461@@ -1210,11 +1211,11 @@
462 		;;
463 	esac
464 fi
465-echo "$as_me:1213: result: $prefix" >&5
466+echo "$as_me:1214: result: $prefix" >&5
467 echo "${ECHO_T}$prefix" >&6
468
469 if test "x$prefix" = "xNONE" ; then
470-echo "$as_me:1217: checking for default include-directory" >&5
471+echo "$as_me:1218: checking for default include-directory" >&5
472 echo $ECHO_N "checking for default include-directory... $ECHO_C" >&6
473 test -n "$verbose" && echo 1>&6
474 for cf_symbol in \
475@@ -1237,7 +1238,7 @@
476 	fi
477 	test -n "$verbose"  && echo "	tested $cf_dir" 1>&6
478 done
479-echo "$as_me:1240: result: $includedir" >&5
480+echo "$as_me:1241: result: $includedir" >&5
481 echo "${ECHO_T}$includedir" >&6
482 fi
483
484@@ -1254,7 +1255,7 @@
485   do
486     # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
487 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
488-echo "$as_me:1257: checking for $ac_word" >&5
489+echo "$as_me:1258: checking for $ac_word" >&5
490 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
491 if test "${ac_cv_prog_CC+set}" = set; then
492   echo $ECHO_N "(cached) $ECHO_C" >&6
493@@ -1269,7 +1270,7 @@
494   test -z "$ac_dir" && ac_dir=.
495   $as_executable_p "$ac_dir/$ac_word" || continue
496 ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
497-echo "$as_me:1272: found $ac_dir/$ac_word" >&5
498+echo "$as_me:1273: found $ac_dir/$ac_word" >&5
499 break
500 done
501
502@@ -1277,10 +1278,10 @@
503 fi
504 CC=$ac_cv_prog_CC
505 if test -n "$CC"; then
506-  echo "$as_me:1280: result: $CC" >&5
507+  echo "$as_me:1281: result: $CC" >&5
508 echo "${ECHO_T}$CC" >&6
509 else
510-  echo "$as_me:1283: result: no" >&5
511+  echo "$as_me:1284: result: no" >&5
512 echo "${ECHO_T}no" >&6
513 fi
514
515@@ -1293,7 +1294,7 @@
516 do
517   # Extract the first word of "$ac_prog", so it can be a program name with args.
518 set dummy $ac_prog; ac_word=$2
519-echo "$as_me:1296: checking for $ac_word" >&5
520+echo "$as_me:1297: checking for $ac_word" >&5
521 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
522 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
523   echo $ECHO_N "(cached) $ECHO_C" >&6
524@@ -1308,7 +1309,7 @@
525   test -z "$ac_dir" && ac_dir=.
526   $as_executable_p "$ac_dir/$ac_word" || continue
527 ac_cv_prog_ac_ct_CC="$ac_prog"
528-echo "$as_me:1311: found $ac_dir/$ac_word" >&5
529+echo "$as_me:1312: found $ac_dir/$ac_word" >&5
530 break
531 done
532
533@@ -1316,10 +1317,10 @@
534 fi
535 ac_ct_CC=$ac_cv_prog_ac_ct_CC
536 if test -n "$ac_ct_CC"; then
537-  echo "$as_me:1319: result: $ac_ct_CC" >&5
538+  echo "$as_me:1320: result: $ac_ct_CC" >&5
539 echo "${ECHO_T}$ac_ct_CC" >&6
540 else
541-  echo "$as_me:1322: result: no" >&5
542+  echo "$as_me:1323: result: no" >&5
543 echo "${ECHO_T}no" >&6
544 fi
545
546@@ -1329,32 +1330,32 @@
547   CC=$ac_ct_CC
548 fi
549
550-test -z "$CC" && { { echo "$as_me:1332: error: no acceptable cc found in \$PATH" >&5
551+test -z "$CC" && { { echo "$as_me:1333: error: no acceptable cc found in \$PATH" >&5
552 echo "$as_me: error: no acceptable cc found in \$PATH" >&2;}
553    { (exit 1); exit 1; }; }
554
555 # Provide some information about the compiler.
556-echo "$as_me:1337:" \
557+echo "$as_me:1338:" \
558      "checking for C compiler version" >&5
559 ac_compiler=`set X $ac_compile; echo $2`
560-{ (eval echo "$as_me:1340: \"$ac_compiler --version </dev/null >&5\"") >&5
561+{ (eval echo "$as_me:1341: \"$ac_compiler --version </dev/null >&5\"") >&5
562   (eval $ac_compiler --version </dev/null >&5) 2>&5
563   ac_status=$?
564-  echo "$as_me:1343: \$? = $ac_status" >&5
565+  echo "$as_me:1344: \$? = $ac_status" >&5
566   (exit $ac_status); }
567-{ (eval echo "$as_me:1345: \"$ac_compiler -v </dev/null >&5\"") >&5
568+{ (eval echo "$as_me:1346: \"$ac_compiler -v </dev/null >&5\"") >&5
569   (eval $ac_compiler -v </dev/null >&5) 2>&5
570   ac_status=$?
571-  echo "$as_me:1348: \$? = $ac_status" >&5
572+  echo "$as_me:1349: \$? = $ac_status" >&5
573   (exit $ac_status); }
574-{ (eval echo "$as_me:1350: \"$ac_compiler -V </dev/null >&5\"") >&5
575+{ (eval echo "$as_me:1351: \"$ac_compiler -V </dev/null >&5\"") >&5
576   (eval $ac_compiler -V </dev/null >&5) 2>&5
577   ac_status=$?
578-  echo "$as_me:1353: \$? = $ac_status" >&5
579+  echo "$as_me:1354: \$? = $ac_status" >&5
580   (exit $ac_status); }
581
582 cat >conftest.$ac_ext <<_ACEOF
583-#line 1357 "configure"
584+#line 1358 "configure"
585 #include "confdefs.h"
586
587 int
588@@ -1370,13 +1371,13 @@
589 # Try to create an executable without -o first, disregard a.out.
590 # It will help us diagnose broken compilers, and finding out an intuition
591 # of exeext.
592-echo "$as_me:1373: checking for C compiler default output" >&5
593+echo "$as_me:1374: checking for C compiler default output" >&5
594 echo $ECHO_N "checking for C compiler default output... $ECHO_C" >&6
595 ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
596-if { (eval echo "$as_me:1376: \"$ac_link_default\"") >&5
597+if { (eval echo "$as_me:1377: \"$ac_link_default\"") >&5
598   (eval $ac_link_default) 2>&5
599   ac_status=$?
600-  echo "$as_me:1379: \$? = $ac_status" >&5
601+  echo "$as_me:1380: \$? = $ac_status" >&5
602   (exit $ac_status); }; then
603   # Find the output, starting from the most likely.  This scheme is
604 # not robust to junk in `.', hence go to wildcards (a.*) only as a last
605@@ -1399,34 +1400,34 @@
606 else
607   echo "$as_me: failed program was:" >&5
608 cat conftest.$ac_ext >&5
609-{ { echo "$as_me:1402: error: C compiler cannot create executables" >&5
610+{ { echo "$as_me:1403: error: C compiler cannot create executables" >&5
611 echo "$as_me: error: C compiler cannot create executables" >&2;}
612    { (exit 77); exit 77; }; }
613 fi
614
615 ac_exeext=$ac_cv_exeext
616-echo "$as_me:1408: result: $ac_file" >&5
617+echo "$as_me:1409: result: $ac_file" >&5
618 echo "${ECHO_T}$ac_file" >&6
619
620 # Check the compiler produces executables we can run.  If not, either
621 # the compiler is broken, or we cross compile.
622-echo "$as_me:1413: checking whether the C compiler works" >&5
623+echo "$as_me:1414: checking whether the C compiler works" >&5
624 echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6
625 # FIXME: These cross compiler hacks should be removed for Autoconf 3.0
626 # If not cross compiling, check that we can run a simple program.
627 if test "$cross_compiling" != yes; then
628   if { ac_try='./$ac_file'
629-  { (eval echo "$as_me:1419: \"$ac_try\"") >&5
630+  { (eval echo "$as_me:1420: \"$ac_try\"") >&5
631   (eval $ac_try) 2>&5
632   ac_status=$?
633-  echo "$as_me:1422: \$? = $ac_status" >&5
634+  echo "$as_me:1423: \$? = $ac_status" >&5
635   (exit $ac_status); }; }; then
636     cross_compiling=no
637   else
638     if test "$cross_compiling" = maybe; then
639 	cross_compiling=yes
640     else
641-	{ { echo "$as_me:1429: error: cannot run C compiled programs.
642+	{ { echo "$as_me:1430: error: cannot run C compiled programs.
643 If you meant to cross compile, use \`--host'." >&5
644 echo "$as_me: error: cannot run C compiled programs.
645 If you meant to cross compile, use \`--host'." >&2;}
646@@ -1434,24 +1435,24 @@
647     fi
648   fi
649 fi
650-echo "$as_me:1437: result: yes" >&5
651+echo "$as_me:1438: result: yes" >&5
652 echo "${ECHO_T}yes" >&6
653
654 rm -f a.out a.exe conftest$ac_cv_exeext
655 ac_clean_files=$ac_clean_files_save
656 # Check the compiler produces executables we can run.  If not, either
657 # the compiler is broken, or we cross compile.
658-echo "$as_me:1444: checking whether we are cross compiling" >&5
659+echo "$as_me:1445: checking whether we are cross compiling" >&5
660 echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6
661-echo "$as_me:1446: result: $cross_compiling" >&5
662+echo "$as_me:1447: result: $cross_compiling" >&5
663 echo "${ECHO_T}$cross_compiling" >&6
664
665-echo "$as_me:1449: checking for executable suffix" >&5
666+echo "$as_me:1450: checking for executable suffix" >&5
667 echo $ECHO_N "checking for executable suffix... $ECHO_C" >&6
668-if { (eval echo "$as_me:1451: \"$ac_link\"") >&5
669+if { (eval echo "$as_me:1452: \"$ac_link\"") >&5
670   (eval $ac_link) 2>&5
671   ac_status=$?
672-  echo "$as_me:1454: \$? = $ac_status" >&5
673+  echo "$as_me:1455: \$? = $ac_status" >&5
674   (exit $ac_status); }; then
675   # If both `conftest.exe' and `conftest' are `present' (well, observable)
676 # catch `conftest.exe'.  For instance with Cygwin, `ls conftest' will
677@@ -1467,25 +1468,25 @@
678   esac
679 done
680 else
681-  { { echo "$as_me:1470: error: cannot compute EXEEXT: cannot compile and link" >&5
682+  { { echo "$as_me:1471: error: cannot compute EXEEXT: cannot compile and link" >&5
683 echo "$as_me: error: cannot compute EXEEXT: cannot compile and link" >&2;}
684    { (exit 1); exit 1; }; }
685 fi
686
687 rm -f conftest$ac_cv_exeext
688-echo "$as_me:1476: result: $ac_cv_exeext" >&5
689+echo "$as_me:1477: result: $ac_cv_exeext" >&5
690 echo "${ECHO_T}$ac_cv_exeext" >&6
691
692 rm -f conftest.$ac_ext
693 EXEEXT=$ac_cv_exeext
694 ac_exeext=$EXEEXT
695-echo "$as_me:1482: checking for object suffix" >&5
696+echo "$as_me:1483: checking for object suffix" >&5
697 echo $ECHO_N "checking for object suffix... $ECHO_C" >&6
698 if test "${ac_cv_objext+set}" = set; then
699   echo $ECHO_N "(cached) $ECHO_C" >&6
700 else
701   cat >conftest.$ac_ext <<_ACEOF
702-#line 1488 "configure"
703+#line 1489 "configure"
704 #include "confdefs.h"
705
706 int
707@@ -1497,10 +1498,10 @@
708 }
709 _ACEOF
710 rm -f conftest.o conftest.obj
711-if { (eval echo "$as_me:1500: \"$ac_compile\"") >&5
712+if { (eval echo "$as_me:1501: \"$ac_compile\"") >&5
713   (eval $ac_compile) 2>&5
714   ac_status=$?
715-  echo "$as_me:1503: \$? = $ac_status" >&5
716+  echo "$as_me:1504: \$? = $ac_status" >&5
717   (exit $ac_status); }; then
718   for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do
719   case $ac_file in
720@@ -1512,24 +1513,24 @@
721 else
722   echo "$as_me: failed program was:" >&5
723 cat conftest.$ac_ext >&5
724-{ { echo "$as_me:1515: error: cannot compute OBJEXT: cannot compile" >&5
725+{ { echo "$as_me:1516: error: cannot compute OBJEXT: cannot compile" >&5
726 echo "$as_me: error: cannot compute OBJEXT: cannot compile" >&2;}
727    { (exit 1); exit 1; }; }
728 fi
729
730 rm -f conftest.$ac_cv_objext conftest.$ac_ext
731 fi
732-echo "$as_me:1522: result: $ac_cv_objext" >&5
733+echo "$as_me:1523: result: $ac_cv_objext" >&5
734 echo "${ECHO_T}$ac_cv_objext" >&6
735 OBJEXT=$ac_cv_objext
736 ac_objext=$OBJEXT
737-echo "$as_me:1526: checking whether we are using the GNU C compiler" >&5
738+echo "$as_me:1527: checking whether we are using the GNU C compiler" >&5
739 echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6
740 if test "${ac_cv_c_compiler_gnu+set}" = set; then
741   echo $ECHO_N "(cached) $ECHO_C" >&6
742 else
743   cat >conftest.$ac_ext <<_ACEOF
744-#line 1532 "configure"
745+#line 1533 "configure"
746 #include "confdefs.h"
747
748 int
749@@ -1544,16 +1545,16 @@
750 }
751 _ACEOF
752 rm -f conftest.$ac_objext
753-if { (eval echo "$as_me:1547: \"$ac_compile\"") >&5
754+if { (eval echo "$as_me:1548: \"$ac_compile\"") >&5
755   (eval $ac_compile) 2>&5
756   ac_status=$?
757-  echo "$as_me:1550: \$? = $ac_status" >&5
758+  echo "$as_me:1551: \$? = $ac_status" >&5
759   (exit $ac_status); } &&
760          { ac_try='test -s conftest.$ac_objext'
761-  { (eval echo "$as_me:1553: \"$ac_try\"") >&5
762+  { (eval echo "$as_me:1554: \"$ac_try\"") >&5
763   (eval $ac_try) 2>&5
764   ac_status=$?
765-  echo "$as_me:1556: \$? = $ac_status" >&5
766+  echo "$as_me:1557: \$? = $ac_status" >&5
767   (exit $ac_status); }; }; then
768   ac_compiler_gnu=yes
769 else
770@@ -1565,19 +1566,19 @@
771 ac_cv_c_compiler_gnu=$ac_compiler_gnu
772
773 fi
774-echo "$as_me:1568: result: $ac_cv_c_compiler_gnu" >&5
775+echo "$as_me:1569: result: $ac_cv_c_compiler_gnu" >&5
776 echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6
777 GCC=`test $ac_compiler_gnu = yes && echo yes`
778 ac_test_CFLAGS=${CFLAGS+set}
779 ac_save_CFLAGS=$CFLAGS
780 CFLAGS="-g"
781-echo "$as_me:1574: checking whether $CC accepts -g" >&5
782+echo "$as_me:1575: checking whether $CC accepts -g" >&5
783 echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6
784 if test "${ac_cv_prog_cc_g+set}" = set; then
785   echo $ECHO_N "(cached) $ECHO_C" >&6
786 else
787   cat >conftest.$ac_ext <<_ACEOF
788-#line 1580 "configure"
789+#line 1581 "configure"
790 #include "confdefs.h"
791
792 int
793@@ -1589,16 +1590,16 @@
794 }
795 _ACEOF
796 rm -f conftest.$ac_objext
797-if { (eval echo "$as_me:1592: \"$ac_compile\"") >&5
798+if { (eval echo "$as_me:1593: \"$ac_compile\"") >&5
799   (eval $ac_compile) 2>&5
800   ac_status=$?
801-  echo "$as_me:1595: \$? = $ac_status" >&5
802+  echo "$as_me:1596: \$? = $ac_status" >&5
803   (exit $ac_status); } &&
804          { ac_try='test -s conftest.$ac_objext'
805-  { (eval echo "$as_me:1598: \"$ac_try\"") >&5
806+  { (eval echo "$as_me:1599: \"$ac_try\"") >&5
807   (eval $ac_try) 2>&5
808   ac_status=$?
809-  echo "$as_me:1601: \$? = $ac_status" >&5
810+  echo "$as_me:1602: \$? = $ac_status" >&5
811   (exit $ac_status); }; }; then
812   ac_cv_prog_cc_g=yes
813 else
814@@ -1608,7 +1609,7 @@
815 fi
816 rm -f conftest.$ac_objext conftest.$ac_ext
817 fi
818-echo "$as_me:1611: result: $ac_cv_prog_cc_g" >&5
819+echo "$as_me:1612: result: $ac_cv_prog_cc_g" >&5
820 echo "${ECHO_T}$ac_cv_prog_cc_g" >&6
821 if test "$ac_test_CFLAGS" = set; then
822   CFLAGS=$ac_save_CFLAGS
823@@ -1635,16 +1636,16 @@
824 #endif
825 _ACEOF
826 rm -f conftest.$ac_objext
827-if { (eval echo "$as_me:1638: \"$ac_compile\"") >&5
828+if { (eval echo "$as_me:1639: \"$ac_compile\"") >&5
829   (eval $ac_compile) 2>&5
830   ac_status=$?
831-  echo "$as_me:1641: \$? = $ac_status" >&5
832+  echo "$as_me:1642: \$? = $ac_status" >&5
833   (exit $ac_status); } &&
834          { ac_try='test -s conftest.$ac_objext'
835-  { (eval echo "$as_me:1644: \"$ac_try\"") >&5
836+  { (eval echo "$as_me:1645: \"$ac_try\"") >&5
837   (eval $ac_try) 2>&5
838   ac_status=$?
839-  echo "$as_me:1647: \$? = $ac_status" >&5
840+  echo "$as_me:1648: \$? = $ac_status" >&5
841   (exit $ac_status); }; }; then
842   for ac_declaration in \
843    ''\
844@@ -1656,7 +1657,7 @@
845    'void exit (int);'
846 do
847   cat >conftest.$ac_ext <<_ACEOF
848-#line 1659 "configure"
849+#line 1660 "configure"
850 #include "confdefs.h"
851 #include <stdlib.h>
852 $ac_declaration
853@@ -1669,16 +1670,16 @@
854 }
855 _ACEOF
856 rm -f conftest.$ac_objext
857-if { (eval echo "$as_me:1672: \"$ac_compile\"") >&5
858+if { (eval echo "$as_me:1673: \"$ac_compile\"") >&5
859   (eval $ac_compile) 2>&5
860   ac_status=$?
861-  echo "$as_me:1675: \$? = $ac_status" >&5
862+  echo "$as_me:1676: \$? = $ac_status" >&5
863   (exit $ac_status); } &&
864          { ac_try='test -s conftest.$ac_objext'
865-  { (eval echo "$as_me:1678: \"$ac_try\"") >&5
866+  { (eval echo "$as_me:1679: \"$ac_try\"") >&5
867   (eval $ac_try) 2>&5
868   ac_status=$?
869-  echo "$as_me:1681: \$? = $ac_status" >&5
870+  echo "$as_me:1682: \$? = $ac_status" >&5
871   (exit $ac_status); }; }; then
872   :
873 else
874@@ -1688,7 +1689,7 @@
875 fi
876 rm -f conftest.$ac_objext conftest.$ac_ext
877   cat >conftest.$ac_ext <<_ACEOF
878-#line 1691 "configure"
879+#line 1692 "configure"
880 #include "confdefs.h"
881 $ac_declaration
882 int
883@@ -1700,16 +1701,16 @@
884 }
885 _ACEOF
886 rm -f conftest.$ac_objext
887-if { (eval echo "$as_me:1703: \"$ac_compile\"") >&5
888+if { (eval echo "$as_me:1704: \"$ac_compile\"") >&5
889   (eval $ac_compile) 2>&5
890   ac_status=$?
891-  echo "$as_me:1706: \$? = $ac_status" >&5
892+  echo "$as_me:1707: \$? = $ac_status" >&5
893   (exit $ac_status); } &&
894          { ac_try='test -s conftest.$ac_objext'
895-  { (eval echo "$as_me:1709: \"$ac_try\"") >&5
896+  { (eval echo "$as_me:1710: \"$ac_try\"") >&5
897   (eval $ac_try) 2>&5
898   ac_status=$?
899-  echo "$as_me:1712: \$? = $ac_status" >&5
900+  echo "$as_me:1713: \$? = $ac_status" >&5
901   (exit $ac_status); }; }; then
902   break
903 else
904@@ -1739,15 +1740,117 @@
905
906 GCC_VERSION=none
907 if test "$GCC" = yes ; then
908-	echo "$as_me:1742: checking version of $CC" >&5
909+	echo "$as_me:1743: checking version of $CC" >&5
910 echo $ECHO_N "checking version of $CC... $ECHO_C" >&6
911 	GCC_VERSION="`${CC} --version 2>/dev/null | sed -e '2,$d' -e 's/^.*(GCC[^)]*) //' -e 's/^.*(Debian[^)]*) //' -e 's/^[^0-9.]*//' -e 's/[^0-9.].*//'`"
912 	test -z "$GCC_VERSION" && GCC_VERSION=unknown
913-	echo "$as_me:1746: result: $GCC_VERSION" >&5
914+	echo "$as_me:1747: result: $GCC_VERSION" >&5
915 echo "${ECHO_T}$GCC_VERSION" >&6
916 fi
917
918-echo "$as_me:1750: checking for $CC option to accept ANSI C" >&5
919+INTEL_COMPILER=no
920+
921+if test "$GCC" = yes ; then
922+	case $host_os in
923+	(linux*|gnu*)
924+		echo "$as_me:1756: checking if this is really Intel C compiler" >&5
925+echo $ECHO_N "checking if this is really Intel C compiler... $ECHO_C" >&6
926+		cf_save_CFLAGS="$CFLAGS"
927+		CFLAGS="$CFLAGS -no-gcc"
928+		cat >conftest.$ac_ext <<_ACEOF
929+#line 1761 "configure"
930+#include "confdefs.h"
931+
932+int
933+main (void)
934+{
935+
936+#ifdef __INTEL_COMPILER
937+#else
938+make an error
939+#endif
940+
941+  ;
942+  return 0;
943+}
944+_ACEOF
945+rm -f conftest.$ac_objext
946+if { (eval echo "$as_me:1778: \"$ac_compile\"") >&5
947+  (eval $ac_compile) 2>&5
948+  ac_status=$?
949+  echo "$as_me:1781: \$? = $ac_status" >&5
950+  (exit $ac_status); } &&
951+         { ac_try='test -s conftest.$ac_objext'
952+  { (eval echo "$as_me:1784: \"$ac_try\"") >&5
953+  (eval $ac_try) 2>&5
954+  ac_status=$?
955+  echo "$as_me:1787: \$? = $ac_status" >&5
956+  (exit $ac_status); }; }; then
957+  INTEL_COMPILER=yes
958+cf_save_CFLAGS="$cf_save_CFLAGS -we147"
959+
960+else
961+  echo "$as_me: failed program was:" >&5
962+cat conftest.$ac_ext >&5
963+fi
964+rm -f conftest.$ac_objext conftest.$ac_ext
965+		CFLAGS="$cf_save_CFLAGS"
966+		echo "$as_me:1798: result: $INTEL_COMPILER" >&5
967+echo "${ECHO_T}$INTEL_COMPILER" >&6
968+		;;
969+	esac
970+fi
971+
972+CLANG_COMPILER=no
973+
974+if test "$GCC" = yes ; then
975+	echo "$as_me:1807: checking if this is really Clang C compiler" >&5
976+echo $ECHO_N "checking if this is really Clang C compiler... $ECHO_C" >&6
977+	cf_save_CFLAGS="$CFLAGS"
978+	CFLAGS="$CFLAGS -Qunused-arguments"
979+	cat >conftest.$ac_ext <<_ACEOF
980+#line 1812 "configure"
981+#include "confdefs.h"
982+
983+int
984+main (void)
985+{
986+
987+#ifdef __clang__
988+#else
989+make an error
990+#endif
991+
992+  ;
993+  return 0;
994+}
995+_ACEOF
996+rm -f conftest.$ac_objext
997+if { (eval echo "$as_me:1829: \"$ac_compile\"") >&5
998+  (eval $ac_compile) 2>&5
999+  ac_status=$?
1000+  echo "$as_me:1832: \$? = $ac_status" >&5
1001+  (exit $ac_status); } &&
1002+         { ac_try='test -s conftest.$ac_objext'
1003+  { (eval echo "$as_me:1835: \"$ac_try\"") >&5
1004+  (eval $ac_try) 2>&5
1005+  ac_status=$?
1006+  echo "$as_me:1838: \$? = $ac_status" >&5
1007+  (exit $ac_status); }; }; then
1008+  CLANG_COMPILER=yes
1009+cf_save_CFLAGS="$cf_save_CFLAGS -Qunused-arguments"
1010+
1011+else
1012+  echo "$as_me: failed program was:" >&5
1013+cat conftest.$ac_ext >&5
1014+fi
1015+rm -f conftest.$ac_objext conftest.$ac_ext
1016+	CFLAGS="$cf_save_CFLAGS"
1017+	echo "$as_me:1849: result: $CLANG_COMPILER" >&5
1018+echo "${ECHO_T}$CLANG_COMPILER" >&6
1019+fi
1020+
1021+echo "$as_me:1853: checking for $CC option to accept ANSI C" >&5
1022 echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6
1023 if test "${ac_cv_prog_cc_stdc+set}" = set; then
1024   echo $ECHO_N "(cached) $ECHO_C" >&6
1025@@ -1755,7 +1858,7 @@
1026   ac_cv_prog_cc_stdc=no
1027 ac_save_CC=$CC
1028 cat >conftest.$ac_ext <<_ACEOF
1029-#line 1758 "configure"
1030+#line 1861 "configure"
1031 #include "confdefs.h"
1032 #include <stdarg.h>
1033 #include <stdio.h>
1034@@ -1804,16 +1907,16 @@
1035 do
1036   CC="$ac_save_CC $ac_arg"
1037   rm -f conftest.$ac_objext
1038-if { (eval echo "$as_me:1807: \"$ac_compile\"") >&5
1039+if { (eval echo "$as_me:1910: \"$ac_compile\"") >&5
1040   (eval $ac_compile) 2>&5
1041   ac_status=$?
1042-  echo "$as_me:1810: \$? = $ac_status" >&5
1043+  echo "$as_me:1913: \$? = $ac_status" >&5
1044   (exit $ac_status); } &&
1045          { ac_try='test -s conftest.$ac_objext'
1046-  { (eval echo "$as_me:1813: \"$ac_try\"") >&5
1047+  { (eval echo "$as_me:1916: \"$ac_try\"") >&5
1048   (eval $ac_try) 2>&5
1049   ac_status=$?
1050-  echo "$as_me:1816: \$? = $ac_status" >&5
1051+  echo "$as_me:1919: \$? = $ac_status" >&5
1052   (exit $ac_status); }; }; then
1053   ac_cv_prog_cc_stdc=$ac_arg
1054 break
1055@@ -1830,10 +1933,10 @@
1056
1057 case "x$ac_cv_prog_cc_stdc" in
1058   x|xno)
1059-    echo "$as_me:1833: result: none needed" >&5
1060+    echo "$as_me:1936: result: none needed" >&5
1061 echo "${ECHO_T}none needed" >&6 ;;
1062   *)
1063-    echo "$as_me:1836: result: $ac_cv_prog_cc_stdc" >&5
1064+    echo "$as_me:1939: result: $ac_cv_prog_cc_stdc" >&5
1065 echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6
1066     CC="$CC $ac_cv_prog_cc_stdc" ;;
1067 esac
1068@@ -1841,13 +1944,13 @@
1069 # This should have been defined by AC_PROG_CC
1070 : ${CC:=cc}
1071
1072-echo "$as_me:1844: checking \$CFLAGS variable" >&5
1073+echo "$as_me:1947: checking \$CFLAGS variable" >&5
1074 echo $ECHO_N "checking \$CFLAGS variable... $ECHO_C" >&6
1075 case "x$CFLAGS" in
1076 (*-[IUD]*)
1077-	echo "$as_me:1848: result: broken" >&5
1078+	echo "$as_me:1951: result: broken" >&5
1079 echo "${ECHO_T}broken" >&6
1080-	{ echo "$as_me:1850: WARNING: your environment uses the CFLAGS variable to hold CPPFLAGS options" >&5
1081+	{ echo "$as_me:1953: WARNING: your environment uses the CFLAGS variable to hold CPPFLAGS options" >&5
1082 echo "$as_me: WARNING: your environment uses the CFLAGS variable to hold CPPFLAGS options" >&2;}
1083 	cf_flags="$CFLAGS"
1084 	CFLAGS=
1085@@ -1955,18 +2058,18 @@
1086 	done
1087 	;;
1088 (*)
1089-	echo "$as_me:1958: result: ok" >&5
1090+	echo "$as_me:2061: result: ok" >&5
1091 echo "${ECHO_T}ok" >&6
1092 	;;
1093 esac
1094
1095-echo "$as_me:1963: checking \$CC variable" >&5
1096+echo "$as_me:2066: checking \$CC variable" >&5
1097 echo $ECHO_N "checking \$CC variable... $ECHO_C" >&6
1098 case "$CC" in
1099 (*[\ \	]-*)
1100-	echo "$as_me:1967: result: broken" >&5
1101+	echo "$as_me:2070: result: broken" >&5
1102 echo "${ECHO_T}broken" >&6
1103-	{ echo "$as_me:1969: WARNING: your environment uses the CC variable to hold CFLAGS/CPPFLAGS options" >&5
1104+	{ echo "$as_me:2072: WARNING: your environment uses the CC variable to hold CFLAGS/CPPFLAGS options" >&5
1105 echo "$as_me: WARNING: your environment uses the CC variable to hold CFLAGS/CPPFLAGS options" >&2;}
1106 	# humor him...
1107 	cf_prog=`echo "$CC" | sed -e 's/	/ /g' -e 's/[ ]* / /g' -e 's/[ ]*[ ]-[^ ].*//'`
1108@@ -2083,19 +2186,19 @@
1109 	done
1110 	test -n "$verbose" && echo "	resulting CC: '$CC'" 1>&6
1111
1112-echo "${as_me:-configure}:2086: testing resulting CC: '$CC' ..." 1>&5
1113+echo "${as_me:-configure}:2189: testing resulting CC: '$CC' ..." 1>&5
1114
1115 	test -n "$verbose" && echo "	resulting CFLAGS: '$CFLAGS'" 1>&6
1116
1117-echo "${as_me:-configure}:2090: testing resulting CFLAGS: '$CFLAGS' ..." 1>&5
1118+echo "${as_me:-configure}:2193: testing resulting CFLAGS: '$CFLAGS' ..." 1>&5
1119
1120 	test -n "$verbose" && echo "	resulting CPPFLAGS: '$CPPFLAGS'" 1>&6
1121
1122-echo "${as_me:-configure}:2094: testing resulting CPPFLAGS: '$CPPFLAGS' ..." 1>&5
1123+echo "${as_me:-configure}:2197: testing resulting CPPFLAGS: '$CPPFLAGS' ..." 1>&5
1124
1125 	;;
1126 (*)
1127-	echo "$as_me:2098: result: ok" >&5
1128+	echo "$as_me:2201: result: ok" >&5
1129 echo "${ECHO_T}ok" >&6
1130 	;;
1131 esac
1132@@ -2106,7 +2209,7 @@
1133 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
1134 ac_compiler_gnu=$ac_cv_c_compiler_gnu
1135 ac_main_return=return
1136-echo "$as_me:2109: checking how to run the C preprocessor" >&5
1137+echo "$as_me:2212: checking how to run the C preprocessor" >&5
1138 echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6
1139 # On Suns, sometimes $CPP names a directory.
1140 if test -n "$CPP" && test -d "$CPP"; then
1141@@ -2127,18 +2230,18 @@
1142   # On the NeXT, cc -E runs the code through the compiler's parser,
1143   # not just through cpp. "Syntax error" is here to catch this case.
1144   cat >conftest.$ac_ext <<_ACEOF
1145-#line 2130 "configure"
1146+#line 2233 "configure"
1147 #include "confdefs.h"
1148 #include <assert.h>
1149                      Syntax error
1150 _ACEOF
1151-if { (eval echo "$as_me:2135: \"$ac_cpp conftest.$ac_ext\"") >&5
1152+if { (eval echo "$as_me:2238: \"$ac_cpp conftest.$ac_ext\"") >&5
1153   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
1154   ac_status=$?
1155   egrep -v '^ *\+' conftest.er1 >conftest.err
1156   rm -f conftest.er1
1157   cat conftest.err >&5
1158-  echo "$as_me:2141: \$? = $ac_status" >&5
1159+  echo "$as_me:2244: \$? = $ac_status" >&5
1160   (exit $ac_status); } >/dev/null; then
1161   if test -s conftest.err; then
1162     ac_cpp_err=$ac_c_preproc_warn_flag
1163@@ -2161,17 +2264,17 @@
1164   # OK, works on sane cases.  Now check whether non-existent headers
1165   # can be detected and how.
1166   cat >conftest.$ac_ext <<_ACEOF
1167-#line 2164 "configure"
1168+#line 2267 "configure"
1169 #include "confdefs.h"
1170 #include <ac_nonexistent.h>
1171 _ACEOF
1172-if { (eval echo "$as_me:2168: \"$ac_cpp conftest.$ac_ext\"") >&5
1173+if { (eval echo "$as_me:2271: \"$ac_cpp conftest.$ac_ext\"") >&5
1174   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
1175   ac_status=$?
1176   egrep -v '^ *\+' conftest.er1 >conftest.err
1177   rm -f conftest.er1
1178   cat conftest.err >&5
1179-  echo "$as_me:2174: \$? = $ac_status" >&5
1180+  echo "$as_me:2277: \$? = $ac_status" >&5
1181   (exit $ac_status); } >/dev/null; then
1182   if test -s conftest.err; then
1183     ac_cpp_err=$ac_c_preproc_warn_flag
1184@@ -2208,7 +2311,7 @@
1185 else
1186   ac_cv_prog_CPP=$CPP
1187 fi
1188-echo "$as_me:2211: result: $CPP" >&5
1189+echo "$as_me:2314: result: $CPP" >&5
1190 echo "${ECHO_T}$CPP" >&6
1191 ac_preproc_ok=false
1192 for ac_c_preproc_warn_flag in '' yes
1193@@ -2218,18 +2321,18 @@
1194   # On the NeXT, cc -E runs the code through the compiler's parser,
1195   # not just through cpp. "Syntax error" is here to catch this case.
1196   cat >conftest.$ac_ext <<_ACEOF
1197-#line 2221 "configure"
1198+#line 2324 "configure"
1199 #include "confdefs.h"
1200 #include <assert.h>
1201                      Syntax error
1202 _ACEOF
1203-if { (eval echo "$as_me:2226: \"$ac_cpp conftest.$ac_ext\"") >&5
1204+if { (eval echo "$as_me:2329: \"$ac_cpp conftest.$ac_ext\"") >&5
1205   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
1206   ac_status=$?
1207   egrep -v '^ *\+' conftest.er1 >conftest.err
1208   rm -f conftest.er1
1209   cat conftest.err >&5
1210-  echo "$as_me:2232: \$? = $ac_status" >&5
1211+  echo "$as_me:2335: \$? = $ac_status" >&5
1212   (exit $ac_status); } >/dev/null; then
1213   if test -s conftest.err; then
1214     ac_cpp_err=$ac_c_preproc_warn_flag
1215@@ -2252,17 +2355,17 @@
1216   # OK, works on sane cases.  Now check whether non-existent headers
1217   # can be detected and how.
1218   cat >conftest.$ac_ext <<_ACEOF
1219-#line 2255 "configure"
1220+#line 2358 "configure"
1221 #include "confdefs.h"
1222 #include <ac_nonexistent.h>
1223 _ACEOF
1224-if { (eval echo "$as_me:2259: \"$ac_cpp conftest.$ac_ext\"") >&5
1225+if { (eval echo "$as_me:2362: \"$ac_cpp conftest.$ac_ext\"") >&5
1226   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
1227   ac_status=$?
1228   egrep -v '^ *\+' conftest.er1 >conftest.err
1229   rm -f conftest.er1
1230   cat conftest.err >&5
1231-  echo "$as_me:2265: \$? = $ac_status" >&5
1232+  echo "$as_me:2368: \$? = $ac_status" >&5
1233   (exit $ac_status); } >/dev/null; then
1234   if test -s conftest.err; then
1235     ac_cpp_err=$ac_c_preproc_warn_flag
1236@@ -2290,7 +2393,7 @@
1237 if $ac_preproc_ok; then
1238   :
1239 else
1240-  { { echo "$as_me:2293: error: C preprocessor \"$CPP\" fails sanity check" >&5
1241+  { { echo "$as_me:2396: error: C preprocessor \"$CPP\" fails sanity check" >&5
1242 echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check" >&2;}
1243    { (exit 1); exit 1; }; }
1244 fi
1245@@ -2303,14 +2406,14 @@
1246 ac_main_return=return
1247
1248 if test $ac_cv_c_compiler_gnu = yes; then
1249-    echo "$as_me:2306: checking whether $CC needs -traditional" >&5
1250+    echo "$as_me:2409: checking whether $CC needs -traditional" >&5
1251 echo $ECHO_N "checking whether $CC needs -traditional... $ECHO_C" >&6
1252 if test "${ac_cv_prog_gcc_traditional+set}" = set; then
1253   echo $ECHO_N "(cached) $ECHO_C" >&6
1254 else
1255     ac_pattern="Autoconf.*'x'"
1256   cat >conftest.$ac_ext <<_ACEOF
1257-#line 2313 "configure"
1258+#line 2416 "configure"
1259 #include "confdefs.h"
1260 #include <sgtty.h>
1261 int Autoconf = TIOCGETP;
1262@@ -2325,7 +2428,7 @@
1263
1264   if test $ac_cv_prog_gcc_traditional = no; then
1265     cat >conftest.$ac_ext <<_ACEOF
1266-#line 2328 "configure"
1267+#line 2431 "configure"
1268 #include "confdefs.h"
1269 #include <termio.h>
1270 int Autoconf = TCGETA;
1271@@ -2338,14 +2441,14 @@
1272
1273   fi
1274 fi
1275-echo "$as_me:2341: result: $ac_cv_prog_gcc_traditional" >&5
1276+echo "$as_me:2444: result: $ac_cv_prog_gcc_traditional" >&5
1277 echo "${ECHO_T}$ac_cv_prog_gcc_traditional" >&6
1278   if test $ac_cv_prog_gcc_traditional = yes; then
1279     CC="$CC -traditional"
1280   fi
1281 fi
1282
1283-echo "$as_me:2348: checking whether $CC understands -c and -o together" >&5
1284+echo "$as_me:2451: checking whether $CC understands -c and -o together" >&5
1285 echo $ECHO_N "checking whether $CC understands -c and -o together... $ECHO_C" >&6
1286 if test "${cf_cv_prog_CC_c_o+set}" = set; then
1287   echo $ECHO_N "(cached) $ECHO_C" >&6
1288@@ -2360,15 +2463,15 @@
1289 # We do the test twice because some compilers refuse to overwrite an
1290 # existing .o file with -o, though they will create one.
1291 ac_try='$CC $CFLAGS $CPPFLAGS -c conftest.$ac_ext -o conftest2.$ac_objext >&5'
1292-if { (eval echo "$as_me:2363: \"$ac_try\"") >&5
1293+if { (eval echo "$as_me:2466: \"$ac_try\"") >&5
1294   (eval $ac_try) 2>&5
1295   ac_status=$?
1296-  echo "$as_me:2366: \$? = $ac_status" >&5
1297+  echo "$as_me:2469: \$? = $ac_status" >&5
1298   (exit $ac_status); } &&
1299-  test -f conftest2.$ac_objext && { (eval echo "$as_me:2368: \"$ac_try\"") >&5
1300+  test -f conftest2.$ac_objext && { (eval echo "$as_me:2471: \"$ac_try\"") >&5
1301   (eval $ac_try) 2>&5
1302   ac_status=$?
1303-  echo "$as_me:2371: \$? = $ac_status" >&5
1304+  echo "$as_me:2474: \$? = $ac_status" >&5
1305   (exit $ac_status); };
1306 then
1307   eval cf_cv_prog_CC_c_o=yes
1308@@ -2379,10 +2482,10 @@
1309
1310 fi
1311 if test $cf_cv_prog_CC_c_o = yes; then
1312-  echo "$as_me:2382: result: yes" >&5
1313+  echo "$as_me:2485: result: yes" >&5
1314 echo "${ECHO_T}yes" >&6
1315 else
1316-  echo "$as_me:2385: result: no" >&5
1317+  echo "$as_me:2488: result: no" >&5
1318 echo "${ECHO_T}no" >&6
1319 fi
1320
1321@@ -2403,7 +2506,7 @@
1322 do
1323   # Extract the first word of "$ac_prog", so it can be a program name with args.
1324 set dummy $ac_prog; ac_word=$2
1325-echo "$as_me:2406: checking for $ac_word" >&5
1326+echo "$as_me:2509: checking for $ac_word" >&5
1327 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1328 if test "${ac_cv_prog_AWK+set}" = set; then
1329   echo $ECHO_N "(cached) $ECHO_C" >&6
1330@@ -2418,7 +2521,7 @@
1331   test -z "$ac_dir" && ac_dir=.
1332   $as_executable_p "$ac_dir/$ac_word" || continue
1333 ac_cv_prog_AWK="$ac_prog"
1334-echo "$as_me:2421: found $ac_dir/$ac_word" >&5
1335+echo "$as_me:2524: found $ac_dir/$ac_word" >&5
1336 break
1337 done
1338
1339@@ -2426,21 +2529,21 @@
1340 fi
1341 AWK=$ac_cv_prog_AWK
1342 if test -n "$AWK"; then
1343-  echo "$as_me:2429: result: $AWK" >&5
1344+  echo "$as_me:2532: result: $AWK" >&5
1345 echo "${ECHO_T}$AWK" >&6
1346 else
1347-  echo "$as_me:2432: result: no" >&5
1348+  echo "$as_me:2535: result: no" >&5
1349 echo "${ECHO_T}no" >&6
1350 fi
1351
1352   test -n "$AWK" && break
1353 done
1354
1355-test -z "$AWK" && { { echo "$as_me:2439: error: No awk program found" >&5
1356+test -z "$AWK" && { { echo "$as_me:2542: error: No awk program found" >&5
1357 echo "$as_me: error: No awk program found" >&2;}
1358    { (exit 1); exit 1; }; }
1359
1360-echo "$as_me:2443: checking for egrep" >&5
1361+echo "$as_me:2546: checking for egrep" >&5
1362 echo $ECHO_N "checking for egrep... $ECHO_C" >&6
1363 if test "${ac_cv_prog_egrep+set}" = set; then
1364   echo $ECHO_N "(cached) $ECHO_C" >&6
1365@@ -2450,11 +2553,11 @@
1366 		else ac_cv_prog_egrep='egrep'
1367 	fi
1368 fi
1369-echo "$as_me:2453: result: $ac_cv_prog_egrep" >&5
1370+echo "$as_me:2556: result: $ac_cv_prog_egrep" >&5
1371 echo "${ECHO_T}$ac_cv_prog_egrep" >&6
1372 	EGREP=$ac_cv_prog_egrep
1373
1374-	test -z "$EGREP" && { { echo "$as_me:2457: error: No egrep program found" >&5
1375+	test -z "$EGREP" && { { echo "$as_me:2560: error: No egrep program found" >&5
1376 echo "$as_me: error: No egrep program found" >&2;}
1377    { (exit 1); exit 1; }; }
1378
1379@@ -2470,7 +2573,7 @@
1380 # AFS /usr/afsws/bin/install, which mishandles nonexistent args
1381 # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
1382 # ./install, which can be erroneously created by make from ./install.sh.
1383-echo "$as_me:2473: checking for a BSD compatible install" >&5
1384+echo "$as_me:2576: checking for a BSD compatible install" >&5
1385 echo $ECHO_N "checking for a BSD compatible install... $ECHO_C" >&6
1386 if test -z "$INSTALL"; then
1387 if test "${ac_cv_path_install+set}" = set; then
1388@@ -2519,7 +2622,7 @@
1389     INSTALL=$ac_install_sh
1390   fi
1391 fi
1392-echo "$as_me:2522: result: $INSTALL" >&5
1393+echo "$as_me:2625: result: $INSTALL" >&5
1394 echo "${ECHO_T}$INSTALL" >&6
1395
1396 # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
1397@@ -2530,18 +2633,18 @@
1398
1399 test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
1400
1401-echo "$as_me:2533: checking whether ln -s works" >&5
1402+echo "$as_me:2636: checking whether ln -s works" >&5
1403 echo $ECHO_N "checking whether ln -s works... $ECHO_C" >&6
1404 LN_S=$as_ln_s
1405 if test "$LN_S" = "ln -s"; then
1406-  echo "$as_me:2537: result: yes" >&5
1407+  echo "$as_me:2640: result: yes" >&5
1408 echo "${ECHO_T}yes" >&6
1409 else
1410-  echo "$as_me:2540: result: no, using $LN_S" >&5
1411+  echo "$as_me:2643: result: no, using $LN_S" >&5
1412 echo "${ECHO_T}no, using $LN_S" >&6
1413 fi
1414
1415-echo "$as_me:2544: checking if $LN_S -f options work" >&5
1416+echo "$as_me:2647: checking if $LN_S -f options work" >&5
1417 echo $ECHO_N "checking if $LN_S -f options work... $ECHO_C" >&6
1418
1419 rm -f conf$$.src conf$$dst
1420@@ -2553,7 +2656,7 @@
1421 	cf_prog_ln_sf=no
1422 fi
1423 rm -f conf$$.dst conf$$src
1424-echo "$as_me:2556: result: $cf_prog_ln_sf" >&5
1425+echo "$as_me:2659: result: $cf_prog_ln_sf" >&5
1426 echo "${ECHO_T}$cf_prog_ln_sf" >&6
1427
1428 test "$cf_prog_ln_sf" = yes && LN_S="$LN_S -f"
1429@@ -2570,7 +2673,7 @@
1430 # AFS /usr/afsws/bin/install, which mishandles nonexistent args
1431 # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
1432 # ./install, which can be erroneously created by make from ./install.sh.
1433-echo "$as_me:2573: checking for a BSD compatible install" >&5
1434+echo "$as_me:2676: checking for a BSD compatible install" >&5
1435 echo $ECHO_N "checking for a BSD compatible install... $ECHO_C" >&6
1436 if test -z "$INSTALL"; then
1437 if test "${ac_cv_path_install+set}" = set; then
1438@@ -2619,7 +2722,7 @@
1439     INSTALL=$ac_install_sh
1440   fi
1441 fi
1442-echo "$as_me:2622: result: $INSTALL" >&5
1443+echo "$as_me:2725: result: $INSTALL" >&5
1444 echo "${ECHO_T}$INSTALL" >&6
1445
1446 # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
1447@@ -2640,7 +2743,7 @@
1448 	;;
1449 esac
1450
1451-echo "$as_me:2643: checking if you want to install stripped executables" >&5
1452+echo "$as_me:2746: checking if you want to install stripped executables" >&5
1453 echo $ECHO_N "checking if you want to install stripped executables... $ECHO_C" >&6
1454
1455 # Check whether --enable-stripping or --disable-stripping was given.
1456@@ -2657,7 +2760,7 @@
1457 	with_stripping=yes
1458
1459 fi;
1460-echo "$as_me:2660: result: $with_stripping" >&5
1461+echo "$as_me:2763: result: $with_stripping" >&5
1462 echo "${ECHO_T}$with_stripping" >&6
1463
1464 if test "$with_stripping" = yes
1465@@ -2668,7 +2771,7 @@
1466 fi
1467
1468 : ${INSTALL:=install}
1469-echo "$as_me:2671: checking if install accepts -p option" >&5
1470+echo "$as_me:2774: checking if install accepts -p option" >&5
1471 echo $ECHO_N "checking if install accepts -p option... $ECHO_C" >&6
1472 if test "${cf_cv_install_p+set}" = set; then
1473   echo $ECHO_N "(cached) $ECHO_C" >&6
1474@@ -2699,10 +2802,10 @@
1475 	rm -rf conftest*
1476
1477 fi
1478-echo "$as_me:2702: result: $cf_cv_install_p" >&5
1479+echo "$as_me:2805: result: $cf_cv_install_p" >&5
1480 echo "${ECHO_T}$cf_cv_install_p" >&6
1481
1482-echo "$as_me:2705: checking if install needs to be told about ownership" >&5
1483+echo "$as_me:2808: checking if install needs to be told about ownership" >&5
1484 echo $ECHO_N "checking if install needs to be told about ownership... $ECHO_C" >&6
1485 case `$ac_config_guess` in
1486 (*minix)
1487@@ -2713,7 +2816,7 @@
1488 	;;
1489 esac
1490
1491-echo "$as_me:2716: result: $with_install_o" >&5
1492+echo "$as_me:2819: result: $with_install_o" >&5
1493 echo "${ECHO_T}$with_install_o" >&6
1494 if test "x$with_install_o" = xyes
1495 then
1496@@ -2722,7 +2825,7 @@
1497 	INSTALL_OPT_O=
1498 fi
1499
1500-echo "$as_me:2725: checking for long file names" >&5
1501+echo "$as_me:2828: checking for long file names" >&5
1502 echo $ECHO_N "checking for long file names... $ECHO_C" >&6
1503 if test "${ac_cv_sys_long_file_names+set}" = set; then
1504   echo $ECHO_N "(cached) $ECHO_C" >&6
1505@@ -2761,7 +2864,7 @@
1506   rm -rf $ac_xdir 2>/dev/null
1507 done
1508 fi
1509-echo "$as_me:2764: result: $ac_cv_sys_long_file_names" >&5
1510+echo "$as_me:2867: result: $ac_cv_sys_long_file_names" >&5
1511 echo "${ECHO_T}$ac_cv_sys_long_file_names" >&6
1512 if test $ac_cv_sys_long_file_names = yes; then
1513
1514@@ -2773,7 +2876,7 @@
1515
1516 # if we find pkg-config, check if we should install the ".pc" files.
1517
1518-echo "$as_me:2776: checking if you want to use pkg-config" >&5
1519+echo "$as_me:2879: checking if you want to use pkg-config" >&5
1520 echo $ECHO_N "checking if you want to use pkg-config... $ECHO_C" >&6
1521
1522 # Check whether --with-pkg-config or --without-pkg-config was given.
1523@@ -2783,7 +2886,7 @@
1524 else
1525   cf_pkg_config=yes
1526 fi;
1527-echo "$as_me:2786: result: $cf_pkg_config" >&5
1528+echo "$as_me:2889: result: $cf_pkg_config" >&5
1529 echo "${ECHO_T}$cf_pkg_config" >&6
1530
1531 case $cf_pkg_config in
1532@@ -2795,7 +2898,7 @@
1533 if test -n "$ac_tool_prefix"; then
1534   # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args.
1535 set dummy ${ac_tool_prefix}pkg-config; ac_word=$2
1536-echo "$as_me:2798: checking for $ac_word" >&5
1537+echo "$as_me:2901: checking for $ac_word" >&5
1538 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1539 if test "${ac_cv_path_PKG_CONFIG+set}" = set; then
1540   echo $ECHO_N "(cached) $ECHO_C" >&6
1541@@ -2812,7 +2915,7 @@
1542   test -z "$ac_dir" && ac_dir=.
1543   if $as_executable_p "$ac_dir/$ac_word"; then
1544    ac_cv_path_PKG_CONFIG="$ac_dir/$ac_word"
1545-   echo "$as_me:2815: found $ac_dir/$ac_word" >&5
1546+   echo "$as_me:2918: found $ac_dir/$ac_word" >&5
1547    break
1548 fi
1549 done
1550@@ -2823,10 +2926,10 @@
1551 PKG_CONFIG=$ac_cv_path_PKG_CONFIG
1552
1553 if test -n "$PKG_CONFIG"; then
1554-  echo "$as_me:2826: result: $PKG_CONFIG" >&5
1555+  echo "$as_me:2929: result: $PKG_CONFIG" >&5
1556 echo "${ECHO_T}$PKG_CONFIG" >&6
1557 else
1558-  echo "$as_me:2829: result: no" >&5
1559+  echo "$as_me:2932: result: no" >&5
1560 echo "${ECHO_T}no" >&6
1561 fi
1562
1563@@ -2835,7 +2938,7 @@
1564   ac_pt_PKG_CONFIG=$PKG_CONFIG
1565   # Extract the first word of "pkg-config", so it can be a program name with args.
1566 set dummy pkg-config; ac_word=$2
1567-echo "$as_me:2838: checking for $ac_word" >&5
1568+echo "$as_me:2941: checking for $ac_word" >&5
1569 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1570 if test "${ac_cv_path_ac_pt_PKG_CONFIG+set}" = set; then
1571   echo $ECHO_N "(cached) $ECHO_C" >&6
1572@@ -2852,7 +2955,7 @@
1573   test -z "$ac_dir" && ac_dir=.
1574   if $as_executable_p "$ac_dir/$ac_word"; then
1575    ac_cv_path_ac_pt_PKG_CONFIG="$ac_dir/$ac_word"
1576-   echo "$as_me:2855: found $ac_dir/$ac_word" >&5
1577+   echo "$as_me:2958: found $ac_dir/$ac_word" >&5
1578    break
1579 fi
1580 done
1581@@ -2864,10 +2967,10 @@
1582 ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG
1583
1584 if test -n "$ac_pt_PKG_CONFIG"; then
1585-  echo "$as_me:2867: result: $ac_pt_PKG_CONFIG" >&5
1586+  echo "$as_me:2970: result: $ac_pt_PKG_CONFIG" >&5
1587 echo "${ECHO_T}$ac_pt_PKG_CONFIG" >&6
1588 else
1589-  echo "$as_me:2870: result: no" >&5
1590+  echo "$as_me:2973: result: no" >&5
1591 echo "${ECHO_T}no" >&6
1592 fi
1593
1594@@ -2910,24 +3013,24 @@
1595 	PKG_CONFIG=`echo $PKG_CONFIG | sed -e s%NONE%$cf_path_syntax%`
1596 	;;
1597 (*)
1598-	{ { echo "$as_me:2913: error: expected a pathname, not \"$PKG_CONFIG\"" >&5
1599+	{ { echo "$as_me:3016: error: expected a pathname, not \"$PKG_CONFIG\"" >&5
1600 echo "$as_me: error: expected a pathname, not \"$PKG_CONFIG\"" >&2;}
1601    { (exit 1); exit 1; }; }
1602 	;;
1603 esac
1604
1605 elif test "x$cf_pkg_config" != xno ; then
1606-	{ echo "$as_me:2920: WARNING: pkg-config is not installed" >&5
1607+	{ echo "$as_me:3023: WARNING: pkg-config is not installed" >&5
1608 echo "$as_me: WARNING: pkg-config is not installed" >&2;}
1609 fi
1610
1611 case $PKG_CONFIG in
1612 (no|none|yes)
1613-	echo "$as_me:2926: checking for pkg-config library directory" >&5
1614+	echo "$as_me:3029: checking for pkg-config library directory" >&5
1615 echo $ECHO_N "checking for pkg-config library directory... $ECHO_C" >&6
1616 	;;
1617 (*)
1618-	echo "$as_me:2930: checking for $PKG_CONFIG library directory" >&5
1619+	echo "$as_me:3033: checking for $PKG_CONFIG library directory" >&5
1620 echo $ECHO_N "checking for $PKG_CONFIG library directory... $ECHO_C" >&6
1621 	;;
1622 esac
1623@@ -2982,18 +3085,18 @@
1624
1625 	test -n "$verbose" && echo "	list..." 1>&6
1626
1627-echo "${as_me:-configure}:2985: testing list... ..." 1>&5
1628+echo "${as_me:-configure}:3088: testing list... ..." 1>&5
1629
1630 	for cf_config in $cf_search_path
1631 	do
1632 		test -n "$verbose" && echo "	checking $cf_config/pkgconfig" 1>&6
1633
1634-echo "${as_me:-configure}:2991: testing checking $cf_config/pkgconfig ..." 1>&5
1635+echo "${as_me:-configure}:3094: testing checking $cf_config/pkgconfig ..." 1>&5
1636
1637 		if test -d $cf_config/pkgconfig
1638 		then
1639 			PKG_CONFIG_LIBDIR=$cf_config/pkgconfig
1640-			echo "$as_me:2996: checking done" >&5
1641+			echo "$as_me:3099: checking done" >&5
1642 echo $ECHO_N "checking done... $ECHO_C" >&6
1643 			break
1644 		fi
1645@@ -3004,11 +3107,11 @@
1646 esac
1647
1648 if test "x$PKG_CONFIG_LIBDIR" != xno ; then
1649-	echo "$as_me:3007: result: $PKG_CONFIG_LIBDIR" >&5
1650+	echo "$as_me:3110: result: $PKG_CONFIG_LIBDIR" >&5
1651 echo "${ECHO_T}$PKG_CONFIG_LIBDIR" >&6
1652 fi
1653
1654-echo "$as_me:3011: checking if you want to build test-programs" >&5
1655+echo "$as_me:3114: checking if you want to build test-programs" >&5
1656 echo $ECHO_N "checking if you want to build test-programs... $ECHO_C" >&6
1657
1658 # Check whether --with-tests or --without-tests was given.
1659@@ -3018,10 +3121,10 @@
1660 else
1661   cf_with_tests=yes
1662 fi;
1663-echo "$as_me:3021: result: $cf_with_tests" >&5
1664+echo "$as_me:3124: result: $cf_with_tests" >&5
1665 echo "${ECHO_T}$cf_with_tests" >&6
1666
1667-echo "$as_me:3024: checking if we should assume mixed-case filenames" >&5
1668+echo "$as_me:3127: checking if we should assume mixed-case filenames" >&5
1669 echo $ECHO_N "checking if we should assume mixed-case filenames... $ECHO_C" >&6
1670
1671 # Check whether --enable-mixed-case or --disable-mixed-case was given.
1672@@ -3031,11 +3134,11 @@
1673 else
1674   enable_mixedcase=auto
1675 fi;
1676-echo "$as_me:3034: result: $enable_mixedcase" >&5
1677+echo "$as_me:3137: result: $enable_mixedcase" >&5
1678 echo "${ECHO_T}$enable_mixedcase" >&6
1679 if test "$enable_mixedcase" = "auto" ; then
1680
1681-echo "$as_me:3038: checking if filesystem supports mixed-case filenames" >&5
1682+echo "$as_me:3141: checking if filesystem supports mixed-case filenames" >&5
1683 echo $ECHO_N "checking if filesystem supports mixed-case filenames... $ECHO_C" >&6
1684 if test "${cf_cv_mixedcase+set}" = set; then
1685   echo $ECHO_N "(cached) $ECHO_C" >&6
1686@@ -3062,7 +3165,7 @@
1687 fi
1688
1689 fi
1690-echo "$as_me:3065: result: $cf_cv_mixedcase" >&5
1691+echo "$as_me:3168: result: $cf_cv_mixedcase" >&5
1692 echo "${ECHO_T}$cf_cv_mixedcase" >&6
1693 test "$cf_cv_mixedcase" = yes &&
1694 cat >>confdefs.h <<\EOF
1695@@ -3080,7 +3183,7 @@
1696 fi
1697
1698 # do this after mixed-case option (tags/TAGS is not as important as tic).
1699-echo "$as_me:3083: checking whether ${MAKE-make} sets \${MAKE}" >&5
1700+echo "$as_me:3186: checking whether ${MAKE-make} sets \${MAKE}" >&5
1701 echo $ECHO_N "checking whether ${MAKE-make} sets \${MAKE}... $ECHO_C" >&6
1702 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,./+-,__p_,'`
1703 if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then
1704@@ -3100,11 +3203,11 @@
1705 rm -f conftest.make
1706 fi
1707 if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then
1708-  echo "$as_me:3103: result: yes" >&5
1709+  echo "$as_me:3206: result: yes" >&5
1710 echo "${ECHO_T}yes" >&6
1711   SET_MAKE=
1712 else
1713-  echo "$as_me:3107: result: no" >&5
1714+  echo "$as_me:3210: result: no" >&5
1715 echo "${ECHO_T}no" >&6
1716   SET_MAKE="MAKE=${MAKE-make}"
1717 fi
1718@@ -3113,7 +3216,7 @@
1719 do
1720   # Extract the first word of "$ac_prog", so it can be a program name with args.
1721 set dummy $ac_prog; ac_word=$2
1722-echo "$as_me:3116: checking for $ac_word" >&5
1723+echo "$as_me:3219: checking for $ac_word" >&5
1724 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1725 if test "${ac_cv_prog_CTAGS+set}" = set; then
1726   echo $ECHO_N "(cached) $ECHO_C" >&6
1727@@ -3128,7 +3231,7 @@
1728   test -z "$ac_dir" && ac_dir=.
1729   $as_executable_p "$ac_dir/$ac_word" || continue
1730 ac_cv_prog_CTAGS="$ac_prog"
1731-echo "$as_me:3131: found $ac_dir/$ac_word" >&5
1732+echo "$as_me:3234: found $ac_dir/$ac_word" >&5
1733 break
1734 done
1735
1736@@ -3136,10 +3239,10 @@
1737 fi
1738 CTAGS=$ac_cv_prog_CTAGS
1739 if test -n "$CTAGS"; then
1740-  echo "$as_me:3139: result: $CTAGS" >&5
1741+  echo "$as_me:3242: result: $CTAGS" >&5
1742 echo "${ECHO_T}$CTAGS" >&6
1743 else
1744-  echo "$as_me:3142: result: no" >&5
1745+  echo "$as_me:3245: result: no" >&5
1746 echo "${ECHO_T}no" >&6
1747 fi
1748
1749@@ -3150,7 +3253,7 @@
1750 do
1751   # Extract the first word of "$ac_prog", so it can be a program name with args.
1752 set dummy $ac_prog; ac_word=$2
1753-echo "$as_me:3153: checking for $ac_word" >&5
1754+echo "$as_me:3256: checking for $ac_word" >&5
1755 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1756 if test "${ac_cv_prog_ETAGS+set}" = set; then
1757   echo $ECHO_N "(cached) $ECHO_C" >&6
1758@@ -3165,7 +3268,7 @@
1759   test -z "$ac_dir" && ac_dir=.
1760   $as_executable_p "$ac_dir/$ac_word" || continue
1761 ac_cv_prog_ETAGS="$ac_prog"
1762-echo "$as_me:3168: found $ac_dir/$ac_word" >&5
1763+echo "$as_me:3271: found $ac_dir/$ac_word" >&5
1764 break
1765 done
1766
1767@@ -3173,10 +3276,10 @@
1768 fi
1769 ETAGS=$ac_cv_prog_ETAGS
1770 if test -n "$ETAGS"; then
1771-  echo "$as_me:3176: result: $ETAGS" >&5
1772+  echo "$as_me:3279: result: $ETAGS" >&5
1773 echo "${ECHO_T}$ETAGS" >&6
1774 else
1775-  echo "$as_me:3179: result: no" >&5
1776+  echo "$as_me:3282: result: no" >&5
1777 echo "${ECHO_T}no" >&6
1778 fi
1779
1780@@ -3185,7 +3288,7 @@
1781
1782 # Extract the first word of "${CTAGS:-ctags}", so it can be a program name with args.
1783 set dummy ${CTAGS:-ctags}; ac_word=$2
1784-echo "$as_me:3188: checking for $ac_word" >&5
1785+echo "$as_me:3291: checking for $ac_word" >&5
1786 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1787 if test "${ac_cv_prog_MAKE_LOWER_TAGS+set}" = set; then
1788   echo $ECHO_N "(cached) $ECHO_C" >&6
1789@@ -3200,7 +3303,7 @@
1790   test -z "$ac_dir" && ac_dir=.
1791   $as_executable_p "$ac_dir/$ac_word" || continue
1792 ac_cv_prog_MAKE_LOWER_TAGS="yes"
1793-echo "$as_me:3203: found $ac_dir/$ac_word" >&5
1794+echo "$as_me:3306: found $ac_dir/$ac_word" >&5
1795 break
1796 done
1797
1798@@ -3209,17 +3312,17 @@
1799 fi
1800 MAKE_LOWER_TAGS=$ac_cv_prog_MAKE_LOWER_TAGS
1801 if test -n "$MAKE_LOWER_TAGS"; then
1802-  echo "$as_me:3212: result: $MAKE_LOWER_TAGS" >&5
1803+  echo "$as_me:3315: result: $MAKE_LOWER_TAGS" >&5
1804 echo "${ECHO_T}$MAKE_LOWER_TAGS" >&6
1805 else
1806-  echo "$as_me:3215: result: no" >&5
1807+  echo "$as_me:3318: result: no" >&5
1808 echo "${ECHO_T}no" >&6
1809 fi
1810
1811 if test "$cf_cv_mixedcase" = yes ; then
1812 	# Extract the first word of "${ETAGS:-etags}", so it can be a program name with args.
1813 set dummy ${ETAGS:-etags}; ac_word=$2
1814-echo "$as_me:3222: checking for $ac_word" >&5
1815+echo "$as_me:3325: checking for $ac_word" >&5
1816 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1817 if test "${ac_cv_prog_MAKE_UPPER_TAGS+set}" = set; then
1818   echo $ECHO_N "(cached) $ECHO_C" >&6
1819@@ -3234,7 +3337,7 @@
1820   test -z "$ac_dir" && ac_dir=.
1821   $as_executable_p "$ac_dir/$ac_word" || continue
1822 ac_cv_prog_MAKE_UPPER_TAGS="yes"
1823-echo "$as_me:3237: found $ac_dir/$ac_word" >&5
1824+echo "$as_me:3340: found $ac_dir/$ac_word" >&5
1825 break
1826 done
1827
1828@@ -3243,10 +3346,10 @@
1829 fi
1830 MAKE_UPPER_TAGS=$ac_cv_prog_MAKE_UPPER_TAGS
1831 if test -n "$MAKE_UPPER_TAGS"; then
1832-  echo "$as_me:3246: result: $MAKE_UPPER_TAGS" >&5
1833+  echo "$as_me:3349: result: $MAKE_UPPER_TAGS" >&5
1834 echo "${ECHO_T}$MAKE_UPPER_TAGS" >&6
1835 else
1836-  echo "$as_me:3249: result: no" >&5
1837+  echo "$as_me:3352: result: no" >&5
1838 echo "${ECHO_T}no" >&6
1839 fi
1840
1841@@ -3266,7 +3369,7 @@
1842 	MAKE_LOWER_TAGS="#"
1843 fi
1844
1845-echo "$as_me:3269: checking for makeflags variable" >&5
1846+echo "$as_me:3372: checking for makeflags variable" >&5
1847 echo $ECHO_N "checking for makeflags variable... $ECHO_C" >&6
1848 if test "${cf_cv_makeflags+set}" = set; then
1849   echo $ECHO_N "(cached) $ECHO_C" >&6
1850@@ -3296,7 +3399,7 @@
1851 			;;
1852 		(*)
1853
1854-echo "${as_me:-configure}:3299: testing given option \"$cf_option\",no match \"$cf_result\" ..." 1>&5
1855+echo "${as_me:-configure}:3402: testing given option \"$cf_option\",no match \"$cf_result\" ..." 1>&5
1856
1857 			;;
1858 		esac
1859@@ -3304,13 +3407,13 @@
1860 	rm -f cf_makeflags.tmp
1861
1862 fi
1863-echo "$as_me:3307: result: $cf_cv_makeflags" >&5
1864+echo "$as_me:3410: result: $cf_cv_makeflags" >&5
1865 echo "${ECHO_T}$cf_cv_makeflags" >&6
1866
1867 if test -n "$ac_tool_prefix"; then
1868   # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
1869 set dummy ${ac_tool_prefix}ranlib; ac_word=$2
1870-echo "$as_me:3313: checking for $ac_word" >&5
1871+echo "$as_me:3416: checking for $ac_word" >&5
1872 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1873 if test "${ac_cv_prog_RANLIB+set}" = set; then
1874   echo $ECHO_N "(cached) $ECHO_C" >&6
1875@@ -3325,7 +3428,7 @@
1876   test -z "$ac_dir" && ac_dir=.
1877   $as_executable_p "$ac_dir/$ac_word" || continue
1878 ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
1879-echo "$as_me:3328: found $ac_dir/$ac_word" >&5
1880+echo "$as_me:3431: found $ac_dir/$ac_word" >&5
1881 break
1882 done
1883
1884@@ -3333,10 +3436,10 @@
1885 fi
1886 RANLIB=$ac_cv_prog_RANLIB
1887 if test -n "$RANLIB"; then
1888-  echo "$as_me:3336: result: $RANLIB" >&5
1889+  echo "$as_me:3439: result: $RANLIB" >&5
1890 echo "${ECHO_T}$RANLIB" >&6
1891 else
1892-  echo "$as_me:3339: result: no" >&5
1893+  echo "$as_me:3442: result: no" >&5
1894 echo "${ECHO_T}no" >&6
1895 fi
1896
1897@@ -3345,7 +3448,7 @@
1898   ac_ct_RANLIB=$RANLIB
1899   # Extract the first word of "ranlib", so it can be a program name with args.
1900 set dummy ranlib; ac_word=$2
1901-echo "$as_me:3348: checking for $ac_word" >&5
1902+echo "$as_me:3451: checking for $ac_word" >&5
1903 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1904 if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then
1905   echo $ECHO_N "(cached) $ECHO_C" >&6
1906@@ -3360,7 +3463,7 @@
1907   test -z "$ac_dir" && ac_dir=.
1908   $as_executable_p "$ac_dir/$ac_word" || continue
1909 ac_cv_prog_ac_ct_RANLIB="ranlib"
1910-echo "$as_me:3363: found $ac_dir/$ac_word" >&5
1911+echo "$as_me:3466: found $ac_dir/$ac_word" >&5
1912 break
1913 done
1914
1915@@ -3369,10 +3472,10 @@
1916 fi
1917 ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB
1918 if test -n "$ac_ct_RANLIB"; then
1919-  echo "$as_me:3372: result: $ac_ct_RANLIB" >&5
1920+  echo "$as_me:3475: result: $ac_ct_RANLIB" >&5
1921 echo "${ECHO_T}$ac_ct_RANLIB" >&6
1922 else
1923-  echo "$as_me:3375: result: no" >&5
1924+  echo "$as_me:3478: result: no" >&5
1925 echo "${ECHO_T}no" >&6
1926 fi
1927
1928@@ -3384,7 +3487,7 @@
1929 if test -n "$ac_tool_prefix"; then
1930   # Extract the first word of "${ac_tool_prefix}ld", so it can be a program name with args.
1931 set dummy ${ac_tool_prefix}ld; ac_word=$2
1932-echo "$as_me:3387: checking for $ac_word" >&5
1933+echo "$as_me:3490: checking for $ac_word" >&5
1934 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1935 if test "${ac_cv_prog_LD+set}" = set; then
1936   echo $ECHO_N "(cached) $ECHO_C" >&6
1937@@ -3399,7 +3502,7 @@
1938   test -z "$ac_dir" && ac_dir=.
1939   $as_executable_p "$ac_dir/$ac_word" || continue
1940 ac_cv_prog_LD="${ac_tool_prefix}ld"
1941-echo "$as_me:3402: found $ac_dir/$ac_word" >&5
1942+echo "$as_me:3505: found $ac_dir/$ac_word" >&5
1943 break
1944 done
1945
1946@@ -3407,10 +3510,10 @@
1947 fi
1948 LD=$ac_cv_prog_LD
1949 if test -n "$LD"; then
1950-  echo "$as_me:3410: result: $LD" >&5
1951+  echo "$as_me:3513: result: $LD" >&5
1952 echo "${ECHO_T}$LD" >&6
1953 else
1954-  echo "$as_me:3413: result: no" >&5
1955+  echo "$as_me:3516: result: no" >&5
1956 echo "${ECHO_T}no" >&6
1957 fi
1958
1959@@ -3419,7 +3522,7 @@
1960   ac_ct_LD=$LD
1961   # Extract the first word of "ld", so it can be a program name with args.
1962 set dummy ld; ac_word=$2
1963-echo "$as_me:3422: checking for $ac_word" >&5
1964+echo "$as_me:3525: checking for $ac_word" >&5
1965 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1966 if test "${ac_cv_prog_ac_ct_LD+set}" = set; then
1967   echo $ECHO_N "(cached) $ECHO_C" >&6
1968@@ -3434,7 +3537,7 @@
1969   test -z "$ac_dir" && ac_dir=.
1970   $as_executable_p "$ac_dir/$ac_word" || continue
1971 ac_cv_prog_ac_ct_LD="ld"
1972-echo "$as_me:3437: found $ac_dir/$ac_word" >&5
1973+echo "$as_me:3540: found $ac_dir/$ac_word" >&5
1974 break
1975 done
1976
1977@@ -3443,10 +3546,10 @@
1978 fi
1979 ac_ct_LD=$ac_cv_prog_ac_ct_LD
1980 if test -n "$ac_ct_LD"; then
1981-  echo "$as_me:3446: result: $ac_ct_LD" >&5
1982+  echo "$as_me:3549: result: $ac_ct_LD" >&5
1983 echo "${ECHO_T}$ac_ct_LD" >&6
1984 else
1985-  echo "$as_me:3449: result: no" >&5
1986+  echo "$as_me:3552: result: no" >&5
1987 echo "${ECHO_T}no" >&6
1988 fi
1989
1990@@ -3458,7 +3561,7 @@
1991 if test -n "$ac_tool_prefix"; then
1992   # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
1993 set dummy ${ac_tool_prefix}ar; ac_word=$2
1994-echo "$as_me:3461: checking for $ac_word" >&5
1995+echo "$as_me:3564: checking for $ac_word" >&5
1996 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
1997 if test "${ac_cv_prog_AR+set}" = set; then
1998   echo $ECHO_N "(cached) $ECHO_C" >&6
1999@@ -3473,7 +3576,7 @@
2000   test -z "$ac_dir" && ac_dir=.
2001   $as_executable_p "$ac_dir/$ac_word" || continue
2002 ac_cv_prog_AR="${ac_tool_prefix}ar"
2003-echo "$as_me:3476: found $ac_dir/$ac_word" >&5
2004+echo "$as_me:3579: found $ac_dir/$ac_word" >&5
2005 break
2006 done
2007
2008@@ -3481,10 +3584,10 @@
2009 fi
2010 AR=$ac_cv_prog_AR
2011 if test -n "$AR"; then
2012-  echo "$as_me:3484: result: $AR" >&5
2013+  echo "$as_me:3587: result: $AR" >&5
2014 echo "${ECHO_T}$AR" >&6
2015 else
2016-  echo "$as_me:3487: result: no" >&5
2017+  echo "$as_me:3590: result: no" >&5
2018 echo "${ECHO_T}no" >&6
2019 fi
2020
2021@@ -3493,7 +3596,7 @@
2022   ac_ct_AR=$AR
2023   # Extract the first word of "ar", so it can be a program name with args.
2024 set dummy ar; ac_word=$2
2025-echo "$as_me:3496: checking for $ac_word" >&5
2026+echo "$as_me:3599: checking for $ac_word" >&5
2027 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
2028 if test "${ac_cv_prog_ac_ct_AR+set}" = set; then
2029   echo $ECHO_N "(cached) $ECHO_C" >&6
2030@@ -3508,7 +3611,7 @@
2031   test -z "$ac_dir" && ac_dir=.
2032   $as_executable_p "$ac_dir/$ac_word" || continue
2033 ac_cv_prog_ac_ct_AR="ar"
2034-echo "$as_me:3511: found $ac_dir/$ac_word" >&5
2035+echo "$as_me:3614: found $ac_dir/$ac_word" >&5
2036 break
2037 done
2038
2039@@ -3517,10 +3620,10 @@
2040 fi
2041 ac_ct_AR=$ac_cv_prog_ac_ct_AR
2042 if test -n "$ac_ct_AR"; then
2043-  echo "$as_me:3520: result: $ac_ct_AR" >&5
2044+  echo "$as_me:3623: result: $ac_ct_AR" >&5
2045 echo "${ECHO_T}$ac_ct_AR" >&6
2046 else
2047-  echo "$as_me:3523: result: no" >&5
2048+  echo "$as_me:3626: result: no" >&5
2049 echo "${ECHO_T}no" >&6
2050 fi
2051
2052@@ -3532,7 +3635,7 @@
2053 if test -n "$ac_tool_prefix"; then
2054   # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
2055 set dummy ${ac_tool_prefix}ar; ac_word=$2
2056-echo "$as_me:3535: checking for $ac_word" >&5
2057+echo "$as_me:3638: checking for $ac_word" >&5
2058 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
2059 if test "${ac_cv_prog_AR+set}" = set; then
2060   echo $ECHO_N "(cached) $ECHO_C" >&6
2061@@ -3547,7 +3650,7 @@
2062   test -z "$ac_dir" && ac_dir=.
2063   $as_executable_p "$ac_dir/$ac_word" || continue
2064 ac_cv_prog_AR="${ac_tool_prefix}ar"
2065-echo "$as_me:3550: found $ac_dir/$ac_word" >&5
2066+echo "$as_me:3653: found $ac_dir/$ac_word" >&5
2067 break
2068 done
2069
2070@@ -3555,10 +3658,10 @@
2071 fi
2072 AR=$ac_cv_prog_AR
2073 if test -n "$AR"; then
2074-  echo "$as_me:3558: result: $AR" >&5
2075+  echo "$as_me:3661: result: $AR" >&5
2076 echo "${ECHO_T}$AR" >&6
2077 else
2078-  echo "$as_me:3561: result: no" >&5
2079+  echo "$as_me:3664: result: no" >&5
2080 echo "${ECHO_T}no" >&6
2081 fi
2082
2083@@ -3567,7 +3670,7 @@
2084   ac_ct_AR=$AR
2085   # Extract the first word of "ar", so it can be a program name with args.
2086 set dummy ar; ac_word=$2
2087-echo "$as_me:3570: checking for $ac_word" >&5
2088+echo "$as_me:3673: checking for $ac_word" >&5
2089 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
2090 if test "${ac_cv_prog_ac_ct_AR+set}" = set; then
2091   echo $ECHO_N "(cached) $ECHO_C" >&6
2092@@ -3582,7 +3685,7 @@
2093   test -z "$ac_dir" && ac_dir=.
2094   $as_executable_p "$ac_dir/$ac_word" || continue
2095 ac_cv_prog_ac_ct_AR="ar"
2096-echo "$as_me:3585: found $ac_dir/$ac_word" >&5
2097+echo "$as_me:3688: found $ac_dir/$ac_word" >&5
2098 break
2099 done
2100
2101@@ -3591,10 +3694,10 @@
2102 fi
2103 ac_ct_AR=$ac_cv_prog_ac_ct_AR
2104 if test -n "$ac_ct_AR"; then
2105-  echo "$as_me:3594: result: $ac_ct_AR" >&5
2106+  echo "$as_me:3697: result: $ac_ct_AR" >&5
2107 echo "${ECHO_T}$ac_ct_AR" >&6
2108 else
2109-  echo "$as_me:3597: result: no" >&5
2110+  echo "$as_me:3700: result: no" >&5
2111 echo "${ECHO_T}no" >&6
2112 fi
2113
2114@@ -3603,7 +3706,7 @@
2115   AR="$ac_cv_prog_AR"
2116 fi
2117
2118-echo "$as_me:3606: checking for options to update archives" >&5
2119+echo "$as_me:3709: checking for options to update archives" >&5
2120 echo $ECHO_N "checking for options to update archives... $ECHO_C" >&6
2121 if test "${cf_cv_ar_flags+set}" = set; then
2122   echo $ECHO_N "(cached) $ECHO_C" >&6
2123@@ -3626,13 +3729,13 @@
2124 		rm -f conftest.a
2125
2126 		cat >conftest.$ac_ext <<EOF
2127-#line 3629 "configure"
2128+#line 3732 "configure"
2129 int	testdata[3] = { 123, 456, 789 };
2130 EOF
2131-		if { (eval echo "$as_me:3632: \"$ac_compile\"") >&5
2132+		if { (eval echo "$as_me:3735: \"$ac_compile\"") >&5
2133   (eval $ac_compile) 2>&5
2134   ac_status=$?
2135-  echo "$as_me:3635: \$? = $ac_status" >&5
2136+  echo "$as_me:3738: \$? = $ac_status" >&5
2137   (exit $ac_status); } ; then
2138 			echo "$AR $ARFLAGS $cf_ar_flags conftest.a conftest.$ac_cv_objext" >&5
2139 			$AR $ARFLAGS $cf_ar_flags conftest.a conftest.$ac_cv_objext 2>&5 1>/dev/null
2140@@ -3643,7 +3746,7 @@
2141 		else
2142 			test -n "$verbose" && echo "	cannot compile test-program" 1>&6
2143
2144-echo "${as_me:-configure}:3646: testing cannot compile test-program ..." 1>&5
2145+echo "${as_me:-configure}:3749: testing cannot compile test-program ..." 1>&5
2146
2147 			break
2148 		fi
2149@@ -3651,7 +3754,7 @@
2150 	rm -f conftest.a conftest.$ac_ext conftest.$ac_cv_objext
2151
2152 fi
2153-echo "$as_me:3654: result: $cf_cv_ar_flags" >&5
2154+echo "$as_me:3757: result: $cf_cv_ar_flags" >&5
2155 echo "${ECHO_T}$cf_cv_ar_flags" >&6
2156
2157 if test -n "$ARFLAGS" ; then
2158@@ -3662,17 +3765,17 @@
2159 	ARFLAGS=$cf_cv_ar_flags
2160 fi
2161
2162-	echo "$as_me:3665: checking for PATH separator" >&5
2163+	echo "$as_me:3768: checking for PATH separator" >&5
2164 echo $ECHO_N "checking for PATH separator... $ECHO_C" >&6
2165 	case $cf_cv_system_name in
2166 	(os2*)	PATH_SEPARATOR=';'  ;;
2167 	(*)	${PATH_SEPARATOR:=':'}  ;;
2168 	esac
2169
2170-	echo "$as_me:3672: result: $PATH_SEPARATOR" >&5
2171+	echo "$as_me:3775: result: $PATH_SEPARATOR" >&5
2172 echo "${ECHO_T}$PATH_SEPARATOR" >&6
2173
2174-echo "$as_me:3675: checking if you have specified an install-prefix" >&5
2175+echo "$as_me:3778: checking if you have specified an install-prefix" >&5
2176 echo $ECHO_N "checking if you have specified an install-prefix... $ECHO_C" >&6
2177
2178 # Check whether --with-install-prefix or --without-install-prefix was given.
2179@@ -3685,7 +3788,7 @@
2180 		;;
2181 	esac
2182 fi;
2183-echo "$as_me:3688: result: $DESTDIR" >&5
2184+echo "$as_me:3791: result: $DESTDIR" >&5
2185 echo "${ECHO_T}$DESTDIR" >&6
2186
2187 ###############################################################################
2188@@ -3713,7 +3816,7 @@
2189 do
2190   # Extract the first word of "$ac_prog", so it can be a program name with args.
2191 set dummy $ac_prog; ac_word=$2
2192-echo "$as_me:3716: checking for $ac_word" >&5
2193+echo "$as_me:3819: checking for $ac_word" >&5
2194 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
2195 if test "${ac_cv_prog_BUILD_CC+set}" = set; then
2196   echo $ECHO_N "(cached) $ECHO_C" >&6
2197@@ -3728,7 +3831,7 @@
2198   test -z "$ac_dir" && ac_dir=.
2199   $as_executable_p "$ac_dir/$ac_word" || continue
2200 ac_cv_prog_BUILD_CC="$ac_prog"
2201-echo "$as_me:3731: found $ac_dir/$ac_word" >&5
2202+echo "$as_me:3834: found $ac_dir/$ac_word" >&5
2203 break
2204 done
2205
2206@@ -3736,10 +3839,10 @@
2207 fi
2208 BUILD_CC=$ac_cv_prog_BUILD_CC
2209 if test -n "$BUILD_CC"; then
2210-  echo "$as_me:3739: result: $BUILD_CC" >&5
2211+  echo "$as_me:3842: result: $BUILD_CC" >&5
2212 echo "${ECHO_T}$BUILD_CC" >&6
2213 else
2214-  echo "$as_me:3742: result: no" >&5
2215+  echo "$as_me:3845: result: no" >&5
2216 echo "${ECHO_T}no" >&6
2217 fi
2218
2219@@ -3748,12 +3851,12 @@
2220 test -n "$BUILD_CC" || BUILD_CC="none"
2221
2222 fi;
2223-	echo "$as_me:3751: checking for native build C compiler" >&5
2224+	echo "$as_me:3854: checking for native build C compiler" >&5
2225 echo $ECHO_N "checking for native build C compiler... $ECHO_C" >&6
2226-	echo "$as_me:3753: result: $BUILD_CC" >&5
2227+	echo "$as_me:3856: result: $BUILD_CC" >&5
2228 echo "${ECHO_T}$BUILD_CC" >&6
2229
2230-	echo "$as_me:3756: checking for native build C preprocessor" >&5
2231+	echo "$as_me:3859: checking for native build C preprocessor" >&5
2232 echo $ECHO_N "checking for native build C preprocessor... $ECHO_C" >&6
2233
2234 # Check whether --with-build-cpp or --without-build-cpp was given.
2235@@ -3763,10 +3866,10 @@
2236 else
2237   BUILD_CPP='${BUILD_CC} -E'
2238 fi;
2239-	echo "$as_me:3766: result: $BUILD_CPP" >&5
2240+	echo "$as_me:3869: result: $BUILD_CPP" >&5
2241 echo "${ECHO_T}$BUILD_CPP" >&6
2242
2243-	echo "$as_me:3769: checking for native build C flags" >&5
2244+	echo "$as_me:3872: checking for native build C flags" >&5
2245 echo $ECHO_N "checking for native build C flags... $ECHO_C" >&6
2246
2247 # Check whether --with-build-cflags or --without-build-cflags was given.
2248@@ -3774,10 +3877,10 @@
2249   withval="$with_build_cflags"
2250   BUILD_CFLAGS="$withval"
2251 fi;
2252-	echo "$as_me:3777: result: $BUILD_CFLAGS" >&5
2253+	echo "$as_me:3880: result: $BUILD_CFLAGS" >&5
2254 echo "${ECHO_T}$BUILD_CFLAGS" >&6
2255
2256-	echo "$as_me:3780: checking for native build C preprocessor-flags" >&5
2257+	echo "$as_me:3883: checking for native build C preprocessor-flags" >&5
2258 echo $ECHO_N "checking for native build C preprocessor-flags... $ECHO_C" >&6
2259
2260 # Check whether --with-build-cppflags or --without-build-cppflags was given.
2261@@ -3785,10 +3888,10 @@
2262   withval="$with_build_cppflags"
2263   BUILD_CPPFLAGS="$withval"
2264 fi;
2265-	echo "$as_me:3788: result: $BUILD_CPPFLAGS" >&5
2266+	echo "$as_me:3891: result: $BUILD_CPPFLAGS" >&5
2267 echo "${ECHO_T}$BUILD_CPPFLAGS" >&6
2268
2269-	echo "$as_me:3791: checking for native build linker-flags" >&5
2270+	echo "$as_me:3894: checking for native build linker-flags" >&5
2271 echo $ECHO_N "checking for native build linker-flags... $ECHO_C" >&6
2272
2273 # Check whether --with-build-ldflags or --without-build-ldflags was given.
2274@@ -3796,10 +3899,10 @@
2275   withval="$with_build_ldflags"
2276   BUILD_LDFLAGS="$withval"
2277 fi;
2278-	echo "$as_me:3799: result: $BUILD_LDFLAGS" >&5
2279+	echo "$as_me:3902: result: $BUILD_LDFLAGS" >&5
2280 echo "${ECHO_T}$BUILD_LDFLAGS" >&6
2281
2282-	echo "$as_me:3802: checking for native build linker-libraries" >&5
2283+	echo "$as_me:3905: checking for native build linker-libraries" >&5
2284 echo $ECHO_N "checking for native build linker-libraries... $ECHO_C" >&6
2285
2286 # Check whether --with-build-libs or --without-build-libs was given.
2287@@ -3807,7 +3910,7 @@
2288   withval="$with_build_libs"
2289   BUILD_LIBS="$withval"
2290 fi;
2291-	echo "$as_me:3810: result: $BUILD_LIBS" >&5
2292+	echo "$as_me:3913: result: $BUILD_LIBS" >&5
2293 echo "${ECHO_T}$BUILD_LIBS" >&6
2294
2295 	# this assumes we're on Unix.
2296@@ -3817,7 +3920,7 @@
2297 	: ${BUILD_CC:='${CC}'}
2298
2299 	if ( test "$BUILD_CC" = "$CC" || test "$BUILD_CC" = '${CC}' ) ; then
2300-		{ { echo "$as_me:3820: error: Cross-build requires two compilers.
2301+		{ { echo "$as_me:3923: error: Cross-build requires two compilers.
2302 Use --with-build-cc to specify the native compiler." >&5
2303 echo "$as_me: error: Cross-build requires two compilers.
2304 Use --with-build-cc to specify the native compiler." >&2;}
2305@@ -3842,7 +3945,7 @@
2306 ### shared, for example.
2307 cf_list_models=""
2308
2309-echo "$as_me:3845: checking if you want to build shared C-objects" >&5
2310+echo "$as_me:3948: checking if you want to build shared C-objects" >&5
2311 echo $ECHO_N "checking if you want to build shared C-objects... $ECHO_C" >&6
2312
2313 # Check whether --with-shared or --without-shared was given.
2314@@ -3852,27 +3955,27 @@
2315 else
2316   with_shared=no
2317 fi;
2318-echo "$as_me:3855: result: $with_shared" >&5
2319+echo "$as_me:3958: result: $with_shared" >&5
2320 echo "${ECHO_T}$with_shared" >&6
2321 test "$with_shared" = "yes" && cf_list_models="$cf_list_models shared"
2322
2323-echo "$as_me:3859: checking for specified models" >&5
2324+echo "$as_me:3962: checking for specified models" >&5
2325 echo $ECHO_N "checking for specified models... $ECHO_C" >&6
2326 test -z "$cf_list_models" && cf_list_models=normal
2327-echo "$as_me:3862: result: $cf_list_models" >&5
2328+echo "$as_me:3965: result: $cf_list_models" >&5
2329 echo "${ECHO_T}$cf_list_models" >&6
2330
2331 ### Use the first model as the default, and save its suffix for use in building
2332 ### up test-applications.
2333-echo "$as_me:3867: checking for default model" >&5
2334+echo "$as_me:3970: checking for default model" >&5
2335 echo $ECHO_N "checking for default model... $ECHO_C" >&6
2336 DFT_LWR_MODEL=`echo "$cf_list_models" | $AWK '{print $1}'`
2337-echo "$as_me:3870: result: $DFT_LWR_MODEL" >&5
2338+echo "$as_me:3973: result: $DFT_LWR_MODEL" >&5
2339 echo "${ECHO_T}$DFT_LWR_MODEL" >&6
2340
2341 DFT_UPR_MODEL=`echo "$DFT_LWR_MODEL" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%`
2342
2343-echo "$as_me:3875: checking for specific curses-directory" >&5
2344+echo "$as_me:3978: checking for specific curses-directory" >&5
2345 echo $ECHO_N "checking for specific curses-directory... $ECHO_C" >&6
2346
2347 # Check whether --with-curses-dir or --without-curses-dir was given.
2348@@ -3882,7 +3985,7 @@
2349 else
2350   cf_cv_curses_dir=no
2351 fi;
2352-echo "$as_me:3885: result: $cf_cv_curses_dir" >&5
2353+echo "$as_me:3988: result: $cf_cv_curses_dir" >&5
2354 echo "${ECHO_T}$cf_cv_curses_dir" >&6
2355
2356 if ( test -n "$cf_cv_curses_dir" && test "$cf_cv_curses_dir" != "no" )
2357@@ -3913,7 +4016,7 @@
2358 	withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%`
2359 	;;
2360 (*)
2361-	{ { echo "$as_me:3916: error: expected a pathname, not \"$withval\"" >&5
2362+	{ { echo "$as_me:4019: error: expected a pathname, not \"$withval\"" >&5
2363 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;}
2364    { (exit 1); exit 1; }; }
2365 	;;
2366@@ -3949,7 +4052,7 @@
2367 	CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir"
2368
2369 			  cat >conftest.$ac_ext <<_ACEOF
2370-#line 3952 "configure"
2371+#line 4055 "configure"
2372 #include "confdefs.h"
2373 #include <stdio.h>
2374 int
2375@@ -3961,16 +4064,16 @@
2376 }
2377 _ACEOF
2378 rm -f conftest.$ac_objext
2379-if { (eval echo "$as_me:3964: \"$ac_compile\"") >&5
2380+if { (eval echo "$as_me:4067: \"$ac_compile\"") >&5
2381   (eval $ac_compile) 2>&5
2382   ac_status=$?
2383-  echo "$as_me:3967: \$? = $ac_status" >&5
2384+  echo "$as_me:4070: \$? = $ac_status" >&5
2385   (exit $ac_status); } &&
2386          { ac_try='test -s conftest.$ac_objext'
2387-  { (eval echo "$as_me:3970: \"$ac_try\"") >&5
2388+  { (eval echo "$as_me:4073: \"$ac_try\"") >&5
2389   (eval $ac_try) 2>&5
2390   ac_status=$?
2391-  echo "$as_me:3973: \$? = $ac_status" >&5
2392+  echo "$as_me:4076: \$? = $ac_status" >&5
2393   (exit $ac_status); }; }; then
2394   :
2395 else
2396@@ -3987,7 +4090,7 @@
2397 		if test "$cf_have_incdir" = no ; then
2398 		  test -n "$verbose" && echo "	adding $cf_add_incdir to include-path" 1>&6
2399
2400-echo "${as_me:-configure}:3990: testing adding $cf_add_incdir to include-path ..." 1>&5
2401+echo "${as_me:-configure}:4093: testing adding $cf_add_incdir to include-path ..." 1>&5
2402
2403 		  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
2404
2405@@ -4023,7 +4126,7 @@
2406 			if test "$cf_have_libdir" = no ; then
2407 				test -n "$verbose" && echo "	adding $cf_add_libdir to library-path" 1>&6
2408
2409-echo "${as_me:-configure}:4026: testing adding $cf_add_libdir to library-path ..." 1>&5
2410+echo "${as_me:-configure}:4129: testing adding $cf_add_libdir to library-path ..." 1>&5
2411
2412 				LDFLAGS="-L$cf_add_libdir $LDFLAGS"
2413 			fi
2414@@ -4038,13 +4141,13 @@
2415 cf_have_ncuconfig=no
2416
2417 if test "x${PKG_CONFIG:=none}" != xnone; then
2418-	echo "$as_me:4041: checking pkg-config for $cf_ncuconfig_root" >&5
2419+	echo "$as_me:4144: checking pkg-config for $cf_ncuconfig_root" >&5
2420 echo $ECHO_N "checking pkg-config for $cf_ncuconfig_root... $ECHO_C" >&6
2421 	if "$PKG_CONFIG" --exists $cf_ncuconfig_root ; then
2422-		echo "$as_me:4044: result: yes" >&5
2423+		echo "$as_me:4147: result: yes" >&5
2424 echo "${ECHO_T}yes" >&6
2425
2426-		echo "$as_me:4047: checking if the $cf_ncuconfig_root package files work" >&5
2427+		echo "$as_me:4150: checking if the $cf_ncuconfig_root package files work" >&5
2428 echo $ECHO_N "checking if the $cf_ncuconfig_root package files work... $ECHO_C" >&6
2429 		cf_have_ncuconfig=unknown
2430
2431@@ -4166,7 +4269,7 @@
2432 LIBS="$cf_add_libs"
2433
2434 		cat >conftest.$ac_ext <<_ACEOF
2435-#line 4169 "configure"
2436+#line 4272 "configure"
2437 #include "confdefs.h"
2438 #include <${cf_cv_ncurses_header:-curses.h}>
2439 int
2440@@ -4178,37 +4281,37 @@
2441 }
2442 _ACEOF
2443 rm -f conftest.$ac_objext conftest$ac_exeext
2444-if { (eval echo "$as_me:4181: \"$ac_link\"") >&5
2445+if { (eval echo "$as_me:4284: \"$ac_link\"") >&5
2446   (eval $ac_link) 2>&5
2447   ac_status=$?
2448-  echo "$as_me:4184: \$? = $ac_status" >&5
2449+  echo "$as_me:4287: \$? = $ac_status" >&5
2450   (exit $ac_status); } &&
2451          { ac_try='test -s conftest$ac_exeext'
2452-  { (eval echo "$as_me:4187: \"$ac_try\"") >&5
2453+  { (eval echo "$as_me:4290: \"$ac_try\"") >&5
2454   (eval $ac_try) 2>&5
2455   ac_status=$?
2456-  echo "$as_me:4190: \$? = $ac_status" >&5
2457+  echo "$as_me:4293: \$? = $ac_status" >&5
2458   (exit $ac_status); }; }; then
2459   if test "$cross_compiling" = yes; then
2460   cf_have_ncuconfig=maybe
2461 else
2462   cat >conftest.$ac_ext <<_ACEOF
2463-#line 4196 "configure"
2464+#line 4299 "configure"
2465 #include "confdefs.h"
2466 #include <${cf_cv_ncurses_header:-curses.h}>
2467 				int main(void)
2468 				{ char *xx = curses_version(); return (xx == 0); }
2469 _ACEOF
2470 rm -f conftest$ac_exeext
2471-if { (eval echo "$as_me:4203: \"$ac_link\"") >&5
2472+if { (eval echo "$as_me:4306: \"$ac_link\"") >&5
2473   (eval $ac_link) 2>&5
2474   ac_status=$?
2475-  echo "$as_me:4206: \$? = $ac_status" >&5
2476+  echo "$as_me:4309: \$? = $ac_status" >&5
2477   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
2478-  { (eval echo "$as_me:4208: \"$ac_try\"") >&5
2479+  { (eval echo "$as_me:4311: \"$ac_try\"") >&5
2480   (eval $ac_try) 2>&5
2481   ac_status=$?
2482-  echo "$as_me:4211: \$? = $ac_status" >&5
2483+  echo "$as_me:4314: \$? = $ac_status" >&5
2484   (exit $ac_status); }; }; then
2485   cf_have_ncuconfig=yes
2486 else
2487@@ -4225,7 +4328,7 @@
2488 cf_have_ncuconfig=no
2489 fi
2490 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
2491-		echo "$as_me:4228: result: $cf_have_ncuconfig" >&5
2492+		echo "$as_me:4331: result: $cf_have_ncuconfig" >&5
2493 echo "${ECHO_T}$cf_have_ncuconfig" >&6
2494 		test "$cf_have_ncuconfig" = maybe && cf_have_ncuconfig=yes
2495 		if test "$cf_have_ncuconfig" != "yes"
2496@@ -4241,7 +4344,7 @@
2497
2498 			NCURSES_CONFIG_PKG=$cf_ncuconfig_root
2499
2500-echo "$as_me:4244: checking for terminfo header" >&5
2501+echo "$as_me:4347: checking for terminfo header" >&5
2502 echo $ECHO_N "checking for terminfo header... $ECHO_C" >&6
2503 if test "${cf_cv_term_header+set}" = set; then
2504   echo $ECHO_N "(cached) $ECHO_C" >&6
2505@@ -4259,7 +4362,7 @@
2506 for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h"
2507 do
2508 cat >conftest.$ac_ext <<_ACEOF
2509-#line 4262 "configure"
2510+#line 4365 "configure"
2511 #include "confdefs.h"
2512 #include <stdio.h>
2513 #include <${cf_cv_ncurses_header:-curses.h}>
2514@@ -4274,16 +4377,16 @@
2515 }
2516 _ACEOF
2517 rm -f conftest.$ac_objext
2518-if { (eval echo "$as_me:4277: \"$ac_compile\"") >&5
2519+if { (eval echo "$as_me:4380: \"$ac_compile\"") >&5
2520   (eval $ac_compile) 2>&5
2521   ac_status=$?
2522-  echo "$as_me:4280: \$? = $ac_status" >&5
2523+  echo "$as_me:4383: \$? = $ac_status" >&5
2524   (exit $ac_status); } &&
2525          { ac_try='test -s conftest.$ac_objext'
2526-  { (eval echo "$as_me:4283: \"$ac_try\"") >&5
2527+  { (eval echo "$as_me:4386: \"$ac_try\"") >&5
2528   (eval $ac_try) 2>&5
2529   ac_status=$?
2530-  echo "$as_me:4286: \$? = $ac_status" >&5
2531+  echo "$as_me:4389: \$? = $ac_status" >&5
2532   (exit $ac_status); }; }; then
2533
2534 	cf_cv_term_header="$cf_test"
2535@@ -4299,7 +4402,7 @@
2536 done
2537
2538 fi
2539-echo "$as_me:4302: result: $cf_cv_term_header" >&5
2540+echo "$as_me:4405: result: $cf_cv_term_header" >&5
2541 echo "${ECHO_T}$cf_cv_term_header" >&6
2542
2543 # Set definitions to allow ifdef'ing to accommodate subdirectories
2544@@ -4334,7 +4437,7 @@
2545 		fi
2546
2547 	else
2548-		echo "$as_me:4337: result: no" >&5
2549+		echo "$as_me:4440: result: no" >&5
2550 echo "${ECHO_T}no" >&6
2551 		NCURSES_CONFIG_PKG=none
2552 	fi
2553@@ -4350,7 +4453,7 @@
2554   do
2555     # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
2556 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
2557-echo "$as_me:4353: checking for $ac_word" >&5
2558+echo "$as_me:4456: checking for $ac_word" >&5
2559 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
2560 if test "${ac_cv_prog_NCURSES_CONFIG+set}" = set; then
2561   echo $ECHO_N "(cached) $ECHO_C" >&6
2562@@ -4365,7 +4468,7 @@
2563   test -z "$ac_dir" && ac_dir=.
2564   $as_executable_p "$ac_dir/$ac_word" || continue
2565 ac_cv_prog_NCURSES_CONFIG="$ac_tool_prefix$ac_prog"
2566-echo "$as_me:4368: found $ac_dir/$ac_word" >&5
2567+echo "$as_me:4471: found $ac_dir/$ac_word" >&5
2568 break
2569 done
2570
2571@@ -4373,10 +4476,10 @@
2572 fi
2573 NCURSES_CONFIG=$ac_cv_prog_NCURSES_CONFIG
2574 if test -n "$NCURSES_CONFIG"; then
2575-  echo "$as_me:4376: result: $NCURSES_CONFIG" >&5
2576+  echo "$as_me:4479: result: $NCURSES_CONFIG" >&5
2577 echo "${ECHO_T}$NCURSES_CONFIG" >&6
2578 else
2579-  echo "$as_me:4379: result: no" >&5
2580+  echo "$as_me:4482: result: no" >&5
2581 echo "${ECHO_T}no" >&6
2582 fi
2583
2584@@ -4389,7 +4492,7 @@
2585 do
2586   # Extract the first word of "$ac_prog", so it can be a program name with args.
2587 set dummy $ac_prog; ac_word=$2
2588-echo "$as_me:4392: checking for $ac_word" >&5
2589+echo "$as_me:4495: checking for $ac_word" >&5
2590 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
2591 if test "${ac_cv_prog_ac_ct_NCURSES_CONFIG+set}" = set; then
2592   echo $ECHO_N "(cached) $ECHO_C" >&6
2593@@ -4404,7 +4507,7 @@
2594   test -z "$ac_dir" && ac_dir=.
2595   $as_executable_p "$ac_dir/$ac_word" || continue
2596 ac_cv_prog_ac_ct_NCURSES_CONFIG="$ac_prog"
2597-echo "$as_me:4407: found $ac_dir/$ac_word" >&5
2598+echo "$as_me:4510: found $ac_dir/$ac_word" >&5
2599 break
2600 done
2601
2602@@ -4412,10 +4515,10 @@
2603 fi
2604 ac_ct_NCURSES_CONFIG=$ac_cv_prog_ac_ct_NCURSES_CONFIG
2605 if test -n "$ac_ct_NCURSES_CONFIG"; then
2606-  echo "$as_me:4415: result: $ac_ct_NCURSES_CONFIG" >&5
2607+  echo "$as_me:4518: result: $ac_ct_NCURSES_CONFIG" >&5
2608 echo "${ECHO_T}$ac_ct_NCURSES_CONFIG" >&6
2609 else
2610-  echo "$as_me:4418: result: no" >&5
2611+  echo "$as_me:4521: result: no" >&5
2612 echo "${ECHO_T}no" >&6
2613 fi
2614
2615@@ -4544,7 +4647,7 @@
2616
2617 		# even with config script, some packages use no-override for curses.h
2618
2619-echo "$as_me:4547: checking if we have identified curses headers" >&5
2620+echo "$as_me:4650: checking if we have identified curses headers" >&5
2621 echo $ECHO_N "checking if we have identified curses headers... $ECHO_C" >&6
2622 if test "${cf_cv_ncurses_header+set}" = set; then
2623   echo $ECHO_N "(cached) $ECHO_C" >&6
2624@@ -4556,7 +4659,7 @@
2625 	curses.h ncurses/curses.h
2626 do
2627 cat >conftest.$ac_ext <<_ACEOF
2628-#line 4559 "configure"
2629+#line 4662 "configure"
2630 #include "confdefs.h"
2631 #include <${cf_header}>
2632 int
2633@@ -4568,16 +4671,16 @@
2634 }
2635 _ACEOF
2636 rm -f conftest.$ac_objext
2637-if { (eval echo "$as_me:4571: \"$ac_compile\"") >&5
2638+if { (eval echo "$as_me:4674: \"$ac_compile\"") >&5
2639   (eval $ac_compile) 2>&5
2640   ac_status=$?
2641-  echo "$as_me:4574: \$? = $ac_status" >&5
2642+  echo "$as_me:4677: \$? = $ac_status" >&5
2643   (exit $ac_status); } &&
2644          { ac_try='test -s conftest.$ac_objext'
2645-  { (eval echo "$as_me:4577: \"$ac_try\"") >&5
2646+  { (eval echo "$as_me:4680: \"$ac_try\"") >&5
2647   (eval $ac_try) 2>&5
2648   ac_status=$?
2649-  echo "$as_me:4580: \$? = $ac_status" >&5
2650+  echo "$as_me:4683: \$? = $ac_status" >&5
2651   (exit $ac_status); }; }; then
2652   cf_cv_ncurses_header=$cf_header; break
2653 else
2654@@ -4588,11 +4691,11 @@
2655 done
2656
2657 fi
2658-echo "$as_me:4591: result: $cf_cv_ncurses_header" >&5
2659+echo "$as_me:4694: result: $cf_cv_ncurses_header" >&5
2660 echo "${ECHO_T}$cf_cv_ncurses_header" >&6
2661
2662 if test "$cf_cv_ncurses_header" = none ; then
2663-	{ { echo "$as_me:4595: error: No curses header-files found" >&5
2664+	{ { echo "$as_me:4698: error: No curses header-files found" >&5
2665 echo "$as_me: error: No curses header-files found" >&2;}
2666    { (exit 1); exit 1; }; }
2667 fi
2668@@ -4602,23 +4705,23 @@
2669 for ac_header in $cf_cv_ncurses_header
2670 do
2671 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
2672-echo "$as_me:4605: checking for $ac_header" >&5
2673+echo "$as_me:4708: checking for $ac_header" >&5
2674 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
2675 if eval "test \"\${$as_ac_Header+set}\" = set"; then
2676   echo $ECHO_N "(cached) $ECHO_C" >&6
2677 else
2678   cat >conftest.$ac_ext <<_ACEOF
2679-#line 4611 "configure"
2680+#line 4714 "configure"
2681 #include "confdefs.h"
2682 #include <$ac_header>
2683 _ACEOF
2684-if { (eval echo "$as_me:4615: \"$ac_cpp conftest.$ac_ext\"") >&5
2685+if { (eval echo "$as_me:4718: \"$ac_cpp conftest.$ac_ext\"") >&5
2686   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
2687   ac_status=$?
2688   egrep -v '^ *\+' conftest.er1 >conftest.err
2689   rm -f conftest.er1
2690   cat conftest.err >&5
2691-  echo "$as_me:4621: \$? = $ac_status" >&5
2692+  echo "$as_me:4724: \$? = $ac_status" >&5
2693   (exit $ac_status); } >/dev/null; then
2694   if test -s conftest.err; then
2695     ac_cpp_err=$ac_c_preproc_warn_flag
2696@@ -4637,7 +4740,7 @@
2697 fi
2698 rm -f conftest.err conftest.$ac_ext
2699 fi
2700-echo "$as_me:4640: result: `eval echo '${'$as_ac_Header'}'`" >&5
2701+echo "$as_me:4743: result: `eval echo '${'$as_ac_Header'}'`" >&5
2702 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
2703 if test `eval echo '${'$as_ac_Header'}'` = yes; then
2704   cat >>confdefs.h <<EOF
2705@@ -4693,7 +4796,7 @@
2706 	CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir"
2707
2708 			  cat >conftest.$ac_ext <<_ACEOF
2709-#line 4696 "configure"
2710+#line 4799 "configure"
2711 #include "confdefs.h"
2712 #include <stdio.h>
2713 int
2714@@ -4705,16 +4808,16 @@
2715 }
2716 _ACEOF
2717 rm -f conftest.$ac_objext
2718-if { (eval echo "$as_me:4708: \"$ac_compile\"") >&5
2719+if { (eval echo "$as_me:4811: \"$ac_compile\"") >&5
2720   (eval $ac_compile) 2>&5
2721   ac_status=$?
2722-  echo "$as_me:4711: \$? = $ac_status" >&5
2723+  echo "$as_me:4814: \$? = $ac_status" >&5
2724   (exit $ac_status); } &&
2725          { ac_try='test -s conftest.$ac_objext'
2726-  { (eval echo "$as_me:4714: \"$ac_try\"") >&5
2727+  { (eval echo "$as_me:4817: \"$ac_try\"") >&5
2728   (eval $ac_try) 2>&5
2729   ac_status=$?
2730-  echo "$as_me:4717: \$? = $ac_status" >&5
2731+  echo "$as_me:4820: \$? = $ac_status" >&5
2732   (exit $ac_status); }; }; then
2733   :
2734 else
2735@@ -4731,7 +4834,7 @@
2736 		if test "$cf_have_incdir" = no ; then
2737 		  test -n "$verbose" && echo "	adding $cf_add_incdir to include-path" 1>&6
2738
2739-echo "${as_me:-configure}:4734: testing adding $cf_add_incdir to include-path ..." 1>&5
2740+echo "${as_me:-configure}:4837: testing adding $cf_add_incdir to include-path ..." 1>&5
2741
2742 		  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
2743
2744@@ -4750,7 +4853,7 @@
2745
2746 }
2747
2748-echo "$as_me:4753: checking for $cf_ncuhdr_root header in include-path" >&5
2749+echo "$as_me:4856: checking for $cf_ncuhdr_root header in include-path" >&5
2750 echo $ECHO_N "checking for $cf_ncuhdr_root header in include-path... $ECHO_C" >&6
2751 if test "${cf_cv_ncurses_h+set}" = set; then
2752   echo $ECHO_N "(cached) $ECHO_C" >&6
2753@@ -4762,7 +4865,7 @@
2754 	do
2755
2756 	cat >conftest.$ac_ext <<_ACEOF
2757-#line 4765 "configure"
2758+#line 4868 "configure"
2759 #include "confdefs.h"
2760
2761 #include <$cf_header>
2762@@ -4786,16 +4889,16 @@
2763 }
2764 _ACEOF
2765 rm -f conftest.$ac_objext
2766-if { (eval echo "$as_me:4789: \"$ac_compile\"") >&5
2767+if { (eval echo "$as_me:4892: \"$ac_compile\"") >&5
2768   (eval $ac_compile) 2>&5
2769   ac_status=$?
2770-  echo "$as_me:4792: \$? = $ac_status" >&5
2771+  echo "$as_me:4895: \$? = $ac_status" >&5
2772   (exit $ac_status); } &&
2773          { ac_try='test -s conftest.$ac_objext'
2774-  { (eval echo "$as_me:4795: \"$ac_try\"") >&5
2775+  { (eval echo "$as_me:4898: \"$ac_try\"") >&5
2776   (eval $ac_try) 2>&5
2777   ac_status=$?
2778-  echo "$as_me:4798: \$? = $ac_status" >&5
2779+  echo "$as_me:4901: \$? = $ac_status" >&5
2780   (exit $ac_status); }; }; then
2781   cf_cv_ncurses_h=$cf_header
2782
2783@@ -4810,14 +4913,14 @@
2784 	done
2785
2786 fi
2787-echo "$as_me:4813: result: $cf_cv_ncurses_h" >&5
2788+echo "$as_me:4916: result: $cf_cv_ncurses_h" >&5
2789 echo "${ECHO_T}$cf_cv_ncurses_h" >&6
2790
2791 if test "$cf_cv_ncurses_h" != no ; then
2792 	cf_cv_ncurses_header=$cf_cv_ncurses_h
2793 else
2794
2795-echo "$as_me:4820: checking for $cf_ncuhdr_root include-path" >&5
2796+echo "$as_me:4923: checking for $cf_ncuhdr_root include-path" >&5
2797 echo $ECHO_N "checking for $cf_ncuhdr_root include-path... $ECHO_C" >&6
2798 if test "${cf_cv_ncurses_h2+set}" = set; then
2799   echo $ECHO_N "(cached) $ECHO_C" >&6
2800@@ -4938,7 +5041,7 @@
2801 	CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir"
2802
2803 			  cat >conftest.$ac_ext <<_ACEOF
2804-#line 4941 "configure"
2805+#line 5044 "configure"
2806 #include "confdefs.h"
2807 #include <stdio.h>
2808 int
2809@@ -4950,16 +5053,16 @@
2810 }
2811 _ACEOF
2812 rm -f conftest.$ac_objext
2813-if { (eval echo "$as_me:4953: \"$ac_compile\"") >&5
2814+if { (eval echo "$as_me:5056: \"$ac_compile\"") >&5
2815   (eval $ac_compile) 2>&5
2816   ac_status=$?
2817-  echo "$as_me:4956: \$? = $ac_status" >&5
2818+  echo "$as_me:5059: \$? = $ac_status" >&5
2819   (exit $ac_status); } &&
2820          { ac_try='test -s conftest.$ac_objext'
2821-  { (eval echo "$as_me:4959: \"$ac_try\"") >&5
2822+  { (eval echo "$as_me:5062: \"$ac_try\"") >&5
2823   (eval $ac_try) 2>&5
2824   ac_status=$?
2825-  echo "$as_me:4962: \$? = $ac_status" >&5
2826+  echo "$as_me:5065: \$? = $ac_status" >&5
2827   (exit $ac_status); }; }; then
2828   :
2829 else
2830@@ -4976,7 +5079,7 @@
2831 		if test "$cf_have_incdir" = no ; then
2832 		  test -n "$verbose" && echo "	adding $cf_add_incdir to include-path" 1>&6
2833
2834-echo "${as_me:-configure}:4979: testing adding $cf_add_incdir to include-path ..." 1>&5
2835+echo "${as_me:-configure}:5082: testing adding $cf_add_incdir to include-path ..." 1>&5
2836
2837 		  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
2838
2839@@ -4999,7 +5102,7 @@
2840 		do
2841
2842 	cat >conftest.$ac_ext <<_ACEOF
2843-#line 5002 "configure"
2844+#line 5105 "configure"
2845 #include "confdefs.h"
2846
2847 #include <$cf_header>
2848@@ -5023,16 +5126,16 @@
2849 }
2850 _ACEOF
2851 rm -f conftest.$ac_objext
2852-if { (eval echo "$as_me:5026: \"$ac_compile\"") >&5
2853+if { (eval echo "$as_me:5129: \"$ac_compile\"") >&5
2854   (eval $ac_compile) 2>&5
2855   ac_status=$?
2856-  echo "$as_me:5029: \$? = $ac_status" >&5
2857+  echo "$as_me:5132: \$? = $ac_status" >&5
2858   (exit $ac_status); } &&
2859          { ac_try='test -s conftest.$ac_objext'
2860-  { (eval echo "$as_me:5032: \"$ac_try\"") >&5
2861+  { (eval echo "$as_me:5135: \"$ac_try\"") >&5
2862   (eval $ac_try) 2>&5
2863   ac_status=$?
2864-  echo "$as_me:5035: \$? = $ac_status" >&5
2865+  echo "$as_me:5138: \$? = $ac_status" >&5
2866   (exit $ac_status); }; }; then
2867   cf_cv_ncurses_h2=$cf_header
2868
2869@@ -5053,12 +5156,12 @@
2870 		CPPFLAGS="$cf_save2_CPPFLAGS"
2871 		test "$cf_cv_ncurses_h2" != no && break
2872 	done
2873-	test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:5056: error: not found" >&5
2874+	test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:5159: error: not found" >&5
2875 echo "$as_me: error: not found" >&2;}
2876    { (exit 1); exit 1; }; }
2877
2878 fi
2879-echo "$as_me:5061: result: $cf_cv_ncurses_h2" >&5
2880+echo "$as_me:5164: result: $cf_cv_ncurses_h2" >&5
2881 echo "${ECHO_T}$cf_cv_ncurses_h2" >&6
2882
2883 	cf_1st_incdir=`echo $cf_cv_ncurses_h2 | sed -e 's%/[^/]*$%%'`
2884@@ -5094,7 +5197,7 @@
2885 	CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir"
2886
2887 			  cat >conftest.$ac_ext <<_ACEOF
2888-#line 5097 "configure"
2889+#line 5200 "configure"
2890 #include "confdefs.h"
2891 #include <stdio.h>
2892 int
2893@@ -5106,16 +5209,16 @@
2894 }
2895 _ACEOF
2896 rm -f conftest.$ac_objext
2897-if { (eval echo "$as_me:5109: \"$ac_compile\"") >&5
2898+if { (eval echo "$as_me:5212: \"$ac_compile\"") >&5
2899   (eval $ac_compile) 2>&5
2900   ac_status=$?
2901-  echo "$as_me:5112: \$? = $ac_status" >&5
2902+  echo "$as_me:5215: \$? = $ac_status" >&5
2903   (exit $ac_status); } &&
2904          { ac_try='test -s conftest.$ac_objext'
2905-  { (eval echo "$as_me:5115: \"$ac_try\"") >&5
2906+  { (eval echo "$as_me:5218: \"$ac_try\"") >&5
2907   (eval $ac_try) 2>&5
2908   ac_status=$?
2909-  echo "$as_me:5118: \$? = $ac_status" >&5
2910+  echo "$as_me:5221: \$? = $ac_status" >&5
2911   (exit $ac_status); }; }; then
2912   :
2913 else
2914@@ -5132,7 +5235,7 @@
2915 		if test "$cf_have_incdir" = no ; then
2916 		  test -n "$verbose" && echo "	adding $cf_add_incdir to include-path" 1>&6
2917
2918-echo "${as_me:-configure}:5135: testing adding $cf_add_incdir to include-path ..." 1>&5
2919+echo "${as_me:-configure}:5238: testing adding $cf_add_incdir to include-path ..." 1>&5
2920
2921 		  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
2922
2923@@ -5180,7 +5283,7 @@
2924 	;;
2925 esac
2926
2927-echo "$as_me:5183: checking for terminfo header" >&5
2928+echo "$as_me:5286: checking for terminfo header" >&5
2929 echo $ECHO_N "checking for terminfo header... $ECHO_C" >&6
2930 if test "${cf_cv_term_header+set}" = set; then
2931   echo $ECHO_N "(cached) $ECHO_C" >&6
2932@@ -5198,7 +5301,7 @@
2933 for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h"
2934 do
2935 cat >conftest.$ac_ext <<_ACEOF
2936-#line 5201 "configure"
2937+#line 5304 "configure"
2938 #include "confdefs.h"
2939 #include <stdio.h>
2940 #include <${cf_cv_ncurses_header:-curses.h}>
2941@@ -5213,16 +5316,16 @@
2942 }
2943 _ACEOF
2944 rm -f conftest.$ac_objext
2945-if { (eval echo "$as_me:5216: \"$ac_compile\"") >&5
2946+if { (eval echo "$as_me:5319: \"$ac_compile\"") >&5
2947   (eval $ac_compile) 2>&5
2948   ac_status=$?
2949-  echo "$as_me:5219: \$? = $ac_status" >&5
2950+  echo "$as_me:5322: \$? = $ac_status" >&5
2951   (exit $ac_status); } &&
2952          { ac_try='test -s conftest.$ac_objext'
2953-  { (eval echo "$as_me:5222: \"$ac_try\"") >&5
2954+  { (eval echo "$as_me:5325: \"$ac_try\"") >&5
2955   (eval $ac_try) 2>&5
2956   ac_status=$?
2957-  echo "$as_me:5225: \$? = $ac_status" >&5
2958+  echo "$as_me:5328: \$? = $ac_status" >&5
2959   (exit $ac_status); }; }; then
2960
2961 	cf_cv_term_header="$cf_test"
2962@@ -5238,7 +5341,7 @@
2963 done
2964
2965 fi
2966-echo "$as_me:5241: result: $cf_cv_term_header" >&5
2967+echo "$as_me:5344: result: $cf_cv_term_header" >&5
2968 echo "${ECHO_T}$cf_cv_term_header" >&6
2969
2970 # Set definitions to allow ifdef'ing to accommodate subdirectories
2971@@ -5276,7 +5379,7 @@
2972 #define NCURSES 1
2973 EOF
2974
2975-echo "$as_me:5279: checking for ncurses version" >&5
2976+echo "$as_me:5382: checking for ncurses version" >&5
2977 echo $ECHO_N "checking for ncurses version... $ECHO_C" >&6
2978 if test "${cf_cv_ncurses_version+set}" = set; then
2979   echo $ECHO_N "(cached) $ECHO_C" >&6
2980@@ -5302,10 +5405,10 @@
2981 #endif
2982 EOF
2983 	cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out"
2984-	{ (eval echo "$as_me:5305: \"$cf_try\"") >&5
2985+	{ (eval echo "$as_me:5408: \"$cf_try\"") >&5
2986   (eval $cf_try) 2>&5
2987   ac_status=$?
2988-  echo "$as_me:5308: \$? = $ac_status" >&5
2989+  echo "$as_me:5411: \$? = $ac_status" >&5
2990   (exit $ac_status); }
2991 	if test -f conftest.out ; then
2992 		cf_out=`cat conftest.out | sed -e 's%^Autoconf %%' -e 's%^[^"]*"%%' -e 's%".*%%'`
2993@@ -5315,7 +5418,7 @@
2994
2995 else
2996   cat >conftest.$ac_ext <<_ACEOF
2997-#line 5318 "configure"
2998+#line 5421 "configure"
2999 #include "confdefs.h"
3000
3001 #include <${cf_cv_ncurses_header:-curses.h}>
3002@@ -5340,15 +5443,15 @@
3003 }
3004 _ACEOF
3005 rm -f conftest$ac_exeext
3006-if { (eval echo "$as_me:5343: \"$ac_link\"") >&5
3007+if { (eval echo "$as_me:5446: \"$ac_link\"") >&5
3008   (eval $ac_link) 2>&5
3009   ac_status=$?
3010-  echo "$as_me:5346: \$? = $ac_status" >&5
3011+  echo "$as_me:5449: \$? = $ac_status" >&5
3012   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
3013-  { (eval echo "$as_me:5348: \"$ac_try\"") >&5
3014+  { (eval echo "$as_me:5451: \"$ac_try\"") >&5
3015   (eval $ac_try) 2>&5
3016   ac_status=$?
3017-  echo "$as_me:5351: \$? = $ac_status" >&5
3018+  echo "$as_me:5454: \$? = $ac_status" >&5
3019   (exit $ac_status); }; }; then
3020
3021 	cf_cv_ncurses_version=`cat $cf_tempfile`
3022@@ -5362,7 +5465,7 @@
3023 	rm -f $cf_tempfile
3024
3025 fi
3026-echo "$as_me:5365: result: $cf_cv_ncurses_version" >&5
3027+echo "$as_me:5468: result: $cf_cv_ncurses_version" >&5
3028 echo "${ECHO_T}$cf_cv_ncurses_version" >&6
3029 test "$cf_cv_ncurses_version" = no ||
3030 cat >>confdefs.h <<\EOF
3031@@ -5375,7 +5478,7 @@
3032 	# to link gpm.
3033 cf_ncurses_LIBS=""
3034 cf_ncurses_SAVE="$LIBS"
3035-echo "$as_me:5378: checking for Gpm_Open in -lgpm" >&5
3036+echo "$as_me:5481: checking for Gpm_Open in -lgpm" >&5
3037 echo $ECHO_N "checking for Gpm_Open in -lgpm... $ECHO_C" >&6
3038 if test "${ac_cv_lib_gpm_Gpm_Open+set}" = set; then
3039   echo $ECHO_N "(cached) $ECHO_C" >&6
3040@@ -5383,7 +5486,7 @@
3041   ac_check_lib_save_LIBS=$LIBS
3042 LIBS="-lgpm  $LIBS"
3043 cat >conftest.$ac_ext <<_ACEOF
3044-#line 5386 "configure"
3045+#line 5489 "configure"
3046 #include "confdefs.h"
3047
3048 /* Override any gcc2 internal prototype to avoid an error.  */
3049@@ -5402,16 +5505,16 @@
3050 }
3051 _ACEOF
3052 rm -f conftest.$ac_objext conftest$ac_exeext
3053-if { (eval echo "$as_me:5405: \"$ac_link\"") >&5
3054+if { (eval echo "$as_me:5508: \"$ac_link\"") >&5
3055   (eval $ac_link) 2>&5
3056   ac_status=$?
3057-  echo "$as_me:5408: \$? = $ac_status" >&5
3058+  echo "$as_me:5511: \$? = $ac_status" >&5
3059   (exit $ac_status); } &&
3060          { ac_try='test -s conftest$ac_exeext'
3061-  { (eval echo "$as_me:5411: \"$ac_try\"") >&5
3062+  { (eval echo "$as_me:5514: \"$ac_try\"") >&5
3063   (eval $ac_try) 2>&5
3064   ac_status=$?
3065-  echo "$as_me:5414: \$? = $ac_status" >&5
3066+  echo "$as_me:5517: \$? = $ac_status" >&5
3067   (exit $ac_status); }; }; then
3068   ac_cv_lib_gpm_Gpm_Open=yes
3069 else
3070@@ -5422,10 +5525,10 @@
3071 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3072 LIBS=$ac_check_lib_save_LIBS
3073 fi
3074-echo "$as_me:5425: result: $ac_cv_lib_gpm_Gpm_Open" >&5
3075+echo "$as_me:5528: result: $ac_cv_lib_gpm_Gpm_Open" >&5
3076 echo "${ECHO_T}$ac_cv_lib_gpm_Gpm_Open" >&6
3077 if test $ac_cv_lib_gpm_Gpm_Open = yes; then
3078-  echo "$as_me:5428: checking for initscr in -lgpm" >&5
3079+  echo "$as_me:5531: checking for initscr in -lgpm" >&5
3080 echo $ECHO_N "checking for initscr in -lgpm... $ECHO_C" >&6
3081 if test "${ac_cv_lib_gpm_initscr+set}" = set; then
3082   echo $ECHO_N "(cached) $ECHO_C" >&6
3083@@ -5433,7 +5536,7 @@
3084   ac_check_lib_save_LIBS=$LIBS
3085 LIBS="-lgpm  $LIBS"
3086 cat >conftest.$ac_ext <<_ACEOF
3087-#line 5436 "configure"
3088+#line 5539 "configure"
3089 #include "confdefs.h"
3090
3091 /* Override any gcc2 internal prototype to avoid an error.  */
3092@@ -5452,16 +5555,16 @@
3093 }
3094 _ACEOF
3095 rm -f conftest.$ac_objext conftest$ac_exeext
3096-if { (eval echo "$as_me:5455: \"$ac_link\"") >&5
3097+if { (eval echo "$as_me:5558: \"$ac_link\"") >&5
3098   (eval $ac_link) 2>&5
3099   ac_status=$?
3100-  echo "$as_me:5458: \$? = $ac_status" >&5
3101+  echo "$as_me:5561: \$? = $ac_status" >&5
3102   (exit $ac_status); } &&
3103          { ac_try='test -s conftest$ac_exeext'
3104-  { (eval echo "$as_me:5461: \"$ac_try\"") >&5
3105+  { (eval echo "$as_me:5564: \"$ac_try\"") >&5
3106   (eval $ac_try) 2>&5
3107   ac_status=$?
3108-  echo "$as_me:5464: \$? = $ac_status" >&5
3109+  echo "$as_me:5567: \$? = $ac_status" >&5
3110   (exit $ac_status); }; }; then
3111   ac_cv_lib_gpm_initscr=yes
3112 else
3113@@ -5472,7 +5575,7 @@
3114 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3115 LIBS=$ac_check_lib_save_LIBS
3116 fi
3117-echo "$as_me:5475: result: $ac_cv_lib_gpm_initscr" >&5
3118+echo "$as_me:5578: result: $ac_cv_lib_gpm_initscr" >&5
3119 echo "${ECHO_T}$ac_cv_lib_gpm_initscr" >&6
3120 if test $ac_cv_lib_gpm_initscr = yes; then
3121   LIBS="$cf_ncurses_SAVE"
3122@@ -5487,7 +5590,7 @@
3123 	# This is only necessary if you are linking against an obsolete
3124 	# version of ncurses (but it should do no harm, since it's static).
3125 	if test "$cf_nculib_root" = ncurses ; then
3126-		echo "$as_me:5490: checking for tgoto in -lmytinfo" >&5
3127+		echo "$as_me:5593: checking for tgoto in -lmytinfo" >&5
3128 echo $ECHO_N "checking for tgoto in -lmytinfo... $ECHO_C" >&6
3129 if test "${ac_cv_lib_mytinfo_tgoto+set}" = set; then
3130   echo $ECHO_N "(cached) $ECHO_C" >&6
3131@@ -5495,7 +5598,7 @@
3132   ac_check_lib_save_LIBS=$LIBS
3133 LIBS="-lmytinfo  $LIBS"
3134 cat >conftest.$ac_ext <<_ACEOF
3135-#line 5498 "configure"
3136+#line 5601 "configure"
3137 #include "confdefs.h"
3138
3139 /* Override any gcc2 internal prototype to avoid an error.  */
3140@@ -5514,16 +5617,16 @@
3141 }
3142 _ACEOF
3143 rm -f conftest.$ac_objext conftest$ac_exeext
3144-if { (eval echo "$as_me:5517: \"$ac_link\"") >&5
3145+if { (eval echo "$as_me:5620: \"$ac_link\"") >&5
3146   (eval $ac_link) 2>&5
3147   ac_status=$?
3148-  echo "$as_me:5520: \$? = $ac_status" >&5
3149+  echo "$as_me:5623: \$? = $ac_status" >&5
3150   (exit $ac_status); } &&
3151          { ac_try='test -s conftest$ac_exeext'
3152-  { (eval echo "$as_me:5523: \"$ac_try\"") >&5
3153+  { (eval echo "$as_me:5626: \"$ac_try\"") >&5
3154   (eval $ac_try) 2>&5
3155   ac_status=$?
3156-  echo "$as_me:5526: \$? = $ac_status" >&5
3157+  echo "$as_me:5629: \$? = $ac_status" >&5
3158   (exit $ac_status); }; }; then
3159   ac_cv_lib_mytinfo_tgoto=yes
3160 else
3161@@ -5534,7 +5637,7 @@
3162 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3163 LIBS=$ac_check_lib_save_LIBS
3164 fi
3165-echo "$as_me:5537: result: $ac_cv_lib_mytinfo_tgoto" >&5
3166+echo "$as_me:5640: result: $ac_cv_lib_mytinfo_tgoto" >&5
3167 echo "${ECHO_T}$ac_cv_lib_mytinfo_tgoto" >&6
3168 if test $ac_cv_lib_mytinfo_tgoto = yes; then
3169   cf_ncurses_LIBS="-lmytinfo $cf_ncurses_LIBS"
3170@@ -5583,13 +5686,13 @@
3171
3172 	eval 'cf_cv_have_lib_'$cf_nculib_root'=no'
3173 	cf_libdir=""
3174-	echo "$as_me:5586: checking for initscr" >&5
3175+	echo "$as_me:5689: checking for initscr" >&5
3176 echo $ECHO_N "checking for initscr... $ECHO_C" >&6
3177 if test "${ac_cv_func_initscr+set}" = set; then
3178   echo $ECHO_N "(cached) $ECHO_C" >&6
3179 else
3180   cat >conftest.$ac_ext <<_ACEOF
3181-#line 5592 "configure"
3182+#line 5695 "configure"
3183 #include "confdefs.h"
3184 #define initscr autoconf_temporary
3185 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
3186@@ -5620,16 +5723,16 @@
3187 }
3188 _ACEOF
3189 rm -f conftest.$ac_objext conftest$ac_exeext
3190-if { (eval echo "$as_me:5623: \"$ac_link\"") >&5
3191+if { (eval echo "$as_me:5726: \"$ac_link\"") >&5
3192   (eval $ac_link) 2>&5
3193   ac_status=$?
3194-  echo "$as_me:5626: \$? = $ac_status" >&5
3195+  echo "$as_me:5729: \$? = $ac_status" >&5
3196   (exit $ac_status); } &&
3197          { ac_try='test -s conftest$ac_exeext'
3198-  { (eval echo "$as_me:5629: \"$ac_try\"") >&5
3199+  { (eval echo "$as_me:5732: \"$ac_try\"") >&5
3200   (eval $ac_try) 2>&5
3201   ac_status=$?
3202-  echo "$as_me:5632: \$? = $ac_status" >&5
3203+  echo "$as_me:5735: \$? = $ac_status" >&5
3204   (exit $ac_status); }; }; then
3205   ac_cv_func_initscr=yes
3206 else
3207@@ -5639,18 +5742,18 @@
3208 fi
3209 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3210 fi
3211-echo "$as_me:5642: result: $ac_cv_func_initscr" >&5
3212+echo "$as_me:5745: result: $ac_cv_func_initscr" >&5
3213 echo "${ECHO_T}$ac_cv_func_initscr" >&6
3214 if test $ac_cv_func_initscr = yes; then
3215   eval 'cf_cv_have_lib_'$cf_nculib_root'=yes'
3216 else
3217
3218 		cf_save_LIBS="$LIBS"
3219-		echo "$as_me:5649: checking for initscr in -l$cf_nculib_root" >&5
3220+		echo "$as_me:5752: checking for initscr in -l$cf_nculib_root" >&5
3221 echo $ECHO_N "checking for initscr in -l$cf_nculib_root... $ECHO_C" >&6
3222 		LIBS="-l$cf_nculib_root $LIBS"
3223 		cat >conftest.$ac_ext <<_ACEOF
3224-#line 5653 "configure"
3225+#line 5756 "configure"
3226 #include "confdefs.h"
3227 #include <${cf_cv_ncurses_header:-curses.h}>
3228 int
3229@@ -5662,25 +5765,25 @@
3230 }
3231 _ACEOF
3232 rm -f conftest.$ac_objext conftest$ac_exeext
3233-if { (eval echo "$as_me:5665: \"$ac_link\"") >&5
3234+if { (eval echo "$as_me:5768: \"$ac_link\"") >&5
3235   (eval $ac_link) 2>&5
3236   ac_status=$?
3237-  echo "$as_me:5668: \$? = $ac_status" >&5
3238+  echo "$as_me:5771: \$? = $ac_status" >&5
3239   (exit $ac_status); } &&
3240          { ac_try='test -s conftest$ac_exeext'
3241-  { (eval echo "$as_me:5671: \"$ac_try\"") >&5
3242+  { (eval echo "$as_me:5774: \"$ac_try\"") >&5
3243   (eval $ac_try) 2>&5
3244   ac_status=$?
3245-  echo "$as_me:5674: \$? = $ac_status" >&5
3246+  echo "$as_me:5777: \$? = $ac_status" >&5
3247   (exit $ac_status); }; }; then
3248-  echo "$as_me:5676: result: yes" >&5
3249+  echo "$as_me:5779: result: yes" >&5
3250 echo "${ECHO_T}yes" >&6
3251 			 eval 'cf_cv_have_lib_'$cf_nculib_root'=yes'
3252
3253 else
3254   echo "$as_me: failed program was:" >&5
3255 cat conftest.$ac_ext >&5
3256-echo "$as_me:5683: result: no" >&5
3257+echo "$as_me:5786: result: no" >&5
3258 echo "${ECHO_T}no" >&6
3259
3260 cf_search=
3261@@ -5748,11 +5851,11 @@
3262
3263 			for cf_libdir in $cf_search
3264 			do
3265-				echo "$as_me:5751: checking for -l$cf_nculib_root in $cf_libdir" >&5
3266+				echo "$as_me:5854: checking for -l$cf_nculib_root in $cf_libdir" >&5
3267 echo $ECHO_N "checking for -l$cf_nculib_root in $cf_libdir... $ECHO_C" >&6
3268 				LIBS="-L$cf_libdir -l$cf_nculib_root $cf_save_LIBS"
3269 				cat >conftest.$ac_ext <<_ACEOF
3270-#line 5755 "configure"
3271+#line 5858 "configure"
3272 #include "confdefs.h"
3273 #include <${cf_cv_ncurses_header:-curses.h}>
3274 int
3275@@ -5764,25 +5867,25 @@
3276 }
3277 _ACEOF
3278 rm -f conftest.$ac_objext conftest$ac_exeext
3279-if { (eval echo "$as_me:5767: \"$ac_link\"") >&5
3280+if { (eval echo "$as_me:5870: \"$ac_link\"") >&5
3281   (eval $ac_link) 2>&5
3282   ac_status=$?
3283-  echo "$as_me:5770: \$? = $ac_status" >&5
3284+  echo "$as_me:5873: \$? = $ac_status" >&5
3285   (exit $ac_status); } &&
3286          { ac_try='test -s conftest$ac_exeext'
3287-  { (eval echo "$as_me:5773: \"$ac_try\"") >&5
3288+  { (eval echo "$as_me:5876: \"$ac_try\"") >&5
3289   (eval $ac_try) 2>&5
3290   ac_status=$?
3291-  echo "$as_me:5776: \$? = $ac_status" >&5
3292+  echo "$as_me:5879: \$? = $ac_status" >&5
3293   (exit $ac_status); }; }; then
3294-  echo "$as_me:5778: result: yes" >&5
3295+  echo "$as_me:5881: result: yes" >&5
3296 echo "${ECHO_T}yes" >&6
3297 			 		 eval 'cf_cv_have_lib_'$cf_nculib_root'=yes'
3298 					 break
3299 else
3300   echo "$as_me: failed program was:" >&5
3301 cat conftest.$ac_ext >&5
3302-echo "$as_me:5785: result: no" >&5
3303+echo "$as_me:5888: result: no" >&5
3304 echo "${ECHO_T}no" >&6
3305 					 LIBS="$cf_save_LIBS"
3306 fi
3307@@ -5797,7 +5900,7 @@
3308 eval 'cf_found_library=$cf_cv_have_lib_'$cf_nculib_root
3309
3310 if test $cf_found_library = no ; then
3311-	{ { echo "$as_me:5800: error: Cannot link $cf_nculib_root library" >&5
3312+	{ { echo "$as_me:5903: error: Cannot link $cf_nculib_root library" >&5
3313 echo "$as_me: error: Cannot link $cf_nculib_root library" >&2;}
3314    { (exit 1); exit 1; }; }
3315 fi
3316@@ -5805,7 +5908,7 @@
3317 fi
3318
3319 if test -n "$cf_ncurses_LIBS" ; then
3320-	echo "$as_me:5808: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5
3321+	echo "$as_me:5911: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5
3322 echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS... $ECHO_C" >&6
3323 	cf_ncurses_SAVE="$LIBS"
3324 	for p in $cf_ncurses_LIBS ; do
3325@@ -5815,7 +5918,7 @@
3326 		fi
3327 	done
3328 	cat >conftest.$ac_ext <<_ACEOF
3329-#line 5818 "configure"
3330+#line 5921 "configure"
3331 #include "confdefs.h"
3332 #include <${cf_cv_ncurses_header:-curses.h}>
3333 int
3334@@ -5827,23 +5930,23 @@
3335 }
3336 _ACEOF
3337 rm -f conftest.$ac_objext conftest$ac_exeext
3338-if { (eval echo "$as_me:5830: \"$ac_link\"") >&5
3339+if { (eval echo "$as_me:5933: \"$ac_link\"") >&5
3340   (eval $ac_link) 2>&5
3341   ac_status=$?
3342-  echo "$as_me:5833: \$? = $ac_status" >&5
3343+  echo "$as_me:5936: \$? = $ac_status" >&5
3344   (exit $ac_status); } &&
3345          { ac_try='test -s conftest$ac_exeext'
3346-  { (eval echo "$as_me:5836: \"$ac_try\"") >&5
3347+  { (eval echo "$as_me:5939: \"$ac_try\"") >&5
3348   (eval $ac_try) 2>&5
3349   ac_status=$?
3350-  echo "$as_me:5839: \$? = $ac_status" >&5
3351+  echo "$as_me:5942: \$? = $ac_status" >&5
3352   (exit $ac_status); }; }; then
3353-  echo "$as_me:5841: result: yes" >&5
3354+  echo "$as_me:5944: result: yes" >&5
3355 echo "${ECHO_T}yes" >&6
3356 else
3357   echo "$as_me: failed program was:" >&5
3358 cat conftest.$ac_ext >&5
3359-echo "$as_me:5846: result: no" >&5
3360+echo "$as_me:5949: result: no" >&5
3361 echo "${ECHO_T}no" >&6
3362 		 LIBS="$cf_ncurses_SAVE"
3363 fi
3364@@ -5861,7 +5964,7 @@
3365 	NCURSES_CONFIG=none
3366 fi
3367
3368-echo "$as_me:5864: checking if you want wide-character code" >&5
3369+echo "$as_me:5967: checking if you want wide-character code" >&5
3370 echo $ECHO_N "checking if you want wide-character code... $ECHO_C" >&6
3371
3372 # Check whether --enable-widec or --disable-widec was given.
3373@@ -5871,11 +5974,11 @@
3374 else
3375   with_widec=no
3376 fi;
3377-echo "$as_me:5874: result: $with_widec" >&5
3378+echo "$as_me:5977: result: $with_widec" >&5
3379 echo "${ECHO_T}$with_widec" >&6
3380 if test "$with_widec" = yes ; then
3381
3382-echo "$as_me:5878: checking for multibyte character support" >&5
3383+echo "$as_me:5981: checking for multibyte character support" >&5
3384 echo $ECHO_N "checking for multibyte character support... $ECHO_C" >&6
3385 if test "${cf_cv_utf8_lib+set}" = set; then
3386   echo $ECHO_N "(cached) $ECHO_C" >&6
3387@@ -5883,7 +5986,7 @@
3388
3389 	cf_save_LIBS="$LIBS"
3390 	cat >conftest.$ac_ext <<_ACEOF
3391-#line 5886 "configure"
3392+#line 5989 "configure"
3393 #include "confdefs.h"
3394
3395 #include <stdlib.h>
3396@@ -5896,16 +5999,16 @@
3397 }
3398 _ACEOF
3399 rm -f conftest.$ac_objext conftest$ac_exeext
3400-if { (eval echo "$as_me:5899: \"$ac_link\"") >&5
3401+if { (eval echo "$as_me:6002: \"$ac_link\"") >&5
3402   (eval $ac_link) 2>&5
3403   ac_status=$?
3404-  echo "$as_me:5902: \$? = $ac_status" >&5
3405+  echo "$as_me:6005: \$? = $ac_status" >&5
3406   (exit $ac_status); } &&
3407          { ac_try='test -s conftest$ac_exeext'
3408-  { (eval echo "$as_me:5905: \"$ac_try\"") >&5
3409+  { (eval echo "$as_me:6008: \"$ac_try\"") >&5
3410   (eval $ac_try) 2>&5
3411   ac_status=$?
3412-  echo "$as_me:5908: \$? = $ac_status" >&5
3413+  echo "$as_me:6011: \$? = $ac_status" >&5
3414   (exit $ac_status); }; }; then
3415   cf_cv_utf8_lib=yes
3416 else
3417@@ -5917,12 +6020,12 @@
3418 cf_cv_header_path_utf8=
3419 cf_cv_library_path_utf8=
3420
3421-echo "${as_me:-configure}:5920: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5
3422+echo "${as_me:-configure}:6023: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5
3423
3424 cf_save_LIBS="$LIBS"
3425
3426 cat >conftest.$ac_ext <<_ACEOF
3427-#line 5925 "configure"
3428+#line 6028 "configure"
3429 #include "confdefs.h"
3430
3431 #include <libutf8.h>
3432@@ -5935,16 +6038,16 @@
3433 }
3434 _ACEOF
3435 rm -f conftest.$ac_objext conftest$ac_exeext
3436-if { (eval echo "$as_me:5938: \"$ac_link\"") >&5
3437+if { (eval echo "$as_me:6041: \"$ac_link\"") >&5
3438   (eval $ac_link) 2>&5
3439   ac_status=$?
3440-  echo "$as_me:5941: \$? = $ac_status" >&5
3441+  echo "$as_me:6044: \$? = $ac_status" >&5
3442   (exit $ac_status); } &&
3443          { ac_try='test -s conftest$ac_exeext'
3444-  { (eval echo "$as_me:5944: \"$ac_try\"") >&5
3445+  { (eval echo "$as_me:6047: \"$ac_try\"") >&5
3446   (eval $ac_try) 2>&5
3447   ac_status=$?
3448-  echo "$as_me:5947: \$? = $ac_status" >&5
3449+  echo "$as_me:6050: \$? = $ac_status" >&5
3450   (exit $ac_status); }; }; then
3451
3452 	cf_cv_find_linkage_utf8=yes
3453@@ -5958,7 +6061,7 @@
3454 LIBS="-lutf8  $cf_save_LIBS"
3455
3456 cat >conftest.$ac_ext <<_ACEOF
3457-#line 5961 "configure"
3458+#line 6064 "configure"
3459 #include "confdefs.h"
3460
3461 #include <libutf8.h>
3462@@ -5971,16 +6074,16 @@
3463 }
3464 _ACEOF
3465 rm -f conftest.$ac_objext conftest$ac_exeext
3466-if { (eval echo "$as_me:5974: \"$ac_link\"") >&5
3467+if { (eval echo "$as_me:6077: \"$ac_link\"") >&5
3468   (eval $ac_link) 2>&5
3469   ac_status=$?
3470-  echo "$as_me:5977: \$? = $ac_status" >&5
3471+  echo "$as_me:6080: \$? = $ac_status" >&5
3472   (exit $ac_status); } &&
3473          { ac_try='test -s conftest$ac_exeext'
3474-  { (eval echo "$as_me:5980: \"$ac_try\"") >&5
3475+  { (eval echo "$as_me:6083: \"$ac_try\"") >&5
3476   (eval $ac_try) 2>&5
3477   ac_status=$?
3478-  echo "$as_me:5983: \$? = $ac_status" >&5
3479+  echo "$as_me:6086: \$? = $ac_status" >&5
3480   (exit $ac_status); }; }; then
3481
3482 	cf_cv_find_linkage_utf8=yes
3483@@ -5997,9 +6100,9 @@
3484
3485 	test -n "$verbose" && echo "	find linkage for utf8 library" 1>&6
3486
3487-echo "${as_me:-configure}:6000: testing find linkage for utf8 library ..." 1>&5
3488+echo "${as_me:-configure}:6103: testing find linkage for utf8 library ..." 1>&5
3489
3490-echo "${as_me:-configure}:6002: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5
3491+echo "${as_me:-configure}:6105: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5
3492
3493 	cf_save_CPPFLAGS="$CPPFLAGS"
3494 	cf_test_CPPFLAGS="$CPPFLAGS"
3495@@ -6090,7 +6193,7 @@
3496 		if test -d $cf_cv_header_path_utf8 ; then
3497 			test -n "$verbose" && echo "	... testing $cf_cv_header_path_utf8" 1>&6
3498
3499-echo "${as_me:-configure}:6093: testing ... testing $cf_cv_header_path_utf8 ..." 1>&5
3500+echo "${as_me:-configure}:6196: testing ... testing $cf_cv_header_path_utf8 ..." 1>&5
3501
3502 			CPPFLAGS="$cf_save_CPPFLAGS"
3503
3504@@ -6098,7 +6201,7 @@
3505 	CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_utf8"
3506
3507 			cat >conftest.$ac_ext <<_ACEOF
3508-#line 6101 "configure"
3509+#line 6204 "configure"
3510 #include "confdefs.h"
3511
3512 #include <libutf8.h>
3513@@ -6111,21 +6214,21 @@
3514 }
3515 _ACEOF
3516 rm -f conftest.$ac_objext
3517-if { (eval echo "$as_me:6114: \"$ac_compile\"") >&5
3518+if { (eval echo "$as_me:6217: \"$ac_compile\"") >&5
3519   (eval $ac_compile) 2>&5
3520   ac_status=$?
3521-  echo "$as_me:6117: \$? = $ac_status" >&5
3522+  echo "$as_me:6220: \$? = $ac_status" >&5
3523   (exit $ac_status); } &&
3524          { ac_try='test -s conftest.$ac_objext'
3525-  { (eval echo "$as_me:6120: \"$ac_try\"") >&5
3526+  { (eval echo "$as_me:6223: \"$ac_try\"") >&5
3527   (eval $ac_try) 2>&5
3528   ac_status=$?
3529-  echo "$as_me:6123: \$? = $ac_status" >&5
3530+  echo "$as_me:6226: \$? = $ac_status" >&5
3531   (exit $ac_status); }; }; then
3532
3533 				test -n "$verbose" && echo "	... found utf8 headers in $cf_cv_header_path_utf8" 1>&6
3534
3535-echo "${as_me:-configure}:6128: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5
3536+echo "${as_me:-configure}:6231: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5
3537
3538 				cf_cv_find_linkage_utf8=maybe
3539 				cf_test_CPPFLAGS="$CPPFLAGS"
3540@@ -6143,7 +6246,7 @@
3541
3542 	if test "$cf_cv_find_linkage_utf8" = maybe ; then
3543
3544-echo "${as_me:-configure}:6146: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5
3545+echo "${as_me:-configure}:6249: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5
3546
3547 		cf_save_LIBS="$LIBS"
3548 		cf_save_LDFLAGS="$LDFLAGS"
3549@@ -6218,13 +6321,13 @@
3550 				if test -d $cf_cv_library_path_utf8 ; then
3551 					test -n "$verbose" && echo "	... testing $cf_cv_library_path_utf8" 1>&6
3552
3553-echo "${as_me:-configure}:6221: testing ... testing $cf_cv_library_path_utf8 ..." 1>&5
3554+echo "${as_me:-configure}:6324: testing ... testing $cf_cv_library_path_utf8 ..." 1>&5
3555
3556 					CPPFLAGS="$cf_test_CPPFLAGS"
3557 					LIBS="-lutf8  $cf_save_LIBS"
3558 					LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_utf8"
3559 					cat >conftest.$ac_ext <<_ACEOF
3560-#line 6227 "configure"
3561+#line 6330 "configure"
3562 #include "confdefs.h"
3563
3564 #include <libutf8.h>
3565@@ -6237,21 +6340,21 @@
3566 }
3567 _ACEOF
3568 rm -f conftest.$ac_objext conftest$ac_exeext
3569-if { (eval echo "$as_me:6240: \"$ac_link\"") >&5
3570+if { (eval echo "$as_me:6343: \"$ac_link\"") >&5
3571   (eval $ac_link) 2>&5
3572   ac_status=$?
3573-  echo "$as_me:6243: \$? = $ac_status" >&5
3574+  echo "$as_me:6346: \$? = $ac_status" >&5
3575   (exit $ac_status); } &&
3576          { ac_try='test -s conftest$ac_exeext'
3577-  { (eval echo "$as_me:6246: \"$ac_try\"") >&5
3578+  { (eval echo "$as_me:6349: \"$ac_try\"") >&5
3579   (eval $ac_try) 2>&5
3580   ac_status=$?
3581-  echo "$as_me:6249: \$? = $ac_status" >&5
3582+  echo "$as_me:6352: \$? = $ac_status" >&5
3583   (exit $ac_status); }; }; then
3584
3585 					test -n "$verbose" && echo "	... found utf8 library in $cf_cv_library_path_utf8" 1>&6
3586
3587-echo "${as_me:-configure}:6254: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5
3588+echo "${as_me:-configure}:6357: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5
3589
3590 					cf_cv_find_linkage_utf8=yes
3591 					cf_cv_library_file_utf8="-lutf8"
3592@@ -6293,7 +6396,7 @@
3593 fi
3594 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3595 fi
3596-echo "$as_me:6296: result: $cf_cv_utf8_lib" >&5
3597+echo "$as_me:6399: result: $cf_cv_utf8_lib" >&5
3598 echo "${ECHO_T}$cf_cv_utf8_lib" >&6
3599
3600 # HAVE_LIBUTF8_H is used by ncurses if curses.h is shared between
3601@@ -6331,7 +6434,7 @@
3602 	CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir"
3603
3604 			  cat >conftest.$ac_ext <<_ACEOF
3605-#line 6334 "configure"
3606+#line 6437 "configure"
3607 #include "confdefs.h"
3608 #include <stdio.h>
3609 int
3610@@ -6343,16 +6446,16 @@
3611 }
3612 _ACEOF
3613 rm -f conftest.$ac_objext
3614-if { (eval echo "$as_me:6346: \"$ac_compile\"") >&5
3615+if { (eval echo "$as_me:6449: \"$ac_compile\"") >&5
3616   (eval $ac_compile) 2>&5
3617   ac_status=$?
3618-  echo "$as_me:6349: \$? = $ac_status" >&5
3619+  echo "$as_me:6452: \$? = $ac_status" >&5
3620   (exit $ac_status); } &&
3621          { ac_try='test -s conftest.$ac_objext'
3622-  { (eval echo "$as_me:6352: \"$ac_try\"") >&5
3623+  { (eval echo "$as_me:6455: \"$ac_try\"") >&5
3624   (eval $ac_try) 2>&5
3625   ac_status=$?
3626-  echo "$as_me:6355: \$? = $ac_status" >&5
3627+  echo "$as_me:6458: \$? = $ac_status" >&5
3628   (exit $ac_status); }; }; then
3629   :
3630 else
3631@@ -6369,7 +6472,7 @@
3632 		if test "$cf_have_incdir" = no ; then
3633 		  test -n "$verbose" && echo "	adding $cf_add_incdir to include-path" 1>&6
3634
3635-echo "${as_me:-configure}:6372: testing adding $cf_add_incdir to include-path ..." 1>&5
3636+echo "${as_me:-configure}:6475: testing adding $cf_add_incdir to include-path ..." 1>&5
3637
3638 		  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
3639
3640@@ -6405,7 +6508,7 @@
3641 			if test "$cf_have_libdir" = no ; then
3642 				test -n "$verbose" && echo "	adding $cf_add_libdir to library-path" 1>&6
3643
3644-echo "${as_me:-configure}:6408: testing adding $cf_add_libdir to library-path ..." 1>&5
3645+echo "${as_me:-configure}:6511: testing adding $cf_add_libdir to library-path ..." 1>&5
3646
3647 				LDFLAGS="-L$cf_add_libdir $LDFLAGS"
3648 			fi
3649@@ -6435,13 +6538,13 @@
3650 cf_have_ncuconfig=no
3651
3652 if test "x${PKG_CONFIG:=none}" != xnone; then
3653-	echo "$as_me:6438: checking pkg-config for $cf_ncuconfig_root" >&5
3654+	echo "$as_me:6541: checking pkg-config for $cf_ncuconfig_root" >&5
3655 echo $ECHO_N "checking pkg-config for $cf_ncuconfig_root... $ECHO_C" >&6
3656 	if "$PKG_CONFIG" --exists $cf_ncuconfig_root ; then
3657-		echo "$as_me:6441: result: yes" >&5
3658+		echo "$as_me:6544: result: yes" >&5
3659 echo "${ECHO_T}yes" >&6
3660
3661-		echo "$as_me:6444: checking if the $cf_ncuconfig_root package files work" >&5
3662+		echo "$as_me:6547: checking if the $cf_ncuconfig_root package files work" >&5
3663 echo $ECHO_N "checking if the $cf_ncuconfig_root package files work... $ECHO_C" >&6
3664 		cf_have_ncuconfig=unknown
3665
3666@@ -6563,7 +6666,7 @@
3667 LIBS="$cf_add_libs"
3668
3669 		cat >conftest.$ac_ext <<_ACEOF
3670-#line 6566 "configure"
3671+#line 6669 "configure"
3672 #include "confdefs.h"
3673 #include <${cf_cv_ncurses_header:-curses.h}>
3674 int
3675@@ -6575,37 +6678,37 @@
3676 }
3677 _ACEOF
3678 rm -f conftest.$ac_objext conftest$ac_exeext
3679-if { (eval echo "$as_me:6578: \"$ac_link\"") >&5
3680+if { (eval echo "$as_me:6681: \"$ac_link\"") >&5
3681   (eval $ac_link) 2>&5
3682   ac_status=$?
3683-  echo "$as_me:6581: \$? = $ac_status" >&5
3684+  echo "$as_me:6684: \$? = $ac_status" >&5
3685   (exit $ac_status); } &&
3686          { ac_try='test -s conftest$ac_exeext'
3687-  { (eval echo "$as_me:6584: \"$ac_try\"") >&5
3688+  { (eval echo "$as_me:6687: \"$ac_try\"") >&5
3689   (eval $ac_try) 2>&5
3690   ac_status=$?
3691-  echo "$as_me:6587: \$? = $ac_status" >&5
3692+  echo "$as_me:6690: \$? = $ac_status" >&5
3693   (exit $ac_status); }; }; then
3694   if test "$cross_compiling" = yes; then
3695   cf_have_ncuconfig=maybe
3696 else
3697   cat >conftest.$ac_ext <<_ACEOF
3698-#line 6593 "configure"
3699+#line 6696 "configure"
3700 #include "confdefs.h"
3701 #include <${cf_cv_ncurses_header:-curses.h}>
3702 				int main(void)
3703 				{ char *xx = curses_version(); return (xx == 0); }
3704 _ACEOF
3705 rm -f conftest$ac_exeext
3706-if { (eval echo "$as_me:6600: \"$ac_link\"") >&5
3707+if { (eval echo "$as_me:6703: \"$ac_link\"") >&5
3708   (eval $ac_link) 2>&5
3709   ac_status=$?
3710-  echo "$as_me:6603: \$? = $ac_status" >&5
3711+  echo "$as_me:6706: \$? = $ac_status" >&5
3712   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
3713-  { (eval echo "$as_me:6605: \"$ac_try\"") >&5
3714+  { (eval echo "$as_me:6708: \"$ac_try\"") >&5
3715   (eval $ac_try) 2>&5
3716   ac_status=$?
3717-  echo "$as_me:6608: \$? = $ac_status" >&5
3718+  echo "$as_me:6711: \$? = $ac_status" >&5
3719   (exit $ac_status); }; }; then
3720   cf_have_ncuconfig=yes
3721 else
3722@@ -6622,7 +6725,7 @@
3723 cf_have_ncuconfig=no
3724 fi
3725 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
3726-		echo "$as_me:6625: result: $cf_have_ncuconfig" >&5
3727+		echo "$as_me:6728: result: $cf_have_ncuconfig" >&5
3728 echo "${ECHO_T}$cf_have_ncuconfig" >&6
3729 		test "$cf_have_ncuconfig" = maybe && cf_have_ncuconfig=yes
3730 		if test "$cf_have_ncuconfig" != "yes"
3731@@ -6638,7 +6741,7 @@
3732
3733 			NCURSES_CONFIG_PKG=$cf_ncuconfig_root
3734
3735-echo "$as_me:6641: checking for terminfo header" >&5
3736+echo "$as_me:6744: checking for terminfo header" >&5
3737 echo $ECHO_N "checking for terminfo header... $ECHO_C" >&6
3738 if test "${cf_cv_term_header+set}" = set; then
3739   echo $ECHO_N "(cached) $ECHO_C" >&6
3740@@ -6656,7 +6759,7 @@
3741 for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h"
3742 do
3743 cat >conftest.$ac_ext <<_ACEOF
3744-#line 6659 "configure"
3745+#line 6762 "configure"
3746 #include "confdefs.h"
3747 #include <stdio.h>
3748 #include <${cf_cv_ncurses_header:-curses.h}>
3749@@ -6671,16 +6774,16 @@
3750 }
3751 _ACEOF
3752 rm -f conftest.$ac_objext
3753-if { (eval echo "$as_me:6674: \"$ac_compile\"") >&5
3754+if { (eval echo "$as_me:6777: \"$ac_compile\"") >&5
3755   (eval $ac_compile) 2>&5
3756   ac_status=$?
3757-  echo "$as_me:6677: \$? = $ac_status" >&5
3758+  echo "$as_me:6780: \$? = $ac_status" >&5
3759   (exit $ac_status); } &&
3760          { ac_try='test -s conftest.$ac_objext'
3761-  { (eval echo "$as_me:6680: \"$ac_try\"") >&5
3762+  { (eval echo "$as_me:6783: \"$ac_try\"") >&5
3763   (eval $ac_try) 2>&5
3764   ac_status=$?
3765-  echo "$as_me:6683: \$? = $ac_status" >&5
3766+  echo "$as_me:6786: \$? = $ac_status" >&5
3767   (exit $ac_status); }; }; then
3768
3769 	cf_cv_term_header="$cf_test"
3770@@ -6696,7 +6799,7 @@
3771 done
3772
3773 fi
3774-echo "$as_me:6699: result: $cf_cv_term_header" >&5
3775+echo "$as_me:6802: result: $cf_cv_term_header" >&5
3776 echo "${ECHO_T}$cf_cv_term_header" >&6
3777
3778 # Set definitions to allow ifdef'ing to accommodate subdirectories
3779@@ -6731,7 +6834,7 @@
3780 		fi
3781
3782 	else
3783-		echo "$as_me:6734: result: no" >&5
3784+		echo "$as_me:6837: result: no" >&5
3785 echo "${ECHO_T}no" >&6
3786 		NCURSES_CONFIG_PKG=none
3787 	fi
3788@@ -6747,7 +6850,7 @@
3789   do
3790     # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
3791 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
3792-echo "$as_me:6750: checking for $ac_word" >&5
3793+echo "$as_me:6853: checking for $ac_word" >&5
3794 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
3795 if test "${ac_cv_prog_NCURSES_CONFIG+set}" = set; then
3796   echo $ECHO_N "(cached) $ECHO_C" >&6
3797@@ -6762,7 +6865,7 @@
3798   test -z "$ac_dir" && ac_dir=.
3799   $as_executable_p "$ac_dir/$ac_word" || continue
3800 ac_cv_prog_NCURSES_CONFIG="$ac_tool_prefix$ac_prog"
3801-echo "$as_me:6765: found $ac_dir/$ac_word" >&5
3802+echo "$as_me:6868: found $ac_dir/$ac_word" >&5
3803 break
3804 done
3805
3806@@ -6770,10 +6873,10 @@
3807 fi
3808 NCURSES_CONFIG=$ac_cv_prog_NCURSES_CONFIG
3809 if test -n "$NCURSES_CONFIG"; then
3810-  echo "$as_me:6773: result: $NCURSES_CONFIG" >&5
3811+  echo "$as_me:6876: result: $NCURSES_CONFIG" >&5
3812 echo "${ECHO_T}$NCURSES_CONFIG" >&6
3813 else
3814-  echo "$as_me:6776: result: no" >&5
3815+  echo "$as_me:6879: result: no" >&5
3816 echo "${ECHO_T}no" >&6
3817 fi
3818
3819@@ -6786,7 +6889,7 @@
3820 do
3821   # Extract the first word of "$ac_prog", so it can be a program name with args.
3822 set dummy $ac_prog; ac_word=$2
3823-echo "$as_me:6789: checking for $ac_word" >&5
3824+echo "$as_me:6892: checking for $ac_word" >&5
3825 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
3826 if test "${ac_cv_prog_ac_ct_NCURSES_CONFIG+set}" = set; then
3827   echo $ECHO_N "(cached) $ECHO_C" >&6
3828@@ -6801,7 +6904,7 @@
3829   test -z "$ac_dir" && ac_dir=.
3830   $as_executable_p "$ac_dir/$ac_word" || continue
3831 ac_cv_prog_ac_ct_NCURSES_CONFIG="$ac_prog"
3832-echo "$as_me:6804: found $ac_dir/$ac_word" >&5
3833+echo "$as_me:6907: found $ac_dir/$ac_word" >&5
3834 break
3835 done
3836
3837@@ -6809,10 +6912,10 @@
3838 fi
3839 ac_ct_NCURSES_CONFIG=$ac_cv_prog_ac_ct_NCURSES_CONFIG
3840 if test -n "$ac_ct_NCURSES_CONFIG"; then
3841-  echo "$as_me:6812: result: $ac_ct_NCURSES_CONFIG" >&5
3842+  echo "$as_me:6915: result: $ac_ct_NCURSES_CONFIG" >&5
3843 echo "${ECHO_T}$ac_ct_NCURSES_CONFIG" >&6
3844 else
3845-  echo "$as_me:6815: result: no" >&5
3846+  echo "$as_me:6918: result: no" >&5
3847 echo "${ECHO_T}no" >&6
3848 fi
3849
3850@@ -6941,7 +7044,7 @@
3851
3852 		# even with config script, some packages use no-override for curses.h
3853
3854-echo "$as_me:6944: checking if we have identified curses headers" >&5
3855+echo "$as_me:7047: checking if we have identified curses headers" >&5
3856 echo $ECHO_N "checking if we have identified curses headers... $ECHO_C" >&6
3857 if test "${cf_cv_ncurses_header+set}" = set; then
3858   echo $ECHO_N "(cached) $ECHO_C" >&6
3859@@ -6953,7 +7056,7 @@
3860 	curses.h ncursesw/curses.h
3861 do
3862 cat >conftest.$ac_ext <<_ACEOF
3863-#line 6956 "configure"
3864+#line 7059 "configure"
3865 #include "confdefs.h"
3866 #include <${cf_header}>
3867 int
3868@@ -6965,16 +7068,16 @@
3869 }
3870 _ACEOF
3871 rm -f conftest.$ac_objext
3872-if { (eval echo "$as_me:6968: \"$ac_compile\"") >&5
3873+if { (eval echo "$as_me:7071: \"$ac_compile\"") >&5
3874   (eval $ac_compile) 2>&5
3875   ac_status=$?
3876-  echo "$as_me:6971: \$? = $ac_status" >&5
3877+  echo "$as_me:7074: \$? = $ac_status" >&5
3878   (exit $ac_status); } &&
3879          { ac_try='test -s conftest.$ac_objext'
3880-  { (eval echo "$as_me:6974: \"$ac_try\"") >&5
3881+  { (eval echo "$as_me:7077: \"$ac_try\"") >&5
3882   (eval $ac_try) 2>&5
3883   ac_status=$?
3884-  echo "$as_me:6977: \$? = $ac_status" >&5
3885+  echo "$as_me:7080: \$? = $ac_status" >&5
3886   (exit $ac_status); }; }; then
3887   cf_cv_ncurses_header=$cf_header; break
3888 else
3889@@ -6985,11 +7088,11 @@
3890 done
3891
3892 fi
3893-echo "$as_me:6988: result: $cf_cv_ncurses_header" >&5
3894+echo "$as_me:7091: result: $cf_cv_ncurses_header" >&5
3895 echo "${ECHO_T}$cf_cv_ncurses_header" >&6
3896
3897 if test "$cf_cv_ncurses_header" = none ; then
3898-	{ { echo "$as_me:6992: error: No curses header-files found" >&5
3899+	{ { echo "$as_me:7095: error: No curses header-files found" >&5
3900 echo "$as_me: error: No curses header-files found" >&2;}
3901    { (exit 1); exit 1; }; }
3902 fi
3903@@ -6999,23 +7102,23 @@
3904 for ac_header in $cf_cv_ncurses_header
3905 do
3906 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
3907-echo "$as_me:7002: checking for $ac_header" >&5
3908+echo "$as_me:7105: checking for $ac_header" >&5
3909 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
3910 if eval "test \"\${$as_ac_Header+set}\" = set"; then
3911   echo $ECHO_N "(cached) $ECHO_C" >&6
3912 else
3913   cat >conftest.$ac_ext <<_ACEOF
3914-#line 7008 "configure"
3915+#line 7111 "configure"
3916 #include "confdefs.h"
3917 #include <$ac_header>
3918 _ACEOF
3919-if { (eval echo "$as_me:7012: \"$ac_cpp conftest.$ac_ext\"") >&5
3920+if { (eval echo "$as_me:7115: \"$ac_cpp conftest.$ac_ext\"") >&5
3921   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
3922   ac_status=$?
3923   egrep -v '^ *\+' conftest.er1 >conftest.err
3924   rm -f conftest.er1
3925   cat conftest.err >&5
3926-  echo "$as_me:7018: \$? = $ac_status" >&5
3927+  echo "$as_me:7121: \$? = $ac_status" >&5
3928   (exit $ac_status); } >/dev/null; then
3929   if test -s conftest.err; then
3930     ac_cpp_err=$ac_c_preproc_warn_flag
3931@@ -7034,7 +7137,7 @@
3932 fi
3933 rm -f conftest.err conftest.$ac_ext
3934 fi
3935-echo "$as_me:7037: result: `eval echo '${'$as_ac_Header'}'`" >&5
3936+echo "$as_me:7140: result: `eval echo '${'$as_ac_Header'}'`" >&5
3937 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
3938 if test `eval echo '${'$as_ac_Header'}'` = yes; then
3939   cat >>confdefs.h <<EOF
3940@@ -7090,7 +7193,7 @@
3941 	CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir"
3942
3943 			  cat >conftest.$ac_ext <<_ACEOF
3944-#line 7093 "configure"
3945+#line 7196 "configure"
3946 #include "confdefs.h"
3947 #include <stdio.h>
3948 int
3949@@ -7102,16 +7205,16 @@
3950 }
3951 _ACEOF
3952 rm -f conftest.$ac_objext
3953-if { (eval echo "$as_me:7105: \"$ac_compile\"") >&5
3954+if { (eval echo "$as_me:7208: \"$ac_compile\"") >&5
3955   (eval $ac_compile) 2>&5
3956   ac_status=$?
3957-  echo "$as_me:7108: \$? = $ac_status" >&5
3958+  echo "$as_me:7211: \$? = $ac_status" >&5
3959   (exit $ac_status); } &&
3960          { ac_try='test -s conftest.$ac_objext'
3961-  { (eval echo "$as_me:7111: \"$ac_try\"") >&5
3962+  { (eval echo "$as_me:7214: \"$ac_try\"") >&5
3963   (eval $ac_try) 2>&5
3964   ac_status=$?
3965-  echo "$as_me:7114: \$? = $ac_status" >&5
3966+  echo "$as_me:7217: \$? = $ac_status" >&5
3967   (exit $ac_status); }; }; then
3968   :
3969 else
3970@@ -7128,7 +7231,7 @@
3971 		if test "$cf_have_incdir" = no ; then
3972 		  test -n "$verbose" && echo "	adding $cf_add_incdir to include-path" 1>&6
3973
3974-echo "${as_me:-configure}:7131: testing adding $cf_add_incdir to include-path ..." 1>&5
3975+echo "${as_me:-configure}:7234: testing adding $cf_add_incdir to include-path ..." 1>&5
3976
3977 		  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
3978
3979@@ -7147,7 +7250,7 @@
3980
3981 }
3982
3983-echo "$as_me:7150: checking for $cf_ncuhdr_root header in include-path" >&5
3984+echo "$as_me:7253: checking for $cf_ncuhdr_root header in include-path" >&5
3985 echo $ECHO_N "checking for $cf_ncuhdr_root header in include-path... $ECHO_C" >&6
3986 if test "${cf_cv_ncurses_h+set}" = set; then
3987   echo $ECHO_N "(cached) $ECHO_C" >&6
3988@@ -7159,7 +7262,7 @@
3989 	do
3990
3991 	cat >conftest.$ac_ext <<_ACEOF
3992-#line 7162 "configure"
3993+#line 7265 "configure"
3994 #include "confdefs.h"
3995
3996 #define _XOPEN_SOURCE_EXTENDED
3997@@ -7191,16 +7294,16 @@
3998 }
3999 _ACEOF
4000 rm -f conftest.$ac_objext
4001-if { (eval echo "$as_me:7194: \"$ac_compile\"") >&5
4002+if { (eval echo "$as_me:7297: \"$ac_compile\"") >&5
4003   (eval $ac_compile) 2>&5
4004   ac_status=$?
4005-  echo "$as_me:7197: \$? = $ac_status" >&5
4006+  echo "$as_me:7300: \$? = $ac_status" >&5
4007   (exit $ac_status); } &&
4008          { ac_try='test -s conftest.$ac_objext'
4009-  { (eval echo "$as_me:7200: \"$ac_try\"") >&5
4010+  { (eval echo "$as_me:7303: \"$ac_try\"") >&5
4011   (eval $ac_try) 2>&5
4012   ac_status=$?
4013-  echo "$as_me:7203: \$? = $ac_status" >&5
4014+  echo "$as_me:7306: \$? = $ac_status" >&5
4015   (exit $ac_status); }; }; then
4016   cf_cv_ncurses_h=$cf_header
4017
4018@@ -7215,14 +7318,14 @@
4019 	done
4020
4021 fi
4022-echo "$as_me:7218: result: $cf_cv_ncurses_h" >&5
4023+echo "$as_me:7321: result: $cf_cv_ncurses_h" >&5
4024 echo "${ECHO_T}$cf_cv_ncurses_h" >&6
4025
4026 if test "$cf_cv_ncurses_h" != no ; then
4027 	cf_cv_ncurses_header=$cf_cv_ncurses_h
4028 else
4029
4030-echo "$as_me:7225: checking for $cf_ncuhdr_root include-path" >&5
4031+echo "$as_me:7328: checking for $cf_ncuhdr_root include-path" >&5
4032 echo $ECHO_N "checking for $cf_ncuhdr_root include-path... $ECHO_C" >&6
4033 if test "${cf_cv_ncurses_h2+set}" = set; then
4034   echo $ECHO_N "(cached) $ECHO_C" >&6
4035@@ -7343,7 +7446,7 @@
4036 	CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir"
4037
4038 			  cat >conftest.$ac_ext <<_ACEOF
4039-#line 7346 "configure"
4040+#line 7449 "configure"
4041 #include "confdefs.h"
4042 #include <stdio.h>
4043 int
4044@@ -7355,16 +7458,16 @@
4045 }
4046 _ACEOF
4047 rm -f conftest.$ac_objext
4048-if { (eval echo "$as_me:7358: \"$ac_compile\"") >&5
4049+if { (eval echo "$as_me:7461: \"$ac_compile\"") >&5
4050   (eval $ac_compile) 2>&5
4051   ac_status=$?
4052-  echo "$as_me:7361: \$? = $ac_status" >&5
4053+  echo "$as_me:7464: \$? = $ac_status" >&5
4054   (exit $ac_status); } &&
4055          { ac_try='test -s conftest.$ac_objext'
4056-  { (eval echo "$as_me:7364: \"$ac_try\"") >&5
4057+  { (eval echo "$as_me:7467: \"$ac_try\"") >&5
4058   (eval $ac_try) 2>&5
4059   ac_status=$?
4060-  echo "$as_me:7367: \$? = $ac_status" >&5
4061+  echo "$as_me:7470: \$? = $ac_status" >&5
4062   (exit $ac_status); }; }; then
4063   :
4064 else
4065@@ -7381,7 +7484,7 @@
4066 		if test "$cf_have_incdir" = no ; then
4067 		  test -n "$verbose" && echo "	adding $cf_add_incdir to include-path" 1>&6
4068
4069-echo "${as_me:-configure}:7384: testing adding $cf_add_incdir to include-path ..." 1>&5
4070+echo "${as_me:-configure}:7487: testing adding $cf_add_incdir to include-path ..." 1>&5
4071
4072 		  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
4073
4074@@ -7404,7 +7507,7 @@
4075 		do
4076
4077 	cat >conftest.$ac_ext <<_ACEOF
4078-#line 7407 "configure"
4079+#line 7510 "configure"
4080 #include "confdefs.h"
4081
4082 #include <$cf_header>
4083@@ -7428,16 +7531,16 @@
4084 }
4085 _ACEOF
4086 rm -f conftest.$ac_objext
4087-if { (eval echo "$as_me:7431: \"$ac_compile\"") >&5
4088+if { (eval echo "$as_me:7534: \"$ac_compile\"") >&5
4089   (eval $ac_compile) 2>&5
4090   ac_status=$?
4091-  echo "$as_me:7434: \$? = $ac_status" >&5
4092+  echo "$as_me:7537: \$? = $ac_status" >&5
4093   (exit $ac_status); } &&
4094          { ac_try='test -s conftest.$ac_objext'
4095-  { (eval echo "$as_me:7437: \"$ac_try\"") >&5
4096+  { (eval echo "$as_me:7540: \"$ac_try\"") >&5
4097   (eval $ac_try) 2>&5
4098   ac_status=$?
4099-  echo "$as_me:7440: \$? = $ac_status" >&5
4100+  echo "$as_me:7543: \$? = $ac_status" >&5
4101   (exit $ac_status); }; }; then
4102   cf_cv_ncurses_h2=$cf_header
4103
4104@@ -7458,12 +7561,12 @@
4105 		CPPFLAGS="$cf_save2_CPPFLAGS"
4106 		test "$cf_cv_ncurses_h2" != no && break
4107 	done
4108-	test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:7461: error: not found" >&5
4109+	test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:7564: error: not found" >&5
4110 echo "$as_me: error: not found" >&2;}
4111    { (exit 1); exit 1; }; }
4112
4113 fi
4114-echo "$as_me:7466: result: $cf_cv_ncurses_h2" >&5
4115+echo "$as_me:7569: result: $cf_cv_ncurses_h2" >&5
4116 echo "${ECHO_T}$cf_cv_ncurses_h2" >&6
4117
4118 	cf_1st_incdir=`echo $cf_cv_ncurses_h2 | sed -e 's%/[^/]*$%%'`
4119@@ -7499,7 +7602,7 @@
4120 	CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir"
4121
4122 			  cat >conftest.$ac_ext <<_ACEOF
4123-#line 7502 "configure"
4124+#line 7605 "configure"
4125 #include "confdefs.h"
4126 #include <stdio.h>
4127 int
4128@@ -7511,16 +7614,16 @@
4129 }
4130 _ACEOF
4131 rm -f conftest.$ac_objext
4132-if { (eval echo "$as_me:7514: \"$ac_compile\"") >&5
4133+if { (eval echo "$as_me:7617: \"$ac_compile\"") >&5
4134   (eval $ac_compile) 2>&5
4135   ac_status=$?
4136-  echo "$as_me:7517: \$? = $ac_status" >&5
4137+  echo "$as_me:7620: \$? = $ac_status" >&5
4138   (exit $ac_status); } &&
4139          { ac_try='test -s conftest.$ac_objext'
4140-  { (eval echo "$as_me:7520: \"$ac_try\"") >&5
4141+  { (eval echo "$as_me:7623: \"$ac_try\"") >&5
4142   (eval $ac_try) 2>&5
4143   ac_status=$?
4144-  echo "$as_me:7523: \$? = $ac_status" >&5
4145+  echo "$as_me:7626: \$? = $ac_status" >&5
4146   (exit $ac_status); }; }; then
4147   :
4148 else
4149@@ -7537,7 +7640,7 @@
4150 		if test "$cf_have_incdir" = no ; then
4151 		  test -n "$verbose" && echo "	adding $cf_add_incdir to include-path" 1>&6
4152
4153-echo "${as_me:-configure}:7540: testing adding $cf_add_incdir to include-path ..." 1>&5
4154+echo "${as_me:-configure}:7643: testing adding $cf_add_incdir to include-path ..." 1>&5
4155
4156 		  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
4157
4158@@ -7585,7 +7688,7 @@
4159 	;;
4160 esac
4161
4162-echo "$as_me:7588: checking for terminfo header" >&5
4163+echo "$as_me:7691: checking for terminfo header" >&5
4164 echo $ECHO_N "checking for terminfo header... $ECHO_C" >&6
4165 if test "${cf_cv_term_header+set}" = set; then
4166   echo $ECHO_N "(cached) $ECHO_C" >&6
4167@@ -7603,7 +7706,7 @@
4168 for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h"
4169 do
4170 cat >conftest.$ac_ext <<_ACEOF
4171-#line 7606 "configure"
4172+#line 7709 "configure"
4173 #include "confdefs.h"
4174 #include <stdio.h>
4175 #include <${cf_cv_ncurses_header:-curses.h}>
4176@@ -7618,16 +7721,16 @@
4177 }
4178 _ACEOF
4179 rm -f conftest.$ac_objext
4180-if { (eval echo "$as_me:7621: \"$ac_compile\"") >&5
4181+if { (eval echo "$as_me:7724: \"$ac_compile\"") >&5
4182   (eval $ac_compile) 2>&5
4183   ac_status=$?
4184-  echo "$as_me:7624: \$? = $ac_status" >&5
4185+  echo "$as_me:7727: \$? = $ac_status" >&5
4186   (exit $ac_status); } &&
4187          { ac_try='test -s conftest.$ac_objext'
4188-  { (eval echo "$as_me:7627: \"$ac_try\"") >&5
4189+  { (eval echo "$as_me:7730: \"$ac_try\"") >&5
4190   (eval $ac_try) 2>&5
4191   ac_status=$?
4192-  echo "$as_me:7630: \$? = $ac_status" >&5
4193+  echo "$as_me:7733: \$? = $ac_status" >&5
4194   (exit $ac_status); }; }; then
4195
4196 	cf_cv_term_header="$cf_test"
4197@@ -7643,7 +7746,7 @@
4198 done
4199
4200 fi
4201-echo "$as_me:7646: result: $cf_cv_term_header" >&5
4202+echo "$as_me:7749: result: $cf_cv_term_header" >&5
4203 echo "${ECHO_T}$cf_cv_term_header" >&6
4204
4205 # Set definitions to allow ifdef'ing to accommodate subdirectories
4206@@ -7681,7 +7784,7 @@
4207 #define NCURSES 1
4208 EOF
4209
4210-echo "$as_me:7684: checking for ncurses version" >&5
4211+echo "$as_me:7787: checking for ncurses version" >&5
4212 echo $ECHO_N "checking for ncurses version... $ECHO_C" >&6
4213 if test "${cf_cv_ncurses_version+set}" = set; then
4214   echo $ECHO_N "(cached) $ECHO_C" >&6
4215@@ -7707,10 +7810,10 @@
4216 #endif
4217 EOF
4218 	cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out"
4219-	{ (eval echo "$as_me:7710: \"$cf_try\"") >&5
4220+	{ (eval echo "$as_me:7813: \"$cf_try\"") >&5
4221   (eval $cf_try) 2>&5
4222   ac_status=$?
4223-  echo "$as_me:7713: \$? = $ac_status" >&5
4224+  echo "$as_me:7816: \$? = $ac_status" >&5
4225   (exit $ac_status); }
4226 	if test -f conftest.out ; then
4227 		cf_out=`cat conftest.out | sed -e 's%^Autoconf %%' -e 's%^[^"]*"%%' -e 's%".*%%'`
4228@@ -7720,7 +7823,7 @@
4229
4230 else
4231   cat >conftest.$ac_ext <<_ACEOF
4232-#line 7723 "configure"
4233+#line 7826 "configure"
4234 #include "confdefs.h"
4235
4236 #include <${cf_cv_ncurses_header:-curses.h}>
4237@@ -7745,15 +7848,15 @@
4238 }
4239 _ACEOF
4240 rm -f conftest$ac_exeext
4241-if { (eval echo "$as_me:7748: \"$ac_link\"") >&5
4242+if { (eval echo "$as_me:7851: \"$ac_link\"") >&5
4243   (eval $ac_link) 2>&5
4244   ac_status=$?
4245-  echo "$as_me:7751: \$? = $ac_status" >&5
4246+  echo "$as_me:7854: \$? = $ac_status" >&5
4247   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
4248-  { (eval echo "$as_me:7753: \"$ac_try\"") >&5
4249+  { (eval echo "$as_me:7856: \"$ac_try\"") >&5
4250   (eval $ac_try) 2>&5
4251   ac_status=$?
4252-  echo "$as_me:7756: \$? = $ac_status" >&5
4253+  echo "$as_me:7859: \$? = $ac_status" >&5
4254   (exit $ac_status); }; }; then
4255
4256 	cf_cv_ncurses_version=`cat $cf_tempfile`
4257@@ -7767,7 +7870,7 @@
4258 	rm -f $cf_tempfile
4259
4260 fi
4261-echo "$as_me:7770: result: $cf_cv_ncurses_version" >&5
4262+echo "$as_me:7873: result: $cf_cv_ncurses_version" >&5
4263 echo "${ECHO_T}$cf_cv_ncurses_version" >&6
4264 test "$cf_cv_ncurses_version" = no ||
4265 cat >>confdefs.h <<\EOF
4266@@ -7780,7 +7883,7 @@
4267 	# to link gpm.
4268 cf_ncurses_LIBS=""
4269 cf_ncurses_SAVE="$LIBS"
4270-echo "$as_me:7783: checking for Gpm_Open in -lgpm" >&5
4271+echo "$as_me:7886: checking for Gpm_Open in -lgpm" >&5
4272 echo $ECHO_N "checking for Gpm_Open in -lgpm... $ECHO_C" >&6
4273 if test "${ac_cv_lib_gpm_Gpm_Open+set}" = set; then
4274   echo $ECHO_N "(cached) $ECHO_C" >&6
4275@@ -7788,7 +7891,7 @@
4276   ac_check_lib_save_LIBS=$LIBS
4277 LIBS="-lgpm  $LIBS"
4278 cat >conftest.$ac_ext <<_ACEOF
4279-#line 7791 "configure"
4280+#line 7894 "configure"
4281 #include "confdefs.h"
4282
4283 /* Override any gcc2 internal prototype to avoid an error.  */
4284@@ -7807,16 +7910,16 @@
4285 }
4286 _ACEOF
4287 rm -f conftest.$ac_objext conftest$ac_exeext
4288-if { (eval echo "$as_me:7810: \"$ac_link\"") >&5
4289+if { (eval echo "$as_me:7913: \"$ac_link\"") >&5
4290   (eval $ac_link) 2>&5
4291   ac_status=$?
4292-  echo "$as_me:7813: \$? = $ac_status" >&5
4293+  echo "$as_me:7916: \$? = $ac_status" >&5
4294   (exit $ac_status); } &&
4295          { ac_try='test -s conftest$ac_exeext'
4296-  { (eval echo "$as_me:7816: \"$ac_try\"") >&5
4297+  { (eval echo "$as_me:7919: \"$ac_try\"") >&5
4298   (eval $ac_try) 2>&5
4299   ac_status=$?
4300-  echo "$as_me:7819: \$? = $ac_status" >&5
4301+  echo "$as_me:7922: \$? = $ac_status" >&5
4302   (exit $ac_status); }; }; then
4303   ac_cv_lib_gpm_Gpm_Open=yes
4304 else
4305@@ -7827,10 +7930,10 @@
4306 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
4307 LIBS=$ac_check_lib_save_LIBS
4308 fi
4309-echo "$as_me:7830: result: $ac_cv_lib_gpm_Gpm_Open" >&5
4310+echo "$as_me:7933: result: $ac_cv_lib_gpm_Gpm_Open" >&5
4311 echo "${ECHO_T}$ac_cv_lib_gpm_Gpm_Open" >&6
4312 if test $ac_cv_lib_gpm_Gpm_Open = yes; then
4313-  echo "$as_me:7833: checking for initscr in -lgpm" >&5
4314+  echo "$as_me:7936: checking for initscr in -lgpm" >&5
4315 echo $ECHO_N "checking for initscr in -lgpm... $ECHO_C" >&6
4316 if test "${ac_cv_lib_gpm_initscr+set}" = set; then
4317   echo $ECHO_N "(cached) $ECHO_C" >&6
4318@@ -7838,7 +7941,7 @@
4319   ac_check_lib_save_LIBS=$LIBS
4320 LIBS="-lgpm  $LIBS"
4321 cat >conftest.$ac_ext <<_ACEOF
4322-#line 7841 "configure"
4323+#line 7944 "configure"
4324 #include "confdefs.h"
4325
4326 /* Override any gcc2 internal prototype to avoid an error.  */
4327@@ -7857,16 +7960,16 @@
4328 }
4329 _ACEOF
4330 rm -f conftest.$ac_objext conftest$ac_exeext
4331-if { (eval echo "$as_me:7860: \"$ac_link\"") >&5
4332+if { (eval echo "$as_me:7963: \"$ac_link\"") >&5
4333   (eval $ac_link) 2>&5
4334   ac_status=$?
4335-  echo "$as_me:7863: \$? = $ac_status" >&5
4336+  echo "$as_me:7966: \$? = $ac_status" >&5
4337   (exit $ac_status); } &&
4338          { ac_try='test -s conftest$ac_exeext'
4339-  { (eval echo "$as_me:7866: \"$ac_try\"") >&5
4340+  { (eval echo "$as_me:7969: \"$ac_try\"") >&5
4341   (eval $ac_try) 2>&5
4342   ac_status=$?
4343-  echo "$as_me:7869: \$? = $ac_status" >&5
4344+  echo "$as_me:7972: \$? = $ac_status" >&5
4345   (exit $ac_status); }; }; then
4346   ac_cv_lib_gpm_initscr=yes
4347 else
4348@@ -7877,7 +7980,7 @@
4349 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
4350 LIBS=$ac_check_lib_save_LIBS
4351 fi
4352-echo "$as_me:7880: result: $ac_cv_lib_gpm_initscr" >&5
4353+echo "$as_me:7983: result: $ac_cv_lib_gpm_initscr" >&5
4354 echo "${ECHO_T}$ac_cv_lib_gpm_initscr" >&6
4355 if test $ac_cv_lib_gpm_initscr = yes; then
4356   LIBS="$cf_ncurses_SAVE"
4357@@ -7892,7 +7995,7 @@
4358 	# This is only necessary if you are linking against an obsolete
4359 	# version of ncurses (but it should do no harm, since it's static).
4360 	if test "$cf_nculib_root" = ncurses ; then
4361-		echo "$as_me:7895: checking for tgoto in -lmytinfo" >&5
4362+		echo "$as_me:7998: checking for tgoto in -lmytinfo" >&5
4363 echo $ECHO_N "checking for tgoto in -lmytinfo... $ECHO_C" >&6
4364 if test "${ac_cv_lib_mytinfo_tgoto+set}" = set; then
4365   echo $ECHO_N "(cached) $ECHO_C" >&6
4366@@ -7900,7 +8003,7 @@
4367   ac_check_lib_save_LIBS=$LIBS
4368 LIBS="-lmytinfo  $LIBS"
4369 cat >conftest.$ac_ext <<_ACEOF
4370-#line 7903 "configure"
4371+#line 8006 "configure"
4372 #include "confdefs.h"
4373
4374 /* Override any gcc2 internal prototype to avoid an error.  */
4375@@ -7919,16 +8022,16 @@
4376 }
4377 _ACEOF
4378 rm -f conftest.$ac_objext conftest$ac_exeext
4379-if { (eval echo "$as_me:7922: \"$ac_link\"") >&5
4380+if { (eval echo "$as_me:8025: \"$ac_link\"") >&5
4381   (eval $ac_link) 2>&5
4382   ac_status=$?
4383-  echo "$as_me:7925: \$? = $ac_status" >&5
4384+  echo "$as_me:8028: \$? = $ac_status" >&5
4385   (exit $ac_status); } &&
4386          { ac_try='test -s conftest$ac_exeext'
4387-  { (eval echo "$as_me:7928: \"$ac_try\"") >&5
4388+  { (eval echo "$as_me:8031: \"$ac_try\"") >&5
4389   (eval $ac_try) 2>&5
4390   ac_status=$?
4391-  echo "$as_me:7931: \$? = $ac_status" >&5
4392+  echo "$as_me:8034: \$? = $ac_status" >&5
4393   (exit $ac_status); }; }; then
4394   ac_cv_lib_mytinfo_tgoto=yes
4395 else
4396@@ -7939,7 +8042,7 @@
4397 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
4398 LIBS=$ac_check_lib_save_LIBS
4399 fi
4400-echo "$as_me:7942: result: $ac_cv_lib_mytinfo_tgoto" >&5
4401+echo "$as_me:8045: result: $ac_cv_lib_mytinfo_tgoto" >&5
4402 echo "${ECHO_T}$ac_cv_lib_mytinfo_tgoto" >&6
4403 if test $ac_cv_lib_mytinfo_tgoto = yes; then
4404   cf_ncurses_LIBS="-lmytinfo $cf_ncurses_LIBS"
4405@@ -7988,13 +8091,13 @@
4406
4407 	eval 'cf_cv_have_lib_'$cf_nculib_root'=no'
4408 	cf_libdir=""
4409-	echo "$as_me:7991: checking for initscr" >&5
4410+	echo "$as_me:8094: checking for initscr" >&5
4411 echo $ECHO_N "checking for initscr... $ECHO_C" >&6
4412 if test "${ac_cv_func_initscr+set}" = set; then
4413   echo $ECHO_N "(cached) $ECHO_C" >&6
4414 else
4415   cat >conftest.$ac_ext <<_ACEOF
4416-#line 7997 "configure"
4417+#line 8100 "configure"
4418 #include "confdefs.h"
4419 #define initscr autoconf_temporary
4420 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
4421@@ -8025,16 +8128,16 @@
4422 }
4423 _ACEOF
4424 rm -f conftest.$ac_objext conftest$ac_exeext
4425-if { (eval echo "$as_me:8028: \"$ac_link\"") >&5
4426+if { (eval echo "$as_me:8131: \"$ac_link\"") >&5
4427   (eval $ac_link) 2>&5
4428   ac_status=$?
4429-  echo "$as_me:8031: \$? = $ac_status" >&5
4430+  echo "$as_me:8134: \$? = $ac_status" >&5
4431   (exit $ac_status); } &&
4432          { ac_try='test -s conftest$ac_exeext'
4433-  { (eval echo "$as_me:8034: \"$ac_try\"") >&5
4434+  { (eval echo "$as_me:8137: \"$ac_try\"") >&5
4435   (eval $ac_try) 2>&5
4436   ac_status=$?
4437-  echo "$as_me:8037: \$? = $ac_status" >&5
4438+  echo "$as_me:8140: \$? = $ac_status" >&5
4439   (exit $ac_status); }; }; then
4440   ac_cv_func_initscr=yes
4441 else
4442@@ -8044,18 +8147,18 @@
4443 fi
4444 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
4445 fi
4446-echo "$as_me:8047: result: $ac_cv_func_initscr" >&5
4447+echo "$as_me:8150: result: $ac_cv_func_initscr" >&5
4448 echo "${ECHO_T}$ac_cv_func_initscr" >&6
4449 if test $ac_cv_func_initscr = yes; then
4450   eval 'cf_cv_have_lib_'$cf_nculib_root'=yes'
4451 else
4452
4453 		cf_save_LIBS="$LIBS"
4454-		echo "$as_me:8054: checking for initscr in -l$cf_nculib_root" >&5
4455+		echo "$as_me:8157: checking for initscr in -l$cf_nculib_root" >&5
4456 echo $ECHO_N "checking for initscr in -l$cf_nculib_root... $ECHO_C" >&6
4457 		LIBS="-l$cf_nculib_root $LIBS"
4458 		cat >conftest.$ac_ext <<_ACEOF
4459-#line 8058 "configure"
4460+#line 8161 "configure"
4461 #include "confdefs.h"
4462 #include <${cf_cv_ncurses_header:-curses.h}>
4463 int
4464@@ -8067,25 +8170,25 @@
4465 }
4466 _ACEOF
4467 rm -f conftest.$ac_objext conftest$ac_exeext
4468-if { (eval echo "$as_me:8070: \"$ac_link\"") >&5
4469+if { (eval echo "$as_me:8173: \"$ac_link\"") >&5
4470   (eval $ac_link) 2>&5
4471   ac_status=$?
4472-  echo "$as_me:8073: \$? = $ac_status" >&5
4473+  echo "$as_me:8176: \$? = $ac_status" >&5
4474   (exit $ac_status); } &&
4475          { ac_try='test -s conftest$ac_exeext'
4476-  { (eval echo "$as_me:8076: \"$ac_try\"") >&5
4477+  { (eval echo "$as_me:8179: \"$ac_try\"") >&5
4478   (eval $ac_try) 2>&5
4479   ac_status=$?
4480-  echo "$as_me:8079: \$? = $ac_status" >&5
4481+  echo "$as_me:8182: \$? = $ac_status" >&5
4482   (exit $ac_status); }; }; then
4483-  echo "$as_me:8081: result: yes" >&5
4484+  echo "$as_me:8184: result: yes" >&5
4485 echo "${ECHO_T}yes" >&6
4486 			 eval 'cf_cv_have_lib_'$cf_nculib_root'=yes'
4487
4488 else
4489   echo "$as_me: failed program was:" >&5
4490 cat conftest.$ac_ext >&5
4491-echo "$as_me:8088: result: no" >&5
4492+echo "$as_me:8191: result: no" >&5
4493 echo "${ECHO_T}no" >&6
4494
4495 cf_search=
4496@@ -8153,11 +8256,11 @@
4497
4498 			for cf_libdir in $cf_search
4499 			do
4500-				echo "$as_me:8156: checking for -l$cf_nculib_root in $cf_libdir" >&5
4501+				echo "$as_me:8259: checking for -l$cf_nculib_root in $cf_libdir" >&5
4502 echo $ECHO_N "checking for -l$cf_nculib_root in $cf_libdir... $ECHO_C" >&6
4503 				LIBS="-L$cf_libdir -l$cf_nculib_root $cf_save_LIBS"
4504 				cat >conftest.$ac_ext <<_ACEOF
4505-#line 8160 "configure"
4506+#line 8263 "configure"
4507 #include "confdefs.h"
4508 #include <${cf_cv_ncurses_header:-curses.h}>
4509 int
4510@@ -8169,25 +8272,25 @@
4511 }
4512 _ACEOF
4513 rm -f conftest.$ac_objext conftest$ac_exeext
4514-if { (eval echo "$as_me:8172: \"$ac_link\"") >&5
4515+if { (eval echo "$as_me:8275: \"$ac_link\"") >&5
4516   (eval $ac_link) 2>&5
4517   ac_status=$?
4518-  echo "$as_me:8175: \$? = $ac_status" >&5
4519+  echo "$as_me:8278: \$? = $ac_status" >&5
4520   (exit $ac_status); } &&
4521          { ac_try='test -s conftest$ac_exeext'
4522-  { (eval echo "$as_me:8178: \"$ac_try\"") >&5
4523+  { (eval echo "$as_me:8281: \"$ac_try\"") >&5
4524   (eval $ac_try) 2>&5
4525   ac_status=$?
4526-  echo "$as_me:8181: \$? = $ac_status" >&5
4527+  echo "$as_me:8284: \$? = $ac_status" >&5
4528   (exit $ac_status); }; }; then
4529-  echo "$as_me:8183: result: yes" >&5
4530+  echo "$as_me:8286: result: yes" >&5
4531 echo "${ECHO_T}yes" >&6
4532 			 		 eval 'cf_cv_have_lib_'$cf_nculib_root'=yes'
4533 					 break
4534 else
4535   echo "$as_me: failed program was:" >&5
4536 cat conftest.$ac_ext >&5
4537-echo "$as_me:8190: result: no" >&5
4538+echo "$as_me:8293: result: no" >&5
4539 echo "${ECHO_T}no" >&6
4540 					 LIBS="$cf_save_LIBS"
4541 fi
4542@@ -8202,7 +8305,7 @@
4543 eval 'cf_found_library=$cf_cv_have_lib_'$cf_nculib_root
4544
4545 if test $cf_found_library = no ; then
4546-	{ { echo "$as_me:8205: error: Cannot link $cf_nculib_root library" >&5
4547+	{ { echo "$as_me:8308: error: Cannot link $cf_nculib_root library" >&5
4548 echo "$as_me: error: Cannot link $cf_nculib_root library" >&2;}
4549    { (exit 1); exit 1; }; }
4550 fi
4551@@ -8210,7 +8313,7 @@
4552 fi
4553
4554 if test -n "$cf_ncurses_LIBS" ; then
4555-	echo "$as_me:8213: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5
4556+	echo "$as_me:8316: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5
4557 echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS... $ECHO_C" >&6
4558 	cf_ncurses_SAVE="$LIBS"
4559 	for p in $cf_ncurses_LIBS ; do
4560@@ -8220,7 +8323,7 @@
4561 		fi
4562 	done
4563 	cat >conftest.$ac_ext <<_ACEOF
4564-#line 8223 "configure"
4565+#line 8326 "configure"
4566 #include "confdefs.h"
4567 #include <${cf_cv_ncurses_header:-curses.h}>
4568 int
4569@@ -8232,23 +8335,23 @@
4570 }
4571 _ACEOF
4572 rm -f conftest.$ac_objext conftest$ac_exeext
4573-if { (eval echo "$as_me:8235: \"$ac_link\"") >&5
4574+if { (eval echo "$as_me:8338: \"$ac_link\"") >&5
4575   (eval $ac_link) 2>&5
4576   ac_status=$?
4577-  echo "$as_me:8238: \$? = $ac_status" >&5
4578+  echo "$as_me:8341: \$? = $ac_status" >&5
4579   (exit $ac_status); } &&
4580          { ac_try='test -s conftest$ac_exeext'
4581-  { (eval echo "$as_me:8241: \"$ac_try\"") >&5
4582+  { (eval echo "$as_me:8344: \"$ac_try\"") >&5
4583   (eval $ac_try) 2>&5
4584   ac_status=$?
4585-  echo "$as_me:8244: \$? = $ac_status" >&5
4586+  echo "$as_me:8347: \$? = $ac_status" >&5
4587   (exit $ac_status); }; }; then
4588-  echo "$as_me:8246: result: yes" >&5
4589+  echo "$as_me:8349: result: yes" >&5
4590 echo "${ECHO_T}yes" >&6
4591 else
4592   echo "$as_me: failed program was:" >&5
4593 cat conftest.$ac_ext >&5
4594-echo "$as_me:8251: result: no" >&5
4595+echo "$as_me:8354: result: no" >&5
4596 echo "${ECHO_T}no" >&6
4597 		 LIBS="$cf_ncurses_SAVE"
4598 fi
4599@@ -8272,13 +8375,13 @@
4600 cf_have_ncuconfig=no
4601
4602 if test "x${PKG_CONFIG:=none}" != xnone; then
4603-	echo "$as_me:8275: checking pkg-config for $cf_ncuconfig_root" >&5
4604+	echo "$as_me:8378: checking pkg-config for $cf_ncuconfig_root" >&5
4605 echo $ECHO_N "checking pkg-config for $cf_ncuconfig_root... $ECHO_C" >&6
4606 	if "$PKG_CONFIG" --exists $cf_ncuconfig_root ; then
4607-		echo "$as_me:8278: result: yes" >&5
4608+		echo "$as_me:8381: result: yes" >&5
4609 echo "${ECHO_T}yes" >&6
4610
4611-		echo "$as_me:8281: checking if the $cf_ncuconfig_root package files work" >&5
4612+		echo "$as_me:8384: checking if the $cf_ncuconfig_root package files work" >&5
4613 echo $ECHO_N "checking if the $cf_ncuconfig_root package files work... $ECHO_C" >&6
4614 		cf_have_ncuconfig=unknown
4615
4616@@ -8400,7 +8503,7 @@
4617 LIBS="$cf_add_libs"
4618
4619 		cat >conftest.$ac_ext <<_ACEOF
4620-#line 8403 "configure"
4621+#line 8506 "configure"
4622 #include "confdefs.h"
4623 #include <${cf_cv_ncurses_header:-curses.h}>
4624 int
4625@@ -8412,37 +8515,37 @@
4626 }
4627 _ACEOF
4628 rm -f conftest.$ac_objext conftest$ac_exeext
4629-if { (eval echo "$as_me:8415: \"$ac_link\"") >&5
4630+if { (eval echo "$as_me:8518: \"$ac_link\"") >&5
4631   (eval $ac_link) 2>&5
4632   ac_status=$?
4633-  echo "$as_me:8418: \$? = $ac_status" >&5
4634+  echo "$as_me:8521: \$? = $ac_status" >&5
4635   (exit $ac_status); } &&
4636          { ac_try='test -s conftest$ac_exeext'
4637-  { (eval echo "$as_me:8421: \"$ac_try\"") >&5
4638+  { (eval echo "$as_me:8524: \"$ac_try\"") >&5
4639   (eval $ac_try) 2>&5
4640   ac_status=$?
4641-  echo "$as_me:8424: \$? = $ac_status" >&5
4642+  echo "$as_me:8527: \$? = $ac_status" >&5
4643   (exit $ac_status); }; }; then
4644   if test "$cross_compiling" = yes; then
4645   cf_have_ncuconfig=maybe
4646 else
4647   cat >conftest.$ac_ext <<_ACEOF
4648-#line 8430 "configure"
4649+#line 8533 "configure"
4650 #include "confdefs.h"
4651 #include <${cf_cv_ncurses_header:-curses.h}>
4652 				int main(void)
4653 				{ char *xx = curses_version(); return (xx == 0); }
4654 _ACEOF
4655 rm -f conftest$ac_exeext
4656-if { (eval echo "$as_me:8437: \"$ac_link\"") >&5
4657+if { (eval echo "$as_me:8540: \"$ac_link\"") >&5
4658   (eval $ac_link) 2>&5
4659   ac_status=$?
4660-  echo "$as_me:8440: \$? = $ac_status" >&5
4661+  echo "$as_me:8543: \$? = $ac_status" >&5
4662   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
4663-  { (eval echo "$as_me:8442: \"$ac_try\"") >&5
4664+  { (eval echo "$as_me:8545: \"$ac_try\"") >&5
4665   (eval $ac_try) 2>&5
4666   ac_status=$?
4667-  echo "$as_me:8445: \$? = $ac_status" >&5
4668+  echo "$as_me:8548: \$? = $ac_status" >&5
4669   (exit $ac_status); }; }; then
4670   cf_have_ncuconfig=yes
4671 else
4672@@ -8459,7 +8562,7 @@
4673 cf_have_ncuconfig=no
4674 fi
4675 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
4676-		echo "$as_me:8462: result: $cf_have_ncuconfig" >&5
4677+		echo "$as_me:8565: result: $cf_have_ncuconfig" >&5
4678 echo "${ECHO_T}$cf_have_ncuconfig" >&6
4679 		test "$cf_have_ncuconfig" = maybe && cf_have_ncuconfig=yes
4680 		if test "$cf_have_ncuconfig" != "yes"
4681@@ -8475,7 +8578,7 @@
4682
4683 			NCURSES_CONFIG_PKG=$cf_ncuconfig_root
4684
4685-echo "$as_me:8478: checking for terminfo header" >&5
4686+echo "$as_me:8581: checking for terminfo header" >&5
4687 echo $ECHO_N "checking for terminfo header... $ECHO_C" >&6
4688 if test "${cf_cv_term_header+set}" = set; then
4689   echo $ECHO_N "(cached) $ECHO_C" >&6
4690@@ -8493,7 +8596,7 @@
4691 for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h"
4692 do
4693 cat >conftest.$ac_ext <<_ACEOF
4694-#line 8496 "configure"
4695+#line 8599 "configure"
4696 #include "confdefs.h"
4697 #include <stdio.h>
4698 #include <${cf_cv_ncurses_header:-curses.h}>
4699@@ -8508,16 +8611,16 @@
4700 }
4701 _ACEOF
4702 rm -f conftest.$ac_objext
4703-if { (eval echo "$as_me:8511: \"$ac_compile\"") >&5
4704+if { (eval echo "$as_me:8614: \"$ac_compile\"") >&5
4705   (eval $ac_compile) 2>&5
4706   ac_status=$?
4707-  echo "$as_me:8514: \$? = $ac_status" >&5
4708+  echo "$as_me:8617: \$? = $ac_status" >&5
4709   (exit $ac_status); } &&
4710          { ac_try='test -s conftest.$ac_objext'
4711-  { (eval echo "$as_me:8517: \"$ac_try\"") >&5
4712+  { (eval echo "$as_me:8620: \"$ac_try\"") >&5
4713   (eval $ac_try) 2>&5
4714   ac_status=$?
4715-  echo "$as_me:8520: \$? = $ac_status" >&5
4716+  echo "$as_me:8623: \$? = $ac_status" >&5
4717   (exit $ac_status); }; }; then
4718
4719 	cf_cv_term_header="$cf_test"
4720@@ -8533,7 +8636,7 @@
4721 done
4722
4723 fi
4724-echo "$as_me:8536: result: $cf_cv_term_header" >&5
4725+echo "$as_me:8639: result: $cf_cv_term_header" >&5
4726 echo "${ECHO_T}$cf_cv_term_header" >&6
4727
4728 # Set definitions to allow ifdef'ing to accommodate subdirectories
4729@@ -8568,7 +8671,7 @@
4730 		fi
4731
4732 	else
4733-		echo "$as_me:8571: result: no" >&5
4734+		echo "$as_me:8674: result: no" >&5
4735 echo "${ECHO_T}no" >&6
4736 		NCURSES_CONFIG_PKG=none
4737 	fi
4738@@ -8584,7 +8687,7 @@
4739   do
4740     # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
4741 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
4742-echo "$as_me:8587: checking for $ac_word" >&5
4743+echo "$as_me:8690: checking for $ac_word" >&5
4744 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
4745 if test "${ac_cv_prog_NCURSES_CONFIG+set}" = set; then
4746   echo $ECHO_N "(cached) $ECHO_C" >&6
4747@@ -8599,7 +8702,7 @@
4748   test -z "$ac_dir" && ac_dir=.
4749   $as_executable_p "$ac_dir/$ac_word" || continue
4750 ac_cv_prog_NCURSES_CONFIG="$ac_tool_prefix$ac_prog"
4751-echo "$as_me:8602: found $ac_dir/$ac_word" >&5
4752+echo "$as_me:8705: found $ac_dir/$ac_word" >&5
4753 break
4754 done
4755
4756@@ -8607,10 +8710,10 @@
4757 fi
4758 NCURSES_CONFIG=$ac_cv_prog_NCURSES_CONFIG
4759 if test -n "$NCURSES_CONFIG"; then
4760-  echo "$as_me:8610: result: $NCURSES_CONFIG" >&5
4761+  echo "$as_me:8713: result: $NCURSES_CONFIG" >&5
4762 echo "${ECHO_T}$NCURSES_CONFIG" >&6
4763 else
4764-  echo "$as_me:8613: result: no" >&5
4765+  echo "$as_me:8716: result: no" >&5
4766 echo "${ECHO_T}no" >&6
4767 fi
4768
4769@@ -8623,7 +8726,7 @@
4770 do
4771   # Extract the first word of "$ac_prog", so it can be a program name with args.
4772 set dummy $ac_prog; ac_word=$2
4773-echo "$as_me:8626: checking for $ac_word" >&5
4774+echo "$as_me:8729: checking for $ac_word" >&5
4775 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
4776 if test "${ac_cv_prog_ac_ct_NCURSES_CONFIG+set}" = set; then
4777   echo $ECHO_N "(cached) $ECHO_C" >&6
4778@@ -8638,7 +8741,7 @@
4779   test -z "$ac_dir" && ac_dir=.
4780   $as_executable_p "$ac_dir/$ac_word" || continue
4781 ac_cv_prog_ac_ct_NCURSES_CONFIG="$ac_prog"
4782-echo "$as_me:8641: found $ac_dir/$ac_word" >&5
4783+echo "$as_me:8744: found $ac_dir/$ac_word" >&5
4784 break
4785 done
4786
4787@@ -8646,10 +8749,10 @@
4788 fi
4789 ac_ct_NCURSES_CONFIG=$ac_cv_prog_ac_ct_NCURSES_CONFIG
4790 if test -n "$ac_ct_NCURSES_CONFIG"; then
4791-  echo "$as_me:8649: result: $ac_ct_NCURSES_CONFIG" >&5
4792+  echo "$as_me:8752: result: $ac_ct_NCURSES_CONFIG" >&5
4793 echo "${ECHO_T}$ac_ct_NCURSES_CONFIG" >&6
4794 else
4795-  echo "$as_me:8652: result: no" >&5
4796+  echo "$as_me:8755: result: no" >&5
4797 echo "${ECHO_T}no" >&6
4798 fi
4799
4800@@ -8778,7 +8881,7 @@
4801
4802 		# even with config script, some packages use no-override for curses.h
4803
4804-echo "$as_me:8781: checking if we have identified curses headers" >&5
4805+echo "$as_me:8884: checking if we have identified curses headers" >&5
4806 echo $ECHO_N "checking if we have identified curses headers... $ECHO_C" >&6
4807 if test "${cf_cv_ncurses_header+set}" = set; then
4808   echo $ECHO_N "(cached) $ECHO_C" >&6
4809@@ -8790,7 +8893,7 @@
4810 	curses.h ncurses/curses.h
4811 do
4812 cat >conftest.$ac_ext <<_ACEOF
4813-#line 8793 "configure"
4814+#line 8896 "configure"
4815 #include "confdefs.h"
4816 #include <${cf_header}>
4817 int
4818@@ -8802,16 +8905,16 @@
4819 }
4820 _ACEOF
4821 rm -f conftest.$ac_objext
4822-if { (eval echo "$as_me:8805: \"$ac_compile\"") >&5
4823+if { (eval echo "$as_me:8908: \"$ac_compile\"") >&5
4824   (eval $ac_compile) 2>&5
4825   ac_status=$?
4826-  echo "$as_me:8808: \$? = $ac_status" >&5
4827+  echo "$as_me:8911: \$? = $ac_status" >&5
4828   (exit $ac_status); } &&
4829          { ac_try='test -s conftest.$ac_objext'
4830-  { (eval echo "$as_me:8811: \"$ac_try\"") >&5
4831+  { (eval echo "$as_me:8914: \"$ac_try\"") >&5
4832   (eval $ac_try) 2>&5
4833   ac_status=$?
4834-  echo "$as_me:8814: \$? = $ac_status" >&5
4835+  echo "$as_me:8917: \$? = $ac_status" >&5
4836   (exit $ac_status); }; }; then
4837   cf_cv_ncurses_header=$cf_header; break
4838 else
4839@@ -8822,11 +8925,11 @@
4840 done
4841
4842 fi
4843-echo "$as_me:8825: result: $cf_cv_ncurses_header" >&5
4844+echo "$as_me:8928: result: $cf_cv_ncurses_header" >&5
4845 echo "${ECHO_T}$cf_cv_ncurses_header" >&6
4846
4847 if test "$cf_cv_ncurses_header" = none ; then
4848-	{ { echo "$as_me:8829: error: No curses header-files found" >&5
4849+	{ { echo "$as_me:8932: error: No curses header-files found" >&5
4850 echo "$as_me: error: No curses header-files found" >&2;}
4851    { (exit 1); exit 1; }; }
4852 fi
4853@@ -8836,23 +8939,23 @@
4854 for ac_header in $cf_cv_ncurses_header
4855 do
4856 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
4857-echo "$as_me:8839: checking for $ac_header" >&5
4858+echo "$as_me:8942: checking for $ac_header" >&5
4859 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
4860 if eval "test \"\${$as_ac_Header+set}\" = set"; then
4861   echo $ECHO_N "(cached) $ECHO_C" >&6
4862 else
4863   cat >conftest.$ac_ext <<_ACEOF
4864-#line 8845 "configure"
4865+#line 8948 "configure"
4866 #include "confdefs.h"
4867 #include <$ac_header>
4868 _ACEOF
4869-if { (eval echo "$as_me:8849: \"$ac_cpp conftest.$ac_ext\"") >&5
4870+if { (eval echo "$as_me:8952: \"$ac_cpp conftest.$ac_ext\"") >&5
4871   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
4872   ac_status=$?
4873   egrep -v '^ *\+' conftest.er1 >conftest.err
4874   rm -f conftest.er1
4875   cat conftest.err >&5
4876-  echo "$as_me:8855: \$? = $ac_status" >&5
4877+  echo "$as_me:8958: \$? = $ac_status" >&5
4878   (exit $ac_status); } >/dev/null; then
4879   if test -s conftest.err; then
4880     ac_cpp_err=$ac_c_preproc_warn_flag
4881@@ -8871,7 +8974,7 @@
4882 fi
4883 rm -f conftest.err conftest.$ac_ext
4884 fi
4885-echo "$as_me:8874: result: `eval echo '${'$as_ac_Header'}'`" >&5
4886+echo "$as_me:8977: result: `eval echo '${'$as_ac_Header'}'`" >&5
4887 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
4888 if test `eval echo '${'$as_ac_Header'}'` = yes; then
4889   cat >>confdefs.h <<EOF
4890@@ -8927,7 +9030,7 @@
4891 	CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir"
4892
4893 			  cat >conftest.$ac_ext <<_ACEOF
4894-#line 8930 "configure"
4895+#line 9033 "configure"
4896 #include "confdefs.h"
4897 #include <stdio.h>
4898 int
4899@@ -8939,16 +9042,16 @@
4900 }
4901 _ACEOF
4902 rm -f conftest.$ac_objext
4903-if { (eval echo "$as_me:8942: \"$ac_compile\"") >&5
4904+if { (eval echo "$as_me:9045: \"$ac_compile\"") >&5
4905   (eval $ac_compile) 2>&5
4906   ac_status=$?
4907-  echo "$as_me:8945: \$? = $ac_status" >&5
4908+  echo "$as_me:9048: \$? = $ac_status" >&5
4909   (exit $ac_status); } &&
4910          { ac_try='test -s conftest.$ac_objext'
4911-  { (eval echo "$as_me:8948: \"$ac_try\"") >&5
4912+  { (eval echo "$as_me:9051: \"$ac_try\"") >&5
4913   (eval $ac_try) 2>&5
4914   ac_status=$?
4915-  echo "$as_me:8951: \$? = $ac_status" >&5
4916+  echo "$as_me:9054: \$? = $ac_status" >&5
4917   (exit $ac_status); }; }; then
4918   :
4919 else
4920@@ -8965,7 +9068,7 @@
4921 		if test "$cf_have_incdir" = no ; then
4922 		  test -n "$verbose" && echo "	adding $cf_add_incdir to include-path" 1>&6
4923
4924-echo "${as_me:-configure}:8968: testing adding $cf_add_incdir to include-path ..." 1>&5
4925+echo "${as_me:-configure}:9071: testing adding $cf_add_incdir to include-path ..." 1>&5
4926
4927 		  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
4928
4929@@ -8984,7 +9087,7 @@
4930
4931 }
4932
4933-echo "$as_me:8987: checking for $cf_ncuhdr_root header in include-path" >&5
4934+echo "$as_me:9090: checking for $cf_ncuhdr_root header in include-path" >&5
4935 echo $ECHO_N "checking for $cf_ncuhdr_root header in include-path... $ECHO_C" >&6
4936 if test "${cf_cv_ncurses_h+set}" = set; then
4937   echo $ECHO_N "(cached) $ECHO_C" >&6
4938@@ -8996,7 +9099,7 @@
4939 	do
4940
4941 	cat >conftest.$ac_ext <<_ACEOF
4942-#line 8999 "configure"
4943+#line 9102 "configure"
4944 #include "confdefs.h"
4945
4946 #include <$cf_header>
4947@@ -9020,16 +9123,16 @@
4948 }
4949 _ACEOF
4950 rm -f conftest.$ac_objext
4951-if { (eval echo "$as_me:9023: \"$ac_compile\"") >&5
4952+if { (eval echo "$as_me:9126: \"$ac_compile\"") >&5
4953   (eval $ac_compile) 2>&5
4954   ac_status=$?
4955-  echo "$as_me:9026: \$? = $ac_status" >&5
4956+  echo "$as_me:9129: \$? = $ac_status" >&5
4957   (exit $ac_status); } &&
4958          { ac_try='test -s conftest.$ac_objext'
4959-  { (eval echo "$as_me:9029: \"$ac_try\"") >&5
4960+  { (eval echo "$as_me:9132: \"$ac_try\"") >&5
4961   (eval $ac_try) 2>&5
4962   ac_status=$?
4963-  echo "$as_me:9032: \$? = $ac_status" >&5
4964+  echo "$as_me:9135: \$? = $ac_status" >&5
4965   (exit $ac_status); }; }; then
4966   cf_cv_ncurses_h=$cf_header
4967
4968@@ -9044,14 +9147,14 @@
4969 	done
4970
4971 fi
4972-echo "$as_me:9047: result: $cf_cv_ncurses_h" >&5
4973+echo "$as_me:9150: result: $cf_cv_ncurses_h" >&5
4974 echo "${ECHO_T}$cf_cv_ncurses_h" >&6
4975
4976 if test "$cf_cv_ncurses_h" != no ; then
4977 	cf_cv_ncurses_header=$cf_cv_ncurses_h
4978 else
4979
4980-echo "$as_me:9054: checking for $cf_ncuhdr_root include-path" >&5
4981+echo "$as_me:9157: checking for $cf_ncuhdr_root include-path" >&5
4982 echo $ECHO_N "checking for $cf_ncuhdr_root include-path... $ECHO_C" >&6
4983 if test "${cf_cv_ncurses_h2+set}" = set; then
4984   echo $ECHO_N "(cached) $ECHO_C" >&6
4985@@ -9172,7 +9275,7 @@
4986 	CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir"
4987
4988 			  cat >conftest.$ac_ext <<_ACEOF
4989-#line 9175 "configure"
4990+#line 9278 "configure"
4991 #include "confdefs.h"
4992 #include <stdio.h>
4993 int
4994@@ -9184,16 +9287,16 @@
4995 }
4996 _ACEOF
4997 rm -f conftest.$ac_objext
4998-if { (eval echo "$as_me:9187: \"$ac_compile\"") >&5
4999+if { (eval echo "$as_me:9290: \"$ac_compile\"") >&5
5000   (eval $ac_compile) 2>&5
5001   ac_status=$?
5002-  echo "$as_me:9190: \$? = $ac_status" >&5
5003+  echo "$as_me:9293: \$? = $ac_status" >&5
5004   (exit $ac_status); } &&
5005          { ac_try='test -s conftest.$ac_objext'
5006-  { (eval echo "$as_me:9193: \"$ac_try\"") >&5
5007+  { (eval echo "$as_me:9296: \"$ac_try\"") >&5
5008   (eval $ac_try) 2>&5
5009   ac_status=$?
5010-  echo "$as_me:9196: \$? = $ac_status" >&5
5011+  echo "$as_me:9299: \$? = $ac_status" >&5
5012   (exit $ac_status); }; }; then
5013   :
5014 else
5015@@ -9210,7 +9313,7 @@
5016 		if test "$cf_have_incdir" = no ; then
5017 		  test -n "$verbose" && echo "	adding $cf_add_incdir to include-path" 1>&6
5018
5019-echo "${as_me:-configure}:9213: testing adding $cf_add_incdir to include-path ..." 1>&5
5020+echo "${as_me:-configure}:9316: testing adding $cf_add_incdir to include-path ..." 1>&5
5021
5022 		  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
5023
5024@@ -9233,7 +9336,7 @@
5025 		do
5026
5027 	cat >conftest.$ac_ext <<_ACEOF
5028-#line 9236 "configure"
5029+#line 9339 "configure"
5030 #include "confdefs.h"
5031
5032 #include <$cf_header>
5033@@ -9257,16 +9360,16 @@
5034 }
5035 _ACEOF
5036 rm -f conftest.$ac_objext
5037-if { (eval echo "$as_me:9260: \"$ac_compile\"") >&5
5038+if { (eval echo "$as_me:9363: \"$ac_compile\"") >&5
5039   (eval $ac_compile) 2>&5
5040   ac_status=$?
5041-  echo "$as_me:9263: \$? = $ac_status" >&5
5042+  echo "$as_me:9366: \$? = $ac_status" >&5
5043   (exit $ac_status); } &&
5044          { ac_try='test -s conftest.$ac_objext'
5045-  { (eval echo "$as_me:9266: \"$ac_try\"") >&5
5046+  { (eval echo "$as_me:9369: \"$ac_try\"") >&5
5047   (eval $ac_try) 2>&5
5048   ac_status=$?
5049-  echo "$as_me:9269: \$? = $ac_status" >&5
5050+  echo "$as_me:9372: \$? = $ac_status" >&5
5051   (exit $ac_status); }; }; then
5052   cf_cv_ncurses_h2=$cf_header
5053
5054@@ -9287,12 +9390,12 @@
5055 		CPPFLAGS="$cf_save2_CPPFLAGS"
5056 		test "$cf_cv_ncurses_h2" != no && break
5057 	done
5058-	test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:9290: error: not found" >&5
5059+	test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:9393: error: not found" >&5
5060 echo "$as_me: error: not found" >&2;}
5061    { (exit 1); exit 1; }; }
5062
5063 fi
5064-echo "$as_me:9295: result: $cf_cv_ncurses_h2" >&5
5065+echo "$as_me:9398: result: $cf_cv_ncurses_h2" >&5
5066 echo "${ECHO_T}$cf_cv_ncurses_h2" >&6
5067
5068 	cf_1st_incdir=`echo $cf_cv_ncurses_h2 | sed -e 's%/[^/]*$%%'`
5069@@ -9328,7 +9431,7 @@
5070 	CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir"
5071
5072 			  cat >conftest.$ac_ext <<_ACEOF
5073-#line 9331 "configure"
5074+#line 9434 "configure"
5075 #include "confdefs.h"
5076 #include <stdio.h>
5077 int
5078@@ -9340,16 +9443,16 @@
5079 }
5080 _ACEOF
5081 rm -f conftest.$ac_objext
5082-if { (eval echo "$as_me:9343: \"$ac_compile\"") >&5
5083+if { (eval echo "$as_me:9446: \"$ac_compile\"") >&5
5084   (eval $ac_compile) 2>&5
5085   ac_status=$?
5086-  echo "$as_me:9346: \$? = $ac_status" >&5
5087+  echo "$as_me:9449: \$? = $ac_status" >&5
5088   (exit $ac_status); } &&
5089          { ac_try='test -s conftest.$ac_objext'
5090-  { (eval echo "$as_me:9349: \"$ac_try\"") >&5
5091+  { (eval echo "$as_me:9452: \"$ac_try\"") >&5
5092   (eval $ac_try) 2>&5
5093   ac_status=$?
5094-  echo "$as_me:9352: \$? = $ac_status" >&5
5095+  echo "$as_me:9455: \$? = $ac_status" >&5
5096   (exit $ac_status); }; }; then
5097   :
5098 else
5099@@ -9366,7 +9469,7 @@
5100 		if test "$cf_have_incdir" = no ; then
5101 		  test -n "$verbose" && echo "	adding $cf_add_incdir to include-path" 1>&6
5102
5103-echo "${as_me:-configure}:9369: testing adding $cf_add_incdir to include-path ..." 1>&5
5104+echo "${as_me:-configure}:9472: testing adding $cf_add_incdir to include-path ..." 1>&5
5105
5106 		  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
5107
5108@@ -9414,7 +9517,7 @@
5109 	;;
5110 esac
5111
5112-echo "$as_me:9417: checking for terminfo header" >&5
5113+echo "$as_me:9520: checking for terminfo header" >&5
5114 echo $ECHO_N "checking for terminfo header... $ECHO_C" >&6
5115 if test "${cf_cv_term_header+set}" = set; then
5116   echo $ECHO_N "(cached) $ECHO_C" >&6
5117@@ -9432,7 +9535,7 @@
5118 for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h"
5119 do
5120 cat >conftest.$ac_ext <<_ACEOF
5121-#line 9435 "configure"
5122+#line 9538 "configure"
5123 #include "confdefs.h"
5124 #include <stdio.h>
5125 #include <${cf_cv_ncurses_header:-curses.h}>
5126@@ -9447,16 +9550,16 @@
5127 }
5128 _ACEOF
5129 rm -f conftest.$ac_objext
5130-if { (eval echo "$as_me:9450: \"$ac_compile\"") >&5
5131+if { (eval echo "$as_me:9553: \"$ac_compile\"") >&5
5132   (eval $ac_compile) 2>&5
5133   ac_status=$?
5134-  echo "$as_me:9453: \$? = $ac_status" >&5
5135+  echo "$as_me:9556: \$? = $ac_status" >&5
5136   (exit $ac_status); } &&
5137          { ac_try='test -s conftest.$ac_objext'
5138-  { (eval echo "$as_me:9456: \"$ac_try\"") >&5
5139+  { (eval echo "$as_me:9559: \"$ac_try\"") >&5
5140   (eval $ac_try) 2>&5
5141   ac_status=$?
5142-  echo "$as_me:9459: \$? = $ac_status" >&5
5143+  echo "$as_me:9562: \$? = $ac_status" >&5
5144   (exit $ac_status); }; }; then
5145
5146 	cf_cv_term_header="$cf_test"
5147@@ -9472,7 +9575,7 @@
5148 done
5149
5150 fi
5151-echo "$as_me:9475: result: $cf_cv_term_header" >&5
5152+echo "$as_me:9578: result: $cf_cv_term_header" >&5
5153 echo "${ECHO_T}$cf_cv_term_header" >&6
5154
5155 # Set definitions to allow ifdef'ing to accommodate subdirectories
5156@@ -9510,7 +9613,7 @@
5157 #define NCURSES 1
5158 EOF
5159
5160-echo "$as_me:9513: checking for ncurses version" >&5
5161+echo "$as_me:9616: checking for ncurses version" >&5
5162 echo $ECHO_N "checking for ncurses version... $ECHO_C" >&6
5163 if test "${cf_cv_ncurses_version+set}" = set; then
5164   echo $ECHO_N "(cached) $ECHO_C" >&6
5165@@ -9536,10 +9639,10 @@
5166 #endif
5167 EOF
5168 	cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out"
5169-	{ (eval echo "$as_me:9539: \"$cf_try\"") >&5
5170+	{ (eval echo "$as_me:9642: \"$cf_try\"") >&5
5171   (eval $cf_try) 2>&5
5172   ac_status=$?
5173-  echo "$as_me:9542: \$? = $ac_status" >&5
5174+  echo "$as_me:9645: \$? = $ac_status" >&5
5175   (exit $ac_status); }
5176 	if test -f conftest.out ; then
5177 		cf_out=`cat conftest.out | sed -e 's%^Autoconf %%' -e 's%^[^"]*"%%' -e 's%".*%%'`
5178@@ -9549,7 +9652,7 @@
5179
5180 else
5181   cat >conftest.$ac_ext <<_ACEOF
5182-#line 9552 "configure"
5183+#line 9655 "configure"
5184 #include "confdefs.h"
5185
5186 #include <${cf_cv_ncurses_header:-curses.h}>
5187@@ -9574,15 +9677,15 @@
5188 }
5189 _ACEOF
5190 rm -f conftest$ac_exeext
5191-if { (eval echo "$as_me:9577: \"$ac_link\"") >&5
5192+if { (eval echo "$as_me:9680: \"$ac_link\"") >&5
5193   (eval $ac_link) 2>&5
5194   ac_status=$?
5195-  echo "$as_me:9580: \$? = $ac_status" >&5
5196+  echo "$as_me:9683: \$? = $ac_status" >&5
5197   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
5198-  { (eval echo "$as_me:9582: \"$ac_try\"") >&5
5199+  { (eval echo "$as_me:9685: \"$ac_try\"") >&5
5200   (eval $ac_try) 2>&5
5201   ac_status=$?
5202-  echo "$as_me:9585: \$? = $ac_status" >&5
5203+  echo "$as_me:9688: \$? = $ac_status" >&5
5204   (exit $ac_status); }; }; then
5205
5206 	cf_cv_ncurses_version=`cat $cf_tempfile`
5207@@ -9596,7 +9699,7 @@
5208 	rm -f $cf_tempfile
5209
5210 fi
5211-echo "$as_me:9599: result: $cf_cv_ncurses_version" >&5
5212+echo "$as_me:9702: result: $cf_cv_ncurses_version" >&5
5213 echo "${ECHO_T}$cf_cv_ncurses_version" >&6
5214 test "$cf_cv_ncurses_version" = no ||
5215 cat >>confdefs.h <<\EOF
5216@@ -9609,7 +9712,7 @@
5217 	# to link gpm.
5218 cf_ncurses_LIBS=""
5219 cf_ncurses_SAVE="$LIBS"
5220-echo "$as_me:9612: checking for Gpm_Open in -lgpm" >&5
5221+echo "$as_me:9715: checking for Gpm_Open in -lgpm" >&5
5222 echo $ECHO_N "checking for Gpm_Open in -lgpm... $ECHO_C" >&6
5223 if test "${ac_cv_lib_gpm_Gpm_Open+set}" = set; then
5224   echo $ECHO_N "(cached) $ECHO_C" >&6
5225@@ -9617,7 +9720,7 @@
5226   ac_check_lib_save_LIBS=$LIBS
5227 LIBS="-lgpm  $LIBS"
5228 cat >conftest.$ac_ext <<_ACEOF
5229-#line 9620 "configure"
5230+#line 9723 "configure"
5231 #include "confdefs.h"
5232
5233 /* Override any gcc2 internal prototype to avoid an error.  */
5234@@ -9636,16 +9739,16 @@
5235 }
5236 _ACEOF
5237 rm -f conftest.$ac_objext conftest$ac_exeext
5238-if { (eval echo "$as_me:9639: \"$ac_link\"") >&5
5239+if { (eval echo "$as_me:9742: \"$ac_link\"") >&5
5240   (eval $ac_link) 2>&5
5241   ac_status=$?
5242-  echo "$as_me:9642: \$? = $ac_status" >&5
5243+  echo "$as_me:9745: \$? = $ac_status" >&5
5244   (exit $ac_status); } &&
5245          { ac_try='test -s conftest$ac_exeext'
5246-  { (eval echo "$as_me:9645: \"$ac_try\"") >&5
5247+  { (eval echo "$as_me:9748: \"$ac_try\"") >&5
5248   (eval $ac_try) 2>&5
5249   ac_status=$?
5250-  echo "$as_me:9648: \$? = $ac_status" >&5
5251+  echo "$as_me:9751: \$? = $ac_status" >&5
5252   (exit $ac_status); }; }; then
5253   ac_cv_lib_gpm_Gpm_Open=yes
5254 else
5255@@ -9656,10 +9759,10 @@
5256 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
5257 LIBS=$ac_check_lib_save_LIBS
5258 fi
5259-echo "$as_me:9659: result: $ac_cv_lib_gpm_Gpm_Open" >&5
5260+echo "$as_me:9762: result: $ac_cv_lib_gpm_Gpm_Open" >&5
5261 echo "${ECHO_T}$ac_cv_lib_gpm_Gpm_Open" >&6
5262 if test $ac_cv_lib_gpm_Gpm_Open = yes; then
5263-  echo "$as_me:9662: checking for initscr in -lgpm" >&5
5264+  echo "$as_me:9765: checking for initscr in -lgpm" >&5
5265 echo $ECHO_N "checking for initscr in -lgpm... $ECHO_C" >&6
5266 if test "${ac_cv_lib_gpm_initscr+set}" = set; then
5267   echo $ECHO_N "(cached) $ECHO_C" >&6
5268@@ -9667,7 +9770,7 @@
5269   ac_check_lib_save_LIBS=$LIBS
5270 LIBS="-lgpm  $LIBS"
5271 cat >conftest.$ac_ext <<_ACEOF
5272-#line 9670 "configure"
5273+#line 9773 "configure"
5274 #include "confdefs.h"
5275
5276 /* Override any gcc2 internal prototype to avoid an error.  */
5277@@ -9686,16 +9789,16 @@
5278 }
5279 _ACEOF
5280 rm -f conftest.$ac_objext conftest$ac_exeext
5281-if { (eval echo "$as_me:9689: \"$ac_link\"") >&5
5282+if { (eval echo "$as_me:9792: \"$ac_link\"") >&5
5283   (eval $ac_link) 2>&5
5284   ac_status=$?
5285-  echo "$as_me:9692: \$? = $ac_status" >&5
5286+  echo "$as_me:9795: \$? = $ac_status" >&5
5287   (exit $ac_status); } &&
5288          { ac_try='test -s conftest$ac_exeext'
5289-  { (eval echo "$as_me:9695: \"$ac_try\"") >&5
5290+  { (eval echo "$as_me:9798: \"$ac_try\"") >&5
5291   (eval $ac_try) 2>&5
5292   ac_status=$?
5293-  echo "$as_me:9698: \$? = $ac_status" >&5
5294+  echo "$as_me:9801: \$? = $ac_status" >&5
5295   (exit $ac_status); }; }; then
5296   ac_cv_lib_gpm_initscr=yes
5297 else
5298@@ -9706,7 +9809,7 @@
5299 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
5300 LIBS=$ac_check_lib_save_LIBS
5301 fi
5302-echo "$as_me:9709: result: $ac_cv_lib_gpm_initscr" >&5
5303+echo "$as_me:9812: result: $ac_cv_lib_gpm_initscr" >&5
5304 echo "${ECHO_T}$ac_cv_lib_gpm_initscr" >&6
5305 if test $ac_cv_lib_gpm_initscr = yes; then
5306   LIBS="$cf_ncurses_SAVE"
5307@@ -9721,7 +9824,7 @@
5308 	# This is only necessary if you are linking against an obsolete
5309 	# version of ncurses (but it should do no harm, since it's static).
5310 	if test "$cf_nculib_root" = ncurses ; then
5311-		echo "$as_me:9724: checking for tgoto in -lmytinfo" >&5
5312+		echo "$as_me:9827: checking for tgoto in -lmytinfo" >&5
5313 echo $ECHO_N "checking for tgoto in -lmytinfo... $ECHO_C" >&6
5314 if test "${ac_cv_lib_mytinfo_tgoto+set}" = set; then
5315   echo $ECHO_N "(cached) $ECHO_C" >&6
5316@@ -9729,7 +9832,7 @@
5317   ac_check_lib_save_LIBS=$LIBS
5318 LIBS="-lmytinfo  $LIBS"
5319 cat >conftest.$ac_ext <<_ACEOF
5320-#line 9732 "configure"
5321+#line 9835 "configure"
5322 #include "confdefs.h"
5323
5324 /* Override any gcc2 internal prototype to avoid an error.  */
5325@@ -9748,16 +9851,16 @@
5326 }
5327 _ACEOF
5328 rm -f conftest.$ac_objext conftest$ac_exeext
5329-if { (eval echo "$as_me:9751: \"$ac_link\"") >&5
5330+if { (eval echo "$as_me:9854: \"$ac_link\"") >&5
5331   (eval $ac_link) 2>&5
5332   ac_status=$?
5333-  echo "$as_me:9754: \$? = $ac_status" >&5
5334+  echo "$as_me:9857: \$? = $ac_status" >&5
5335   (exit $ac_status); } &&
5336          { ac_try='test -s conftest$ac_exeext'
5337-  { (eval echo "$as_me:9757: \"$ac_try\"") >&5
5338+  { (eval echo "$as_me:9860: \"$ac_try\"") >&5
5339   (eval $ac_try) 2>&5
5340   ac_status=$?
5341-  echo "$as_me:9760: \$? = $ac_status" >&5
5342+  echo "$as_me:9863: \$? = $ac_status" >&5
5343   (exit $ac_status); }; }; then
5344   ac_cv_lib_mytinfo_tgoto=yes
5345 else
5346@@ -9768,7 +9871,7 @@
5347 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
5348 LIBS=$ac_check_lib_save_LIBS
5349 fi
5350-echo "$as_me:9771: result: $ac_cv_lib_mytinfo_tgoto" >&5
5351+echo "$as_me:9874: result: $ac_cv_lib_mytinfo_tgoto" >&5
5352 echo "${ECHO_T}$ac_cv_lib_mytinfo_tgoto" >&6
5353 if test $ac_cv_lib_mytinfo_tgoto = yes; then
5354   cf_ncurses_LIBS="-lmytinfo $cf_ncurses_LIBS"
5355@@ -9817,13 +9920,13 @@
5356
5357 	eval 'cf_cv_have_lib_'$cf_nculib_root'=no'
5358 	cf_libdir=""
5359-	echo "$as_me:9820: checking for initscr" >&5
5360+	echo "$as_me:9923: checking for initscr" >&5
5361 echo $ECHO_N "checking for initscr... $ECHO_C" >&6
5362 if test "${ac_cv_func_initscr+set}" = set; then
5363   echo $ECHO_N "(cached) $ECHO_C" >&6
5364 else
5365   cat >conftest.$ac_ext <<_ACEOF
5366-#line 9826 "configure"
5367+#line 9929 "configure"
5368 #include "confdefs.h"
5369 #define initscr autoconf_temporary
5370 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
5371@@ -9854,16 +9957,16 @@
5372 }
5373 _ACEOF
5374 rm -f conftest.$ac_objext conftest$ac_exeext
5375-if { (eval echo "$as_me:9857: \"$ac_link\"") >&5
5376+if { (eval echo "$as_me:9960: \"$ac_link\"") >&5
5377   (eval $ac_link) 2>&5
5378   ac_status=$?
5379-  echo "$as_me:9860: \$? = $ac_status" >&5
5380+  echo "$as_me:9963: \$? = $ac_status" >&5
5381   (exit $ac_status); } &&
5382          { ac_try='test -s conftest$ac_exeext'
5383-  { (eval echo "$as_me:9863: \"$ac_try\"") >&5
5384+  { (eval echo "$as_me:9966: \"$ac_try\"") >&5
5385   (eval $ac_try) 2>&5
5386   ac_status=$?
5387-  echo "$as_me:9866: \$? = $ac_status" >&5
5388+  echo "$as_me:9969: \$? = $ac_status" >&5
5389   (exit $ac_status); }; }; then
5390   ac_cv_func_initscr=yes
5391 else
5392@@ -9873,18 +9976,18 @@
5393 fi
5394 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
5395 fi
5396-echo "$as_me:9876: result: $ac_cv_func_initscr" >&5
5397+echo "$as_me:9979: result: $ac_cv_func_initscr" >&5
5398 echo "${ECHO_T}$ac_cv_func_initscr" >&6
5399 if test $ac_cv_func_initscr = yes; then
5400   eval 'cf_cv_have_lib_'$cf_nculib_root'=yes'
5401 else
5402
5403 		cf_save_LIBS="$LIBS"
5404-		echo "$as_me:9883: checking for initscr in -l$cf_nculib_root" >&5
5405+		echo "$as_me:9986: checking for initscr in -l$cf_nculib_root" >&5
5406 echo $ECHO_N "checking for initscr in -l$cf_nculib_root... $ECHO_C" >&6
5407 		LIBS="-l$cf_nculib_root $LIBS"
5408 		cat >conftest.$ac_ext <<_ACEOF
5409-#line 9887 "configure"
5410+#line 9990 "configure"
5411 #include "confdefs.h"
5412 #include <${cf_cv_ncurses_header:-curses.h}>
5413 int
5414@@ -9896,25 +9999,25 @@
5415 }
5416 _ACEOF
5417 rm -f conftest.$ac_objext conftest$ac_exeext
5418-if { (eval echo "$as_me:9899: \"$ac_link\"") >&5
5419+if { (eval echo "$as_me:10002: \"$ac_link\"") >&5
5420   (eval $ac_link) 2>&5
5421   ac_status=$?
5422-  echo "$as_me:9902: \$? = $ac_status" >&5
5423+  echo "$as_me:10005: \$? = $ac_status" >&5
5424   (exit $ac_status); } &&
5425          { ac_try='test -s conftest$ac_exeext'
5426-  { (eval echo "$as_me:9905: \"$ac_try\"") >&5
5427+  { (eval echo "$as_me:10008: \"$ac_try\"") >&5
5428   (eval $ac_try) 2>&5
5429   ac_status=$?
5430-  echo "$as_me:9908: \$? = $ac_status" >&5
5431+  echo "$as_me:10011: \$? = $ac_status" >&5
5432   (exit $ac_status); }; }; then
5433-  echo "$as_me:9910: result: yes" >&5
5434+  echo "$as_me:10013: result: yes" >&5
5435 echo "${ECHO_T}yes" >&6
5436 			 eval 'cf_cv_have_lib_'$cf_nculib_root'=yes'
5437
5438 else
5439   echo "$as_me: failed program was:" >&5
5440 cat conftest.$ac_ext >&5
5441-echo "$as_me:9917: result: no" >&5
5442+echo "$as_me:10020: result: no" >&5
5443 echo "${ECHO_T}no" >&6
5444
5445 cf_search=
5446@@ -9982,11 +10085,11 @@
5447
5448 			for cf_libdir in $cf_search
5449 			do
5450-				echo "$as_me:9985: checking for -l$cf_nculib_root in $cf_libdir" >&5
5451+				echo "$as_me:10088: checking for -l$cf_nculib_root in $cf_libdir" >&5
5452 echo $ECHO_N "checking for -l$cf_nculib_root in $cf_libdir... $ECHO_C" >&6
5453 				LIBS="-L$cf_libdir -l$cf_nculib_root $cf_save_LIBS"
5454 				cat >conftest.$ac_ext <<_ACEOF
5455-#line 9989 "configure"
5456+#line 10092 "configure"
5457 #include "confdefs.h"
5458 #include <${cf_cv_ncurses_header:-curses.h}>
5459 int
5460@@ -9998,25 +10101,25 @@
5461 }
5462 _ACEOF
5463 rm -f conftest.$ac_objext conftest$ac_exeext
5464-if { (eval echo "$as_me:10001: \"$ac_link\"") >&5
5465+if { (eval echo "$as_me:10104: \"$ac_link\"") >&5
5466   (eval $ac_link) 2>&5
5467   ac_status=$?
5468-  echo "$as_me:10004: \$? = $ac_status" >&5
5469+  echo "$as_me:10107: \$? = $ac_status" >&5
5470   (exit $ac_status); } &&
5471          { ac_try='test -s conftest$ac_exeext'
5472-  { (eval echo "$as_me:10007: \"$ac_try\"") >&5
5473+  { (eval echo "$as_me:10110: \"$ac_try\"") >&5
5474   (eval $ac_try) 2>&5
5475   ac_status=$?
5476-  echo "$as_me:10010: \$? = $ac_status" >&5
5477+  echo "$as_me:10113: \$? = $ac_status" >&5
5478   (exit $ac_status); }; }; then
5479-  echo "$as_me:10012: result: yes" >&5
5480+  echo "$as_me:10115: result: yes" >&5
5481 echo "${ECHO_T}yes" >&6
5482 			 		 eval 'cf_cv_have_lib_'$cf_nculib_root'=yes'
5483 					 break
5484 else
5485   echo "$as_me: failed program was:" >&5
5486 cat conftest.$ac_ext >&5
5487-echo "$as_me:10019: result: no" >&5
5488+echo "$as_me:10122: result: no" >&5
5489 echo "${ECHO_T}no" >&6
5490 					 LIBS="$cf_save_LIBS"
5491 fi
5492@@ -10031,7 +10134,7 @@
5493 eval 'cf_found_library=$cf_cv_have_lib_'$cf_nculib_root
5494
5495 if test $cf_found_library = no ; then
5496-	{ { echo "$as_me:10034: error: Cannot link $cf_nculib_root library" >&5
5497+	{ { echo "$as_me:10137: error: Cannot link $cf_nculib_root library" >&5
5498 echo "$as_me: error: Cannot link $cf_nculib_root library" >&2;}
5499    { (exit 1); exit 1; }; }
5500 fi
5501@@ -10039,7 +10142,7 @@
5502 fi
5503
5504 if test -n "$cf_ncurses_LIBS" ; then
5505-	echo "$as_me:10042: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5
5506+	echo "$as_me:10145: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5
5507 echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS... $ECHO_C" >&6
5508 	cf_ncurses_SAVE="$LIBS"
5509 	for p in $cf_ncurses_LIBS ; do
5510@@ -10049,7 +10152,7 @@
5511 		fi
5512 	done
5513 	cat >conftest.$ac_ext <<_ACEOF
5514-#line 10052 "configure"
5515+#line 10155 "configure"
5516 #include "confdefs.h"
5517 #include <${cf_cv_ncurses_header:-curses.h}>
5518 int
5519@@ -10061,23 +10164,23 @@
5520 }
5521 _ACEOF
5522 rm -f conftest.$ac_objext conftest$ac_exeext
5523-if { (eval echo "$as_me:10064: \"$ac_link\"") >&5
5524+if { (eval echo "$as_me:10167: \"$ac_link\"") >&5
5525   (eval $ac_link) 2>&5
5526   ac_status=$?
5527-  echo "$as_me:10067: \$? = $ac_status" >&5
5528+  echo "$as_me:10170: \$? = $ac_status" >&5
5529   (exit $ac_status); } &&
5530          { ac_try='test -s conftest$ac_exeext'
5531-  { (eval echo "$as_me:10070: \"$ac_try\"") >&5
5532+  { (eval echo "$as_me:10173: \"$ac_try\"") >&5
5533   (eval $ac_try) 2>&5
5534   ac_status=$?
5535-  echo "$as_me:10073: \$? = $ac_status" >&5
5536+  echo "$as_me:10176: \$? = $ac_status" >&5
5537   (exit $ac_status); }; }; then
5538-  echo "$as_me:10075: result: yes" >&5
5539+  echo "$as_me:10178: result: yes" >&5
5540 echo "${ECHO_T}yes" >&6
5541 else
5542   echo "$as_me: failed program was:" >&5
5543 cat conftest.$ac_ext >&5
5544-echo "$as_me:10080: result: no" >&5
5545+echo "$as_me:10183: result: no" >&5
5546 echo "${ECHO_T}no" >&6
5547 		 LIBS="$cf_ncurses_SAVE"
5548 fi
5549@@ -10130,10 +10233,10 @@
5550 	AUTOCONF_$cf_name NCURSES_VERSION_$cf_name
5551 CF_EOF
5552 		cf_try="$ac_cpp conftest.$ac_ext 2>&5 | fgrep AUTOCONF_$cf_name >conftest.out"
5553-		{ (eval echo "$as_me:10133: \"$cf_try\"") >&5
5554+		{ (eval echo "$as_me:10236: \"$cf_try\"") >&5
5555   (eval $cf_try) 2>&5
5556   ac_status=$?
5557-  echo "$as_me:10136: \$? = $ac_status" >&5
5558+  echo "$as_me:10239: \$? = $ac_status" >&5
5559   (exit $ac_status); }
5560 		if test -f conftest.out ; then
5561 			cf_result=`cat conftest.out | sed -e "s/^.*AUTOCONF_$cf_name[ 	][ 	]*//"`
5562@@ -10151,10 +10254,10 @@
5563
5564 cf_cv_timestamp=`date`
5565
5566-echo "$as_me:10154: result: Configuring NCURSES $cf_cv_rel_version ABI $cf_cv_abi_version ($cf_cv_timestamp)" >&5
5567+echo "$as_me:10257: result: Configuring NCURSES $cf_cv_rel_version ABI $cf_cv_abi_version ($cf_cv_timestamp)" >&5
5568 echo "${ECHO_T}Configuring NCURSES $cf_cv_rel_version ABI $cf_cv_abi_version ($cf_cv_timestamp)" >&6
5569
5570-echo "$as_me:10157: checking if you want to have a library-prefix" >&5
5571+echo "$as_me:10260: checking if you want to have a library-prefix" >&5
5572 echo $ECHO_N "checking if you want to have a library-prefix... $ECHO_C" >&6
5573
5574 # Check whether --with-lib-prefix or --without-lib-prefix was given.
5575@@ -10164,7 +10267,7 @@
5576 else
5577   with_lib_prefix=auto
5578 fi;
5579-echo "$as_me:10167: result: $with_lib_prefix" >&5
5580+echo "$as_me:10270: result: $with_lib_prefix" >&5
5581 echo "${ECHO_T}$with_lib_prefix" >&6
5582
5583 if test $with_lib_prefix = auto
5584@@ -10199,7 +10302,7 @@
5585 	test -n "$GCC" && test "${ac_cv_prog_cc_g}" != yes && CC_G_OPT=''
5586 fi
5587
5588-echo "$as_me:10202: checking for default loader flags" >&5
5589+echo "$as_me:10305: checking for default loader flags" >&5
5590 echo $ECHO_N "checking for default loader flags... $ECHO_C" >&6
5591 case $DFT_LWR_MODEL in
5592 (normal)  LD_MODEL=''   ;;
5593@@ -10207,13 +10310,13 @@
5594 (profile) LD_MODEL='-pg';;
5595 (shared)  LD_MODEL=''   ;;
5596 esac
5597-echo "$as_me:10210: result: $LD_MODEL" >&5
5598+echo "$as_me:10313: result: $LD_MODEL" >&5
5599 echo "${ECHO_T}$LD_MODEL" >&6
5600
5601 LD_RPATH_OPT=
5602 if test "x$cf_cv_enable_rpath" != xno
5603 then
5604-	echo "$as_me:10216: checking for an rpath option" >&5
5605+	echo "$as_me:10319: checking for an rpath option" >&5
5606 echo $ECHO_N "checking for an rpath option... $ECHO_C" >&6
5607 	case $cf_cv_system_name in
5608 	(irix*)
5609@@ -10244,12 +10347,12 @@
5610 	(*)
5611 		;;
5612 	esac
5613-	echo "$as_me:10247: result: $LD_RPATH_OPT" >&5
5614+	echo "$as_me:10350: result: $LD_RPATH_OPT" >&5
5615 echo "${ECHO_T}$LD_RPATH_OPT" >&6
5616
5617 	case "x$LD_RPATH_OPT" in
5618 	(x-R*)
5619-		echo "$as_me:10252: checking if we need a space after rpath option" >&5
5620+		echo "$as_me:10355: checking if we need a space after rpath option" >&5
5621 echo $ECHO_N "checking if we need a space after rpath option... $ECHO_C" >&6
5622 		cf_save_LIBS="$LIBS"
5623
5624@@ -10270,7 +10373,7 @@
5625 LIBS="$cf_add_libs"
5626
5627 		cat >conftest.$ac_ext <<_ACEOF
5628-#line 10273 "configure"
5629+#line 10376 "configure"
5630 #include "confdefs.h"
5631
5632 int
5633@@ -10282,16 +10385,16 @@
5634 }
5635 _ACEOF
5636 rm -f conftest.$ac_objext conftest$ac_exeext
5637-if { (eval echo "$as_me:10285: \"$ac_link\"") >&5
5638+if { (eval echo "$as_me:10388: \"$ac_link\"") >&5
5639   (eval $ac_link) 2>&5
5640   ac_status=$?
5641-  echo "$as_me:10288: \$? = $ac_status" >&5
5642+  echo "$as_me:10391: \$? = $ac_status" >&5
5643   (exit $ac_status); } &&
5644          { ac_try='test -s conftest$ac_exeext'
5645-  { (eval echo "$as_me:10291: \"$ac_try\"") >&5
5646+  { (eval echo "$as_me:10394: \"$ac_try\"") >&5
5647   (eval $ac_try) 2>&5
5648   ac_status=$?
5649-  echo "$as_me:10294: \$? = $ac_status" >&5
5650+  echo "$as_me:10397: \$? = $ac_status" >&5
5651   (exit $ac_status); }; }; then
5652   cf_rpath_space=no
5653 else
5654@@ -10301,7 +10404,7 @@
5655 fi
5656 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
5657 		LIBS="$cf_save_LIBS"
5658-		echo "$as_me:10304: result: $cf_rpath_space" >&5
5659+		echo "$as_me:10407: result: $cf_rpath_space" >&5
5660 echo "${ECHO_T}$cf_rpath_space" >&6
5661 		test "$cf_rpath_space" = yes && LD_RPATH_OPT="$LD_RPATH_OPT "
5662 		;;
5663@@ -10323,7 +10426,7 @@
5664 	cf_ld_rpath_opt=
5665 	test "$cf_cv_enable_rpath" = yes && cf_ld_rpath_opt="$LD_RPATH_OPT"
5666
5667-	echo "$as_me:10326: checking if release/abi version should be used for shared libs" >&5
5668+	echo "$as_me:10429: checking if release/abi version should be used for shared libs" >&5
5669 echo $ECHO_N "checking if release/abi version should be used for shared libs... $ECHO_C" >&6
5670
5671 # Check whether --with-shlib-version or --without-shlib-version was given.
5672@@ -10338,9 +10441,9 @@
5673 		cf_cv_shlib_version=$withval
5674 		;;
5675 	(*)
5676-		echo "$as_me:10341: result: $withval" >&5
5677+		echo "$as_me:10444: result: $withval" >&5
5678 echo "${ECHO_T}$withval" >&6
5679-		{ { echo "$as_me:10343: error: option value must be one of: rel, abi, or auto" >&5
5680+		{ { echo "$as_me:10446: error: option value must be one of: rel, abi, or auto" >&5
5681 echo "$as_me: error: option value must be one of: rel, abi, or auto" >&2;}
5682    { (exit 1); exit 1; }; }
5683 		;;
5684@@ -10349,7 +10452,7 @@
5685 else
5686   cf_cv_shlib_version=auto
5687 fi;
5688-	echo "$as_me:10352: result: $cf_cv_shlib_version" >&5
5689+	echo "$as_me:10455: result: $cf_cv_shlib_version" >&5
5690 echo "${ECHO_T}$cf_cv_shlib_version" >&6
5691
5692 	cf_cv_rm_so_locs=no
5693@@ -10372,14 +10475,14 @@
5694
5695 	if test "$cf_try_fPIC" = yes
5696 	then
5697-		echo "$as_me:10375: checking which $CC option to use" >&5
5698+		echo "$as_me:10478: checking which $CC option to use" >&5
5699 echo $ECHO_N "checking which $CC option to use... $ECHO_C" >&6
5700 		cf_save_CFLAGS="$CFLAGS"
5701 		for CC_SHARED_OPTS in -fPIC -fpic ''
5702 		do
5703 			CFLAGS="$cf_save_CFLAGS $CC_SHARED_OPTS"
5704 			cat >conftest.$ac_ext <<_ACEOF
5705-#line 10382 "configure"
5706+#line 10485 "configure"
5707 #include "confdefs.h"
5708 #include <stdio.h>
5709 int
5710@@ -10391,16 +10494,16 @@
5711 }
5712 _ACEOF
5713 rm -f conftest.$ac_objext
5714-if { (eval echo "$as_me:10394: \"$ac_compile\"") >&5
5715+if { (eval echo "$as_me:10497: \"$ac_compile\"") >&5
5716   (eval $ac_compile) 2>&5
5717   ac_status=$?
5718-  echo "$as_me:10397: \$? = $ac_status" >&5
5719+  echo "$as_me:10500: \$? = $ac_status" >&5
5720   (exit $ac_status); } &&
5721          { ac_try='test -s conftest.$ac_objext'
5722-  { (eval echo "$as_me:10400: \"$ac_try\"") >&5
5723+  { (eval echo "$as_me:10503: \"$ac_try\"") >&5
5724   (eval $ac_try) 2>&5
5725   ac_status=$?
5726-  echo "$as_me:10403: \$? = $ac_status" >&5
5727+  echo "$as_me:10506: \$? = $ac_status" >&5
5728   (exit $ac_status); }; }; then
5729   break
5730 else
5731@@ -10409,7 +10512,7 @@
5732 fi
5733 rm -f conftest.$ac_objext conftest.$ac_ext
5734 		done
5735-		echo "$as_me:10412: result: $CC_SHARED_OPTS" >&5
5736+		echo "$as_me:10515: result: $CC_SHARED_OPTS" >&5
5737 echo "${ECHO_T}$CC_SHARED_OPTS" >&6
5738 		CFLAGS="$cf_save_CFLAGS"
5739 	fi
5740@@ -10480,7 +10583,7 @@
5741 		MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -dynamiclib -install_name ${libdir}/`basename $@` -compatibility_version ${ABI_VERSION} -current_version ${ABI_VERSION} -o $@'
5742 		test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=abi
5743 		cf_cv_shlib_version_infix=yes
5744-		echo "$as_me:10483: checking if ld -search_paths_first works" >&5
5745+		echo "$as_me:10586: checking if ld -search_paths_first works" >&5
5746 echo $ECHO_N "checking if ld -search_paths_first works... $ECHO_C" >&6
5747 if test "${cf_cv_ldflags_search_paths_first+set}" = set; then
5748   echo $ECHO_N "(cached) $ECHO_C" >&6
5749@@ -10489,7 +10592,7 @@
5750 			cf_save_LDFLAGS=$LDFLAGS
5751 			LDFLAGS="$LDFLAGS -Wl,-search_paths_first"
5752 			cat >conftest.$ac_ext <<_ACEOF
5753-#line 10492 "configure"
5754+#line 10595 "configure"
5755 #include "confdefs.h"
5756
5757 int
5758@@ -10501,16 +10604,16 @@
5759 }
5760 _ACEOF
5761 rm -f conftest.$ac_objext conftest$ac_exeext
5762-if { (eval echo "$as_me:10504: \"$ac_link\"") >&5
5763+if { (eval echo "$as_me:10607: \"$ac_link\"") >&5
5764   (eval $ac_link) 2>&5
5765   ac_status=$?
5766-  echo "$as_me:10507: \$? = $ac_status" >&5
5767+  echo "$as_me:10610: \$? = $ac_status" >&5
5768   (exit $ac_status); } &&
5769          { ac_try='test -s conftest$ac_exeext'
5770-  { (eval echo "$as_me:10510: \"$ac_try\"") >&5
5771+  { (eval echo "$as_me:10613: \"$ac_try\"") >&5
5772   (eval $ac_try) 2>&5
5773   ac_status=$?
5774-  echo "$as_me:10513: \$? = $ac_status" >&5
5775+  echo "$as_me:10616: \$? = $ac_status" >&5
5776   (exit $ac_status); }; }; then
5777   cf_cv_ldflags_search_paths_first=yes
5778 else
5779@@ -10521,7 +10624,7 @@
5780 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
5781 				LDFLAGS=$cf_save_LDFLAGS
5782 fi
5783-echo "$as_me:10524: result: $cf_cv_ldflags_search_paths_first" >&5
5784+echo "$as_me:10627: result: $cf_cv_ldflags_search_paths_first" >&5
5785 echo "${ECHO_T}$cf_cv_ldflags_search_paths_first" >&6
5786 		if test $cf_cv_ldflags_search_paths_first = yes; then
5787 			LDFLAGS="$LDFLAGS -Wl,-search_paths_first"
5788@@ -10746,7 +10849,7 @@
5789 			do
5790 				CFLAGS="$cf_shared_opts $cf_save_CFLAGS"
5791 				cat >conftest.$ac_ext <<_ACEOF
5792-#line 10749 "configure"
5793+#line 10852 "configure"
5794 #include "confdefs.h"
5795 #include <stdio.h>
5796 int
5797@@ -10758,16 +10861,16 @@
5798 }
5799 _ACEOF
5800 rm -f conftest.$ac_objext
5801-if { (eval echo "$as_me:10761: \"$ac_compile\"") >&5
5802+if { (eval echo "$as_me:10864: \"$ac_compile\"") >&5
5803   (eval $ac_compile) 2>&5
5804   ac_status=$?
5805-  echo "$as_me:10764: \$? = $ac_status" >&5
5806+  echo "$as_me:10867: \$? = $ac_status" >&5
5807   (exit $ac_status); } &&
5808          { ac_try='test -s conftest.$ac_objext'
5809-  { (eval echo "$as_me:10767: \"$ac_try\"") >&5
5810+  { (eval echo "$as_me:10870: \"$ac_try\"") >&5
5811   (eval $ac_try) 2>&5
5812   ac_status=$?
5813-  echo "$as_me:10770: \$? = $ac_status" >&5
5814+  echo "$as_me:10873: \$? = $ac_status" >&5
5815   (exit $ac_status); }; }; then
5816   break
5817 else
5818@@ -10804,7 +10907,7 @@
5819 			test "$cf_cv_do_symlinks" = no && cf_cv_do_symlinks=yes
5820 			;;
5821 		(*)
5822-			{ echo "$as_me:10807: WARNING: ignored --with-shlib-version" >&5
5823+			{ echo "$as_me:10910: WARNING: ignored --with-shlib-version" >&5
5824 echo "$as_me: WARNING: ignored --with-shlib-version" >&2;}
5825 			;;
5826 		esac
5827@@ -10814,7 +10917,7 @@
5828 	if test -n "$cf_try_cflags"
5829 	then
5830 cat > conftest.$ac_ext <<EOF
5831-#line 10817 "${as_me:-configure}"
5832+#line 10920 "${as_me:-configure}"
5833 #include <stdio.h>
5834 int main(int argc, char *argv[])
5835 {
5836@@ -10826,18 +10929,18 @@
5837 		for cf_opt in $cf_try_cflags
5838 		do
5839 			CFLAGS="$cf_save_CFLAGS -$cf_opt"
5840-			echo "$as_me:10829: checking if CFLAGS option -$cf_opt works" >&5
5841+			echo "$as_me:10932: checking if CFLAGS option -$cf_opt works" >&5
5842 echo $ECHO_N "checking if CFLAGS option -$cf_opt works... $ECHO_C" >&6
5843-			if { (eval echo "$as_me:10831: \"$ac_compile\"") >&5
5844+			if { (eval echo "$as_me:10934: \"$ac_compile\"") >&5
5845   (eval $ac_compile) 2>&5
5846   ac_status=$?
5847-  echo "$as_me:10834: \$? = $ac_status" >&5
5848+  echo "$as_me:10937: \$? = $ac_status" >&5
5849   (exit $ac_status); }; then
5850-				echo "$as_me:10836: result: yes" >&5
5851+				echo "$as_me:10939: result: yes" >&5
5852 echo "${ECHO_T}yes" >&6
5853 				cf_save_CFLAGS="$CFLAGS"
5854 			else
5855-				echo "$as_me:10840: result: no" >&5
5856+				echo "$as_me:10943: result: no" >&5
5857 echo "${ECHO_T}no" >&6
5858 			fi
5859 		done
5860@@ -10852,17 +10955,17 @@
5861
5862 	test -n "$verbose" && echo "	CC_SHARED_OPTS: $CC_SHARED_OPTS" 1>&6
5863
5864-echo "${as_me:-configure}:10855: testing CC_SHARED_OPTS: $CC_SHARED_OPTS ..." 1>&5
5865+echo "${as_me:-configure}:10958: testing CC_SHARED_OPTS: $CC_SHARED_OPTS ..." 1>&5
5866
5867 	test -n "$verbose" && echo "	MK_SHARED_LIB:  $MK_SHARED_LIB" 1>&6
5868
5869-echo "${as_me:-configure}:10859: testing MK_SHARED_LIB:  $MK_SHARED_LIB ..." 1>&5
5870+echo "${as_me:-configure}:10962: testing MK_SHARED_LIB:  $MK_SHARED_LIB ..." 1>&5
5871
5872 # The test/sample programs in the original tree link using rpath option.
5873 # Make it optional for packagers.
5874 if test -n "$LOCAL_LDFLAGS"
5875 then
5876-	echo "$as_me:10865: checking if you want to link sample programs with rpath option" >&5
5877+	echo "$as_me:10968: checking if you want to link sample programs with rpath option" >&5
5878 echo $ECHO_N "checking if you want to link sample programs with rpath option... $ECHO_C" >&6
5879
5880 # Check whether --enable-rpath-link or --disable-rpath-link was given.
5881@@ -10872,7 +10975,7 @@
5882 else
5883   with_rpath_link=yes
5884 fi;
5885-	echo "$as_me:10875: result: $with_rpath_link" >&5
5886+	echo "$as_me:10978: result: $with_rpath_link" >&5
5887 echo "${ECHO_T}$with_rpath_link" >&6
5888 	if test "$with_rpath_link" = no
5889 	then
5890@@ -10884,7 +10987,7 @@
5891 ###############################################################################
5892
5893 ###   use option --enable-broken-linker to force on use of broken-linker support
5894-echo "$as_me:10887: checking if you want broken-linker support code" >&5
5895+echo "$as_me:10990: checking if you want broken-linker support code" >&5
5896 echo $ECHO_N "checking if you want broken-linker support code... $ECHO_C" >&6
5897
5898 # Check whether --enable-broken_linker or --disable-broken_linker was given.
5899@@ -10894,7 +10997,7 @@
5900 else
5901   with_broken_linker=${BROKEN_LINKER:-no}
5902 fi;
5903-echo "$as_me:10897: result: $with_broken_linker" >&5
5904+echo "$as_me:11000: result: $with_broken_linker" >&5
5905 echo "${ECHO_T}$with_broken_linker" >&6
5906
5907 BROKEN_LINKER=0
5908@@ -10914,7 +11017,7 @@
5909 		BROKEN_LINKER=1
5910 		test -n "$verbose" && echo "	cygwin linker is broken anyway" 1>&6
5911
5912-echo "${as_me:-configure}:10917: testing cygwin linker is broken anyway ..." 1>&5
5913+echo "${as_me:-configure}:11020: testing cygwin linker is broken anyway ..." 1>&5
5914
5915 		;;
5916 	esac
5917@@ -10922,14 +11025,14 @@
5918
5919 # Check to define _XOPEN_SOURCE "automatically"
5920
5921-echo "$as_me:10925: checking if the POSIX test-macros are already defined" >&5
5922+echo "$as_me:11028: checking if the POSIX test-macros are already defined" >&5
5923 echo $ECHO_N "checking if the POSIX test-macros are already defined... $ECHO_C" >&6
5924 if test "${cf_cv_posix_visible+set}" = set; then
5925   echo $ECHO_N "(cached) $ECHO_C" >&6
5926 else
5927
5928 cat >conftest.$ac_ext <<_ACEOF
5929-#line 10932 "configure"
5930+#line 11035 "configure"
5931 #include "confdefs.h"
5932 #include <stdio.h>
5933 int
5934@@ -10948,16 +11051,16 @@
5935 }
5936 _ACEOF
5937 rm -f conftest.$ac_objext
5938-if { (eval echo "$as_me:10951: \"$ac_compile\"") >&5
5939+if { (eval echo "$as_me:11054: \"$ac_compile\"") >&5
5940   (eval $ac_compile) 2>&5
5941   ac_status=$?
5942-  echo "$as_me:10954: \$? = $ac_status" >&5
5943+  echo "$as_me:11057: \$? = $ac_status" >&5
5944   (exit $ac_status); } &&
5945          { ac_try='test -s conftest.$ac_objext'
5946-  { (eval echo "$as_me:10957: \"$ac_try\"") >&5
5947+  { (eval echo "$as_me:11060: \"$ac_try\"") >&5
5948   (eval $ac_try) 2>&5
5949   ac_status=$?
5950-  echo "$as_me:10960: \$? = $ac_status" >&5
5951+  echo "$as_me:11063: \$? = $ac_status" >&5
5952   (exit $ac_status); }; }; then
5953   cf_cv_posix_visible=no
5954 else
5955@@ -10968,7 +11071,7 @@
5956 rm -f conftest.$ac_objext conftest.$ac_ext
5957
5958 fi
5959-echo "$as_me:10971: result: $cf_cv_posix_visible" >&5
5960+echo "$as_me:11074: result: $cf_cv_posix_visible" >&5
5961 echo "${ECHO_T}$cf_cv_posix_visible" >&6
5962
5963 if test "$cf_cv_posix_visible" = no; then
5964@@ -11013,14 +11116,14 @@
5965
5966 cf_gnu_xopen_source=$cf_XOPEN_SOURCE
5967
5968-echo "$as_me:11016: checking if this is the GNU C library" >&5
5969+echo "$as_me:11119: checking if this is the GNU C library" >&5
5970 echo $ECHO_N "checking if this is the GNU C library... $ECHO_C" >&6
5971 if test "${cf_cv_gnu_library+set}" = set; then
5972   echo $ECHO_N "(cached) $ECHO_C" >&6
5973 else
5974
5975 cat >conftest.$ac_ext <<_ACEOF
5976-#line 11023 "configure"
5977+#line 11126 "configure"
5978 #include "confdefs.h"
5979 #include <sys/types.h>
5980 int
5981@@ -11039,16 +11142,16 @@
5982 }
5983 _ACEOF
5984 rm -f conftest.$ac_objext
5985-if { (eval echo "$as_me:11042: \"$ac_compile\"") >&5
5986+if { (eval echo "$as_me:11145: \"$ac_compile\"") >&5
5987   (eval $ac_compile) 2>&5
5988   ac_status=$?
5989-  echo "$as_me:11045: \$? = $ac_status" >&5
5990+  echo "$as_me:11148: \$? = $ac_status" >&5
5991   (exit $ac_status); } &&
5992          { ac_try='test -s conftest.$ac_objext'
5993-  { (eval echo "$as_me:11048: \"$ac_try\"") >&5
5994+  { (eval echo "$as_me:11151: \"$ac_try\"") >&5
5995   (eval $ac_try) 2>&5
5996   ac_status=$?
5997-  echo "$as_me:11051: \$? = $ac_status" >&5
5998+  echo "$as_me:11154: \$? = $ac_status" >&5
5999   (exit $ac_status); }; }; then
6000   cf_cv_gnu_library=yes
6001 else
6002@@ -11059,7 +11162,7 @@
6003 rm -f conftest.$ac_objext conftest.$ac_ext
6004
6005 fi
6006-echo "$as_me:11062: result: $cf_cv_gnu_library" >&5
6007+echo "$as_me:11165: result: $cf_cv_gnu_library" >&5
6008 echo "${ECHO_T}$cf_cv_gnu_library" >&6
6009
6010 if test x$cf_cv_gnu_library = xyes; then
6011@@ -11067,7 +11170,7 @@
6012 	# With glibc 2.19 (13 years after this check was begun), _DEFAULT_SOURCE
6013 	# was changed to help a little.  newlib incorporated the change about 4
6014 	# years later.
6015-	echo "$as_me:11070: checking if _DEFAULT_SOURCE can be used as a basis" >&5
6016+	echo "$as_me:11173: checking if _DEFAULT_SOURCE can be used as a basis" >&5
6017 echo $ECHO_N "checking if _DEFAULT_SOURCE can be used as a basis... $ECHO_C" >&6
6018 if test "${cf_cv_gnu_library_219+set}" = set; then
6019   echo $ECHO_N "(cached) $ECHO_C" >&6
6020@@ -11079,7 +11182,7 @@
6021 	CPPFLAGS="${CPPFLAGS}-D_DEFAULT_SOURCE"
6022
6023 		cat >conftest.$ac_ext <<_ACEOF
6024-#line 11082 "configure"
6025+#line 11185 "configure"
6026 #include "confdefs.h"
6027 #include <sys/types.h>
6028 int
6029@@ -11098,16 +11201,16 @@
6030 }
6031 _ACEOF
6032 rm -f conftest.$ac_objext
6033-if { (eval echo "$as_me:11101: \"$ac_compile\"") >&5
6034+if { (eval echo "$as_me:11204: \"$ac_compile\"") >&5
6035   (eval $ac_compile) 2>&5
6036   ac_status=$?
6037-  echo "$as_me:11104: \$? = $ac_status" >&5
6038+  echo "$as_me:11207: \$? = $ac_status" >&5
6039   (exit $ac_status); } &&
6040          { ac_try='test -s conftest.$ac_objext'
6041-  { (eval echo "$as_me:11107: \"$ac_try\"") >&5
6042+  { (eval echo "$as_me:11210: \"$ac_try\"") >&5
6043   (eval $ac_try) 2>&5
6044   ac_status=$?
6045-  echo "$as_me:11110: \$? = $ac_status" >&5
6046+  echo "$as_me:11213: \$? = $ac_status" >&5
6047   (exit $ac_status); }; }; then
6048   cf_cv_gnu_library_219=yes
6049 else
6050@@ -11119,12 +11222,12 @@
6051 		CPPFLAGS="$cf_save"
6052
6053 fi
6054-echo "$as_me:11122: result: $cf_cv_gnu_library_219" >&5
6055+echo "$as_me:11225: result: $cf_cv_gnu_library_219" >&5
6056 echo "${ECHO_T}$cf_cv_gnu_library_219" >&6
6057
6058 	if test "x$cf_cv_gnu_library_219" = xyes; then
6059 		cf_save="$CPPFLAGS"
6060-		echo "$as_me:11127: checking if _XOPEN_SOURCE=$cf_gnu_xopen_source works with _DEFAULT_SOURCE" >&5
6061+		echo "$as_me:11230: checking if _XOPEN_SOURCE=$cf_gnu_xopen_source works with _DEFAULT_SOURCE" >&5
6062 echo $ECHO_N "checking if _XOPEN_SOURCE=$cf_gnu_xopen_source works with _DEFAULT_SOURCE... $ECHO_C" >&6
6063 if test "${cf_cv_gnu_dftsrc_219+set}" = set; then
6064   echo $ECHO_N "(cached) $ECHO_C" >&6
6065@@ -11229,7 +11332,7 @@
6066 fi
6067
6068 			cat >conftest.$ac_ext <<_ACEOF
6069-#line 11232 "configure"
6070+#line 11335 "configure"
6071 #include "confdefs.h"
6072
6073 				#include <limits.h>
6074@@ -11249,16 +11352,16 @@
6075 }
6076 _ACEOF
6077 rm -f conftest.$ac_objext
6078-if { (eval echo "$as_me:11252: \"$ac_compile\"") >&5
6079+if { (eval echo "$as_me:11355: \"$ac_compile\"") >&5
6080   (eval $ac_compile) 2>&5
6081   ac_status=$?
6082-  echo "$as_me:11255: \$? = $ac_status" >&5
6083+  echo "$as_me:11358: \$? = $ac_status" >&5
6084   (exit $ac_status); } &&
6085          { ac_try='test -s conftest.$ac_objext'
6086-  { (eval echo "$as_me:11258: \"$ac_try\"") >&5
6087+  { (eval echo "$as_me:11361: \"$ac_try\"") >&5
6088   (eval $ac_try) 2>&5
6089   ac_status=$?
6090-  echo "$as_me:11261: \$? = $ac_status" >&5
6091+  echo "$as_me:11364: \$? = $ac_status" >&5
6092   (exit $ac_status); }; }; then
6093   cf_cv_gnu_dftsrc_219=yes
6094 else
6095@@ -11269,7 +11372,7 @@
6096 rm -f conftest.$ac_objext conftest.$ac_ext
6097
6098 fi
6099-echo "$as_me:11272: result: $cf_cv_gnu_dftsrc_219" >&5
6100+echo "$as_me:11375: result: $cf_cv_gnu_dftsrc_219" >&5
6101 echo "${ECHO_T}$cf_cv_gnu_dftsrc_219" >&6
6102 		test "x$cf_cv_gnu_dftsrc_219" = "xyes" || CPPFLAGS="$cf_save"
6103 	else
6104@@ -11278,14 +11381,14 @@
6105
6106 	if test "x$cf_cv_gnu_dftsrc_219" != xyes; then
6107
6108-		echo "$as_me:11281: checking if we must define _GNU_SOURCE" >&5
6109+		echo "$as_me:11384: checking if we must define _GNU_SOURCE" >&5
6110 echo $ECHO_N "checking if we must define _GNU_SOURCE... $ECHO_C" >&6
6111 if test "${cf_cv_gnu_source+set}" = set; then
6112   echo $ECHO_N "(cached) $ECHO_C" >&6
6113 else
6114
6115 		cat >conftest.$ac_ext <<_ACEOF
6116-#line 11288 "configure"
6117+#line 11391 "configure"
6118 #include "confdefs.h"
6119 #include <sys/types.h>
6120 int
6121@@ -11300,16 +11403,16 @@
6122 }
6123 _ACEOF
6124 rm -f conftest.$ac_objext
6125-if { (eval echo "$as_me:11303: \"$ac_compile\"") >&5
6126+if { (eval echo "$as_me:11406: \"$ac_compile\"") >&5
6127   (eval $ac_compile) 2>&5
6128   ac_status=$?
6129-  echo "$as_me:11306: \$? = $ac_status" >&5
6130+  echo "$as_me:11409: \$? = $ac_status" >&5
6131   (exit $ac_status); } &&
6132          { ac_try='test -s conftest.$ac_objext'
6133-  { (eval echo "$as_me:11309: \"$ac_try\"") >&5
6134+  { (eval echo "$as_me:11412: \"$ac_try\"") >&5
6135   (eval $ac_try) 2>&5
6136   ac_status=$?
6137-  echo "$as_me:11312: \$? = $ac_status" >&5
6138+  echo "$as_me:11415: \$? = $ac_status" >&5
6139   (exit $ac_status); }; }; then
6140   cf_cv_gnu_source=no
6141 else
6142@@ -11416,7 +11519,7 @@
6143 fi
6144
6145 			 cat >conftest.$ac_ext <<_ACEOF
6146-#line 11419 "configure"
6147+#line 11522 "configure"
6148 #include "confdefs.h"
6149 #include <sys/types.h>
6150 int
6151@@ -11431,16 +11534,16 @@
6152 }
6153 _ACEOF
6154 rm -f conftest.$ac_objext
6155-if { (eval echo "$as_me:11434: \"$ac_compile\"") >&5
6156+if { (eval echo "$as_me:11537: \"$ac_compile\"") >&5
6157   (eval $ac_compile) 2>&5
6158   ac_status=$?
6159-  echo "$as_me:11437: \$? = $ac_status" >&5
6160+  echo "$as_me:11540: \$? = $ac_status" >&5
6161   (exit $ac_status); } &&
6162          { ac_try='test -s conftest.$ac_objext'
6163-  { (eval echo "$as_me:11440: \"$ac_try\"") >&5
6164+  { (eval echo "$as_me:11543: \"$ac_try\"") >&5
6165   (eval $ac_try) 2>&5
6166   ac_status=$?
6167-  echo "$as_me:11443: \$? = $ac_status" >&5
6168+  echo "$as_me:11546: \$? = $ac_status" >&5
6169   (exit $ac_status); }; }; then
6170   cf_cv_gnu_source=no
6171 else
6172@@ -11455,12 +11558,12 @@
6173 rm -f conftest.$ac_objext conftest.$ac_ext
6174
6175 fi
6176-echo "$as_me:11458: result: $cf_cv_gnu_source" >&5
6177+echo "$as_me:11561: result: $cf_cv_gnu_source" >&5
6178 echo "${ECHO_T}$cf_cv_gnu_source" >&6
6179
6180 		if test "$cf_cv_gnu_source" = yes
6181 		then
6182-		echo "$as_me:11463: checking if we should also define _DEFAULT_SOURCE" >&5
6183+		echo "$as_me:11566: checking if we should also define _DEFAULT_SOURCE" >&5
6184 echo $ECHO_N "checking if we should also define _DEFAULT_SOURCE... $ECHO_C" >&6
6185 if test "${cf_cv_default_source+set}" = set; then
6186   echo $ECHO_N "(cached) $ECHO_C" >&6
6187@@ -11470,7 +11573,7 @@
6188 	CPPFLAGS="${CPPFLAGS}-D_GNU_SOURCE"
6189
6190 			cat >conftest.$ac_ext <<_ACEOF
6191-#line 11473 "configure"
6192+#line 11576 "configure"
6193 #include "confdefs.h"
6194 #include <sys/types.h>
6195 int
6196@@ -11485,16 +11588,16 @@
6197 }
6198 _ACEOF
6199 rm -f conftest.$ac_objext
6200-if { (eval echo "$as_me:11488: \"$ac_compile\"") >&5
6201+if { (eval echo "$as_me:11591: \"$ac_compile\"") >&5
6202   (eval $ac_compile) 2>&5
6203   ac_status=$?
6204-  echo "$as_me:11491: \$? = $ac_status" >&5
6205+  echo "$as_me:11594: \$? = $ac_status" >&5
6206   (exit $ac_status); } &&
6207          { ac_try='test -s conftest.$ac_objext'
6208-  { (eval echo "$as_me:11494: \"$ac_try\"") >&5
6209+  { (eval echo "$as_me:11597: \"$ac_try\"") >&5
6210   (eval $ac_try) 2>&5
6211   ac_status=$?
6212-  echo "$as_me:11497: \$? = $ac_status" >&5
6213+  echo "$as_me:11600: \$? = $ac_status" >&5
6214   (exit $ac_status); }; }; then
6215   cf_cv_default_source=no
6216 else
6217@@ -11505,7 +11608,7 @@
6218 rm -f conftest.$ac_objext conftest.$ac_ext
6219
6220 fi
6221-echo "$as_me:11508: result: $cf_cv_default_source" >&5
6222+echo "$as_me:11611: result: $cf_cv_default_source" >&5
6223 echo "${ECHO_T}$cf_cv_default_source" >&6
6224 			if test "$cf_cv_default_source" = yes
6225 			then
6226@@ -11542,16 +11645,16 @@
6227 	sed	-e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^ 	]*\)\?[ 	]/ /g' \
6228 		-e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^ 	]*\)\?$//g'`
6229
6230-echo "$as_me:11545: checking if we should define _POSIX_C_SOURCE" >&5
6231+echo "$as_me:11648: checking if we should define _POSIX_C_SOURCE" >&5
6232 echo $ECHO_N "checking if we should define _POSIX_C_SOURCE... $ECHO_C" >&6
6233 if test "${cf_cv_posix_c_source+set}" = set; then
6234   echo $ECHO_N "(cached) $ECHO_C" >&6
6235 else
6236
6237-echo "${as_me:-configure}:11551: testing if the symbol is already defined go no further ..." 1>&5
6238+echo "${as_me:-configure}:11654: testing if the symbol is already defined go no further ..." 1>&5
6239
6240 	cat >conftest.$ac_ext <<_ACEOF
6241-#line 11554 "configure"
6242+#line 11657 "configure"
6243 #include "confdefs.h"
6244 #include <sys/types.h>
6245 int
6246@@ -11566,16 +11669,16 @@
6247 }
6248 _ACEOF
6249 rm -f conftest.$ac_objext
6250-if { (eval echo "$as_me:11569: \"$ac_compile\"") >&5
6251+if { (eval echo "$as_me:11672: \"$ac_compile\"") >&5
6252   (eval $ac_compile) 2>&5
6253   ac_status=$?
6254-  echo "$as_me:11572: \$? = $ac_status" >&5
6255+  echo "$as_me:11675: \$? = $ac_status" >&5
6256   (exit $ac_status); } &&
6257          { ac_try='test -s conftest.$ac_objext'
6258-  { (eval echo "$as_me:11575: \"$ac_try\"") >&5
6259+  { (eval echo "$as_me:11678: \"$ac_try\"") >&5
6260   (eval $ac_try) 2>&5
6261   ac_status=$?
6262-  echo "$as_me:11578: \$? = $ac_status" >&5
6263+  echo "$as_me:11681: \$? = $ac_status" >&5
6264   (exit $ac_status); }; }; then
6265   cf_cv_posix_c_source=no
6266 else
6267@@ -11596,7 +11699,7 @@
6268 	 esac
6269 	 if test "$cf_want_posix_source" = yes ; then
6270 		cat >conftest.$ac_ext <<_ACEOF
6271-#line 11599 "configure"
6272+#line 11702 "configure"
6273 #include "confdefs.h"
6274 #include <sys/types.h>
6275 int
6276@@ -11611,16 +11714,16 @@
6277 }
6278 _ACEOF
6279 rm -f conftest.$ac_objext
6280-if { (eval echo "$as_me:11614: \"$ac_compile\"") >&5
6281+if { (eval echo "$as_me:11717: \"$ac_compile\"") >&5
6282   (eval $ac_compile) 2>&5
6283   ac_status=$?
6284-  echo "$as_me:11617: \$? = $ac_status" >&5
6285+  echo "$as_me:11720: \$? = $ac_status" >&5
6286   (exit $ac_status); } &&
6287          { ac_try='test -s conftest.$ac_objext'
6288-  { (eval echo "$as_me:11620: \"$ac_try\"") >&5
6289+  { (eval echo "$as_me:11723: \"$ac_try\"") >&5
6290   (eval $ac_try) 2>&5
6291   ac_status=$?
6292-  echo "$as_me:11623: \$? = $ac_status" >&5
6293+  echo "$as_me:11726: \$? = $ac_status" >&5
6294   (exit $ac_status); }; }; then
6295   :
6296 else
6297@@ -11631,7 +11734,7 @@
6298 rm -f conftest.$ac_objext conftest.$ac_ext
6299 	 fi
6300
6301-echo "${as_me:-configure}:11634: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5
6302+echo "${as_me:-configure}:11737: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5
6303
6304 	 CFLAGS="$cf_trim_CFLAGS"
6305 	 CPPFLAGS="$cf_trim_CPPFLAGS"
6306@@ -11639,10 +11742,10 @@
6307 	test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS "
6308 	CPPFLAGS="${CPPFLAGS}$cf_cv_posix_c_source"
6309
6310-echo "${as_me:-configure}:11642: testing if the second compile does not leave our definition intact error ..." 1>&5
6311+echo "${as_me:-configure}:11745: testing if the second compile does not leave our definition intact error ..." 1>&5
6312
6313 	 cat >conftest.$ac_ext <<_ACEOF
6314-#line 11645 "configure"
6315+#line 11748 "configure"
6316 #include "confdefs.h"
6317 #include <sys/types.h>
6318 int
6319@@ -11657,16 +11760,16 @@
6320 }
6321 _ACEOF
6322 rm -f conftest.$ac_objext
6323-if { (eval echo "$as_me:11660: \"$ac_compile\"") >&5
6324+if { (eval echo "$as_me:11763: \"$ac_compile\"") >&5
6325   (eval $ac_compile) 2>&5
6326   ac_status=$?
6327-  echo "$as_me:11663: \$? = $ac_status" >&5
6328+  echo "$as_me:11766: \$? = $ac_status" >&5
6329   (exit $ac_status); } &&
6330          { ac_try='test -s conftest.$ac_objext'
6331-  { (eval echo "$as_me:11666: \"$ac_try\"") >&5
6332+  { (eval echo "$as_me:11769: \"$ac_try\"") >&5
6333   (eval $ac_try) 2>&5
6334   ac_status=$?
6335-  echo "$as_me:11669: \$? = $ac_status" >&5
6336+  echo "$as_me:11772: \$? = $ac_status" >&5
6337   (exit $ac_status); }; }; then
6338   :
6339 else
6340@@ -11682,7 +11785,7 @@
6341 rm -f conftest.$ac_objext conftest.$ac_ext
6342
6343 fi
6344-echo "$as_me:11685: result: $cf_cv_posix_c_source" >&5
6345+echo "$as_me:11788: result: $cf_cv_posix_c_source" >&5
6346 echo "${ECHO_T}$cf_cv_posix_c_source" >&6
6347
6348 if test "$cf_cv_posix_c_source" != no ; then
6349@@ -11822,14 +11925,14 @@
6350 	;;
6351 (*)
6352
6353-echo "$as_me:11825: checking if we should define _XOPEN_SOURCE" >&5
6354+echo "$as_me:11928: checking if we should define _XOPEN_SOURCE" >&5
6355 echo $ECHO_N "checking if we should define _XOPEN_SOURCE... $ECHO_C" >&6
6356 if test "${cf_cv_xopen_source+set}" = set; then
6357   echo $ECHO_N "(cached) $ECHO_C" >&6
6358 else
6359
6360 	cat >conftest.$ac_ext <<_ACEOF
6361-#line 11832 "configure"
6362+#line 11935 "configure"
6363 #include "confdefs.h"
6364
6365 #include <stdlib.h>
6366@@ -11848,16 +11951,16 @@
6367 }
6368 _ACEOF
6369 rm -f conftest.$ac_objext
6370-if { (eval echo "$as_me:11851: \"$ac_compile\"") >&5
6371+if { (eval echo "$as_me:11954: \"$ac_compile\"") >&5
6372   (eval $ac_compile) 2>&5
6373   ac_status=$?
6374-  echo "$as_me:11854: \$? = $ac_status" >&5
6375+  echo "$as_me:11957: \$? = $ac_status" >&5
6376   (exit $ac_status); } &&
6377          { ac_try='test -s conftest.$ac_objext'
6378-  { (eval echo "$as_me:11857: \"$ac_try\"") >&5
6379+  { (eval echo "$as_me:11960: \"$ac_try\"") >&5
6380   (eval $ac_try) 2>&5
6381   ac_status=$?
6382-  echo "$as_me:11860: \$? = $ac_status" >&5
6383+  echo "$as_me:11963: \$? = $ac_status" >&5
6384   (exit $ac_status); }; }; then
6385   cf_cv_xopen_source=no
6386 else
6387@@ -11869,7 +11972,7 @@
6388 	CPPFLAGS="${CPPFLAGS}-D_XOPEN_SOURCE=$cf_XOPEN_SOURCE"
6389
6390 	 cat >conftest.$ac_ext <<_ACEOF
6391-#line 11872 "configure"
6392+#line 11975 "configure"
6393 #include "confdefs.h"
6394
6395 #include <stdlib.h>
6396@@ -11888,16 +11991,16 @@
6397 }
6398 _ACEOF
6399 rm -f conftest.$ac_objext
6400-if { (eval echo "$as_me:11891: \"$ac_compile\"") >&5
6401+if { (eval echo "$as_me:11994: \"$ac_compile\"") >&5
6402   (eval $ac_compile) 2>&5
6403   ac_status=$?
6404-  echo "$as_me:11894: \$? = $ac_status" >&5
6405+  echo "$as_me:11997: \$? = $ac_status" >&5
6406   (exit $ac_status); } &&
6407          { ac_try='test -s conftest.$ac_objext'
6408-  { (eval echo "$as_me:11897: \"$ac_try\"") >&5
6409+  { (eval echo "$as_me:12000: \"$ac_try\"") >&5
6410   (eval $ac_try) 2>&5
6411   ac_status=$?
6412-  echo "$as_me:11900: \$? = $ac_status" >&5
6413+  echo "$as_me:12003: \$? = $ac_status" >&5
6414   (exit $ac_status); }; }; then
6415   cf_cv_xopen_source=no
6416 else
6417@@ -11912,7 +12015,7 @@
6418 rm -f conftest.$ac_objext conftest.$ac_ext
6419
6420 fi
6421-echo "$as_me:11915: result: $cf_cv_xopen_source" >&5
6422+echo "$as_me:12018: result: $cf_cv_xopen_source" >&5
6423 echo "${ECHO_T}$cf_cv_xopen_source" >&6
6424
6425 if test "$cf_cv_xopen_source" != no ; then
6426@@ -12042,16 +12145,16 @@
6427 	sed	-e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^ 	]*\)\?[ 	]/ /g' \
6428 		-e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^ 	]*\)\?$//g'`
6429
6430-echo "$as_me:12045: checking if we should define _POSIX_C_SOURCE" >&5
6431+echo "$as_me:12148: checking if we should define _POSIX_C_SOURCE" >&5
6432 echo $ECHO_N "checking if we should define _POSIX_C_SOURCE... $ECHO_C" >&6
6433 if test "${cf_cv_posix_c_source+set}" = set; then
6434   echo $ECHO_N "(cached) $ECHO_C" >&6
6435 else
6436
6437-echo "${as_me:-configure}:12051: testing if the symbol is already defined go no further ..." 1>&5
6438+echo "${as_me:-configure}:12154: testing if the symbol is already defined go no further ..." 1>&5
6439
6440 	cat >conftest.$ac_ext <<_ACEOF
6441-#line 12054 "configure"
6442+#line 12157 "configure"
6443 #include "confdefs.h"
6444 #include <sys/types.h>
6445 int
6446@@ -12066,16 +12169,16 @@
6447 }
6448 _ACEOF
6449 rm -f conftest.$ac_objext
6450-if { (eval echo "$as_me:12069: \"$ac_compile\"") >&5
6451+if { (eval echo "$as_me:12172: \"$ac_compile\"") >&5
6452   (eval $ac_compile) 2>&5
6453   ac_status=$?
6454-  echo "$as_me:12072: \$? = $ac_status" >&5
6455+  echo "$as_me:12175: \$? = $ac_status" >&5
6456   (exit $ac_status); } &&
6457          { ac_try='test -s conftest.$ac_objext'
6458-  { (eval echo "$as_me:12075: \"$ac_try\"") >&5
6459+  { (eval echo "$as_me:12178: \"$ac_try\"") >&5
6460   (eval $ac_try) 2>&5
6461   ac_status=$?
6462-  echo "$as_me:12078: \$? = $ac_status" >&5
6463+  echo "$as_me:12181: \$? = $ac_status" >&5
6464   (exit $ac_status); }; }; then
6465   cf_cv_posix_c_source=no
6466 else
6467@@ -12096,7 +12199,7 @@
6468 	 esac
6469 	 if test "$cf_want_posix_source" = yes ; then
6470 		cat >conftest.$ac_ext <<_ACEOF
6471-#line 12099 "configure"
6472+#line 12202 "configure"
6473 #include "confdefs.h"
6474 #include <sys/types.h>
6475 int
6476@@ -12111,16 +12214,16 @@
6477 }
6478 _ACEOF
6479 rm -f conftest.$ac_objext
6480-if { (eval echo "$as_me:12114: \"$ac_compile\"") >&5
6481+if { (eval echo "$as_me:12217: \"$ac_compile\"") >&5
6482   (eval $ac_compile) 2>&5
6483   ac_status=$?
6484-  echo "$as_me:12117: \$? = $ac_status" >&5
6485+  echo "$as_me:12220: \$? = $ac_status" >&5
6486   (exit $ac_status); } &&
6487          { ac_try='test -s conftest.$ac_objext'
6488-  { (eval echo "$as_me:12120: \"$ac_try\"") >&5
6489+  { (eval echo "$as_me:12223: \"$ac_try\"") >&5
6490   (eval $ac_try) 2>&5
6491   ac_status=$?
6492-  echo "$as_me:12123: \$? = $ac_status" >&5
6493+  echo "$as_me:12226: \$? = $ac_status" >&5
6494   (exit $ac_status); }; }; then
6495   :
6496 else
6497@@ -12131,7 +12234,7 @@
6498 rm -f conftest.$ac_objext conftest.$ac_ext
6499 	 fi
6500
6501-echo "${as_me:-configure}:12134: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5
6502+echo "${as_me:-configure}:12237: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5
6503
6504 	 CFLAGS="$cf_trim_CFLAGS"
6505 	 CPPFLAGS="$cf_trim_CPPFLAGS"
6506@@ -12139,10 +12242,10 @@
6507 	test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS "
6508 	CPPFLAGS="${CPPFLAGS}$cf_cv_posix_c_source"
6509
6510-echo "${as_me:-configure}:12142: testing if the second compile does not leave our definition intact error ..." 1>&5
6511+echo "${as_me:-configure}:12245: testing if the second compile does not leave our definition intact error ..." 1>&5
6512
6513 	 cat >conftest.$ac_ext <<_ACEOF
6514-#line 12145 "configure"
6515+#line 12248 "configure"
6516 #include "confdefs.h"
6517 #include <sys/types.h>
6518 int
6519@@ -12157,16 +12260,16 @@
6520 }
6521 _ACEOF
6522 rm -f conftest.$ac_objext
6523-if { (eval echo "$as_me:12160: \"$ac_compile\"") >&5
6524+if { (eval echo "$as_me:12263: \"$ac_compile\"") >&5
6525   (eval $ac_compile) 2>&5
6526   ac_status=$?
6527-  echo "$as_me:12163: \$? = $ac_status" >&5
6528+  echo "$as_me:12266: \$? = $ac_status" >&5
6529   (exit $ac_status); } &&
6530          { ac_try='test -s conftest.$ac_objext'
6531-  { (eval echo "$as_me:12166: \"$ac_try\"") >&5
6532+  { (eval echo "$as_me:12269: \"$ac_try\"") >&5
6533   (eval $ac_try) 2>&5
6534   ac_status=$?
6535-  echo "$as_me:12169: \$? = $ac_status" >&5
6536+  echo "$as_me:12272: \$? = $ac_status" >&5
6537   (exit $ac_status); }; }; then
6538   :
6539 else
6540@@ -12182,7 +12285,7 @@
6541 rm -f conftest.$ac_objext conftest.$ac_ext
6542
6543 fi
6544-echo "$as_me:12185: result: $cf_cv_posix_c_source" >&5
6545+echo "$as_me:12288: result: $cf_cv_posix_c_source" >&5
6546 echo "${ECHO_T}$cf_cv_posix_c_source" >&6
6547
6548 if test "$cf_cv_posix_c_source" != no ; then
6549@@ -12376,7 +12479,7 @@
6550 if test -n "$cf_new_cflags" ; then
6551 	test -n "$verbose" && echo "	add to \$CFLAGS $cf_new_cflags" 1>&6
6552
6553-echo "${as_me:-configure}:12379: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5
6554+echo "${as_me:-configure}:12482: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5
6555
6556 	test -n "$CFLAGS" && CFLAGS="$CFLAGS "
6557 	CFLAGS="${CFLAGS}$cf_new_cflags"
6558@@ -12386,7 +12489,7 @@
6559 if test -n "$cf_new_cppflags" ; then
6560 	test -n "$verbose" && echo "	add to \$CPPFLAGS $cf_new_cppflags" 1>&6
6561
6562-echo "${as_me:-configure}:12389: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5
6563+echo "${as_me:-configure}:12492: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5
6564
6565 	test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS "
6566 	CPPFLAGS="${CPPFLAGS}$cf_new_cppflags"
6567@@ -12396,7 +12499,7 @@
6568 if test -n "$cf_new_extra_cppflags" ; then
6569 	test -n "$verbose" && echo "	add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags" 1>&6
6570
6571-echo "${as_me:-configure}:12399: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5
6572+echo "${as_me:-configure}:12502: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5
6573
6574 	test -n "$EXTRA_CPPFLAGS" && EXTRA_CPPFLAGS="$EXTRA_CPPFLAGS "
6575 	EXTRA_CPPFLAGS="${EXTRA_CPPFLAGS}$cf_new_extra_cppflags"
6576@@ -12406,10 +12509,10 @@
6577 fi
6578
6579 if test -n "$cf_XOPEN_SOURCE" && test -z "$cf_cv_xopen_source" ; then
6580-	echo "$as_me:12409: checking if _XOPEN_SOURCE really is set" >&5
6581+	echo "$as_me:12512: checking if _XOPEN_SOURCE really is set" >&5
6582 echo $ECHO_N "checking if _XOPEN_SOURCE really is set... $ECHO_C" >&6
6583 	cat >conftest.$ac_ext <<_ACEOF
6584-#line 12412 "configure"
6585+#line 12515 "configure"
6586 #include "confdefs.h"
6587 #include <stdlib.h>
6588 int
6589@@ -12424,16 +12527,16 @@
6590 }
6591 _ACEOF
6592 rm -f conftest.$ac_objext
6593-if { (eval echo "$as_me:12427: \"$ac_compile\"") >&5
6594+if { (eval echo "$as_me:12530: \"$ac_compile\"") >&5
6595   (eval $ac_compile) 2>&5
6596   ac_status=$?
6597-  echo "$as_me:12430: \$? = $ac_status" >&5
6598+  echo "$as_me:12533: \$? = $ac_status" >&5
6599   (exit $ac_status); } &&
6600          { ac_try='test -s conftest.$ac_objext'
6601-  { (eval echo "$as_me:12433: \"$ac_try\"") >&5
6602+  { (eval echo "$as_me:12536: \"$ac_try\"") >&5
6603   (eval $ac_try) 2>&5
6604   ac_status=$?
6605-  echo "$as_me:12436: \$? = $ac_status" >&5
6606+  echo "$as_me:12539: \$? = $ac_status" >&5
6607   (exit $ac_status); }; }; then
6608   cf_XOPEN_SOURCE_set=yes
6609 else
6610@@ -12442,12 +12545,12 @@
6611 cf_XOPEN_SOURCE_set=no
6612 fi
6613 rm -f conftest.$ac_objext conftest.$ac_ext
6614-	echo "$as_me:12445: result: $cf_XOPEN_SOURCE_set" >&5
6615+	echo "$as_me:12548: result: $cf_XOPEN_SOURCE_set" >&5
6616 echo "${ECHO_T}$cf_XOPEN_SOURCE_set" >&6
6617 	if test $cf_XOPEN_SOURCE_set = yes
6618 	then
6619 		cat >conftest.$ac_ext <<_ACEOF
6620-#line 12450 "configure"
6621+#line 12553 "configure"
6622 #include "confdefs.h"
6623 #include <stdlib.h>
6624 int
6625@@ -12462,16 +12565,16 @@
6626 }
6627 _ACEOF
6628 rm -f conftest.$ac_objext
6629-if { (eval echo "$as_me:12465: \"$ac_compile\"") >&5
6630+if { (eval echo "$as_me:12568: \"$ac_compile\"") >&5
6631   (eval $ac_compile) 2>&5
6632   ac_status=$?
6633-  echo "$as_me:12468: \$? = $ac_status" >&5
6634+  echo "$as_me:12571: \$? = $ac_status" >&5
6635   (exit $ac_status); } &&
6636          { ac_try='test -s conftest.$ac_objext'
6637-  { (eval echo "$as_me:12471: \"$ac_try\"") >&5
6638+  { (eval echo "$as_me:12574: \"$ac_try\"") >&5
6639   (eval $ac_try) 2>&5
6640   ac_status=$?
6641-  echo "$as_me:12474: \$? = $ac_status" >&5
6642+  echo "$as_me:12577: \$? = $ac_status" >&5
6643   (exit $ac_status); }; }; then
6644   cf_XOPEN_SOURCE_set_ok=yes
6645 else
6646@@ -12482,19 +12585,19 @@
6647 rm -f conftest.$ac_objext conftest.$ac_ext
6648 		if test $cf_XOPEN_SOURCE_set_ok = no
6649 		then
6650-			{ echo "$as_me:12485: WARNING: _XOPEN_SOURCE is lower than requested" >&5
6651+			{ echo "$as_me:12588: WARNING: _XOPEN_SOURCE is lower than requested" >&5
6652 echo "$as_me: WARNING: _XOPEN_SOURCE is lower than requested" >&2;}
6653 		fi
6654 	else
6655
6656-echo "$as_me:12490: checking if we should define _XOPEN_SOURCE" >&5
6657+echo "$as_me:12593: checking if we should define _XOPEN_SOURCE" >&5
6658 echo $ECHO_N "checking if we should define _XOPEN_SOURCE... $ECHO_C" >&6
6659 if test "${cf_cv_xopen_source+set}" = set; then
6660   echo $ECHO_N "(cached) $ECHO_C" >&6
6661 else
6662
6663 	cat >conftest.$ac_ext <<_ACEOF
6664-#line 12497 "configure"
6665+#line 12600 "configure"
6666 #include "confdefs.h"
6667
6668 #include <stdlib.h>
6669@@ -12513,16 +12616,16 @@
6670 }
6671 _ACEOF
6672 rm -f conftest.$ac_objext
6673-if { (eval echo "$as_me:12516: \"$ac_compile\"") >&5
6674+if { (eval echo "$as_me:12619: \"$ac_compile\"") >&5
6675   (eval $ac_compile) 2>&5
6676   ac_status=$?
6677-  echo "$as_me:12519: \$? = $ac_status" >&5
6678+  echo "$as_me:12622: \$? = $ac_status" >&5
6679   (exit $ac_status); } &&
6680          { ac_try='test -s conftest.$ac_objext'
6681-  { (eval echo "$as_me:12522: \"$ac_try\"") >&5
6682+  { (eval echo "$as_me:12625: \"$ac_try\"") >&5
6683   (eval $ac_try) 2>&5
6684   ac_status=$?
6685-  echo "$as_me:12525: \$? = $ac_status" >&5
6686+  echo "$as_me:12628: \$? = $ac_status" >&5
6687   (exit $ac_status); }; }; then
6688   cf_cv_xopen_source=no
6689 else
6690@@ -12534,7 +12637,7 @@
6691 	CPPFLAGS="${CPPFLAGS}-D_XOPEN_SOURCE=$cf_XOPEN_SOURCE"
6692
6693 	 cat >conftest.$ac_ext <<_ACEOF
6694-#line 12537 "configure"
6695+#line 12640 "configure"
6696 #include "confdefs.h"
6697
6698 #include <stdlib.h>
6699@@ -12553,16 +12656,16 @@
6700 }
6701 _ACEOF
6702 rm -f conftest.$ac_objext
6703-if { (eval echo "$as_me:12556: \"$ac_compile\"") >&5
6704+if { (eval echo "$as_me:12659: \"$ac_compile\"") >&5
6705   (eval $ac_compile) 2>&5
6706   ac_status=$?
6707-  echo "$as_me:12559: \$? = $ac_status" >&5
6708+  echo "$as_me:12662: \$? = $ac_status" >&5
6709   (exit $ac_status); } &&
6710          { ac_try='test -s conftest.$ac_objext'
6711-  { (eval echo "$as_me:12562: \"$ac_try\"") >&5
6712+  { (eval echo "$as_me:12665: \"$ac_try\"") >&5
6713   (eval $ac_try) 2>&5
6714   ac_status=$?
6715-  echo "$as_me:12565: \$? = $ac_status" >&5
6716+  echo "$as_me:12668: \$? = $ac_status" >&5
6717   (exit $ac_status); }; }; then
6718   cf_cv_xopen_source=no
6719 else
6720@@ -12577,7 +12680,7 @@
6721 rm -f conftest.$ac_objext conftest.$ac_ext
6722
6723 fi
6724-echo "$as_me:12580: result: $cf_cv_xopen_source" >&5
6725+echo "$as_me:12683: result: $cf_cv_xopen_source" >&5
6726 echo "${ECHO_T}$cf_cv_xopen_source" >&6
6727
6728 if test "$cf_cv_xopen_source" != no ; then
6729@@ -12703,7 +12806,7 @@
6730 fi;
6731 if test "$enable_largefile" != no; then
6732
6733-  echo "$as_me:12706: checking for special C compiler options needed for large files" >&5
6734+  echo "$as_me:12809: checking for special C compiler options needed for large files" >&5
6735 echo $ECHO_N "checking for special C compiler options needed for large files... $ECHO_C" >&6
6736 if test "${ac_cv_sys_largefile_CC+set}" = set; then
6737   echo $ECHO_N "(cached) $ECHO_C" >&6
6738@@ -12715,7 +12818,7 @@
6739      	 # IRIX 6.2 and later do not support large files by default,
6740      	 # so use the C compiler's -n32 option if that helps.
6741          cat >conftest.$ac_ext <<_ACEOF
6742-#line 12718 "configure"
6743+#line 12821 "configure"
6744 #include "confdefs.h"
6745 #include <sys/types.h>
6746  /* Check that off_t can represent 2**63 - 1 correctly.
6747@@ -12735,16 +12838,16 @@
6748 }
6749 _ACEOF
6750      	 rm -f conftest.$ac_objext
6751-if { (eval echo "$as_me:12738: \"$ac_compile\"") >&5
6752+if { (eval echo "$as_me:12841: \"$ac_compile\"") >&5
6753   (eval $ac_compile) 2>&5
6754   ac_status=$?
6755-  echo "$as_me:12741: \$? = $ac_status" >&5
6756+  echo "$as_me:12844: \$? = $ac_status" >&5
6757   (exit $ac_status); } &&
6758          { ac_try='test -s conftest.$ac_objext'
6759-  { (eval echo "$as_me:12744: \"$ac_try\"") >&5
6760+  { (eval echo "$as_me:12847: \"$ac_try\"") >&5
6761   (eval $ac_try) 2>&5
6762   ac_status=$?
6763-  echo "$as_me:12747: \$? = $ac_status" >&5
6764+  echo "$as_me:12850: \$? = $ac_status" >&5
6765   (exit $ac_status); }; }; then
6766   break
6767 else
6768@@ -12754,16 +12857,16 @@
6769 rm -f conftest.$ac_objext
6770      	 CC="$CC -n32"
6771      	 rm -f conftest.$ac_objext
6772-if { (eval echo "$as_me:12757: \"$ac_compile\"") >&5
6773+if { (eval echo "$as_me:12860: \"$ac_compile\"") >&5
6774   (eval $ac_compile) 2>&5
6775   ac_status=$?
6776-  echo "$as_me:12760: \$? = $ac_status" >&5
6777+  echo "$as_me:12863: \$? = $ac_status" >&5
6778   (exit $ac_status); } &&
6779          { ac_try='test -s conftest.$ac_objext'
6780-  { (eval echo "$as_me:12763: \"$ac_try\"") >&5
6781+  { (eval echo "$as_me:12866: \"$ac_try\"") >&5
6782   (eval $ac_try) 2>&5
6783   ac_status=$?
6784-  echo "$as_me:12766: \$? = $ac_status" >&5
6785+  echo "$as_me:12869: \$? = $ac_status" >&5
6786   (exit $ac_status); }; }; then
6787   ac_cv_sys_largefile_CC=' -n32'; break
6788 else
6789@@ -12777,13 +12880,13 @@
6790        rm -f conftest.$ac_ext
6791     fi
6792 fi
6793-echo "$as_me:12780: result: $ac_cv_sys_largefile_CC" >&5
6794+echo "$as_me:12883: result: $ac_cv_sys_largefile_CC" >&5
6795 echo "${ECHO_T}$ac_cv_sys_largefile_CC" >&6
6796   if test "$ac_cv_sys_largefile_CC" != no; then
6797     CC=$CC$ac_cv_sys_largefile_CC
6798   fi
6799
6800-  echo "$as_me:12786: checking for _FILE_OFFSET_BITS value needed for large files" >&5
6801+  echo "$as_me:12889: checking for _FILE_OFFSET_BITS value needed for large files" >&5
6802 echo $ECHO_N "checking for _FILE_OFFSET_BITS value needed for large files... $ECHO_C" >&6
6803 if test "${ac_cv_sys_file_offset_bits+set}" = set; then
6804   echo $ECHO_N "(cached) $ECHO_C" >&6
6805@@ -12791,7 +12894,7 @@
6806   while :; do
6807   ac_cv_sys_file_offset_bits=no
6808   cat >conftest.$ac_ext <<_ACEOF
6809-#line 12794 "configure"
6810+#line 12897 "configure"
6811 #include "confdefs.h"
6812 #include <sys/types.h>
6813  /* Check that off_t can represent 2**63 - 1 correctly.
6814@@ -12811,16 +12914,16 @@
6815 }
6816 _ACEOF
6817 rm -f conftest.$ac_objext
6818-if { (eval echo "$as_me:12814: \"$ac_compile\"") >&5
6819+if { (eval echo "$as_me:12917: \"$ac_compile\"") >&5
6820   (eval $ac_compile) 2>&5
6821   ac_status=$?
6822-  echo "$as_me:12817: \$? = $ac_status" >&5
6823+  echo "$as_me:12920: \$? = $ac_status" >&5
6824   (exit $ac_status); } &&
6825          { ac_try='test -s conftest.$ac_objext'
6826-  { (eval echo "$as_me:12820: \"$ac_try\"") >&5
6827+  { (eval echo "$as_me:12923: \"$ac_try\"") >&5
6828   (eval $ac_try) 2>&5
6829   ac_status=$?
6830-  echo "$as_me:12823: \$? = $ac_status" >&5
6831+  echo "$as_me:12926: \$? = $ac_status" >&5
6832   (exit $ac_status); }; }; then
6833   break
6834 else
6835@@ -12829,7 +12932,7 @@
6836 fi
6837 rm -f conftest.$ac_objext conftest.$ac_ext
6838   cat >conftest.$ac_ext <<_ACEOF
6839-#line 12832 "configure"
6840+#line 12935 "configure"
6841 #include "confdefs.h"
6842 #define _FILE_OFFSET_BITS 64
6843 #include <sys/types.h>
6844@@ -12850,16 +12953,16 @@
6845 }
6846 _ACEOF
6847 rm -f conftest.$ac_objext
6848-if { (eval echo "$as_me:12853: \"$ac_compile\"") >&5
6849+if { (eval echo "$as_me:12956: \"$ac_compile\"") >&5
6850   (eval $ac_compile) 2>&5
6851   ac_status=$?
6852-  echo "$as_me:12856: \$? = $ac_status" >&5
6853+  echo "$as_me:12959: \$? = $ac_status" >&5
6854   (exit $ac_status); } &&
6855          { ac_try='test -s conftest.$ac_objext'
6856-  { (eval echo "$as_me:12859: \"$ac_try\"") >&5
6857+  { (eval echo "$as_me:12962: \"$ac_try\"") >&5
6858   (eval $ac_try) 2>&5
6859   ac_status=$?
6860-  echo "$as_me:12862: \$? = $ac_status" >&5
6861+  echo "$as_me:12965: \$? = $ac_status" >&5
6862   (exit $ac_status); }; }; then
6863   ac_cv_sys_file_offset_bits=64; break
6864 else
6865@@ -12870,7 +12973,7 @@
6866   break
6867 done
6868 fi
6869-echo "$as_me:12873: result: $ac_cv_sys_file_offset_bits" >&5
6870+echo "$as_me:12976: result: $ac_cv_sys_file_offset_bits" >&5
6871 echo "${ECHO_T}$ac_cv_sys_file_offset_bits" >&6
6872 if test "$ac_cv_sys_file_offset_bits" != no; then
6873
6874@@ -12880,7 +12983,7 @@
6875
6876 fi
6877 rm -rf conftest*
6878-  echo "$as_me:12883: checking for _LARGE_FILES value needed for large files" >&5
6879+  echo "$as_me:12986: checking for _LARGE_FILES value needed for large files" >&5
6880 echo $ECHO_N "checking for _LARGE_FILES value needed for large files... $ECHO_C" >&6
6881 if test "${ac_cv_sys_large_files+set}" = set; then
6882   echo $ECHO_N "(cached) $ECHO_C" >&6
6883@@ -12888,7 +12991,7 @@
6884   while :; do
6885   ac_cv_sys_large_files=no
6886   cat >conftest.$ac_ext <<_ACEOF
6887-#line 12891 "configure"
6888+#line 12994 "configure"
6889 #include "confdefs.h"
6890 #include <sys/types.h>
6891  /* Check that off_t can represent 2**63 - 1 correctly.
6892@@ -12908,16 +13011,16 @@
6893 }
6894 _ACEOF
6895 rm -f conftest.$ac_objext
6896-if { (eval echo "$as_me:12911: \"$ac_compile\"") >&5
6897+if { (eval echo "$as_me:13014: \"$ac_compile\"") >&5
6898   (eval $ac_compile) 2>&5
6899   ac_status=$?
6900-  echo "$as_me:12914: \$? = $ac_status" >&5
6901+  echo "$as_me:13017: \$? = $ac_status" >&5
6902   (exit $ac_status); } &&
6903          { ac_try='test -s conftest.$ac_objext'
6904-  { (eval echo "$as_me:12917: \"$ac_try\"") >&5
6905+  { (eval echo "$as_me:13020: \"$ac_try\"") >&5
6906   (eval $ac_try) 2>&5
6907   ac_status=$?
6908-  echo "$as_me:12920: \$? = $ac_status" >&5
6909+  echo "$as_me:13023: \$? = $ac_status" >&5
6910   (exit $ac_status); }; }; then
6911   break
6912 else
6913@@ -12926,7 +13029,7 @@
6914 fi
6915 rm -f conftest.$ac_objext conftest.$ac_ext
6916   cat >conftest.$ac_ext <<_ACEOF
6917-#line 12929 "configure"
6918+#line 13032 "configure"
6919 #include "confdefs.h"
6920 #define _LARGE_FILES 1
6921 #include <sys/types.h>
6922@@ -12947,16 +13050,16 @@
6923 }
6924 _ACEOF
6925 rm -f conftest.$ac_objext
6926-if { (eval echo "$as_me:12950: \"$ac_compile\"") >&5
6927+if { (eval echo "$as_me:13053: \"$ac_compile\"") >&5
6928   (eval $ac_compile) 2>&5
6929   ac_status=$?
6930-  echo "$as_me:12953: \$? = $ac_status" >&5
6931+  echo "$as_me:13056: \$? = $ac_status" >&5
6932   (exit $ac_status); } &&
6933          { ac_try='test -s conftest.$ac_objext'
6934-  { (eval echo "$as_me:12956: \"$ac_try\"") >&5
6935+  { (eval echo "$as_me:13059: \"$ac_try\"") >&5
6936   (eval $ac_try) 2>&5
6937   ac_status=$?
6938-  echo "$as_me:12959: \$? = $ac_status" >&5
6939+  echo "$as_me:13062: \$? = $ac_status" >&5
6940   (exit $ac_status); }; }; then
6941   ac_cv_sys_large_files=1; break
6942 else
6943@@ -12967,7 +13070,7 @@
6944   break
6945 done
6946 fi
6947-echo "$as_me:12970: result: $ac_cv_sys_large_files" >&5
6948+echo "$as_me:13073: result: $ac_cv_sys_large_files" >&5
6949 echo "${ECHO_T}$ac_cv_sys_large_files" >&6
6950 if test "$ac_cv_sys_large_files" != no; then
6951
6952@@ -12980,7 +13083,7 @@
6953 fi
6954
6955 	if test "$enable_largefile" != no ; then
6956-	echo "$as_me:12983: checking for _LARGEFILE_SOURCE value needed for large files" >&5
6957+	echo "$as_me:13086: checking for _LARGEFILE_SOURCE value needed for large files" >&5
6958 echo $ECHO_N "checking for _LARGEFILE_SOURCE value needed for large files... $ECHO_C" >&6
6959 if test "${ac_cv_sys_largefile_source+set}" = set; then
6960   echo $ECHO_N "(cached) $ECHO_C" >&6
6961@@ -12988,7 +13091,7 @@
6962   while :; do
6963   ac_cv_sys_largefile_source=no
6964   cat >conftest.$ac_ext <<_ACEOF
6965-#line 12991 "configure"
6966+#line 13094 "configure"
6967 #include "confdefs.h"
6968 #include <stdio.h>
6969 int
6970@@ -13000,16 +13103,16 @@
6971 }
6972 _ACEOF
6973 rm -f conftest.$ac_objext
6974-if { (eval echo "$as_me:13003: \"$ac_compile\"") >&5
6975+if { (eval echo "$as_me:13106: \"$ac_compile\"") >&5
6976   (eval $ac_compile) 2>&5
6977   ac_status=$?
6978-  echo "$as_me:13006: \$? = $ac_status" >&5
6979+  echo "$as_me:13109: \$? = $ac_status" >&5
6980   (exit $ac_status); } &&
6981          { ac_try='test -s conftest.$ac_objext'
6982-  { (eval echo "$as_me:13009: \"$ac_try\"") >&5
6983+  { (eval echo "$as_me:13112: \"$ac_try\"") >&5
6984   (eval $ac_try) 2>&5
6985   ac_status=$?
6986-  echo "$as_me:13012: \$? = $ac_status" >&5
6987+  echo "$as_me:13115: \$? = $ac_status" >&5
6988   (exit $ac_status); }; }; then
6989   break
6990 else
6991@@ -13018,7 +13121,7 @@
6992 fi
6993 rm -f conftest.$ac_objext conftest.$ac_ext
6994   cat >conftest.$ac_ext <<_ACEOF
6995-#line 13021 "configure"
6996+#line 13124 "configure"
6997 #include "confdefs.h"
6998 #define _LARGEFILE_SOURCE 1
6999 #include <stdio.h>
7000@@ -13031,16 +13134,16 @@
7001 }
7002 _ACEOF
7003 rm -f conftest.$ac_objext
7004-if { (eval echo "$as_me:13034: \"$ac_compile\"") >&5
7005+if { (eval echo "$as_me:13137: \"$ac_compile\"") >&5
7006   (eval $ac_compile) 2>&5
7007   ac_status=$?
7008-  echo "$as_me:13037: \$? = $ac_status" >&5
7009+  echo "$as_me:13140: \$? = $ac_status" >&5
7010   (exit $ac_status); } &&
7011          { ac_try='test -s conftest.$ac_objext'
7012-  { (eval echo "$as_me:13040: \"$ac_try\"") >&5
7013+  { (eval echo "$as_me:13143: \"$ac_try\"") >&5
7014   (eval $ac_try) 2>&5
7015   ac_status=$?
7016-  echo "$as_me:13043: \$? = $ac_status" >&5
7017+  echo "$as_me:13146: \$? = $ac_status" >&5
7018   (exit $ac_status); }; }; then
7019   ac_cv_sys_largefile_source=1; break
7020 else
7021@@ -13051,7 +13154,7 @@
7022   break
7023 done
7024 fi
7025-echo "$as_me:13054: result: $ac_cv_sys_largefile_source" >&5
7026+echo "$as_me:13157: result: $ac_cv_sys_largefile_source" >&5
7027 echo "${ECHO_T}$ac_cv_sys_largefile_source" >&6
7028 if test "$ac_cv_sys_largefile_source" != no; then
7029
7030@@ -13065,13 +13168,13 @@
7031 # We used to try defining _XOPEN_SOURCE=500 too, to work around a bug
7032 # in glibc 2.1.3, but that breaks too many other things.
7033 # If you want fseeko and ftello with glibc, upgrade to a fixed glibc.
7034-echo "$as_me:13068: checking for fseeko" >&5
7035+echo "$as_me:13171: checking for fseeko" >&5
7036 echo $ECHO_N "checking for fseeko... $ECHO_C" >&6
7037 if test "${ac_cv_func_fseeko+set}" = set; then
7038   echo $ECHO_N "(cached) $ECHO_C" >&6
7039 else
7040   cat >conftest.$ac_ext <<_ACEOF
7041-#line 13074 "configure"
7042+#line 13177 "configure"
7043 #include "confdefs.h"
7044 #include <stdio.h>
7045 int
7046@@ -13083,16 +13186,16 @@
7047 }
7048 _ACEOF
7049 rm -f conftest.$ac_objext conftest$ac_exeext
7050-if { (eval echo "$as_me:13086: \"$ac_link\"") >&5
7051+if { (eval echo "$as_me:13189: \"$ac_link\"") >&5
7052   (eval $ac_link) 2>&5
7053   ac_status=$?
7054-  echo "$as_me:13089: \$? = $ac_status" >&5
7055+  echo "$as_me:13192: \$? = $ac_status" >&5
7056   (exit $ac_status); } &&
7057          { ac_try='test -s conftest$ac_exeext'
7058-  { (eval echo "$as_me:13092: \"$ac_try\"") >&5
7059+  { (eval echo "$as_me:13195: \"$ac_try\"") >&5
7060   (eval $ac_try) 2>&5
7061   ac_status=$?
7062-  echo "$as_me:13095: \$? = $ac_status" >&5
7063+  echo "$as_me:13198: \$? = $ac_status" >&5
7064   (exit $ac_status); }; }; then
7065   ac_cv_func_fseeko=yes
7066 else
7067@@ -13102,7 +13205,7 @@
7068 fi
7069 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
7070 fi
7071-echo "$as_me:13105: result: $ac_cv_func_fseeko" >&5
7072+echo "$as_me:13208: result: $ac_cv_func_fseeko" >&5
7073 echo "${ECHO_T}$ac_cv_func_fseeko" >&6
7074 if test $ac_cv_func_fseeko = yes; then
7075
7076@@ -13141,14 +13244,14 @@
7077
7078 	fi
7079
7080-	echo "$as_me:13144: checking whether to use struct dirent64" >&5
7081+	echo "$as_me:13247: checking whether to use struct dirent64" >&5
7082 echo $ECHO_N "checking whether to use struct dirent64... $ECHO_C" >&6
7083 if test "${cf_cv_struct_dirent64+set}" = set; then
7084   echo $ECHO_N "(cached) $ECHO_C" >&6
7085 else
7086
7087 		cat >conftest.$ac_ext <<_ACEOF
7088-#line 13151 "configure"
7089+#line 13254 "configure"
7090 #include "confdefs.h"
7091
7092 #pragma GCC diagnostic error "-Wincompatible-pointer-types"
7093@@ -13170,16 +13273,16 @@
7094 }
7095 _ACEOF
7096 rm -f conftest.$ac_objext
7097-if { (eval echo "$as_me:13173: \"$ac_compile\"") >&5
7098+if { (eval echo "$as_me:13276: \"$ac_compile\"") >&5
7099   (eval $ac_compile) 2>&5
7100   ac_status=$?
7101-  echo "$as_me:13176: \$? = $ac_status" >&5
7102+  echo "$as_me:13279: \$? = $ac_status" >&5
7103   (exit $ac_status); } &&
7104          { ac_try='test -s conftest.$ac_objext'
7105-  { (eval echo "$as_me:13179: \"$ac_try\"") >&5
7106+  { (eval echo "$as_me:13282: \"$ac_try\"") >&5
7107   (eval $ac_try) 2>&5
7108   ac_status=$?
7109-  echo "$as_me:13182: \$? = $ac_status" >&5
7110+  echo "$as_me:13285: \$? = $ac_status" >&5
7111   (exit $ac_status); }; }; then
7112   cf_cv_struct_dirent64=yes
7113 else
7114@@ -13190,7 +13293,7 @@
7115 rm -f conftest.$ac_objext conftest.$ac_ext
7116
7117 fi
7118-echo "$as_me:13193: result: $cf_cv_struct_dirent64" >&5
7119+echo "$as_me:13296: result: $cf_cv_struct_dirent64" >&5
7120 echo "${ECHO_T}$cf_cv_struct_dirent64" >&6
7121 	test "$cf_cv_struct_dirent64" = yes &&
7122 cat >>confdefs.h <<\EOF
7123@@ -13200,7 +13303,7 @@
7124 	fi
7125
7126 ### Enable compiling-in rcs id's
7127-echo "$as_me:13203: checking if RCS identifiers should be compiled-in" >&5
7128+echo "$as_me:13306: checking if RCS identifiers should be compiled-in" >&5
7129 echo $ECHO_N "checking if RCS identifiers should be compiled-in... $ECHO_C" >&6
7130
7131 # Check whether --with-rcs-ids or --without-rcs-ids was given.
7132@@ -13210,7 +13313,7 @@
7133 else
7134   with_rcs_ids=no
7135 fi;
7136-echo "$as_me:13213: result: $with_rcs_ids" >&5
7137+echo "$as_me:13316: result: $with_rcs_ids" >&5
7138 echo "${ECHO_T}$with_rcs_ids" >&6
7139 test "$with_rcs_ids" = yes &&
7140 cat >>confdefs.h <<\EOF
7141@@ -13220,7 +13323,7 @@
7142 ###############################################################################
7143
7144 ### Note that some functions (such as const) are normally disabled anyway.
7145-echo "$as_me:13223: checking if you want to build with function extensions" >&5
7146+echo "$as_me:13326: checking if you want to build with function extensions" >&5
7147 echo $ECHO_N "checking if you want to build with function extensions... $ECHO_C" >&6
7148
7149 # Check whether --enable-ext-funcs or --disable-ext-funcs was given.
7150@@ -13230,7 +13333,7 @@
7151 else
7152   with_ext_funcs=yes
7153 fi;
7154-echo "$as_me:13233: result: $with_ext_funcs" >&5
7155+echo "$as_me:13336: result: $with_ext_funcs" >&5
7156 echo "${ECHO_T}$with_ext_funcs" >&6
7157 if test "$with_ext_funcs" = yes ; then
7158 	NCURSES_EXT_FUNCS=1
7159@@ -13248,7 +13351,7 @@
7160 fi
7161
7162 ###   use option --enable-const to turn on use of const beyond that in XSI.
7163-echo "$as_me:13251: checking for extended use of const keyword" >&5
7164+echo "$as_me:13354: checking for extended use of const keyword" >&5
7165 echo $ECHO_N "checking for extended use of const keyword... $ECHO_C" >&6
7166
7167 # Check whether --enable-const or --disable-const was given.
7168@@ -13258,7 +13361,7 @@
7169 else
7170   with_ext_const=no
7171 fi;
7172-echo "$as_me:13261: result: $with_ext_const" >&5
7173+echo "$as_me:13364: result: $with_ext_const" >&5
7174 echo "${ECHO_T}$with_ext_const" >&6
7175 NCURSES_CONST='/*nothing*/'
7176 if test "$with_ext_const" = yes ; then
7177@@ -13268,7 +13371,7 @@
7178 ###############################################################################
7179 # These options are relatively safe to experiment with.
7180
7181-echo "$as_me:13271: checking if you want all development code" >&5
7182+echo "$as_me:13374: checking if you want all development code" >&5
7183 echo $ECHO_N "checking if you want all development code... $ECHO_C" >&6
7184
7185 # Check whether --with-develop or --without-develop was given.
7186@@ -13278,7 +13381,7 @@
7187 else
7188   with_develop=no
7189 fi;
7190-echo "$as_me:13281: result: $with_develop" >&5
7191+echo "$as_me:13384: result: $with_develop" >&5
7192 echo "${ECHO_T}$with_develop" >&6
7193
7194 ###############################################################################
7195@@ -13287,7 +13390,7 @@
7196 # This is still experimental (20080329), but should ultimately be moved to
7197 # the script-block --with-normal, etc.
7198
7199-echo "$as_me:13290: checking if you want to link with the pthread library" >&5
7200+echo "$as_me:13393: checking if you want to link with the pthread library" >&5
7201 echo $ECHO_N "checking if you want to link with the pthread library... $ECHO_C" >&6
7202
7203 # Check whether --with-pthread or --without-pthread was given.
7204@@ -13297,27 +13400,27 @@
7205 else
7206   with_pthread=no
7207 fi;
7208-echo "$as_me:13300: result: $with_pthread" >&5
7209+echo "$as_me:13403: result: $with_pthread" >&5
7210 echo "${ECHO_T}$with_pthread" >&6
7211
7212 if test "$with_pthread" != no ; then
7213-	echo "$as_me:13304: checking for pthread.h" >&5
7214+	echo "$as_me:13407: checking for pthread.h" >&5
7215 echo $ECHO_N "checking for pthread.h... $ECHO_C" >&6
7216 if test "${ac_cv_header_pthread_h+set}" = set; then
7217   echo $ECHO_N "(cached) $ECHO_C" >&6
7218 else
7219   cat >conftest.$ac_ext <<_ACEOF
7220-#line 13310 "configure"
7221+#line 13413 "configure"
7222 #include "confdefs.h"
7223 #include <pthread.h>
7224 _ACEOF
7225-if { (eval echo "$as_me:13314: \"$ac_cpp conftest.$ac_ext\"") >&5
7226+if { (eval echo "$as_me:13417: \"$ac_cpp conftest.$ac_ext\"") >&5
7227   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
7228   ac_status=$?
7229   egrep -v '^ *\+' conftest.er1 >conftest.err
7230   rm -f conftest.er1
7231   cat conftest.err >&5
7232-  echo "$as_me:13320: \$? = $ac_status" >&5
7233+  echo "$as_me:13423: \$? = $ac_status" >&5
7234   (exit $ac_status); } >/dev/null; then
7235   if test -s conftest.err; then
7236     ac_cpp_err=$ac_c_preproc_warn_flag
7237@@ -13336,7 +13439,7 @@
7238 fi
7239 rm -f conftest.err conftest.$ac_ext
7240 fi
7241-echo "$as_me:13339: result: $ac_cv_header_pthread_h" >&5
7242+echo "$as_me:13442: result: $ac_cv_header_pthread_h" >&5
7243 echo "${ECHO_T}$ac_cv_header_pthread_h" >&6
7244 if test $ac_cv_header_pthread_h = yes; then
7245
7246@@ -13346,7 +13449,7 @@
7247
7248 	for cf_lib_pthread in pthread c_r
7249 	do
7250-	    echo "$as_me:13349: checking if we can link with the $cf_lib_pthread library" >&5
7251+	    echo "$as_me:13452: checking if we can link with the $cf_lib_pthread library" >&5
7252 echo $ECHO_N "checking if we can link with the $cf_lib_pthread library... $ECHO_C" >&6
7253 	    cf_save_LIBS="$LIBS"
7254
7255@@ -13367,7 +13470,7 @@
7256 LIBS="$cf_add_libs"
7257
7258 	    cat >conftest.$ac_ext <<_ACEOF
7259-#line 13370 "configure"
7260+#line 13473 "configure"
7261 #include "confdefs.h"
7262
7263 #include <pthread.h>
7264@@ -13384,16 +13487,16 @@
7265 }
7266 _ACEOF
7267 rm -f conftest.$ac_objext conftest$ac_exeext
7268-if { (eval echo "$as_me:13387: \"$ac_link\"") >&5
7269+if { (eval echo "$as_me:13490: \"$ac_link\"") >&5
7270   (eval $ac_link) 2>&5
7271   ac_status=$?
7272-  echo "$as_me:13390: \$? = $ac_status" >&5
7273+  echo "$as_me:13493: \$? = $ac_status" >&5
7274   (exit $ac_status); } &&
7275          { ac_try='test -s conftest$ac_exeext'
7276-  { (eval echo "$as_me:13393: \"$ac_try\"") >&5
7277+  { (eval echo "$as_me:13496: \"$ac_try\"") >&5
7278   (eval $ac_try) 2>&5
7279   ac_status=$?
7280-  echo "$as_me:13396: \$? = $ac_status" >&5
7281+  echo "$as_me:13499: \$? = $ac_status" >&5
7282   (exit $ac_status); }; }; then
7283   with_pthread=yes
7284 else
7285@@ -13403,7 +13506,7 @@
7286 fi
7287 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
7288 	    LIBS="$cf_save_LIBS"
7289-	    echo "$as_me:13406: result: $with_pthread" >&5
7290+	    echo "$as_me:13509: result: $with_pthread" >&5
7291 echo "${ECHO_T}$with_pthread" >&6
7292 	    test "$with_pthread" = yes && break
7293 	done
7294@@ -13431,7 +13534,7 @@
7295 EOF
7296
7297 	else
7298-	    { { echo "$as_me:13434: error: Cannot link with pthread library" >&5
7299+	    { { echo "$as_me:13537: error: Cannot link with pthread library" >&5
7300 echo "$as_me: error: Cannot link with pthread library" >&2;}
7301    { (exit 1); exit 1; }; }
7302 	fi
7303@@ -13440,7 +13543,7 @@
7304
7305 fi
7306
7307-echo "$as_me:13443: checking if you want to use weak-symbols for pthreads" >&5
7308+echo "$as_me:13546: checking if you want to use weak-symbols for pthreads" >&5
7309 echo $ECHO_N "checking if you want to use weak-symbols for pthreads... $ECHO_C" >&6
7310
7311 # Check whether --enable-weak-symbols or --disable-weak-symbols was given.
7312@@ -13450,18 +13553,18 @@
7313 else
7314   use_weak_symbols=no
7315 fi;
7316-echo "$as_me:13453: result: $use_weak_symbols" >&5
7317+echo "$as_me:13556: result: $use_weak_symbols" >&5
7318 echo "${ECHO_T}$use_weak_symbols" >&6
7319 if test "$use_weak_symbols" = yes ; then
7320
7321-echo "$as_me:13457: checking if $CC supports weak symbols" >&5
7322+echo "$as_me:13560: checking if $CC supports weak symbols" >&5
7323 echo $ECHO_N "checking if $CC supports weak symbols... $ECHO_C" >&6
7324 if test "${cf_cv_weak_symbols+set}" = set; then
7325   echo $ECHO_N "(cached) $ECHO_C" >&6
7326 else
7327
7328 cat >conftest.$ac_ext <<_ACEOF
7329-#line 13464 "configure"
7330+#line 13567 "configure"
7331 #include "confdefs.h"
7332
7333 #include <stdio.h>
7334@@ -13487,16 +13590,16 @@
7335 }
7336 _ACEOF
7337 rm -f conftest.$ac_objext
7338-if { (eval echo "$as_me:13490: \"$ac_compile\"") >&5
7339+if { (eval echo "$as_me:13593: \"$ac_compile\"") >&5
7340   (eval $ac_compile) 2>&5
7341   ac_status=$?
7342-  echo "$as_me:13493: \$? = $ac_status" >&5
7343+  echo "$as_me:13596: \$? = $ac_status" >&5
7344   (exit $ac_status); } &&
7345          { ac_try='test -s conftest.$ac_objext'
7346-  { (eval echo "$as_me:13496: \"$ac_try\"") >&5
7347+  { (eval echo "$as_me:13599: \"$ac_try\"") >&5
7348   (eval $ac_try) 2>&5
7349   ac_status=$?
7350-  echo "$as_me:13499: \$? = $ac_status" >&5
7351+  echo "$as_me:13602: \$? = $ac_status" >&5
7352   (exit $ac_status); }; }; then
7353   cf_cv_weak_symbols=yes
7354 else
7355@@ -13507,7 +13610,7 @@
7356 rm -f conftest.$ac_objext conftest.$ac_ext
7357
7358 fi
7359-echo "$as_me:13510: result: $cf_cv_weak_symbols" >&5
7360+echo "$as_me:13613: result: $cf_cv_weak_symbols" >&5
7361 echo "${ECHO_T}$cf_cv_weak_symbols" >&6
7362
7363 else
7364@@ -13536,13 +13639,13 @@
7365 fi
7366
7367 # OpenSUSE is installing ncurses6, using reentrant option.
7368-echo "$as_me:13539: checking for _nc_TABSIZE" >&5
7369+echo "$as_me:13642: checking for _nc_TABSIZE" >&5
7370 echo $ECHO_N "checking for _nc_TABSIZE... $ECHO_C" >&6
7371 if test "${ac_cv_func__nc_TABSIZE+set}" = set; then
7372   echo $ECHO_N "(cached) $ECHO_C" >&6
7373 else
7374   cat >conftest.$ac_ext <<_ACEOF
7375-#line 13545 "configure"
7376+#line 13648 "configure"
7377 #include "confdefs.h"
7378 #define _nc_TABSIZE autoconf_temporary
7379 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
7380@@ -13573,16 +13676,16 @@
7381 }
7382 _ACEOF
7383 rm -f conftest.$ac_objext conftest$ac_exeext
7384-if { (eval echo "$as_me:13576: \"$ac_link\"") >&5
7385+if { (eval echo "$as_me:13679: \"$ac_link\"") >&5
7386   (eval $ac_link) 2>&5
7387   ac_status=$?
7388-  echo "$as_me:13579: \$? = $ac_status" >&5
7389+  echo "$as_me:13682: \$? = $ac_status" >&5
7390   (exit $ac_status); } &&
7391          { ac_try='test -s conftest$ac_exeext'
7392-  { (eval echo "$as_me:13582: \"$ac_try\"") >&5
7393+  { (eval echo "$as_me:13685: \"$ac_try\"") >&5
7394   (eval $ac_try) 2>&5
7395   ac_status=$?
7396-  echo "$as_me:13585: \$? = $ac_status" >&5
7397+  echo "$as_me:13688: \$? = $ac_status" >&5
7398   (exit $ac_status); }; }; then
7399   ac_cv_func__nc_TABSIZE=yes
7400 else
7401@@ -13592,7 +13695,7 @@
7402 fi
7403 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
7404 fi
7405-echo "$as_me:13595: result: $ac_cv_func__nc_TABSIZE" >&5
7406+echo "$as_me:13698: result: $ac_cv_func__nc_TABSIZE" >&5
7407 echo "${ECHO_T}$ac_cv_func__nc_TABSIZE" >&6
7408 if test $ac_cv_func__nc_TABSIZE = yes; then
7409   assume_reentrant=yes
7410@@ -13604,7 +13707,7 @@
7411 # opaque outside of that, so there is no --enable-opaque option.  We can use
7412 # this option without --with-pthreads, but this will be always set for
7413 # pthreads.
7414-echo "$as_me:13607: checking if you want experimental reentrant code" >&5
7415+echo "$as_me:13710: checking if you want experimental reentrant code" >&5
7416 echo $ECHO_N "checking if you want experimental reentrant code... $ECHO_C" >&6
7417
7418 # Check whether --enable-reentrant or --disable-reentrant was given.
7419@@ -13614,7 +13717,7 @@
7420 else
7421   with_reentrant=$assume_reentrant
7422 fi;
7423-echo "$as_me:13617: result: $with_reentrant" >&5
7424+echo "$as_me:13720: result: $with_reentrant" >&5
7425 echo "${ECHO_T}$with_reentrant" >&6
7426 if test "$with_reentrant" = yes ; then
7427 	cf_cv_enable_reentrant=1
7428@@ -13637,7 +13740,7 @@
7429
7430 ### Allow using a different wrap-prefix
7431 if test "$cf_cv_enable_reentrant" != 0 || test "$BROKEN_LINKER" = 1 ; then
7432-	echo "$as_me:13640: checking for prefix used to wrap public variables" >&5
7433+	echo "$as_me:13743: checking for prefix used to wrap public variables" >&5
7434 echo $ECHO_N "checking for prefix used to wrap public variables... $ECHO_C" >&6
7435
7436 # Check whether --with-wrap-prefix or --without-wrap-prefix was given.
7437@@ -13647,7 +13750,7 @@
7438 else
7439   NCURSES_WRAP_PREFIX=_nc_
7440 fi;
7441-	echo "$as_me:13650: result: $NCURSES_WRAP_PREFIX" >&5
7442+	echo "$as_me:13753: result: $NCURSES_WRAP_PREFIX" >&5
7443 echo "${ECHO_T}$NCURSES_WRAP_PREFIX" >&6
7444 else
7445 	NCURSES_WRAP_PREFIX=_nc_
7446@@ -13661,7 +13764,7 @@
7447
7448 ###	use option --disable-echo to suppress full display compiling commands
7449
7450-echo "$as_me:13664: checking if you want to see long compiling messages" >&5
7451+echo "$as_me:13767: checking if you want to see long compiling messages" >&5
7452 echo $ECHO_N "checking if you want to see long compiling messages... $ECHO_C" >&6
7453
7454 # Check whether --enable-echo or --disable-echo was given.
7455@@ -13695,11 +13798,11 @@
7456 	ECHO_CC=''
7457
7458 fi;
7459-echo "$as_me:13698: result: $enableval" >&5
7460+echo "$as_me:13801: result: $enableval" >&5
7461 echo "${ECHO_T}$enableval" >&6
7462
7463 ###	use option --enable-warnings to turn on all gcc warnings
7464-echo "$as_me:13702: checking if you want to see compiler warnings" >&5
7465+echo "$as_me:13805: checking if you want to see compiler warnings" >&5
7466 echo $ECHO_N "checking if you want to see compiler warnings... $ECHO_C" >&6
7467
7468 # Check whether --enable-warnings or --disable-warnings was given.
7469@@ -13707,120 +13810,118 @@
7470   enableval="$enable_warnings"
7471   with_warnings=$enableval
7472 fi;
7473-echo "$as_me:13710: result: $with_warnings" >&5
7474+echo "$as_me:13813: result: $with_warnings" >&5
7475 echo "${ECHO_T}$with_warnings" >&6
7476
7477 if test "x$with_warnings" = "xyes"; then
7478
7479  	ADAFLAGS="$ADAFLAGS -gnatg"
7480
7481-INTEL_COMPILER=no
7482-
7483-if test "$GCC" = yes ; then
7484-	case $host_os in
7485-	(linux*|gnu*)
7486-		echo "$as_me:13722: checking if this is really Intel C compiler" >&5
7487-echo $ECHO_N "checking if this is really Intel C compiler... $ECHO_C" >&6
7488-		cf_save_CFLAGS="$CFLAGS"
7489-		CFLAGS="$CFLAGS -no-gcc"
7490-		cat >conftest.$ac_ext <<_ACEOF
7491-#line 13727 "configure"
7492+if test "x$have_x" = xyes; then
7493+cat >conftest.$ac_ext <<_ACEOF
7494+#line 13822 "configure"
7495 #include "confdefs.h"
7496
7497+#include <stdlib.h>
7498+#include <X11/Intrinsic.h>
7499+
7500 int
7501 main (void)
7502 {
7503-
7504-#ifdef __INTEL_COMPILER
7505-#else
7506-make an error
7507-#endif
7508-
7509+String foo = malloc(1)
7510   ;
7511   return 0;
7512 }
7513 _ACEOF
7514 rm -f conftest.$ac_objext
7515-if { (eval echo "$as_me:13744: \"$ac_compile\"") >&5
7516+if { (eval echo "$as_me:13837: \"$ac_compile\"") >&5
7517   (eval $ac_compile) 2>&5
7518   ac_status=$?
7519-  echo "$as_me:13747: \$? = $ac_status" >&5
7520+  echo "$as_me:13840: \$? = $ac_status" >&5
7521   (exit $ac_status); } &&
7522          { ac_try='test -s conftest.$ac_objext'
7523-  { (eval echo "$as_me:13750: \"$ac_try\"") >&5
7524+  { (eval echo "$as_me:13843: \"$ac_try\"") >&5
7525   (eval $ac_try) 2>&5
7526   ac_status=$?
7527-  echo "$as_me:13753: \$? = $ac_status" >&5
7528+  echo "$as_me:13846: \$? = $ac_status" >&5
7529   (exit $ac_status); }; }; then
7530-  INTEL_COMPILER=yes
7531-cf_save_CFLAGS="$cf_save_CFLAGS -we147"
7532
7533+echo "$as_me:13849: checking for X11/Xt const-feature" >&5
7534+echo $ECHO_N "checking for X11/Xt const-feature... $ECHO_C" >&6
7535+if test "${cf_cv_const_x_string+set}" = set; then
7536+  echo $ECHO_N "(cached) $ECHO_C" >&6
7537 else
7538-  echo "$as_me: failed program was:" >&5
7539-cat conftest.$ac_ext >&5
7540-fi
7541-rm -f conftest.$ac_objext conftest.$ac_ext
7542-		CFLAGS="$cf_save_CFLAGS"
7543-		echo "$as_me:13764: result: $INTEL_COMPILER" >&5
7544-echo "${ECHO_T}$INTEL_COMPILER" >&6
7545-		;;
7546-	esac
7547-fi
7548
7549-CLANG_COMPILER=no
7550-
7551-if test "$GCC" = yes ; then
7552-	echo "$as_me:13773: checking if this is really Clang C compiler" >&5
7553-echo $ECHO_N "checking if this is really Clang C compiler... $ECHO_C" >&6
7554-	cf_save_CFLAGS="$CFLAGS"
7555-	CFLAGS="$CFLAGS -Qunused-arguments"
7556 	cat >conftest.$ac_ext <<_ACEOF
7557-#line 13778 "configure"
7558+#line 13856 "configure"
7559 #include "confdefs.h"
7560
7561+#define _CONST_X_STRING	/* X11R7.8 (perhaps) */
7562+#undef  XTSTRINGDEFINES	/* X11R5 and later */
7563+#include <stdlib.h>
7564+#include <X11/Intrinsic.h>
7565+
7566 int
7567 main (void)
7568 {
7569-
7570-#ifdef __clang__
7571-#else
7572-make an error
7573-#endif
7574-
7575+String foo = malloc(1); *foo = 0
7576   ;
7577   return 0;
7578 }
7579 _ACEOF
7580 rm -f conftest.$ac_objext
7581-if { (eval echo "$as_me:13795: \"$ac_compile\"") >&5
7582+if { (eval echo "$as_me:13873: \"$ac_compile\"") >&5
7583   (eval $ac_compile) 2>&5
7584   ac_status=$?
7585-  echo "$as_me:13798: \$? = $ac_status" >&5
7586+  echo "$as_me:13876: \$? = $ac_status" >&5
7587   (exit $ac_status); } &&
7588          { ac_try='test -s conftest.$ac_objext'
7589-  { (eval echo "$as_me:13801: \"$ac_try\"") >&5
7590+  { (eval echo "$as_me:13879: \"$ac_try\"") >&5
7591   (eval $ac_try) 2>&5
7592   ac_status=$?
7593-  echo "$as_me:13804: \$? = $ac_status" >&5
7594+  echo "$as_me:13882: \$? = $ac_status" >&5
7595   (exit $ac_status); }; }; then
7596-  CLANG_COMPILER=yes
7597-cf_save_CFLAGS="$cf_save_CFLAGS -Qunused-arguments"
7598+
7599+			cf_cv_const_x_string=no
7600
7601 else
7602   echo "$as_me: failed program was:" >&5
7603 cat conftest.$ac_ext >&5
7604+
7605+			cf_cv_const_x_string=yes
7606+
7607 fi
7608 rm -f conftest.$ac_objext conftest.$ac_ext
7609-	CFLAGS="$cf_save_CFLAGS"
7610-	echo "$as_me:13815: result: $CLANG_COMPILER" >&5
7611-echo "${ECHO_T}$CLANG_COMPILER" >&6
7612+
7613 fi
7614+echo "$as_me:13897: result: $cf_cv_const_x_string" >&5
7615+echo "${ECHO_T}$cf_cv_const_x_string" >&6
7616+
7617+case $cf_cv_const_x_string in
7618+(no)
7619
7620+	test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS "
7621+	CPPFLAGS="${CPPFLAGS}-DXTSTRINGDEFINES"
7622+
7623+	;;
7624+(*)
7625+
7626+	test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS "
7627+	CPPFLAGS="${CPPFLAGS}-D_CONST_X_STRING"
7628+
7629+	;;
7630+esac
7631+
7632+else
7633+  echo "$as_me: failed program was:" >&5
7634+cat conftest.$ac_ext >&5
7635+fi
7636+rm -f conftest.$ac_objext conftest.$ac_ext
7637+ fi
7638 cat > conftest.$ac_ext <<EOF
7639-#line 13820 "${as_me:-configure}"
7640+#line 13922 "${as_me:-configure}"
7641 int main(int argc, char *argv[]) { return (argv[argc-1] == 0) ; }
7642 EOF
7643-
7644 if test "$INTEL_COMPILER" = yes
7645 then
7646 # The "-wdXXX" options suppress warnings:
7647@@ -13834,7 +13935,7 @@
7648 # remark #981: operands are evaluated in unspecified order
7649 # warning #279: controlling expression is constant
7650
7651-	{ echo "$as_me:13837: checking for $CC warning options..." >&5
7652+	{ echo "$as_me:13938: checking for $CC warning options..." >&5
7653 echo "$as_me: checking for $CC warning options..." >&6;}
7654 	cf_save_CFLAGS="$CFLAGS"
7655 	EXTRA_CFLAGS="-Wall"
7656@@ -13850,21 +13951,20 @@
7657 		wd981
7658 	do
7659 		CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt"
7660-		if { (eval echo "$as_me:13853: \"$ac_compile\"") >&5
7661+		if { (eval echo "$as_me:13954: \"$ac_compile\"") >&5
7662   (eval $ac_compile) 2>&5
7663   ac_status=$?
7664-  echo "$as_me:13856: \$? = $ac_status" >&5
7665+  echo "$as_me:13957: \$? = $ac_status" >&5
7666   (exit $ac_status); }; then
7667-			test -n "$verbose" && echo "$as_me:13858: result: ... -$cf_opt" >&5
7668+			test -n "$verbose" && echo "$as_me:13959: result: ... -$cf_opt" >&5
7669 echo "${ECHO_T}... -$cf_opt" >&6
7670 			EXTRA_CFLAGS="$EXTRA_CFLAGS -$cf_opt"
7671 		fi
7672 	done
7673 	CFLAGS="$cf_save_CFLAGS"
7674-
7675 elif test "$GCC" = yes
7676 then
7677-	{ echo "$as_me:13867: checking for $CC warning options..." >&5
7678+	{ echo "$as_me:13967: checking for $CC warning options..." >&5
7679 echo "$as_me: checking for $CC warning options..." >&6;}
7680 	cf_save_CFLAGS="$CFLAGS"
7681 	EXTRA_CFLAGS=
7682@@ -13888,26 +13988,20 @@
7683 		Wundef $cf_gcc_warnings $cf_warn_CONST Wno-unknown-pragmas Wswitch-enum
7684 	do
7685 		CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt"
7686-		if { (eval echo "$as_me:13891: \"$ac_compile\"") >&5
7687+		if { (eval echo "$as_me:13991: \"$ac_compile\"") >&5
7688   (eval $ac_compile) 2>&5
7689   ac_status=$?
7690-  echo "$as_me:13894: \$? = $ac_status" >&5
7691+  echo "$as_me:13994: \$? = $ac_status" >&5
7692   (exit $ac_status); }; then
7693-			test -n "$verbose" && echo "$as_me:13896: result: ... -$cf_opt" >&5
7694+			test -n "$verbose" && echo "$as_me:13996: result: ... -$cf_opt" >&5
7695 echo "${ECHO_T}... -$cf_opt" >&6
7696 			case $cf_opt in
7697-			(Wcast-qual)
7698-
7699-	test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS "
7700-	CPPFLAGS="${CPPFLAGS}-DXTSTRINGDEFINES"
7701-
7702-				;;
7703 			(Winline)
7704 				case $GCC_VERSION in
7705 				([34].*)
7706 					test -n "$verbose" && echo "	feature is broken in gcc $GCC_VERSION" 1>&6
7707
7708-echo "${as_me:-configure}:13910: testing feature is broken in gcc $GCC_VERSION ..." 1>&5
7709+echo "${as_me:-configure}:14004: testing feature is broken in gcc $GCC_VERSION ..." 1>&5
7710
7711 					continue;;
7712 				esac
7713@@ -13917,7 +14011,7 @@
7714 				([12].*)
7715 					test -n "$verbose" && echo "	feature is broken in gcc $GCC_VERSION" 1>&6
7716
7717-echo "${as_me:-configure}:13920: testing feature is broken in gcc $GCC_VERSION ..." 1>&5
7718+echo "${as_me:-configure}:14014: testing feature is broken in gcc $GCC_VERSION ..." 1>&5
7719
7720 					continue;;
7721 				esac
7722@@ -13950,10 +14044,10 @@
7723 EOF
7724 if test "$GCC" = yes
7725 then
7726-	{ echo "$as_me:13953: checking for $CC __attribute__ directives..." >&5
7727+	{ echo "$as_me:14047: checking for $CC __attribute__ directives..." >&5
7728 echo "$as_me: checking for $CC __attribute__ directives..." >&6;}
7729 cat > conftest.$ac_ext <<EOF
7730-#line 13956 "${as_me:-configure}"
7731+#line 14050 "${as_me:-configure}"
7732 #include "confdefs.h"
7733 #include "conftest.h"
7734 #include "conftest.i"
7735@@ -14002,12 +14096,12 @@
7736 			;;
7737 		esac
7738
7739-		if { (eval echo "$as_me:14005: \"$ac_compile\"") >&5
7740+		if { (eval echo "$as_me:14099: \"$ac_compile\"") >&5
7741   (eval $ac_compile) 2>&5
7742   ac_status=$?
7743-  echo "$as_me:14008: \$? = $ac_status" >&5
7744+  echo "$as_me:14102: \$? = $ac_status" >&5
7745   (exit $ac_status); }; then
7746-			test -n "$verbose" && echo "$as_me:14010: result: ... $cf_attribute" >&5
7747+			test -n "$verbose" && echo "$as_me:14104: result: ... $cf_attribute" >&5
7748 echo "${ECHO_T}... $cf_attribute" >&6
7749 			cat conftest.h >>confdefs.h
7750 			case $cf_attribute in
7751@@ -14067,7 +14161,7 @@
7752 fi
7753
7754 ###	use option --enable-assertions to turn on generation of assertion code
7755-echo "$as_me:14070: checking if you want to enable runtime assertions" >&5
7756+echo "$as_me:14164: checking if you want to enable runtime assertions" >&5
7757 echo $ECHO_N "checking if you want to enable runtime assertions... $ECHO_C" >&6
7758
7759 # Check whether --enable-assertions or --disable-assertions was given.
7760@@ -14077,7 +14171,7 @@
7761 else
7762   with_assertions=no
7763 fi;
7764-echo "$as_me:14080: result: $with_assertions" >&5
7765+echo "$as_me:14174: result: $with_assertions" >&5
7766 echo "${ECHO_T}$with_assertions" >&6
7767 if test -n "$GCC"
7768 then
7769@@ -14130,7 +14224,7 @@
7770 	;;
7771 esac
7772
7773-echo "$as_me:14133: checking whether to add trace feature to all models" >&5
7774+echo "$as_me:14227: checking whether to add trace feature to all models" >&5
7775 echo $ECHO_N "checking whether to add trace feature to all models... $ECHO_C" >&6
7776
7777 # Check whether --with-trace or --without-trace was given.
7778@@ -14140,7 +14234,7 @@
7779 else
7780   cf_with_trace=$cf_all_traces
7781 fi;
7782-echo "$as_me:14143: result: $cf_with_trace" >&5
7783+echo "$as_me:14237: result: $cf_with_trace" >&5
7784 echo "${ECHO_T}$cf_with_trace" >&6
7785
7786 if test "$cf_with_trace" = yes ; then
7787@@ -14248,7 +14342,7 @@
7788 	ADA_TRACE=FALSE
7789 fi
7790
7791-echo "$as_me:14251: checking if we want to use GNAT projects" >&5
7792+echo "$as_me:14345: checking if we want to use GNAT projects" >&5
7793 echo $ECHO_N "checking if we want to use GNAT projects... $ECHO_C" >&6
7794
7795 # Check whether --enable-gnat-projects or --disable-gnat-projects was given.
7796@@ -14265,7 +14359,7 @@
7797 	enable_gnat_projects=yes
7798
7799 fi;
7800-echo "$as_me:14268: result: $enable_gnat_projects" >&5
7801+echo "$as_me:14362: result: $enable_gnat_projects" >&5
7802 echo "${ECHO_T}$enable_gnat_projects" >&6
7803
7804 ###	Checks for libraries.
7805@@ -14273,13 +14367,13 @@
7806 (*mingw32*)
7807 	;;
7808 (*)
7809-echo "$as_me:14276: checking for gettimeofday" >&5
7810+echo "$as_me:14370: checking for gettimeofday" >&5
7811 echo $ECHO_N "checking for gettimeofday... $ECHO_C" >&6
7812 if test "${ac_cv_func_gettimeofday+set}" = set; then
7813   echo $ECHO_N "(cached) $ECHO_C" >&6
7814 else
7815   cat >conftest.$ac_ext <<_ACEOF
7816-#line 14282 "configure"
7817+#line 14376 "configure"
7818 #include "confdefs.h"
7819 #define gettimeofday autoconf_temporary
7820 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
7821@@ -14310,16 +14404,16 @@
7822 }
7823 _ACEOF
7824 rm -f conftest.$ac_objext conftest$ac_exeext
7825-if { (eval echo "$as_me:14313: \"$ac_link\"") >&5
7826+if { (eval echo "$as_me:14407: \"$ac_link\"") >&5
7827   (eval $ac_link) 2>&5
7828   ac_status=$?
7829-  echo "$as_me:14316: \$? = $ac_status" >&5
7830+  echo "$as_me:14410: \$? = $ac_status" >&5
7831   (exit $ac_status); } &&
7832          { ac_try='test -s conftest$ac_exeext'
7833-  { (eval echo "$as_me:14319: \"$ac_try\"") >&5
7834+  { (eval echo "$as_me:14413: \"$ac_try\"") >&5
7835   (eval $ac_try) 2>&5
7836   ac_status=$?
7837-  echo "$as_me:14322: \$? = $ac_status" >&5
7838+  echo "$as_me:14416: \$? = $ac_status" >&5
7839   (exit $ac_status); }; }; then
7840   ac_cv_func_gettimeofday=yes
7841 else
7842@@ -14329,7 +14423,7 @@
7843 fi
7844 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
7845 fi
7846-echo "$as_me:14332: result: $ac_cv_func_gettimeofday" >&5
7847+echo "$as_me:14426: result: $ac_cv_func_gettimeofday" >&5
7848 echo "${ECHO_T}$ac_cv_func_gettimeofday" >&6
7849 if test $ac_cv_func_gettimeofday = yes; then
7850   cat >>confdefs.h <<\EOF
7851@@ -14338,7 +14432,7 @@
7852
7853 else
7854
7855-echo "$as_me:14341: checking for gettimeofday in -lbsd" >&5
7856+echo "$as_me:14435: checking for gettimeofday in -lbsd" >&5
7857 echo $ECHO_N "checking for gettimeofday in -lbsd... $ECHO_C" >&6
7858 if test "${ac_cv_lib_bsd_gettimeofday+set}" = set; then
7859   echo $ECHO_N "(cached) $ECHO_C" >&6
7860@@ -14346,7 +14440,7 @@
7861   ac_check_lib_save_LIBS=$LIBS
7862 LIBS="-lbsd  $LIBS"
7863 cat >conftest.$ac_ext <<_ACEOF
7864-#line 14349 "configure"
7865+#line 14443 "configure"
7866 #include "confdefs.h"
7867
7868 /* Override any gcc2 internal prototype to avoid an error.  */
7869@@ -14365,16 +14459,16 @@
7870 }
7871 _ACEOF
7872 rm -f conftest.$ac_objext conftest$ac_exeext
7873-if { (eval echo "$as_me:14368: \"$ac_link\"") >&5
7874+if { (eval echo "$as_me:14462: \"$ac_link\"") >&5
7875   (eval $ac_link) 2>&5
7876   ac_status=$?
7877-  echo "$as_me:14371: \$? = $ac_status" >&5
7878+  echo "$as_me:14465: \$? = $ac_status" >&5
7879   (exit $ac_status); } &&
7880          { ac_try='test -s conftest$ac_exeext'
7881-  { (eval echo "$as_me:14374: \"$ac_try\"") >&5
7882+  { (eval echo "$as_me:14468: \"$ac_try\"") >&5
7883   (eval $ac_try) 2>&5
7884   ac_status=$?
7885-  echo "$as_me:14377: \$? = $ac_status" >&5
7886+  echo "$as_me:14471: \$? = $ac_status" >&5
7887   (exit $ac_status); }; }; then
7888   ac_cv_lib_bsd_gettimeofday=yes
7889 else
7890@@ -14385,7 +14479,7 @@
7891 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
7892 LIBS=$ac_check_lib_save_LIBS
7893 fi
7894-echo "$as_me:14388: result: $ac_cv_lib_bsd_gettimeofday" >&5
7895+echo "$as_me:14482: result: $ac_cv_lib_bsd_gettimeofday" >&5
7896 echo "${ECHO_T}$ac_cv_lib_bsd_gettimeofday" >&6
7897 if test $ac_cv_lib_bsd_gettimeofday = yes; then
7898
7899@@ -14401,13 +14495,13 @@
7900 esac
7901
7902 ###	Checks for header files.
7903-echo "$as_me:14404: checking for ANSI C header files" >&5
7904+echo "$as_me:14498: checking for ANSI C header files" >&5
7905 echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6
7906 if test "${ac_cv_header_stdc+set}" = set; then
7907   echo $ECHO_N "(cached) $ECHO_C" >&6
7908 else
7909   cat >conftest.$ac_ext <<_ACEOF
7910-#line 14410 "configure"
7911+#line 14504 "configure"
7912 #include "confdefs.h"
7913 #include <stdlib.h>
7914 #include <stdarg.h>
7915@@ -14415,13 +14509,13 @@
7916 #include <float.h>
7917
7918 _ACEOF
7919-if { (eval echo "$as_me:14418: \"$ac_cpp conftest.$ac_ext\"") >&5
7920+if { (eval echo "$as_me:14512: \"$ac_cpp conftest.$ac_ext\"") >&5
7921   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
7922   ac_status=$?
7923   egrep -v '^ *\+' conftest.er1 >conftest.err
7924   rm -f conftest.er1
7925   cat conftest.err >&5
7926-  echo "$as_me:14424: \$? = $ac_status" >&5
7927+  echo "$as_me:14518: \$? = $ac_status" >&5
7928   (exit $ac_status); } >/dev/null; then
7929   if test -s conftest.err; then
7930     ac_cpp_err=$ac_c_preproc_warn_flag
7931@@ -14443,7 +14537,7 @@
7932 if test $ac_cv_header_stdc = yes; then
7933   # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
7934   cat >conftest.$ac_ext <<_ACEOF
7935-#line 14446 "configure"
7936+#line 14540 "configure"
7937 #include "confdefs.h"
7938 #include <string.h>
7939
7940@@ -14461,7 +14555,7 @@
7941 if test $ac_cv_header_stdc = yes; then
7942   # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
7943   cat >conftest.$ac_ext <<_ACEOF
7944-#line 14464 "configure"
7945+#line 14558 "configure"
7946 #include "confdefs.h"
7947 #include <stdlib.h>
7948
7949@@ -14482,7 +14576,7 @@
7950   :
7951 else
7952   cat >conftest.$ac_ext <<_ACEOF
7953-#line 14485 "configure"
7954+#line 14579 "configure"
7955 #include "confdefs.h"
7956 #include <ctype.h>
7957 #if ((' ' & 0x0FF) == 0x020)
7958@@ -14508,15 +14602,15 @@
7959 }
7960 _ACEOF
7961 rm -f conftest$ac_exeext
7962-if { (eval echo "$as_me:14511: \"$ac_link\"") >&5
7963+if { (eval echo "$as_me:14605: \"$ac_link\"") >&5
7964   (eval $ac_link) 2>&5
7965   ac_status=$?
7966-  echo "$as_me:14514: \$? = $ac_status" >&5
7967+  echo "$as_me:14608: \$? = $ac_status" >&5
7968   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
7969-  { (eval echo "$as_me:14516: \"$ac_try\"") >&5
7970+  { (eval echo "$as_me:14610: \"$ac_try\"") >&5
7971   (eval $ac_try) 2>&5
7972   ac_status=$?
7973-  echo "$as_me:14519: \$? = $ac_status" >&5
7974+  echo "$as_me:14613: \$? = $ac_status" >&5
7975   (exit $ac_status); }; }; then
7976   :
7977 else
7978@@ -14529,7 +14623,7 @@
7979 fi
7980 fi
7981 fi
7982-echo "$as_me:14532: result: $ac_cv_header_stdc" >&5
7983+echo "$as_me:14626: result: $ac_cv_header_stdc" >&5
7984 echo "${ECHO_T}$ac_cv_header_stdc" >&6
7985 if test $ac_cv_header_stdc = yes; then
7986
7987@@ -14545,28 +14639,28 @@
7988                   inttypes.h stdint.h unistd.h
7989 do
7990 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
7991-echo "$as_me:14548: checking for $ac_header" >&5
7992+echo "$as_me:14642: checking for $ac_header" >&5
7993 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
7994 if eval "test \"\${$as_ac_Header+set}\" = set"; then
7995   echo $ECHO_N "(cached) $ECHO_C" >&6
7996 else
7997   cat >conftest.$ac_ext <<_ACEOF
7998-#line 14554 "configure"
7999+#line 14648 "configure"
8000 #include "confdefs.h"
8001 $ac_includes_default
8002 #include <$ac_header>
8003 _ACEOF
8004 rm -f conftest.$ac_objext
8005-if { (eval echo "$as_me:14560: \"$ac_compile\"") >&5
8006+if { (eval echo "$as_me:14654: \"$ac_compile\"") >&5
8007   (eval $ac_compile) 2>&5
8008   ac_status=$?
8009-  echo "$as_me:14563: \$? = $ac_status" >&5
8010+  echo "$as_me:14657: \$? = $ac_status" >&5
8011   (exit $ac_status); } &&
8012          { ac_try='test -s conftest.$ac_objext'
8013-  { (eval echo "$as_me:14566: \"$ac_try\"") >&5
8014+  { (eval echo "$as_me:14660: \"$ac_try\"") >&5
8015   (eval $ac_try) 2>&5
8016   ac_status=$?
8017-  echo "$as_me:14569: \$? = $ac_status" >&5
8018+  echo "$as_me:14663: \$? = $ac_status" >&5
8019   (exit $ac_status); }; }; then
8020   eval "$as_ac_Header=yes"
8021 else
8022@@ -14576,7 +14670,7 @@
8023 fi
8024 rm -f conftest.$ac_objext conftest.$ac_ext
8025 fi
8026-echo "$as_me:14579: result: `eval echo '${'$as_ac_Header'}'`" >&5
8027+echo "$as_me:14673: result: `eval echo '${'$as_ac_Header'}'`" >&5
8028 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
8029 if test `eval echo '${'$as_ac_Header'}'` = yes; then
8030   cat >>confdefs.h <<EOF
8031@@ -14586,13 +14680,13 @@
8032 fi
8033 done
8034
8035-echo "$as_me:14589: checking for signed char" >&5
8036+echo "$as_me:14683: checking for signed char" >&5
8037 echo $ECHO_N "checking for signed char... $ECHO_C" >&6
8038 if test "${ac_cv_type_signed_char+set}" = set; then
8039   echo $ECHO_N "(cached) $ECHO_C" >&6
8040 else
8041   cat >conftest.$ac_ext <<_ACEOF
8042-#line 14595 "configure"
8043+#line 14689 "configure"
8044 #include "confdefs.h"
8045 $ac_includes_default
8046 int
8047@@ -14607,16 +14701,16 @@
8048 }
8049 _ACEOF
8050 rm -f conftest.$ac_objext
8051-if { (eval echo "$as_me:14610: \"$ac_compile\"") >&5
8052+if { (eval echo "$as_me:14704: \"$ac_compile\"") >&5
8053   (eval $ac_compile) 2>&5
8054   ac_status=$?
8055-  echo "$as_me:14613: \$? = $ac_status" >&5
8056+  echo "$as_me:14707: \$? = $ac_status" >&5
8057   (exit $ac_status); } &&
8058          { ac_try='test -s conftest.$ac_objext'
8059-  { (eval echo "$as_me:14616: \"$ac_try\"") >&5
8060+  { (eval echo "$as_me:14710: \"$ac_try\"") >&5
8061   (eval $ac_try) 2>&5
8062   ac_status=$?
8063-  echo "$as_me:14619: \$? = $ac_status" >&5
8064+  echo "$as_me:14713: \$? = $ac_status" >&5
8065   (exit $ac_status); }; }; then
8066   ac_cv_type_signed_char=yes
8067 else
8068@@ -14626,10 +14720,10 @@
8069 fi
8070 rm -f conftest.$ac_objext conftest.$ac_ext
8071 fi
8072-echo "$as_me:14629: result: $ac_cv_type_signed_char" >&5
8073+echo "$as_me:14723: result: $ac_cv_type_signed_char" >&5
8074 echo "${ECHO_T}$ac_cv_type_signed_char" >&6
8075
8076-echo "$as_me:14632: checking size of signed char" >&5
8077+echo "$as_me:14726: checking size of signed char" >&5
8078 echo $ECHO_N "checking size of signed char... $ECHO_C" >&6
8079 if test "${ac_cv_sizeof_signed_char+set}" = set; then
8080   echo $ECHO_N "(cached) $ECHO_C" >&6
8081@@ -14638,7 +14732,7 @@
8082   if test "$cross_compiling" = yes; then
8083   # Depending upon the size, compute the lo and hi bounds.
8084 cat >conftest.$ac_ext <<_ACEOF
8085-#line 14641 "configure"
8086+#line 14735 "configure"
8087 #include "confdefs.h"
8088 $ac_includes_default
8089 int
8090@@ -14650,21 +14744,21 @@
8091 }
8092 _ACEOF
8093 rm -f conftest.$ac_objext
8094-if { (eval echo "$as_me:14653: \"$ac_compile\"") >&5
8095+if { (eval echo "$as_me:14747: \"$ac_compile\"") >&5
8096   (eval $ac_compile) 2>&5
8097   ac_status=$?
8098-  echo "$as_me:14656: \$? = $ac_status" >&5
8099+  echo "$as_me:14750: \$? = $ac_status" >&5
8100   (exit $ac_status); } &&
8101          { ac_try='test -s conftest.$ac_objext'
8102-  { (eval echo "$as_me:14659: \"$ac_try\"") >&5
8103+  { (eval echo "$as_me:14753: \"$ac_try\"") >&5
8104   (eval $ac_try) 2>&5
8105   ac_status=$?
8106-  echo "$as_me:14662: \$? = $ac_status" >&5
8107+  echo "$as_me:14756: \$? = $ac_status" >&5
8108   (exit $ac_status); }; }; then
8109   ac_lo=0 ac_mid=0
8110   while :; do
8111     cat >conftest.$ac_ext <<_ACEOF
8112-#line 14667 "configure"
8113+#line 14761 "configure"
8114 #include "confdefs.h"
8115 $ac_includes_default
8116 int
8117@@ -14676,16 +14770,16 @@
8118 }
8119 _ACEOF
8120 rm -f conftest.$ac_objext
8121-if { (eval echo "$as_me:14679: \"$ac_compile\"") >&5
8122+if { (eval echo "$as_me:14773: \"$ac_compile\"") >&5
8123   (eval $ac_compile) 2>&5
8124   ac_status=$?
8125-  echo "$as_me:14682: \$? = $ac_status" >&5
8126+  echo "$as_me:14776: \$? = $ac_status" >&5
8127   (exit $ac_status); } &&
8128          { ac_try='test -s conftest.$ac_objext'
8129-  { (eval echo "$as_me:14685: \"$ac_try\"") >&5
8130+  { (eval echo "$as_me:14779: \"$ac_try\"") >&5
8131   (eval $ac_try) 2>&5
8132   ac_status=$?
8133-  echo "$as_me:14688: \$? = $ac_status" >&5
8134+  echo "$as_me:14782: \$? = $ac_status" >&5
8135   (exit $ac_status); }; }; then
8136   ac_hi=$ac_mid; break
8137 else
8138@@ -14701,7 +14795,7 @@
8139 ac_hi=-1 ac_mid=-1
8140   while :; do
8141     cat >conftest.$ac_ext <<_ACEOF
8142-#line 14704 "configure"
8143+#line 14798 "configure"
8144 #include "confdefs.h"
8145 $ac_includes_default
8146 int
8147@@ -14713,16 +14807,16 @@
8148 }
8149 _ACEOF
8150 rm -f conftest.$ac_objext
8151-if { (eval echo "$as_me:14716: \"$ac_compile\"") >&5
8152+if { (eval echo "$as_me:14810: \"$ac_compile\"") >&5
8153   (eval $ac_compile) 2>&5
8154   ac_status=$?
8155-  echo "$as_me:14719: \$? = $ac_status" >&5
8156+  echo "$as_me:14813: \$? = $ac_status" >&5
8157   (exit $ac_status); } &&
8158          { ac_try='test -s conftest.$ac_objext'
8159-  { (eval echo "$as_me:14722: \"$ac_try\"") >&5
8160+  { (eval echo "$as_me:14816: \"$ac_try\"") >&5
8161   (eval $ac_try) 2>&5
8162   ac_status=$?
8163-  echo "$as_me:14725: \$? = $ac_status" >&5
8164+  echo "$as_me:14819: \$? = $ac_status" >&5
8165   (exit $ac_status); }; }; then
8166   ac_lo=$ac_mid; break
8167 else
8168@@ -14738,7 +14832,7 @@
8169 while test "x$ac_lo" != "x$ac_hi"; do
8170   ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo`
8171   cat >conftest.$ac_ext <<_ACEOF
8172-#line 14741 "configure"
8173+#line 14835 "configure"
8174 #include "confdefs.h"
8175 $ac_includes_default
8176 int
8177@@ -14750,16 +14844,16 @@
8178 }
8179 _ACEOF
8180 rm -f conftest.$ac_objext
8181-if { (eval echo "$as_me:14753: \"$ac_compile\"") >&5
8182+if { (eval echo "$as_me:14847: \"$ac_compile\"") >&5
8183   (eval $ac_compile) 2>&5
8184   ac_status=$?
8185-  echo "$as_me:14756: \$? = $ac_status" >&5
8186+  echo "$as_me:14850: \$? = $ac_status" >&5
8187   (exit $ac_status); } &&
8188          { ac_try='test -s conftest.$ac_objext'
8189-  { (eval echo "$as_me:14759: \"$ac_try\"") >&5
8190+  { (eval echo "$as_me:14853: \"$ac_try\"") >&5
8191   (eval $ac_try) 2>&5
8192   ac_status=$?
8193-  echo "$as_me:14762: \$? = $ac_status" >&5
8194+  echo "$as_me:14856: \$? = $ac_status" >&5
8195   (exit $ac_status); }; }; then
8196   ac_hi=$ac_mid
8197 else
8198@@ -14772,12 +14866,12 @@
8199 ac_cv_sizeof_signed_char=$ac_lo
8200 else
8201   if test "$cross_compiling" = yes; then
8202-  { { echo "$as_me:14775: error: cannot run test program while cross compiling" >&5
8203+  { { echo "$as_me:14869: error: cannot run test program while cross compiling" >&5
8204 echo "$as_me: error: cannot run test program while cross compiling" >&2;}
8205    { (exit 1); exit 1; }; }
8206 else
8207   cat >conftest.$ac_ext <<_ACEOF
8208-#line 14780 "configure"
8209+#line 14874 "configure"
8210 #include "confdefs.h"
8211 $ac_includes_default
8212 int
8213@@ -14793,15 +14887,15 @@
8214 }
8215 _ACEOF
8216 rm -f conftest$ac_exeext
8217-if { (eval echo "$as_me:14796: \"$ac_link\"") >&5
8218+if { (eval echo "$as_me:14890: \"$ac_link\"") >&5
8219   (eval $ac_link) 2>&5
8220   ac_status=$?
8221-  echo "$as_me:14799: \$? = $ac_status" >&5
8222+  echo "$as_me:14893: \$? = $ac_status" >&5
8223   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
8224-  { (eval echo "$as_me:14801: \"$ac_try\"") >&5
8225+  { (eval echo "$as_me:14895: \"$ac_try\"") >&5
8226   (eval $ac_try) 2>&5
8227   ac_status=$?
8228-  echo "$as_me:14804: \$? = $ac_status" >&5
8229+  echo "$as_me:14898: \$? = $ac_status" >&5
8230   (exit $ac_status); }; }; then
8231   ac_cv_sizeof_signed_char=`cat conftest.val`
8232 else
8233@@ -14817,19 +14911,19 @@
8234   ac_cv_sizeof_signed_char=0
8235 fi
8236 fi
8237-echo "$as_me:14820: result: $ac_cv_sizeof_signed_char" >&5
8238+echo "$as_me:14914: result: $ac_cv_sizeof_signed_char" >&5
8239 echo "${ECHO_T}$ac_cv_sizeof_signed_char" >&6
8240 cat >>confdefs.h <<EOF
8241 #define SIZEOF_SIGNED_CHAR $ac_cv_sizeof_signed_char
8242 EOF
8243
8244-echo "$as_me:14826: checking for ANSI C header files" >&5
8245+echo "$as_me:14920: checking for ANSI C header files" >&5
8246 echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6
8247 if test "${ac_cv_header_stdc+set}" = set; then
8248   echo $ECHO_N "(cached) $ECHO_C" >&6
8249 else
8250   cat >conftest.$ac_ext <<_ACEOF
8251-#line 14832 "configure"
8252+#line 14926 "configure"
8253 #include "confdefs.h"
8254 #include <stdlib.h>
8255 #include <stdarg.h>
8256@@ -14837,13 +14931,13 @@
8257 #include <float.h>
8258
8259 _ACEOF
8260-if { (eval echo "$as_me:14840: \"$ac_cpp conftest.$ac_ext\"") >&5
8261+if { (eval echo "$as_me:14934: \"$ac_cpp conftest.$ac_ext\"") >&5
8262   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
8263   ac_status=$?
8264   egrep -v '^ *\+' conftest.er1 >conftest.err
8265   rm -f conftest.er1
8266   cat conftest.err >&5
8267-  echo "$as_me:14846: \$? = $ac_status" >&5
8268+  echo "$as_me:14940: \$? = $ac_status" >&5
8269   (exit $ac_status); } >/dev/null; then
8270   if test -s conftest.err; then
8271     ac_cpp_err=$ac_c_preproc_warn_flag
8272@@ -14865,7 +14959,7 @@
8273 if test $ac_cv_header_stdc = yes; then
8274   # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
8275   cat >conftest.$ac_ext <<_ACEOF
8276-#line 14868 "configure"
8277+#line 14962 "configure"
8278 #include "confdefs.h"
8279 #include <string.h>
8280
8281@@ -14883,7 +14977,7 @@
8282 if test $ac_cv_header_stdc = yes; then
8283   # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
8284   cat >conftest.$ac_ext <<_ACEOF
8285-#line 14886 "configure"
8286+#line 14980 "configure"
8287 #include "confdefs.h"
8288 #include <stdlib.h>
8289
8290@@ -14904,7 +14998,7 @@
8291   :
8292 else
8293   cat >conftest.$ac_ext <<_ACEOF
8294-#line 14907 "configure"
8295+#line 15001 "configure"
8296 #include "confdefs.h"
8297 #include <ctype.h>
8298 #if ((' ' & 0x0FF) == 0x020)
8299@@ -14930,15 +15024,15 @@
8300 }
8301 _ACEOF
8302 rm -f conftest$ac_exeext
8303-if { (eval echo "$as_me:14933: \"$ac_link\"") >&5
8304+if { (eval echo "$as_me:15027: \"$ac_link\"") >&5
8305   (eval $ac_link) 2>&5
8306   ac_status=$?
8307-  echo "$as_me:14936: \$? = $ac_status" >&5
8308+  echo "$as_me:15030: \$? = $ac_status" >&5
8309   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
8310-  { (eval echo "$as_me:14938: \"$ac_try\"") >&5
8311+  { (eval echo "$as_me:15032: \"$ac_try\"") >&5
8312   (eval $ac_try) 2>&5
8313   ac_status=$?
8314-  echo "$as_me:14941: \$? = $ac_status" >&5
8315+  echo "$as_me:15035: \$? = $ac_status" >&5
8316   (exit $ac_status); }; }; then
8317   :
8318 else
8319@@ -14951,7 +15045,7 @@
8320 fi
8321 fi
8322 fi
8323-echo "$as_me:14954: result: $ac_cv_header_stdc" >&5
8324+echo "$as_me:15048: result: $ac_cv_header_stdc" >&5
8325 echo "${ECHO_T}$ac_cv_header_stdc" >&6
8326 if test $ac_cv_header_stdc = yes; then
8327
8328@@ -14964,13 +15058,13 @@
8329 ac_header_dirent=no
8330 for ac_hdr in dirent.h sys/ndir.h sys/dir.h ndir.h; do
8331   as_ac_Header=`echo "ac_cv_header_dirent_$ac_hdr" | $as_tr_sh`
8332-echo "$as_me:14967: checking for $ac_hdr that defines DIR" >&5
8333+echo "$as_me:15061: checking for $ac_hdr that defines DIR" >&5
8334 echo $ECHO_N "checking for $ac_hdr that defines DIR... $ECHO_C" >&6
8335 if eval "test \"\${$as_ac_Header+set}\" = set"; then
8336   echo $ECHO_N "(cached) $ECHO_C" >&6
8337 else
8338   cat >conftest.$ac_ext <<_ACEOF
8339-#line 14973 "configure"
8340+#line 15067 "configure"
8341 #include "confdefs.h"
8342 #include <sys/types.h>
8343 #include <$ac_hdr>
8344@@ -14985,16 +15079,16 @@
8345 }
8346 _ACEOF
8347 rm -f conftest.$ac_objext
8348-if { (eval echo "$as_me:14988: \"$ac_compile\"") >&5
8349+if { (eval echo "$as_me:15082: \"$ac_compile\"") >&5
8350   (eval $ac_compile) 2>&5
8351   ac_status=$?
8352-  echo "$as_me:14991: \$? = $ac_status" >&5
8353+  echo "$as_me:15085: \$? = $ac_status" >&5
8354   (exit $ac_status); } &&
8355          { ac_try='test -s conftest.$ac_objext'
8356-  { (eval echo "$as_me:14994: \"$ac_try\"") >&5
8357+  { (eval echo "$as_me:15088: \"$ac_try\"") >&5
8358   (eval $ac_try) 2>&5
8359   ac_status=$?
8360-  echo "$as_me:14997: \$? = $ac_status" >&5
8361+  echo "$as_me:15091: \$? = $ac_status" >&5
8362   (exit $ac_status); }; }; then
8363   eval "$as_ac_Header=yes"
8364 else
8365@@ -15004,7 +15098,7 @@
8366 fi
8367 rm -f conftest.$ac_objext conftest.$ac_ext
8368 fi
8369-echo "$as_me:15007: result: `eval echo '${'$as_ac_Header'}'`" >&5
8370+echo "$as_me:15101: result: `eval echo '${'$as_ac_Header'}'`" >&5
8371 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
8372 if test `eval echo '${'$as_ac_Header'}'` = yes; then
8373   cat >>confdefs.h <<EOF
8374@@ -15017,7 +15111,7 @@
8375 done
8376 # Two versions of opendir et al. are in -ldir and -lx on SCO Xenix.
8377 if test $ac_header_dirent = dirent.h; then
8378-  echo "$as_me:15020: checking for opendir in -ldir" >&5
8379+  echo "$as_me:15114: checking for opendir in -ldir" >&5
8380 echo $ECHO_N "checking for opendir in -ldir... $ECHO_C" >&6
8381 if test "${ac_cv_lib_dir_opendir+set}" = set; then
8382   echo $ECHO_N "(cached) $ECHO_C" >&6
8383@@ -15025,7 +15119,7 @@
8384   ac_check_lib_save_LIBS=$LIBS
8385 LIBS="-ldir  $LIBS"
8386 cat >conftest.$ac_ext <<_ACEOF
8387-#line 15028 "configure"
8388+#line 15122 "configure"
8389 #include "confdefs.h"
8390
8391 /* Override any gcc2 internal prototype to avoid an error.  */
8392@@ -15044,16 +15138,16 @@
8393 }
8394 _ACEOF
8395 rm -f conftest.$ac_objext conftest$ac_exeext
8396-if { (eval echo "$as_me:15047: \"$ac_link\"") >&5
8397+if { (eval echo "$as_me:15141: \"$ac_link\"") >&5
8398   (eval $ac_link) 2>&5
8399   ac_status=$?
8400-  echo "$as_me:15050: \$? = $ac_status" >&5
8401+  echo "$as_me:15144: \$? = $ac_status" >&5
8402   (exit $ac_status); } &&
8403          { ac_try='test -s conftest$ac_exeext'
8404-  { (eval echo "$as_me:15053: \"$ac_try\"") >&5
8405+  { (eval echo "$as_me:15147: \"$ac_try\"") >&5
8406   (eval $ac_try) 2>&5
8407   ac_status=$?
8408-  echo "$as_me:15056: \$? = $ac_status" >&5
8409+  echo "$as_me:15150: \$? = $ac_status" >&5
8410   (exit $ac_status); }; }; then
8411   ac_cv_lib_dir_opendir=yes
8412 else
8413@@ -15064,14 +15158,14 @@
8414 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
8415 LIBS=$ac_check_lib_save_LIBS
8416 fi
8417-echo "$as_me:15067: result: $ac_cv_lib_dir_opendir" >&5
8418+echo "$as_me:15161: result: $ac_cv_lib_dir_opendir" >&5
8419 echo "${ECHO_T}$ac_cv_lib_dir_opendir" >&6
8420 if test $ac_cv_lib_dir_opendir = yes; then
8421   LIBS="$LIBS -ldir"
8422 fi
8423
8424 else
8425-  echo "$as_me:15074: checking for opendir in -lx" >&5
8426+  echo "$as_me:15168: checking for opendir in -lx" >&5
8427 echo $ECHO_N "checking for opendir in -lx... $ECHO_C" >&6
8428 if test "${ac_cv_lib_x_opendir+set}" = set; then
8429   echo $ECHO_N "(cached) $ECHO_C" >&6
8430@@ -15079,7 +15173,7 @@
8431   ac_check_lib_save_LIBS=$LIBS
8432 LIBS="-lx  $LIBS"
8433 cat >conftest.$ac_ext <<_ACEOF
8434-#line 15082 "configure"
8435+#line 15176 "configure"
8436 #include "confdefs.h"
8437
8438 /* Override any gcc2 internal prototype to avoid an error.  */
8439@@ -15098,16 +15192,16 @@
8440 }
8441 _ACEOF
8442 rm -f conftest.$ac_objext conftest$ac_exeext
8443-if { (eval echo "$as_me:15101: \"$ac_link\"") >&5
8444+if { (eval echo "$as_me:15195: \"$ac_link\"") >&5
8445   (eval $ac_link) 2>&5
8446   ac_status=$?
8447-  echo "$as_me:15104: \$? = $ac_status" >&5
8448+  echo "$as_me:15198: \$? = $ac_status" >&5
8449   (exit $ac_status); } &&
8450          { ac_try='test -s conftest$ac_exeext'
8451-  { (eval echo "$as_me:15107: \"$ac_try\"") >&5
8452+  { (eval echo "$as_me:15201: \"$ac_try\"") >&5
8453   (eval $ac_try) 2>&5
8454   ac_status=$?
8455-  echo "$as_me:15110: \$? = $ac_status" >&5
8456+  echo "$as_me:15204: \$? = $ac_status" >&5
8457   (exit $ac_status); }; }; then
8458   ac_cv_lib_x_opendir=yes
8459 else
8460@@ -15118,7 +15212,7 @@
8461 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
8462 LIBS=$ac_check_lib_save_LIBS
8463 fi
8464-echo "$as_me:15121: result: $ac_cv_lib_x_opendir" >&5
8465+echo "$as_me:15215: result: $ac_cv_lib_x_opendir" >&5
8466 echo "${ECHO_T}$ac_cv_lib_x_opendir" >&6
8467 if test $ac_cv_lib_x_opendir = yes; then
8468   LIBS="$LIBS -lx"
8469@@ -15126,13 +15220,13 @@
8470
8471 fi
8472
8473-echo "$as_me:15129: checking whether time.h and sys/time.h may both be included" >&5
8474+echo "$as_me:15223: checking whether time.h and sys/time.h may both be included" >&5
8475 echo $ECHO_N "checking whether time.h and sys/time.h may both be included... $ECHO_C" >&6
8476 if test "${ac_cv_header_time+set}" = set; then
8477   echo $ECHO_N "(cached) $ECHO_C" >&6
8478 else
8479   cat >conftest.$ac_ext <<_ACEOF
8480-#line 15135 "configure"
8481+#line 15229 "configure"
8482 #include "confdefs.h"
8483 #include <sys/types.h>
8484 #include <sys/time.h>
8485@@ -15148,16 +15242,16 @@
8486 }
8487 _ACEOF
8488 rm -f conftest.$ac_objext
8489-if { (eval echo "$as_me:15151: \"$ac_compile\"") >&5
8490+if { (eval echo "$as_me:15245: \"$ac_compile\"") >&5
8491   (eval $ac_compile) 2>&5
8492   ac_status=$?
8493-  echo "$as_me:15154: \$? = $ac_status" >&5
8494+  echo "$as_me:15248: \$? = $ac_status" >&5
8495   (exit $ac_status); } &&
8496          { ac_try='test -s conftest.$ac_objext'
8497-  { (eval echo "$as_me:15157: \"$ac_try\"") >&5
8498+  { (eval echo "$as_me:15251: \"$ac_try\"") >&5
8499   (eval $ac_try) 2>&5
8500   ac_status=$?
8501-  echo "$as_me:15160: \$? = $ac_status" >&5
8502+  echo "$as_me:15254: \$? = $ac_status" >&5
8503   (exit $ac_status); }; }; then
8504   ac_cv_header_time=yes
8505 else
8506@@ -15167,7 +15261,7 @@
8507 fi
8508 rm -f conftest.$ac_objext conftest.$ac_ext
8509 fi
8510-echo "$as_me:15170: result: $ac_cv_header_time" >&5
8511+echo "$as_me:15264: result: $ac_cv_header_time" >&5
8512 echo "${ECHO_T}$ac_cv_header_time" >&6
8513 if test $ac_cv_header_time = yes; then
8514
8515@@ -15185,13 +15279,13 @@
8516 ac_compiler_gnu=$ac_cv_c_compiler_gnu
8517 ac_main_return=return
8518
8519-echo "$as_me:15188: checking for an ANSI C-conforming const" >&5
8520+echo "$as_me:15282: checking for an ANSI C-conforming const" >&5
8521 echo $ECHO_N "checking for an ANSI C-conforming const... $ECHO_C" >&6
8522 if test "${ac_cv_c_const+set}" = set; then
8523   echo $ECHO_N "(cached) $ECHO_C" >&6
8524 else
8525   cat >conftest.$ac_ext <<_ACEOF
8526-#line 15194 "configure"
8527+#line 15288 "configure"
8528 #include "confdefs.h"
8529
8530 int
8531@@ -15249,16 +15343,16 @@
8532 }
8533 _ACEOF
8534 rm -f conftest.$ac_objext
8535-if { (eval echo "$as_me:15252: \"$ac_compile\"") >&5
8536+if { (eval echo "$as_me:15346: \"$ac_compile\"") >&5
8537   (eval $ac_compile) 2>&5
8538   ac_status=$?
8539-  echo "$as_me:15255: \$? = $ac_status" >&5
8540+  echo "$as_me:15349: \$? = $ac_status" >&5
8541   (exit $ac_status); } &&
8542          { ac_try='test -s conftest.$ac_objext'
8543-  { (eval echo "$as_me:15258: \"$ac_try\"") >&5
8544+  { (eval echo "$as_me:15352: \"$ac_try\"") >&5
8545   (eval $ac_try) 2>&5
8546   ac_status=$?
8547-  echo "$as_me:15261: \$? = $ac_status" >&5
8548+  echo "$as_me:15355: \$? = $ac_status" >&5
8549   (exit $ac_status); }; }; then
8550   ac_cv_c_const=yes
8551 else
8552@@ -15268,7 +15362,7 @@
8553 fi
8554 rm -f conftest.$ac_objext conftest.$ac_ext
8555 fi
8556-echo "$as_me:15271: result: $ac_cv_c_const" >&5
8557+echo "$as_me:15365: result: $ac_cv_c_const" >&5
8558 echo "${ECHO_T}$ac_cv_c_const" >&6
8559 if test $ac_cv_c_const = no; then
8560
8561@@ -15280,7 +15374,7 @@
8562
8563 ###	Checks for external-data
8564
8565-echo "$as_me:15283: checking if data-only library module links" >&5
8566+echo "$as_me:15377: checking if data-only library module links" >&5
8567 echo $ECHO_N "checking if data-only library module links... $ECHO_C" >&6
8568 if test "${cf_cv_link_dataonly+set}" = set; then
8569   echo $ECHO_N "(cached) $ECHO_C" >&6
8570@@ -15288,20 +15382,20 @@
8571
8572 	rm -f conftest.a
8573 	cat >conftest.$ac_ext <<EOF
8574-#line 15291 "configure"
8575+#line 15385 "configure"
8576 int	testdata[3] = { 123, 456, 789 };
8577 EOF
8578-	if { (eval echo "$as_me:15294: \"$ac_compile\"") >&5
8579+	if { (eval echo "$as_me:15388: \"$ac_compile\"") >&5
8580   (eval $ac_compile) 2>&5
8581   ac_status=$?
8582-  echo "$as_me:15297: \$? = $ac_status" >&5
8583+  echo "$as_me:15391: \$? = $ac_status" >&5
8584   (exit $ac_status); } ; then
8585 		mv conftest.o data.o && \
8586 		( $AR $ARFLAGS conftest.a data.o ) 2>&5 1>/dev/null
8587 	fi
8588 	rm -f conftest.$ac_ext data.o
8589 	cat >conftest.$ac_ext <<EOF
8590-#line 15304 "configure"
8591+#line 15398 "configure"
8592 int	testfunc(void)
8593 {
8594 #if defined(NeXT)
8595@@ -15314,10 +15408,10 @@
8596 #endif
8597 }
8598 EOF
8599-	if { (eval echo "$as_me:15317: \"$ac_compile\"") >&5
8600+	if { (eval echo "$as_me:15411: \"$ac_compile\"") >&5
8601   (eval $ac_compile) 2>&5
8602   ac_status=$?
8603-  echo "$as_me:15320: \$? = $ac_status" >&5
8604+  echo "$as_me:15414: \$? = $ac_status" >&5
8605   (exit $ac_status); }; then
8606 		mv conftest.o func.o && \
8607 		( $AR $ARFLAGS conftest.a func.o ) 2>&5 1>/dev/null
8608@@ -15330,7 +15424,7 @@
8609   cf_cv_link_dataonly=unknown
8610 else
8611   cat >conftest.$ac_ext <<_ACEOF
8612-#line 15333 "configure"
8613+#line 15427 "configure"
8614 #include "confdefs.h"
8615
8616 	int main(void)
8617@@ -15341,15 +15435,15 @@
8618
8619 _ACEOF
8620 rm -f conftest$ac_exeext
8621-if { (eval echo "$as_me:15344: \"$ac_link\"") >&5
8622+if { (eval echo "$as_me:15438: \"$ac_link\"") >&5
8623   (eval $ac_link) 2>&5
8624   ac_status=$?
8625-  echo "$as_me:15347: \$? = $ac_status" >&5
8626+  echo "$as_me:15441: \$? = $ac_status" >&5
8627   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
8628-  { (eval echo "$as_me:15349: \"$ac_try\"") >&5
8629+  { (eval echo "$as_me:15443: \"$ac_try\"") >&5
8630   (eval $ac_try) 2>&5
8631   ac_status=$?
8632-  echo "$as_me:15352: \$? = $ac_status" >&5
8633+  echo "$as_me:15446: \$? = $ac_status" >&5
8634   (exit $ac_status); }; }; then
8635   cf_cv_link_dataonly=yes
8636 else
8637@@ -15364,7 +15458,7 @@
8638
8639 fi
8640
8641-echo "$as_me:15367: result: $cf_cv_link_dataonly" >&5
8642+echo "$as_me:15461: result: $cf_cv_link_dataonly" >&5
8643 echo "${ECHO_T}$cf_cv_link_dataonly" >&6
8644
8645 if test "$cf_cv_link_dataonly" = no ; then
8646@@ -15383,23 +15477,23 @@
8647
8648 do
8649 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
8650-echo "$as_me:15386: checking for $ac_header" >&5
8651+echo "$as_me:15480: checking for $ac_header" >&5
8652 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
8653 if eval "test \"\${$as_ac_Header+set}\" = set"; then
8654   echo $ECHO_N "(cached) $ECHO_C" >&6
8655 else
8656   cat >conftest.$ac_ext <<_ACEOF
8657-#line 15392 "configure"
8658+#line 15486 "configure"
8659 #include "confdefs.h"
8660 #include <$ac_header>
8661 _ACEOF
8662-if { (eval echo "$as_me:15396: \"$ac_cpp conftest.$ac_ext\"") >&5
8663+if { (eval echo "$as_me:15490: \"$ac_cpp conftest.$ac_ext\"") >&5
8664   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
8665   ac_status=$?
8666   egrep -v '^ *\+' conftest.er1 >conftest.err
8667   rm -f conftest.er1
8668   cat conftest.err >&5
8669-  echo "$as_me:15402: \$? = $ac_status" >&5
8670+  echo "$as_me:15496: \$? = $ac_status" >&5
8671   (exit $ac_status); } >/dev/null; then
8672   if test -s conftest.err; then
8673     ac_cpp_err=$ac_c_preproc_warn_flag
8674@@ -15418,7 +15512,7 @@
8675 fi
8676 rm -f conftest.err conftest.$ac_ext
8677 fi
8678-echo "$as_me:15421: result: `eval echo '${'$as_ac_Header'}'`" >&5
8679+echo "$as_me:15515: result: `eval echo '${'$as_ac_Header'}'`" >&5
8680 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
8681 if test `eval echo '${'$as_ac_Header'}'` = yes; then
8682   cat >>confdefs.h <<EOF
8683@@ -15428,7 +15522,7 @@
8684 fi
8685 done
8686
8687-echo "$as_me:15431: checking for working mkstemp" >&5
8688+echo "$as_me:15525: checking for working mkstemp" >&5
8689 echo $ECHO_N "checking for working mkstemp... $ECHO_C" >&6
8690 if test "${cf_cv_func_mkstemp+set}" = set; then
8691   echo $ECHO_N "(cached) $ECHO_C" >&6
8692@@ -15439,7 +15533,7 @@
8693   cf_cv_func_mkstemp=maybe
8694 else
8695   cat >conftest.$ac_ext <<_ACEOF
8696-#line 15442 "configure"
8697+#line 15536 "configure"
8698 #include "confdefs.h"
8699
8700 #include <sys/types.h>
8701@@ -15480,15 +15574,15 @@
8702
8703 _ACEOF
8704 rm -f conftest$ac_exeext
8705-if { (eval echo "$as_me:15483: \"$ac_link\"") >&5
8706+if { (eval echo "$as_me:15577: \"$ac_link\"") >&5
8707   (eval $ac_link) 2>&5
8708   ac_status=$?
8709-  echo "$as_me:15486: \$? = $ac_status" >&5
8710+  echo "$as_me:15580: \$? = $ac_status" >&5
8711   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
8712-  { (eval echo "$as_me:15488: \"$ac_try\"") >&5
8713+  { (eval echo "$as_me:15582: \"$ac_try\"") >&5
8714   (eval $ac_try) 2>&5
8715   ac_status=$?
8716-  echo "$as_me:15491: \$? = $ac_status" >&5
8717+  echo "$as_me:15585: \$? = $ac_status" >&5
8718   (exit $ac_status); }; }; then
8719   cf_cv_func_mkstemp=yes
8720
8721@@ -15503,16 +15597,16 @@
8722 fi
8723
8724 fi
8725-echo "$as_me:15506: result: $cf_cv_func_mkstemp" >&5
8726+echo "$as_me:15600: result: $cf_cv_func_mkstemp" >&5
8727 echo "${ECHO_T}$cf_cv_func_mkstemp" >&6
8728 if test "x$cf_cv_func_mkstemp" = xmaybe ; then
8729-	echo "$as_me:15509: checking for mkstemp" >&5
8730+	echo "$as_me:15603: checking for mkstemp" >&5
8731 echo $ECHO_N "checking for mkstemp... $ECHO_C" >&6
8732 if test "${ac_cv_func_mkstemp+set}" = set; then
8733   echo $ECHO_N "(cached) $ECHO_C" >&6
8734 else
8735   cat >conftest.$ac_ext <<_ACEOF
8736-#line 15515 "configure"
8737+#line 15609 "configure"
8738 #include "confdefs.h"
8739 #define mkstemp autoconf_temporary
8740 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
8741@@ -15543,16 +15637,16 @@
8742 }
8743 _ACEOF
8744 rm -f conftest.$ac_objext conftest$ac_exeext
8745-if { (eval echo "$as_me:15546: \"$ac_link\"") >&5
8746+if { (eval echo "$as_me:15640: \"$ac_link\"") >&5
8747   (eval $ac_link) 2>&5
8748   ac_status=$?
8749-  echo "$as_me:15549: \$? = $ac_status" >&5
8750+  echo "$as_me:15643: \$? = $ac_status" >&5
8751   (exit $ac_status); } &&
8752          { ac_try='test -s conftest$ac_exeext'
8753-  { (eval echo "$as_me:15552: \"$ac_try\"") >&5
8754+  { (eval echo "$as_me:15646: \"$ac_try\"") >&5
8755   (eval $ac_try) 2>&5
8756   ac_status=$?
8757-  echo "$as_me:15555: \$? = $ac_status" >&5
8758+  echo "$as_me:15649: \$? = $ac_status" >&5
8759   (exit $ac_status); }; }; then
8760   ac_cv_func_mkstemp=yes
8761 else
8762@@ -15562,7 +15656,7 @@
8763 fi
8764 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
8765 fi
8766-echo "$as_me:15565: result: $ac_cv_func_mkstemp" >&5
8767+echo "$as_me:15659: result: $ac_cv_func_mkstemp" >&5
8768 echo "${ECHO_T}$ac_cv_func_mkstemp" >&6
8769
8770 fi
8771@@ -15586,7 +15680,7 @@
8772 cf_ada_config="#"
8773 # Extract the first word of "$cf_ada_make", so it can be a program name with args.
8774 set dummy $cf_ada_make; ac_word=$2
8775-echo "$as_me:15589: checking for $ac_word" >&5
8776+echo "$as_me:15683: checking for $ac_word" >&5
8777 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
8778 if test "${ac_cv_prog_gnatmake_exists+set}" = set; then
8779   echo $ECHO_N "(cached) $ECHO_C" >&6
8780@@ -15601,7 +15695,7 @@
8781   test -z "$ac_dir" && ac_dir=.
8782   $as_executable_p "$ac_dir/$ac_word" || continue
8783 ac_cv_prog_gnatmake_exists="yes"
8784-echo "$as_me:15604: found $ac_dir/$ac_word" >&5
8785+echo "$as_me:15698: found $ac_dir/$ac_word" >&5
8786 break
8787 done
8788
8789@@ -15610,10 +15704,10 @@
8790 fi
8791 gnatmake_exists=$ac_cv_prog_gnatmake_exists
8792 if test -n "$gnatmake_exists"; then
8793-  echo "$as_me:15613: result: $gnatmake_exists" >&5
8794+  echo "$as_me:15707: result: $gnatmake_exists" >&5
8795 echo "${ECHO_T}$gnatmake_exists" >&6
8796 else
8797-  echo "$as_me:15616: result: no" >&5
8798+  echo "$as_me:15710: result: no" >&5
8799 echo "${ECHO_T}no" >&6
8800 fi
8801
8802@@ -15623,7 +15717,7 @@
8803 else
8804 	# Extract the first word of "gprconfig", so it can be a program name with args.
8805 set dummy gprconfig; ac_word=$2
8806-echo "$as_me:15626: checking for $ac_word" >&5
8807+echo "$as_me:15720: checking for $ac_word" >&5
8808 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
8809 if test "${ac_cv_prog_gprconfig_exists+set}" = set; then
8810   echo $ECHO_N "(cached) $ECHO_C" >&6
8811@@ -15638,7 +15732,7 @@
8812   test -z "$ac_dir" && ac_dir=.
8813   $as_executable_p "$ac_dir/$ac_word" || continue
8814 ac_cv_prog_gprconfig_exists="yes"
8815-echo "$as_me:15641: found $ac_dir/$ac_word" >&5
8816+echo "$as_me:15735: found $ac_dir/$ac_word" >&5
8817 break
8818 done
8819
8820@@ -15647,10 +15741,10 @@
8821 fi
8822 gprconfig_exists=$ac_cv_prog_gprconfig_exists
8823 if test -n "$gprconfig_exists"; then
8824-  echo "$as_me:15650: result: $gprconfig_exists" >&5
8825+  echo "$as_me:15744: result: $gprconfig_exists" >&5
8826 echo "${ECHO_T}$gprconfig_exists" >&6
8827 else
8828-  echo "$as_me:15653: result: no" >&5
8829+  echo "$as_me:15747: result: no" >&5
8830 echo "${ECHO_T}no" >&6
8831 fi
8832
8833@@ -15663,7 +15757,7 @@
8834 			cd conftest.src
8835 			for cf_gprconfig in Ada C
8836 			do
8837-				echo "$as_me:15666: checking for gprconfig name for $cf_gprconfig" >&5
8838+				echo "$as_me:15760: checking for gprconfig name for $cf_gprconfig" >&5
8839 echo $ECHO_N "checking for gprconfig name for $cf_gprconfig... $ECHO_C" >&6
8840 				if test $cf_gprconfig = C
8841 				then
8842@@ -15682,10 +15776,10 @@
8843 				if test -n "$cf_gprconfig_value"
8844 				then
8845 					eval cf_ada_config_$cf_gprconfig=$cf_gprconfig_value
8846-					echo "$as_me:15685: result: $cf_gprconfig_value" >&5
8847+					echo "$as_me:15779: result: $cf_gprconfig_value" >&5
8848 echo "${ECHO_T}$cf_gprconfig_value" >&6
8849 				else
8850-					echo "$as_me:15688: result: missing" >&5
8851+					echo "$as_me:15782: result: missing" >&5
8852 echo "${ECHO_T}missing" >&6
8853 					cf_ada_config="#"
8854 					break
8855@@ -15701,12 +15795,12 @@
8856 	if test "x$cf_ada_config" != "x#"
8857 	then
8858
8859-echo "$as_me:15704: checking for gnat version" >&5
8860+echo "$as_me:15798: checking for gnat version" >&5
8861 echo $ECHO_N "checking for gnat version... $ECHO_C" >&6
8862 cf_gnat_version=`${cf_ada_make:-gnatmake} -v 2>&1 | \
8863 	grep '[0-9].[0-9][0-9]*' |\
8864 	sed -e '2,$d' -e 's/[^0-9 \.]//g' -e 's/^[ ]*//' -e 's/ .*//'`
8865-echo "$as_me:15709: result: $cf_gnat_version" >&5
8866+echo "$as_me:15803: result: $cf_gnat_version" >&5
8867 echo "${ECHO_T}$cf_gnat_version" >&6
8868
8869 case $cf_gnat_version in
8870@@ -15714,7 +15808,7 @@
8871 	cf_cv_prog_gnat_correct=yes
8872 	;;
8873 (*)
8874-	{ echo "$as_me:15717: WARNING: Unsupported GNAT version $cf_gnat_version. We require 3.11 or better. Disabling Ada95 binding." >&5
8875+	{ echo "$as_me:15811: WARNING: Unsupported GNAT version $cf_gnat_version. We require 3.11 or better. Disabling Ada95 binding." >&5
8876 echo "$as_me: WARNING: Unsupported GNAT version $cf_gnat_version. We require 3.11 or better. Disabling Ada95 binding." >&2;}
8877 	cf_cv_prog_gnat_correct=no
8878 	;;
8879@@ -15722,7 +15816,7 @@
8880
8881 		# Extract the first word of "m4", so it can be a program name with args.
8882 set dummy m4; ac_word=$2
8883-echo "$as_me:15725: checking for $ac_word" >&5
8884+echo "$as_me:15819: checking for $ac_word" >&5
8885 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
8886 if test "${ac_cv_prog_M4_exists+set}" = set; then
8887   echo $ECHO_N "(cached) $ECHO_C" >&6
8888@@ -15737,7 +15831,7 @@
8889   test -z "$ac_dir" && ac_dir=.
8890   $as_executable_p "$ac_dir/$ac_word" || continue
8891 ac_cv_prog_M4_exists="yes"
8892-echo "$as_me:15740: found $ac_dir/$ac_word" >&5
8893+echo "$as_me:15834: found $ac_dir/$ac_word" >&5
8894 break
8895 done
8896
8897@@ -15746,10 +15840,10 @@
8898 fi
8899 M4_exists=$ac_cv_prog_M4_exists
8900 if test -n "$M4_exists"; then
8901-  echo "$as_me:15749: result: $M4_exists" >&5
8902+  echo "$as_me:15843: result: $M4_exists" >&5
8903 echo "${ECHO_T}$M4_exists" >&6
8904 else
8905-  echo "$as_me:15752: result: no" >&5
8906+  echo "$as_me:15846: result: no" >&5
8907 echo "${ECHO_T}no" >&6
8908 fi
8909
8910@@ -15758,7 +15852,7 @@
8911 			echo Ada95 binding required program m4 not found. Ada95 binding disabled.
8912 		fi
8913 		if test "$cf_cv_prog_gnat_correct" = yes; then
8914-			echo "$as_me:15761: checking if GNAT works" >&5
8915+			echo "$as_me:15855: checking if GNAT works" >&5
8916 echo $ECHO_N "checking if GNAT works... $ECHO_C" >&6
8917
8918 rm -rf conftest* *~conftest*
8919@@ -15786,7 +15880,7 @@
8920 fi
8921 rm -rf conftest* *~conftest*
8922
8923-			echo "$as_me:15789: result: $cf_cv_prog_gnat_correct" >&5
8924+			echo "$as_me:15883: result: $cf_cv_prog_gnat_correct" >&5
8925 echo "${ECHO_T}$cf_cv_prog_gnat_correct" >&6
8926 		fi
8927 	else
8928@@ -15796,7 +15890,7 @@
8929
8930 	if test	"$cf_cv_prog_gnat_correct" = yes; then
8931
8932-	echo "$as_me:15799: checking optimization options for ADAFLAGS" >&5
8933+	echo "$as_me:15893: checking optimization options for ADAFLAGS" >&5
8934 echo $ECHO_N "checking optimization options for ADAFLAGS... $ECHO_C" >&6
8935 	case "$CFLAGS" in
8936 	(*-g*)
8937@@ -15813,10 +15907,10 @@
8938
8939 		;;
8940 	esac
8941-	echo "$as_me:15816: result: $ADAFLAGS" >&5
8942+	echo "$as_me:15910: result: $ADAFLAGS" >&5
8943 echo "${ECHO_T}$ADAFLAGS" >&6
8944
8945-echo "$as_me:15819: checking if GNATPREP supports -T option" >&5
8946+echo "$as_me:15913: checking if GNATPREP supports -T option" >&5
8947 echo $ECHO_N "checking if GNATPREP supports -T option... $ECHO_C" >&6
8948 if test "${cf_cv_gnatprep_opt_t+set}" = set; then
8949   echo $ECHO_N "(cached) $ECHO_C" >&6
8950@@ -15826,11 +15920,11 @@
8951 gnatprep -T 2>/dev/null >/dev/null && cf_cv_gnatprep_opt_t=yes
8952
8953 fi
8954-echo "$as_me:15829: result: $cf_cv_gnatprep_opt_t" >&5
8955+echo "$as_me:15923: result: $cf_cv_gnatprep_opt_t" >&5
8956 echo "${ECHO_T}$cf_cv_gnatprep_opt_t" >&6
8957 test "$cf_cv_gnatprep_opt_t" = yes && GNATPREP_OPTS="-T $GNATPREP_OPTS"
8958
8959-echo "$as_me:15833: checking if GNAT supports generics" >&5
8960+echo "$as_me:15927: checking if GNAT supports generics" >&5
8961 echo $ECHO_N "checking if GNAT supports generics... $ECHO_C" >&6
8962 case $cf_gnat_version in
8963 (3.[1-9]*|[4-9].*)
8964@@ -15840,7 +15934,7 @@
8965 	cf_gnat_generics=no
8966 	;;
8967 esac
8968-echo "$as_me:15843: result: $cf_gnat_generics" >&5
8969+echo "$as_me:15937: result: $cf_gnat_generics" >&5
8970 echo "${ECHO_T}$cf_gnat_generics" >&6
8971
8972 if test "$cf_gnat_generics" = yes
8973@@ -15852,7 +15946,7 @@
8974 	cf_generic_objects=
8975 fi
8976
8977-echo "$as_me:15855: checking if GNAT supports SIGINT" >&5
8978+echo "$as_me:15949: checking if GNAT supports SIGINT" >&5
8979 echo $ECHO_N "checking if GNAT supports SIGINT... $ECHO_C" >&6
8980 if test "${cf_cv_gnat_sigint+set}" = set; then
8981   echo $ECHO_N "(cached) $ECHO_C" >&6
8982@@ -15900,7 +15994,7 @@
8983 rm -rf conftest* *~conftest*
8984
8985 fi
8986-echo "$as_me:15903: result: $cf_cv_gnat_sigint" >&5
8987+echo "$as_me:15997: result: $cf_cv_gnat_sigint" >&5
8988 echo "${ECHO_T}$cf_cv_gnat_sigint" >&6
8989
8990 if test $cf_cv_gnat_sigint = yes ; then
8991@@ -15913,7 +16007,7 @@
8992 cf_gnat_projects=no
8993
8994 if test "$enable_gnat_projects" != no ; then
8995-echo "$as_me:15916: checking if GNAT supports project files" >&5
8996+echo "$as_me:16010: checking if GNAT supports project files" >&5
8997 echo $ECHO_N "checking if GNAT supports project files... $ECHO_C" >&6
8998 case $cf_gnat_version in
8999 (3.[0-9]*)
9000@@ -15976,15 +16070,15 @@
9001 	esac
9002 	;;
9003 esac
9004-echo "$as_me:15979: result: $cf_gnat_projects" >&5
9005+echo "$as_me:16073: result: $cf_gnat_projects" >&5
9006 echo "${ECHO_T}$cf_gnat_projects" >&6
9007 fi # enable_gnat_projects
9008
9009 if test $cf_gnat_projects = yes
9010 then
9011-	echo "$as_me:15985: checking if GNAT supports libraries" >&5
9012+	echo "$as_me:16079: checking if GNAT supports libraries" >&5
9013 echo $ECHO_N "checking if GNAT supports libraries... $ECHO_C" >&6
9014-	echo "$as_me:15987: result: $cf_gnat_libraries" >&5
9015+	echo "$as_me:16081: result: $cf_gnat_libraries" >&5
9016 echo "${ECHO_T}$cf_gnat_libraries" >&6
9017 fi
9018
9019@@ -16004,7 +16098,7 @@
9020 	USE_GNAT_LIBRARIES="#"
9021 fi
9022
9023-echo "$as_me:16007: checking for ada-compiler" >&5
9024+echo "$as_me:16101: checking for ada-compiler" >&5
9025 echo $ECHO_N "checking for ada-compiler... $ECHO_C" >&6
9026
9027 # Check whether --with-ada-compiler or --without-ada-compiler was given.
9028@@ -16015,12 +16109,12 @@
9029   cf_ada_compiler=gnatmake
9030 fi;
9031
9032-echo "$as_me:16018: result: $cf_ada_compiler" >&5
9033+echo "$as_me:16112: result: $cf_ada_compiler" >&5
9034 echo "${ECHO_T}$cf_ada_compiler" >&6
9035
9036 		cf_ada_package=terminal_interface
9037
9038-echo "$as_me:16023: checking for ada-include" >&5
9039+echo "$as_me:16117: checking for ada-include" >&5
9040 echo $ECHO_N "checking for ada-include... $ECHO_C" >&6
9041
9042 # Check whether --with-ada-include or --without-ada-include was given.
9043@@ -16056,7 +16150,7 @@
9044 	withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%`
9045 	;;
9046 (*)
9047-	{ { echo "$as_me:16059: error: expected a pathname, not \"$withval\"" >&5
9048+	{ { echo "$as_me:16153: error: expected a pathname, not \"$withval\"" >&5
9049 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;}
9050    { (exit 1); exit 1; }; }
9051 	;;
9052@@ -16065,10 +16159,10 @@
9053 fi
9054 eval ADA_INCLUDE="$withval"
9055
9056-echo "$as_me:16068: result: $ADA_INCLUDE" >&5
9057+echo "$as_me:16162: result: $ADA_INCLUDE" >&5
9058 echo "${ECHO_T}$ADA_INCLUDE" >&6
9059
9060-echo "$as_me:16071: checking for ada-objects" >&5
9061+echo "$as_me:16165: checking for ada-objects" >&5
9062 echo $ECHO_N "checking for ada-objects... $ECHO_C" >&6
9063
9064 # Check whether --with-ada-objects or --without-ada-objects was given.
9065@@ -16104,7 +16198,7 @@
9066 	withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%`
9067 	;;
9068 (*)
9069-	{ { echo "$as_me:16107: error: expected a pathname, not \"$withval\"" >&5
9070+	{ { echo "$as_me:16201: error: expected a pathname, not \"$withval\"" >&5
9071 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;}
9072    { (exit 1); exit 1; }; }
9073 	;;
9074@@ -16113,10 +16207,10 @@
9075 fi
9076 eval ADA_OBJECTS="$withval"
9077
9078-echo "$as_me:16116: result: $ADA_OBJECTS" >&5
9079+echo "$as_me:16210: result: $ADA_OBJECTS" >&5
9080 echo "${ECHO_T}$ADA_OBJECTS" >&6
9081
9082-echo "$as_me:16119: checking if an Ada95 shared-library should be built" >&5
9083+echo "$as_me:16213: checking if an Ada95 shared-library should be built" >&5
9084 echo $ECHO_N "checking if an Ada95 shared-library should be built... $ECHO_C" >&6
9085
9086 # Check whether --with-ada-sharedlib or --without-ada-sharedlib was given.
9087@@ -16126,14 +16220,14 @@
9088 else
9089   with_ada_sharedlib=no
9090 fi;
9091-echo "$as_me:16129: result: $with_ada_sharedlib" >&5
9092+echo "$as_me:16223: result: $with_ada_sharedlib" >&5
9093 echo "${ECHO_T}$with_ada_sharedlib" >&6
9094
9095 if test "x$with_ada_sharedlib" != xno
9096 then
9097 	if test "x$cf_gnat_projects" != xyes
9098 	then
9099-		{ echo "$as_me:16136: WARNING: disabling shared-library since GNAT projects are not supported" >&5
9100+		{ echo "$as_me:16230: WARNING: disabling shared-library since GNAT projects are not supported" >&5
9101 echo "$as_me: WARNING: disabling shared-library since GNAT projects are not supported" >&2;}
9102 		with_ada_sharedlib=no
9103 	fi
9104@@ -16151,13 +16245,34 @@
9105 	fi
9106 fi
9107
9108+		# allow the Ada binding to be renamed
9109+
9110+echo "$as_me:16250: checking for ada-libname" >&5
9111+echo $ECHO_N "checking for ada-libname... $ECHO_C" >&6
9112+
9113+# Check whether --with-ada-libname or --without-ada-libname was given.
9114+if test "${with_ada_libname+set}" = set; then
9115+  withval="$with_ada_libname"
9116+  ADA_LIBNAME=$withval
9117+else
9118+  ADA_LIBNAME=AdaCurses
9119+fi;
9120+case "x$ADA_LIBNAME" in
9121+(x|xyes|xno)
9122+	ADA_LIBNAME=AdaCurses
9123+	;;
9124+esac
9125+
9126+echo "$as_me:16266: result: $ADA_LIBNAME" >&5
9127+echo "${ECHO_T}$ADA_LIBNAME" >&6
9128+
9129 	else
9130-		{ { echo "$as_me:16155: error: No usable Ada compiler found" >&5
9131+		{ { echo "$as_me:16270: error: No usable Ada compiler found" >&5
9132 echo "$as_me: error: No usable Ada compiler found" >&2;}
9133    { (exit 1); exit 1; }; }
9134 	fi
9135 else
9136-	{ { echo "$as_me:16160: error: The Ada compiler is needed for this package" >&5
9137+	{ { echo "$as_me:16275: error: The Ada compiler is needed for this package" >&5
9138 echo "$as_me: error: The Ada compiler is needed for this package" >&2;}
9139    { (exit 1); exit 1; }; }
9140 fi
9141@@ -16197,7 +16312,7 @@
9142 fi
9143
9144 ### Build up pieces for makefile rules
9145-echo "$as_me:16200: checking default library suffix" >&5
9146+echo "$as_me:16315: checking default library suffix" >&5
9147 echo $ECHO_N "checking default library suffix... $ECHO_C" >&6
9148
9149 	case $DFT_LWR_MODEL in
9150@@ -16208,10 +16323,10 @@
9151 	(shared)  DFT_ARG_SUFFIX=''   ;;
9152 	esac
9153 	test -n "$LIB_SUFFIX" && DFT_ARG_SUFFIX="${LIB_SUFFIX}${DFT_ARG_SUFFIX}"
9154-echo "$as_me:16211: result: $DFT_ARG_SUFFIX" >&5
9155+echo "$as_me:16326: result: $DFT_ARG_SUFFIX" >&5
9156 echo "${ECHO_T}$DFT_ARG_SUFFIX" >&6
9157
9158-echo "$as_me:16214: checking default library-dependency suffix" >&5
9159+echo "$as_me:16329: checking default library-dependency suffix" >&5
9160 echo $ECHO_N "checking default library-dependency suffix... $ECHO_C" >&6
9161
9162 	case X$DFT_LWR_MODEL in
9163@@ -16269,10 +16384,10 @@
9164 		DFT_LIB_SUFFIX="${LIB_SUFFIX}${EXTRA_SUFFIX}${DFT_LIB_SUFFIX}"
9165 		DFT_DEP_SUFFIX="${LIB_SUFFIX}${EXTRA_SUFFIX}${DFT_DEP_SUFFIX}"
9166 	fi
9167-echo "$as_me:16272: result: $DFT_DEP_SUFFIX" >&5
9168+echo "$as_me:16387: result: $DFT_DEP_SUFFIX" >&5
9169 echo "${ECHO_T}$DFT_DEP_SUFFIX" >&6
9170
9171-echo "$as_me:16275: checking default object directory" >&5
9172+echo "$as_me:16390: checking default object directory" >&5
9173 echo $ECHO_N "checking default object directory... $ECHO_C" >&6
9174
9175 	case $DFT_LWR_MODEL in
9176@@ -16288,7 +16403,7 @@
9177 			DFT_OBJ_SUBDIR='obj_s' ;;
9178 		esac
9179 	esac
9180-echo "$as_me:16291: result: $DFT_OBJ_SUBDIR" >&5
9181+echo "$as_me:16406: result: $DFT_OBJ_SUBDIR" >&5
9182 echo "${ECHO_T}$DFT_OBJ_SUBDIR" >&6
9183
9184 ### Set up low-level terminfo dependencies for makefiles.
9185@@ -16530,7 +16645,7 @@
9186 : ${CONFIG_STATUS=./config.status}
9187 ac_clean_files_save=$ac_clean_files
9188 ac_clean_files="$ac_clean_files $CONFIG_STATUS"
9189-{ echo "$as_me:16533: creating $CONFIG_STATUS" >&5
9190+{ echo "$as_me:16648: creating $CONFIG_STATUS" >&5
9191 echo "$as_me: creating $CONFIG_STATUS" >&6;}
9192 cat >$CONFIG_STATUS <<_ACEOF
9193 #! $SHELL
9194@@ -16662,7 +16777,7 @@
9195 cat >>$CONFIG_STATUS <<EOF
9196 ac_cs_version="\\
9197 config.status
9198-configured by $0, generated by GNU Autoconf 2.52.20190828,
9199+configured by $0, generated by GNU Autoconf 2.52.20190901,
9200   with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
9201
9202 Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001
9203@@ -16706,7 +16821,7 @@
9204     echo "$ac_cs_version"; exit 0 ;;
9205   --he | --h)
9206     # Conflict between --help and --header
9207-    { { echo "$as_me:16709: error: ambiguous option: $1
9208+    { { echo "$as_me:16824: error: ambiguous option: $1
9209 Try \`$0 --help' for more information." >&5
9210 echo "$as_me: error: ambiguous option: $1
9211 Try \`$0 --help' for more information." >&2;}
9212@@ -16725,7 +16840,7 @@
9213     ac_need_defaults=false;;
9214
9215   # This is an error.
9216-  -*) { { echo "$as_me:16728: error: unrecognized option: $1
9217+  -*) { { echo "$as_me:16843: error: unrecognized option: $1
9218 Try \`$0 --help' for more information." >&5
9219 echo "$as_me: error: unrecognized option: $1
9220 Try \`$0 --help' for more information." >&2;}
9221@@ -16744,7 +16859,7 @@
9222 ## Running config.status.  ##
9223 ## ----------------------- ##
9224
9225-This file was extended by $as_me 2.52.20190828, executed with
9226+This file was extended by $as_me 2.52.20190901, executed with
9227   CONFIG_FILES    = $CONFIG_FILES
9228   CONFIG_HEADERS  = $CONFIG_HEADERS
9229   CONFIG_LINKS    = $CONFIG_LINKS
9230@@ -16796,7 +16911,7 @@
9231   "Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;;
9232   "default" ) CONFIG_COMMANDS="$CONFIG_COMMANDS default" ;;
9233   "include/ncurses_cfg.h" ) CONFIG_HEADERS="$CONFIG_HEADERS include/ncurses_cfg.h:include/ncurses_cfg.hin" ;;
9234-  *) { { echo "$as_me:16799: error: invalid argument: $ac_config_target" >&5
9235+  *) { { echo "$as_me:16914: error: invalid argument: $ac_config_target" >&5
9236 echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
9237    { (exit 1); exit 1; }; };;
9238   esac
9239@@ -16999,6 +17114,7 @@
9240 s,@ADA_OBJECTS@,$ADA_OBJECTS,;t t
9241 s,@ADA_SHAREDLIB@,$ADA_SHAREDLIB,;t t
9242 s,@MAKE_ADA_SHAREDLIB@,$MAKE_ADA_SHAREDLIB,;t t
9243+s,@ADA_LIBNAME@,$ADA_LIBNAME,;t t
9244 s,@TINFO_LDFLAGS2@,$TINFO_LDFLAGS2,;t t
9245 s,@TINFO_LIBS@,$TINFO_LIBS,;t t
9246 s,@ACPPFLAGS@,$ACPPFLAGS,;t t
9247@@ -17148,7 +17264,7 @@
9248   esac
9249
9250   if test x"$ac_file" != x-; then
9251-    { echo "$as_me:17151: creating $ac_file" >&5
9252+    { echo "$as_me:17267: creating $ac_file" >&5
9253 echo "$as_me: creating $ac_file" >&6;}
9254     rm -f "$ac_file"
9255   fi
9256@@ -17166,7 +17282,7 @@
9257       -) echo $tmp/stdin ;;
9258       [\\/$]*)
9259          # Absolute (can't be DOS-style, as IFS=:)
9260-         test -f "$f" || { { echo "$as_me:17169: error: cannot find input file: $f" >&5
9261+         test -f "$f" || { { echo "$as_me:17285: error: cannot find input file: $f" >&5
9262 echo "$as_me: error: cannot find input file: $f" >&2;}
9263    { (exit 1); exit 1; }; }
9264          echo $f;;
9265@@ -17179,7 +17295,7 @@
9266            echo $srcdir/$f
9267          else
9268            # /dev/null tree
9269-           { { echo "$as_me:17182: error: cannot find input file: $f" >&5
9270+           { { echo "$as_me:17298: error: cannot find input file: $f" >&5
9271 echo "$as_me: error: cannot find input file: $f" >&2;}
9272    { (exit 1); exit 1; }; }
9273          fi;;
9274@@ -17195,7 +17311,7 @@
9275       if test -n "$ac_seen"; then
9276         ac_used=`grep '@datarootdir@' $ac_item`
9277         if test -z "$ac_used"; then
9278-          { echo "$as_me:17198: WARNING: datarootdir was used implicitly but not set:
9279+          { echo "$as_me:17314: WARNING: datarootdir was used implicitly but not set:
9280 $ac_seen" >&5
9281 echo "$as_me: WARNING: datarootdir was used implicitly but not set:
9282 $ac_seen" >&2;}
9283@@ -17204,7 +17320,7 @@
9284       fi
9285       ac_seen=`grep '${datarootdir}' $ac_item`
9286       if test -n "$ac_seen"; then
9287-        { echo "$as_me:17207: WARNING: datarootdir was used explicitly but not set:
9288+        { echo "$as_me:17323: WARNING: datarootdir was used explicitly but not set:
9289 $ac_seen" >&5
9290 echo "$as_me: WARNING: datarootdir was used explicitly but not set:
9291 $ac_seen" >&2;}
9292@@ -17241,7 +17357,7 @@
9293             ac_init=`egrep '[ 	]*'$ac_name'[ 	]*=' $ac_file`
9294             if test -z "$ac_init"; then
9295               ac_seen=`echo "$ac_seen" |sed -e 's,^,'$ac_file':,'`
9296-              { echo "$as_me:17244: WARNING: Variable $ac_name is used but was not set:
9297+              { echo "$as_me:17360: WARNING: Variable $ac_name is used but was not set:
9298 $ac_seen" >&5
9299 echo "$as_me: WARNING: Variable $ac_name is used but was not set:
9300 $ac_seen" >&2;}
9301@@ -17252,7 +17368,7 @@
9302     egrep -n '@[A-Z_][A-Z_0-9]+@' $ac_file >>$tmp/out
9303     if test -s $tmp/out; then
9304       ac_seen=`sed -e 's,^,'$ac_file':,' < $tmp/out`
9305-      { echo "$as_me:17255: WARNING: Some variables may not be substituted:
9306+      { echo "$as_me:17371: WARNING: Some variables may not be substituted:
9307 $ac_seen" >&5
9308 echo "$as_me: WARNING: Some variables may not be substituted:
9309 $ac_seen" >&2;}
9310@@ -17301,7 +17417,7 @@
9311   * )   ac_file_in=$ac_file.in ;;
9312   esac
9313
9314-  test x"$ac_file" != x- && { echo "$as_me:17304: creating $ac_file" >&5
9315+  test x"$ac_file" != x- && { echo "$as_me:17420: creating $ac_file" >&5
9316 echo "$as_me: creating $ac_file" >&6;}
9317
9318   # First look for the input files in the build tree, otherwise in the
9319@@ -17312,7 +17428,7 @@
9320       -) echo $tmp/stdin ;;
9321       [\\/$]*)
9322          # Absolute (can't be DOS-style, as IFS=:)
9323-         test -f "$f" || { { echo "$as_me:17315: error: cannot find input file: $f" >&5
9324+         test -f "$f" || { { echo "$as_me:17431: error: cannot find input file: $f" >&5
9325 echo "$as_me: error: cannot find input file: $f" >&2;}
9326    { (exit 1); exit 1; }; }
9327          echo $f;;
9328@@ -17325,7 +17441,7 @@
9329            echo $srcdir/$f
9330          else
9331            # /dev/null tree
9332-           { { echo "$as_me:17328: error: cannot find input file: $f" >&5
9333+           { { echo "$as_me:17444: error: cannot find input file: $f" >&5
9334 echo "$as_me: error: cannot find input file: $f" >&2;}
9335    { (exit 1); exit 1; }; }
9336          fi;;
9337@@ -17383,7 +17499,7 @@
9338   rm -f $tmp/in
9339   if test x"$ac_file" != x-; then
9340     if cmp -s $ac_file $tmp/config.h 2>/dev/null; then
9341-      { echo "$as_me:17386: $ac_file is unchanged" >&5
9342+      { echo "$as_me:17502: $ac_file is unchanged" >&5
9343 echo "$as_me: $ac_file is unchanged" >&6;}
9344     else
9345       ac_dir=`$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
9346Index: Ada95/configure.in
9347Prereq:  1.71
9348--- ncurses-6.1-20190831+/Ada95/configure.in	2019-08-31 21:16:49.000000000 +0000
9349+++ ncurses-6.1-20190907/Ada95/configure.in	2019-09-07 22:50:06.000000000 +0000
9350@@ -28,14 +28,14 @@
9351 dnl
9352 dnl Author: Thomas E. Dickey
9353 dnl
9354-dnl $Id: configure.in,v 1.71 2019/08/31 21:16:49 tom Exp $
9355+dnl $Id: configure.in,v 1.72 2019/09/07 22:50:06 tom Exp $
9356 dnl Process this file with autoconf to produce a configure script.
9357 dnl
9358 dnl See https://invisible-island.net/autoconf/ for additional information.
9359 dnl
9360 dnl ---------------------------------------------------------------------------
9361 AC_PREREQ(2.52.20030208)
9362-AC_REVISION($Revision: 1.71 $)
9363+AC_REVISION($Revision: 1.72 $)
9364 AC_INIT(gen/gen.c)
9365 AC_CONFIG_HEADER(include/ncurses_cfg.h:include/ncurses_cfg.hin)
9366
9367@@ -497,6 +497,9 @@
9368 		CF_WITH_ADA_INCLUDE
9369 		CF_WITH_ADA_OBJECTS
9370 		CF_WITH_ADA_SHAREDLIB
9371+
9372+		# allow the Ada binding to be renamed
9373+		CF_WITH_ADA_LIBNAME(AdaCurses)
9374 	else
9375 		AC_MSG_ERROR(No usable Ada compiler found)
9376 	fi
9377Index: Ada95/doc/Makefile.in
9378Prereq:  1.5
9379--- ncurses-6.1-20190831+/Ada95/doc/Makefile.in	2018-01-15 22:12:59.000000000 +0000
9380+++ ncurses-6.1-20190907/Ada95/doc/Makefile.in	2019-09-07 20:21:52.000000000 +0000
9381@@ -1,6 +1,6 @@
9382-# $Id: Makefile.in,v 1.5 2018/01/15 22:12:59 tom Exp $
9383+# $Id: Makefile.in,v 1.6 2019/09/07 20:21:52 tom Exp $
9384 ##############################################################################
9385-# Copyright (c) 2011-2015,2018 Free Software Foundation, Inc.                #
9386+# Copyright (c) 2011-2018,2019 Free Software Foundation, Inc.                #
9387 #                                                                            #
9388 # Permission is hereby granted, free of charge, to any person obtaining a    #
9389 # copy of this software and associated documentation files (the "Software"), #
9390@@ -47,7 +47,7 @@
9391
9392 DFT_ARG_SUFFIX	= @DFT_ARG_SUFFIX@
9393
9394-THIS		= AdaCurses
9395+THIS		= @ADA_LIBNAME@
9396 DOCDIR		= $(DESTDIR)$(datadir)/doc/$(THIS)
9397 MANDIR		= $(DESTDIR)$(mandir)/man1
9398
9399Index: Ada95/gen/adacurses-config.in
9400Prereq:  1.11
9401--- ncurses-6.1-20190831+/Ada95/gen/adacurses-config.in	2016-11-05 20:48:35.000000000 +0000
9402+++ ncurses-6.1-20190907/Ada95/gen/adacurses-config.in	2019-09-07 20:20:52.000000000 +0000
9403@@ -1,5 +1,5 @@
9404 #! /bin/sh
9405-# $Id: adacurses-config.in,v 1.11 2016/11/05 20:48:35 tom Exp $
9406+# $Id: adacurses-config.in,v 1.12 2019/09/07 20:20:52 tom Exp $
9407 ##############################################################################
9408 # Copyright (c) 2007-2012,2016 Free Software Foundation, Inc.                #
9409 #                                                                            #
9410@@ -41,14 +41,14 @@
9411 VERSION=@NCURSES_MAJOR@.@NCURSES_MINOR@.@NCURSES_PATCH@
9412
9413 CFLAGS="-aI$ADA_INCLUDE -aO$ADA_OBJECTS"
9414-LIBS="-L$ADA_OBJECTS -lAdaCurses"
9415+LIBS="-L$ADA_OBJECTS -l@ADA_LIBNAME@"
9416
9417-THIS="adacurses"
9418+THIS="@ADA_LIBNAME@"
9419 THIS_CFG="$THIS@DFT_ARG_SUFFIX@-config"
9420
9421 case "x$1" in
9422 	x--version)
9423-		echo AdaCurses $VERSION
9424+		echo @ADA_LIBNAME@ $VERSION
9425 		;;
9426 	x--cflags)
9427 		echo $CFLAGS
9428Index: Ada95/package/AdaCurses-doc.spec
9429Prereq:  1.5
9430--- ncurses-6.1-20190831+/Ada95/package/AdaCurses-doc.spec	2018-05-26 20:26:20.000000000 +0000
9431+++ ncurses-6.1-20190907/Ada95/package/AdaCurses-doc.spec	2019-09-07 20:37:52.000000000 +0000
9432@@ -3,7 +3,7 @@
9433 %define AppVersion MAJOR.MINOR
9434 %define AppRelease YYYYMMDD
9435 %define AppPackage %{AppProgram}-doc
9436-# $Id: AdaCurses-doc.spec,v 1.5 2018/05/26 20:26:20 tom Exp $
9437+# $Id: AdaCurses-doc.spec,v 1.6 2019/09/07 20:37:52 tom Exp $
9438 Name: %{AppPackage}
9439 Version: %{AppVersion}
9440 Release: %{AppRelease}
9441@@ -41,10 +41,13 @@
9442
9443 %files
9444 %defattr(-,root,root)
9445-%{_datadir}/doc/AdaCurses
9446+%{_datadir}/doc/%{AppProgram}
9447
9448 %changelog
9449 # each patch should add its ChangeLog entries here
9450
9451+* Sat Sep 07 2019 Thomas Dickey
9452+- use AppProgram to replace "AdaCurses" globally
9453+
9454 * Sat Mar 26 2011 Thomas Dickey
9455 - initial version
9456Index: Ada95/package/AdaCurses.spec
9457Prereq:  1.16
9458--- ncurses-6.1-20190831+/Ada95/package/AdaCurses.spec	2017-12-09 20:41:28.000000000 +0000
9459+++ ncurses-6.1-20190907/Ada95/package/AdaCurses.spec	2019-09-08 01:00:18.000000000 +0000
9460@@ -1,8 +1,8 @@
9461-Summary: AdaCurses - Ada95 binding for ncurses
9462+Summary: Ada95 binding for ncurses
9463 %define AppProgram AdaCurses
9464 %define AppVersion MAJOR.MINOR
9465 %define AppRelease YYYYMMDD
9466-# $Id: AdaCurses.spec,v 1.16 2017/12/09 20:41:28 tom Exp $
9467+# $Id: AdaCurses.spec,v 1.19 2019/09/08 01:00:18 tom Exp $
9468 Name: %{AppProgram}
9469 Version: %{AppVersion}
9470 Release: %{AppRelease}
9471@@ -17,13 +17,13 @@
9472 patch-date YYYYMMDD.
9473
9474 In addition to a library, this package installs sample programs in
9475-"bin/AdaCurses" to avoid conflict with other packages.
9476+"bin/%{AppProgram}" to avoid conflict with other packages.
9477 %prep
9478
9479 %define debug_package %{nil}
9480
9481 # http://fedoraproject.org/wiki/EPEL:Packaging_Autoprovides_and_Requires_Filtering
9482-%filter_from_requires /libAdaCurses.so.1/d
9483+%filter_from_requires /lib%{AppProgram}.so.1/d
9484 %filter_setup
9485
9486 %setup -q -n %{AppProgram}-%{AppRelease}
9487@@ -31,6 +31,7 @@
9488 %build
9489
9490 %define ada_libdir %{_prefix}/lib/ada/adalib
9491+%define ada_include %{_prefix}/share/ada/adainclude
9492
9493 INSTALL_PROGRAM='${INSTALL}' \
9494 	./configure \
9495@@ -38,6 +39,8 @@
9496 		--prefix=%{_prefix} \
9497 		--bindir=%{_bindir} \
9498 		--libdir=%{_libdir} \
9499+		--with-ada-include=%{ada_include} \
9500+		--with-ada-objects=%{ada_libdir} \
9501 		--mandir=%{_mandir} \
9502 		--datadir=%{_datadir} \
9503 		--disable-rpath-link \
9504@@ -64,16 +67,18 @@
9505 %defattr(-,root,root)
9506 %{_bindir}/adacurses*-config
9507 %{_bindir}/%{AppProgram}/*
9508-%{_libdir}/libAdaCurses.*
9509-%{ada_libdir}/libAdaCurses.*
9510-%{ada_libdir}/terminal_interface*
9511+%{ada_libdir}/lib%{AppProgram}.*
9512 %{_mandir}/man1/adacurses*-config.1*
9513 %{_datadir}/%{AppProgram}/*
9514-%{_datadir}/ada/adainclude/terminal_interface*
9515+%{ada_include}/terminal_interface*
9516
9517 %changelog
9518 # each patch should add its ChangeLog entries here
9519
9520+* Sat Sep 07 2019 Thomas Dickey
9521+- use AppProgram to replace "AdaCurses" globally
9522+- amend install-paths to work with Fedora30
9523+
9524 * Thu Mar 31 2011 Thomas Dickey
9525 - use --with-shared option for consistency with --with-ada-sharelib
9526 - ensure that MY_DATADIR is set when installing examples
9527Index: Ada95/samples/Makefile.in
9528Prereq:  1.53
9529--- ncurses-6.1-20190831+/Ada95/samples/Makefile.in	2018-11-10 21:53:44.000000000 +0000
9530+++ ncurses-6.1-20190907/Ada95/samples/Makefile.in	2019-09-08 00:01:38.000000000 +0000
9531@@ -1,5 +1,5 @@
9532 ##############################################################################
9533-# Copyright (c) 1998-2015,2018 Free Software Foundation, Inc.                #
9534+# Copyright (c) 1998-2018,2019 Free Software Foundation, Inc.                #
9535 #                                                                            #
9536 # Permission is hereby granted, free of charge, to any person obtaining a    #
9537 # copy of this software and associated documentation files (the "Software"), #
9538@@ -28,7 +28,7 @@
9539 #
9540 #  Author:  Juergen Pfeifer, 1996
9541 #
9542-#  $Id: Makefile.in,v 1.53 2018/11/10 21:53:44 tom Exp $
9543+#  $Id: Makefile.in,v 1.56 2019/09/08 00:01:38 tom Exp $
9544 #
9545 .SUFFIXES:
9546
9547@@ -81,29 +81,31 @@
9548 DATADIR		= $(DESTDIR)$(datadir)
9549 LIBDIR		= $(DESTDIR)$(libdir)
9550
9551-MY_DATADIR	= $(DATADIR)/AdaCurses
9552+MY_DATADIR	= $(DATADIR)/@ADA_LIBNAME@
9553
9554 ################################################################################
9555-ada_srcdir=../src
9556+ada_srcdir	= ../src
9557
9558-LD_FLAGS     = @LD_MODEL@ $(LOCAL_LIBS) @LDFLAGS@ @LIBS@ @LOCAL_LDFLAGS2@ $(LDFLAGS)
9559+LD_FLAGS	= @LD_MODEL@ $(LOCAL_LIBS) @LDFLAGS@ @LIBS@ @LOCAL_LDFLAGS2@ $(LDFLAGS)
9560
9561-ADA          = @cf_ada_compiler@
9562-ADAFLAGS     = @ADAFLAGS@ -I$(srcdir)
9563+ADA		= @cf_ada_compiler@
9564+ADAPREP		= gnatprep
9565+ADAFLAGS	= @ADAFLAGS@ -I$(srcdir)
9566
9567-ADAMAKE      = @cf_ada_make@
9568-ADAMAKEFLAGS = -a \
9569+ADAMAKE		= @cf_ada_make@
9570+ADAMAKEFLAGS	= -a \
9571 	-A$(srcdir) \
9572 	-A$(ada_srcdir) \
9573 	-A$(srcdir)/$(ada_srcdir)
9574
9575-ALIB         = @cf_ada_package@
9576-ABASE        = $(ALIB)-curses
9577+ALIB		= @cf_ada_package@
9578+ABASE		= $(ALIB)-curses
9579+THISLIB		= sample
9580
9581-CARGS        =-cargs $(ADAFLAGS)
9582-LARGS        =-largs -L../lib -lAdaCurses @TEST_ARG2@ $(LD_FLAGS) @TEST_LIBS2@
9583+CARGS		= -cargs $(ADAFLAGS)
9584+LARGS		= -largs -L../lib -l@ADA_LIBNAME@ @TEST_ARG2@ $(LD_FLAGS) @TEST_LIBS2@
9585
9586-PROGS        = tour$x ncurses$x @USE_GNAT_SIGINT@ rain$x
9587+PROGS		= tour$x ncurses$x @USE_GNAT_SIGINT@ rain$x
9588
9589 all ::  $(PROGS)
9590 	@echo made $@
9591@@ -136,13 +138,15 @@
9592 $(MY_DATADIR) :
9593 	mkdir -p $@
9594
9595-ncurses$x :
9596+AUTO_SRC = $(THISLIB)-explanation.adb
9597+
9598+ncurses$x : $(AUTO_SRC)
9599 	$(ADAMAKE) $(ADAMAKEFLAGS) ncurses $(CARGS) $(LARGS)
9600
9601-tour$x :
9602+tour$x : $(AUTO_SRC)
9603 	$(ADAMAKE) $(ADAMAKEFLAGS) tour $(CARGS) $(LARGS)
9604
9605-rain$x :
9606+rain$x : $(AUTO_SRC)
9607 	$(ADAMAKE) $(ADAMAKEFLAGS) rain $(CARGS) $(LARGS)
9608
9609 mostlyclean:
9610@@ -150,10 +154,15 @@
9611
9612 clean :: mostlyclean
9613 	rm -f *.o *.ali b_t*.* *.s $(PROGS) a.out core b_*_test.c *.xr[bs] \
9614-	trace screendump b~*.ad[bs]
9615+	rm -f $(AUTO_SRC)
9616+	rm -f trace screendump b~*.ad[bs]
9617
9618 distclean :: clean
9619 	rm -f Makefile
9620
9621 realclean :: distclean
9622 	@echo made $@
9623+
9624+$(THISLIB)-explanation.adb : $(srcdir)/$(THISLIB)-explanation.adb_p
9625+	rm -f $@
9626+	$(ADAPREP) -DTHIS_DATADIR=\"$(DATADIR)\" @GNATPREP_OPTS@ $(srcdir)/$(THISLIB)-explanation.adb_p $@
9627Index: Ada95/samples/sample-explanation.adb_p
9628--- /dev/null	2019-09-07 15:33:13.780000000 +0000
9629+++ ncurses-6.1-20190907/Ada95/samples/sample-explanation.adb_p	2019-09-08 00:14:54.000000000 +0000
9630@@ -0,0 +1,441 @@
9631+------------------------------------------------------------------------------
9632+--                                                                          --
9633+--                       GNAT ncurses Binding Samples                       --
9634+--                                                                          --
9635+--                           Sample.Explanation                             --
9636+--                                                                          --
9637+--                                 B O D Y                                  --
9638+--                                                                          --
9639+------------------------------------------------------------------------------
9640+-- Copyright (c) 1998-2014,2019 Free Software Foundation, Inc.              --
9641+--                                                                          --
9642+-- Permission is hereby granted, free of charge, to any person obtaining a  --
9643+-- copy of this software and associated documentation files (the            --
9644+-- "Software"), to deal in the Software without restriction, including      --
9645+-- without limitation the rights to use, copy, modify, merge, publish,      --
9646+-- distribute, distribute with modifications, sublicense, and/or sell       --
9647+-- copies of the Software, and to permit persons to whom the Software is    --
9648+-- furnished to do so, subject to the following conditions:                 --
9649+--                                                                          --
9650+-- The above copyright notice and this permission notice shall be included  --
9651+-- in all copies or substantial portions of the Software.                   --
9652+--                                                                          --
9653+-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  --
9654+-- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               --
9655+-- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   --
9656+-- IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   --
9657+-- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    --
9658+-- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    --
9659+-- THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               --
9660+--                                                                          --
9661+-- Except as contained in this notice, the name(s) of the above copyright   --
9662+-- holders shall not be used in advertising or otherwise to promote the     --
9663+-- sale, use or other dealings in this Software without prior written       --
9664+-- authorization.                                                           --
9665+------------------------------------------------------------------------------
9666+--  Author:  Juergen Pfeifer, 1996
9667+--  Version Control
9668+--  $Revision: 1.4 $
9669+--  $Date: 2019/09/08 00:14:54 $
9670+--  Binding Version 01.00
9671+------------------------------------------------------------------------------
9672+--  Poor mans help system. This scans a sequential file for key lines and
9673+--  then reads the lines up to the next key. Those lines are presented in
9674+--  a window as help or explanation.
9675+--
9676+with Ada.Text_IO; use Ada.Text_IO;
9677+with Ada.Unchecked_Deallocation;
9678+with Terminal_Interface.Curses; use Terminal_Interface.Curses;
9679+with Terminal_Interface.Curses.Panels; use Terminal_Interface.Curses.Panels;
9680+
9681+with Sample.Keyboard_Handler; use Sample.Keyboard_Handler;
9682+with Sample.Manifest; use Sample.Manifest;
9683+with Sample.Function_Key_Setting; use Sample.Function_Key_Setting;
9684+with Sample.Helpers; use Sample.Helpers;
9685+
9686+package body Sample.Explanation is
9687+
9688+   Help_Keys : constant String := "HELPKEYS";
9689+   In_Help   : constant String := "INHELP";
9690+
9691+   File_Name : constant String := "explain.txt";
9692+   F : File_Type;
9693+
9694+   type Help_Line;
9695+   type Help_Line_Access is access Help_Line;
9696+   pragma Controlled (Help_Line_Access);
9697+   type String_Access is access String;
9698+   pragma Controlled (String_Access);
9699+
9700+   type Help_Line is
9701+      record
9702+         Prev, Next : Help_Line_Access;
9703+         Line : String_Access;
9704+      end record;
9705+
9706+   procedure Explain (Key : String;
9707+                      Win : Window);
9708+
9709+   procedure Release_String is
9710+     new Ada.Unchecked_Deallocation (String,
9711+                                     String_Access);
9712+   procedure Release_Help_Line is
9713+     new Ada.Unchecked_Deallocation (Help_Line,
9714+                                     Help_Line_Access);
9715+
9716+   function Search (Key : String) return Help_Line_Access;
9717+   procedure Release_Help (Root : in out Help_Line_Access);
9718+
9719+   function Check_File (Name : String) return Boolean;
9720+
9721+   procedure Explain (Key : String)
9722+   is
9723+   begin
9724+      Explain (Key, Null_Window);
9725+   end Explain;
9726+
9727+   procedure Explain (Key : String;
9728+                      Win : Window)
9729+   is
9730+      --  Retrieve the text associated with this key and display it in this
9731+      --  window. If no window argument is passed, the routine will create
9732+      --  a temporary window and use it.
9733+
9734+      function Filter_Key return Real_Key_Code;
9735+      procedure Unknown_Key;
9736+      procedure Redo;
9737+      procedure To_Window (C   : in out Help_Line_Access;
9738+                          More : in out Boolean);
9739+
9740+      Frame : Window := Null_Window;
9741+
9742+      W : Window := Win;
9743+      K : Real_Key_Code;
9744+      P : Panel;
9745+
9746+      Height   : Line_Count;
9747+      Width    : Column_Count;
9748+      Help     : Help_Line_Access := Search (Key);
9749+      Current  : Help_Line_Access;
9750+      Top_Line : Help_Line_Access;
9751+
9752+      Has_More : Boolean := True;
9753+
9754+      procedure Unknown_Key
9755+      is
9756+      begin
9757+         Add (W, "Help message with ID ");
9758+         Add (W, Key);
9759+         Add (W, " not found.");
9760+         Add (W, Character'Val (10));
9761+         Add (W, "Press the Function key labeled 'Quit' key to continue.");
9762+      end Unknown_Key;
9763+
9764+      procedure Redo
9765+      is
9766+         H : Help_Line_Access := Top_Line;
9767+      begin
9768+         if Top_Line /= null then
9769+            for L in 0 .. (Height - 1) loop
9770+               Add (W, L, 0, H.all.Line.all);
9771+               exit when H.all.Next = null;
9772+               H := H.all.Next;
9773+            end loop;
9774+         else
9775+            Unknown_Key;
9776+         end if;
9777+      end Redo;
9778+
9779+      function Filter_Key return Real_Key_Code
9780+      is
9781+         K : Real_Key_Code;
9782+      begin
9783+         loop
9784+            K := Get_Key (W);
9785+            if K in Special_Key_Code'Range then
9786+               case K is
9787+                  when HELP_CODE =>
9788+                     if not Find_Context (In_Help) then
9789+                        Push_Environment (In_Help, False);
9790+                        Explain (In_Help, W);
9791+                        Pop_Environment;
9792+                        Redo;
9793+                     end if;
9794+                  when EXPLAIN_CODE =>
9795+                     if not Find_Context (Help_Keys) then
9796+                        Push_Environment (Help_Keys, False);
9797+                        Explain (Help_Keys, W);
9798+                        Pop_Environment;
9799+                        Redo;
9800+                     end if;
9801+                  when others => exit;
9802+               end case;
9803+            else
9804+               exit;
9805+            end if;
9806+         end loop;
9807+         return K;
9808+      end Filter_Key;
9809+
9810+      procedure To_Window (C   : in out Help_Line_Access;
9811+                          More : in out Boolean)
9812+      is
9813+         L : Line_Position := 0;
9814+      begin
9815+         loop
9816+            Add (W, L, 0, C.all.Line.all);
9817+            L := L + 1;
9818+            exit when C.all.Next = null or else L = Height;
9819+            C := C.all.Next;
9820+         end loop;
9821+         if C.all.Next /= null then
9822+            pragma Assert (L = Height);
9823+            More := True;
9824+         else
9825+            More := False;
9826+         end if;
9827+      end To_Window;
9828+
9829+   begin
9830+      if W = Null_Window then
9831+         Push_Environment ("HELP");
9832+         Default_Labels;
9833+         Frame := New_Window (Lines - 2, Columns, 0, 0);
9834+         if Has_Colors then
9835+            Set_Background (Win => Frame,
9836+                            Ch  => (Ch    => ' ',
9837+                                    Color => Help_Color,
9838+                                    Attr  => Normal_Video));
9839+            Set_Character_Attributes (Win   => Frame,
9840+                                      Attr  => Normal_Video,
9841+                                      Color => Help_Color);
9842+            Erase (Frame);
9843+         end if;
9844+         Box (Frame);
9845+         Set_Character_Attributes (Frame, (Reverse_Video => True,
9846+                                           others        => False));
9847+         Add (Frame, Lines - 3, 2, "Cursor Up/Down scrolls");
9848+         Set_Character_Attributes (Frame); -- Back to default.
9849+         Window_Title (Frame, "Explanation");
9850+         W := Derived_Window (Frame, Lines - 4, Columns - 2, 1, 1);
9851+         Refresh_Without_Update (Frame);
9852+         Get_Size (W, Height, Width);
9853+         Set_Meta_Mode (W);
9854+         Set_KeyPad_Mode (W);
9855+         Allow_Scrolling (W, True);
9856+         Set_Echo_Mode (False);
9857+         P := Create (Frame);
9858+         Top (P);
9859+         Update_Panels;
9860+      else
9861+         Clear (W);
9862+         Refresh_Without_Update (W);
9863+      end if;
9864+
9865+      Current := Help; Top_Line := Help;
9866+
9867+      if null = Help then
9868+         Unknown_Key;
9869+         loop
9870+            K := Filter_Key;
9871+            exit when K = QUIT_CODE;
9872+         end loop;
9873+      else
9874+         To_Window (Current, Has_More);
9875+         if Has_More then
9876+            --  This means there are more lines available, so we have to go
9877+            --  into a scroll manager.
9878+            loop
9879+               K := Filter_Key;
9880+               if K in Special_Key_Code'Range then
9881+                  case K is
9882+                     when Key_Cursor_Down =>
9883+                        if Current.all.Next /= null then
9884+                           Move_Cursor (W, Height - 1, 0);
9885+                           Scroll (W, 1);
9886+                           Current := Current.all.Next;
9887+                           Top_Line := Top_Line.all.Next;
9888+                           Add (W, Current.all.Line.all);
9889+                        end if;
9890+                     when Key_Cursor_Up =>
9891+                        if Top_Line.all.Prev /= null then
9892+                           Move_Cursor (W, 0, 0);
9893+                           Scroll (W, -1);
9894+                           Top_Line := Top_Line.all.Prev;
9895+                           Current := Current.all.Prev;
9896+                           Add (W, Top_Line.all.Line.all);
9897+                        end if;
9898+                     when QUIT_CODE => exit;
9899+                        when others => null;
9900+                  end case;
9901+               end if;
9902+            end loop;
9903+         else
9904+            loop
9905+               K := Filter_Key;
9906+               exit when K = QUIT_CODE;
9907+            end loop;
9908+         end if;
9909+      end if;
9910+
9911+      Clear (W);
9912+
9913+      if Frame /= Null_Window then
9914+         Clear (Frame);
9915+         Delete (P);
9916+         Delete (W);
9917+         Delete (Frame);
9918+         Pop_Environment;
9919+      end if;
9920+
9921+      Update_Panels;
9922+      Update_Screen;
9923+
9924+      Release_Help (Help);
9925+
9926+   end Explain;
9927+
9928+   function Search (Key : String) return Help_Line_Access
9929+   is
9930+      Last    : Natural;
9931+      Buffer  : String (1 .. 256);
9932+      Root    : Help_Line_Access := null;
9933+      Current : Help_Line_Access;
9934+      Tail    : Help_Line_Access := null;
9935+
9936+      function Next_Line return Boolean;
9937+
9938+      function Next_Line return Boolean
9939+      is
9940+         H_End : constant String := "#END";
9941+      begin
9942+         Get_Line (F, Buffer, Last);
9943+         if Last = H_End'Length and then H_End = Buffer (1 .. Last) then
9944+            return False;
9945+         else
9946+            return True;
9947+         end if;
9948+      end Next_Line;
9949+   begin
9950+      Reset (F);
9951+      Outer :
9952+      loop
9953+         exit Outer when not Next_Line;
9954+         if Last = (1 + Key'Length)
9955+           and then Key = Buffer (2 .. Last)
9956+           and then Buffer (1) = '#'
9957+         then
9958+            loop
9959+               exit when not Next_Line;
9960+               exit when Buffer (1) = '#';
9961+               Current := new Help_Line'(null, null,
9962+                                         new String'(Buffer (1 .. Last)));
9963+               if Tail = null then
9964+                  Release_Help (Root);
9965+                  Root := Current;
9966+               else
9967+                  Tail.all.Next := Current;
9968+                  Current.all.Prev := Tail;
9969+               end if;
9970+               Tail := Current;
9971+            end loop;
9972+            exit Outer;
9973+         end if;
9974+      end loop Outer;
9975+      return Root;
9976+   end Search;
9977+
9978+   procedure Release_Help (Root : in out Help_Line_Access)
9979+   is
9980+      Next : Help_Line_Access;
9981+   begin
9982+      loop
9983+         exit when Root = null;
9984+         Next := Root.all.Next;
9985+         Release_String (Root.all.Line);
9986+         Release_Help_Line (Root);
9987+         Root := Next;
9988+      end loop;
9989+   end Release_Help;
9990+
9991+   procedure Explain_Context
9992+   is
9993+   begin
9994+      Explain (Context);
9995+   end Explain_Context;
9996+
9997+   procedure Notepad (Key : String)
9998+   is
9999+      H : constant Help_Line_Access := Search (Key);
10000+      T : Help_Line_Access := H;
10001+      N : Line_Count := 1;
10002+      L : Line_Position := 0;
10003+      W : Window;
10004+      P : Panel;
10005+   begin
10006+      if H /= null then
10007+         loop
10008+            T := T.all.Next;
10009+            exit when T = null;
10010+            N := N + 1;
10011+         end loop;
10012+         W := New_Window (N + 2, Columns, Lines - N - 2, 0);
10013+         if Has_Colors then
10014+            Set_Background (Win => W,
10015+                            Ch  => (Ch    => ' ',
10016+                                    Color => Notepad_Color,
10017+                                    Attr  => Normal_Video));
10018+            Set_Character_Attributes (Win   => W,
10019+                                      Attr  => Normal_Video,
10020+                                      Color => Notepad_Color);
10021+            Erase (W);
10022+         end if;
10023+         Box (W);
10024+         Window_Title (W, "Notepad");
10025+         P := New_Panel (W);
10026+         T := H;
10027+         loop
10028+            Add (W, L + 1, 1, T.all.Line.all, Integer (Columns - 2));
10029+            L := L + 1;
10030+            T := T.all.Next;
10031+            exit when T = null;
10032+         end loop;
10033+         T := H;
10034+         Release_Help (T);
10035+         Refresh_Without_Update (W);
10036+         Notepad_To_Context (P);
10037+      end if;
10038+   end Notepad;
10039+
10040+   function Check_File (Name : String) return Boolean is
10041+      The_File : File_Type;
10042+   begin
10043+      Open (The_File, In_File, Name);
10044+      Close (The_File);
10045+      return True;
10046+   exception
10047+      when Name_Error =>
10048+         return False;
10049+   end Check_File;
10050+
10051+begin
10052+   if Check_File
10053+      ($THIS_DATADIR
10054+       & File_Name)
10055+   then
10056+      Open (F, In_File,
10057+            $THIS_DATADIR
10058+            & File_Name);
10059+   elsif Check_File (File_Name) then
10060+      Open (F, In_File, File_Name);
10061+   else
10062+      Put_Line (Standard_Error,
10063+                "The file "
10064+                & File_Name
10065+                & " was not found in "
10066+                & $THIS_DATADIR
10067+                );
10068+      raise Name_Error;
10069+   end if;
10070+end Sample.Explanation;
10071+--  vile:adamode
10072Index: Ada95/src/Makefile.in
10073Prereq:  1.84
10074--- ncurses-6.1-20190831+/Ada95/src/Makefile.in	2019-08-31 15:32:01.000000000 +0000
10075+++ ncurses-6.1-20190907/Ada95/src/Makefile.in	2019-09-07 20:53:06.000000000 +0000
10076@@ -28,7 +28,7 @@
10077 #
10078 #  Author:  Juergen Pfeifer, 1996
10079 #
10080-#  $Id: Makefile.in,v 1.84 2019/08/31 15:32:01 tom Exp $
10081+#  $Id: Makefile.in,v 1.87 2019/09/07 20:53:06 tom Exp $
10082 #
10083 .SUFFIXES:
10084
10085@@ -56,7 +56,6 @@
10086
10087 INSTALL		= @INSTALL@ @INSTALL_OPT_O@
10088 INSTALL_LIB	= @INSTALL@ @INSTALL_LIB@
10089-USE_LIB_SUFFIX	= @USE_LIB_SUFFIX@
10090
10091 AR		= @AR@
10092 ARFLAGS		= @ARFLAGS@
10093@@ -84,14 +83,14 @@
10094 RANLIB		= @RANLIB@
10095
10096 ################################################################################
10097-ADA             = @cf_ada_compiler@
10098+ADA		= @cf_ada_compiler@
10099 ADAPREP		= gnatprep
10100-ADAFLAGS        = @ADAFLAGS@ -I. -I$(srcdir)
10101+ADAFLAGS	= @ADAFLAGS@ -I. -I$(srcdir)
10102
10103-LIB_NAME	= AdaCurses
10104+LIB_NAME	= @ADA_LIBNAME@
10105 SONAME		= @ADA_SHAREDLIB@
10106
10107-GNAT_PROJECT	= AdaCurses.gpr
10108+GNAT_PROJECT	= @ADA_LIBNAME@.gpr
10109
10110 # build/source are the Ada95 tree
10111 BUILD_DIR	= ..
10112@@ -100,8 +99,8 @@
10113 BUILD_DIR_LIB	= $(BUILD_DIR)/lib
10114 SOURCE_DIR_SRC	= $(SOURCE_DIR)/src
10115
10116-ADAMAKE         = @cf_ada_make@
10117-ADAMAKEFLAGS    = \
10118+ADAMAKE		= @cf_ada_make@
10119+ADAMAKEFLAGS	= \
10120 	-P$(GNAT_PROJECT) \
10121 	-XBUILD_DIR=`cd $(BUILD_DIR);pwd` \
10122 	-XSOURCE_DIR=`cd $(SOURCE_DIR);pwd` \
10123@@ -214,7 +213,7 @@
10124 	rm -f $(ABASE)-trace.adb
10125
10126 distclean :: clean
10127-	rm -f Makefile
10128+	rm -f Makefile library.gpr
10129
10130 realclean :: distclean
10131
10132@@ -273,7 +272,7 @@
10133 @USE_GNAT_PROJECTS@		$(STATIC_DIRS)
10134 @USE_GNAT_PROJECTS@	@cf_ada_config@gprconfig --batch --config=Ada --config=C,,,,@cf_ada_config_C@
10135 @USE_GNAT_PROJECTS@	-rm -f $(GNAT_PROJECT)
10136-@USE_GNAT_PROJECTS@	$(SHELL) $(srcdir)/library-cfg.sh static "$(USE_LIB_SUFFIX)" $(srcdir)/library.gpr $(CFLAGS_NORMAL) >$(GNAT_PROJECT)
10137+@USE_GNAT_PROJECTS@	$(SHELL) $(srcdir)/library-cfg.sh static $(srcdir)/library.gpr $(CFLAGS_NORMAL) >$(GNAT_PROJECT)
10138 @USE_GNAT_PROJECTS@	@echo "Using GNAT Project:"
10139 @USE_GNAT_PROJECTS@	@-$(SHELL) -c "diff -u $(srcdir)/library.gpr $(GNAT_PROJECT); exit 0"
10140 @USE_GNAT_PROJECTS@	$(ADAMAKE) $(ADAMAKEFLAGS) -XLIB_KIND=static
10141@@ -311,7 +310,7 @@
10142 @MAKE_ADA_SHAREDLIB@	cp $(SHARED_OBJS) $(BUILD_DIR)/dynamic-obj/
10143 @MAKE_ADA_SHAREDLIB@	@cf_ada_config@gprconfig --batch --config=Ada --config=C,,,,@cf_ada_config_C@
10144 @MAKE_ADA_SHAREDLIB@	-rm -f $(GNAT_PROJECT)
10145-@MAKE_ADA_SHAREDLIB@	$(SHELL) $(srcdir)/library-cfg.sh dynamic "$(USE_LIB_SUFFIX)" $(srcdir)/library.gpr $(CFLAGS_SHARED) >$(GNAT_PROJECT)
10146+@MAKE_ADA_SHAREDLIB@	$(SHELL) $(srcdir)/library-cfg.sh dynamic $(srcdir)/library.gpr $(CFLAGS_SHARED) >$(GNAT_PROJECT)
10147 @MAKE_ADA_SHAREDLIB@	@echo "Making Ada shared-lib:"
10148 @MAKE_ADA_SHAREDLIB@	@-$(SHELL) -c "diff -u $(srcdir)/library.gpr $(GNAT_PROJECT); exit 0"
10149 @MAKE_ADA_SHAREDLIB@	$(ADAMAKE) $(ADAMAKEFLAGS) -XLIB_KIND=dynamic
10150Index: Ada95/src/library-cfg.sh
10151Prereq:  1.5
10152--- ncurses-6.1-20190831+/Ada95/src/library-cfg.sh	2019-08-31 15:32:51.000000000 +0000
10153+++ ncurses-6.1-20190907/Ada95/src/library-cfg.sh	2019-09-07 20:27:26.000000000 +0000
10154@@ -27,7 +27,7 @@
10155 # authorization.                                                             #
10156 ##############################################################################
10157 #
10158-# $Id: library-cfg.sh,v 1.5 2019/08/31 15:32:51 tom Exp $
10159+# $Id: library-cfg.sh,v 1.6 2019/09/07 20:27:26 tom Exp $
10160 #
10161 # Work around incompatible behavior introduced with gnat6, which causes
10162 # gnatmake to attempt to compile all of the C objects which might be part of
10163@@ -35,8 +35,6 @@
10164 # by making a copy of the project file with that information filled in).
10165 model=$1
10166 shift 1
10167-suffix=$1
10168-shift 1
10169 input=$1
10170 shift 1
10171 param=
10172@@ -61,10 +59,6 @@
10173 cat >$SCRIPT <<EOF
10174 /for Library_Options use /{
10175 	s,-- ,$SHARE,
10176-	s,-lform,-lform$suffix,g
10177-	s,-lmenu,-lmenu$suffix,g
10178-	s,-lpanel,-lpanel$suffix,g
10179-	s,-lncurses,-lncurses$suffix,g
10180 }
10181 /for Default_Switches ("C") use/{
10182 	s,-- ,,
10183Index: Ada95/src/library.gpr.in
10184--- /dev/null	2019-09-07 15:33:13.780000000 +0000
10185+++ ncurses-6.1-20190907/Ada95/src/library.gpr.in	2019-09-07 20:29:02.000000000 +0000
10186@@ -0,0 +1,57 @@
10187+------------------------------------------------------------------------------
10188+-- Copyright (c) 2010-2018,2019 Free Software Foundation, Inc.              --
10189+--                                                                          --
10190+-- Permission is hereby granted, free of charge, to any person obtaining a  --
10191+-- copy of this software and associated documentation files (the            --
10192+-- "Software"), to deal in the Software without restriction, including      --
10193+-- without limitation the rights to use, copy, modify, merge, publish,      --
10194+-- distribute, distribute with modifications, sublicense, and/or sell       --
10195+-- copies of the Software, and to permit persons to whom the Software is    --
10196+-- furnished to do so, subject to the following conditions:                 --
10197+--                                                                          --
10198+-- The above copyright notice and this permission notice shall be included  --
10199+-- in all copies or substantial portions of the Software.                   --
10200+--                                                                          --
10201+-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  --
10202+-- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               --
10203+-- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   --
10204+-- IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   --
10205+-- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    --
10206+-- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    --
10207+-- THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               --
10208+--                                                                          --
10209+-- Except as contained in this notice, the name(s) of the above copyright   --
10210+-- holders shall not be used in advertising or otherwise to promote the     --
10211+-- sale, use or other dealings in this Software without prior written       --
10212+-- authorization.                                                           --
10213+------------------------------------------------------------------------------
10214+-- $Id: library.gpr.in,v 1.1 2019/09/07 20:29:02 tom Exp $
10215+-- http://gcc.gnu.org/onlinedocs/gnat_ugn_unw/Library-Projects.html
10216+-- http://www.adaworld.com/debian/debian-ada-policy.html
10217+project AdaCurses is
10218+  Build_Dir := External ("BUILD_DIR");
10219+  Source_Dir := External ("SOURCE_DIR");
10220+  Source_Dir2 := External ("SOURCE_DIR2");
10221+  Kind := External ("LIB_KIND");
10222+  for Library_Name use External ("LIB_NAME");
10223+  for Library_Version use External ("SONAME");
10224+
10225+  for Library_Kind use Kind;
10226+  for Library_Dir use Build_Dir & "/lib";
10227+  for Object_Dir use Build_Dir & "/" & Kind & "-obj";
10228+  for Library_ALI_Dir use Build_Dir & "/" & Kind & "-ali";
10229+  for Source_Dirs use (Source_Dir & "/src",
10230+                       Source_Dir2,
10231+                       Build_Dir & "/src");
10232+  -- for Library_Options use ("-lncurses@USE_LIB_SUFFIX@", "-lpanel@USE_LIB_SUFFIX@", "-lmenu@USE_LIB_SUFFIX@", "-lform@USE_LIB_SUFFIX@");
10233+  package Compiler is
10234+     for Default_Switches ("Ada") use
10235+       ("-g",
10236+        "-O2",
10237+        "-gnatafno",
10238+        "-gnatVa",   -- All validity checks
10239+        "-gnatwa");  -- Activate all optional errors
10240+     -- for Default_Switches ("C") use (CFLAGS)
10241+  end Compiler;
10242+  for Languages use ("C", "Ada");
10243+end AdaCurses;
10244Index: INSTALL
10245Prereq:  1.213
10246--- ncurses-6.1-20190831+/INSTALL	2019-06-30 15:28:56.000000000 +0000
10247+++ ncurses-6.1-20190907/INSTALL	2019-09-07 22:44:40.000000000 +0000
10248@@ -25,7 +25,7 @@
10249 -- sale, use or other dealings in this Software without prior written        --
10250 -- authorization.                                                            --
10251 -------------------------------------------------------------------------------
10252--- $Id: INSTALL,v 1.213 2019/06/30 15:28:56 tom Exp $
10253+-- $Id: INSTALL,v 1.214 2019/09/07 22:44:40 tom Exp $
10254 ---------------------------------------------------------------------
10255              How to install Ncurses/Terminfo on your system
10256 ---------------------------------------------------------------------
10257@@ -778,6 +778,9 @@
10258 	Tell where to install the Ada includes (default:
10259 	PREFIX/lib/ada/adainclude)
10260
10261+    --with-ada-libname=NAME
10262+	Override the name of the Ada binding (default: "AdaCurses")
10263+
10264     --with-ada-objects=DIR
10265 	Tell where to install the Ada objects (default:  PREFIX/lib/ada/adalib)
10266
10267Index: MANIFEST
10268--- ncurses-6.1-20190831+/MANIFEST	2019-03-09 23:36:03.000000000 +0000
10269+++ ncurses-6.1-20190907/MANIFEST	2019-09-07 22:39:02.000000000 +0000
10270@@ -94,7 +94,7 @@
10271 ./Ada95/samples/sample-curses_demo-mouse.ads
10272 ./Ada95/samples/sample-curses_demo.adb
10273 ./Ada95/samples/sample-curses_demo.ads
10274-./Ada95/samples/sample-explanation.adb
10275+./Ada95/samples/sample-explanation.adb_p
10276 ./Ada95/samples/sample-explanation.ads
10277 ./Ada95/samples/sample-form_demo-aux.adb
10278 ./Ada95/samples/sample-form_demo-aux.ads
10279@@ -133,7 +133,7 @@
10280 ./Ada95/src/c_varargs_to_ada.c
10281 ./Ada95/src/c_varargs_to_ada.h
10282 ./Ada95/src/library-cfg.sh
10283-./Ada95/src/library.gpr
10284+./Ada95/src/library.gpr.in
10285 ./Ada95/src/modules
10286 ./Ada95/src/ncurses_compat.c
10287 ./Ada95/src/terminal_interface-curses-aux.adb
10288Index: NEWS
10289Prereq:  1.3368
10290--- ncurses-6.1-20190831+/NEWS	2019-08-31 15:56:04.000000000 +0000
10291+++ ncurses-6.1-20190907/NEWS	2019-09-07 22:41:16.000000000 +0000
10292@@ -25,7 +25,7 @@
10293 -- sale, use or other dealings in this Software without prior written        --
10294 -- authorization.                                                            --
10295 -------------------------------------------------------------------------------
10296--- $Id: NEWS,v 1.3368 2019/08/31 15:56:04 tom Exp $
10297+-- $Id: NEWS,v 1.3371 2019/09/07 22:41:16 tom Exp $
10298 -------------------------------------------------------------------------------
10299
10300 This is a log of changes that ncurses has gone through since Zeyd started
10301@@ -45,6 +45,14 @@
10302 Changes through 1.9.9e did not credit all contributions;
10303 it is not possible to add this information.
10304
10305+20190907
10306+	+ add --with-ada-libname option and modify Ada95 configuration to
10307+	  allow renaming the "AdaCurses" library (prompted by proposed changes
10308+	  by Pascal Pignard).
10309+	+ modify configure script to distinguish gcc from icc and clang when
10310+	  the --enable-warnings option is not used, to avoid unnecessary
10311+	  warnings about unrecognized inline options (report by Sven Joachim).
10312+
10313 20190831
10314 	+ build-fixes for configuration using --program-suffix with Ada95,
10315 	  noticed with MacOS but applicable to other platforms without
10316Index: VERSION
10317--- ncurses-6.1-20190831+/VERSION	2019-08-31 13:43:44.000000000 +0000
10318+++ ncurses-6.1-20190907/VERSION	2019-09-07 15:19:35.000000000 +0000
10319@@ -1 +1 @@
10320-5:0:10	6.1	20190831
10321+5:0:10	6.1	20190907
10322Index: aclocal.m4
10323Prereq:  1.876
10324--- ncurses-6.1-20190831+/aclocal.m4	2019-06-30 23:46:29.000000000 +0000
10325+++ ncurses-6.1-20190907/aclocal.m4	2019-09-07 23:00:39.000000000 +0000
10326@@ -28,7 +28,7 @@
10327 dnl
10328 dnl Author: Thomas E. Dickey 1995-on
10329 dnl
10330-dnl $Id: aclocal.m4,v 1.876 2019/06/30 23:46:29 tom Exp $
10331+dnl $Id: aclocal.m4,v 1.880 2019/09/07 23:00:39 tom Exp $
10332 dnl Macros used in NCURSES auto-configuration script.
10333 dnl
10334 dnl These macros are maintained separately from NCURSES.  The copyright on
10335@@ -1601,12 +1601,13 @@
10336 fi
10337 ])dnl
10338 dnl ---------------------------------------------------------------------------
10339-dnl CF_C_INLINE version: 5 updated: 2015/04/18 08:56:57
10340+dnl CF_C_INLINE version: 6 updated: 2019/09/07 13:38:36
10341 dnl -----------
10342 dnl Check if the C compiler supports "inline".
10343 dnl $1 is the name of a shell variable to set if inline is supported
10344 dnl $2 is the threshold for gcc 4.x's option controlling maximum inline size
10345 AC_DEFUN([CF_C_INLINE],[
10346+AC_REQUIRE([CF_GCC_VERSION])
10347 AC_C_INLINE
10348 $1=
10349 if test "$ac_cv_c_inline" != no ; then
10350@@ -2538,9 +2539,10 @@
10351 fi
10352 ])dnl
10353 dnl ---------------------------------------------------------------------------
10354-dnl CF_GCC_VERSION version: 7 updated: 2012/10/18 06:46:33
10355+dnl CF_GCC_VERSION version: 8 updated: 2019/09/07 13:38:36
10356 dnl --------------
10357-dnl Find version of gcc
10358+dnl Find version of gcc, and (because icc/clang pretend to be gcc without being
10359+dnl compatible), attempt to determine if icc/clang is actually used.
10360 AC_DEFUN([CF_GCC_VERSION],[
10361 AC_REQUIRE([AC_PROG_CC])
10362 GCC_VERSION=none
10363@@ -2550,9 +2552,11 @@
10364 	test -z "$GCC_VERSION" && GCC_VERSION=unknown
10365 	AC_MSG_RESULT($GCC_VERSION)
10366 fi
10367+CF_INTEL_COMPILER(GCC,INTEL_COMPILER,CFLAGS)
10368+CF_CLANG_COMPILER(GCC,CLANG_COMPILER,CFLAGS)
10369 ])dnl
10370 dnl ---------------------------------------------------------------------------
10371-dnl CF_GCC_WARNINGS version: 35 updated: 2019/06/16 09:45:01
10372+dnl CF_GCC_WARNINGS version: 36 updated: 2019/09/07 13:38:36
10373 dnl ---------------
10374 dnl Check if the compiler supports useful warning options.  There's a few that
10375 dnl we don't use, simply because they're too noisy:
10376@@ -2574,8 +2578,6 @@
10377 AC_DEFUN([CF_GCC_WARNINGS],
10378 [
10379 AC_REQUIRE([CF_GCC_VERSION])
10380-CF_INTEL_COMPILER(GCC,INTEL_COMPILER,CFLAGS)
10381-CF_CLANG_COMPILER(GCC,CLANG_COMPILER,CFLAGS)
10382 if test "x$have_x" = xyes; then CF_CONST_X_STRING fi
10383 cat > conftest.$ac_ext <<EOF
10384 #line __oline__ "${as_me:-configure}"
10385@@ -7830,6 +7832,27 @@
10386 AC_MSG_RESULT($ADA_INCLUDE)
10387 ])dnl
10388 dnl ---------------------------------------------------------------------------
10389+dnl CF_WITH_ADA_LIBNAME version: 1 updated: 2019/09/07 18:59:41
10390+dnl -------------------
10391+dnl CF_WITH_ADA_LIBNAME
10392+dnl -------------------
10393+dnl Command-line option to specify how to name the resulting Ada library.
10394+dnl $1 = default value
10395+AC_DEFUN([CF_WITH_ADA_LIBNAME],[
10396+AC_MSG_CHECKING(for ada-libname)
10397+AC_ARG_WITH(ada-libname,
10398+   [  --with-ada-libname=XXX  override default Ada library-name],
10399+   ADA_LIBNAME=[$]withval,
10400+   ADA_LIBNAME=$1)
10401+case "x$ADA_LIBNAME" in
10402+(x|xyes|xno)
10403+	ADA_LIBNAME=$1
10404+	;;
10405+esac
10406+AC_SUBST(ADA_LIBNAME)
10407+AC_MSG_RESULT($ADA_LIBNAME)
10408+])dnl
10409+dnl ---------------------------------------------------------------------------
10410 dnl CF_WITH_ADA_OBJECTS version: 2 updated: 2010/06/26 17:35:58
10411 dnl -------------------
10412 dnl Command-line option to specify where Ada objects will install.
10413Index: configure
10414--- ncurses-6.1-20190831+/configure	2019-08-31 16:35:35.000000000 +0000
10415+++ ncurses-6.1-20190907/configure	2019-09-07 20:35:43.000000000 +0000
10416@@ -1,7 +1,7 @@
10417 #! /bin/sh
10418-# From configure.in Revision: 1.688 .
10419+# From configure.in Revision: 1.689 .
10420 # Guess values for system-dependent variables and create Makefiles.
10421-# Generated by Autoconf 2.52.20190828.
10422+# Generated by Autoconf 2.52.20190901.
10423 #
10424 # Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001
10425 # Free Software Foundation, Inc.
10426@@ -714,7 +714,7 @@
10427   --with-rel-version=XXX  override derived release version
10428   --with-abi-version=XXX  override derived ABI version
10429   --with-system-type=XXX  test: override derived host system-type
10430-  --without-ada           suppress check for Ada95, don't build demo
10431+  --without-ada           suppress check for Ada compiler, don't build demo
10432   --without-cxx           do not adjust ncurses bool to match C++
10433   --without-cxx-binding   do not build C++ binding and demo
10434   --disable-db-install    suppress install of terminal database
10435@@ -854,11 +854,12 @@
10436   --disable-macros        test: use functions rather than macros
10437   --with-trace            test: add trace() function to all models of ncurses
10438   --disable-gnat-projects test: disable GNAT projects even if usable
10439-Ada95 Binding Options:
10440+Ada Binding Options:
10441   --with-ada-compiler=CMD specify Ada95 compiler command (default gnatmake)
10442   --with-ada-include=DIR  Ada includes are in DIR (default: PREFIX/share/ada/adainclude)
10443   --with-ada-objects=DIR  Ada objects are in DIR (default: PREFIX/lib/ada/adalib)
10444   --with-ada-sharedlib=soname build shared-library (requires GNAT projects)
10445+  --with-ada-libname=XXX  override default Ada library-name
10446
10447 Some influential environment variables:
10448   CC          C compiler command
10449@@ -931,7 +932,7 @@
10450 running configure, to aid debugging if configure makes a mistake.
10451
10452 It was created by $as_me, which was
10453-generated by GNU Autoconf 2.52.20190828.  Invocation command line was
10454+generated by GNU Autoconf 2.52.20190901.  Invocation command line was
10455
10456   $ $0 $@
10457
10458@@ -1055,7 +1056,7 @@
10459 fi
10460 for ac_site_file in $CONFIG_SITE; do
10461   if test -r "$ac_site_file"; then
10462-    { echo "$as_me:1058: loading site script $ac_site_file" >&5
10463+    { echo "$as_me:1059: loading site script $ac_site_file" >&5
10464 echo "$as_me: loading site script $ac_site_file" >&6;}
10465     cat "$ac_site_file" >&5
10466     . "$ac_site_file"
10467@@ -1066,7 +1067,7 @@
10468   # Some versions of bash will fail to source /dev/null (special
10469   # files actually), so we avoid doing that.
10470   if test -f "$cache_file"; then
10471-    { echo "$as_me:1069: loading cache $cache_file" >&5
10472+    { echo "$as_me:1070: loading cache $cache_file" >&5
10473 echo "$as_me: loading cache $cache_file" >&6;}
10474     case $cache_file in
10475       [\\/]* | ?:[\\/]* ) . $cache_file;;
10476@@ -1074,7 +1075,7 @@
10477     esac
10478   fi
10479 else
10480-  { echo "$as_me:1077: creating cache $cache_file" >&5
10481+  { echo "$as_me:1078: creating cache $cache_file" >&5
10482 echo "$as_me: creating cache $cache_file" >&6;}
10483   >$cache_file
10484 fi
10485@@ -1090,21 +1091,21 @@
10486   eval ac_new_val="\$ac_env_${ac_var}_value"
10487   case $ac_old_set,$ac_new_set in
10488     set,)
10489-      { echo "$as_me:1093: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
10490+      { echo "$as_me:1094: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
10491 echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
10492       ac_cache_corrupted=: ;;
10493     ,set)
10494-      { echo "$as_me:1097: error: \`$ac_var' was not set in the previous run" >&5
10495+      { echo "$as_me:1098: error: \`$ac_var' was not set in the previous run" >&5
10496 echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
10497       ac_cache_corrupted=: ;;
10498     ,);;
10499     *)
10500       if test "x$ac_old_val" != "x$ac_new_val"; then
10501-        { echo "$as_me:1103: error: \`$ac_var' has changed since the previous run:" >&5
10502+        { echo "$as_me:1104: error: \`$ac_var' has changed since the previous run:" >&5
10503 echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
10504-        { echo "$as_me:1105:   former value:  $ac_old_val" >&5
10505+        { echo "$as_me:1106:   former value:  $ac_old_val" >&5
10506 echo "$as_me:   former value:  $ac_old_val" >&2;}
10507-        { echo "$as_me:1107:   current value: $ac_new_val" >&5
10508+        { echo "$as_me:1108:   current value: $ac_new_val" >&5
10509 echo "$as_me:   current value: $ac_new_val" >&2;}
10510         ac_cache_corrupted=:
10511       fi;;
10512@@ -1123,9 +1124,9 @@
10513   fi
10514 done
10515 if $ac_cache_corrupted; then
10516-  { echo "$as_me:1126: error: changes in the environment can compromise the build" >&5
10517+  { echo "$as_me:1127: error: changes in the environment can compromise the build" >&5
10518 echo "$as_me: error: changes in the environment can compromise the build" >&2;}
10519-  { { echo "$as_me:1128: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5
10520+  { { echo "$as_me:1129: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5
10521 echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;}
10522    { (exit 1); exit 1; }; }
10523 fi
10524@@ -1146,10 +1147,10 @@
10525 echo "#! $SHELL" >conftest.sh
10526 echo  "exit 0"   >>conftest.sh
10527 chmod +x conftest.sh
10528-if { (echo "$as_me:1149: PATH=\".;.\"; conftest.sh") >&5
10529+if { (echo "$as_me:1150: PATH=\".;.\"; conftest.sh") >&5
10530   (PATH=".;."; conftest.sh) 2>&5
10531   ac_status=$?
10532-  echo "$as_me:1152: \$? = $ac_status" >&5
10533+  echo "$as_me:1153: \$? = $ac_status" >&5
10534   (exit $ac_status); }; then
10535   ac_path_separator=';'
10536 else
10537@@ -1162,7 +1163,7 @@
10538
10539 top_builddir=`pwd`
10540
10541-echo "$as_me:1165: checking for egrep" >&5
10542+echo "$as_me:1166: checking for egrep" >&5
10543 echo $ECHO_N "checking for egrep... $ECHO_C" >&6
10544 if test "${ac_cv_prog_egrep+set}" = set; then
10545   echo $ECHO_N "(cached) $ECHO_C" >&6
10546@@ -1172,11 +1173,11 @@
10547 		else ac_cv_prog_egrep='egrep'
10548 	fi
10549 fi
10550-echo "$as_me:1175: result: $ac_cv_prog_egrep" >&5
10551+echo "$as_me:1176: result: $ac_cv_prog_egrep" >&5
10552 echo "${ECHO_T}$ac_cv_prog_egrep" >&6
10553 	EGREP=$ac_cv_prog_egrep
10554
10555-	test -z "$EGREP" && { { echo "$as_me:1179: error: No egrep program found" >&5
10556+	test -z "$EGREP" && { { echo "$as_me:1180: error: No egrep program found" >&5
10557 echo "$as_me: error: No egrep program found" >&2;}
10558    { (exit 1); exit 1; }; }
10559
10560@@ -1186,11 +1187,11 @@
10561 cf_cv_abi_version=${NCURSES_MAJOR}
10562 cf_cv_rel_version=${NCURSES_MAJOR}.${NCURSES_MINOR}
10563 cf_cv_timestamp=`date`
10564-echo "$as_me:1189: result: Configuring NCURSES $cf_cv_rel_version ABI $cf_cv_abi_version ($cf_cv_timestamp)" >&5
10565+echo "$as_me:1190: result: Configuring NCURSES $cf_cv_rel_version ABI $cf_cv_abi_version ($cf_cv_timestamp)" >&5
10566 echo "${ECHO_T}Configuring NCURSES $cf_cv_rel_version ABI $cf_cv_abi_version ($cf_cv_timestamp)" >&6
10567
10568 if test -f $srcdir/VERSION ; then
10569-	echo "$as_me:1193: checking for package version" >&5
10570+	echo "$as_me:1194: checking for package version" >&5
10571 echo $ECHO_N "checking for package version... $ECHO_C" >&6
10572
10573 	# if there are not enough fields, cut returns the last one...
10574@@ -1202,39 +1203,39 @@
10575 	VERSION="$cf_field1"
10576
10577 	VERSION_MAJOR=`echo "$cf_field2" | sed -e 's/\..*//'`
10578-	test -z "$VERSION_MAJOR" && { { echo "$as_me:1205: error: missing major-version" >&5
10579+	test -z "$VERSION_MAJOR" && { { echo "$as_me:1206: error: missing major-version" >&5
10580 echo "$as_me: error: missing major-version" >&2;}
10581    { (exit 1); exit 1; }; }
10582
10583 	VERSION_MINOR=`echo "$cf_field2" | sed -e 's/^[^.]*\.//' -e 's/-.*//'`
10584-	test -z "$VERSION_MINOR" && { { echo "$as_me:1210: error: missing minor-version" >&5
10585+	test -z "$VERSION_MINOR" && { { echo "$as_me:1211: error: missing minor-version" >&5
10586 echo "$as_me: error: missing minor-version" >&2;}
10587    { (exit 1); exit 1; }; }
10588
10589-	echo "$as_me:1214: result: ${VERSION_MAJOR}.${VERSION_MINOR}" >&5
10590+	echo "$as_me:1215: result: ${VERSION_MAJOR}.${VERSION_MINOR}" >&5
10591 echo "${ECHO_T}${VERSION_MAJOR}.${VERSION_MINOR}" >&6
10592
10593-	echo "$as_me:1217: checking for package patch date" >&5
10594+	echo "$as_me:1218: checking for package patch date" >&5
10595 echo $ECHO_N "checking for package patch date... $ECHO_C" >&6
10596 	VERSION_PATCH=`echo "$cf_field3" | sed -e 's/^[^-]*-//'`
10597 	case .$VERSION_PATCH in
10598 	(.)
10599-		{ { echo "$as_me:1222: error: missing patch-date $VERSION_PATCH" >&5
10600+		{ { echo "$as_me:1223: error: missing patch-date $VERSION_PATCH" >&5
10601 echo "$as_me: error: missing patch-date $VERSION_PATCH" >&2;}
10602    { (exit 1); exit 1; }; }
10603 		;;
10604 	(.[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9])
10605 		;;
10606 	(*)
10607-		{ { echo "$as_me:1229: error: illegal patch-date $VERSION_PATCH" >&5
10608+		{ { echo "$as_me:1230: error: illegal patch-date $VERSION_PATCH" >&5
10609 echo "$as_me: error: illegal patch-date $VERSION_PATCH" >&2;}
10610    { (exit 1); exit 1; }; }
10611 		;;
10612 	esac
10613-	echo "$as_me:1234: result: $VERSION_PATCH" >&5
10614+	echo "$as_me:1235: result: $VERSION_PATCH" >&5
10615 echo "${ECHO_T}$VERSION_PATCH" >&6
10616 else
10617-	{ { echo "$as_me:1237: error: did not find $srcdir/VERSION" >&5
10618+	{ { echo "$as_me:1238: error: did not find $srcdir/VERSION" >&5
10619 echo "$as_me: error: did not find $srcdir/VERSION" >&2;}
10620    { (exit 1); exit 1; }; }
10621 fi
10622@@ -1242,19 +1243,19 @@
10623 # show the actual data that we have for versions:
10624 test -n "$verbose" && echo "	ABI VERSION $VERSION" 1>&6
10625
10626-echo "${as_me:-configure}:1245: testing ABI VERSION $VERSION ..." 1>&5
10627+echo "${as_me:-configure}:1246: testing ABI VERSION $VERSION ..." 1>&5
10628
10629 test -n "$verbose" && echo "	VERSION_MAJOR $VERSION_MAJOR" 1>&6
10630
10631-echo "${as_me:-configure}:1249: testing VERSION_MAJOR $VERSION_MAJOR ..." 1>&5
10632+echo "${as_me:-configure}:1250: testing VERSION_MAJOR $VERSION_MAJOR ..." 1>&5
10633
10634 test -n "$verbose" && echo "	VERSION_MINOR $VERSION_MINOR" 1>&6
10635
10636-echo "${as_me:-configure}:1253: testing VERSION_MINOR $VERSION_MINOR ..." 1>&5
10637+echo "${as_me:-configure}:1254: testing VERSION_MINOR $VERSION_MINOR ..." 1>&5
10638
10639 test -n "$verbose" && echo "	VERSION_PATCH $VERSION_PATCH" 1>&6
10640
10641-echo "${as_me:-configure}:1257: testing VERSION_PATCH $VERSION_PATCH ..." 1>&5
10642+echo "${as_me:-configure}:1258: testing VERSION_PATCH $VERSION_PATCH ..." 1>&5
10643
10644 	cf_PACKAGE=NCURSES
10645 	PACKAGE=ncurses
10646@@ -1278,7 +1279,7 @@
10647 # Check whether --with-rel-version or --without-rel-version was given.
10648 if test "${with_rel_version+set}" = set; then
10649   withval="$with_rel_version"
10650-  { echo "$as_me:1281: WARNING: overriding release version $cf_cv_rel_version to $withval" >&5
10651+  { echo "$as_me:1282: WARNING: overriding release version $cf_cv_rel_version to $withval" >&5
10652 echo "$as_me: WARNING: overriding release version $cf_cv_rel_version to $withval" >&2;}
10653  cf_cv_rel_version=$withval
10654 fi;
10655@@ -1291,13 +1292,13 @@
10656   ([0-9]*)
10657  	;;
10658   (*)
10659-	{ { echo "$as_me:1294: error: Release major-version is not a number: $NCURSES_MAJOR" >&5
10660+	{ { echo "$as_me:1295: error: Release major-version is not a number: $NCURSES_MAJOR" >&5
10661 echo "$as_me: error: Release major-version is not a number: $NCURSES_MAJOR" >&2;}
10662    { (exit 1); exit 1; }; }
10663  	;;
10664   esac
10665 else
10666-  { { echo "$as_me:1300: error: Release major-version value is empty" >&5
10667+  { { echo "$as_me:1301: error: Release major-version value is empty" >&5
10668 echo "$as_me: error: Release major-version value is empty" >&2;}
10669    { (exit 1); exit 1; }; }
10670 fi
10671@@ -1307,13 +1308,13 @@
10672   ([0-9]*)
10673  	;;
10674   (*)
10675-	{ { echo "$as_me:1310: error: Release minor-version is not a number: $NCURSES_MINOR" >&5
10676+	{ { echo "$as_me:1311: error: Release minor-version is not a number: $NCURSES_MINOR" >&5
10677 echo "$as_me: error: Release minor-version is not a number: $NCURSES_MINOR" >&2;}
10678    { (exit 1); exit 1; }; }
10679  	;;
10680   esac
10681 else
10682-  { { echo "$as_me:1316: error: Release minor-version value is empty" >&5
10683+  { { echo "$as_me:1317: error: Release minor-version value is empty" >&5
10684 echo "$as_me: error: Release minor-version value is empty" >&2;}
10685    { (exit 1); exit 1; }; }
10686 fi
10687@@ -1326,7 +1327,7 @@
10688
10689 	if test "x$cf_cv_abi_version" != "x$withval"
10690 	then
10691-		{ echo "$as_me:1329: WARNING: overriding ABI version $cf_cv_abi_version to $withval" >&5
10692+		{ echo "$as_me:1330: WARNING: overriding ABI version $cf_cv_abi_version to $withval" >&5
10693 echo "$as_me: WARNING: overriding ABI version $cf_cv_abi_version to $withval" >&2;}
10694 		case $cf_cv_rel_version in
10695 		(5.*)
10696@@ -1345,13 +1346,13 @@
10697   ([0-9]*)
10698  	;;
10699   (*)
10700-	{ { echo "$as_me:1348: error: ABI version is not a number: $cf_cv_abi_version" >&5
10701+	{ { echo "$as_me:1349: error: ABI version is not a number: $cf_cv_abi_version" >&5
10702 echo "$as_me: error: ABI version is not a number: $cf_cv_abi_version" >&2;}
10703    { (exit 1); exit 1; }; }
10704  	;;
10705   esac
10706 else
10707-  { { echo "$as_me:1354: error: ABI version value is empty" >&5
10708+  { { echo "$as_me:1355: error: ABI version value is empty" >&5
10709 echo "$as_me: error: ABI version value is empty" >&2;}
10710    { (exit 1); exit 1; }; }
10711 fi
10712@@ -1382,7 +1383,7 @@
10713   fi
10714 done
10715 if test -z "$ac_aux_dir"; then
10716-  { { echo "$as_me:1385: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5
10717+  { { echo "$as_me:1386: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5
10718 echo "$as_me: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&2;}
10719    { (exit 1); exit 1; }; }
10720 fi
10721@@ -1392,11 +1393,11 @@
10722
10723 # Make sure we can run config.sub.
10724 $ac_config_sub sun4 >/dev/null 2>&1 ||
10725-  { { echo "$as_me:1395: error: cannot run $ac_config_sub" >&5
10726+  { { echo "$as_me:1396: error: cannot run $ac_config_sub" >&5
10727 echo "$as_me: error: cannot run $ac_config_sub" >&2;}
10728    { (exit 1); exit 1; }; }
10729
10730-echo "$as_me:1399: checking build system type" >&5
10731+echo "$as_me:1400: checking build system type" >&5
10732 echo $ECHO_N "checking build system type... $ECHO_C" >&6
10733 if test "${ac_cv_build+set}" = set; then
10734   echo $ECHO_N "(cached) $ECHO_C" >&6
10735@@ -1405,23 +1406,23 @@
10736 test -z "$ac_cv_build_alias" &&
10737   ac_cv_build_alias=`$ac_config_guess`
10738 test -z "$ac_cv_build_alias" &&
10739-  { { echo "$as_me:1408: error: cannot guess build type; you must specify one" >&5
10740+  { { echo "$as_me:1409: error: cannot guess build type; you must specify one" >&5
10741 echo "$as_me: error: cannot guess build type; you must specify one" >&2;}
10742    { (exit 1); exit 1; }; }
10743 ac_cv_build=`$ac_config_sub $ac_cv_build_alias` ||
10744-  { { echo "$as_me:1412: error: $ac_config_sub $ac_cv_build_alias failed." >&5
10745+  { { echo "$as_me:1413: error: $ac_config_sub $ac_cv_build_alias failed." >&5
10746 echo "$as_me: error: $ac_config_sub $ac_cv_build_alias failed." >&2;}
10747    { (exit 1); exit 1; }; }
10748
10749 fi
10750-echo "$as_me:1417: result: $ac_cv_build" >&5
10751+echo "$as_me:1418: result: $ac_cv_build" >&5
10752 echo "${ECHO_T}$ac_cv_build" >&6
10753 build=$ac_cv_build
10754 build_cpu=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
10755 build_vendor=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
10756 build_os=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
10757
10758-echo "$as_me:1424: checking host system type" >&5
10759+echo "$as_me:1425: checking host system type" >&5
10760 echo $ECHO_N "checking host system type... $ECHO_C" >&6
10761 if test "${ac_cv_host+set}" = set; then
10762   echo $ECHO_N "(cached) $ECHO_C" >&6
10763@@ -1430,12 +1431,12 @@
10764 test -z "$ac_cv_host_alias" &&
10765   ac_cv_host_alias=$ac_cv_build_alias
10766 ac_cv_host=`$ac_config_sub $ac_cv_host_alias` ||
10767-  { { echo "$as_me:1433: error: $ac_config_sub $ac_cv_host_alias failed" >&5
10768+  { { echo "$as_me:1434: error: $ac_config_sub $ac_cv_host_alias failed" >&5
10769 echo "$as_me: error: $ac_config_sub $ac_cv_host_alias failed" >&2;}
10770    { (exit 1); exit 1; }; }
10771
10772 fi
10773-echo "$as_me:1438: result: $ac_cv_host" >&5
10774+echo "$as_me:1439: result: $ac_cv_host" >&5
10775 echo "${ECHO_T}$ac_cv_host" >&6
10776 host=$ac_cv_host
10777 host_cpu=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
10778@@ -1443,7 +1444,7 @@
10779 host_os=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
10780
10781 if test -f $srcdir/config.guess || test -f $ac_aux_dir/config.guess ; then
10782-	echo "$as_me:1446: checking target system type" >&5
10783+	echo "$as_me:1447: checking target system type" >&5
10784 echo $ECHO_N "checking target system type... $ECHO_C" >&6
10785 if test "${ac_cv_target+set}" = set; then
10786   echo $ECHO_N "(cached) $ECHO_C" >&6
10787@@ -1452,12 +1453,12 @@
10788 test "x$ac_cv_target_alias" = "x" &&
10789   ac_cv_target_alias=$ac_cv_host_alias
10790 ac_cv_target=`$ac_config_sub $ac_cv_target_alias` ||
10791-  { { echo "$as_me:1455: error: $ac_config_sub $ac_cv_target_alias failed" >&5
10792+  { { echo "$as_me:1456: error: $ac_config_sub $ac_cv_target_alias failed" >&5
10793 echo "$as_me: error: $ac_config_sub $ac_cv_target_alias failed" >&2;}
10794    { (exit 1); exit 1; }; }
10795
10796 fi
10797-echo "$as_me:1460: result: $ac_cv_target" >&5
10798+echo "$as_me:1461: result: $ac_cv_target" >&5
10799 echo "${ECHO_T}$ac_cv_target" >&6
10800 target=$ac_cv_target
10801 target_cpu=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
10802@@ -1489,13 +1490,13 @@
10803 fi
10804
10805 test -z "$system_name" && system_name="$cf_cv_system_name"
10806-test -n "$cf_cv_system_name" && echo "$as_me:1492: result: Configuring for $cf_cv_system_name" >&5
10807+test -n "$cf_cv_system_name" && echo "$as_me:1493: result: Configuring for $cf_cv_system_name" >&5
10808 echo "${ECHO_T}Configuring for $cf_cv_system_name" >&6
10809
10810 if test ".$system_name" != ".$cf_cv_system_name" ; then
10811-	echo "$as_me:1496: result: Cached system name ($system_name) does not agree with actual ($cf_cv_system_name)" >&5
10812+	echo "$as_me:1497: result: Cached system name ($system_name) does not agree with actual ($cf_cv_system_name)" >&5
10813 echo "${ECHO_T}Cached system name ($system_name) does not agree with actual ($cf_cv_system_name)" >&6
10814-	{ { echo "$as_me:1498: error: \"Please remove config.cache and try again.\"" >&5
10815+	{ { echo "$as_me:1499: error: \"Please remove config.cache and try again.\"" >&5
10816 echo "$as_me: error: \"Please remove config.cache and try again.\"" >&2;}
10817    { (exit 1); exit 1; }; }
10818 fi
10819@@ -1503,7 +1504,7 @@
10820 # Check whether --with-system-type or --without-system-type was given.
10821 if test "${with_system_type+set}" = set; then
10822   withval="$with_system_type"
10823-  { echo "$as_me:1506: WARNING: overriding system type to $withval" >&5
10824+  { echo "$as_me:1507: WARNING: overriding system type to $withval" >&5
10825 echo "$as_me: WARNING: overriding system type to $withval" >&2;}
10826 	cf_cv_system_name=$withval
10827 	host_os=$withval
10828@@ -1515,7 +1516,7 @@
10829
10830 ###	Default install-location
10831
10832-echo "$as_me:1518: checking for prefix" >&5
10833+echo "$as_me:1519: checking for prefix" >&5
10834 echo $ECHO_N "checking for prefix... $ECHO_C" >&6
10835 if test "x$prefix" = "xNONE" ; then
10836 	case "$cf_cv_system_name" in
10837@@ -1527,11 +1528,11 @@
10838 		;;
10839 	esac
10840 fi
10841-echo "$as_me:1530: result: $prefix" >&5
10842+echo "$as_me:1531: result: $prefix" >&5
10843 echo "${ECHO_T}$prefix" >&6
10844
10845 if test "x$prefix" = "xNONE" ; then
10846-echo "$as_me:1534: checking for default include-directory" >&5
10847+echo "$as_me:1535: checking for default include-directory" >&5
10848 echo $ECHO_N "checking for default include-directory... $ECHO_C" >&6
10849 test -n "$verbose" && echo 1>&6
10850 for cf_symbol in \
10851@@ -1554,7 +1555,7 @@
10852 	fi
10853 	test -n "$verbose"  && echo "	tested $cf_dir" 1>&6
10854 done
10855-echo "$as_me:1557: result: $includedir" >&5
10856+echo "$as_me:1558: result: $includedir" >&5
10857 echo "${ECHO_T}$includedir" >&6
10858 fi
10859
10860@@ -1617,7 +1618,7 @@
10861   do
10862     # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
10863 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
10864-echo "$as_me:1620: checking for $ac_word" >&5
10865+echo "$as_me:1621: checking for $ac_word" >&5
10866 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
10867 if test "${ac_cv_prog_CC+set}" = set; then
10868   echo $ECHO_N "(cached) $ECHO_C" >&6
10869@@ -1632,7 +1633,7 @@
10870   test -z "$ac_dir" && ac_dir=.
10871   $as_executable_p "$ac_dir/$ac_word" || continue
10872 ac_cv_prog_CC="$ac_tool_prefix$ac_prog"
10873-echo "$as_me:1635: found $ac_dir/$ac_word" >&5
10874+echo "$as_me:1636: found $ac_dir/$ac_word" >&5
10875 break
10876 done
10877
10878@@ -1640,10 +1641,10 @@
10879 fi
10880 CC=$ac_cv_prog_CC
10881 if test -n "$CC"; then
10882-  echo "$as_me:1643: result: $CC" >&5
10883+  echo "$as_me:1644: result: $CC" >&5
10884 echo "${ECHO_T}$CC" >&6
10885 else
10886-  echo "$as_me:1646: result: no" >&5
10887+  echo "$as_me:1647: result: no" >&5
10888 echo "${ECHO_T}no" >&6
10889 fi
10890
10891@@ -1656,7 +1657,7 @@
10892 do
10893   # Extract the first word of "$ac_prog", so it can be a program name with args.
10894 set dummy $ac_prog; ac_word=$2
10895-echo "$as_me:1659: checking for $ac_word" >&5
10896+echo "$as_me:1660: checking for $ac_word" >&5
10897 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
10898 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
10899   echo $ECHO_N "(cached) $ECHO_C" >&6
10900@@ -1671,7 +1672,7 @@
10901   test -z "$ac_dir" && ac_dir=.
10902   $as_executable_p "$ac_dir/$ac_word" || continue
10903 ac_cv_prog_ac_ct_CC="$ac_prog"
10904-echo "$as_me:1674: found $ac_dir/$ac_word" >&5
10905+echo "$as_me:1675: found $ac_dir/$ac_word" >&5
10906 break
10907 done
10908
10909@@ -1679,10 +1680,10 @@
10910 fi
10911 ac_ct_CC=$ac_cv_prog_ac_ct_CC
10912 if test -n "$ac_ct_CC"; then
10913-  echo "$as_me:1682: result: $ac_ct_CC" >&5
10914+  echo "$as_me:1683: result: $ac_ct_CC" >&5
10915 echo "${ECHO_T}$ac_ct_CC" >&6
10916 else
10917-  echo "$as_me:1685: result: no" >&5
10918+  echo "$as_me:1686: result: no" >&5
10919 echo "${ECHO_T}no" >&6
10920 fi
10921
10922@@ -1692,32 +1693,32 @@
10923   CC=$ac_ct_CC
10924 fi
10925
10926-test -z "$CC" && { { echo "$as_me:1695: error: no acceptable cc found in \$PATH" >&5
10927+test -z "$CC" && { { echo "$as_me:1696: error: no acceptable cc found in \$PATH" >&5
10928 echo "$as_me: error: no acceptable cc found in \$PATH" >&2;}
10929    { (exit 1); exit 1; }; }
10930
10931 # Provide some information about the compiler.
10932-echo "$as_me:1700:" \
10933+echo "$as_me:1701:" \
10934      "checking for C compiler version" >&5
10935 ac_compiler=`set X $ac_compile; echo $2`
10936-{ (eval echo "$as_me:1703: \"$ac_compiler --version </dev/null >&5\"") >&5
10937+{ (eval echo "$as_me:1704: \"$ac_compiler --version </dev/null >&5\"") >&5
10938   (eval $ac_compiler --version </dev/null >&5) 2>&5
10939   ac_status=$?
10940-  echo "$as_me:1706: \$? = $ac_status" >&5
10941+  echo "$as_me:1707: \$? = $ac_status" >&5
10942   (exit $ac_status); }
10943-{ (eval echo "$as_me:1708: \"$ac_compiler -v </dev/null >&5\"") >&5
10944+{ (eval echo "$as_me:1709: \"$ac_compiler -v </dev/null >&5\"") >&5
10945   (eval $ac_compiler -v </dev/null >&5) 2>&5
10946   ac_status=$?
10947-  echo "$as_me:1711: \$? = $ac_status" >&5
10948+  echo "$as_me:1712: \$? = $ac_status" >&5
10949   (exit $ac_status); }
10950-{ (eval echo "$as_me:1713: \"$ac_compiler -V </dev/null >&5\"") >&5
10951+{ (eval echo "$as_me:1714: \"$ac_compiler -V </dev/null >&5\"") >&5
10952   (eval $ac_compiler -V </dev/null >&5) 2>&5
10953   ac_status=$?
10954-  echo "$as_me:1716: \$? = $ac_status" >&5
10955+  echo "$as_me:1717: \$? = $ac_status" >&5
10956   (exit $ac_status); }
10957
10958 cat >conftest.$ac_ext <<_ACEOF
10959-#line 1720 "configure"
10960+#line 1721 "configure"
10961 #include "confdefs.h"
10962
10963 int
10964@@ -1733,13 +1734,13 @@
10965 # Try to create an executable without -o first, disregard a.out.
10966 # It will help us diagnose broken compilers, and finding out an intuition
10967 # of exeext.
10968-echo "$as_me:1736: checking for C compiler default output" >&5
10969+echo "$as_me:1737: checking for C compiler default output" >&5
10970 echo $ECHO_N "checking for C compiler default output... $ECHO_C" >&6
10971 ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
10972-if { (eval echo "$as_me:1739: \"$ac_link_default\"") >&5
10973+if { (eval echo "$as_me:1740: \"$ac_link_default\"") >&5
10974   (eval $ac_link_default) 2>&5
10975   ac_status=$?
10976-  echo "$as_me:1742: \$? = $ac_status" >&5
10977+  echo "$as_me:1743: \$? = $ac_status" >&5
10978   (exit $ac_status); }; then
10979   # Find the output, starting from the most likely.  This scheme is
10980 # not robust to junk in `.', hence go to wildcards (a.*) only as a last
10981@@ -1762,34 +1763,34 @@
10982 else
10983   echo "$as_me: failed program was:" >&5
10984 cat conftest.$ac_ext >&5
10985-{ { echo "$as_me:1765: error: C compiler cannot create executables" >&5
10986+{ { echo "$as_me:1766: error: C compiler cannot create executables" >&5
10987 echo "$as_me: error: C compiler cannot create executables" >&2;}
10988    { (exit 77); exit 77; }; }
10989 fi
10990
10991 ac_exeext=$ac_cv_exeext
10992-echo "$as_me:1771: result: $ac_file" >&5
10993+echo "$as_me:1772: result: $ac_file" >&5
10994 echo "${ECHO_T}$ac_file" >&6
10995
10996 # Check the compiler produces executables we can run.  If not, either
10997 # the compiler is broken, or we cross compile.
10998-echo "$as_me:1776: checking whether the C compiler works" >&5
10999+echo "$as_me:1777: checking whether the C compiler works" >&5
11000 echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6
11001 # FIXME: These cross compiler hacks should be removed for Autoconf 3.0
11002 # If not cross compiling, check that we can run a simple program.
11003 if test "$cross_compiling" != yes; then
11004   if { ac_try='./$ac_file'
11005-  { (eval echo "$as_me:1782: \"$ac_try\"") >&5
11006+  { (eval echo "$as_me:1783: \"$ac_try\"") >&5
11007   (eval $ac_try) 2>&5
11008   ac_status=$?
11009-  echo "$as_me:1785: \$? = $ac_status" >&5
11010+  echo "$as_me:1786: \$? = $ac_status" >&5
11011   (exit $ac_status); }; }; then
11012     cross_compiling=no
11013   else
11014     if test "$cross_compiling" = maybe; then
11015 	cross_compiling=yes
11016     else
11017-	{ { echo "$as_me:1792: error: cannot run C compiled programs.
11018+	{ { echo "$as_me:1793: error: cannot run C compiled programs.
11019 If you meant to cross compile, use \`--host'." >&5
11020 echo "$as_me: error: cannot run C compiled programs.
11021 If you meant to cross compile, use \`--host'." >&2;}
11022@@ -1797,24 +1798,24 @@
11023     fi
11024   fi
11025 fi
11026-echo "$as_me:1800: result: yes" >&5
11027+echo "$as_me:1801: result: yes" >&5
11028 echo "${ECHO_T}yes" >&6
11029
11030 rm -f a.out a.exe conftest$ac_cv_exeext
11031 ac_clean_files=$ac_clean_files_save
11032 # Check the compiler produces executables we can run.  If not, either
11033 # the compiler is broken, or we cross compile.
11034-echo "$as_me:1807: checking whether we are cross compiling" >&5
11035+echo "$as_me:1808: checking whether we are cross compiling" >&5
11036 echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6
11037-echo "$as_me:1809: result: $cross_compiling" >&5
11038+echo "$as_me:1810: result: $cross_compiling" >&5
11039 echo "${ECHO_T}$cross_compiling" >&6
11040
11041-echo "$as_me:1812: checking for executable suffix" >&5
11042+echo "$as_me:1813: checking for executable suffix" >&5
11043 echo $ECHO_N "checking for executable suffix... $ECHO_C" >&6
11044-if { (eval echo "$as_me:1814: \"$ac_link\"") >&5
11045+if { (eval echo "$as_me:1815: \"$ac_link\"") >&5
11046   (eval $ac_link) 2>&5
11047   ac_status=$?
11048-  echo "$as_me:1817: \$? = $ac_status" >&5
11049+  echo "$as_me:1818: \$? = $ac_status" >&5
11050   (exit $ac_status); }; then
11051   # If both `conftest.exe' and `conftest' are `present' (well, observable)
11052 # catch `conftest.exe'.  For instance with Cygwin, `ls conftest' will
11053@@ -1830,25 +1831,25 @@
11054   esac
11055 done
11056 else
11057-  { { echo "$as_me:1833: error: cannot compute EXEEXT: cannot compile and link" >&5
11058+  { { echo "$as_me:1834: error: cannot compute EXEEXT: cannot compile and link" >&5
11059 echo "$as_me: error: cannot compute EXEEXT: cannot compile and link" >&2;}
11060    { (exit 1); exit 1; }; }
11061 fi
11062
11063 rm -f conftest$ac_cv_exeext
11064-echo "$as_me:1839: result: $ac_cv_exeext" >&5
11065+echo "$as_me:1840: result: $ac_cv_exeext" >&5
11066 echo "${ECHO_T}$ac_cv_exeext" >&6
11067
11068 rm -f conftest.$ac_ext
11069 EXEEXT=$ac_cv_exeext
11070 ac_exeext=$EXEEXT
11071-echo "$as_me:1845: checking for object suffix" >&5
11072+echo "$as_me:1846: checking for object suffix" >&5
11073 echo $ECHO_N "checking for object suffix... $ECHO_C" >&6
11074 if test "${ac_cv_objext+set}" = set; then
11075   echo $ECHO_N "(cached) $ECHO_C" >&6
11076 else
11077   cat >conftest.$ac_ext <<_ACEOF
11078-#line 1851 "configure"
11079+#line 1852 "configure"
11080 #include "confdefs.h"
11081
11082 int
11083@@ -1860,10 +1861,10 @@
11084 }
11085 _ACEOF
11086 rm -f conftest.o conftest.obj
11087-if { (eval echo "$as_me:1863: \"$ac_compile\"") >&5
11088+if { (eval echo "$as_me:1864: \"$ac_compile\"") >&5
11089   (eval $ac_compile) 2>&5
11090   ac_status=$?
11091-  echo "$as_me:1866: \$? = $ac_status" >&5
11092+  echo "$as_me:1867: \$? = $ac_status" >&5
11093   (exit $ac_status); }; then
11094   for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do
11095   case $ac_file in
11096@@ -1875,24 +1876,24 @@
11097 else
11098   echo "$as_me: failed program was:" >&5
11099 cat conftest.$ac_ext >&5
11100-{ { echo "$as_me:1878: error: cannot compute OBJEXT: cannot compile" >&5
11101+{ { echo "$as_me:1879: error: cannot compute OBJEXT: cannot compile" >&5
11102 echo "$as_me: error: cannot compute OBJEXT: cannot compile" >&2;}
11103    { (exit 1); exit 1; }; }
11104 fi
11105
11106 rm -f conftest.$ac_cv_objext conftest.$ac_ext
11107 fi
11108-echo "$as_me:1885: result: $ac_cv_objext" >&5
11109+echo "$as_me:1886: result: $ac_cv_objext" >&5
11110 echo "${ECHO_T}$ac_cv_objext" >&6
11111 OBJEXT=$ac_cv_objext
11112 ac_objext=$OBJEXT
11113-echo "$as_me:1889: checking whether we are using the GNU C compiler" >&5
11114+echo "$as_me:1890: checking whether we are using the GNU C compiler" >&5
11115 echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6
11116 if test "${ac_cv_c_compiler_gnu+set}" = set; then
11117   echo $ECHO_N "(cached) $ECHO_C" >&6
11118 else
11119   cat >conftest.$ac_ext <<_ACEOF
11120-#line 1895 "configure"
11121+#line 1896 "configure"
11122 #include "confdefs.h"
11123
11124 int
11125@@ -1907,16 +1908,16 @@
11126 }
11127 _ACEOF
11128 rm -f conftest.$ac_objext
11129-if { (eval echo "$as_me:1910: \"$ac_compile\"") >&5
11130+if { (eval echo "$as_me:1911: \"$ac_compile\"") >&5
11131   (eval $ac_compile) 2>&5
11132   ac_status=$?
11133-  echo "$as_me:1913: \$? = $ac_status" >&5
11134+  echo "$as_me:1914: \$? = $ac_status" >&5
11135   (exit $ac_status); } &&
11136          { ac_try='test -s conftest.$ac_objext'
11137-  { (eval echo "$as_me:1916: \"$ac_try\"") >&5
11138+  { (eval echo "$as_me:1917: \"$ac_try\"") >&5
11139   (eval $ac_try) 2>&5
11140   ac_status=$?
11141-  echo "$as_me:1919: \$? = $ac_status" >&5
11142+  echo "$as_me:1920: \$? = $ac_status" >&5
11143   (exit $ac_status); }; }; then
11144   ac_compiler_gnu=yes
11145 else
11146@@ -1928,19 +1929,19 @@
11147 ac_cv_c_compiler_gnu=$ac_compiler_gnu
11148
11149 fi
11150-echo "$as_me:1931: result: $ac_cv_c_compiler_gnu" >&5
11151+echo "$as_me:1932: result: $ac_cv_c_compiler_gnu" >&5
11152 echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6
11153 GCC=`test $ac_compiler_gnu = yes && echo yes`
11154 ac_test_CFLAGS=${CFLAGS+set}
11155 ac_save_CFLAGS=$CFLAGS
11156 CFLAGS="-g"
11157-echo "$as_me:1937: checking whether $CC accepts -g" >&5
11158+echo "$as_me:1938: checking whether $CC accepts -g" >&5
11159 echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6
11160 if test "${ac_cv_prog_cc_g+set}" = set; then
11161   echo $ECHO_N "(cached) $ECHO_C" >&6
11162 else
11163   cat >conftest.$ac_ext <<_ACEOF
11164-#line 1943 "configure"
11165+#line 1944 "configure"
11166 #include "confdefs.h"
11167
11168 int
11169@@ -1952,16 +1953,16 @@
11170 }
11171 _ACEOF
11172 rm -f conftest.$ac_objext
11173-if { (eval echo "$as_me:1955: \"$ac_compile\"") >&5
11174+if { (eval echo "$as_me:1956: \"$ac_compile\"") >&5
11175   (eval $ac_compile) 2>&5
11176   ac_status=$?
11177-  echo "$as_me:1958: \$? = $ac_status" >&5
11178+  echo "$as_me:1959: \$? = $ac_status" >&5
11179   (exit $ac_status); } &&
11180          { ac_try='test -s conftest.$ac_objext'
11181-  { (eval echo "$as_me:1961: \"$ac_try\"") >&5
11182+  { (eval echo "$as_me:1962: \"$ac_try\"") >&5
11183   (eval $ac_try) 2>&5
11184   ac_status=$?
11185-  echo "$as_me:1964: \$? = $ac_status" >&5
11186+  echo "$as_me:1965: \$? = $ac_status" >&5
11187   (exit $ac_status); }; }; then
11188   ac_cv_prog_cc_g=yes
11189 else
11190@@ -1971,7 +1972,7 @@
11191 fi
11192 rm -f conftest.$ac_objext conftest.$ac_ext
11193 fi
11194-echo "$as_me:1974: result: $ac_cv_prog_cc_g" >&5
11195+echo "$as_me:1975: result: $ac_cv_prog_cc_g" >&5
11196 echo "${ECHO_T}$ac_cv_prog_cc_g" >&6
11197 if test "$ac_test_CFLAGS" = set; then
11198   CFLAGS=$ac_save_CFLAGS
11199@@ -1998,16 +1999,16 @@
11200 #endif
11201 _ACEOF
11202 rm -f conftest.$ac_objext
11203-if { (eval echo "$as_me:2001: \"$ac_compile\"") >&5
11204+if { (eval echo "$as_me:2002: \"$ac_compile\"") >&5
11205   (eval $ac_compile) 2>&5
11206   ac_status=$?
11207-  echo "$as_me:2004: \$? = $ac_status" >&5
11208+  echo "$as_me:2005: \$? = $ac_status" >&5
11209   (exit $ac_status); } &&
11210          { ac_try='test -s conftest.$ac_objext'
11211-  { (eval echo "$as_me:2007: \"$ac_try\"") >&5
11212+  { (eval echo "$as_me:2008: \"$ac_try\"") >&5
11213   (eval $ac_try) 2>&5
11214   ac_status=$?
11215-  echo "$as_me:2010: \$? = $ac_status" >&5
11216+  echo "$as_me:2011: \$? = $ac_status" >&5
11217   (exit $ac_status); }; }; then
11218   for ac_declaration in \
11219    ''\
11220@@ -2019,7 +2020,7 @@
11221    'void exit (int);'
11222 do
11223   cat >conftest.$ac_ext <<_ACEOF
11224-#line 2022 "configure"
11225+#line 2023 "configure"
11226 #include "confdefs.h"
11227 #include <stdlib.h>
11228 $ac_declaration
11229@@ -2032,16 +2033,16 @@
11230 }
11231 _ACEOF
11232 rm -f conftest.$ac_objext
11233-if { (eval echo "$as_me:2035: \"$ac_compile\"") >&5
11234+if { (eval echo "$as_me:2036: \"$ac_compile\"") >&5
11235   (eval $ac_compile) 2>&5
11236   ac_status=$?
11237-  echo "$as_me:2038: \$? = $ac_status" >&5
11238+  echo "$as_me:2039: \$? = $ac_status" >&5
11239   (exit $ac_status); } &&
11240          { ac_try='test -s conftest.$ac_objext'
11241-  { (eval echo "$as_me:2041: \"$ac_try\"") >&5
11242+  { (eval echo "$as_me:2042: \"$ac_try\"") >&5
11243   (eval $ac_try) 2>&5
11244   ac_status=$?
11245-  echo "$as_me:2044: \$? = $ac_status" >&5
11246+  echo "$as_me:2045: \$? = $ac_status" >&5
11247   (exit $ac_status); }; }; then
11248   :
11249 else
11250@@ -2051,7 +2052,7 @@
11251 fi
11252 rm -f conftest.$ac_objext conftest.$ac_ext
11253   cat >conftest.$ac_ext <<_ACEOF
11254-#line 2054 "configure"
11255+#line 2055 "configure"
11256 #include "confdefs.h"
11257 $ac_declaration
11258 int
11259@@ -2063,16 +2064,16 @@
11260 }
11261 _ACEOF
11262 rm -f conftest.$ac_objext
11263-if { (eval echo "$as_me:2066: \"$ac_compile\"") >&5
11264+if { (eval echo "$as_me:2067: \"$ac_compile\"") >&5
11265   (eval $ac_compile) 2>&5
11266   ac_status=$?
11267-  echo "$as_me:2069: \$? = $ac_status" >&5
11268+  echo "$as_me:2070: \$? = $ac_status" >&5
11269   (exit $ac_status); } &&
11270          { ac_try='test -s conftest.$ac_objext'
11271-  { (eval echo "$as_me:2072: \"$ac_try\"") >&5
11272+  { (eval echo "$as_me:2073: \"$ac_try\"") >&5
11273   (eval $ac_try) 2>&5
11274   ac_status=$?
11275-  echo "$as_me:2075: \$? = $ac_status" >&5
11276+  echo "$as_me:2076: \$? = $ac_status" >&5
11277   (exit $ac_status); }; }; then
11278   break
11279 else
11280@@ -2102,15 +2103,117 @@
11281
11282 GCC_VERSION=none
11283 if test "$GCC" = yes ; then
11284-	echo "$as_me:2105: checking version of $CC" >&5
11285+	echo "$as_me:2106: checking version of $CC" >&5
11286 echo $ECHO_N "checking version of $CC... $ECHO_C" >&6
11287 	GCC_VERSION="`${CC} --version 2>/dev/null | sed -e '2,$d' -e 's/^.*(GCC[^)]*) //' -e 's/^.*(Debian[^)]*) //' -e 's/^[^0-9.]*//' -e 's/[^0-9.].*//'`"
11288 	test -z "$GCC_VERSION" && GCC_VERSION=unknown
11289-	echo "$as_me:2109: result: $GCC_VERSION" >&5
11290+	echo "$as_me:2110: result: $GCC_VERSION" >&5
11291 echo "${ECHO_T}$GCC_VERSION" >&6
11292 fi
11293
11294-echo "$as_me:2113: checking for $CC option to accept ANSI C" >&5
11295+INTEL_COMPILER=no
11296+
11297+if test "$GCC" = yes ; then
11298+	case $host_os in
11299+	(linux*|gnu*)
11300+		echo "$as_me:2119: checking if this is really Intel C compiler" >&5
11301+echo $ECHO_N "checking if this is really Intel C compiler... $ECHO_C" >&6
11302+		cf_save_CFLAGS="$CFLAGS"
11303+		CFLAGS="$CFLAGS -no-gcc"
11304+		cat >conftest.$ac_ext <<_ACEOF
11305+#line 2124 "configure"
11306+#include "confdefs.h"
11307+
11308+int
11309+main (void)
11310+{
11311+
11312+#ifdef __INTEL_COMPILER
11313+#else
11314+make an error
11315+#endif
11316+
11317+  ;
11318+  return 0;
11319+}
11320+_ACEOF
11321+rm -f conftest.$ac_objext
11322+if { (eval echo "$as_me:2141: \"$ac_compile\"") >&5
11323+  (eval $ac_compile) 2>&5
11324+  ac_status=$?
11325+  echo "$as_me:2144: \$? = $ac_status" >&5
11326+  (exit $ac_status); } &&
11327+         { ac_try='test -s conftest.$ac_objext'
11328+  { (eval echo "$as_me:2147: \"$ac_try\"") >&5
11329+  (eval $ac_try) 2>&5
11330+  ac_status=$?
11331+  echo "$as_me:2150: \$? = $ac_status" >&5
11332+  (exit $ac_status); }; }; then
11333+  INTEL_COMPILER=yes
11334+cf_save_CFLAGS="$cf_save_CFLAGS -we147"
11335+
11336+else
11337+  echo "$as_me: failed program was:" >&5
11338+cat conftest.$ac_ext >&5
11339+fi
11340+rm -f conftest.$ac_objext conftest.$ac_ext
11341+		CFLAGS="$cf_save_CFLAGS"
11342+		echo "$as_me:2161: result: $INTEL_COMPILER" >&5
11343+echo "${ECHO_T}$INTEL_COMPILER" >&6
11344+		;;
11345+	esac
11346+fi
11347+
11348+CLANG_COMPILER=no
11349+
11350+if test "$GCC" = yes ; then
11351+	echo "$as_me:2170: checking if this is really Clang C compiler" >&5
11352+echo $ECHO_N "checking if this is really Clang C compiler... $ECHO_C" >&6
11353+	cf_save_CFLAGS="$CFLAGS"
11354+	CFLAGS="$CFLAGS -Qunused-arguments"
11355+	cat >conftest.$ac_ext <<_ACEOF
11356+#line 2175 "configure"
11357+#include "confdefs.h"
11358+
11359+int
11360+main (void)
11361+{
11362+
11363+#ifdef __clang__
11364+#else
11365+make an error
11366+#endif
11367+
11368+  ;
11369+  return 0;
11370+}
11371+_ACEOF
11372+rm -f conftest.$ac_objext
11373+if { (eval echo "$as_me:2192: \"$ac_compile\"") >&5
11374+  (eval $ac_compile) 2>&5
11375+  ac_status=$?
11376+  echo "$as_me:2195: \$? = $ac_status" >&5
11377+  (exit $ac_status); } &&
11378+         { ac_try='test -s conftest.$ac_objext'
11379+  { (eval echo "$as_me:2198: \"$ac_try\"") >&5
11380+  (eval $ac_try) 2>&5
11381+  ac_status=$?
11382+  echo "$as_me:2201: \$? = $ac_status" >&5
11383+  (exit $ac_status); }; }; then
11384+  CLANG_COMPILER=yes
11385+cf_save_CFLAGS="$cf_save_CFLAGS -Qunused-arguments"
11386+
11387+else
11388+  echo "$as_me: failed program was:" >&5
11389+cat conftest.$ac_ext >&5
11390+fi
11391+rm -f conftest.$ac_objext conftest.$ac_ext
11392+	CFLAGS="$cf_save_CFLAGS"
11393+	echo "$as_me:2212: result: $CLANG_COMPILER" >&5
11394+echo "${ECHO_T}$CLANG_COMPILER" >&6
11395+fi
11396+
11397+echo "$as_me:2216: checking for $CC option to accept ANSI C" >&5
11398 echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6
11399 if test "${ac_cv_prog_cc_stdc+set}" = set; then
11400   echo $ECHO_N "(cached) $ECHO_C" >&6
11401@@ -2118,7 +2221,7 @@
11402   ac_cv_prog_cc_stdc=no
11403 ac_save_CC=$CC
11404 cat >conftest.$ac_ext <<_ACEOF
11405-#line 2121 "configure"
11406+#line 2224 "configure"
11407 #include "confdefs.h"
11408 #include <stdarg.h>
11409 #include <stdio.h>
11410@@ -2167,16 +2270,16 @@
11411 do
11412   CC="$ac_save_CC $ac_arg"
11413   rm -f conftest.$ac_objext
11414-if { (eval echo "$as_me:2170: \"$ac_compile\"") >&5
11415+if { (eval echo "$as_me:2273: \"$ac_compile\"") >&5
11416   (eval $ac_compile) 2>&5
11417   ac_status=$?
11418-  echo "$as_me:2173: \$? = $ac_status" >&5
11419+  echo "$as_me:2276: \$? = $ac_status" >&5
11420   (exit $ac_status); } &&
11421          { ac_try='test -s conftest.$ac_objext'
11422-  { (eval echo "$as_me:2176: \"$ac_try\"") >&5
11423+  { (eval echo "$as_me:2279: \"$ac_try\"") >&5
11424   (eval $ac_try) 2>&5
11425   ac_status=$?
11426-  echo "$as_me:2179: \$? = $ac_status" >&5
11427+  echo "$as_me:2282: \$? = $ac_status" >&5
11428   (exit $ac_status); }; }; then
11429   ac_cv_prog_cc_stdc=$ac_arg
11430 break
11431@@ -2193,10 +2296,10 @@
11432
11433 case "x$ac_cv_prog_cc_stdc" in
11434   x|xno)
11435-    echo "$as_me:2196: result: none needed" >&5
11436+    echo "$as_me:2299: result: none needed" >&5
11437 echo "${ECHO_T}none needed" >&6 ;;
11438   *)
11439-    echo "$as_me:2199: result: $ac_cv_prog_cc_stdc" >&5
11440+    echo "$as_me:2302: result: $ac_cv_prog_cc_stdc" >&5
11441 echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6
11442     CC="$CC $ac_cv_prog_cc_stdc" ;;
11443 esac
11444@@ -2204,13 +2307,13 @@
11445 # This should have been defined by AC_PROG_CC
11446 : ${CC:=cc}
11447
11448-echo "$as_me:2207: checking \$CFLAGS variable" >&5
11449+echo "$as_me:2310: checking \$CFLAGS variable" >&5
11450 echo $ECHO_N "checking \$CFLAGS variable... $ECHO_C" >&6
11451 case "x$CFLAGS" in
11452 (*-[IUD]*)
11453-	echo "$as_me:2211: result: broken" >&5
11454+	echo "$as_me:2314: result: broken" >&5
11455 echo "${ECHO_T}broken" >&6
11456-	{ echo "$as_me:2213: WARNING: your environment uses the CFLAGS variable to hold CPPFLAGS options" >&5
11457+	{ echo "$as_me:2316: WARNING: your environment uses the CFLAGS variable to hold CPPFLAGS options" >&5
11458 echo "$as_me: WARNING: your environment uses the CFLAGS variable to hold CPPFLAGS options" >&2;}
11459 	cf_flags="$CFLAGS"
11460 	CFLAGS=
11461@@ -2318,18 +2421,18 @@
11462 	done
11463 	;;
11464 (*)
11465-	echo "$as_me:2321: result: ok" >&5
11466+	echo "$as_me:2424: result: ok" >&5
11467 echo "${ECHO_T}ok" >&6
11468 	;;
11469 esac
11470
11471-echo "$as_me:2326: checking \$CC variable" >&5
11472+echo "$as_me:2429: checking \$CC variable" >&5
11473 echo $ECHO_N "checking \$CC variable... $ECHO_C" >&6
11474 case "$CC" in
11475 (*[\ \	]-*)
11476-	echo "$as_me:2330: result: broken" >&5
11477+	echo "$as_me:2433: result: broken" >&5
11478 echo "${ECHO_T}broken" >&6
11479-	{ echo "$as_me:2332: WARNING: your environment uses the CC variable to hold CFLAGS/CPPFLAGS options" >&5
11480+	{ echo "$as_me:2435: WARNING: your environment uses the CC variable to hold CFLAGS/CPPFLAGS options" >&5
11481 echo "$as_me: WARNING: your environment uses the CC variable to hold CFLAGS/CPPFLAGS options" >&2;}
11482 	# humor him...
11483 	cf_prog=`echo "$CC" | sed -e 's/	/ /g' -e 's/[ ]* / /g' -e 's/[ ]*[ ]-[^ ].*//'`
11484@@ -2446,19 +2549,19 @@
11485 	done
11486 	test -n "$verbose" && echo "	resulting CC: '$CC'" 1>&6
11487
11488-echo "${as_me:-configure}:2449: testing resulting CC: '$CC' ..." 1>&5
11489+echo "${as_me:-configure}:2552: testing resulting CC: '$CC' ..." 1>&5
11490
11491 	test -n "$verbose" && echo "	resulting CFLAGS: '$CFLAGS'" 1>&6
11492
11493-echo "${as_me:-configure}:2453: testing resulting CFLAGS: '$CFLAGS' ..." 1>&5
11494+echo "${as_me:-configure}:2556: testing resulting CFLAGS: '$CFLAGS' ..." 1>&5
11495
11496 	test -n "$verbose" && echo "	resulting CPPFLAGS: '$CPPFLAGS'" 1>&6
11497
11498-echo "${as_me:-configure}:2457: testing resulting CPPFLAGS: '$CPPFLAGS' ..." 1>&5
11499+echo "${as_me:-configure}:2560: testing resulting CPPFLAGS: '$CPPFLAGS' ..." 1>&5
11500
11501 	;;
11502 (*)
11503-	echo "$as_me:2461: result: ok" >&5
11504+	echo "$as_me:2564: result: ok" >&5
11505 echo "${ECHO_T}ok" >&6
11506 	;;
11507 esac
11508@@ -2469,7 +2572,7 @@
11509 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
11510 ac_compiler_gnu=$ac_cv_c_compiler_gnu
11511 ac_main_return=return
11512-echo "$as_me:2472: checking how to run the C preprocessor" >&5
11513+echo "$as_me:2575: checking how to run the C preprocessor" >&5
11514 echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6
11515 # On Suns, sometimes $CPP names a directory.
11516 if test -n "$CPP" && test -d "$CPP"; then
11517@@ -2490,18 +2593,18 @@
11518   # On the NeXT, cc -E runs the code through the compiler's parser,
11519   # not just through cpp. "Syntax error" is here to catch this case.
11520   cat >conftest.$ac_ext <<_ACEOF
11521-#line 2493 "configure"
11522+#line 2596 "configure"
11523 #include "confdefs.h"
11524 #include <assert.h>
11525                      Syntax error
11526 _ACEOF
11527-if { (eval echo "$as_me:2498: \"$ac_cpp conftest.$ac_ext\"") >&5
11528+if { (eval echo "$as_me:2601: \"$ac_cpp conftest.$ac_ext\"") >&5
11529   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
11530   ac_status=$?
11531   egrep -v '^ *\+' conftest.er1 >conftest.err
11532   rm -f conftest.er1
11533   cat conftest.err >&5
11534-  echo "$as_me:2504: \$? = $ac_status" >&5
11535+  echo "$as_me:2607: \$? = $ac_status" >&5
11536   (exit $ac_status); } >/dev/null; then
11537   if test -s conftest.err; then
11538     ac_cpp_err=$ac_c_preproc_warn_flag
11539@@ -2524,17 +2627,17 @@
11540   # OK, works on sane cases.  Now check whether non-existent headers
11541   # can be detected and how.
11542   cat >conftest.$ac_ext <<_ACEOF
11543-#line 2527 "configure"
11544+#line 2630 "configure"
11545 #include "confdefs.h"
11546 #include <ac_nonexistent.h>
11547 _ACEOF
11548-if { (eval echo "$as_me:2531: \"$ac_cpp conftest.$ac_ext\"") >&5
11549+if { (eval echo "$as_me:2634: \"$ac_cpp conftest.$ac_ext\"") >&5
11550   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
11551   ac_status=$?
11552   egrep -v '^ *\+' conftest.er1 >conftest.err
11553   rm -f conftest.er1
11554   cat conftest.err >&5
11555-  echo "$as_me:2537: \$? = $ac_status" >&5
11556+  echo "$as_me:2640: \$? = $ac_status" >&5
11557   (exit $ac_status); } >/dev/null; then
11558   if test -s conftest.err; then
11559     ac_cpp_err=$ac_c_preproc_warn_flag
11560@@ -2571,7 +2674,7 @@
11561 else
11562   ac_cv_prog_CPP=$CPP
11563 fi
11564-echo "$as_me:2574: result: $CPP" >&5
11565+echo "$as_me:2677: result: $CPP" >&5
11566 echo "${ECHO_T}$CPP" >&6
11567 ac_preproc_ok=false
11568 for ac_c_preproc_warn_flag in '' yes
11569@@ -2581,18 +2684,18 @@
11570   # On the NeXT, cc -E runs the code through the compiler's parser,
11571   # not just through cpp. "Syntax error" is here to catch this case.
11572   cat >conftest.$ac_ext <<_ACEOF
11573-#line 2584 "configure"
11574+#line 2687 "configure"
11575 #include "confdefs.h"
11576 #include <assert.h>
11577                      Syntax error
11578 _ACEOF
11579-if { (eval echo "$as_me:2589: \"$ac_cpp conftest.$ac_ext\"") >&5
11580+if { (eval echo "$as_me:2692: \"$ac_cpp conftest.$ac_ext\"") >&5
11581   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
11582   ac_status=$?
11583   egrep -v '^ *\+' conftest.er1 >conftest.err
11584   rm -f conftest.er1
11585   cat conftest.err >&5
11586-  echo "$as_me:2595: \$? = $ac_status" >&5
11587+  echo "$as_me:2698: \$? = $ac_status" >&5
11588   (exit $ac_status); } >/dev/null; then
11589   if test -s conftest.err; then
11590     ac_cpp_err=$ac_c_preproc_warn_flag
11591@@ -2615,17 +2718,17 @@
11592   # OK, works on sane cases.  Now check whether non-existent headers
11593   # can be detected and how.
11594   cat >conftest.$ac_ext <<_ACEOF
11595-#line 2618 "configure"
11596+#line 2721 "configure"
11597 #include "confdefs.h"
11598 #include <ac_nonexistent.h>
11599 _ACEOF
11600-if { (eval echo "$as_me:2622: \"$ac_cpp conftest.$ac_ext\"") >&5
11601+if { (eval echo "$as_me:2725: \"$ac_cpp conftest.$ac_ext\"") >&5
11602   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
11603   ac_status=$?
11604   egrep -v '^ *\+' conftest.er1 >conftest.err
11605   rm -f conftest.er1
11606   cat conftest.err >&5
11607-  echo "$as_me:2628: \$? = $ac_status" >&5
11608+  echo "$as_me:2731: \$? = $ac_status" >&5
11609   (exit $ac_status); } >/dev/null; then
11610   if test -s conftest.err; then
11611     ac_cpp_err=$ac_c_preproc_warn_flag
11612@@ -2653,7 +2756,7 @@
11613 if $ac_preproc_ok; then
11614   :
11615 else
11616-  { { echo "$as_me:2656: error: C preprocessor \"$CPP\" fails sanity check" >&5
11617+  { { echo "$as_me:2759: error: C preprocessor \"$CPP\" fails sanity check" >&5
11618 echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check" >&2;}
11619    { (exit 1); exit 1; }; }
11620 fi
11621@@ -2666,14 +2769,14 @@
11622 ac_main_return=return
11623
11624 if test $ac_cv_c_compiler_gnu = yes; then
11625-    echo "$as_me:2669: checking whether $CC needs -traditional" >&5
11626+    echo "$as_me:2772: checking whether $CC needs -traditional" >&5
11627 echo $ECHO_N "checking whether $CC needs -traditional... $ECHO_C" >&6
11628 if test "${ac_cv_prog_gcc_traditional+set}" = set; then
11629   echo $ECHO_N "(cached) $ECHO_C" >&6
11630 else
11631     ac_pattern="Autoconf.*'x'"
11632   cat >conftest.$ac_ext <<_ACEOF
11633-#line 2676 "configure"
11634+#line 2779 "configure"
11635 #include "confdefs.h"
11636 #include <sgtty.h>
11637 int Autoconf = TIOCGETP;
11638@@ -2688,7 +2791,7 @@
11639
11640   if test $ac_cv_prog_gcc_traditional = no; then
11641     cat >conftest.$ac_ext <<_ACEOF
11642-#line 2691 "configure"
11643+#line 2794 "configure"
11644 #include "confdefs.h"
11645 #include <termio.h>
11646 int Autoconf = TCGETA;
11647@@ -2701,14 +2804,14 @@
11648
11649   fi
11650 fi
11651-echo "$as_me:2704: result: $ac_cv_prog_gcc_traditional" >&5
11652+echo "$as_me:2807: result: $ac_cv_prog_gcc_traditional" >&5
11653 echo "${ECHO_T}$ac_cv_prog_gcc_traditional" >&6
11654   if test $ac_cv_prog_gcc_traditional = yes; then
11655     CC="$CC -traditional"
11656   fi
11657 fi
11658
11659-echo "$as_me:2711: checking whether $CC understands -c and -o together" >&5
11660+echo "$as_me:2814: checking whether $CC understands -c and -o together" >&5
11661 echo $ECHO_N "checking whether $CC understands -c and -o together... $ECHO_C" >&6
11662 if test "${cf_cv_prog_CC_c_o+set}" = set; then
11663   echo $ECHO_N "(cached) $ECHO_C" >&6
11664@@ -2723,15 +2826,15 @@
11665 # We do the test twice because some compilers refuse to overwrite an
11666 # existing .o file with -o, though they will create one.
11667 ac_try='$CC $CFLAGS $CPPFLAGS -c conftest.$ac_ext -o conftest2.$ac_objext >&5'
11668-if { (eval echo "$as_me:2726: \"$ac_try\"") >&5
11669+if { (eval echo "$as_me:2829: \"$ac_try\"") >&5
11670   (eval $ac_try) 2>&5
11671   ac_status=$?
11672-  echo "$as_me:2729: \$? = $ac_status" >&5
11673+  echo "$as_me:2832: \$? = $ac_status" >&5
11674   (exit $ac_status); } &&
11675-  test -f conftest2.$ac_objext && { (eval echo "$as_me:2731: \"$ac_try\"") >&5
11676+  test -f conftest2.$ac_objext && { (eval echo "$as_me:2834: \"$ac_try\"") >&5
11677   (eval $ac_try) 2>&5
11678   ac_status=$?
11679-  echo "$as_me:2734: \$? = $ac_status" >&5
11680+  echo "$as_me:2837: \$? = $ac_status" >&5
11681   (exit $ac_status); };
11682 then
11683   eval cf_cv_prog_CC_c_o=yes
11684@@ -2742,10 +2845,10 @@
11685
11686 fi
11687 if test $cf_cv_prog_CC_c_o = yes; then
11688-  echo "$as_me:2745: result: yes" >&5
11689+  echo "$as_me:2848: result: yes" >&5
11690 echo "${ECHO_T}yes" >&6
11691 else
11692-  echo "$as_me:2748: result: no" >&5
11693+  echo "$as_me:2851: result: no" >&5
11694 echo "${ECHO_T}no" >&6
11695 fi
11696
11697@@ -2759,7 +2862,7 @@
11698 	(*) LDPATH=$PATH:/sbin:/usr/sbin
11699 		# Extract the first word of "ldconfig", so it can be a program name with args.
11700 set dummy ldconfig; ac_word=$2
11701-echo "$as_me:2762: checking for $ac_word" >&5
11702+echo "$as_me:2865: checking for $ac_word" >&5
11703 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
11704 if test "${ac_cv_path_LDCONFIG+set}" = set; then
11705   echo $ECHO_N "(cached) $ECHO_C" >&6
11706@@ -2776,7 +2879,7 @@
11707   test -z "$ac_dir" && ac_dir=.
11708   if $as_executable_p "$ac_dir/$ac_word"; then
11709    ac_cv_path_LDCONFIG="$ac_dir/$ac_word"
11710-   echo "$as_me:2779: found $ac_dir/$ac_word" >&5
11711+   echo "$as_me:2882: found $ac_dir/$ac_word" >&5
11712    break
11713 fi
11714 done
11715@@ -2787,10 +2890,10 @@
11716 LDCONFIG=$ac_cv_path_LDCONFIG
11717
11718 if test -n "$LDCONFIG"; then
11719-  echo "$as_me:2790: result: $LDCONFIG" >&5
11720+  echo "$as_me:2893: result: $LDCONFIG" >&5
11721 echo "${ECHO_T}$LDCONFIG" >&6
11722 else
11723-  echo "$as_me:2793: result: no" >&5
11724+  echo "$as_me:2896: result: no" >&5
11725 echo "${ECHO_T}no" >&6
11726 fi
11727
11728@@ -2798,7 +2901,7 @@
11729 	esac
11730 fi
11731
11732-echo "$as_me:2801: checking if you want to ensure bool is consistent with C++" >&5
11733+echo "$as_me:2904: checking if you want to ensure bool is consistent with C++" >&5
11734 echo $ECHO_N "checking if you want to ensure bool is consistent with C++... $ECHO_C" >&6
11735
11736 # Check whether --with-cxx or --without-cxx was given.
11737@@ -2808,7 +2911,7 @@
11738 else
11739   cf_with_cxx=yes
11740 fi;
11741-echo "$as_me:2811: result: $cf_with_cxx" >&5
11742+echo "$as_me:2914: result: $cf_with_cxx" >&5
11743 echo "${ECHO_T}$cf_with_cxx" >&6
11744 if test "X$cf_with_cxx" = Xno ; then
11745 	CXX=""
11746@@ -2826,7 +2929,7 @@
11747   do
11748     # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
11749 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
11750-echo "$as_me:2829: checking for $ac_word" >&5
11751+echo "$as_me:2932: checking for $ac_word" >&5
11752 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
11753 if test "${ac_cv_prog_CXX+set}" = set; then
11754   echo $ECHO_N "(cached) $ECHO_C" >&6
11755@@ -2841,7 +2944,7 @@
11756   test -z "$ac_dir" && ac_dir=.
11757   $as_executable_p "$ac_dir/$ac_word" || continue
11758 ac_cv_prog_CXX="$ac_tool_prefix$ac_prog"
11759-echo "$as_me:2844: found $ac_dir/$ac_word" >&5
11760+echo "$as_me:2947: found $ac_dir/$ac_word" >&5
11761 break
11762 done
11763
11764@@ -2849,10 +2952,10 @@
11765 fi
11766 CXX=$ac_cv_prog_CXX
11767 if test -n "$CXX"; then
11768-  echo "$as_me:2852: result: $CXX" >&5
11769+  echo "$as_me:2955: result: $CXX" >&5
11770 echo "${ECHO_T}$CXX" >&6
11771 else
11772-  echo "$as_me:2855: result: no" >&5
11773+  echo "$as_me:2958: result: no" >&5
11774 echo "${ECHO_T}no" >&6
11775 fi
11776
11777@@ -2865,7 +2968,7 @@
11778 do
11779   # Extract the first word of "$ac_prog", so it can be a program name with args.
11780 set dummy $ac_prog; ac_word=$2
11781-echo "$as_me:2868: checking for $ac_word" >&5
11782+echo "$as_me:2971: checking for $ac_word" >&5
11783 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
11784 if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then
11785   echo $ECHO_N "(cached) $ECHO_C" >&6
11786@@ -2880,7 +2983,7 @@
11787   test -z "$ac_dir" && ac_dir=.
11788   $as_executable_p "$ac_dir/$ac_word" || continue
11789 ac_cv_prog_ac_ct_CXX="$ac_prog"
11790-echo "$as_me:2883: found $ac_dir/$ac_word" >&5
11791+echo "$as_me:2986: found $ac_dir/$ac_word" >&5
11792 break
11793 done
11794
11795@@ -2888,10 +2991,10 @@
11796 fi
11797 ac_ct_CXX=$ac_cv_prog_ac_ct_CXX
11798 if test -n "$ac_ct_CXX"; then
11799-  echo "$as_me:2891: result: $ac_ct_CXX" >&5
11800+  echo "$as_me:2994: result: $ac_ct_CXX" >&5
11801 echo "${ECHO_T}$ac_ct_CXX" >&6
11802 else
11803-  echo "$as_me:2894: result: no" >&5
11804+  echo "$as_me:2997: result: no" >&5
11805 echo "${ECHO_T}no" >&6
11806 fi
11807
11808@@ -2903,32 +3006,32 @@
11809 fi
11810
11811 # Provide some information about the compiler.
11812-echo "$as_me:2906:" \
11813+echo "$as_me:3009:" \
11814      "checking for C++ compiler version" >&5
11815 ac_compiler=`set X $ac_compile; echo $2`
11816-{ (eval echo "$as_me:2909: \"$ac_compiler --version </dev/null >&5\"") >&5
11817+{ (eval echo "$as_me:3012: \"$ac_compiler --version </dev/null >&5\"") >&5
11818   (eval $ac_compiler --version </dev/null >&5) 2>&5
11819   ac_status=$?
11820-  echo "$as_me:2912: \$? = $ac_status" >&5
11821+  echo "$as_me:3015: \$? = $ac_status" >&5
11822   (exit $ac_status); }
11823-{ (eval echo "$as_me:2914: \"$ac_compiler -v </dev/null >&5\"") >&5
11824+{ (eval echo "$as_me:3017: \"$ac_compiler -v </dev/null >&5\"") >&5
11825   (eval $ac_compiler -v </dev/null >&5) 2>&5
11826   ac_status=$?
11827-  echo "$as_me:2917: \$? = $ac_status" >&5
11828+  echo "$as_me:3020: \$? = $ac_status" >&5
11829   (exit $ac_status); }
11830-{ (eval echo "$as_me:2919: \"$ac_compiler -V </dev/null >&5\"") >&5
11831+{ (eval echo "$as_me:3022: \"$ac_compiler -V </dev/null >&5\"") >&5
11832   (eval $ac_compiler -V </dev/null >&5) 2>&5
11833   ac_status=$?
11834-  echo "$as_me:2922: \$? = $ac_status" >&5
11835+  echo "$as_me:3025: \$? = $ac_status" >&5
11836   (exit $ac_status); }
11837
11838-echo "$as_me:2925: checking whether we are using the GNU C++ compiler" >&5
11839+echo "$as_me:3028: checking whether we are using the GNU C++ compiler" >&5
11840 echo $ECHO_N "checking whether we are using the GNU C++ compiler... $ECHO_C" >&6
11841 if test "${ac_cv_cxx_compiler_gnu+set}" = set; then
11842   echo $ECHO_N "(cached) $ECHO_C" >&6
11843 else
11844   cat >conftest.$ac_ext <<_ACEOF
11845-#line 2931 "configure"
11846+#line 3034 "configure"
11847 #include "confdefs.h"
11848
11849 int
11850@@ -2943,16 +3046,16 @@
11851 }
11852 _ACEOF
11853 rm -f conftest.$ac_objext
11854-if { (eval echo "$as_me:2946: \"$ac_compile\"") >&5
11855+if { (eval echo "$as_me:3049: \"$ac_compile\"") >&5
11856   (eval $ac_compile) 2>&5
11857   ac_status=$?
11858-  echo "$as_me:2949: \$? = $ac_status" >&5
11859+  echo "$as_me:3052: \$? = $ac_status" >&5
11860   (exit $ac_status); } &&
11861          { ac_try='test -s conftest.$ac_objext'
11862-  { (eval echo "$as_me:2952: \"$ac_try\"") >&5
11863+  { (eval echo "$as_me:3055: \"$ac_try\"") >&5
11864   (eval $ac_try) 2>&5
11865   ac_status=$?
11866-  echo "$as_me:2955: \$? = $ac_status" >&5
11867+  echo "$as_me:3058: \$? = $ac_status" >&5
11868   (exit $ac_status); }; }; then
11869   ac_compiler_gnu=yes
11870 else
11871@@ -2964,19 +3067,19 @@
11872 ac_cv_cxx_compiler_gnu=$ac_compiler_gnu
11873
11874 fi
11875-echo "$as_me:2967: result: $ac_cv_cxx_compiler_gnu" >&5
11876+echo "$as_me:3070: result: $ac_cv_cxx_compiler_gnu" >&5
11877 echo "${ECHO_T}$ac_cv_cxx_compiler_gnu" >&6
11878 GXX=`test $ac_compiler_gnu = yes && echo yes`
11879 ac_test_CXXFLAGS=${CXXFLAGS+set}
11880 ac_save_CXXFLAGS=$CXXFLAGS
11881 CXXFLAGS="-g"
11882-echo "$as_me:2973: checking whether $CXX accepts -g" >&5
11883+echo "$as_me:3076: checking whether $CXX accepts -g" >&5
11884 echo $ECHO_N "checking whether $CXX accepts -g... $ECHO_C" >&6
11885 if test "${ac_cv_prog_cxx_g+set}" = set; then
11886   echo $ECHO_N "(cached) $ECHO_C" >&6
11887 else
11888   cat >conftest.$ac_ext <<_ACEOF
11889-#line 2979 "configure"
11890+#line 3082 "configure"
11891 #include "confdefs.h"
11892
11893 int
11894@@ -2988,16 +3091,16 @@
11895 }
11896 _ACEOF
11897 rm -f conftest.$ac_objext
11898-if { (eval echo "$as_me:2991: \"$ac_compile\"") >&5
11899+if { (eval echo "$as_me:3094: \"$ac_compile\"") >&5
11900   (eval $ac_compile) 2>&5
11901   ac_status=$?
11902-  echo "$as_me:2994: \$? = $ac_status" >&5
11903+  echo "$as_me:3097: \$? = $ac_status" >&5
11904   (exit $ac_status); } &&
11905          { ac_try='test -s conftest.$ac_objext'
11906-  { (eval echo "$as_me:2997: \"$ac_try\"") >&5
11907+  { (eval echo "$as_me:3100: \"$ac_try\"") >&5
11908   (eval $ac_try) 2>&5
11909   ac_status=$?
11910-  echo "$as_me:3000: \$? = $ac_status" >&5
11911+  echo "$as_me:3103: \$? = $ac_status" >&5
11912   (exit $ac_status); }; }; then
11913   ac_cv_prog_cxx_g=yes
11914 else
11915@@ -3007,7 +3110,7 @@
11916 fi
11917 rm -f conftest.$ac_objext conftest.$ac_ext
11918 fi
11919-echo "$as_me:3010: result: $ac_cv_prog_cxx_g" >&5
11920+echo "$as_me:3113: result: $ac_cv_prog_cxx_g" >&5
11921 echo "${ECHO_T}$ac_cv_prog_cxx_g" >&6
11922 if test "$ac_test_CXXFLAGS" = set; then
11923   CXXFLAGS=$ac_save_CXXFLAGS
11924@@ -3034,7 +3137,7 @@
11925    'void exit (int);'
11926 do
11927   cat >conftest.$ac_ext <<_ACEOF
11928-#line 3037 "configure"
11929+#line 3140 "configure"
11930 #include "confdefs.h"
11931 #include <stdlib.h>
11932 $ac_declaration
11933@@ -3047,16 +3150,16 @@
11934 }
11935 _ACEOF
11936 rm -f conftest.$ac_objext
11937-if { (eval echo "$as_me:3050: \"$ac_compile\"") >&5
11938+if { (eval echo "$as_me:3153: \"$ac_compile\"") >&5
11939   (eval $ac_compile) 2>&5
11940   ac_status=$?
11941-  echo "$as_me:3053: \$? = $ac_status" >&5
11942+  echo "$as_me:3156: \$? = $ac_status" >&5
11943   (exit $ac_status); } &&
11944          { ac_try='test -s conftest.$ac_objext'
11945-  { (eval echo "$as_me:3056: \"$ac_try\"") >&5
11946+  { (eval echo "$as_me:3159: \"$ac_try\"") >&5
11947   (eval $ac_try) 2>&5
11948   ac_status=$?
11949-  echo "$as_me:3059: \$? = $ac_status" >&5
11950+  echo "$as_me:3162: \$? = $ac_status" >&5
11951   (exit $ac_status); }; }; then
11952   :
11953 else
11954@@ -3066,7 +3169,7 @@
11955 fi
11956 rm -f conftest.$ac_objext conftest.$ac_ext
11957   cat >conftest.$ac_ext <<_ACEOF
11958-#line 3069 "configure"
11959+#line 3172 "configure"
11960 #include "confdefs.h"
11961 $ac_declaration
11962 int
11963@@ -3078,16 +3181,16 @@
11964 }
11965 _ACEOF
11966 rm -f conftest.$ac_objext
11967-if { (eval echo "$as_me:3081: \"$ac_compile\"") >&5
11968+if { (eval echo "$as_me:3184: \"$ac_compile\"") >&5
11969   (eval $ac_compile) 2>&5
11970   ac_status=$?
11971-  echo "$as_me:3084: \$? = $ac_status" >&5
11972+  echo "$as_me:3187: \$? = $ac_status" >&5
11973   (exit $ac_status); } &&
11974          { ac_try='test -s conftest.$ac_objext'
11975-  { (eval echo "$as_me:3087: \"$ac_try\"") >&5
11976+  { (eval echo "$as_me:3190: \"$ac_try\"") >&5
11977   (eval $ac_try) 2>&5
11978   ac_status=$?
11979-  echo "$as_me:3090: \$? = $ac_status" >&5
11980+  echo "$as_me:3193: \$? = $ac_status" >&5
11981   (exit $ac_status); }; }; then
11982   break
11983 else
11984@@ -3121,7 +3224,7 @@
11985 	then
11986 		# Several of the C++ configurations do not work, particularly when
11987 		# cross-compiling (20140913 -TD)
11988-		echo "$as_me:3124: checking if $CXX works" >&5
11989+		echo "$as_me:3227: checking if $CXX works" >&5
11990 echo $ECHO_N "checking if $CXX works... $ECHO_C" >&6
11991
11992 		save_CPPFLAGS="$CPPFLAGS"
11993@@ -3129,7 +3232,7 @@
11994 		CPPFLAGS="$CPPFLAGS -I${cf_includedir}"
11995
11996 cat >conftest.$ac_ext <<_ACEOF
11997-#line 3132 "configure"
11998+#line 3235 "configure"
11999 #include "confdefs.h"
12000
12001 #include <stdlib.h>
12002@@ -3146,16 +3249,16 @@
12003 }
12004 _ACEOF
12005 rm -f conftest.$ac_objext
12006-if { (eval echo "$as_me:3149: \"$ac_compile\"") >&5
12007+if { (eval echo "$as_me:3252: \"$ac_compile\"") >&5
12008   (eval $ac_compile) 2>&5
12009   ac_status=$?
12010-  echo "$as_me:3152: \$? = $ac_status" >&5
12011+  echo "$as_me:3255: \$? = $ac_status" >&5
12012   (exit $ac_status); } &&
12013          { ac_try='test -s conftest.$ac_objext'
12014-  { (eval echo "$as_me:3155: \"$ac_try\"") >&5
12015+  { (eval echo "$as_me:3258: \"$ac_try\"") >&5
12016   (eval $ac_try) 2>&5
12017   ac_status=$?
12018-  echo "$as_me:3158: \$? = $ac_status" >&5
12019+  echo "$as_me:3261: \$? = $ac_status" >&5
12020   (exit $ac_status); }; }; then
12021   cf_cxx_works=yes
12022 else
12023@@ -3166,11 +3269,11 @@
12024 rm -f conftest.$ac_objext conftest.$ac_ext
12025 		CPPFLAGS="$save_CPPFLAGS"
12026
12027-		echo "$as_me:3169: result: $cf_cxx_works" >&5
12028+		echo "$as_me:3272: result: $cf_cxx_works" >&5
12029 echo "${ECHO_T}$cf_cxx_works" >&6
12030 		if test "x$cf_cxx_works" = xno
12031 		then
12032-			{ echo "$as_me:3173: WARNING: Ignore $CXX, since it cannot compile hello-world." >&5
12033+			{ echo "$as_me:3276: WARNING: Ignore $CXX, since it cannot compile hello-world." >&5
12034 echo "$as_me: WARNING: Ignore $CXX, since it cannot compile hello-world." >&2;}
12035 			cf_with_cxx=no; CXX=""; GXX="";
12036 		fi
12037@@ -3186,7 +3289,7 @@
12038 	if test "$CXX" = "g++" ; then
12039 		# Extract the first word of "g++", so it can be a program name with args.
12040 set dummy g++; ac_word=$2
12041-echo "$as_me:3189: checking for $ac_word" >&5
12042+echo "$as_me:3292: checking for $ac_word" >&5
12043 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
12044 if test "${ac_cv_path_CXX+set}" = set; then
12045   echo $ECHO_N "(cached) $ECHO_C" >&6
12046@@ -3203,7 +3306,7 @@
12047   test -z "$ac_dir" && ac_dir=.
12048   if $as_executable_p "$ac_dir/$ac_word"; then
12049    ac_cv_path_CXX="$ac_dir/$ac_word"
12050-   echo "$as_me:3206: found $ac_dir/$ac_word" >&5
12051+   echo "$as_me:3309: found $ac_dir/$ac_word" >&5
12052    break
12053 fi
12054 done
12055@@ -3214,17 +3317,17 @@
12056 CXX=$ac_cv_path_CXX
12057
12058 if test -n "$CXX"; then
12059-  echo "$as_me:3217: result: $CXX" >&5
12060+  echo "$as_me:3320: result: $CXX" >&5
12061 echo "${ECHO_T}$CXX" >&6
12062 else
12063-  echo "$as_me:3220: result: no" >&5
12064+  echo "$as_me:3323: result: no" >&5
12065 echo "${ECHO_T}no" >&6
12066 fi
12067
12068 	fi
12069 	case "x$CXX" in
12070 	(x|xg++)
12071-		{ echo "$as_me:3227: WARNING: You don't have any C++ compiler, too bad" >&5
12072+		{ echo "$as_me:3330: WARNING: You don't have any C++ compiler, too bad" >&5
12073 echo "$as_me: WARNING: You don't have any C++ compiler, too bad" >&2;}
12074 		cf_with_cxx=no; CXX=""; GXX="";
12075 		;;
12076@@ -3233,7 +3336,7 @@
12077
12078 GXX_VERSION=none
12079 if test "$GXX" = yes; then
12080-	echo "$as_me:3236: checking version of ${CXX:-g++}" >&5
12081+	echo "$as_me:3339: checking version of ${CXX:-g++}" >&5
12082 echo $ECHO_N "checking version of ${CXX:-g++}... $ECHO_C" >&6
12083 	GXX_VERSION="`${CXX:-g++} --version| sed -e '2,$d' -e 's/^.*(GCC) //' -e 's/^[^0-9.]*//' -e 's/[^0-9.].*//'`"
12084 	if test -z "$GXX_VERSION"
12085@@ -3241,7 +3344,7 @@
12086 		GXX_VERSION=unknown
12087 		GXX=no
12088 	fi
12089-	echo "$as_me:3244: result: $GXX_VERSION" >&5
12090+	echo "$as_me:3347: result: $GXX_VERSION" >&5
12091 echo "${ECHO_T}$GXX_VERSION" >&6
12092 fi
12093
12094@@ -3249,12 +3352,12 @@
12095 (1*|2.[0-6]*)
12096 	# GXX=""; CXX=""; ac_cv_prog_gxx=no
12097 	# cf_cxx_library=no
12098-	{ echo "$as_me:3252: WARNING: templates do not work" >&5
12099+	{ echo "$as_me:3355: WARNING: templates do not work" >&5
12100 echo "$as_me: WARNING: templates do not work" >&2;}
12101 	;;
12102 esac
12103
12104-echo "$as_me:3257: checking if you want to build C++ binding and demo" >&5
12105+echo "$as_me:3360: checking if you want to build C++ binding and demo" >&5
12106 echo $ECHO_N "checking if you want to build C++ binding and demo... $ECHO_C" >&6
12107
12108 # Check whether --with-cxx-binding or --without-cxx-binding was given.
12109@@ -3264,15 +3367,15 @@
12110 else
12111   cf_with_cxx_binding=$cf_with_cxx
12112 fi;
12113-echo "$as_me:3267: result: $cf_with_cxx_binding" >&5
12114+echo "$as_me:3370: result: $cf_with_cxx_binding" >&5
12115 echo "${ECHO_T}$cf_with_cxx_binding" >&6
12116
12117-echo "$as_me:3270: checking if you want to build with Ada95" >&5
12118-echo $ECHO_N "checking if you want to build with Ada95... $ECHO_C" >&6
12119-echo "$as_me:3272: result: $cf_with_ada" >&5
12120+echo "$as_me:3373: checking if you want to build with Ada" >&5
12121+echo $ECHO_N "checking if you want to build with Ada... $ECHO_C" >&6
12122+echo "$as_me:3375: result: $cf_with_ada" >&5
12123 echo "${ECHO_T}$cf_with_ada" >&6
12124
12125-echo "$as_me:3275: checking if you want to install terminal database" >&5
12126+echo "$as_me:3378: checking if you want to install terminal database" >&5
12127 echo $ECHO_N "checking if you want to install terminal database... $ECHO_C" >&6
12128
12129 # Check whether --enable-db-install or --disable-db-install was given.
12130@@ -3282,10 +3385,10 @@
12131 else
12132   cf_with_db_install=yes
12133 fi;
12134-echo "$as_me:3285: result: $cf_with_db_install" >&5
12135+echo "$as_me:3388: result: $cf_with_db_install" >&5
12136 echo "${ECHO_T}$cf_with_db_install" >&6
12137
12138-echo "$as_me:3288: checking if you want to install manpages" >&5
12139+echo "$as_me:3391: checking if you want to install manpages" >&5
12140 echo $ECHO_N "checking if you want to install manpages... $ECHO_C" >&6
12141
12142 # Check whether --with-manpages or --without-manpages was given.
12143@@ -3295,10 +3398,10 @@
12144 else
12145   cf_with_manpages=yes
12146 fi;
12147-echo "$as_me:3298: result: $cf_with_manpages" >&5
12148+echo "$as_me:3401: result: $cf_with_manpages" >&5
12149 echo "${ECHO_T}$cf_with_manpages" >&6
12150
12151-echo "$as_me:3301: checking if you want to build programs such as tic" >&5
12152+echo "$as_me:3404: checking if you want to build programs such as tic" >&5
12153 echo $ECHO_N "checking if you want to build programs such as tic... $ECHO_C" >&6
12154
12155 # Check whether --with-progs or --without-progs was given.
12156@@ -3308,18 +3411,18 @@
12157 else
12158   cf_with_progs=yes
12159 fi;
12160-echo "$as_me:3311: result: $cf_with_progs" >&5
12161+echo "$as_me:3414: result: $cf_with_progs" >&5
12162 echo "${ECHO_T}$cf_with_progs" >&6
12163
12164 if test -f $srcdir/tack/tack.h; then
12165 	if test "x$cross_compiling" = xyes ; then
12166 		test -n "$verbose" && echo "	ignoring tack because we are cross-compiling" 1>&6
12167
12168-echo "${as_me:-configure}:3318: testing ignoring tack because we are cross-compiling ..." 1>&5
12169+echo "${as_me:-configure}:3421: testing ignoring tack because we are cross-compiling ..." 1>&5
12170
12171 		cf_with_tack=no
12172 	else
12173-		echo "$as_me:3322: checking if you want to build the tack program" >&5
12174+		echo "$as_me:3425: checking if you want to build the tack program" >&5
12175 echo $ECHO_N "checking if you want to build the tack program... $ECHO_C" >&6
12176
12177 # Check whether --with-tack or --without-tack was given.
12178@@ -3329,14 +3432,14 @@
12179 else
12180   cf_with_tack=$cf_with_progs
12181 fi;
12182-		echo "$as_me:3332: result: $cf_with_tack" >&5
12183+		echo "$as_me:3435: result: $cf_with_tack" >&5
12184 echo "${ECHO_T}$cf_with_tack" >&6
12185 	fi
12186 else
12187 	cf_with_tack=no
12188 fi
12189
12190-echo "$as_me:3339: checking if you want to build test-programs" >&5
12191+echo "$as_me:3442: checking if you want to build test-programs" >&5
12192 echo $ECHO_N "checking if you want to build test-programs... $ECHO_C" >&6
12193
12194 # Check whether --with-tests or --without-tests was given.
12195@@ -3346,10 +3449,10 @@
12196 else
12197   cf_with_tests=yes
12198 fi;
12199-echo "$as_me:3349: result: $cf_with_tests" >&5
12200+echo "$as_me:3452: result: $cf_with_tests" >&5
12201 echo "${ECHO_T}$cf_with_tests" >&6
12202
12203-echo "$as_me:3352: checking if you wish to install curses.h" >&5
12204+echo "$as_me:3455: checking if you wish to install curses.h" >&5
12205 echo $ECHO_N "checking if you wish to install curses.h... $ECHO_C" >&6
12206
12207 # Check whether --with-curses-h or --without-curses-h was given.
12208@@ -3359,7 +3462,7 @@
12209 else
12210   with_curses_h=yes
12211 fi;
12212-echo "$as_me:3362: result: $with_curses_h" >&5
12213+echo "$as_me:3465: result: $with_curses_h" >&5
12214 echo "${ECHO_T}$with_curses_h" >&6
12215
12216 modules_to_build="ncurses"
12217@@ -3384,7 +3487,7 @@
12218 do
12219   # Extract the first word of "$ac_prog", so it can be a program name with args.
12220 set dummy $ac_prog; ac_word=$2
12221-echo "$as_me:3387: checking for $ac_word" >&5
12222+echo "$as_me:3490: checking for $ac_word" >&5
12223 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
12224 if test "${ac_cv_prog_AWK+set}" = set; then
12225   echo $ECHO_N "(cached) $ECHO_C" >&6
12226@@ -3399,7 +3502,7 @@
12227   test -z "$ac_dir" && ac_dir=.
12228   $as_executable_p "$ac_dir/$ac_word" || continue
12229 ac_cv_prog_AWK="$ac_prog"
12230-echo "$as_me:3402: found $ac_dir/$ac_word" >&5
12231+echo "$as_me:3505: found $ac_dir/$ac_word" >&5
12232 break
12233 done
12234
12235@@ -3407,21 +3510,21 @@
12236 fi
12237 AWK=$ac_cv_prog_AWK
12238 if test -n "$AWK"; then
12239-  echo "$as_me:3410: result: $AWK" >&5
12240+  echo "$as_me:3513: result: $AWK" >&5
12241 echo "${ECHO_T}$AWK" >&6
12242 else
12243-  echo "$as_me:3413: result: no" >&5
12244+  echo "$as_me:3516: result: no" >&5
12245 echo "${ECHO_T}no" >&6
12246 fi
12247
12248   test -n "$AWK" && break
12249 done
12250
12251-test -z "$AWK" && { { echo "$as_me:3420: error: No awk program found" >&5
12252+test -z "$AWK" && { { echo "$as_me:3523: error: No awk program found" >&5
12253 echo "$as_me: error: No awk program found" >&2;}
12254    { (exit 1); exit 1; }; }
12255
12256-echo "$as_me:3424: checking for egrep" >&5
12257+echo "$as_me:3527: checking for egrep" >&5
12258 echo $ECHO_N "checking for egrep... $ECHO_C" >&6
12259 if test "${ac_cv_prog_egrep+set}" = set; then
12260   echo $ECHO_N "(cached) $ECHO_C" >&6
12261@@ -3431,11 +3534,11 @@
12262 		else ac_cv_prog_egrep='egrep'
12263 	fi
12264 fi
12265-echo "$as_me:3434: result: $ac_cv_prog_egrep" >&5
12266+echo "$as_me:3537: result: $ac_cv_prog_egrep" >&5
12267 echo "${ECHO_T}$ac_cv_prog_egrep" >&6
12268 	EGREP=$ac_cv_prog_egrep
12269
12270-	test -z "$EGREP" && { { echo "$as_me:3438: error: No egrep program found" >&5
12271+	test -z "$EGREP" && { { echo "$as_me:3541: error: No egrep program found" >&5
12272 echo "$as_me: error: No egrep program found" >&2;}
12273    { (exit 1); exit 1; }; }
12274
12275@@ -3451,7 +3554,7 @@
12276 # AFS /usr/afsws/bin/install, which mishandles nonexistent args
12277 # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
12278 # ./install, which can be erroneously created by make from ./install.sh.
12279-echo "$as_me:3454: checking for a BSD compatible install" >&5
12280+echo "$as_me:3557: checking for a BSD compatible install" >&5
12281 echo $ECHO_N "checking for a BSD compatible install... $ECHO_C" >&6
12282 if test -z "$INSTALL"; then
12283 if test "${ac_cv_path_install+set}" = set; then
12284@@ -3500,7 +3603,7 @@
12285     INSTALL=$ac_install_sh
12286   fi
12287 fi
12288-echo "$as_me:3503: result: $INSTALL" >&5
12289+echo "$as_me:3606: result: $INSTALL" >&5
12290 echo "${ECHO_T}$INSTALL" >&6
12291
12292 # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
12293@@ -3525,7 +3628,7 @@
12294 do
12295   # Extract the first word of "$ac_prog", so it can be a program name with args.
12296 set dummy $ac_prog; ac_word=$2
12297-echo "$as_me:3528: checking for $ac_word" >&5
12298+echo "$as_me:3631: checking for $ac_word" >&5
12299 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
12300 if test "${ac_cv_prog_LINT+set}" = set; then
12301   echo $ECHO_N "(cached) $ECHO_C" >&6
12302@@ -3540,7 +3643,7 @@
12303   test -z "$ac_dir" && ac_dir=.
12304   $as_executable_p "$ac_dir/$ac_word" || continue
12305 ac_cv_prog_LINT="$ac_prog"
12306-echo "$as_me:3543: found $ac_dir/$ac_word" >&5
12307+echo "$as_me:3646: found $ac_dir/$ac_word" >&5
12308 break
12309 done
12310
12311@@ -3548,28 +3651,28 @@
12312 fi
12313 LINT=$ac_cv_prog_LINT
12314 if test -n "$LINT"; then
12315-  echo "$as_me:3551: result: $LINT" >&5
12316+  echo "$as_me:3654: result: $LINT" >&5
12317 echo "${ECHO_T}$LINT" >&6
12318 else
12319-  echo "$as_me:3554: result: no" >&5
12320+  echo "$as_me:3657: result: no" >&5
12321 echo "${ECHO_T}no" >&6
12322 fi
12323
12324   test -n "$LINT" && break
12325 done
12326
12327-echo "$as_me:3561: checking whether ln -s works" >&5
12328+echo "$as_me:3664: checking whether ln -s works" >&5
12329 echo $ECHO_N "checking whether ln -s works... $ECHO_C" >&6
12330 LN_S=$as_ln_s
12331 if test "$LN_S" = "ln -s"; then
12332-  echo "$as_me:3565: result: yes" >&5
12333+  echo "$as_me:3668: result: yes" >&5
12334 echo "${ECHO_T}yes" >&6
12335 else
12336-  echo "$as_me:3568: result: no, using $LN_S" >&5
12337+  echo "$as_me:3671: result: no, using $LN_S" >&5
12338 echo "${ECHO_T}no, using $LN_S" >&6
12339 fi
12340
12341-echo "$as_me:3572: checking if $LN_S -f options work" >&5
12342+echo "$as_me:3675: checking if $LN_S -f options work" >&5
12343 echo $ECHO_N "checking if $LN_S -f options work... $ECHO_C" >&6
12344
12345 rm -f conf$$.src conf$$dst
12346@@ -3581,12 +3684,12 @@
12347 	cf_prog_ln_sf=no
12348 fi
12349 rm -f conf$$.dst conf$$src
12350-echo "$as_me:3584: result: $cf_prog_ln_sf" >&5
12351+echo "$as_me:3687: result: $cf_prog_ln_sf" >&5
12352 echo "${ECHO_T}$cf_prog_ln_sf" >&6
12353
12354 test "$cf_prog_ln_sf" = yes && LN_S="$LN_S -f"
12355
12356-echo "$as_me:3589: checking for long file names" >&5
12357+echo "$as_me:3692: checking for long file names" >&5
12358 echo $ECHO_N "checking for long file names... $ECHO_C" >&6
12359 if test "${ac_cv_sys_long_file_names+set}" = set; then
12360   echo $ECHO_N "(cached) $ECHO_C" >&6
12361@@ -3625,7 +3728,7 @@
12362   rm -rf $ac_xdir 2>/dev/null
12363 done
12364 fi
12365-echo "$as_me:3628: result: $ac_cv_sys_long_file_names" >&5
12366+echo "$as_me:3731: result: $ac_cv_sys_long_file_names" >&5
12367 echo "${ECHO_T}$ac_cv_sys_long_file_names" >&6
12368 if test $ac_cv_sys_long_file_names = yes; then
12369
12370@@ -3644,7 +3747,7 @@
12371   withval="$with_config_suffix"
12372   case "x$withval" in
12373 	(xyes|xno)
12374-		{ echo "$as_me:3647: WARNING: expected a value for config-suffix option" >&5
12375+		{ echo "$as_me:3750: WARNING: expected a value for config-suffix option" >&5
12376 echo "$as_me: WARNING: expected a value for config-suffix option" >&2;}
12377 		;;
12378 	(*)	cf_config_suffix="$withval"
12379@@ -3654,7 +3757,7 @@
12380
12381 # If we find pkg-config, check if we should install the ".pc" files.
12382
12383-echo "$as_me:3657: checking if you want to use pkg-config" >&5
12384+echo "$as_me:3760: checking if you want to use pkg-config" >&5
12385 echo $ECHO_N "checking if you want to use pkg-config... $ECHO_C" >&6
12386
12387 # Check whether --with-pkg-config or --without-pkg-config was given.
12388@@ -3664,7 +3767,7 @@
12389 else
12390   cf_pkg_config=yes
12391 fi;
12392-echo "$as_me:3667: result: $cf_pkg_config" >&5
12393+echo "$as_me:3770: result: $cf_pkg_config" >&5
12394 echo "${ECHO_T}$cf_pkg_config" >&6
12395
12396 case $cf_pkg_config in
12397@@ -3676,7 +3779,7 @@
12398 if test -n "$ac_tool_prefix"; then
12399   # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args.
12400 set dummy ${ac_tool_prefix}pkg-config; ac_word=$2
12401-echo "$as_me:3679: checking for $ac_word" >&5
12402+echo "$as_me:3782: checking for $ac_word" >&5
12403 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
12404 if test "${ac_cv_path_PKG_CONFIG+set}" = set; then
12405   echo $ECHO_N "(cached) $ECHO_C" >&6
12406@@ -3693,7 +3796,7 @@
12407   test -z "$ac_dir" && ac_dir=.
12408   if $as_executable_p "$ac_dir/$ac_word"; then
12409    ac_cv_path_PKG_CONFIG="$ac_dir/$ac_word"
12410-   echo "$as_me:3696: found $ac_dir/$ac_word" >&5
12411+   echo "$as_me:3799: found $ac_dir/$ac_word" >&5
12412    break
12413 fi
12414 done
12415@@ -3704,10 +3807,10 @@
12416 PKG_CONFIG=$ac_cv_path_PKG_CONFIG
12417
12418 if test -n "$PKG_CONFIG"; then
12419-  echo "$as_me:3707: result: $PKG_CONFIG" >&5
12420+  echo "$as_me:3810: result: $PKG_CONFIG" >&5
12421 echo "${ECHO_T}$PKG_CONFIG" >&6
12422 else
12423-  echo "$as_me:3710: result: no" >&5
12424+  echo "$as_me:3813: result: no" >&5
12425 echo "${ECHO_T}no" >&6
12426 fi
12427
12428@@ -3716,7 +3819,7 @@
12429   ac_pt_PKG_CONFIG=$PKG_CONFIG
12430   # Extract the first word of "pkg-config", so it can be a program name with args.
12431 set dummy pkg-config; ac_word=$2
12432-echo "$as_me:3719: checking for $ac_word" >&5
12433+echo "$as_me:3822: checking for $ac_word" >&5
12434 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
12435 if test "${ac_cv_path_ac_pt_PKG_CONFIG+set}" = set; then
12436   echo $ECHO_N "(cached) $ECHO_C" >&6
12437@@ -3733,7 +3836,7 @@
12438   test -z "$ac_dir" && ac_dir=.
12439   if $as_executable_p "$ac_dir/$ac_word"; then
12440    ac_cv_path_ac_pt_PKG_CONFIG="$ac_dir/$ac_word"
12441-   echo "$as_me:3736: found $ac_dir/$ac_word" >&5
12442+   echo "$as_me:3839: found $ac_dir/$ac_word" >&5
12443    break
12444 fi
12445 done
12446@@ -3745,10 +3848,10 @@
12447 ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG
12448
12449 if test -n "$ac_pt_PKG_CONFIG"; then
12450-  echo "$as_me:3748: result: $ac_pt_PKG_CONFIG" >&5
12451+  echo "$as_me:3851: result: $ac_pt_PKG_CONFIG" >&5
12452 echo "${ECHO_T}$ac_pt_PKG_CONFIG" >&6
12453 else
12454-  echo "$as_me:3751: result: no" >&5
12455+  echo "$as_me:3854: result: no" >&5
12456 echo "${ECHO_T}no" >&6
12457 fi
12458
12459@@ -3791,24 +3894,24 @@
12460 	PKG_CONFIG=`echo $PKG_CONFIG | sed -e s%NONE%$cf_path_syntax%`
12461 	;;
12462 (*)
12463-	{ { echo "$as_me:3794: error: expected a pathname, not \"$PKG_CONFIG\"" >&5
12464+	{ { echo "$as_me:3897: error: expected a pathname, not \"$PKG_CONFIG\"" >&5
12465 echo "$as_me: error: expected a pathname, not \"$PKG_CONFIG\"" >&2;}
12466    { (exit 1); exit 1; }; }
12467 	;;
12468 esac
12469
12470 elif test "x$cf_pkg_config" != xno ; then
12471-	{ echo "$as_me:3801: WARNING: pkg-config is not installed" >&5
12472+	{ echo "$as_me:3904: WARNING: pkg-config is not installed" >&5
12473 echo "$as_me: WARNING: pkg-config is not installed" >&2;}
12474 fi
12475
12476 case $PKG_CONFIG in
12477 (no|none|yes)
12478-	echo "$as_me:3807: checking for pkg-config library directory" >&5
12479+	echo "$as_me:3910: checking for pkg-config library directory" >&5
12480 echo $ECHO_N "checking for pkg-config library directory... $ECHO_C" >&6
12481 	;;
12482 (*)
12483-	echo "$as_me:3811: checking for $PKG_CONFIG library directory" >&5
12484+	echo "$as_me:3914: checking for $PKG_CONFIG library directory" >&5
12485 echo $ECHO_N "checking for $PKG_CONFIG library directory... $ECHO_C" >&6
12486 	;;
12487 esac
12488@@ -3863,18 +3966,18 @@
12489
12490 	test -n "$verbose" && echo "	list..." 1>&6
12491
12492-echo "${as_me:-configure}:3866: testing list... ..." 1>&5
12493+echo "${as_me:-configure}:3969: testing list... ..." 1>&5
12494
12495 	for cf_config in $cf_search_path
12496 	do
12497 		test -n "$verbose" && echo "	checking $cf_config/pkgconfig" 1>&6
12498
12499-echo "${as_me:-configure}:3872: testing checking $cf_config/pkgconfig ..." 1>&5
12500+echo "${as_me:-configure}:3975: testing checking $cf_config/pkgconfig ..." 1>&5
12501
12502 		if test -d $cf_config/pkgconfig
12503 		then
12504 			PKG_CONFIG_LIBDIR=$cf_config/pkgconfig
12505-			echo "$as_me:3877: checking done" >&5
12506+			echo "$as_me:3980: checking done" >&5
12507 echo $ECHO_N "checking done... $ECHO_C" >&6
12508 			break
12509 		fi
12510@@ -3885,16 +3988,16 @@
12511 esac
12512
12513 if test "x$PKG_CONFIG_LIBDIR" != xno ; then
12514-	echo "$as_me:3888: result: $PKG_CONFIG_LIBDIR" >&5
12515+	echo "$as_me:3991: result: $PKG_CONFIG_LIBDIR" >&5
12516 echo "${ECHO_T}$PKG_CONFIG_LIBDIR" >&6
12517 fi
12518
12519 if test "x$PKG_CONFIG" != xnone
12520 then
12521-	echo "$as_me:3894: checking if we should install .pc files for $PKG_CONFIG" >&5
12522+	echo "$as_me:3997: checking if we should install .pc files for $PKG_CONFIG" >&5
12523 echo $ECHO_N "checking if we should install .pc files for $PKG_CONFIG... $ECHO_C" >&6
12524 else
12525-	echo "$as_me:3897: checking if we should install .pc files" >&5
12526+	echo "$as_me:4000: checking if we should install .pc files" >&5
12527 echo $ECHO_N "checking if we should install .pc files... $ECHO_C" >&6
12528 fi
12529
12530@@ -3905,7 +4008,7 @@
12531 else
12532   enable_pc_files=no
12533 fi;
12534-echo "$as_me:3908: result: $enable_pc_files" >&5
12535+echo "$as_me:4011: result: $enable_pc_files" >&5
12536 echo "${ECHO_T}$enable_pc_files" >&6
12537
12538 if test "x$enable_pc_files" != xno
12539@@ -3913,7 +4016,7 @@
12540 	MAKE_PC_FILES=
12541 	case "x$PKG_CONFIG_LIBDIR" in
12542 	(xno|xyes)
12543-		{ echo "$as_me:3916: WARNING: no PKG_CONFIG_LIBDIR was found" >&5
12544+		{ echo "$as_me:4019: WARNING: no PKG_CONFIG_LIBDIR was found" >&5
12545 echo "$as_me: WARNING: no PKG_CONFIG_LIBDIR was found" >&2;}
12546 		;;
12547 	(*)
12548@@ -3943,7 +4046,7 @@
12549 	PKG_CONFIG_LIBDIR=`echo $PKG_CONFIG_LIBDIR | sed -e s%NONE%$cf_path_syntax%`
12550 	;;
12551 (*)
12552-	{ { echo "$as_me:3946: error: expected a pathname, not \"$PKG_CONFIG_LIBDIR\"" >&5
12553+	{ { echo "$as_me:4049: error: expected a pathname, not \"$PKG_CONFIG_LIBDIR\"" >&5
12554 echo "$as_me: error: expected a pathname, not \"$PKG_CONFIG_LIBDIR\"" >&2;}
12555    { (exit 1); exit 1; }; }
12556 	;;
12557@@ -3957,7 +4060,7 @@
12558
12559 if test -z "$MAKE_PC_FILES"
12560 then
12561-	echo "$as_me:3960: checking for suffix to add to pc-files" >&5
12562+	echo "$as_me:4063: checking for suffix to add to pc-files" >&5
12563 echo $ECHO_N "checking for suffix to add to pc-files... $ECHO_C" >&6
12564
12565 # Check whether --with-pc-suffix or --without-pc-suffix was given.
12566@@ -3972,13 +4075,13 @@
12567 	esac
12568 fi;
12569 	test -z "$PC_MODULE_SUFFIX" && PC_MODULE_SUFFIX=none
12570-	echo "$as_me:3975: result: $PC_MODULE_SUFFIX" >&5
12571+	echo "$as_me:4078: result: $PC_MODULE_SUFFIX" >&5
12572 echo "${ECHO_T}$PC_MODULE_SUFFIX" >&6
12573 	test "$PC_MODULE_SUFFIX" = none && PC_MODULE_SUFFIX=
12574
12575 fi
12576
12577-echo "$as_me:3981: checking if we should assume mixed-case filenames" >&5
12578+echo "$as_me:4084: checking if we should assume mixed-case filenames" >&5
12579 echo $ECHO_N "checking if we should assume mixed-case filenames... $ECHO_C" >&6
12580
12581 # Check whether --enable-mixed-case or --disable-mixed-case was given.
12582@@ -3988,11 +4091,11 @@
12583 else
12584   enable_mixedcase=auto
12585 fi;
12586-echo "$as_me:3991: result: $enable_mixedcase" >&5
12587+echo "$as_me:4094: result: $enable_mixedcase" >&5
12588 echo "${ECHO_T}$enable_mixedcase" >&6
12589 if test "$enable_mixedcase" = "auto" ; then
12590
12591-echo "$as_me:3995: checking if filesystem supports mixed-case filenames" >&5
12592+echo "$as_me:4098: checking if filesystem supports mixed-case filenames" >&5
12593 echo $ECHO_N "checking if filesystem supports mixed-case filenames... $ECHO_C" >&6
12594 if test "${cf_cv_mixedcase+set}" = set; then
12595   echo $ECHO_N "(cached) $ECHO_C" >&6
12596@@ -4019,7 +4122,7 @@
12597 fi
12598
12599 fi
12600-echo "$as_me:4022: result: $cf_cv_mixedcase" >&5
12601+echo "$as_me:4125: result: $cf_cv_mixedcase" >&5
12602 echo "${ECHO_T}$cf_cv_mixedcase" >&6
12603 test "$cf_cv_mixedcase" = yes &&
12604 cat >>confdefs.h <<\EOF
12605@@ -4038,7 +4141,7 @@
12606 fi
12607
12608 # do this after mixed-case option (tags/TAGS is not as important as tic).
12609-echo "$as_me:4041: checking whether ${MAKE-make} sets \${MAKE}" >&5
12610+echo "$as_me:4144: checking whether ${MAKE-make} sets \${MAKE}" >&5
12611 echo $ECHO_N "checking whether ${MAKE-make} sets \${MAKE}... $ECHO_C" >&6
12612 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,./+-,__p_,'`
12613 if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then
12614@@ -4058,11 +4161,11 @@
12615 rm -f conftest.make
12616 fi
12617 if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then
12618-  echo "$as_me:4061: result: yes" >&5
12619+  echo "$as_me:4164: result: yes" >&5
12620 echo "${ECHO_T}yes" >&6
12621   SET_MAKE=
12622 else
12623-  echo "$as_me:4065: result: no" >&5
12624+  echo "$as_me:4168: result: no" >&5
12625 echo "${ECHO_T}no" >&6
12626   SET_MAKE="MAKE=${MAKE-make}"
12627 fi
12628@@ -4071,7 +4174,7 @@
12629 do
12630   # Extract the first word of "$ac_prog", so it can be a program name with args.
12631 set dummy $ac_prog; ac_word=$2
12632-echo "$as_me:4074: checking for $ac_word" >&5
12633+echo "$as_me:4177: checking for $ac_word" >&5
12634 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
12635 if test "${ac_cv_prog_CTAGS+set}" = set; then
12636   echo $ECHO_N "(cached) $ECHO_C" >&6
12637@@ -4086,7 +4189,7 @@
12638   test -z "$ac_dir" && ac_dir=.
12639   $as_executable_p "$ac_dir/$ac_word" || continue
12640 ac_cv_prog_CTAGS="$ac_prog"
12641-echo "$as_me:4089: found $ac_dir/$ac_word" >&5
12642+echo "$as_me:4192: found $ac_dir/$ac_word" >&5
12643 break
12644 done
12645
12646@@ -4094,10 +4197,10 @@
12647 fi
12648 CTAGS=$ac_cv_prog_CTAGS
12649 if test -n "$CTAGS"; then
12650-  echo "$as_me:4097: result: $CTAGS" >&5
12651+  echo "$as_me:4200: result: $CTAGS" >&5
12652 echo "${ECHO_T}$CTAGS" >&6
12653 else
12654-  echo "$as_me:4100: result: no" >&5
12655+  echo "$as_me:4203: result: no" >&5
12656 echo "${ECHO_T}no" >&6
12657 fi
12658
12659@@ -4108,7 +4211,7 @@
12660 do
12661   # Extract the first word of "$ac_prog", so it can be a program name with args.
12662 set dummy $ac_prog; ac_word=$2
12663-echo "$as_me:4111: checking for $ac_word" >&5
12664+echo "$as_me:4214: checking for $ac_word" >&5
12665 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
12666 if test "${ac_cv_prog_ETAGS+set}" = set; then
12667   echo $ECHO_N "(cached) $ECHO_C" >&6
12668@@ -4123,7 +4226,7 @@
12669   test -z "$ac_dir" && ac_dir=.
12670   $as_executable_p "$ac_dir/$ac_word" || continue
12671 ac_cv_prog_ETAGS="$ac_prog"
12672-echo "$as_me:4126: found $ac_dir/$ac_word" >&5
12673+echo "$as_me:4229: found $ac_dir/$ac_word" >&5
12674 break
12675 done
12676
12677@@ -4131,10 +4234,10 @@
12678 fi
12679 ETAGS=$ac_cv_prog_ETAGS
12680 if test -n "$ETAGS"; then
12681-  echo "$as_me:4134: result: $ETAGS" >&5
12682+  echo "$as_me:4237: result: $ETAGS" >&5
12683 echo "${ECHO_T}$ETAGS" >&6
12684 else
12685-  echo "$as_me:4137: result: no" >&5
12686+  echo "$as_me:4240: result: no" >&5
12687 echo "${ECHO_T}no" >&6
12688 fi
12689
12690@@ -4143,7 +4246,7 @@
12691
12692 # Extract the first word of "${CTAGS:-ctags}", so it can be a program name with args.
12693 set dummy ${CTAGS:-ctags}; ac_word=$2
12694-echo "$as_me:4146: checking for $ac_word" >&5
12695+echo "$as_me:4249: checking for $ac_word" >&5
12696 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
12697 if test "${ac_cv_prog_MAKE_LOWER_TAGS+set}" = set; then
12698   echo $ECHO_N "(cached) $ECHO_C" >&6
12699@@ -4158,7 +4261,7 @@
12700   test -z "$ac_dir" && ac_dir=.
12701   $as_executable_p "$ac_dir/$ac_word" || continue
12702 ac_cv_prog_MAKE_LOWER_TAGS="yes"
12703-echo "$as_me:4161: found $ac_dir/$ac_word" >&5
12704+echo "$as_me:4264: found $ac_dir/$ac_word" >&5
12705 break
12706 done
12707
12708@@ -4167,17 +4270,17 @@
12709 fi
12710 MAKE_LOWER_TAGS=$ac_cv_prog_MAKE_LOWER_TAGS
12711 if test -n "$MAKE_LOWER_TAGS"; then
12712-  echo "$as_me:4170: result: $MAKE_LOWER_TAGS" >&5
12713+  echo "$as_me:4273: result: $MAKE_LOWER_TAGS" >&5
12714 echo "${ECHO_T}$MAKE_LOWER_TAGS" >&6
12715 else
12716-  echo "$as_me:4173: result: no" >&5
12717+  echo "$as_me:4276: result: no" >&5
12718 echo "${ECHO_T}no" >&6
12719 fi
12720
12721 if test "$cf_cv_mixedcase" = yes ; then
12722 	# Extract the first word of "${ETAGS:-etags}", so it can be a program name with args.
12723 set dummy ${ETAGS:-etags}; ac_word=$2
12724-echo "$as_me:4180: checking for $ac_word" >&5
12725+echo "$as_me:4283: checking for $ac_word" >&5
12726 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
12727 if test "${ac_cv_prog_MAKE_UPPER_TAGS+set}" = set; then
12728   echo $ECHO_N "(cached) $ECHO_C" >&6
12729@@ -4192,7 +4295,7 @@
12730   test -z "$ac_dir" && ac_dir=.
12731   $as_executable_p "$ac_dir/$ac_word" || continue
12732 ac_cv_prog_MAKE_UPPER_TAGS="yes"
12733-echo "$as_me:4195: found $ac_dir/$ac_word" >&5
12734+echo "$as_me:4298: found $ac_dir/$ac_word" >&5
12735 break
12736 done
12737
12738@@ -4201,10 +4304,10 @@
12739 fi
12740 MAKE_UPPER_TAGS=$ac_cv_prog_MAKE_UPPER_TAGS
12741 if test -n "$MAKE_UPPER_TAGS"; then
12742-  echo "$as_me:4204: result: $MAKE_UPPER_TAGS" >&5
12743+  echo "$as_me:4307: result: $MAKE_UPPER_TAGS" >&5
12744 echo "${ECHO_T}$MAKE_UPPER_TAGS" >&6
12745 else
12746-  echo "$as_me:4207: result: no" >&5
12747+  echo "$as_me:4310: result: no" >&5
12748 echo "${ECHO_T}no" >&6
12749 fi
12750
12751@@ -4224,7 +4327,7 @@
12752 	MAKE_LOWER_TAGS="#"
12753 fi
12754
12755-echo "$as_me:4227: checking for makeflags variable" >&5
12756+echo "$as_me:4330: checking for makeflags variable" >&5
12757 echo $ECHO_N "checking for makeflags variable... $ECHO_C" >&6
12758 if test "${cf_cv_makeflags+set}" = set; then
12759   echo $ECHO_N "(cached) $ECHO_C" >&6
12760@@ -4254,7 +4357,7 @@
12761 			;;
12762 		(*)
12763
12764-echo "${as_me:-configure}:4257: testing given option \"$cf_option\",no match \"$cf_result\" ..." 1>&5
12765+echo "${as_me:-configure}:4360: testing given option \"$cf_option\",no match \"$cf_result\" ..." 1>&5
12766
12767 			;;
12768 		esac
12769@@ -4262,13 +4365,13 @@
12770 	rm -f cf_makeflags.tmp
12771
12772 fi
12773-echo "$as_me:4265: result: $cf_cv_makeflags" >&5
12774+echo "$as_me:4368: result: $cf_cv_makeflags" >&5
12775 echo "${ECHO_T}$cf_cv_makeflags" >&6
12776
12777 if test -n "$ac_tool_prefix"; then
12778   # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
12779 set dummy ${ac_tool_prefix}ranlib; ac_word=$2
12780-echo "$as_me:4271: checking for $ac_word" >&5
12781+echo "$as_me:4374: checking for $ac_word" >&5
12782 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
12783 if test "${ac_cv_prog_RANLIB+set}" = set; then
12784   echo $ECHO_N "(cached) $ECHO_C" >&6
12785@@ -4283,7 +4386,7 @@
12786   test -z "$ac_dir" && ac_dir=.
12787   $as_executable_p "$ac_dir/$ac_word" || continue
12788 ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
12789-echo "$as_me:4286: found $ac_dir/$ac_word" >&5
12790+echo "$as_me:4389: found $ac_dir/$ac_word" >&5
12791 break
12792 done
12793
12794@@ -4291,10 +4394,10 @@
12795 fi
12796 RANLIB=$ac_cv_prog_RANLIB
12797 if test -n "$RANLIB"; then
12798-  echo "$as_me:4294: result: $RANLIB" >&5
12799+  echo "$as_me:4397: result: $RANLIB" >&5
12800 echo "${ECHO_T}$RANLIB" >&6
12801 else
12802-  echo "$as_me:4297: result: no" >&5
12803+  echo "$as_me:4400: result: no" >&5
12804 echo "${ECHO_T}no" >&6
12805 fi
12806
12807@@ -4303,7 +4406,7 @@
12808   ac_ct_RANLIB=$RANLIB
12809   # Extract the first word of "ranlib", so it can be a program name with args.
12810 set dummy ranlib; ac_word=$2
12811-echo "$as_me:4306: checking for $ac_word" >&5
12812+echo "$as_me:4409: checking for $ac_word" >&5
12813 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
12814 if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then
12815   echo $ECHO_N "(cached) $ECHO_C" >&6
12816@@ -4318,7 +4421,7 @@
12817   test -z "$ac_dir" && ac_dir=.
12818   $as_executable_p "$ac_dir/$ac_word" || continue
12819 ac_cv_prog_ac_ct_RANLIB="ranlib"
12820-echo "$as_me:4321: found $ac_dir/$ac_word" >&5
12821+echo "$as_me:4424: found $ac_dir/$ac_word" >&5
12822 break
12823 done
12824
12825@@ -4327,10 +4430,10 @@
12826 fi
12827 ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB
12828 if test -n "$ac_ct_RANLIB"; then
12829-  echo "$as_me:4330: result: $ac_ct_RANLIB" >&5
12830+  echo "$as_me:4433: result: $ac_ct_RANLIB" >&5
12831 echo "${ECHO_T}$ac_ct_RANLIB" >&6
12832 else
12833-  echo "$as_me:4333: result: no" >&5
12834+  echo "$as_me:4436: result: no" >&5
12835 echo "${ECHO_T}no" >&6
12836 fi
12837
12838@@ -4342,7 +4445,7 @@
12839 if test -n "$ac_tool_prefix"; then
12840   # Extract the first word of "${ac_tool_prefix}ld", so it can be a program name with args.
12841 set dummy ${ac_tool_prefix}ld; ac_word=$2
12842-echo "$as_me:4345: checking for $ac_word" >&5
12843+echo "$as_me:4448: checking for $ac_word" >&5
12844 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
12845 if test "${ac_cv_prog_LD+set}" = set; then
12846   echo $ECHO_N "(cached) $ECHO_C" >&6
12847@@ -4357,7 +4460,7 @@
12848   test -z "$ac_dir" && ac_dir=.
12849   $as_executable_p "$ac_dir/$ac_word" || continue
12850 ac_cv_prog_LD="${ac_tool_prefix}ld"
12851-echo "$as_me:4360: found $ac_dir/$ac_word" >&5
12852+echo "$as_me:4463: found $ac_dir/$ac_word" >&5
12853 break
12854 done
12855
12856@@ -4365,10 +4468,10 @@
12857 fi
12858 LD=$ac_cv_prog_LD
12859 if test -n "$LD"; then
12860-  echo "$as_me:4368: result: $LD" >&5
12861+  echo "$as_me:4471: result: $LD" >&5
12862 echo "${ECHO_T}$LD" >&6
12863 else
12864-  echo "$as_me:4371: result: no" >&5
12865+  echo "$as_me:4474: result: no" >&5
12866 echo "${ECHO_T}no" >&6
12867 fi
12868
12869@@ -4377,7 +4480,7 @@
12870   ac_ct_LD=$LD
12871   # Extract the first word of "ld", so it can be a program name with args.
12872 set dummy ld; ac_word=$2
12873-echo "$as_me:4380: checking for $ac_word" >&5
12874+echo "$as_me:4483: checking for $ac_word" >&5
12875 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
12876 if test "${ac_cv_prog_ac_ct_LD+set}" = set; then
12877   echo $ECHO_N "(cached) $ECHO_C" >&6
12878@@ -4392,7 +4495,7 @@
12879   test -z "$ac_dir" && ac_dir=.
12880   $as_executable_p "$ac_dir/$ac_word" || continue
12881 ac_cv_prog_ac_ct_LD="ld"
12882-echo "$as_me:4395: found $ac_dir/$ac_word" >&5
12883+echo "$as_me:4498: found $ac_dir/$ac_word" >&5
12884 break
12885 done
12886
12887@@ -4401,10 +4504,10 @@
12888 fi
12889 ac_ct_LD=$ac_cv_prog_ac_ct_LD
12890 if test -n "$ac_ct_LD"; then
12891-  echo "$as_me:4404: result: $ac_ct_LD" >&5
12892+  echo "$as_me:4507: result: $ac_ct_LD" >&5
12893 echo "${ECHO_T}$ac_ct_LD" >&6
12894 else
12895-  echo "$as_me:4407: result: no" >&5
12896+  echo "$as_me:4510: result: no" >&5
12897 echo "${ECHO_T}no" >&6
12898 fi
12899
12900@@ -4416,7 +4519,7 @@
12901 if test -n "$ac_tool_prefix"; then
12902   # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
12903 set dummy ${ac_tool_prefix}ar; ac_word=$2
12904-echo "$as_me:4419: checking for $ac_word" >&5
12905+echo "$as_me:4522: checking for $ac_word" >&5
12906 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
12907 if test "${ac_cv_prog_AR+set}" = set; then
12908   echo $ECHO_N "(cached) $ECHO_C" >&6
12909@@ -4431,7 +4534,7 @@
12910   test -z "$ac_dir" && ac_dir=.
12911   $as_executable_p "$ac_dir/$ac_word" || continue
12912 ac_cv_prog_AR="${ac_tool_prefix}ar"
12913-echo "$as_me:4434: found $ac_dir/$ac_word" >&5
12914+echo "$as_me:4537: found $ac_dir/$ac_word" >&5
12915 break
12916 done
12917
12918@@ -4439,10 +4542,10 @@
12919 fi
12920 AR=$ac_cv_prog_AR
12921 if test -n "$AR"; then
12922-  echo "$as_me:4442: result: $AR" >&5
12923+  echo "$as_me:4545: result: $AR" >&5
12924 echo "${ECHO_T}$AR" >&6
12925 else
12926-  echo "$as_me:4445: result: no" >&5
12927+  echo "$as_me:4548: result: no" >&5
12928 echo "${ECHO_T}no" >&6
12929 fi
12930
12931@@ -4451,7 +4554,7 @@
12932   ac_ct_AR=$AR
12933   # Extract the first word of "ar", so it can be a program name with args.
12934 set dummy ar; ac_word=$2
12935-echo "$as_me:4454: checking for $ac_word" >&5
12936+echo "$as_me:4557: checking for $ac_word" >&5
12937 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
12938 if test "${ac_cv_prog_ac_ct_AR+set}" = set; then
12939   echo $ECHO_N "(cached) $ECHO_C" >&6
12940@@ -4466,7 +4569,7 @@
12941   test -z "$ac_dir" && ac_dir=.
12942   $as_executable_p "$ac_dir/$ac_word" || continue
12943 ac_cv_prog_ac_ct_AR="ar"
12944-echo "$as_me:4469: found $ac_dir/$ac_word" >&5
12945+echo "$as_me:4572: found $ac_dir/$ac_word" >&5
12946 break
12947 done
12948
12949@@ -4475,10 +4578,10 @@
12950 fi
12951 ac_ct_AR=$ac_cv_prog_ac_ct_AR
12952 if test -n "$ac_ct_AR"; then
12953-  echo "$as_me:4478: result: $ac_ct_AR" >&5
12954+  echo "$as_me:4581: result: $ac_ct_AR" >&5
12955 echo "${ECHO_T}$ac_ct_AR" >&6
12956 else
12957-  echo "$as_me:4481: result: no" >&5
12958+  echo "$as_me:4584: result: no" >&5
12959 echo "${ECHO_T}no" >&6
12960 fi
12961
12962@@ -4490,7 +4593,7 @@
12963 if test -n "$ac_tool_prefix"; then
12964   # Extract the first word of "${ac_tool_prefix}nm", so it can be a program name with args.
12965 set dummy ${ac_tool_prefix}nm; ac_word=$2
12966-echo "$as_me:4493: checking for $ac_word" >&5
12967+echo "$as_me:4596: checking for $ac_word" >&5
12968 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
12969 if test "${ac_cv_prog_NM+set}" = set; then
12970   echo $ECHO_N "(cached) $ECHO_C" >&6
12971@@ -4505,7 +4608,7 @@
12972   test -z "$ac_dir" && ac_dir=.
12973   $as_executable_p "$ac_dir/$ac_word" || continue
12974 ac_cv_prog_NM="${ac_tool_prefix}nm"
12975-echo "$as_me:4508: found $ac_dir/$ac_word" >&5
12976+echo "$as_me:4611: found $ac_dir/$ac_word" >&5
12977 break
12978 done
12979
12980@@ -4513,10 +4616,10 @@
12981 fi
12982 NM=$ac_cv_prog_NM
12983 if test -n "$NM"; then
12984-  echo "$as_me:4516: result: $NM" >&5
12985+  echo "$as_me:4619: result: $NM" >&5
12986 echo "${ECHO_T}$NM" >&6
12987 else
12988-  echo "$as_me:4519: result: no" >&5
12989+  echo "$as_me:4622: result: no" >&5
12990 echo "${ECHO_T}no" >&6
12991 fi
12992
12993@@ -4525,7 +4628,7 @@
12994   ac_ct_NM=$NM
12995   # Extract the first word of "nm", so it can be a program name with args.
12996 set dummy nm; ac_word=$2
12997-echo "$as_me:4528: checking for $ac_word" >&5
12998+echo "$as_me:4631: checking for $ac_word" >&5
12999 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
13000 if test "${ac_cv_prog_ac_ct_NM+set}" = set; then
13001   echo $ECHO_N "(cached) $ECHO_C" >&6
13002@@ -4540,7 +4643,7 @@
13003   test -z "$ac_dir" && ac_dir=.
13004   $as_executable_p "$ac_dir/$ac_word" || continue
13005 ac_cv_prog_ac_ct_NM="nm"
13006-echo "$as_me:4543: found $ac_dir/$ac_word" >&5
13007+echo "$as_me:4646: found $ac_dir/$ac_word" >&5
13008 break
13009 done
13010
13011@@ -4549,10 +4652,10 @@
13012 fi
13013 ac_ct_NM=$ac_cv_prog_ac_ct_NM
13014 if test -n "$ac_ct_NM"; then
13015-  echo "$as_me:4552: result: $ac_ct_NM" >&5
13016+  echo "$as_me:4655: result: $ac_ct_NM" >&5
13017 echo "${ECHO_T}$ac_ct_NM" >&6
13018 else
13019-  echo "$as_me:4555: result: no" >&5
13020+  echo "$as_me:4658: result: no" >&5
13021 echo "${ECHO_T}no" >&6
13022 fi
13023
13024@@ -4564,7 +4667,7 @@
13025 if test -n "$ac_tool_prefix"; then
13026   # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
13027 set dummy ${ac_tool_prefix}ar; ac_word=$2
13028-echo "$as_me:4567: checking for $ac_word" >&5
13029+echo "$as_me:4670: checking for $ac_word" >&5
13030 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
13031 if test "${ac_cv_prog_AR+set}" = set; then
13032   echo $ECHO_N "(cached) $ECHO_C" >&6
13033@@ -4579,7 +4682,7 @@
13034   test -z "$ac_dir" && ac_dir=.
13035   $as_executable_p "$ac_dir/$ac_word" || continue
13036 ac_cv_prog_AR="${ac_tool_prefix}ar"
13037-echo "$as_me:4582: found $ac_dir/$ac_word" >&5
13038+echo "$as_me:4685: found $ac_dir/$ac_word" >&5
13039 break
13040 done
13041
13042@@ -4587,10 +4690,10 @@
13043 fi
13044 AR=$ac_cv_prog_AR
13045 if test -n "$AR"; then
13046-  echo "$as_me:4590: result: $AR" >&5
13047+  echo "$as_me:4693: result: $AR" >&5
13048 echo "${ECHO_T}$AR" >&6
13049 else
13050-  echo "$as_me:4593: result: no" >&5
13051+  echo "$as_me:4696: result: no" >&5
13052 echo "${ECHO_T}no" >&6
13053 fi
13054
13055@@ -4599,7 +4702,7 @@
13056   ac_ct_AR=$AR
13057   # Extract the first word of "ar", so it can be a program name with args.
13058 set dummy ar; ac_word=$2
13059-echo "$as_me:4602: checking for $ac_word" >&5
13060+echo "$as_me:4705: checking for $ac_word" >&5
13061 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
13062 if test "${ac_cv_prog_ac_ct_AR+set}" = set; then
13063   echo $ECHO_N "(cached) $ECHO_C" >&6
13064@@ -4614,7 +4717,7 @@
13065   test -z "$ac_dir" && ac_dir=.
13066   $as_executable_p "$ac_dir/$ac_word" || continue
13067 ac_cv_prog_ac_ct_AR="ar"
13068-echo "$as_me:4617: found $ac_dir/$ac_word" >&5
13069+echo "$as_me:4720: found $ac_dir/$ac_word" >&5
13070 break
13071 done
13072
13073@@ -4623,10 +4726,10 @@
13074 fi
13075 ac_ct_AR=$ac_cv_prog_ac_ct_AR
13076 if test -n "$ac_ct_AR"; then
13077-  echo "$as_me:4626: result: $ac_ct_AR" >&5
13078+  echo "$as_me:4729: result: $ac_ct_AR" >&5
13079 echo "${ECHO_T}$ac_ct_AR" >&6
13080 else
13081-  echo "$as_me:4629: result: no" >&5
13082+  echo "$as_me:4732: result: no" >&5
13083 echo "${ECHO_T}no" >&6
13084 fi
13085
13086@@ -4635,7 +4738,7 @@
13087   AR="$ac_cv_prog_AR"
13088 fi
13089
13090-echo "$as_me:4638: checking for options to update archives" >&5
13091+echo "$as_me:4741: checking for options to update archives" >&5
13092 echo $ECHO_N "checking for options to update archives... $ECHO_C" >&6
13093 if test "${cf_cv_ar_flags+set}" = set; then
13094   echo $ECHO_N "(cached) $ECHO_C" >&6
13095@@ -4658,13 +4761,13 @@
13096 		rm -f conftest.a
13097
13098 		cat >conftest.$ac_ext <<EOF
13099-#line 4661 "configure"
13100+#line 4764 "configure"
13101 int	testdata[3] = { 123, 456, 789 };
13102 EOF
13103-		if { (eval echo "$as_me:4664: \"$ac_compile\"") >&5
13104+		if { (eval echo "$as_me:4767: \"$ac_compile\"") >&5
13105   (eval $ac_compile) 2>&5
13106   ac_status=$?
13107-  echo "$as_me:4667: \$? = $ac_status" >&5
13108+  echo "$as_me:4770: \$? = $ac_status" >&5
13109   (exit $ac_status); } ; then
13110 			echo "$AR $ARFLAGS $cf_ar_flags conftest.a conftest.$ac_cv_objext" >&5
13111 			$AR $ARFLAGS $cf_ar_flags conftest.a conftest.$ac_cv_objext 2>&5 1>/dev/null
13112@@ -4675,7 +4778,7 @@
13113 		else
13114 			test -n "$verbose" && echo "	cannot compile test-program" 1>&6
13115
13116-echo "${as_me:-configure}:4678: testing cannot compile test-program ..." 1>&5
13117+echo "${as_me:-configure}:4781: testing cannot compile test-program ..." 1>&5
13118
13119 			break
13120 		fi
13121@@ -4683,7 +4786,7 @@
13122 	rm -f conftest.a conftest.$ac_ext conftest.$ac_cv_objext
13123
13124 fi
13125-echo "$as_me:4686: result: $cf_cv_ar_flags" >&5
13126+echo "$as_me:4789: result: $cf_cv_ar_flags" >&5
13127 echo "${ECHO_T}$cf_cv_ar_flags" >&6
13128
13129 if test -n "$ARFLAGS" ; then
13130@@ -4694,7 +4797,7 @@
13131 	ARFLAGS=$cf_cv_ar_flags
13132 fi
13133
13134-echo "$as_me:4697: checking if you have specified an install-prefix" >&5
13135+echo "$as_me:4800: checking if you have specified an install-prefix" >&5
13136 echo $ECHO_N "checking if you have specified an install-prefix... $ECHO_C" >&6
13137
13138 # Check whether --with-install-prefix or --without-install-prefix was given.
13139@@ -4707,7 +4810,7 @@
13140 		;;
13141 	esac
13142 fi;
13143-echo "$as_me:4710: result: $DESTDIR" >&5
13144+echo "$as_me:4813: result: $DESTDIR" >&5
13145 echo "${ECHO_T}$DESTDIR" >&6
13146
13147 ###############################################################################
13148@@ -4735,7 +4838,7 @@
13149 do
13150   # Extract the first word of "$ac_prog", so it can be a program name with args.
13151 set dummy $ac_prog; ac_word=$2
13152-echo "$as_me:4738: checking for $ac_word" >&5
13153+echo "$as_me:4841: checking for $ac_word" >&5
13154 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
13155 if test "${ac_cv_prog_BUILD_CC+set}" = set; then
13156   echo $ECHO_N "(cached) $ECHO_C" >&6
13157@@ -4750,7 +4853,7 @@
13158   test -z "$ac_dir" && ac_dir=.
13159   $as_executable_p "$ac_dir/$ac_word" || continue
13160 ac_cv_prog_BUILD_CC="$ac_prog"
13161-echo "$as_me:4753: found $ac_dir/$ac_word" >&5
13162+echo "$as_me:4856: found $ac_dir/$ac_word" >&5
13163 break
13164 done
13165
13166@@ -4758,10 +4861,10 @@
13167 fi
13168 BUILD_CC=$ac_cv_prog_BUILD_CC
13169 if test -n "$BUILD_CC"; then
13170-  echo "$as_me:4761: result: $BUILD_CC" >&5
13171+  echo "$as_me:4864: result: $BUILD_CC" >&5
13172 echo "${ECHO_T}$BUILD_CC" >&6
13173 else
13174-  echo "$as_me:4764: result: no" >&5
13175+  echo "$as_me:4867: result: no" >&5
13176 echo "${ECHO_T}no" >&6
13177 fi
13178
13179@@ -4770,12 +4873,12 @@
13180 test -n "$BUILD_CC" || BUILD_CC="none"
13181
13182 fi;
13183-	echo "$as_me:4773: checking for native build C compiler" >&5
13184+	echo "$as_me:4876: checking for native build C compiler" >&5
13185 echo $ECHO_N "checking for native build C compiler... $ECHO_C" >&6
13186-	echo "$as_me:4775: result: $BUILD_CC" >&5
13187+	echo "$as_me:4878: result: $BUILD_CC" >&5
13188 echo "${ECHO_T}$BUILD_CC" >&6
13189
13190-	echo "$as_me:4778: checking for native build C preprocessor" >&5
13191+	echo "$as_me:4881: checking for native build C preprocessor" >&5
13192 echo $ECHO_N "checking for native build C preprocessor... $ECHO_C" >&6
13193
13194 # Check whether --with-build-cpp or --without-build-cpp was given.
13195@@ -4785,10 +4888,10 @@
13196 else
13197   BUILD_CPP='${BUILD_CC} -E'
13198 fi;
13199-	echo "$as_me:4788: result: $BUILD_CPP" >&5
13200+	echo "$as_me:4891: result: $BUILD_CPP" >&5
13201 echo "${ECHO_T}$BUILD_CPP" >&6
13202
13203-	echo "$as_me:4791: checking for native build C flags" >&5
13204+	echo "$as_me:4894: checking for native build C flags" >&5
13205 echo $ECHO_N "checking for native build C flags... $ECHO_C" >&6
13206
13207 # Check whether --with-build-cflags or --without-build-cflags was given.
13208@@ -4796,10 +4899,10 @@
13209   withval="$with_build_cflags"
13210   BUILD_CFLAGS="$withval"
13211 fi;
13212-	echo "$as_me:4799: result: $BUILD_CFLAGS" >&5
13213+	echo "$as_me:4902: result: $BUILD_CFLAGS" >&5
13214 echo "${ECHO_T}$BUILD_CFLAGS" >&6
13215
13216-	echo "$as_me:4802: checking for native build C preprocessor-flags" >&5
13217+	echo "$as_me:4905: checking for native build C preprocessor-flags" >&5
13218 echo $ECHO_N "checking for native build C preprocessor-flags... $ECHO_C" >&6
13219
13220 # Check whether --with-build-cppflags or --without-build-cppflags was given.
13221@@ -4807,10 +4910,10 @@
13222   withval="$with_build_cppflags"
13223   BUILD_CPPFLAGS="$withval"
13224 fi;
13225-	echo "$as_me:4810: result: $BUILD_CPPFLAGS" >&5
13226+	echo "$as_me:4913: result: $BUILD_CPPFLAGS" >&5
13227 echo "${ECHO_T}$BUILD_CPPFLAGS" >&6
13228
13229-	echo "$as_me:4813: checking for native build linker-flags" >&5
13230+	echo "$as_me:4916: checking for native build linker-flags" >&5
13231 echo $ECHO_N "checking for native build linker-flags... $ECHO_C" >&6
13232
13233 # Check whether --with-build-ldflags or --without-build-ldflags was given.
13234@@ -4818,10 +4921,10 @@
13235   withval="$with_build_ldflags"
13236   BUILD_LDFLAGS="$withval"
13237 fi;
13238-	echo "$as_me:4821: result: $BUILD_LDFLAGS" >&5
13239+	echo "$as_me:4924: result: $BUILD_LDFLAGS" >&5
13240 echo "${ECHO_T}$BUILD_LDFLAGS" >&6
13241
13242-	echo "$as_me:4824: checking for native build linker-libraries" >&5
13243+	echo "$as_me:4927: checking for native build linker-libraries" >&5
13244 echo $ECHO_N "checking for native build linker-libraries... $ECHO_C" >&6
13245
13246 # Check whether --with-build-libs or --without-build-libs was given.
13247@@ -4829,7 +4932,7 @@
13248   withval="$with_build_libs"
13249   BUILD_LIBS="$withval"
13250 fi;
13251-	echo "$as_me:4832: result: $BUILD_LIBS" >&5
13252+	echo "$as_me:4935: result: $BUILD_LIBS" >&5
13253 echo "${ECHO_T}$BUILD_LIBS" >&6
13254
13255 	# this assumes we're on Unix.
13256@@ -4839,7 +4942,7 @@
13257 	: ${BUILD_CC:='${CC}'}
13258
13259 	if ( test "$BUILD_CC" = "$CC" || test "$BUILD_CC" = '${CC}' ) ; then
13260-		{ { echo "$as_me:4842: error: Cross-build requires two compilers.
13261+		{ { echo "$as_me:4945: error: Cross-build requires two compilers.
13262 Use --with-build-cc to specify the native compiler." >&5
13263 echo "$as_me: error: Cross-build requires two compilers.
13264 Use --with-build-cc to specify the native compiler." >&2;}
13265@@ -4864,7 +4967,7 @@
13266 ### shared, for example.
13267 cf_list_models=""
13268
13269-echo "$as_me:4867: checking if libtool -version-number should be used" >&5
13270+echo "$as_me:4970: checking if libtool -version-number should be used" >&5
13271 echo $ECHO_N "checking if libtool -version-number should be used... $ECHO_C" >&6
13272
13273 # Check whether --enable-libtool-version or --disable-libtool-version was given.
13274@@ -4881,7 +4984,7 @@
13275 	cf_libtool_version=yes
13276
13277 fi;
13278-echo "$as_me:4884: result: $cf_libtool_version" >&5
13279+echo "$as_me:4987: result: $cf_libtool_version" >&5
13280 echo "${ECHO_T}$cf_libtool_version" >&6
13281
13282 if test "$cf_libtool_version" = yes ; then
13283@@ -4890,25 +4993,25 @@
13284 	LIBTOOL_VERSION="-version-info"
13285 	case "x$VERSION" in
13286 	(x)
13287-		{ echo "$as_me:4893: WARNING: VERSION was not set" >&5
13288+		{ echo "$as_me:4996: WARNING: VERSION was not set" >&5
13289 echo "$as_me: WARNING: VERSION was not set" >&2;}
13290 		;;
13291 	(x*.*.*)
13292 		ABI_VERSION="$VERSION"
13293 		test -n "$verbose" && echo "	ABI_VERSION: $ABI_VERSION" 1>&6
13294
13295-echo "${as_me:-configure}:4900: testing ABI_VERSION: $ABI_VERSION ..." 1>&5
13296+echo "${as_me:-configure}:5003: testing ABI_VERSION: $ABI_VERSION ..." 1>&5
13297
13298 		;;
13299 	(x*:*:*)
13300 		ABI_VERSION=`echo "$VERSION" | sed -e 's/:/./g'`
13301 		test -n "$verbose" && echo "	ABI_VERSION: $ABI_VERSION" 1>&6
13302
13303-echo "${as_me:-configure}:4907: testing ABI_VERSION: $ABI_VERSION ..." 1>&5
13304+echo "${as_me:-configure}:5010: testing ABI_VERSION: $ABI_VERSION ..." 1>&5
13305
13306 		;;
13307 	(*)
13308-		{ echo "$as_me:4911: WARNING: unexpected VERSION value: $VERSION" >&5
13309+		{ echo "$as_me:5014: WARNING: unexpected VERSION value: $VERSION" >&5
13310 echo "$as_me: WARNING: unexpected VERSION value: $VERSION" >&2;}
13311 		;;
13312 	esac
13313@@ -4930,7 +5033,7 @@
13314 LIB_INSTALL=
13315 LIB_UNINSTALL=
13316
13317-echo "$as_me:4933: checking if you want to build libraries with libtool" >&5
13318+echo "$as_me:5036: checking if you want to build libraries with libtool" >&5
13319 echo $ECHO_N "checking if you want to build libraries with libtool... $ECHO_C" >&6
13320
13321 # Check whether --with-libtool or --without-libtool was given.
13322@@ -4940,7 +5043,7 @@
13323 else
13324   with_libtool=no
13325 fi;
13326-echo "$as_me:4943: result: $with_libtool" >&5
13327+echo "$as_me:5046: result: $with_libtool" >&5
13328 echo "${ECHO_T}$with_libtool" >&6
13329 if test "$with_libtool" != "no"; then
13330
13331@@ -4971,7 +5074,7 @@
13332 	with_libtool=`echo $with_libtool | sed -e s%NONE%$cf_path_syntax%`
13333 	;;
13334 (*)
13335-	{ { echo "$as_me:4974: error: expected a pathname, not \"$with_libtool\"" >&5
13336+	{ { echo "$as_me:5077: error: expected a pathname, not \"$with_libtool\"" >&5
13337 echo "$as_me: error: expected a pathname, not \"$with_libtool\"" >&2;}
13338    { (exit 1); exit 1; }; }
13339 	;;
13340@@ -4984,7 +5087,7 @@
13341   do
13342     # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
13343 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
13344-echo "$as_me:4987: checking for $ac_word" >&5
13345+echo "$as_me:5090: checking for $ac_word" >&5
13346 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
13347 if test "${ac_cv_prog_LIBTOOL+set}" = set; then
13348   echo $ECHO_N "(cached) $ECHO_C" >&6
13349@@ -4999,7 +5102,7 @@
13350   test -z "$ac_dir" && ac_dir=.
13351   $as_executable_p "$ac_dir/$ac_word" || continue
13352 ac_cv_prog_LIBTOOL="$ac_tool_prefix$ac_prog"
13353-echo "$as_me:5002: found $ac_dir/$ac_word" >&5
13354+echo "$as_me:5105: found $ac_dir/$ac_word" >&5
13355 break
13356 done
13357
13358@@ -5007,10 +5110,10 @@
13359 fi
13360 LIBTOOL=$ac_cv_prog_LIBTOOL
13361 if test -n "$LIBTOOL"; then
13362-  echo "$as_me:5010: result: $LIBTOOL" >&5
13363+  echo "$as_me:5113: result: $LIBTOOL" >&5
13364 echo "${ECHO_T}$LIBTOOL" >&6
13365 else
13366-  echo "$as_me:5013: result: no" >&5
13367+  echo "$as_me:5116: result: no" >&5
13368 echo "${ECHO_T}no" >&6
13369 fi
13370
13371@@ -5023,7 +5126,7 @@
13372 do
13373   # Extract the first word of "$ac_prog", so it can be a program name with args.
13374 set dummy $ac_prog; ac_word=$2
13375-echo "$as_me:5026: checking for $ac_word" >&5
13376+echo "$as_me:5129: checking for $ac_word" >&5
13377 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
13378 if test "${ac_cv_prog_ac_ct_LIBTOOL+set}" = set; then
13379   echo $ECHO_N "(cached) $ECHO_C" >&6
13380@@ -5038,7 +5141,7 @@
13381   test -z "$ac_dir" && ac_dir=.
13382   $as_executable_p "$ac_dir/$ac_word" || continue
13383 ac_cv_prog_ac_ct_LIBTOOL="$ac_prog"
13384-echo "$as_me:5041: found $ac_dir/$ac_word" >&5
13385+echo "$as_me:5144: found $ac_dir/$ac_word" >&5
13386 break
13387 done
13388
13389@@ -5046,10 +5149,10 @@
13390 fi
13391 ac_ct_LIBTOOL=$ac_cv_prog_ac_ct_LIBTOOL
13392 if test -n "$ac_ct_LIBTOOL"; then
13393-  echo "$as_me:5049: result: $ac_ct_LIBTOOL" >&5
13394+  echo "$as_me:5152: result: $ac_ct_LIBTOOL" >&5
13395 echo "${ECHO_T}$ac_ct_LIBTOOL" >&6
13396 else
13397-  echo "$as_me:5052: result: no" >&5
13398+  echo "$as_me:5155: result: no" >&5
13399 echo "${ECHO_T}no" >&6
13400 fi
13401
13402@@ -5080,7 +5183,7 @@
13403   do
13404     # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
13405 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
13406-echo "$as_me:5083: checking for $ac_word" >&5
13407+echo "$as_me:5186: checking for $ac_word" >&5
13408 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
13409 if test "${ac_cv_prog_LIBTOOL+set}" = set; then
13410   echo $ECHO_N "(cached) $ECHO_C" >&6
13411@@ -5095,7 +5198,7 @@
13412   test -z "$ac_dir" && ac_dir=.
13413   $as_executable_p "$ac_dir/$ac_word" || continue
13414 ac_cv_prog_LIBTOOL="$ac_tool_prefix$ac_prog"
13415-echo "$as_me:5098: found $ac_dir/$ac_word" >&5
13416+echo "$as_me:5201: found $ac_dir/$ac_word" >&5
13417 break
13418 done
13419
13420@@ -5103,10 +5206,10 @@
13421 fi
13422 LIBTOOL=$ac_cv_prog_LIBTOOL
13423 if test -n "$LIBTOOL"; then
13424-  echo "$as_me:5106: result: $LIBTOOL" >&5
13425+  echo "$as_me:5209: result: $LIBTOOL" >&5
13426 echo "${ECHO_T}$LIBTOOL" >&6
13427 else
13428-  echo "$as_me:5109: result: no" >&5
13429+  echo "$as_me:5212: result: no" >&5
13430 echo "${ECHO_T}no" >&6
13431 fi
13432
13433@@ -5119,7 +5222,7 @@
13434 do
13435   # Extract the first word of "$ac_prog", so it can be a program name with args.
13436 set dummy $ac_prog; ac_word=$2
13437-echo "$as_me:5122: checking for $ac_word" >&5
13438+echo "$as_me:5225: checking for $ac_word" >&5
13439 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
13440 if test "${ac_cv_prog_ac_ct_LIBTOOL+set}" = set; then
13441   echo $ECHO_N "(cached) $ECHO_C" >&6
13442@@ -5134,7 +5237,7 @@
13443   test -z "$ac_dir" && ac_dir=.
13444   $as_executable_p "$ac_dir/$ac_word" || continue
13445 ac_cv_prog_ac_ct_LIBTOOL="$ac_prog"
13446-echo "$as_me:5137: found $ac_dir/$ac_word" >&5
13447+echo "$as_me:5240: found $ac_dir/$ac_word" >&5
13448 break
13449 done
13450
13451@@ -5142,10 +5245,10 @@
13452 fi
13453 ac_ct_LIBTOOL=$ac_cv_prog_ac_ct_LIBTOOL
13454 if test -n "$ac_ct_LIBTOOL"; then
13455-  echo "$as_me:5145: result: $ac_ct_LIBTOOL" >&5
13456+  echo "$as_me:5248: result: $ac_ct_LIBTOOL" >&5
13457 echo "${ECHO_T}$ac_ct_LIBTOOL" >&6
13458 else
13459-  echo "$as_me:5148: result: no" >&5
13460+  echo "$as_me:5251: result: no" >&5
13461 echo "${ECHO_T}no" >&6
13462 fi
13463
13464@@ -5167,7 +5270,7 @@
13465 		fi
13466 	fi
13467 	if test -z "$LIBTOOL" ; then
13468-		{ { echo "$as_me:5170: error: Cannot find libtool" >&5
13469+		{ { echo "$as_me:5273: error: Cannot find libtool" >&5
13470 echo "$as_me: error: Cannot find libtool" >&2;}
13471    { (exit 1); exit 1; }; }
13472 	fi
13473@@ -5183,7 +5286,7 @@
13474
13475 if test -n "$LIBTOOL" && test "$LIBTOOL" != none
13476 then
13477-	echo "$as_me:5186: checking version of $LIBTOOL" >&5
13478+	echo "$as_me:5289: checking version of $LIBTOOL" >&5
13479 echo $ECHO_N "checking version of $LIBTOOL... $ECHO_C" >&6
13480
13481 if test -n "$LIBTOOL" && test "$LIBTOOL" != none
13482@@ -5194,15 +5297,15 @@
13483 fi
13484 test -z "$cf_cv_libtool_version" && unset cf_cv_libtool_version
13485
13486-	echo "$as_me:5197: result: $cf_cv_libtool_version" >&5
13487+	echo "$as_me:5300: result: $cf_cv_libtool_version" >&5
13488 echo "${ECHO_T}$cf_cv_libtool_version" >&6
13489 	if test -z "$cf_cv_libtool_version" ; then
13490-		{ { echo "$as_me:5200: error: This is not GNU libtool" >&5
13491+		{ { echo "$as_me:5303: error: This is not GNU libtool" >&5
13492 echo "$as_me: error: This is not GNU libtool" >&2;}
13493    { (exit 1); exit 1; }; }
13494 	fi
13495 else
13496-	{ { echo "$as_me:5205: error: GNU libtool has not been found" >&5
13497+	{ { echo "$as_me:5308: error: GNU libtool has not been found" >&5
13498 echo "$as_me: error: GNU libtool has not been found" >&2;}
13499    { (exit 1); exit 1; }; }
13500 fi
13501@@ -5238,7 +5341,7 @@
13502
13503 else
13504
13505-echo "$as_me:5241: checking if you want to build shared libraries" >&5
13506+echo "$as_me:5344: checking if you want to build shared libraries" >&5
13507 echo $ECHO_N "checking if you want to build shared libraries... $ECHO_C" >&6
13508
13509 # Check whether --with-shared or --without-shared was given.
13510@@ -5248,11 +5351,11 @@
13511 else
13512   with_shared=no
13513 fi;
13514-echo "$as_me:5251: result: $with_shared" >&5
13515+echo "$as_me:5354: result: $with_shared" >&5
13516 echo "${ECHO_T}$with_shared" >&6
13517 test "x$with_shared" = "xyes" && cf_list_models="$cf_list_models shared"
13518
13519-echo "$as_me:5255: checking if you want to build static libraries" >&5
13520+echo "$as_me:5358: checking if you want to build static libraries" >&5
13521 echo $ECHO_N "checking if you want to build static libraries... $ECHO_C" >&6
13522
13523 # Check whether --with-normal or --without-normal was given.
13524@@ -5262,11 +5365,11 @@
13525 else
13526   with_normal=yes
13527 fi;
13528-echo "$as_me:5265: result: $with_normal" >&5
13529+echo "$as_me:5368: result: $with_normal" >&5
13530 echo "${ECHO_T}$with_normal" >&6
13531 test "x$with_normal" = "xyes" && cf_list_models="$cf_list_models normal"
13532
13533-echo "$as_me:5269: checking if you want to build debug libraries" >&5
13534+echo "$as_me:5372: checking if you want to build debug libraries" >&5
13535 echo $ECHO_N "checking if you want to build debug libraries... $ECHO_C" >&6
13536
13537 # Check whether --with-debug or --without-debug was given.
13538@@ -5276,11 +5379,11 @@
13539 else
13540   with_debug=yes
13541 fi;
13542-echo "$as_me:5279: result: $with_debug" >&5
13543+echo "$as_me:5382: result: $with_debug" >&5
13544 echo "${ECHO_T}$with_debug" >&6
13545 test "x$with_debug" = "xyes" && cf_list_models="$cf_list_models debug"
13546
13547-echo "$as_me:5283: checking if you want to build profiling libraries" >&5
13548+echo "$as_me:5386: checking if you want to build profiling libraries" >&5
13549 echo $ECHO_N "checking if you want to build profiling libraries... $ECHO_C" >&6
13550
13551 # Check whether --with-profile or --without-profile was given.
13552@@ -5290,7 +5393,7 @@
13553 else
13554   with_profile=no
13555 fi;
13556-echo "$as_me:5293: result: $with_profile" >&5
13557+echo "$as_me:5396: result: $with_profile" >&5
13558 echo "${ECHO_T}$with_profile" >&6
13559 test "x$with_profile" = "xyes" && cf_list_models="$cf_list_models profile"
13560
13561@@ -5298,7 +5401,7 @@
13562
13563 if test "X$cf_with_cxx_binding" != Xno; then
13564 if test "x$with_shared" = "xyes"; then
13565-echo "$as_me:5301: checking if you want to build C++ shared libraries" >&5
13566+echo "$as_me:5404: checking if you want to build C++ shared libraries" >&5
13567 echo $ECHO_N "checking if you want to build C++ shared libraries... $ECHO_C" >&6
13568
13569 # Check whether --with-cxx-shared or --without-cxx-shared was given.
13570@@ -5308,26 +5411,26 @@
13571 else
13572   with_shared_cxx=no
13573 fi;
13574-echo "$as_me:5311: result: $with_shared_cxx" >&5
13575+echo "$as_me:5414: result: $with_shared_cxx" >&5
13576 echo "${ECHO_T}$with_shared_cxx" >&6
13577 fi
13578 fi
13579
13580 ###############################################################################
13581
13582-echo "$as_me:5318: checking for specified models" >&5
13583+echo "$as_me:5421: checking for specified models" >&5
13584 echo $ECHO_N "checking for specified models... $ECHO_C" >&6
13585 test -z "$cf_list_models" && cf_list_models=normal
13586 test "$with_libtool" != "no" && cf_list_models=libtool
13587-echo "$as_me:5322: result: $cf_list_models" >&5
13588+echo "$as_me:5425: result: $cf_list_models" >&5
13589 echo "${ECHO_T}$cf_list_models" >&6
13590
13591 ### Use the first model as the default, and save its suffix for use in building
13592 ### up test-applications.
13593-echo "$as_me:5327: checking for default model" >&5
13594+echo "$as_me:5430: checking for default model" >&5
13595 echo $ECHO_N "checking for default model... $ECHO_C" >&6
13596 DFT_LWR_MODEL=`echo "$cf_list_models" | $AWK '{print $1}'`
13597-echo "$as_me:5330: result: $DFT_LWR_MODEL" >&5
13598+echo "$as_me:5433: result: $DFT_LWR_MODEL" >&5
13599 echo "${ECHO_T}$DFT_LWR_MODEL" >&6
13600
13601 DFT_UPR_MODEL=`echo "$DFT_LWR_MODEL" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%`
13602@@ -5341,7 +5444,7 @@
13603 LIB_DIR=../lib
13604 LIB_2ND=../../lib
13605
13606-echo "$as_me:5344: checking if you want to have a library-prefix" >&5
13607+echo "$as_me:5447: checking if you want to have a library-prefix" >&5
13608 echo $ECHO_N "checking if you want to have a library-prefix... $ECHO_C" >&6
13609
13610 # Check whether --with-lib-prefix or --without-lib-prefix was given.
13611@@ -5351,7 +5454,7 @@
13612 else
13613   with_lib_prefix=auto
13614 fi;
13615-echo "$as_me:5354: result: $with_lib_prefix" >&5
13616+echo "$as_me:5457: result: $with_lib_prefix" >&5
13617 echo "${ECHO_T}$with_lib_prefix" >&6
13618
13619 if test $with_lib_prefix = auto
13620@@ -5379,19 +5482,19 @@
13621
13622 LIB_SUFFIX=
13623
13624-	echo "$as_me:5382: checking for PATH separator" >&5
13625+	echo "$as_me:5485: checking for PATH separator" >&5
13626 echo $ECHO_N "checking for PATH separator... $ECHO_C" >&6
13627 	case $cf_cv_system_name in
13628 	(os2*)	PATH_SEPARATOR=';'  ;;
13629 	(*)	${PATH_SEPARATOR:=':'}  ;;
13630 	esac
13631
13632-	echo "$as_me:5389: result: $PATH_SEPARATOR" >&5
13633+	echo "$as_me:5492: result: $PATH_SEPARATOR" >&5
13634 echo "${ECHO_T}$PATH_SEPARATOR" >&6
13635
13636 ###############################################################################
13637
13638-echo "$as_me:5394: checking if you want to build a separate terminfo library" >&5
13639+echo "$as_me:5497: checking if you want to build a separate terminfo library" >&5
13640 echo $ECHO_N "checking if you want to build a separate terminfo library... $ECHO_C" >&6
13641
13642 # Check whether --with-termlib or --without-termlib was given.
13643@@ -5401,10 +5504,10 @@
13644 else
13645   with_termlib=no
13646 fi;
13647-echo "$as_me:5404: result: $with_termlib" >&5
13648+echo "$as_me:5507: result: $with_termlib" >&5
13649 echo "${ECHO_T}$with_termlib" >&6
13650
13651-echo "$as_me:5407: checking if you want to build a separate tic library" >&5
13652+echo "$as_me:5510: checking if you want to build a separate tic library" >&5
13653 echo $ECHO_N "checking if you want to build a separate tic library... $ECHO_C" >&6
13654
13655 # Check whether --with-ticlib or --without-ticlib was given.
13656@@ -5414,7 +5517,7 @@
13657 else
13658   with_ticlib=no
13659 fi;
13660-echo "$as_me:5417: result: $with_ticlib" >&5
13661+echo "$as_me:5520: result: $with_ticlib" >&5
13662 echo "${ECHO_T}$with_ticlib" >&6
13663
13664 if test X"$CC_G_OPT" = X"" ; then
13665@@ -5427,7 +5530,7 @@
13666 	test -n "$GXX" && test "x${ac_cv_prog_cxx_g}" != xyes && CXX_G_OPT=''
13667 fi
13668
13669-echo "$as_me:5430: checking for default loader flags" >&5
13670+echo "$as_me:5533: checking for default loader flags" >&5
13671 echo $ECHO_N "checking for default loader flags... $ECHO_C" >&6
13672 case $DFT_LWR_MODEL in
13673 (libtool) LD_MODEL=''   ;;
13674@@ -5436,13 +5539,13 @@
13675 (profile) LD_MODEL='-pg';;
13676 (shared)  LD_MODEL=''   ;;
13677 esac
13678-echo "$as_me:5439: result: $LD_MODEL" >&5
13679+echo "$as_me:5542: result: $LD_MODEL" >&5
13680 echo "${ECHO_T}$LD_MODEL" >&6
13681
13682 case $DFT_LWR_MODEL in
13683 (shared)
13684
13685-echo "$as_me:5445: checking if rpath option should be used" >&5
13686+echo "$as_me:5548: checking if rpath option should be used" >&5
13687 echo $ECHO_N "checking if rpath option should be used... $ECHO_C" >&6
13688
13689 # Check whether --enable-rpath or --disable-rpath was given.
13690@@ -5452,10 +5555,10 @@
13691 else
13692   cf_cv_enable_rpath=no
13693 fi;
13694-echo "$as_me:5455: result: $cf_cv_enable_rpath" >&5
13695+echo "$as_me:5558: result: $cf_cv_enable_rpath" >&5
13696 echo "${ECHO_T}$cf_cv_enable_rpath" >&6
13697
13698-echo "$as_me:5458: checking if shared libraries should be relinked during install" >&5
13699+echo "$as_me:5561: checking if shared libraries should be relinked during install" >&5
13700 echo $ECHO_N "checking if shared libraries should be relinked during install... $ECHO_C" >&6
13701
13702 # Check whether --enable-relink or --disable-relink was given.
13703@@ -5465,7 +5568,7 @@
13704 else
13705   cf_cv_do_relink=yes
13706 fi;
13707-echo "$as_me:5468: result: $cf_cv_do_relink" >&5
13708+echo "$as_me:5571: result: $cf_cv_do_relink" >&5
13709 echo "${ECHO_T}$cf_cv_do_relink" >&6
13710 	;;
13711 esac
13712@@ -5476,7 +5579,7 @@
13713 LD_RPATH_OPT=
13714 if test "x$cf_cv_enable_rpath" != xno
13715 then
13716-	echo "$as_me:5479: checking for an rpath option" >&5
13717+	echo "$as_me:5582: checking for an rpath option" >&5
13718 echo $ECHO_N "checking for an rpath option... $ECHO_C" >&6
13719 	case $cf_cv_system_name in
13720 	(irix*)
13721@@ -5507,12 +5610,12 @@
13722 	(*)
13723 		;;
13724 	esac
13725-	echo "$as_me:5510: result: $LD_RPATH_OPT" >&5
13726+	echo "$as_me:5613: result: $LD_RPATH_OPT" >&5
13727 echo "${ECHO_T}$LD_RPATH_OPT" >&6
13728
13729 	case "x$LD_RPATH_OPT" in
13730 	(x-R*)
13731-		echo "$as_me:5515: checking if we need a space after rpath option" >&5
13732+		echo "$as_me:5618: checking if we need a space after rpath option" >&5
13733 echo $ECHO_N "checking if we need a space after rpath option... $ECHO_C" >&6
13734 		cf_save_LIBS="$LIBS"
13735
13736@@ -5533,7 +5636,7 @@
13737 LIBS="$cf_add_libs"
13738
13739 		cat >conftest.$ac_ext <<_ACEOF
13740-#line 5536 "configure"
13741+#line 5639 "configure"
13742 #include "confdefs.h"
13743
13744 int
13745@@ -5545,16 +5648,16 @@
13746 }
13747 _ACEOF
13748 rm -f conftest.$ac_objext conftest$ac_exeext
13749-if { (eval echo "$as_me:5548: \"$ac_link\"") >&5
13750+if { (eval echo "$as_me:5651: \"$ac_link\"") >&5
13751   (eval $ac_link) 2>&5
13752   ac_status=$?
13753-  echo "$as_me:5551: \$? = $ac_status" >&5
13754+  echo "$as_me:5654: \$? = $ac_status" >&5
13755   (exit $ac_status); } &&
13756          { ac_try='test -s conftest$ac_exeext'
13757-  { (eval echo "$as_me:5554: \"$ac_try\"") >&5
13758+  { (eval echo "$as_me:5657: \"$ac_try\"") >&5
13759   (eval $ac_try) 2>&5
13760   ac_status=$?
13761-  echo "$as_me:5557: \$? = $ac_status" >&5
13762+  echo "$as_me:5660: \$? = $ac_status" >&5
13763   (exit $ac_status); }; }; then
13764   cf_rpath_space=no
13765 else
13766@@ -5564,7 +5667,7 @@
13767 fi
13768 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
13769 		LIBS="$cf_save_LIBS"
13770-		echo "$as_me:5567: result: $cf_rpath_space" >&5
13771+		echo "$as_me:5670: result: $cf_rpath_space" >&5
13772 echo "${ECHO_T}$cf_rpath_space" >&6
13773 		test "$cf_rpath_space" = yes && LD_RPATH_OPT="$LD_RPATH_OPT "
13774 		;;
13775@@ -5586,7 +5689,7 @@
13776 	cf_ld_rpath_opt=
13777 	test "$cf_cv_enable_rpath" = yes && cf_ld_rpath_opt="$LD_RPATH_OPT"
13778
13779-	echo "$as_me:5589: checking if release/abi version should be used for shared libs" >&5
13780+	echo "$as_me:5692: checking if release/abi version should be used for shared libs" >&5
13781 echo $ECHO_N "checking if release/abi version should be used for shared libs... $ECHO_C" >&6
13782
13783 # Check whether --with-shlib-version or --without-shlib-version was given.
13784@@ -5601,9 +5704,9 @@
13785 		cf_cv_shlib_version=$withval
13786 		;;
13787 	(*)
13788-		echo "$as_me:5604: result: $withval" >&5
13789+		echo "$as_me:5707: result: $withval" >&5
13790 echo "${ECHO_T}$withval" >&6
13791-		{ { echo "$as_me:5606: error: option value must be one of: rel, abi, or auto" >&5
13792+		{ { echo "$as_me:5709: error: option value must be one of: rel, abi, or auto" >&5
13793 echo "$as_me: error: option value must be one of: rel, abi, or auto" >&2;}
13794    { (exit 1); exit 1; }; }
13795 		;;
13796@@ -5612,7 +5715,7 @@
13797 else
13798   cf_cv_shlib_version=auto
13799 fi;
13800-	echo "$as_me:5615: result: $cf_cv_shlib_version" >&5
13801+	echo "$as_me:5718: result: $cf_cv_shlib_version" >&5
13802 echo "${ECHO_T}$cf_cv_shlib_version" >&6
13803
13804 	cf_cv_rm_so_locs=no
13805@@ -5635,14 +5738,14 @@
13806
13807 	if test "$cf_try_fPIC" = yes
13808 	then
13809-		echo "$as_me:5638: checking which $CC option to use" >&5
13810+		echo "$as_me:5741: checking which $CC option to use" >&5
13811 echo $ECHO_N "checking which $CC option to use... $ECHO_C" >&6
13812 		cf_save_CFLAGS="$CFLAGS"
13813 		for CC_SHARED_OPTS in -fPIC -fpic ''
13814 		do
13815 			CFLAGS="$cf_save_CFLAGS $CC_SHARED_OPTS"
13816 			cat >conftest.$ac_ext <<_ACEOF
13817-#line 5645 "configure"
13818+#line 5748 "configure"
13819 #include "confdefs.h"
13820 #include <stdio.h>
13821 int
13822@@ -5654,16 +5757,16 @@
13823 }
13824 _ACEOF
13825 rm -f conftest.$ac_objext
13826-if { (eval echo "$as_me:5657: \"$ac_compile\"") >&5
13827+if { (eval echo "$as_me:5760: \"$ac_compile\"") >&5
13828   (eval $ac_compile) 2>&5
13829   ac_status=$?
13830-  echo "$as_me:5660: \$? = $ac_status" >&5
13831+  echo "$as_me:5763: \$? = $ac_status" >&5
13832   (exit $ac_status); } &&
13833          { ac_try='test -s conftest.$ac_objext'
13834-  { (eval echo "$as_me:5663: \"$ac_try\"") >&5
13835+  { (eval echo "$as_me:5766: \"$ac_try\"") >&5
13836   (eval $ac_try) 2>&5
13837   ac_status=$?
13838-  echo "$as_me:5666: \$? = $ac_status" >&5
13839+  echo "$as_me:5769: \$? = $ac_status" >&5
13840   (exit $ac_status); }; }; then
13841   break
13842 else
13843@@ -5672,7 +5775,7 @@
13844 fi
13845 rm -f conftest.$ac_objext conftest.$ac_ext
13846 		done
13847-		echo "$as_me:5675: result: $CC_SHARED_OPTS" >&5
13848+		echo "$as_me:5778: result: $CC_SHARED_OPTS" >&5
13849 echo "${ECHO_T}$CC_SHARED_OPTS" >&6
13850 		CFLAGS="$cf_save_CFLAGS"
13851 	fi
13852@@ -5743,7 +5846,7 @@
13853 		MK_SHARED_LIB='${CC} ${LDFLAGS} ${CFLAGS} -dynamiclib -install_name ${libdir}/`basename $@` -compatibility_version ${ABI_VERSION} -current_version ${ABI_VERSION} -o $@'
13854 		test "$cf_cv_shlib_version" = auto && cf_cv_shlib_version=abi
13855 		cf_cv_shlib_version_infix=yes
13856-		echo "$as_me:5746: checking if ld -search_paths_first works" >&5
13857+		echo "$as_me:5849: checking if ld -search_paths_first works" >&5
13858 echo $ECHO_N "checking if ld -search_paths_first works... $ECHO_C" >&6
13859 if test "${cf_cv_ldflags_search_paths_first+set}" = set; then
13860   echo $ECHO_N "(cached) $ECHO_C" >&6
13861@@ -5752,7 +5855,7 @@
13862 			cf_save_LDFLAGS=$LDFLAGS
13863 			LDFLAGS="$LDFLAGS -Wl,-search_paths_first"
13864 			cat >conftest.$ac_ext <<_ACEOF
13865-#line 5755 "configure"
13866+#line 5858 "configure"
13867 #include "confdefs.h"
13868
13869 int
13870@@ -5764,16 +5867,16 @@
13871 }
13872 _ACEOF
13873 rm -f conftest.$ac_objext conftest$ac_exeext
13874-if { (eval echo "$as_me:5767: \"$ac_link\"") >&5
13875+if { (eval echo "$as_me:5870: \"$ac_link\"") >&5
13876   (eval $ac_link) 2>&5
13877   ac_status=$?
13878-  echo "$as_me:5770: \$? = $ac_status" >&5
13879+  echo "$as_me:5873: \$? = $ac_status" >&5
13880   (exit $ac_status); } &&
13881          { ac_try='test -s conftest$ac_exeext'
13882-  { (eval echo "$as_me:5773: \"$ac_try\"") >&5
13883+  { (eval echo "$as_me:5876: \"$ac_try\"") >&5
13884   (eval $ac_try) 2>&5
13885   ac_status=$?
13886-  echo "$as_me:5776: \$? = $ac_status" >&5
13887+  echo "$as_me:5879: \$? = $ac_status" >&5
13888   (exit $ac_status); }; }; then
13889   cf_cv_ldflags_search_paths_first=yes
13890 else
13891@@ -5784,7 +5887,7 @@
13892 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
13893 				LDFLAGS=$cf_save_LDFLAGS
13894 fi
13895-echo "$as_me:5787: result: $cf_cv_ldflags_search_paths_first" >&5
13896+echo "$as_me:5890: result: $cf_cv_ldflags_search_paths_first" >&5
13897 echo "${ECHO_T}$cf_cv_ldflags_search_paths_first" >&6
13898 		if test $cf_cv_ldflags_search_paths_first = yes; then
13899 			LDFLAGS="$LDFLAGS -Wl,-search_paths_first"
13900@@ -6009,7 +6112,7 @@
13901 			do
13902 				CFLAGS="$cf_shared_opts $cf_save_CFLAGS"
13903 				cat >conftest.$ac_ext <<_ACEOF
13904-#line 6012 "configure"
13905+#line 6115 "configure"
13906 #include "confdefs.h"
13907 #include <stdio.h>
13908 int
13909@@ -6021,16 +6124,16 @@
13910 }
13911 _ACEOF
13912 rm -f conftest.$ac_objext
13913-if { (eval echo "$as_me:6024: \"$ac_compile\"") >&5
13914+if { (eval echo "$as_me:6127: \"$ac_compile\"") >&5
13915   (eval $ac_compile) 2>&5
13916   ac_status=$?
13917-  echo "$as_me:6027: \$? = $ac_status" >&5
13918+  echo "$as_me:6130: \$? = $ac_status" >&5
13919   (exit $ac_status); } &&
13920          { ac_try='test -s conftest.$ac_objext'
13921-  { (eval echo "$as_me:6030: \"$ac_try\"") >&5
13922+  { (eval echo "$as_me:6133: \"$ac_try\"") >&5
13923   (eval $ac_try) 2>&5
13924   ac_status=$?
13925-  echo "$as_me:6033: \$? = $ac_status" >&5
13926+  echo "$as_me:6136: \$? = $ac_status" >&5
13927   (exit $ac_status); }; }; then
13928   break
13929 else
13930@@ -6067,7 +6170,7 @@
13931 			test "$cf_cv_do_symlinks" = no && cf_cv_do_symlinks=yes
13932 			;;
13933 		(*)
13934-			{ echo "$as_me:6070: WARNING: ignored --with-shlib-version" >&5
13935+			{ echo "$as_me:6173: WARNING: ignored --with-shlib-version" >&5
13936 echo "$as_me: WARNING: ignored --with-shlib-version" >&2;}
13937 			;;
13938 		esac
13939@@ -6077,7 +6180,7 @@
13940 	if test -n "$cf_try_cflags"
13941 	then
13942 cat > conftest.$ac_ext <<EOF
13943-#line 6080 "${as_me:-configure}"
13944+#line 6183 "${as_me:-configure}"
13945 #include <stdio.h>
13946 int main(int argc, char *argv[])
13947 {
13948@@ -6089,18 +6192,18 @@
13949 		for cf_opt in $cf_try_cflags
13950 		do
13951 			CFLAGS="$cf_save_CFLAGS -$cf_opt"
13952-			echo "$as_me:6092: checking if CFLAGS option -$cf_opt works" >&5
13953+			echo "$as_me:6195: checking if CFLAGS option -$cf_opt works" >&5
13954 echo $ECHO_N "checking if CFLAGS option -$cf_opt works... $ECHO_C" >&6
13955-			if { (eval echo "$as_me:6094: \"$ac_compile\"") >&5
13956+			if { (eval echo "$as_me:6197: \"$ac_compile\"") >&5
13957   (eval $ac_compile) 2>&5
13958   ac_status=$?
13959-  echo "$as_me:6097: \$? = $ac_status" >&5
13960+  echo "$as_me:6200: \$? = $ac_status" >&5
13961   (exit $ac_status); }; then
13962-				echo "$as_me:6099: result: yes" >&5
13963+				echo "$as_me:6202: result: yes" >&5
13964 echo "${ECHO_T}yes" >&6
13965 				cf_save_CFLAGS="$CFLAGS"
13966 			else
13967-				echo "$as_me:6103: result: no" >&5
13968+				echo "$as_me:6206: result: no" >&5
13969 echo "${ECHO_T}no" >&6
13970 			fi
13971 		done
13972@@ -6115,17 +6218,17 @@
13973
13974 	test -n "$verbose" && echo "	CC_SHARED_OPTS: $CC_SHARED_OPTS" 1>&6
13975
13976-echo "${as_me:-configure}:6118: testing CC_SHARED_OPTS: $CC_SHARED_OPTS ..." 1>&5
13977+echo "${as_me:-configure}:6221: testing CC_SHARED_OPTS: $CC_SHARED_OPTS ..." 1>&5
13978
13979 	test -n "$verbose" && echo "	MK_SHARED_LIB:  $MK_SHARED_LIB" 1>&6
13980
13981-echo "${as_me:-configure}:6122: testing MK_SHARED_LIB:  $MK_SHARED_LIB ..." 1>&5
13982+echo "${as_me:-configure}:6225: testing MK_SHARED_LIB:  $MK_SHARED_LIB ..." 1>&5
13983
13984 for model in $cf_list_models; do
13985 	case $model in
13986 	(libtool)
13987
13988-echo "$as_me:6128: checking for additional libtool options" >&5
13989+echo "$as_me:6231: checking for additional libtool options" >&5
13990 echo $ECHO_N "checking for additional libtool options... $ECHO_C" >&6
13991
13992 # Check whether --with-libtool-opts or --without-libtool-opts was given.
13993@@ -6135,7 +6238,7 @@
13994 else
13995   with_libtool_opts=no
13996 fi;
13997-echo "$as_me:6138: result: $with_libtool_opts" >&5
13998+echo "$as_me:6241: result: $with_libtool_opts" >&5
13999 echo "${ECHO_T}$with_libtool_opts" >&6
14000
14001 case .$with_libtool_opts in
14002@@ -6146,7 +6249,7 @@
14003 	;;
14004 esac
14005
14006-echo "$as_me:6149: checking if exported-symbols file should be used" >&5
14007+echo "$as_me:6252: checking if exported-symbols file should be used" >&5
14008 echo $ECHO_N "checking if exported-symbols file should be used... $ECHO_C" >&6
14009
14010 # Check whether --with-export-syms or --without-export-syms was given.
14011@@ -6161,7 +6264,7 @@
14012 	with_export_syms='${top_srcdir}/package/${PACKAGE}.sym'
14013
14014 fi
14015-echo "$as_me:6164: result: $with_export_syms" >&5
14016+echo "$as_me:6267: result: $with_export_syms" >&5
14017 echo "${ECHO_T}$with_export_syms" >&6
14018 if test "x$with_export_syms" != xno
14019 then
14020@@ -6172,15 +6275,15 @@
14021 		;;
14022 	(shared)
14023 		if test "$CC_SHARED_OPTS" = "unknown"; then
14024-			{ { echo "$as_me:6175: error: Shared libraries are not supported in this version" >&5
14025+			{ { echo "$as_me:6278: error: Shared libraries are not supported in this version" >&5
14026 echo "$as_me: error: Shared libraries are not supported in this version" >&2;}
14027    { (exit 1); exit 1; }; }
14028 		fi
14029 		# workaround for inept transition to PIE vs PIC...
14030-		echo "$as_me:6180: checking if current CFLAGS link properly" >&5
14031+		echo "$as_me:6283: checking if current CFLAGS link properly" >&5
14032 echo $ECHO_N "checking if current CFLAGS link properly... $ECHO_C" >&6
14033 		cat >conftest.$ac_ext <<_ACEOF
14034-#line 6183 "configure"
14035+#line 6286 "configure"
14036 #include "confdefs.h"
14037 #include <stdio.h>
14038 int
14039@@ -6192,16 +6295,16 @@
14040 }
14041 _ACEOF
14042 rm -f conftest.$ac_objext conftest$ac_exeext
14043-if { (eval echo "$as_me:6195: \"$ac_link\"") >&5
14044+if { (eval echo "$as_me:6298: \"$ac_link\"") >&5
14045   (eval $ac_link) 2>&5
14046   ac_status=$?
14047-  echo "$as_me:6198: \$? = $ac_status" >&5
14048+  echo "$as_me:6301: \$? = $ac_status" >&5
14049   (exit $ac_status); } &&
14050          { ac_try='test -s conftest$ac_exeext'
14051-  { (eval echo "$as_me:6201: \"$ac_try\"") >&5
14052+  { (eval echo "$as_me:6304: \"$ac_try\"") >&5
14053   (eval $ac_try) 2>&5
14054   ac_status=$?
14055-  echo "$as_me:6204: \$? = $ac_status" >&5
14056+  echo "$as_me:6307: \$? = $ac_status" >&5
14057   (exit $ac_status); }; }; then
14058   cf_cflags_work=yes
14059 else
14060@@ -6210,18 +6313,18 @@
14061 cf_cflags_work=no
14062 fi
14063 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
14064-		echo "$as_me:6213: result: $cf_cflags_work" >&5
14065+		echo "$as_me:6316: result: $cf_cflags_work" >&5
14066 echo "${ECHO_T}$cf_cflags_work" >&6
14067 		if test "$cf_cflags_work" = no
14068 		then
14069 			test -n "$verbose" && echo "	try to work around by appending shared-options" 1>&6
14070
14071-echo "${as_me:-configure}:6219: testing try to work around by appending shared-options ..." 1>&5
14072+echo "${as_me:-configure}:6322: testing try to work around by appending shared-options ..." 1>&5
14073
14074 			CFLAGS="$CFLAGS $CC_SHARED_OPTS"
14075 		fi
14076
14077-echo "$as_me:6224: checking if versioned-symbols file should be used" >&5
14078+echo "$as_me:6327: checking if versioned-symbols file should be used" >&5
14079 echo $ECHO_N "checking if versioned-symbols file should be used... $ECHO_C" >&6
14080
14081 # Check whether --with-versioned-syms or --without-versioned-syms was given.
14082@@ -6239,18 +6342,18 @@
14083 (xno)
14084 	;;
14085 (x/*)
14086-	test -f "$with_versioned_syms" || { { echo "$as_me:6242: error: expected a filename: $with_versioned_syms" >&5
14087+	test -f "$with_versioned_syms" || { { echo "$as_me:6345: error: expected a filename: $with_versioned_syms" >&5
14088 echo "$as_me: error: expected a filename: $with_versioned_syms" >&2;}
14089    { (exit 1); exit 1; }; }
14090 	;;
14091 (*)
14092-	test -f "$with_versioned_syms" || { { echo "$as_me:6247: error: expected a filename: $with_versioned_syms" >&5
14093+	test -f "$with_versioned_syms" || { { echo "$as_me:6350: error: expected a filename: $with_versioned_syms" >&5
14094 echo "$as_me: error: expected a filename: $with_versioned_syms" >&2;}
14095    { (exit 1); exit 1; }; }
14096 	with_versioned_syms=`pwd`/"$with_versioned_syms"
14097 	;;
14098 esac
14099-echo "$as_me:6253: result: $with_versioned_syms" >&5
14100+echo "$as_me:6356: result: $with_versioned_syms" >&5
14101 echo "${ECHO_T}$with_versioned_syms" >&6
14102
14103 RESULTING_SYMS=
14104@@ -6266,7 +6369,7 @@
14105 		MK_SHARED_LIB=`echo "$MK_SHARED_LIB" | sed -e "s%-Wl,%\\${VERSIONED_SYMS} -Wl,%"`
14106 		test -n "$verbose" && echo "	MK_SHARED_LIB:  $MK_SHARED_LIB" 1>&6
14107
14108-echo "${as_me:-configure}:6269: testing MK_SHARED_LIB:  $MK_SHARED_LIB ..." 1>&5
14109+echo "${as_me:-configure}:6372: testing MK_SHARED_LIB:  $MK_SHARED_LIB ..." 1>&5
14110
14111 		;;
14112 	(*-dy\ *)
14113@@ -6274,11 +6377,11 @@
14114 		MK_SHARED_LIB=`echo "$MK_SHARED_LIB" | sed -e "s%-dy%\\${VERSIONED_SYMS} -dy%"`
14115 		test -n "$verbose" && echo "	MK_SHARED_LIB:  $MK_SHARED_LIB" 1>&6
14116
14117-echo "${as_me:-configure}:6277: testing MK_SHARED_LIB:  $MK_SHARED_LIB ..." 1>&5
14118+echo "${as_me:-configure}:6380: testing MK_SHARED_LIB:  $MK_SHARED_LIB ..." 1>&5
14119
14120 		;;
14121 	(*)
14122-		{ echo "$as_me:6281: WARNING: this system does not support versioned-symbols" >&5
14123+		{ echo "$as_me:6384: WARNING: this system does not support versioned-symbols" >&5
14124 echo "$as_me: WARNING: this system does not support versioned-symbols" >&2;}
14125 		;;
14126 	esac
14127@@ -6290,7 +6393,7 @@
14128 	# symbols.
14129 	if test "x$VERSIONED_SYMS" != "x"
14130 	then
14131-		echo "$as_me:6293: checking if wildcards can be used to selectively omit symbols" >&5
14132+		echo "$as_me:6396: checking if wildcards can be used to selectively omit symbols" >&5
14133 echo $ECHO_N "checking if wildcards can be used to selectively omit symbols... $ECHO_C" >&6
14134 		WILDCARD_SYMS=no
14135
14136@@ -6327,7 +6430,7 @@
14137 } submodule_1.0;
14138 EOF
14139 		cat >conftest.$ac_ext <<EOF
14140-#line 6330 "configure"
14141+#line 6433 "configure"
14142 int	_ismissing(void) { return 1; }
14143 int	_localf1(void) { return 1; }
14144 int	_localf2(void) { return 2; }
14145@@ -6358,7 +6461,7 @@
14146 			cf_missing=`nm -P conftest.so 2>&5 |fgrep _ismissing | egrep '[ 	][DT][ 	]'`
14147 			test -n "$cf_missing" && WILDCARD_SYMS=yes
14148 		fi
14149-		echo "$as_me:6361: result: $WILDCARD_SYMS" >&5
14150+		echo "$as_me:6464: result: $WILDCARD_SYMS" >&5
14151 echo "${ECHO_T}$WILDCARD_SYMS" >&6
14152 		rm -f conftest.*
14153 	fi
14154@@ -6371,7 +6474,7 @@
14155 ### Checks for special libraries, must be done up-front.
14156 SHLIB_LIST=""
14157
14158-echo "$as_me:6374: checking if you want to link with the GPM mouse library" >&5
14159+echo "$as_me:6477: checking if you want to link with the GPM mouse library" >&5
14160 echo $ECHO_N "checking if you want to link with the GPM mouse library... $ECHO_C" >&6
14161
14162 # Check whether --with-gpm or --without-gpm was given.
14163@@ -6381,27 +6484,27 @@
14164 else
14165   with_gpm=maybe
14166 fi;
14167-echo "$as_me:6384: result: $with_gpm" >&5
14168+echo "$as_me:6487: result: $with_gpm" >&5
14169 echo "${ECHO_T}$with_gpm" >&6
14170
14171 if test "$with_gpm" != no ; then
14172-	echo "$as_me:6388: checking for gpm.h" >&5
14173+	echo "$as_me:6491: checking for gpm.h" >&5
14174 echo $ECHO_N "checking for gpm.h... $ECHO_C" >&6
14175 if test "${ac_cv_header_gpm_h+set}" = set; then
14176   echo $ECHO_N "(cached) $ECHO_C" >&6
14177 else
14178   cat >conftest.$ac_ext <<_ACEOF
14179-#line 6394 "configure"
14180+#line 6497 "configure"
14181 #include "confdefs.h"
14182 #include <gpm.h>
14183 _ACEOF
14184-if { (eval echo "$as_me:6398: \"$ac_cpp conftest.$ac_ext\"") >&5
14185+if { (eval echo "$as_me:6501: \"$ac_cpp conftest.$ac_ext\"") >&5
14186   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
14187   ac_status=$?
14188   egrep -v '^ *\+' conftest.er1 >conftest.err
14189   rm -f conftest.er1
14190   cat conftest.err >&5
14191-  echo "$as_me:6404: \$? = $ac_status" >&5
14192+  echo "$as_me:6507: \$? = $ac_status" >&5
14193   (exit $ac_status); } >/dev/null; then
14194   if test -s conftest.err; then
14195     ac_cpp_err=$ac_c_preproc_warn_flag
14196@@ -6420,7 +6523,7 @@
14197 fi
14198 rm -f conftest.err conftest.$ac_ext
14199 fi
14200-echo "$as_me:6423: result: $ac_cv_header_gpm_h" >&5
14201+echo "$as_me:6526: result: $ac_cv_header_gpm_h" >&5
14202 echo "${ECHO_T}$ac_cv_header_gpm_h" >&6
14203 if test $ac_cv_header_gpm_h = yes; then
14204
14205@@ -6431,7 +6534,7 @@
14206 		if test "$with_gpm" != yes && test "$with_gpm" != maybe ; then
14207 			test -n "$verbose" && echo "	assuming we really have GPM library" 1>&6
14208
14209-echo "${as_me:-configure}:6434: testing assuming we really have GPM library ..." 1>&5
14210+echo "${as_me:-configure}:6537: testing assuming we really have GPM library ..." 1>&5
14211
14212 cat >>confdefs.h <<\EOF
14213 #define HAVE_LIBGPM 1
14214@@ -6439,7 +6542,7 @@
14215
14216 			with_gpm=yes
14217 		else
14218-			echo "$as_me:6442: checking for Gpm_Open in -lgpm" >&5
14219+			echo "$as_me:6545: checking for Gpm_Open in -lgpm" >&5
14220 echo $ECHO_N "checking for Gpm_Open in -lgpm... $ECHO_C" >&6
14221 if test "${ac_cv_lib_gpm_Gpm_Open+set}" = set; then
14222   echo $ECHO_N "(cached) $ECHO_C" >&6
14223@@ -6447,7 +6550,7 @@
14224   ac_check_lib_save_LIBS=$LIBS
14225 LIBS="-lgpm  $LIBS"
14226 cat >conftest.$ac_ext <<_ACEOF
14227-#line 6450 "configure"
14228+#line 6553 "configure"
14229 #include "confdefs.h"
14230
14231 /* Override any gcc2 internal prototype to avoid an error.  */
14232@@ -6466,16 +6569,16 @@
14233 }
14234 _ACEOF
14235 rm -f conftest.$ac_objext conftest$ac_exeext
14236-if { (eval echo "$as_me:6469: \"$ac_link\"") >&5
14237+if { (eval echo "$as_me:6572: \"$ac_link\"") >&5
14238   (eval $ac_link) 2>&5
14239   ac_status=$?
14240-  echo "$as_me:6472: \$? = $ac_status" >&5
14241+  echo "$as_me:6575: \$? = $ac_status" >&5
14242   (exit $ac_status); } &&
14243          { ac_try='test -s conftest$ac_exeext'
14244-  { (eval echo "$as_me:6475: \"$ac_try\"") >&5
14245+  { (eval echo "$as_me:6578: \"$ac_try\"") >&5
14246   (eval $ac_try) 2>&5
14247   ac_status=$?
14248-  echo "$as_me:6478: \$? = $ac_status" >&5
14249+  echo "$as_me:6581: \$? = $ac_status" >&5
14250   (exit $ac_status); }; }; then
14251   ac_cv_lib_gpm_Gpm_Open=yes
14252 else
14253@@ -6486,18 +6589,18 @@
14254 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
14255 LIBS=$ac_check_lib_save_LIBS
14256 fi
14257-echo "$as_me:6489: result: $ac_cv_lib_gpm_Gpm_Open" >&5
14258+echo "$as_me:6592: result: $ac_cv_lib_gpm_Gpm_Open" >&5
14259 echo "${ECHO_T}$ac_cv_lib_gpm_Gpm_Open" >&6
14260 if test $ac_cv_lib_gpm_Gpm_Open = yes; then
14261   with_gpm=yes
14262 else
14263
14264 				if test "$with_gpm" = maybe; then
14265-					{ echo "$as_me:6496: WARNING: Cannot link with GPM library" >&5
14266+					{ echo "$as_me:6599: WARNING: Cannot link with GPM library" >&5
14267 echo "$as_me: WARNING: Cannot link with GPM library" >&2;}
14268 					with_gpm=no
14269 				else
14270-					{ { echo "$as_me:6500: error: Cannot link with GPM library" >&5
14271+					{ { echo "$as_me:6603: error: Cannot link with GPM library" >&5
14272 echo "$as_me: error: Cannot link with GPM library" >&2;}
14273    { (exit 1); exit 1; }; }
14274 				fi
14275@@ -6508,7 +6611,7 @@
14276
14277 else
14278
14279-		test "$with_gpm" != maybe && { echo "$as_me:6511: WARNING: Cannot find GPM header" >&5
14280+		test "$with_gpm" != maybe && { echo "$as_me:6614: WARNING: Cannot find GPM header" >&5
14281 echo "$as_me: WARNING: Cannot find GPM header" >&2;}
14282 		with_gpm=no
14283
14284@@ -6517,7 +6620,7 @@
14285 fi
14286
14287 if test "$with_gpm" != no ; then
14288-	echo "$as_me:6520: checking if you want to load GPM dynamically" >&5
14289+	echo "$as_me:6623: checking if you want to load GPM dynamically" >&5
14290 echo $ECHO_N "checking if you want to load GPM dynamically... $ECHO_C" >&6
14291
14292 # Check whether --with-dlsym or --without-dlsym was given.
14293@@ -6527,18 +6630,18 @@
14294 else
14295   with_dlsym=yes
14296 fi;
14297-	echo "$as_me:6530: result: $with_dlsym" >&5
14298+	echo "$as_me:6633: result: $with_dlsym" >&5
14299 echo "${ECHO_T}$with_dlsym" >&6
14300 	if test "x$with_dlsym" = xyes ; then
14301
14302 cf_have_dlsym=no
14303-echo "$as_me:6535: checking for dlsym" >&5
14304+echo "$as_me:6638: checking for dlsym" >&5
14305 echo $ECHO_N "checking for dlsym... $ECHO_C" >&6
14306 if test "${ac_cv_func_dlsym+set}" = set; then
14307   echo $ECHO_N "(cached) $ECHO_C" >&6
14308 else
14309   cat >conftest.$ac_ext <<_ACEOF
14310-#line 6541 "configure"
14311+#line 6644 "configure"
14312 #include "confdefs.h"
14313 #define dlsym autoconf_temporary
14314 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
14315@@ -6569,16 +6672,16 @@
14316 }
14317 _ACEOF
14318 rm -f conftest.$ac_objext conftest$ac_exeext
14319-if { (eval echo "$as_me:6572: \"$ac_link\"") >&5
14320+if { (eval echo "$as_me:6675: \"$ac_link\"") >&5
14321   (eval $ac_link) 2>&5
14322   ac_status=$?
14323-  echo "$as_me:6575: \$? = $ac_status" >&5
14324+  echo "$as_me:6678: \$? = $ac_status" >&5
14325   (exit $ac_status); } &&
14326          { ac_try='test -s conftest$ac_exeext'
14327-  { (eval echo "$as_me:6578: \"$ac_try\"") >&5
14328+  { (eval echo "$as_me:6681: \"$ac_try\"") >&5
14329   (eval $ac_try) 2>&5
14330   ac_status=$?
14331-  echo "$as_me:6581: \$? = $ac_status" >&5
14332+  echo "$as_me:6684: \$? = $ac_status" >&5
14333   (exit $ac_status); }; }; then
14334   ac_cv_func_dlsym=yes
14335 else
14336@@ -6588,14 +6691,14 @@
14337 fi
14338 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
14339 fi
14340-echo "$as_me:6591: result: $ac_cv_func_dlsym" >&5
14341+echo "$as_me:6694: result: $ac_cv_func_dlsym" >&5
14342 echo "${ECHO_T}$ac_cv_func_dlsym" >&6
14343 if test $ac_cv_func_dlsym = yes; then
14344   cf_have_dlsym=yes
14345 else
14346
14347 cf_have_libdl=no
14348-echo "$as_me:6598: checking for dlsym in -ldl" >&5
14349+echo "$as_me:6701: checking for dlsym in -ldl" >&5
14350 echo $ECHO_N "checking for dlsym in -ldl... $ECHO_C" >&6
14351 if test "${ac_cv_lib_dl_dlsym+set}" = set; then
14352   echo $ECHO_N "(cached) $ECHO_C" >&6
14353@@ -6603,7 +6706,7 @@
14354   ac_check_lib_save_LIBS=$LIBS
14355 LIBS="-ldl  $LIBS"
14356 cat >conftest.$ac_ext <<_ACEOF
14357-#line 6606 "configure"
14358+#line 6709 "configure"
14359 #include "confdefs.h"
14360
14361 /* Override any gcc2 internal prototype to avoid an error.  */
14362@@ -6622,16 +6725,16 @@
14363 }
14364 _ACEOF
14365 rm -f conftest.$ac_objext conftest$ac_exeext
14366-if { (eval echo "$as_me:6625: \"$ac_link\"") >&5
14367+if { (eval echo "$as_me:6728: \"$ac_link\"") >&5
14368   (eval $ac_link) 2>&5
14369   ac_status=$?
14370-  echo "$as_me:6628: \$? = $ac_status" >&5
14371+  echo "$as_me:6731: \$? = $ac_status" >&5
14372   (exit $ac_status); } &&
14373          { ac_try='test -s conftest$ac_exeext'
14374-  { (eval echo "$as_me:6631: \"$ac_try\"") >&5
14375+  { (eval echo "$as_me:6734: \"$ac_try\"") >&5
14376   (eval $ac_try) 2>&5
14377   ac_status=$?
14378-  echo "$as_me:6634: \$? = $ac_status" >&5
14379+  echo "$as_me:6737: \$? = $ac_status" >&5
14380   (exit $ac_status); }; }; then
14381   ac_cv_lib_dl_dlsym=yes
14382 else
14383@@ -6642,7 +6745,7 @@
14384 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
14385 LIBS=$ac_check_lib_save_LIBS
14386 fi
14387-echo "$as_me:6645: result: $ac_cv_lib_dl_dlsym" >&5
14388+echo "$as_me:6748: result: $ac_cv_lib_dl_dlsym" >&5
14389 echo "${ECHO_T}$ac_cv_lib_dl_dlsym" >&6
14390 if test $ac_cv_lib_dl_dlsym = yes; then
14391
14392@@ -6671,10 +6774,10 @@
14393 LIBS="$cf_add_libs"
14394  }
14395
14396-	echo "$as_me:6674: checking whether able to link to dl*() functions" >&5
14397+	echo "$as_me:6777: checking whether able to link to dl*() functions" >&5
14398 echo $ECHO_N "checking whether able to link to dl*() functions... $ECHO_C" >&6
14399 	cat >conftest.$ac_ext <<_ACEOF
14400-#line 6677 "configure"
14401+#line 6780 "configure"
14402 #include "confdefs.h"
14403 #include <dlfcn.h>
14404 int
14405@@ -6692,16 +6795,16 @@
14406 }
14407 _ACEOF
14408 rm -f conftest.$ac_objext conftest$ac_exeext
14409-if { (eval echo "$as_me:6695: \"$ac_link\"") >&5
14410+if { (eval echo "$as_me:6798: \"$ac_link\"") >&5
14411   (eval $ac_link) 2>&5
14412   ac_status=$?
14413-  echo "$as_me:6698: \$? = $ac_status" >&5
14414+  echo "$as_me:6801: \$? = $ac_status" >&5
14415   (exit $ac_status); } &&
14416          { ac_try='test -s conftest$ac_exeext'
14417-  { (eval echo "$as_me:6701: \"$ac_try\"") >&5
14418+  { (eval echo "$as_me:6804: \"$ac_try\"") >&5
14419   (eval $ac_try) 2>&5
14420   ac_status=$?
14421-  echo "$as_me:6704: \$? = $ac_status" >&5
14422+  echo "$as_me:6807: \$? = $ac_status" >&5
14423   (exit $ac_status); }; }; then
14424
14425 cat >>confdefs.h <<\EOF
14426@@ -6712,15 +6815,15 @@
14427   echo "$as_me: failed program was:" >&5
14428 cat conftest.$ac_ext >&5
14429
14430-		{ { echo "$as_me:6715: error: Cannot link test program for libdl" >&5
14431+		{ { echo "$as_me:6818: error: Cannot link test program for libdl" >&5
14432 echo "$as_me: error: Cannot link test program for libdl" >&2;}
14433    { (exit 1); exit 1; }; }
14434 fi
14435 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
14436-	echo "$as_me:6720: result: ok" >&5
14437+	echo "$as_me:6823: result: ok" >&5
14438 echo "${ECHO_T}ok" >&6
14439 else
14440-	{ { echo "$as_me:6723: error: Cannot find dlsym function" >&5
14441+	{ { echo "$as_me:6826: error: Cannot find dlsym function" >&5
14442 echo "$as_me: error: Cannot find dlsym function" >&2;}
14443    { (exit 1); exit 1; }; }
14444 fi
14445@@ -6728,12 +6831,12 @@
14446 		if test "x$with_gpm" != xyes ; then
14447 			test -n "$verbose" && echo "	assuming soname for gpm is $with_gpm" 1>&6
14448
14449-echo "${as_me:-configure}:6731: testing assuming soname for gpm is $with_gpm ..." 1>&5
14450+echo "${as_me:-configure}:6834: testing assuming soname for gpm is $with_gpm ..." 1>&5
14451
14452 			cf_cv_gpm_soname="$with_gpm"
14453 		else
14454
14455-echo "$as_me:6736: checking for soname of gpm library" >&5
14456+echo "$as_me:6839: checking for soname of gpm library" >&5
14457 echo $ECHO_N "checking for soname of gpm library... $ECHO_C" >&6
14458 if test "${cf_cv_gpm_soname+set}" = set; then
14459   echo $ECHO_N "(cached) $ECHO_C" >&6
14460@@ -6767,15 +6870,15 @@
14461 done
14462 LIBS="$cf_add_libs"
14463
14464-	if { (eval echo "$as_me:6770: \"$ac_compile\"") >&5
14465+	if { (eval echo "$as_me:6873: \"$ac_compile\"") >&5
14466   (eval $ac_compile) 2>&5
14467   ac_status=$?
14468-  echo "$as_me:6773: \$? = $ac_status" >&5
14469+  echo "$as_me:6876: \$? = $ac_status" >&5
14470   (exit $ac_status); } ; then
14471-		if { (eval echo "$as_me:6775: \"$ac_link\"") >&5
14472+		if { (eval echo "$as_me:6878: \"$ac_link\"") >&5
14473   (eval $ac_link) 2>&5
14474   ac_status=$?
14475-  echo "$as_me:6778: \$? = $ac_status" >&5
14476+  echo "$as_me:6881: \$? = $ac_status" >&5
14477   (exit $ac_status); } ; then
14478 			cf_cv_gpm_soname=`ldd conftest$ac_exeext 2>/dev/null | sed -e 's,^.*/,,' -e 's, .*$,,' | fgrep libgpm.`
14479 			test -z "$cf_cv_gpm_soname" && cf_cv_gpm_soname=unknown
14480@@ -6786,7 +6889,7 @@
14481 fi
14482
14483 fi
14484-echo "$as_me:6789: result: $cf_cv_gpm_soname" >&5
14485+echo "$as_me:6892: result: $cf_cv_gpm_soname" >&5
14486 echo "${ECHO_T}$cf_cv_gpm_soname" >&6
14487
14488 		fi
14489@@ -6854,7 +6957,7 @@
14490 #define HAVE_LIBGPM 1
14491 EOF
14492
14493-echo "$as_me:6857: checking for Gpm_Wgetch in -lgpm" >&5
14494+echo "$as_me:6960: checking for Gpm_Wgetch in -lgpm" >&5
14495 echo $ECHO_N "checking for Gpm_Wgetch in -lgpm... $ECHO_C" >&6
14496 if test "${ac_cv_lib_gpm_Gpm_Wgetch+set}" = set; then
14497   echo $ECHO_N "(cached) $ECHO_C" >&6
14498@@ -6862,7 +6965,7 @@
14499   ac_check_lib_save_LIBS=$LIBS
14500 LIBS="-lgpm  $LIBS"
14501 cat >conftest.$ac_ext <<_ACEOF
14502-#line 6865 "configure"
14503+#line 6968 "configure"
14504 #include "confdefs.h"
14505
14506 /* Override any gcc2 internal prototype to avoid an error.  */
14507@@ -6881,16 +6984,16 @@
14508 }
14509 _ACEOF
14510 rm -f conftest.$ac_objext conftest$ac_exeext
14511-if { (eval echo "$as_me:6884: \"$ac_link\"") >&5
14512+if { (eval echo "$as_me:6987: \"$ac_link\"") >&5
14513   (eval $ac_link) 2>&5
14514   ac_status=$?
14515-  echo "$as_me:6887: \$? = $ac_status" >&5
14516+  echo "$as_me:6990: \$? = $ac_status" >&5
14517   (exit $ac_status); } &&
14518          { ac_try='test -s conftest$ac_exeext'
14519-  { (eval echo "$as_me:6890: \"$ac_try\"") >&5
14520+  { (eval echo "$as_me:6993: \"$ac_try\"") >&5
14521   (eval $ac_try) 2>&5
14522   ac_status=$?
14523-  echo "$as_me:6893: \$? = $ac_status" >&5
14524+  echo "$as_me:6996: \$? = $ac_status" >&5
14525   (exit $ac_status); }; }; then
14526   ac_cv_lib_gpm_Gpm_Wgetch=yes
14527 else
14528@@ -6901,11 +7004,11 @@
14529 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
14530 LIBS=$ac_check_lib_save_LIBS
14531 fi
14532-echo "$as_me:6904: result: $ac_cv_lib_gpm_Gpm_Wgetch" >&5
14533+echo "$as_me:7007: result: $ac_cv_lib_gpm_Gpm_Wgetch" >&5
14534 echo "${ECHO_T}$ac_cv_lib_gpm_Gpm_Wgetch" >&6
14535 if test $ac_cv_lib_gpm_Gpm_Wgetch = yes; then
14536
14537-echo "$as_me:6908: checking if GPM is weakly bound to curses library" >&5
14538+echo "$as_me:7011: checking if GPM is weakly bound to curses library" >&5
14539 echo $ECHO_N "checking if GPM is weakly bound to curses library... $ECHO_C" >&6
14540 if test "${cf_cv_check_gpm_wgetch+set}" = set; then
14541   echo $ECHO_N "(cached) $ECHO_C" >&6
14542@@ -6929,15 +7032,15 @@
14543 	# to rely on the static library, noting that some packagers may not
14544 	# include it.
14545 	LIBS="-static -lgpm -dynamic $LIBS"
14546-	if { (eval echo "$as_me:6932: \"$ac_compile\"") >&5
14547+	if { (eval echo "$as_me:7035: \"$ac_compile\"") >&5
14548   (eval $ac_compile) 2>&5
14549   ac_status=$?
14550-  echo "$as_me:6935: \$? = $ac_status" >&5
14551+  echo "$as_me:7038: \$? = $ac_status" >&5
14552   (exit $ac_status); } ; then
14553-		if { (eval echo "$as_me:6937: \"$ac_link\"") >&5
14554+		if { (eval echo "$as_me:7040: \"$ac_link\"") >&5
14555   (eval $ac_link) 2>&5
14556   ac_status=$?
14557-  echo "$as_me:6940: \$? = $ac_status" >&5
14558+  echo "$as_me:7043: \$? = $ac_status" >&5
14559   (exit $ac_status); } ; then
14560 			cf_cv_check_gpm_wgetch=`nm conftest$ac_exeext | egrep '\<wgetch\>' | egrep '\<[vVwW]\>'`
14561 			test -n "$cf_cv_check_gpm_wgetch" && cf_cv_check_gpm_wgetch=yes
14562@@ -6949,11 +7052,11 @@
14563 fi
14564
14565 fi
14566-echo "$as_me:6952: result: $cf_cv_check_gpm_wgetch" >&5
14567+echo "$as_me:7055: result: $cf_cv_check_gpm_wgetch" >&5
14568 echo "${ECHO_T}$cf_cv_check_gpm_wgetch" >&6
14569
14570 if test "$cf_cv_check_gpm_wgetch" != yes ; then
14571-	{ echo "$as_me:6956: WARNING: GPM library is already linked with curses - read the FAQ" >&5
14572+	{ echo "$as_me:7059: WARNING: GPM library is already linked with curses - read the FAQ" >&5
14573 echo "$as_me: WARNING: GPM library is already linked with curses - read the FAQ" >&2;}
14574 fi
14575
14576@@ -6961,7 +7064,7 @@
14577
14578 fi
14579
14580-echo "$as_me:6964: checking if you want to use PCRE2 for regular-expressions" >&5
14581+echo "$as_me:7067: checking if you want to use PCRE2 for regular-expressions" >&5
14582 echo $ECHO_N "checking if you want to use PCRE2 for regular-expressions... $ECHO_C" >&6
14583
14584 # Check whether --with-pcre2 or --without-pcre2 was given.
14585@@ -6970,7 +7073,7 @@
14586
14587 fi;
14588 test -z "$with_pcre2" && with_pcre2=no
14589-echo "$as_me:6973: result: $with_pcre2" >&5
14590+echo "$as_me:7076: result: $with_pcre2" >&5
14591 echo "${ECHO_T}$with_pcre2" >&6
14592
14593 if test "x$with_pcre2" != xno ; then
14594@@ -6978,17 +7081,17 @@
14595 if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists libpcre2; then
14596 	test -n "$verbose" && echo "	found package libpcre2" 1>&6
14597
14598-echo "${as_me:-configure}:6981: testing found package libpcre2 ..." 1>&5
14599+echo "${as_me:-configure}:7084: testing found package libpcre2 ..." 1>&5
14600
14601 	cf_pkgconfig_incs="`$PKG_CONFIG --cflags libpcre2 2>/dev/null`"
14602 	cf_pkgconfig_libs="`$PKG_CONFIG --libs   libpcre2 2>/dev/null`"
14603 	test -n "$verbose" && echo "	package libpcre2 CFLAGS: $cf_pkgconfig_incs" 1>&6
14604
14605-echo "${as_me:-configure}:6987: testing package libpcre2 CFLAGS: $cf_pkgconfig_incs ..." 1>&5
14606+echo "${as_me:-configure}:7090: testing package libpcre2 CFLAGS: $cf_pkgconfig_incs ..." 1>&5
14607
14608 	test -n "$verbose" && echo "	package libpcre2 LIBS: $cf_pkgconfig_libs" 1>&6
14609
14610-echo "${as_me:-configure}:6991: testing package libpcre2 LIBS: $cf_pkgconfig_libs ..." 1>&5
14611+echo "${as_me:-configure}:7094: testing package libpcre2 LIBS: $cf_pkgconfig_libs ..." 1>&5
14612
14613 cf_fix_cppflags=no
14614 cf_new_cflags=
14615@@ -7112,17 +7215,17 @@
14616 if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists libpcre; then
14617 	test -n "$verbose" && echo "	found package libpcre" 1>&6
14618
14619-echo "${as_me:-configure}:7115: testing found package libpcre ..." 1>&5
14620+echo "${as_me:-configure}:7218: testing found package libpcre ..." 1>&5
14621
14622 	cf_pkgconfig_incs="`$PKG_CONFIG --cflags libpcre 2>/dev/null`"
14623 	cf_pkgconfig_libs="`$PKG_CONFIG --libs   libpcre 2>/dev/null`"
14624 	test -n "$verbose" && echo "	package libpcre CFLAGS: $cf_pkgconfig_incs" 1>&6
14625
14626-echo "${as_me:-configure}:7121: testing package libpcre CFLAGS: $cf_pkgconfig_incs ..." 1>&5
14627+echo "${as_me:-configure}:7224: testing package libpcre CFLAGS: $cf_pkgconfig_incs ..." 1>&5
14628
14629 	test -n "$verbose" && echo "	package libpcre LIBS: $cf_pkgconfig_libs" 1>&6
14630
14631-echo "${as_me:-configure}:7125: testing package libpcre LIBS: $cf_pkgconfig_libs ..." 1>&5
14632+echo "${as_me:-configure}:7228: testing package libpcre LIBS: $cf_pkgconfig_libs ..." 1>&5
14633
14634 cf_fix_cppflags=no
14635 cf_new_cflags=
14636@@ -7243,7 +7346,7 @@
14637 	cf_pkgconfig_incs=
14638 	cf_pkgconfig_libs=
14639
14640-			{ { echo "$as_me:7246: error: Cannot find PCRE2 library" >&5
14641+			{ { echo "$as_me:7349: error: Cannot find PCRE2 library" >&5
14642 echo "$as_me: error: Cannot find PCRE2 library" >&2;}
14643    { (exit 1); exit 1; }; }
14644 fi
14645@@ -7259,7 +7362,7 @@
14646 	(*pcre2-posix*|*pcreposix*)
14647 		;;
14648 	(*)
14649-		echo "$as_me:7262: checking for regcomp in -lpcre2-posix" >&5
14650+		echo "$as_me:7365: checking for regcomp in -lpcre2-posix" >&5
14651 echo $ECHO_N "checking for regcomp in -lpcre2-posix... $ECHO_C" >&6
14652 if test "${ac_cv_lib_pcre2_posix_regcomp+set}" = set; then
14653   echo $ECHO_N "(cached) $ECHO_C" >&6
14654@@ -7267,7 +7370,7 @@
14655   ac_check_lib_save_LIBS=$LIBS
14656 LIBS="-lpcre2-posix  $LIBS"
14657 cat >conftest.$ac_ext <<_ACEOF
14658-#line 7270 "configure"
14659+#line 7373 "configure"
14660 #include "confdefs.h"
14661
14662 /* Override any gcc2 internal prototype to avoid an error.  */
14663@@ -7286,16 +7389,16 @@
14664 }
14665 _ACEOF
14666 rm -f conftest.$ac_objext conftest$ac_exeext
14667-if { (eval echo "$as_me:7289: \"$ac_link\"") >&5
14668+if { (eval echo "$as_me:7392: \"$ac_link\"") >&5
14669   (eval $ac_link) 2>&5
14670   ac_status=$?
14671-  echo "$as_me:7292: \$? = $ac_status" >&5
14672+  echo "$as_me:7395: \$? = $ac_status" >&5
14673   (exit $ac_status); } &&
14674          { ac_try='test -s conftest$ac_exeext'
14675-  { (eval echo "$as_me:7295: \"$ac_try\"") >&5
14676+  { (eval echo "$as_me:7398: \"$ac_try\"") >&5
14677   (eval $ac_try) 2>&5
14678   ac_status=$?
14679-  echo "$as_me:7298: \$? = $ac_status" >&5
14680+  echo "$as_me:7401: \$? = $ac_status" >&5
14681   (exit $ac_status); }; }; then
14682   ac_cv_lib_pcre2_posix_regcomp=yes
14683 else
14684@@ -7306,7 +7409,7 @@
14685 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
14686 LIBS=$ac_check_lib_save_LIBS
14687 fi
14688-echo "$as_me:7309: result: $ac_cv_lib_pcre2_posix_regcomp" >&5
14689+echo "$as_me:7412: result: $ac_cv_lib_pcre2_posix_regcomp" >&5
14690 echo "${ECHO_T}$ac_cv_lib_pcre2_posix_regcomp" >&6
14691 if test $ac_cv_lib_pcre2_posix_regcomp = yes; then
14692
14693@@ -7327,7 +7430,7 @@
14694 LIBS="$cf_add_libs"
14695
14696 else
14697-  echo "$as_me:7330: checking for regcomp in -lpcreposix" >&5
14698+  echo "$as_me:7433: checking for regcomp in -lpcreposix" >&5
14699 echo $ECHO_N "checking for regcomp in -lpcreposix... $ECHO_C" >&6
14700 if test "${ac_cv_lib_pcreposix_regcomp+set}" = set; then
14701   echo $ECHO_N "(cached) $ECHO_C" >&6
14702@@ -7335,7 +7438,7 @@
14703   ac_check_lib_save_LIBS=$LIBS
14704 LIBS="-lpcreposix  $LIBS"
14705 cat >conftest.$ac_ext <<_ACEOF
14706-#line 7338 "configure"
14707+#line 7441 "configure"
14708 #include "confdefs.h"
14709
14710 /* Override any gcc2 internal prototype to avoid an error.  */
14711@@ -7354,16 +7457,16 @@
14712 }
14713 _ACEOF
14714 rm -f conftest.$ac_objext conftest$ac_exeext
14715-if { (eval echo "$as_me:7357: \"$ac_link\"") >&5
14716+if { (eval echo "$as_me:7460: \"$ac_link\"") >&5
14717   (eval $ac_link) 2>&5
14718   ac_status=$?
14719-  echo "$as_me:7360: \$? = $ac_status" >&5
14720+  echo "$as_me:7463: \$? = $ac_status" >&5
14721   (exit $ac_status); } &&
14722          { ac_try='test -s conftest$ac_exeext'
14723-  { (eval echo "$as_me:7363: \"$ac_try\"") >&5
14724+  { (eval echo "$as_me:7466: \"$ac_try\"") >&5
14725   (eval $ac_try) 2>&5
14726   ac_status=$?
14727-  echo "$as_me:7366: \$? = $ac_status" >&5
14728+  echo "$as_me:7469: \$? = $ac_status" >&5
14729   (exit $ac_status); }; }; then
14730   ac_cv_lib_pcreposix_regcomp=yes
14731 else
14732@@ -7374,7 +7477,7 @@
14733 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
14734 LIBS=$ac_check_lib_save_LIBS
14735 fi
14736-echo "$as_me:7377: result: $ac_cv_lib_pcreposix_regcomp" >&5
14737+echo "$as_me:7480: result: $ac_cv_lib_pcreposix_regcomp" >&5
14738 echo "${ECHO_T}$ac_cv_lib_pcreposix_regcomp" >&6
14739 if test $ac_cv_lib_pcreposix_regcomp = yes; then
14740
14741@@ -7395,7 +7498,7 @@
14742 LIBS="$cf_add_libs"
14743
14744 else
14745-  { { echo "$as_me:7398: error: Cannot find PCRE2 POSIX library" >&5
14746+  { { echo "$as_me:7501: error: Cannot find PCRE2 POSIX library" >&5
14747 echo "$as_me: error: Cannot find PCRE2 POSIX library" >&2;}
14748    { (exit 1); exit 1; }; }
14749 fi
14750@@ -7410,23 +7513,23 @@
14751 for ac_header in pcre2-posix.h pcreposix.h
14752 do
14753 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
14754-echo "$as_me:7413: checking for $ac_header" >&5
14755+echo "$as_me:7516: checking for $ac_header" >&5
14756 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
14757 if eval "test \"\${$as_ac_Header+set}\" = set"; then
14758   echo $ECHO_N "(cached) $ECHO_C" >&6
14759 else
14760   cat >conftest.$ac_ext <<_ACEOF
14761-#line 7419 "configure"
14762+#line 7522 "configure"
14763 #include "confdefs.h"
14764 #include <$ac_header>
14765 _ACEOF
14766-if { (eval echo "$as_me:7423: \"$ac_cpp conftest.$ac_ext\"") >&5
14767+if { (eval echo "$as_me:7526: \"$ac_cpp conftest.$ac_ext\"") >&5
14768   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
14769   ac_status=$?
14770   egrep -v '^ *\+' conftest.er1 >conftest.err
14771   rm -f conftest.er1
14772   cat conftest.err >&5
14773-  echo "$as_me:7429: \$? = $ac_status" >&5
14774+  echo "$as_me:7532: \$? = $ac_status" >&5
14775   (exit $ac_status); } >/dev/null; then
14776   if test -s conftest.err; then
14777     ac_cpp_err=$ac_c_preproc_warn_flag
14778@@ -7445,7 +7548,7 @@
14779 fi
14780 rm -f conftest.err conftest.$ac_ext
14781 fi
14782-echo "$as_me:7448: result: `eval echo '${'$as_ac_Header'}'`" >&5
14783+echo "$as_me:7551: result: `eval echo '${'$as_ac_Header'}'`" >&5
14784 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
14785 if test `eval echo '${'$as_ac_Header'}'` = yes; then
14786   cat >>confdefs.h <<EOF
14787@@ -7459,7 +7562,7 @@
14788
14789 # not everyone has "test -c"
14790 if test -c /dev/sysmouse 2>/dev/null ; then
14791-echo "$as_me:7462: checking if you want to use sysmouse" >&5
14792+echo "$as_me:7565: checking if you want to use sysmouse" >&5
14793 echo $ECHO_N "checking if you want to use sysmouse... $ECHO_C" >&6
14794
14795 # Check whether --with-sysmouse or --without-sysmouse was given.
14796@@ -7471,7 +7574,7 @@
14797 fi;
14798 	if test "$cf_with_sysmouse" != no ; then
14799 	cat >conftest.$ac_ext <<_ACEOF
14800-#line 7474 "configure"
14801+#line 7577 "configure"
14802 #include "confdefs.h"
14803
14804 #include <osreldate.h>
14805@@ -7494,16 +7597,16 @@
14806 }
14807 _ACEOF
14808 rm -f conftest.$ac_objext
14809-if { (eval echo "$as_me:7497: \"$ac_compile\"") >&5
14810+if { (eval echo "$as_me:7600: \"$ac_compile\"") >&5
14811   (eval $ac_compile) 2>&5
14812   ac_status=$?
14813-  echo "$as_me:7500: \$? = $ac_status" >&5
14814+  echo "$as_me:7603: \$? = $ac_status" >&5
14815   (exit $ac_status); } &&
14816          { ac_try='test -s conftest.$ac_objext'
14817-  { (eval echo "$as_me:7503: \"$ac_try\"") >&5
14818+  { (eval echo "$as_me:7606: \"$ac_try\"") >&5
14819   (eval $ac_try) 2>&5
14820   ac_status=$?
14821-  echo "$as_me:7506: \$? = $ac_status" >&5
14822+  echo "$as_me:7609: \$? = $ac_status" >&5
14823   (exit $ac_status); }; }; then
14824   cf_with_sysmouse=yes
14825 else
14826@@ -7513,7 +7616,7 @@
14827 fi
14828 rm -f conftest.$ac_objext conftest.$ac_ext
14829 	fi
14830-echo "$as_me:7516: result: $cf_with_sysmouse" >&5
14831+echo "$as_me:7619: result: $cf_with_sysmouse" >&5
14832 echo "${ECHO_T}$cf_with_sysmouse" >&6
14833 test "$cf_with_sysmouse" = yes &&
14834 cat >>confdefs.h <<\EOF
14835@@ -7523,7 +7626,7 @@
14836 fi
14837
14838 # pretend that ncurses==ncursesw==ncursest
14839-echo "$as_me:7526: checking if you want to disable library suffixes" >&5
14840+echo "$as_me:7629: checking if you want to disable library suffixes" >&5
14841 echo $ECHO_N "checking if you want to disable library suffixes... $ECHO_C" >&6
14842
14843 # Check whether --enable-lib-suffixes or --disable-lib-suffixes was given.
14844@@ -7540,13 +7643,13 @@
14845 	disable_lib_suffixes=no
14846
14847 fi;
14848-echo "$as_me:7543: result: $disable_lib_suffixes" >&5
14849+echo "$as_me:7646: result: $disable_lib_suffixes" >&5
14850 echo "${ECHO_T}$disable_lib_suffixes" >&6
14851
14852 ### If we're building with rpath, try to link non-standard libs that way too.
14853 if test "$DFT_LWR_MODEL" = "shared" && test "x$cf_cv_enable_rpath" != xno; then
14854
14855-echo "$as_me:7549: checking if rpath-hack should be disabled" >&5
14856+echo "$as_me:7652: checking if rpath-hack should be disabled" >&5
14857 echo $ECHO_N "checking if rpath-hack should be disabled... $ECHO_C" >&6
14858
14859 # Check whether --enable-rpath-hack or --disable-rpath-hack was given.
14860@@ -7563,21 +7666,21 @@
14861 	cf_disable_rpath_hack=no
14862
14863 fi;
14864-echo "$as_me:7566: result: $cf_disable_rpath_hack" >&5
14865+echo "$as_me:7669: result: $cf_disable_rpath_hack" >&5
14866 echo "${ECHO_T}$cf_disable_rpath_hack" >&6
14867 if test "$cf_disable_rpath_hack" = no ; then
14868
14869-echo "$as_me:7570: checking for updated LDFLAGS" >&5
14870+echo "$as_me:7673: checking for updated LDFLAGS" >&5
14871 echo $ECHO_N "checking for updated LDFLAGS... $ECHO_C" >&6
14872 if test -n "$LD_RPATH_OPT" ; then
14873-	echo "$as_me:7573: result: maybe" >&5
14874+	echo "$as_me:7676: result: maybe" >&5
14875 echo "${ECHO_T}maybe" >&6
14876
14877 	for ac_prog in ldd
14878 do
14879   # Extract the first word of "$ac_prog", so it can be a program name with args.
14880 set dummy $ac_prog; ac_word=$2
14881-echo "$as_me:7580: checking for $ac_word" >&5
14882+echo "$as_me:7683: checking for $ac_word" >&5
14883 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
14884 if test "${ac_cv_prog_cf_ldd_prog+set}" = set; then
14885   echo $ECHO_N "(cached) $ECHO_C" >&6
14886@@ -7592,7 +7695,7 @@
14887   test -z "$ac_dir" && ac_dir=.
14888   $as_executable_p "$ac_dir/$ac_word" || continue
14889 ac_cv_prog_cf_ldd_prog="$ac_prog"
14890-echo "$as_me:7595: found $ac_dir/$ac_word" >&5
14891+echo "$as_me:7698: found $ac_dir/$ac_word" >&5
14892 break
14893 done
14894
14895@@ -7600,10 +7703,10 @@
14896 fi
14897 cf_ldd_prog=$ac_cv_prog_cf_ldd_prog
14898 if test -n "$cf_ldd_prog"; then
14899-  echo "$as_me:7603: result: $cf_ldd_prog" >&5
14900+  echo "$as_me:7706: result: $cf_ldd_prog" >&5
14901 echo "${ECHO_T}$cf_ldd_prog" >&6
14902 else
14903-  echo "$as_me:7606: result: no" >&5
14904+  echo "$as_me:7709: result: no" >&5
14905 echo "${ECHO_T}no" >&6
14906 fi
14907
14908@@ -7617,7 +7720,7 @@
14909 		cf_rpath_oops=
14910
14911 cat >conftest.$ac_ext <<_ACEOF
14912-#line 7620 "configure"
14913+#line 7723 "configure"
14914 #include "confdefs.h"
14915 #include <stdio.h>
14916 int
14917@@ -7629,16 +7732,16 @@
14918 }
14919 _ACEOF
14920 rm -f conftest.$ac_objext conftest$ac_exeext
14921-if { (eval echo "$as_me:7632: \"$ac_link\"") >&5
14922+if { (eval echo "$as_me:7735: \"$ac_link\"") >&5
14923   (eval $ac_link) 2>&5
14924   ac_status=$?
14925-  echo "$as_me:7635: \$? = $ac_status" >&5
14926+  echo "$as_me:7738: \$? = $ac_status" >&5
14927   (exit $ac_status); } &&
14928          { ac_try='test -s conftest$ac_exeext'
14929-  { (eval echo "$as_me:7638: \"$ac_try\"") >&5
14930+  { (eval echo "$as_me:7741: \"$ac_try\"") >&5
14931   (eval $ac_try) 2>&5
14932   ac_status=$?
14933-  echo "$as_me:7641: \$? = $ac_status" >&5
14934+  echo "$as_me:7744: \$? = $ac_status" >&5
14935   (exit $ac_status); }; }; then
14936   cf_rpath_oops=`$cf_ldd_prog conftest$ac_exeext | fgrep ' not found' | sed -e 's% =>.*$%%' |sort | uniq`
14937 		 cf_rpath_list=`$cf_ldd_prog conftest$ac_exeext | fgrep / | sed -e 's%^.*[ 	]/%/%' -e 's%/[^/][^/]*$%%' |sort | uniq`
14938@@ -7666,7 +7769,7 @@
14939 					then
14940 						test -n "$verbose" && echo "	...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src" 1>&6
14941
14942-echo "${as_me:-configure}:7669: testing ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src ..." 1>&5
14943+echo "${as_me:-configure}:7772: testing ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src ..." 1>&5
14944
14945 						LDFLAGS="$LDFLAGS -L$cf_rpath_dir/lib"
14946 						break
14947@@ -7678,11 +7781,11 @@
14948
14949 	test -n "$verbose" && echo "	...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS" 1>&6
14950
14951-echo "${as_me:-configure}:7681: testing ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5
14952+echo "${as_me:-configure}:7784: testing ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5
14953
14954 test -n "$verbose" && echo "	...checking LDFLAGS $LDFLAGS" 1>&6
14955
14956-echo "${as_me:-configure}:7685: testing ...checking LDFLAGS $LDFLAGS ..." 1>&5
14957+echo "${as_me:-configure}:7788: testing ...checking LDFLAGS $LDFLAGS ..." 1>&5
14958
14959 cf_rpath_dst=
14960 for cf_rpath_src in $LDFLAGS
14961@@ -7719,7 +7822,7 @@
14962 			then
14963 				test -n "$verbose" && echo "	...Filter $cf_rpath_src ->$cf_rpath_tmp" 1>&6
14964
14965-echo "${as_me:-configure}:7722: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5
14966+echo "${as_me:-configure}:7825: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5
14967
14968 				EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS"
14969 			fi
14970@@ -7732,11 +7835,11 @@
14971
14972 test -n "$verbose" && echo "	...checked LDFLAGS $LDFLAGS" 1>&6
14973
14974-echo "${as_me:-configure}:7735: testing ...checked LDFLAGS $LDFLAGS ..." 1>&5
14975+echo "${as_me:-configure}:7838: testing ...checked LDFLAGS $LDFLAGS ..." 1>&5
14976
14977 test -n "$verbose" && echo "	...checking LIBS $LIBS" 1>&6
14978
14979-echo "${as_me:-configure}:7739: testing ...checking LIBS $LIBS ..." 1>&5
14980+echo "${as_me:-configure}:7842: testing ...checking LIBS $LIBS ..." 1>&5
14981
14982 cf_rpath_dst=
14983 for cf_rpath_src in $LIBS
14984@@ -7773,7 +7876,7 @@
14985 			then
14986 				test -n "$verbose" && echo "	...Filter $cf_rpath_src ->$cf_rpath_tmp" 1>&6
14987
14988-echo "${as_me:-configure}:7776: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5
14989+echo "${as_me:-configure}:7879: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5
14990
14991 				EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS"
14992 			fi
14993@@ -7786,14 +7889,14 @@
14994
14995 test -n "$verbose" && echo "	...checked LIBS $LIBS" 1>&6
14996
14997-echo "${as_me:-configure}:7789: testing ...checked LIBS $LIBS ..." 1>&5
14998+echo "${as_me:-configure}:7892: testing ...checked LIBS $LIBS ..." 1>&5
14999
15000 	test -n "$verbose" && echo "	...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS" 1>&6
15001
15002-echo "${as_me:-configure}:7793: testing ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5
15003+echo "${as_me:-configure}:7896: testing ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5
15004
15005 else
15006-	echo "$as_me:7796: result: no" >&5
15007+	echo "$as_me:7899: result: no" >&5
15008 echo "${ECHO_T}no" >&6
15009 fi
15010
15011@@ -7804,7 +7907,7 @@
15012 ###############################################################################
15013
15014 ###	use option --with-extra-suffix to append suffix to headers and libraries
15015-echo "$as_me:7807: checking if you wish to append extra suffix to header/library paths" >&5
15016+echo "$as_me:7910: checking if you wish to append extra suffix to header/library paths" >&5
15017 echo $ECHO_N "checking if you wish to append extra suffix to header/library paths... $ECHO_C" >&6
15018 EXTRA_SUFFIX=
15019
15020@@ -7823,11 +7926,11 @@
15021 	esac
15022
15023 fi;
15024-echo "$as_me:7826: result: $EXTRA_SUFFIX" >&5
15025+echo "$as_me:7929: result: $EXTRA_SUFFIX" >&5
15026 echo "${ECHO_T}$EXTRA_SUFFIX" >&6
15027
15028 ###	use option --disable-overwrite to leave out the link to -lcurses
15029-echo "$as_me:7830: checking if you wish to install ncurses overwriting curses" >&5
15030+echo "$as_me:7933: checking if you wish to install ncurses overwriting curses" >&5
15031 echo $ECHO_N "checking if you wish to install ncurses overwriting curses... $ECHO_C" >&6
15032
15033 # Check whether --enable-overwrite or --disable-overwrite was given.
15034@@ -7837,10 +7940,10 @@
15035 else
15036   if test "$prefix" = "/usr" ; then with_overwrite=yes; else with_overwrite=no; fi
15037 fi;
15038-echo "$as_me:7840: result: $with_overwrite" >&5
15039+echo "$as_me:7943: result: $with_overwrite" >&5
15040 echo "${ECHO_T}$with_overwrite" >&6
15041
15042-echo "$as_me:7843: checking if external terminfo-database is used" >&5
15043+echo "$as_me:7946: checking if external terminfo-database is used" >&5
15044 echo $ECHO_N "checking if external terminfo-database is used... $ECHO_C" >&6
15045
15046 # Check whether --enable-database or --disable-database was given.
15047@@ -7850,7 +7953,7 @@
15048 else
15049   use_database=yes
15050 fi;
15051-echo "$as_me:7853: result: $use_database" >&5
15052+echo "$as_me:7956: result: $use_database" >&5
15053 echo "${ECHO_T}$use_database" >&6
15054
15055 case $host_os in
15056@@ -7866,7 +7969,7 @@
15057 if test "$use_database" != no ; then
15058 	NCURSES_USE_DATABASE=1
15059
15060-	echo "$as_me:7869: checking which terminfo source-file will be installed" >&5
15061+	echo "$as_me:7972: checking which terminfo source-file will be installed" >&5
15062 echo $ECHO_N "checking which terminfo source-file will be installed... $ECHO_C" >&6
15063
15064 # Check whether --with-database or --without-database was given.
15065@@ -7874,10 +7977,10 @@
15066   withval="$with_database"
15067   TERMINFO_SRC=$withval
15068 fi;
15069-	echo "$as_me:7877: result: $TERMINFO_SRC" >&5
15070+	echo "$as_me:7980: result: $TERMINFO_SRC" >&5
15071 echo "${ECHO_T}$TERMINFO_SRC" >&6
15072
15073-	echo "$as_me:7880: checking whether to use hashed database instead of directory/tree" >&5
15074+	echo "$as_me:7983: checking whether to use hashed database instead of directory/tree" >&5
15075 echo $ECHO_N "checking whether to use hashed database instead of directory/tree... $ECHO_C" >&6
15076
15077 # Check whether --with-hashed-db or --without-hashed-db was given.
15078@@ -7887,13 +7990,13 @@
15079 else
15080   with_hashed_db=no
15081 fi;
15082-	echo "$as_me:7890: result: $with_hashed_db" >&5
15083+	echo "$as_me:7993: result: $with_hashed_db" >&5
15084 echo "${ECHO_T}$with_hashed_db" >&6
15085 else
15086 	with_hashed_db=no
15087 fi
15088
15089-echo "$as_me:7896: checking for list of fallback descriptions" >&5
15090+echo "$as_me:7999: checking for list of fallback descriptions" >&5
15091 echo $ECHO_N "checking for list of fallback descriptions... $ECHO_C" >&6
15092
15093 # Check whether --with-fallbacks or --without-fallbacks was given.
15094@@ -7903,7 +8006,7 @@
15095 else
15096   with_fallback=
15097 fi;
15098-echo "$as_me:7906: result: $with_fallback" >&5
15099+echo "$as_me:8009: result: $with_fallback" >&5
15100 echo "${ECHO_T}$with_fallback" >&6
15101
15102 case ".$with_fallback" in
15103@@ -7911,7 +8014,7 @@
15104 	FALLBACK_LIST=
15105 	;;
15106 (.yes)
15107-	{ echo "$as_me:7914: WARNING: expected a list of terminal descriptions" >&5
15108+	{ echo "$as_me:8017: WARNING: expected a list of terminal descriptions" >&5
15109 echo "$as_me: WARNING: expected a list of terminal descriptions" >&2;}
15110 	;;
15111 (*)
15112@@ -7933,10 +8036,10 @@
15113 # Check whether --with-tic-path or --without-tic-path was given.
15114 if test "${with_tic_path+set}" = set; then
15115   withval="$with_tic_path"
15116-  echo "$as_me:7936: checking for tic program for fallbacks" >&5
15117+  echo "$as_me:8039: checking for tic program for fallbacks" >&5
15118 echo $ECHO_N "checking for tic program for fallbacks... $ECHO_C" >&6
15119 		TIC=$withval
15120-		echo "$as_me:7939: result: $TIC" >&5
15121+		echo "$as_me:8042: result: $TIC" >&5
15122 echo "${ECHO_T}$TIC" >&6
15123
15124 if test "x$prefix" != xNONE; then
15125@@ -7964,7 +8067,7 @@
15126 	TIC=`echo $TIC | sed -e s%NONE%$cf_path_syntax%`
15127 	;;
15128 (*)
15129-	{ { echo "$as_me:7967: error: expected a pathname, not \"$TIC\"" >&5
15130+	{ { echo "$as_me:8070: error: expected a pathname, not \"$TIC\"" >&5
15131 echo "$as_me: error: expected a pathname, not \"$TIC\"" >&2;}
15132    { (exit 1); exit 1; }; }
15133 	;;
15134@@ -7977,7 +8080,7 @@
15135 do
15136   # Extract the first word of "$ac_prog", so it can be a program name with args.
15137 set dummy $ac_prog; ac_word=$2
15138-echo "$as_me:7980: checking for $ac_word" >&5
15139+echo "$as_me:8083: checking for $ac_word" >&5
15140 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
15141 if test "${ac_cv_path_TIC+set}" = set; then
15142   echo $ECHO_N "(cached) $ECHO_C" >&6
15143@@ -7994,7 +8097,7 @@
15144   test -z "$ac_dir" && ac_dir=.
15145   if $as_executable_p "$ac_dir/$ac_word"; then
15146    ac_cv_path_TIC="$ac_dir/$ac_word"
15147-   echo "$as_me:7997: found $ac_dir/$ac_word" >&5
15148+   echo "$as_me:8100: found $ac_dir/$ac_word" >&5
15149    break
15150 fi
15151 done
15152@@ -8005,10 +8108,10 @@
15153 TIC=$ac_cv_path_TIC
15154
15155 if test -n "$TIC"; then
15156-  echo "$as_me:8008: result: $TIC" >&5
15157+  echo "$as_me:8111: result: $TIC" >&5
15158 echo "${ECHO_T}$TIC" >&6
15159 else
15160-  echo "$as_me:8011: result: no" >&5
15161+  echo "$as_me:8114: result: no" >&5
15162 echo "${ECHO_T}no" >&6
15163 fi
15164
15165@@ -8067,7 +8170,7 @@
15166
15167 if test -n "$cf_path_prog" ; then
15168
15169-echo "${as_me:-configure}:8070: testing defining path for ${cf_path_prog} ..." 1>&5
15170+echo "${as_me:-configure}:8173: testing defining path for ${cf_path_prog} ..." 1>&5
15171
15172 cat >>confdefs.h <<EOF
15173 #define TIC_PATH "$cf_path_prog"
15174@@ -8082,7 +8185,7 @@
15175
15176 		if test -z "$TIC"
15177 		then
15178-			{ echo "$as_me:8085: WARNING: no tic program found for fallbacks" >&5
15179+			{ echo "$as_me:8188: WARNING: no tic program found for fallbacks" >&5
15180 echo "$as_me: WARNING: no tic program found for fallbacks" >&2;}
15181 		fi
15182
15183@@ -8091,10 +8194,10 @@
15184 # Check whether --with-infocmp-path or --without-infocmp-path was given.
15185 if test "${with_infocmp_path+set}" = set; then
15186   withval="$with_infocmp_path"
15187-  echo "$as_me:8094: checking for infocmp program for fallbacks" >&5
15188+  echo "$as_me:8197: checking for infocmp program for fallbacks" >&5
15189 echo $ECHO_N "checking for infocmp program for fallbacks... $ECHO_C" >&6
15190 		INFOCMP=$withval
15191-		echo "$as_me:8097: result: $INFOCMP" >&5
15192+		echo "$as_me:8200: result: $INFOCMP" >&5
15193 echo "${ECHO_T}$INFOCMP" >&6
15194
15195 if test "x$prefix" != xNONE; then
15196@@ -8122,7 +8225,7 @@
15197 	INFOCMP=`echo $INFOCMP | sed -e s%NONE%$cf_path_syntax%`
15198 	;;
15199 (*)
15200-	{ { echo "$as_me:8125: error: expected a pathname, not \"$INFOCMP\"" >&5
15201+	{ { echo "$as_me:8228: error: expected a pathname, not \"$INFOCMP\"" >&5
15202 echo "$as_me: error: expected a pathname, not \"$INFOCMP\"" >&2;}
15203    { (exit 1); exit 1; }; }
15204 	;;
15205@@ -8135,7 +8238,7 @@
15206 do
15207   # Extract the first word of "$ac_prog", so it can be a program name with args.
15208 set dummy $ac_prog; ac_word=$2
15209-echo "$as_me:8138: checking for $ac_word" >&5
15210+echo "$as_me:8241: checking for $ac_word" >&5
15211 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
15212 if test "${ac_cv_path_INFOCMP+set}" = set; then
15213   echo $ECHO_N "(cached) $ECHO_C" >&6
15214@@ -8152,7 +8255,7 @@
15215   test -z "$ac_dir" && ac_dir=.
15216   if $as_executable_p "$ac_dir/$ac_word"; then
15217    ac_cv_path_INFOCMP="$ac_dir/$ac_word"
15218-   echo "$as_me:8155: found $ac_dir/$ac_word" >&5
15219+   echo "$as_me:8258: found $ac_dir/$ac_word" >&5
15220    break
15221 fi
15222 done
15223@@ -8163,10 +8266,10 @@
15224 INFOCMP=$ac_cv_path_INFOCMP
15225
15226 if test -n "$INFOCMP"; then
15227-  echo "$as_me:8166: result: $INFOCMP" >&5
15228+  echo "$as_me:8269: result: $INFOCMP" >&5
15229 echo "${ECHO_T}$INFOCMP" >&6
15230 else
15231-  echo "$as_me:8169: result: no" >&5
15232+  echo "$as_me:8272: result: no" >&5
15233 echo "${ECHO_T}no" >&6
15234 fi
15235
15236@@ -8225,7 +8328,7 @@
15237
15238 if test -n "$cf_path_prog" ; then
15239
15240-echo "${as_me:-configure}:8228: testing defining path for ${cf_path_prog} ..." 1>&5
15241+echo "${as_me:-configure}:8331: testing defining path for ${cf_path_prog} ..." 1>&5
15242
15243 cat >>confdefs.h <<EOF
15244 #define INFOCMP_PATH "$cf_path_prog"
15245@@ -8240,7 +8343,7 @@
15246
15247 		if test -z "$INFOCMP"
15248 		then
15249-			{ echo "$as_me:8243: WARNING: no infocmp program found for fallbacks" >&5
15250+			{ echo "$as_me:8346: WARNING: no infocmp program found for fallbacks" >&5
15251 echo "$as_me: WARNING: no infocmp program found for fallbacks" >&2;}
15252 		fi
15253
15254@@ -8251,7 +8354,7 @@
15255 	: ${INFOCMP:=infocmp}
15256 fi
15257
15258-echo "$as_me:8254: checking if you want modern xterm or antique" >&5
15259+echo "$as_me:8357: checking if you want modern xterm or antique" >&5
15260 echo $ECHO_N "checking if you want modern xterm or antique... $ECHO_C" >&6
15261
15262 # Check whether --with-xterm-new or --without-xterm-new was given.
15263@@ -8265,11 +8368,11 @@
15264 (no) with_xterm_new=xterm-old;;
15265 (*)	 with_xterm_new=xterm-new;;
15266 esac
15267-echo "$as_me:8268: result: $with_xterm_new" >&5
15268+echo "$as_me:8371: result: $with_xterm_new" >&5
15269 echo "${ECHO_T}$with_xterm_new" >&6
15270 WHICH_XTERM=$with_xterm_new
15271
15272-echo "$as_me:8272: checking if xterm backspace sends BS or DEL" >&5
15273+echo "$as_me:8375: checking if xterm backspace sends BS or DEL" >&5
15274 echo $ECHO_N "checking if xterm backspace sends BS or DEL... $ECHO_C" >&6
15275
15276 # Check whether --with-xterm-kbs or --without-xterm-kbs was given.
15277@@ -8290,7 +8393,7 @@
15278 	with_xterm_kbs=$withval
15279 	;;
15280 esac
15281-echo "$as_me:8293: result: $with_xterm_kbs" >&5
15282+echo "$as_me:8396: result: $with_xterm_kbs" >&5
15283 echo "${ECHO_T}$with_xterm_kbs" >&6
15284 XTERM_KBS=$with_xterm_kbs
15285
15286@@ -8300,7 +8403,7 @@
15287 	MAKE_TERMINFO="#"
15288 else
15289
15290-echo "$as_me:8303: checking for list of terminfo directories" >&5
15291+echo "$as_me:8406: checking for list of terminfo directories" >&5
15292 echo $ECHO_N "checking for list of terminfo directories... $ECHO_C" >&6
15293
15294 # Check whether --with-terminfo-dirs or --without-terminfo-dirs was given.
15295@@ -8340,7 +8443,7 @@
15296 	cf_src_path=`echo $cf_src_path | sed -e s%NONE%$cf_path_syntax%`
15297 	;;
15298 (*)
15299-	{ { echo "$as_me:8343: error: expected a pathname, not \"$cf_src_path\"" >&5
15300+	{ { echo "$as_me:8446: error: expected a pathname, not \"$cf_src_path\"" >&5
15301 echo "$as_me: error: expected a pathname, not \"$cf_src_path\"" >&2;}
15302    { (exit 1); exit 1; }; }
15303 	;;
15304@@ -8363,7 +8466,7 @@
15305 	;;
15306 esac
15307
15308-echo "$as_me:8366: result: $TERMINFO_DIRS" >&5
15309+echo "$as_me:8469: result: $TERMINFO_DIRS" >&5
15310 echo "${ECHO_T}$TERMINFO_DIRS" >&6
15311 test -n "$TERMINFO_DIRS" &&
15312 cat >>confdefs.h <<EOF
15313@@ -8372,13 +8475,13 @@
15314
15315 case "x$TERMINFO" in
15316 x???:*)
15317-	{ echo "$as_me:8375: WARNING: ignoring non-directory/file TERMINFO value" >&5
15318+	{ echo "$as_me:8478: WARNING: ignoring non-directory/file TERMINFO value" >&5
15319 echo "$as_me: WARNING: ignoring non-directory/file TERMINFO value" >&2;}
15320 	unset TERMINFO
15321 	;;
15322 esac
15323
15324-echo "$as_me:8381: checking for default terminfo directory" >&5
15325+echo "$as_me:8484: checking for default terminfo directory" >&5
15326 echo $ECHO_N "checking for default terminfo directory... $ECHO_C" >&6
15327
15328 # Check whether --with-default-terminfo-dir or --without-default-terminfo-dir was given.
15329@@ -8414,7 +8517,7 @@
15330 	withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%`
15331 	;;
15332 (*)
15333-	{ { echo "$as_me:8417: error: expected a pathname, not \"$withval\"" >&5
15334+	{ { echo "$as_me:8520: error: expected a pathname, not \"$withval\"" >&5
15335 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;}
15336    { (exit 1); exit 1; }; }
15337 	;;
15338@@ -8423,7 +8526,7 @@
15339 fi
15340 eval TERMINFO="$withval"
15341
15342-echo "$as_me:8426: result: $TERMINFO" >&5
15343+echo "$as_me:8529: result: $TERMINFO" >&5
15344 echo "${ECHO_T}$TERMINFO" >&6
15345
15346 cat >>confdefs.h <<EOF
15347@@ -8434,7 +8537,7 @@
15348
15349 ###	use option --disable-big-core to make tic run on small machines
15350 ###	We need 4Mb, check if we can allocate 50% more than that.
15351-echo "$as_me:8437: checking if big-core option selected" >&5
15352+echo "$as_me:8540: checking if big-core option selected" >&5
15353 echo $ECHO_N "checking if big-core option selected... $ECHO_C" >&6
15354
15355 # Check whether --enable-big-core or --disable-big-core was given.
15356@@ -8446,7 +8549,7 @@
15357   with_big_core=no
15358 else
15359   cat >conftest.$ac_ext <<_ACEOF
15360-#line 8449 "configure"
15361+#line 8552 "configure"
15362 #include "confdefs.h"
15363
15364 #include <stdlib.h>
15365@@ -8460,15 +8563,15 @@
15366 }
15367 _ACEOF
15368 rm -f conftest$ac_exeext
15369-if { (eval echo "$as_me:8463: \"$ac_link\"") >&5
15370+if { (eval echo "$as_me:8566: \"$ac_link\"") >&5
15371   (eval $ac_link) 2>&5
15372   ac_status=$?
15373-  echo "$as_me:8466: \$? = $ac_status" >&5
15374+  echo "$as_me:8569: \$? = $ac_status" >&5
15375   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
15376-  { (eval echo "$as_me:8468: \"$ac_try\"") >&5
15377+  { (eval echo "$as_me:8571: \"$ac_try\"") >&5
15378   (eval $ac_try) 2>&5
15379   ac_status=$?
15380-  echo "$as_me:8471: \$? = $ac_status" >&5
15381+  echo "$as_me:8574: \$? = $ac_status" >&5
15382   (exit $ac_status); }; }; then
15383   with_big_core=yes
15384 else
15385@@ -8480,7 +8583,7 @@
15386 rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
15387 fi
15388 fi;
15389-echo "$as_me:8483: result: $with_big_core" >&5
15390+echo "$as_me:8586: result: $with_big_core" >&5
15391 echo "${ECHO_T}$with_big_core" >&6
15392 test "x$with_big_core" = "xyes" &&
15393 cat >>confdefs.h <<\EOF
15394@@ -8490,7 +8593,7 @@
15395 ### ISO C only guarantees 512-char strings, we have tables which load faster
15396 ### when constructed using "big" strings.  More than the C compiler, the awk
15397 ### program is a limit on most vendor UNIX systems.  Check that we can build.
15398-echo "$as_me:8493: checking if big-strings option selected" >&5
15399+echo "$as_me:8596: checking if big-strings option selected" >&5
15400 echo $ECHO_N "checking if big-strings option selected... $ECHO_C" >&6
15401
15402 # Check whether --enable-big-strings or --disable-big-strings was given.
15403@@ -8514,14 +8617,14 @@
15404 	esac
15405
15406 fi;
15407-echo "$as_me:8517: result: $with_big_strings" >&5
15408+echo "$as_me:8620: result: $with_big_strings" >&5
15409 echo "${ECHO_T}$with_big_strings" >&6
15410
15411 USE_BIG_STRINGS=0
15412 test "x$with_big_strings" = "xyes" && USE_BIG_STRINGS=1
15413
15414 ###	use option --enable-termcap to compile in the termcap fallback support
15415-echo "$as_me:8524: checking if you want termcap-fallback support" >&5
15416+echo "$as_me:8627: checking if you want termcap-fallback support" >&5
15417 echo $ECHO_N "checking if you want termcap-fallback support... $ECHO_C" >&6
15418
15419 # Check whether --enable-termcap or --disable-termcap was given.
15420@@ -8531,14 +8634,14 @@
15421 else
15422   with_termcap=no
15423 fi;
15424-echo "$as_me:8534: result: $with_termcap" >&5
15425+echo "$as_me:8637: result: $with_termcap" >&5
15426 echo "${ECHO_T}$with_termcap" >&6
15427
15428 NCURSES_USE_TERMCAP=0
15429 if test "x$with_termcap" != "xyes" ; then
15430 	if test "$use_database" = no ; then
15431 		if test -z "$with_fallback" ; then
15432-			{ { echo "$as_me:8541: error: You have disabled the database w/o specifying fallbacks" >&5
15433+			{ { echo "$as_me:8644: error: You have disabled the database w/o specifying fallbacks" >&5
15434 echo "$as_me: error: You have disabled the database w/o specifying fallbacks" >&2;}
15435    { (exit 1); exit 1; }; }
15436 		fi
15437@@ -8551,13 +8654,13 @@
15438 else
15439
15440 	if test "$with_ticlib" != no ; then
15441-		{ { echo "$as_me:8554: error: Options --with-ticlib and --enable-termcap cannot be combined" >&5
15442+		{ { echo "$as_me:8657: error: Options --with-ticlib and --enable-termcap cannot be combined" >&5
15443 echo "$as_me: error: Options --with-ticlib and --enable-termcap cannot be combined" >&2;}
15444    { (exit 1); exit 1; }; }
15445 	fi
15446
15447 	NCURSES_USE_TERMCAP=1
15448-	echo "$as_me:8560: checking for list of termcap files" >&5
15449+	echo "$as_me:8663: checking for list of termcap files" >&5
15450 echo $ECHO_N "checking for list of termcap files... $ECHO_C" >&6
15451
15452 # Check whether --with-termpath or --without-termpath was given.
15453@@ -8597,7 +8700,7 @@
15454 	cf_src_path=`echo $cf_src_path | sed -e s%NONE%$cf_path_syntax%`
15455 	;;
15456 (*)
15457-	{ { echo "$as_me:8600: error: expected a pathname, not \"$cf_src_path\"" >&5
15458+	{ { echo "$as_me:8703: error: expected a pathname, not \"$cf_src_path\"" >&5
15459 echo "$as_me: error: expected a pathname, not \"$cf_src_path\"" >&2;}
15460    { (exit 1); exit 1; }; }
15461 	;;
15462@@ -8620,7 +8723,7 @@
15463 	;;
15464 esac
15465
15466-	echo "$as_me:8623: result: $TERMPATH" >&5
15467+	echo "$as_me:8726: result: $TERMPATH" >&5
15468 echo "${ECHO_T}$TERMPATH" >&6
15469 	test -n "$TERMPATH" &&
15470 cat >>confdefs.h <<EOF
15471@@ -8628,7 +8731,7 @@
15472 EOF
15473
15474 	###	use option --enable-getcap to use a hacked getcap for reading termcaps
15475-	echo "$as_me:8631: checking if fast termcap-loader is needed" >&5
15476+	echo "$as_me:8734: checking if fast termcap-loader is needed" >&5
15477 echo $ECHO_N "checking if fast termcap-loader is needed... $ECHO_C" >&6
15478
15479 # Check whether --enable-getcap or --disable-getcap was given.
15480@@ -8638,14 +8741,14 @@
15481 else
15482   with_getcap=no
15483 fi;
15484-	echo "$as_me:8641: result: $with_getcap" >&5
15485+	echo "$as_me:8744: result: $with_getcap" >&5
15486 echo "${ECHO_T}$with_getcap" >&6
15487 	test "x$with_getcap" = "xyes" &&
15488 cat >>confdefs.h <<\EOF
15489 #define USE_GETCAP 1
15490 EOF
15491
15492-	echo "$as_me:8648: checking if translated termcaps will be cached in ~/.terminfo" >&5
15493+	echo "$as_me:8751: checking if translated termcaps will be cached in ~/.terminfo" >&5
15494 echo $ECHO_N "checking if translated termcaps will be cached in ~/.terminfo... $ECHO_C" >&6
15495
15496 # Check whether --enable-getcap-cache or --disable-getcap-cache was given.
15497@@ -8655,7 +8758,7 @@
15498 else
15499   with_getcap_cache=no
15500 fi;
15501-	echo "$as_me:8658: result: $with_getcap_cache" >&5
15502+	echo "$as_me:8761: result: $with_getcap_cache" >&5
15503 echo "${ECHO_T}$with_getcap_cache" >&6
15504 	test "x$with_getcap_cache" = "xyes" &&
15505 cat >>confdefs.h <<\EOF
15506@@ -8665,7 +8768,7 @@
15507 fi
15508
15509 ###   Use option --disable-home-terminfo to completely remove ~/.terminfo
15510-echo "$as_me:8668: checking if ~/.terminfo is wanted" >&5
15511+echo "$as_me:8771: checking if ~/.terminfo is wanted" >&5
15512 echo $ECHO_N "checking if ~/.terminfo is wanted... $ECHO_C" >&6
15513
15514 # Check whether --enable-home-terminfo or --disable-home-terminfo was given.
15515@@ -8675,14 +8778,14 @@
15516 else
15517   with_home_terminfo=yes
15518 fi;
15519-echo "$as_me:8678: result: $with_home_terminfo" >&5
15520+echo "$as_me:8781: result: $with_home_terminfo" >&5
15521 echo "${ECHO_T}$with_home_terminfo" >&6
15522 test "x$with_home_terminfo" = "xyes" &&
15523 cat >>confdefs.h <<\EOF
15524 #define USE_HOME_TERMINFO 1
15525 EOF
15526
15527-echo "$as_me:8685: checking if you want to use restricted environment when running as root" >&5
15528+echo "$as_me:8788: checking if you want to use restricted environment when running as root" >&5
15529 echo $ECHO_N "checking if you want to use restricted environment when running as root... $ECHO_C" >&6
15530
15531 # Check whether --enable-root-environ or --disable-root-environ was given.
15532@@ -8692,7 +8795,7 @@
15533 else
15534   with_root_environ=yes
15535 fi;
15536-echo "$as_me:8695: result: $with_root_environ" >&5
15537+echo "$as_me:8798: result: $with_root_environ" >&5
15538 echo "${ECHO_T}$with_root_environ" >&6
15539 test "x$with_root_environ" = xyes &&
15540 cat >>confdefs.h <<\EOF
15541@@ -8707,23 +8810,23 @@
15542
15543 do
15544 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
15545-echo "$as_me:8710: checking for $ac_header" >&5
15546+echo "$as_me:8813: checking for $ac_header" >&5
15547 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
15548 if eval "test \"\${$as_ac_Header+set}\" = set"; then
15549   echo $ECHO_N "(cached) $ECHO_C" >&6
15550 else
15551   cat >conftest.$ac_ext <<_ACEOF
15552-#line 8716 "configure"
15553+#line 8819 "configure"
15554 #include "confdefs.h"
15555 #include <$ac_header>
15556 _ACEOF
15557-if { (eval echo "$as_me:8720: \"$ac_cpp conftest.$ac_ext\"") >&5
15558+if { (eval echo "$as_me:8823: \"$ac_cpp conftest.$ac_ext\"") >&5
15559   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
15560   ac_status=$?
15561   egrep -v '^ *\+' conftest.er1 >conftest.err
15562   rm -f conftest.er1
15563   cat conftest.err >&5
15564-  echo "$as_me:8726: \$? = $ac_status" >&5
15565+  echo "$as_me:8829: \$? = $ac_status" >&5
15566   (exit $ac_status); } >/dev/null; then
15567   if test -s conftest.err; then
15568     ac_cpp_err=$ac_c_preproc_warn_flag
15569@@ -8742,7 +8845,7 @@
15570 fi
15571 rm -f conftest.err conftest.$ac_ext
15572 fi
15573-echo "$as_me:8745: result: `eval echo '${'$as_ac_Header'}'`" >&5
15574+echo "$as_me:8848: result: `eval echo '${'$as_ac_Header'}'`" >&5
15575 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
15576 if test `eval echo '${'$as_ac_Header'}'` = yes; then
15577   cat >>confdefs.h <<EOF
15578@@ -8757,13 +8860,13 @@
15579 	unlink
15580 do
15581 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
15582-echo "$as_me:8760: checking for $ac_func" >&5
15583+echo "$as_me:8863: checking for $ac_func" >&5
15584 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
15585 if eval "test \"\${$as_ac_var+set}\" = set"; then
15586   echo $ECHO_N "(cached) $ECHO_C" >&6
15587 else
15588   cat >conftest.$ac_ext <<_ACEOF
15589-#line 8766 "configure"
15590+#line 8869 "configure"
15591 #include "confdefs.h"
15592 #define $ac_func autoconf_temporary
15593 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
15594@@ -8794,16 +8897,16 @@
15595 }
15596 _ACEOF
15597 rm -f conftest.$ac_objext conftest$ac_exeext
15598-if { (eval echo "$as_me:8797: \"$ac_link\"") >&5
15599+if { (eval echo "$as_me:8900: \"$ac_link\"") >&5
15600   (eval $ac_link) 2>&5
15601   ac_status=$?
15602-  echo "$as_me:8800: \$? = $ac_status" >&5
15603+  echo "$as_me:8903: \$? = $ac_status" >&5
15604   (exit $ac_status); } &&
15605          { ac_try='test -s conftest$ac_exeext'
15606-  { (eval echo "$as_me:8803: \"$ac_try\"") >&5
15607+  { (eval echo "$as_me:8906: \"$ac_try\"") >&5
15608   (eval $ac_try) 2>&5
15609   ac_status=$?
15610-  echo "$as_me:8806: \$? = $ac_status" >&5
15611+  echo "$as_me:8909: \$? = $ac_status" >&5
15612   (exit $ac_status); }; }; then
15613   eval "$as_ac_var=yes"
15614 else
15615@@ -8813,7 +8916,7 @@
15616 fi
15617 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
15618 fi
15619-echo "$as_me:8816: result: `eval echo '${'$as_ac_var'}'`" >&5
15620+echo "$as_me:8919: result: `eval echo '${'$as_ac_var'}'`" >&5
15621 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
15622 if test `eval echo '${'$as_ac_var'}'` = yes; then
15623   cat >>confdefs.h <<EOF
15624@@ -8830,13 +8933,13 @@
15625 		symlink
15626 do
15627 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
15628-echo "$as_me:8833: checking for $ac_func" >&5
15629+echo "$as_me:8936: checking for $ac_func" >&5
15630 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
15631 if eval "test \"\${$as_ac_var+set}\" = set"; then
15632   echo $ECHO_N "(cached) $ECHO_C" >&6
15633 else
15634   cat >conftest.$ac_ext <<_ACEOF
15635-#line 8839 "configure"
15636+#line 8942 "configure"
15637 #include "confdefs.h"
15638 #define $ac_func autoconf_temporary
15639 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
15640@@ -8867,16 +8970,16 @@
15641 }
15642 _ACEOF
15643 rm -f conftest.$ac_objext conftest$ac_exeext
15644-if { (eval echo "$as_me:8870: \"$ac_link\"") >&5
15645+if { (eval echo "$as_me:8973: \"$ac_link\"") >&5
15646   (eval $ac_link) 2>&5
15647   ac_status=$?
15648-  echo "$as_me:8873: \$? = $ac_status" >&5
15649+  echo "$as_me:8976: \$? = $ac_status" >&5
15650   (exit $ac_status); } &&
15651          { ac_try='test -s conftest$ac_exeext'
15652-  { (eval echo "$as_me:8876: \"$ac_try\"") >&5
15653+  { (eval echo "$as_me:8979: \"$ac_try\"") >&5
15654   (eval $ac_try) 2>&5
15655   ac_status=$?
15656-  echo "$as_me:8879: \$? = $ac_status" >&5
15657+  echo "$as_me:8982: \$? = $ac_status" >&5
15658   (exit $ac_status); }; }; then
15659   eval "$as_ac_var=yes"
15660 else
15661@@ -8886,7 +8989,7 @@
15662 fi
15663 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
15664 fi
15665-echo "$as_me:8889: result: `eval echo '${'$as_ac_var'}'`" >&5
15666+echo "$as_me:8992: result: `eval echo '${'$as_ac_var'}'`" >&5
15667 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
15668 if test `eval echo '${'$as_ac_var'}'` = yes; then
15669   cat >>confdefs.h <<EOF
15670@@ -8897,7 +9000,7 @@
15671 done
15672
15673 else
15674-	echo "$as_me:8900: checking if link/symlink functions work" >&5
15675+	echo "$as_me:9003: checking if link/symlink functions work" >&5
15676 echo $ECHO_N "checking if link/symlink functions work... $ECHO_C" >&6
15677 if test "${cf_cv_link_funcs+set}" = set; then
15678   echo $ECHO_N "(cached) $ECHO_C" >&6
15679@@ -8910,7 +9013,7 @@
15680 			eval 'ac_cv_func_'$cf_func'=error'
15681 else
15682   cat >conftest.$ac_ext <<_ACEOF
15683-#line 8913 "configure"
15684+#line 9016 "configure"
15685 #include "confdefs.h"
15686
15687 #include <sys/types.h>
15688@@ -8940,15 +9043,15 @@
15689
15690 _ACEOF
15691 rm -f conftest$ac_exeext
15692-if { (eval echo "$as_me:8943: \"$ac_link\"") >&5
15693+if { (eval echo "$as_me:9046: \"$ac_link\"") >&5
15694   (eval $ac_link) 2>&5
15695   ac_status=$?
15696-  echo "$as_me:8946: \$? = $ac_status" >&5
15697+  echo "$as_me:9049: \$? = $ac_status" >&5
15698   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
15699-  { (eval echo "$as_me:8948: \"$ac_try\"") >&5
15700+  { (eval echo "$as_me:9051: \"$ac_try\"") >&5
15701   (eval $ac_try) 2>&5
15702   ac_status=$?
15703-  echo "$as_me:8951: \$? = $ac_status" >&5
15704+  echo "$as_me:9054: \$? = $ac_status" >&5
15705   (exit $ac_status); }; }; then
15706
15707 			cf_cv_link_funcs="$cf_cv_link_funcs $cf_func"
15708@@ -8966,7 +9069,7 @@
15709 		test -z "$cf_cv_link_funcs" && cf_cv_link_funcs=no
15710
15711 fi
15712-echo "$as_me:8969: result: $cf_cv_link_funcs" >&5
15713+echo "$as_me:9072: result: $cf_cv_link_funcs" >&5
15714 echo "${ECHO_T}$cf_cv_link_funcs" >&6
15715 	test "$ac_cv_func_link"    = yes &&
15716 cat >>confdefs.h <<\EOF
15717@@ -8986,7 +9089,7 @@
15718 # soft links (symbolic links) are useful for some systems where hard links do
15719 # not work, or to make it simpler to copy terminfo trees around.
15720 if test "x$ac_cv_func_symlink" = xyes ; then
15721-	echo "$as_me:8989: checking if tic should use symbolic links" >&5
15722+	echo "$as_me:9092: checking if tic should use symbolic links" >&5
15723 echo $ECHO_N "checking if tic should use symbolic links... $ECHO_C" >&6
15724
15725 # Check whether --enable-symlinks or --disable-symlinks was given.
15726@@ -8996,21 +9099,21 @@
15727 else
15728   with_symlinks=no
15729 fi;
15730-	echo "$as_me:8999: result: $with_symlinks" >&5
15731+	echo "$as_me:9102: result: $with_symlinks" >&5
15732 echo "${ECHO_T}$with_symlinks" >&6
15733 fi
15734
15735 # If we have hard links and did not choose to use soft links instead, there is
15736 # no reason to make this choice optional - use the hard links.
15737 if test "$with_symlinks" = no ; then
15738-	echo "$as_me:9006: checking if tic should use hard links" >&5
15739+	echo "$as_me:9109: checking if tic should use hard links" >&5
15740 echo $ECHO_N "checking if tic should use hard links... $ECHO_C" >&6
15741 	if test "x$ac_cv_func_link" = xyes ; then
15742 		with_links=yes
15743 	else
15744 		with_links=no
15745 	fi
15746-	echo "$as_me:9013: result: $with_links" >&5
15747+	echo "$as_me:9116: result: $with_links" >&5
15748 echo "${ECHO_T}$with_links" >&6
15749 fi
15750
15751@@ -9025,7 +9128,7 @@
15752 EOF
15753
15754 ###   use option --enable-broken-linker to force on use of broken-linker support
15755-echo "$as_me:9028: checking if you want broken-linker support code" >&5
15756+echo "$as_me:9131: checking if you want broken-linker support code" >&5
15757 echo $ECHO_N "checking if you want broken-linker support code... $ECHO_C" >&6
15758
15759 # Check whether --enable-broken_linker or --disable-broken_linker was given.
15760@@ -9035,7 +9138,7 @@
15761 else
15762   with_broken_linker=${BROKEN_LINKER:-no}
15763 fi;
15764-echo "$as_me:9038: result: $with_broken_linker" >&5
15765+echo "$as_me:9141: result: $with_broken_linker" >&5
15766 echo "${ECHO_T}$with_broken_linker" >&6
15767
15768 BROKEN_LINKER=0
15769@@ -9057,14 +9160,14 @@
15770 		BROKEN_LINKER=1
15771 		test -n "$verbose" && echo "	cygwin linker is broken anyway" 1>&6
15772
15773-echo "${as_me:-configure}:9060: testing cygwin linker is broken anyway ..." 1>&5
15774+echo "${as_me:-configure}:9163: testing cygwin linker is broken anyway ..." 1>&5
15775
15776 		;;
15777 	esac
15778 fi
15779
15780 ###   use option --enable-bsdpad to have tputs process BSD-style prefix padding
15781-echo "$as_me:9067: checking if tputs should process BSD-style prefix padding" >&5
15782+echo "$as_me:9170: checking if tputs should process BSD-style prefix padding" >&5
15783 echo $ECHO_N "checking if tputs should process BSD-style prefix padding... $ECHO_C" >&6
15784
15785 # Check whether --enable-bsdpad or --disable-bsdpad was given.
15786@@ -9074,7 +9177,7 @@
15787 else
15788   with_bsdpad=no
15789 fi;
15790-echo "$as_me:9077: result: $with_bsdpad" >&5
15791+echo "$as_me:9180: result: $with_bsdpad" >&5
15792 echo "${ECHO_T}$with_bsdpad" >&6
15793 test "x$with_bsdpad" = xyes &&
15794 cat >>confdefs.h <<\EOF
15795@@ -9093,14 +9196,14 @@
15796 # Check to define _XOPEN_SOURCE "automatically"
15797 CPPFLAGS_before_XOPEN="$CPPFLAGS"
15798
15799-echo "$as_me:9096: checking if the POSIX test-macros are already defined" >&5
15800+echo "$as_me:9199: checking if the POSIX test-macros are already defined" >&5
15801 echo $ECHO_N "checking if the POSIX test-macros are already defined... $ECHO_C" >&6
15802 if test "${cf_cv_posix_visible+set}" = set; then
15803   echo $ECHO_N "(cached) $ECHO_C" >&6
15804 else
15805
15806 cat >conftest.$ac_ext <<_ACEOF
15807-#line 9103 "configure"
15808+#line 9206 "configure"
15809 #include "confdefs.h"
15810 #include <stdio.h>
15811 int
15812@@ -9119,16 +9222,16 @@
15813 }
15814 _ACEOF
15815 rm -f conftest.$ac_objext
15816-if { (eval echo "$as_me:9122: \"$ac_compile\"") >&5
15817+if { (eval echo "$as_me:9225: \"$ac_compile\"") >&5
15818   (eval $ac_compile) 2>&5
15819   ac_status=$?
15820-  echo "$as_me:9125: \$? = $ac_status" >&5
15821+  echo "$as_me:9228: \$? = $ac_status" >&5
15822   (exit $ac_status); } &&
15823          { ac_try='test -s conftest.$ac_objext'
15824-  { (eval echo "$as_me:9128: \"$ac_try\"") >&5
15825+  { (eval echo "$as_me:9231: \"$ac_try\"") >&5
15826   (eval $ac_try) 2>&5
15827   ac_status=$?
15828-  echo "$as_me:9131: \$? = $ac_status" >&5
15829+  echo "$as_me:9234: \$? = $ac_status" >&5
15830   (exit $ac_status); }; }; then
15831   cf_cv_posix_visible=no
15832 else
15833@@ -9139,7 +9242,7 @@
15834 rm -f conftest.$ac_objext conftest.$ac_ext
15835
15836 fi
15837-echo "$as_me:9142: result: $cf_cv_posix_visible" >&5
15838+echo "$as_me:9245: result: $cf_cv_posix_visible" >&5
15839 echo "${ECHO_T}$cf_cv_posix_visible" >&6
15840
15841 if test "$cf_cv_posix_visible" = no; then
15842@@ -9184,14 +9287,14 @@
15843
15844 cf_gnu_xopen_source=$cf_XOPEN_SOURCE
15845
15846-echo "$as_me:9187: checking if this is the GNU C library" >&5
15847+echo "$as_me:9290: checking if this is the GNU C library" >&5
15848 echo $ECHO_N "checking if this is the GNU C library... $ECHO_C" >&6
15849 if test "${cf_cv_gnu_library+set}" = set; then
15850   echo $ECHO_N "(cached) $ECHO_C" >&6
15851 else
15852
15853 cat >conftest.$ac_ext <<_ACEOF
15854-#line 9194 "configure"
15855+#line 9297 "configure"
15856 #include "confdefs.h"
15857 #include <sys/types.h>
15858 int
15859@@ -9210,16 +9313,16 @@
15860 }
15861 _ACEOF
15862 rm -f conftest.$ac_objext
15863-if { (eval echo "$as_me:9213: \"$ac_compile\"") >&5
15864+if { (eval echo "$as_me:9316: \"$ac_compile\"") >&5
15865   (eval $ac_compile) 2>&5
15866   ac_status=$?
15867-  echo "$as_me:9216: \$? = $ac_status" >&5
15868+  echo "$as_me:9319: \$? = $ac_status" >&5
15869   (exit $ac_status); } &&
15870          { ac_try='test -s conftest.$ac_objext'
15871-  { (eval echo "$as_me:9219: \"$ac_try\"") >&5
15872+  { (eval echo "$as_me:9322: \"$ac_try\"") >&5
15873   (eval $ac_try) 2>&5
15874   ac_status=$?
15875-  echo "$as_me:9222: \$? = $ac_status" >&5
15876+  echo "$as_me:9325: \$? = $ac_status" >&5
15877   (exit $ac_status); }; }; then
15878   cf_cv_gnu_library=yes
15879 else
15880@@ -9230,7 +9333,7 @@
15881 rm -f conftest.$ac_objext conftest.$ac_ext
15882
15883 fi
15884-echo "$as_me:9233: result: $cf_cv_gnu_library" >&5
15885+echo "$as_me:9336: result: $cf_cv_gnu_library" >&5
15886 echo "${ECHO_T}$cf_cv_gnu_library" >&6
15887
15888 if test x$cf_cv_gnu_library = xyes; then
15889@@ -9238,7 +9341,7 @@
15890 	# With glibc 2.19 (13 years after this check was begun), _DEFAULT_SOURCE
15891 	# was changed to help a little.  newlib incorporated the change about 4
15892 	# years later.
15893-	echo "$as_me:9241: checking if _DEFAULT_SOURCE can be used as a basis" >&5
15894+	echo "$as_me:9344: checking if _DEFAULT_SOURCE can be used as a basis" >&5
15895 echo $ECHO_N "checking if _DEFAULT_SOURCE can be used as a basis... $ECHO_C" >&6
15896 if test "${cf_cv_gnu_library_219+set}" = set; then
15897   echo $ECHO_N "(cached) $ECHO_C" >&6
15898@@ -9250,7 +9353,7 @@
15899 	CPPFLAGS="${CPPFLAGS}-D_DEFAULT_SOURCE"
15900
15901 		cat >conftest.$ac_ext <<_ACEOF
15902-#line 9253 "configure"
15903+#line 9356 "configure"
15904 #include "confdefs.h"
15905 #include <sys/types.h>
15906 int
15907@@ -9269,16 +9372,16 @@
15908 }
15909 _ACEOF
15910 rm -f conftest.$ac_objext
15911-if { (eval echo "$as_me:9272: \"$ac_compile\"") >&5
15912+if { (eval echo "$as_me:9375: \"$ac_compile\"") >&5
15913   (eval $ac_compile) 2>&5
15914   ac_status=$?
15915-  echo "$as_me:9275: \$? = $ac_status" >&5
15916+  echo "$as_me:9378: \$? = $ac_status" >&5
15917   (exit $ac_status); } &&
15918          { ac_try='test -s conftest.$ac_objext'
15919-  { (eval echo "$as_me:9278: \"$ac_try\"") >&5
15920+  { (eval echo "$as_me:9381: \"$ac_try\"") >&5
15921   (eval $ac_try) 2>&5
15922   ac_status=$?
15923-  echo "$as_me:9281: \$? = $ac_status" >&5
15924+  echo "$as_me:9384: \$? = $ac_status" >&5
15925   (exit $ac_status); }; }; then
15926   cf_cv_gnu_library_219=yes
15927 else
15928@@ -9290,12 +9393,12 @@
15929 		CPPFLAGS="$cf_save"
15930
15931 fi
15932-echo "$as_me:9293: result: $cf_cv_gnu_library_219" >&5
15933+echo "$as_me:9396: result: $cf_cv_gnu_library_219" >&5
15934 echo "${ECHO_T}$cf_cv_gnu_library_219" >&6
15935
15936 	if test "x$cf_cv_gnu_library_219" = xyes; then
15937 		cf_save="$CPPFLAGS"
15938-		echo "$as_me:9298: checking if _XOPEN_SOURCE=$cf_gnu_xopen_source works with _DEFAULT_SOURCE" >&5
15939+		echo "$as_me:9401: checking if _XOPEN_SOURCE=$cf_gnu_xopen_source works with _DEFAULT_SOURCE" >&5
15940 echo $ECHO_N "checking if _XOPEN_SOURCE=$cf_gnu_xopen_source works with _DEFAULT_SOURCE... $ECHO_C" >&6
15941 if test "${cf_cv_gnu_dftsrc_219+set}" = set; then
15942   echo $ECHO_N "(cached) $ECHO_C" >&6
15943@@ -9400,7 +9503,7 @@
15944 fi
15945
15946 			cat >conftest.$ac_ext <<_ACEOF
15947-#line 9403 "configure"
15948+#line 9506 "configure"
15949 #include "confdefs.h"
15950
15951 				#include <limits.h>
15952@@ -9420,16 +9523,16 @@
15953 }
15954 _ACEOF
15955 rm -f conftest.$ac_objext
15956-if { (eval echo "$as_me:9423: \"$ac_compile\"") >&5
15957+if { (eval echo "$as_me:9526: \"$ac_compile\"") >&5
15958   (eval $ac_compile) 2>&5
15959   ac_status=$?
15960-  echo "$as_me:9426: \$? = $ac_status" >&5
15961+  echo "$as_me:9529: \$? = $ac_status" >&5
15962   (exit $ac_status); } &&
15963          { ac_try='test -s conftest.$ac_objext'
15964-  { (eval echo "$as_me:9429: \"$ac_try\"") >&5
15965+  { (eval echo "$as_me:9532: \"$ac_try\"") >&5
15966   (eval $ac_try) 2>&5
15967   ac_status=$?
15968-  echo "$as_me:9432: \$? = $ac_status" >&5
15969+  echo "$as_me:9535: \$? = $ac_status" >&5
15970   (exit $ac_status); }; }; then
15971   cf_cv_gnu_dftsrc_219=yes
15972 else
15973@@ -9440,7 +9543,7 @@
15974 rm -f conftest.$ac_objext conftest.$ac_ext
15975
15976 fi
15977-echo "$as_me:9443: result: $cf_cv_gnu_dftsrc_219" >&5
15978+echo "$as_me:9546: result: $cf_cv_gnu_dftsrc_219" >&5
15979 echo "${ECHO_T}$cf_cv_gnu_dftsrc_219" >&6
15980 		test "x$cf_cv_gnu_dftsrc_219" = "xyes" || CPPFLAGS="$cf_save"
15981 	else
15982@@ -9449,14 +9552,14 @@
15983
15984 	if test "x$cf_cv_gnu_dftsrc_219" != xyes; then
15985
15986-		echo "$as_me:9452: checking if we must define _GNU_SOURCE" >&5
15987+		echo "$as_me:9555: checking if we must define _GNU_SOURCE" >&5
15988 echo $ECHO_N "checking if we must define _GNU_SOURCE... $ECHO_C" >&6
15989 if test "${cf_cv_gnu_source+set}" = set; then
15990   echo $ECHO_N "(cached) $ECHO_C" >&6
15991 else
15992
15993 		cat >conftest.$ac_ext <<_ACEOF
15994-#line 9459 "configure"
15995+#line 9562 "configure"
15996 #include "confdefs.h"
15997 #include <sys/types.h>
15998 int
15999@@ -9471,16 +9574,16 @@
16000 }
16001 _ACEOF
16002 rm -f conftest.$ac_objext
16003-if { (eval echo "$as_me:9474: \"$ac_compile\"") >&5
16004+if { (eval echo "$as_me:9577: \"$ac_compile\"") >&5
16005   (eval $ac_compile) 2>&5
16006   ac_status=$?
16007-  echo "$as_me:9477: \$? = $ac_status" >&5
16008+  echo "$as_me:9580: \$? = $ac_status" >&5
16009   (exit $ac_status); } &&
16010          { ac_try='test -s conftest.$ac_objext'
16011-  { (eval echo "$as_me:9480: \"$ac_try\"") >&5
16012+  { (eval echo "$as_me:9583: \"$ac_try\"") >&5
16013   (eval $ac_try) 2>&5
16014   ac_status=$?
16015-  echo "$as_me:9483: \$? = $ac_status" >&5
16016+  echo "$as_me:9586: \$? = $ac_status" >&5
16017   (exit $ac_status); }; }; then
16018   cf_cv_gnu_source=no
16019 else
16020@@ -9587,7 +9690,7 @@
16021 fi
16022
16023 			 cat >conftest.$ac_ext <<_ACEOF
16024-#line 9590 "configure"
16025+#line 9693 "configure"
16026 #include "confdefs.h"
16027 #include <sys/types.h>
16028 int
16029@@ -9602,16 +9705,16 @@
16030 }
16031 _ACEOF
16032 rm -f conftest.$ac_objext
16033-if { (eval echo "$as_me:9605: \"$ac_compile\"") >&5
16034+if { (eval echo "$as_me:9708: \"$ac_compile\"") >&5
16035   (eval $ac_compile) 2>&5
16036   ac_status=$?
16037-  echo "$as_me:9608: \$? = $ac_status" >&5
16038+  echo "$as_me:9711: \$? = $ac_status" >&5
16039   (exit $ac_status); } &&
16040          { ac_try='test -s conftest.$ac_objext'
16041-  { (eval echo "$as_me:9611: \"$ac_try\"") >&5
16042+  { (eval echo "$as_me:9714: \"$ac_try\"") >&5
16043   (eval $ac_try) 2>&5
16044   ac_status=$?
16045-  echo "$as_me:9614: \$? = $ac_status" >&5
16046+  echo "$as_me:9717: \$? = $ac_status" >&5
16047   (exit $ac_status); }; }; then
16048   cf_cv_gnu_source=no
16049 else
16050@@ -9626,12 +9729,12 @@
16051 rm -f conftest.$ac_objext conftest.$ac_ext
16052
16053 fi
16054-echo "$as_me:9629: result: $cf_cv_gnu_source" >&5
16055+echo "$as_me:9732: result: $cf_cv_gnu_source" >&5
16056 echo "${ECHO_T}$cf_cv_gnu_source" >&6
16057
16058 		if test "$cf_cv_gnu_source" = yes
16059 		then
16060-		echo "$as_me:9634: checking if we should also define _DEFAULT_SOURCE" >&5
16061+		echo "$as_me:9737: checking if we should also define _DEFAULT_SOURCE" >&5
16062 echo $ECHO_N "checking if we should also define _DEFAULT_SOURCE... $ECHO_C" >&6
16063 if test "${cf_cv_default_source+set}" = set; then
16064   echo $ECHO_N "(cached) $ECHO_C" >&6
16065@@ -9641,7 +9744,7 @@
16066 	CPPFLAGS="${CPPFLAGS}-D_GNU_SOURCE"
16067
16068 			cat >conftest.$ac_ext <<_ACEOF
16069-#line 9644 "configure"
16070+#line 9747 "configure"
16071 #include "confdefs.h"
16072 #include <sys/types.h>
16073 int
16074@@ -9656,16 +9759,16 @@
16075 }
16076 _ACEOF
16077 rm -f conftest.$ac_objext
16078-if { (eval echo "$as_me:9659: \"$ac_compile\"") >&5
16079+if { (eval echo "$as_me:9762: \"$ac_compile\"") >&5
16080   (eval $ac_compile) 2>&5
16081   ac_status=$?
16082-  echo "$as_me:9662: \$? = $ac_status" >&5
16083+  echo "$as_me:9765: \$? = $ac_status" >&5
16084   (exit $ac_status); } &&
16085          { ac_try='test -s conftest.$ac_objext'
16086-  { (eval echo "$as_me:9665: \"$ac_try\"") >&5
16087+  { (eval echo "$as_me:9768: \"$ac_try\"") >&5
16088   (eval $ac_try) 2>&5
16089   ac_status=$?
16090-  echo "$as_me:9668: \$? = $ac_status" >&5
16091+  echo "$as_me:9771: \$? = $ac_status" >&5
16092   (exit $ac_status); }; }; then
16093   cf_cv_default_source=no
16094 else
16095@@ -9676,7 +9779,7 @@
16096 rm -f conftest.$ac_objext conftest.$ac_ext
16097
16098 fi
16099-echo "$as_me:9679: result: $cf_cv_default_source" >&5
16100+echo "$as_me:9782: result: $cf_cv_default_source" >&5
16101 echo "${ECHO_T}$cf_cv_default_source" >&6
16102 			if test "$cf_cv_default_source" = yes
16103 			then
16104@@ -9713,16 +9816,16 @@
16105 	sed	-e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^ 	]*\)\?[ 	]/ /g' \
16106 		-e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^ 	]*\)\?$//g'`
16107
16108-echo "$as_me:9716: checking if we should define _POSIX_C_SOURCE" >&5
16109+echo "$as_me:9819: checking if we should define _POSIX_C_SOURCE" >&5
16110 echo $ECHO_N "checking if we should define _POSIX_C_SOURCE... $ECHO_C" >&6
16111 if test "${cf_cv_posix_c_source+set}" = set; then
16112   echo $ECHO_N "(cached) $ECHO_C" >&6
16113 else
16114
16115-echo "${as_me:-configure}:9722: testing if the symbol is already defined go no further ..." 1>&5
16116+echo "${as_me:-configure}:9825: testing if the symbol is already defined go no further ..." 1>&5
16117
16118 	cat >conftest.$ac_ext <<_ACEOF
16119-#line 9725 "configure"
16120+#line 9828 "configure"
16121 #include "confdefs.h"
16122 #include <sys/types.h>
16123 int
16124@@ -9737,16 +9840,16 @@
16125 }
16126 _ACEOF
16127 rm -f conftest.$ac_objext
16128-if { (eval echo "$as_me:9740: \"$ac_compile\"") >&5
16129+if { (eval echo "$as_me:9843: \"$ac_compile\"") >&5
16130   (eval $ac_compile) 2>&5
16131   ac_status=$?
16132-  echo "$as_me:9743: \$? = $ac_status" >&5
16133+  echo "$as_me:9846: \$? = $ac_status" >&5
16134   (exit $ac_status); } &&
16135          { ac_try='test -s conftest.$ac_objext'
16136-  { (eval echo "$as_me:9746: \"$ac_try\"") >&5
16137+  { (eval echo "$as_me:9849: \"$ac_try\"") >&5
16138   (eval $ac_try) 2>&5
16139   ac_status=$?
16140-  echo "$as_me:9749: \$? = $ac_status" >&5
16141+  echo "$as_me:9852: \$? = $ac_status" >&5
16142   (exit $ac_status); }; }; then
16143   cf_cv_posix_c_source=no
16144 else
16145@@ -9767,7 +9870,7 @@
16146 	 esac
16147 	 if test "$cf_want_posix_source" = yes ; then
16148 		cat >conftest.$ac_ext <<_ACEOF
16149-#line 9770 "configure"
16150+#line 9873 "configure"
16151 #include "confdefs.h"
16152 #include <sys/types.h>
16153 int
16154@@ -9782,16 +9885,16 @@
16155 }
16156 _ACEOF
16157 rm -f conftest.$ac_objext
16158-if { (eval echo "$as_me:9785: \"$ac_compile\"") >&5
16159+if { (eval echo "$as_me:9888: \"$ac_compile\"") >&5
16160   (eval $ac_compile) 2>&5
16161   ac_status=$?
16162-  echo "$as_me:9788: \$? = $ac_status" >&5
16163+  echo "$as_me:9891: \$? = $ac_status" >&5
16164   (exit $ac_status); } &&
16165          { ac_try='test -s conftest.$ac_objext'
16166-  { (eval echo "$as_me:9791: \"$ac_try\"") >&5
16167+  { (eval echo "$as_me:9894: \"$ac_try\"") >&5
16168   (eval $ac_try) 2>&5
16169   ac_status=$?
16170-  echo "$as_me:9794: \$? = $ac_status" >&5
16171+  echo "$as_me:9897: \$? = $ac_status" >&5
16172   (exit $ac_status); }; }; then
16173   :
16174 else
16175@@ -9802,7 +9905,7 @@
16176 rm -f conftest.$ac_objext conftest.$ac_ext
16177 	 fi
16178
16179-echo "${as_me:-configure}:9805: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5
16180+echo "${as_me:-configure}:9908: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5
16181
16182 	 CFLAGS="$cf_trim_CFLAGS"
16183 	 CPPFLAGS="$cf_trim_CPPFLAGS"
16184@@ -9810,10 +9913,10 @@
16185 	test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS "
16186 	CPPFLAGS="${CPPFLAGS}$cf_cv_posix_c_source"
16187
16188-echo "${as_me:-configure}:9813: testing if the second compile does not leave our definition intact error ..." 1>&5
16189+echo "${as_me:-configure}:9916: testing if the second compile does not leave our definition intact error ..." 1>&5
16190
16191 	 cat >conftest.$ac_ext <<_ACEOF
16192-#line 9816 "configure"
16193+#line 9919 "configure"
16194 #include "confdefs.h"
16195 #include <sys/types.h>
16196 int
16197@@ -9828,16 +9931,16 @@
16198 }
16199 _ACEOF
16200 rm -f conftest.$ac_objext
16201-if { (eval echo "$as_me:9831: \"$ac_compile\"") >&5
16202+if { (eval echo "$as_me:9934: \"$ac_compile\"") >&5
16203   (eval $ac_compile) 2>&5
16204   ac_status=$?
16205-  echo "$as_me:9834: \$? = $ac_status" >&5
16206+  echo "$as_me:9937: \$? = $ac_status" >&5
16207   (exit $ac_status); } &&
16208          { ac_try='test -s conftest.$ac_objext'
16209-  { (eval echo "$as_me:9837: \"$ac_try\"") >&5
16210+  { (eval echo "$as_me:9940: \"$ac_try\"") >&5
16211   (eval $ac_try) 2>&5
16212   ac_status=$?
16213-  echo "$as_me:9840: \$? = $ac_status" >&5
16214+  echo "$as_me:9943: \$? = $ac_status" >&5
16215   (exit $ac_status); }; }; then
16216   :
16217 else
16218@@ -9853,7 +9956,7 @@
16219 rm -f conftest.$ac_objext conftest.$ac_ext
16220
16221 fi
16222-echo "$as_me:9856: result: $cf_cv_posix_c_source" >&5
16223+echo "$as_me:9959: result: $cf_cv_posix_c_source" >&5
16224 echo "${ECHO_T}$cf_cv_posix_c_source" >&6
16225
16226 if test "$cf_cv_posix_c_source" != no ; then
16227@@ -9993,14 +10096,14 @@
16228 	;;
16229 (*)
16230
16231-echo "$as_me:9996: checking if we should define _XOPEN_SOURCE" >&5
16232+echo "$as_me:10099: checking if we should define _XOPEN_SOURCE" >&5
16233 echo $ECHO_N "checking if we should define _XOPEN_SOURCE... $ECHO_C" >&6
16234 if test "${cf_cv_xopen_source+set}" = set; then
16235   echo $ECHO_N "(cached) $ECHO_C" >&6
16236 else
16237
16238 	cat >conftest.$ac_ext <<_ACEOF
16239-#line 10003 "configure"
16240+#line 10106 "configure"
16241 #include "confdefs.h"
16242
16243 #include <stdlib.h>
16244@@ -10019,16 +10122,16 @@
16245 }
16246 _ACEOF
16247 rm -f conftest.$ac_objext
16248-if { (eval echo "$as_me:10022: \"$ac_compile\"") >&5
16249+if { (eval echo "$as_me:10125: \"$ac_compile\"") >&5
16250   (eval $ac_compile) 2>&5
16251   ac_status=$?
16252-  echo "$as_me:10025: \$? = $ac_status" >&5
16253+  echo "$as_me:10128: \$? = $ac_status" >&5
16254   (exit $ac_status); } &&
16255          { ac_try='test -s conftest.$ac_objext'
16256-  { (eval echo "$as_me:10028: \"$ac_try\"") >&5
16257+  { (eval echo "$as_me:10131: \"$ac_try\"") >&5
16258   (eval $ac_try) 2>&5
16259   ac_status=$?
16260-  echo "$as_me:10031: \$? = $ac_status" >&5
16261+  echo "$as_me:10134: \$? = $ac_status" >&5
16262   (exit $ac_status); }; }; then
16263   cf_cv_xopen_source=no
16264 else
16265@@ -10040,7 +10143,7 @@
16266 	CPPFLAGS="${CPPFLAGS}-D_XOPEN_SOURCE=$cf_XOPEN_SOURCE"
16267
16268 	 cat >conftest.$ac_ext <<_ACEOF
16269-#line 10043 "configure"
16270+#line 10146 "configure"
16271 #include "confdefs.h"
16272
16273 #include <stdlib.h>
16274@@ -10059,16 +10162,16 @@
16275 }
16276 _ACEOF
16277 rm -f conftest.$ac_objext
16278-if { (eval echo "$as_me:10062: \"$ac_compile\"") >&5
16279+if { (eval echo "$as_me:10165: \"$ac_compile\"") >&5
16280   (eval $ac_compile) 2>&5
16281   ac_status=$?
16282-  echo "$as_me:10065: \$? = $ac_status" >&5
16283+  echo "$as_me:10168: \$? = $ac_status" >&5
16284   (exit $ac_status); } &&
16285          { ac_try='test -s conftest.$ac_objext'
16286-  { (eval echo "$as_me:10068: \"$ac_try\"") >&5
16287+  { (eval echo "$as_me:10171: \"$ac_try\"") >&5
16288   (eval $ac_try) 2>&5
16289   ac_status=$?
16290-  echo "$as_me:10071: \$? = $ac_status" >&5
16291+  echo "$as_me:10174: \$? = $ac_status" >&5
16292   (exit $ac_status); }; }; then
16293   cf_cv_xopen_source=no
16294 else
16295@@ -10083,7 +10186,7 @@
16296 rm -f conftest.$ac_objext conftest.$ac_ext
16297
16298 fi
16299-echo "$as_me:10086: result: $cf_cv_xopen_source" >&5
16300+echo "$as_me:10189: result: $cf_cv_xopen_source" >&5
16301 echo "${ECHO_T}$cf_cv_xopen_source" >&6
16302
16303 if test "$cf_cv_xopen_source" != no ; then
16304@@ -10213,16 +10316,16 @@
16305 	sed	-e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^ 	]*\)\?[ 	]/ /g' \
16306 		-e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^ 	]*\)\?$//g'`
16307
16308-echo "$as_me:10216: checking if we should define _POSIX_C_SOURCE" >&5
16309+echo "$as_me:10319: checking if we should define _POSIX_C_SOURCE" >&5
16310 echo $ECHO_N "checking if we should define _POSIX_C_SOURCE... $ECHO_C" >&6
16311 if test "${cf_cv_posix_c_source+set}" = set; then
16312   echo $ECHO_N "(cached) $ECHO_C" >&6
16313 else
16314
16315-echo "${as_me:-configure}:10222: testing if the symbol is already defined go no further ..." 1>&5
16316+echo "${as_me:-configure}:10325: testing if the symbol is already defined go no further ..." 1>&5
16317
16318 	cat >conftest.$ac_ext <<_ACEOF
16319-#line 10225 "configure"
16320+#line 10328 "configure"
16321 #include "confdefs.h"
16322 #include <sys/types.h>
16323 int
16324@@ -10237,16 +10340,16 @@
16325 }
16326 _ACEOF
16327 rm -f conftest.$ac_objext
16328-if { (eval echo "$as_me:10240: \"$ac_compile\"") >&5
16329+if { (eval echo "$as_me:10343: \"$ac_compile\"") >&5
16330   (eval $ac_compile) 2>&5
16331   ac_status=$?
16332-  echo "$as_me:10243: \$? = $ac_status" >&5
16333+  echo "$as_me:10346: \$? = $ac_status" >&5
16334   (exit $ac_status); } &&
16335          { ac_try='test -s conftest.$ac_objext'
16336-  { (eval echo "$as_me:10246: \"$ac_try\"") >&5
16337+  { (eval echo "$as_me:10349: \"$ac_try\"") >&5
16338   (eval $ac_try) 2>&5
16339   ac_status=$?
16340-  echo "$as_me:10249: \$? = $ac_status" >&5
16341+  echo "$as_me:10352: \$? = $ac_status" >&5
16342   (exit $ac_status); }; }; then
16343   cf_cv_posix_c_source=no
16344 else
16345@@ -10267,7 +10370,7 @@
16346 	 esac
16347 	 if test "$cf_want_posix_source" = yes ; then
16348 		cat >conftest.$ac_ext <<_ACEOF
16349-#line 10270 "configure"
16350+#line 10373 "configure"
16351 #include "confdefs.h"
16352 #include <sys/types.h>
16353 int
16354@@ -10282,16 +10385,16 @@
16355 }
16356 _ACEOF
16357 rm -f conftest.$ac_objext
16358-if { (eval echo "$as_me:10285: \"$ac_compile\"") >&5
16359+if { (eval echo "$as_me:10388: \"$ac_compile\"") >&5
16360   (eval $ac_compile) 2>&5
16361   ac_status=$?
16362-  echo "$as_me:10288: \$? = $ac_status" >&5
16363+  echo "$as_me:10391: \$? = $ac_status" >&5
16364   (exit $ac_status); } &&
16365          { ac_try='test -s conftest.$ac_objext'
16366-  { (eval echo "$as_me:10291: \"$ac_try\"") >&5
16367+  { (eval echo "$as_me:10394: \"$ac_try\"") >&5
16368   (eval $ac_try) 2>&5
16369   ac_status=$?
16370-  echo "$as_me:10294: \$? = $ac_status" >&5
16371+  echo "$as_me:10397: \$? = $ac_status" >&5
16372   (exit $ac_status); }; }; then
16373   :
16374 else
16375@@ -10302,7 +10405,7 @@
16376 rm -f conftest.$ac_objext conftest.$ac_ext
16377 	 fi
16378
16379-echo "${as_me:-configure}:10305: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5
16380+echo "${as_me:-configure}:10408: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5
16381
16382 	 CFLAGS="$cf_trim_CFLAGS"
16383 	 CPPFLAGS="$cf_trim_CPPFLAGS"
16384@@ -10310,10 +10413,10 @@
16385 	test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS "
16386 	CPPFLAGS="${CPPFLAGS}$cf_cv_posix_c_source"
16387
16388-echo "${as_me:-configure}:10313: testing if the second compile does not leave our definition intact error ..." 1>&5
16389+echo "${as_me:-configure}:10416: testing if the second compile does not leave our definition intact error ..." 1>&5
16390
16391 	 cat >conftest.$ac_ext <<_ACEOF
16392-#line 10316 "configure"
16393+#line 10419 "configure"
16394 #include "confdefs.h"
16395 #include <sys/types.h>
16396 int
16397@@ -10328,16 +10431,16 @@
16398 }
16399 _ACEOF
16400 rm -f conftest.$ac_objext
16401-if { (eval echo "$as_me:10331: \"$ac_compile\"") >&5
16402+if { (eval echo "$as_me:10434: \"$ac_compile\"") >&5
16403   (eval $ac_compile) 2>&5
16404   ac_status=$?
16405-  echo "$as_me:10334: \$? = $ac_status" >&5
16406+  echo "$as_me:10437: \$? = $ac_status" >&5
16407   (exit $ac_status); } &&
16408          { ac_try='test -s conftest.$ac_objext'
16409-  { (eval echo "$as_me:10337: \"$ac_try\"") >&5
16410+  { (eval echo "$as_me:10440: \"$ac_try\"") >&5
16411   (eval $ac_try) 2>&5
16412   ac_status=$?
16413-  echo "$as_me:10340: \$? = $ac_status" >&5
16414+  echo "$as_me:10443: \$? = $ac_status" >&5
16415   (exit $ac_status); }; }; then
16416   :
16417 else
16418@@ -10353,7 +10456,7 @@
16419 rm -f conftest.$ac_objext conftest.$ac_ext
16420
16421 fi
16422-echo "$as_me:10356: result: $cf_cv_posix_c_source" >&5
16423+echo "$as_me:10459: result: $cf_cv_posix_c_source" >&5
16424 echo "${ECHO_T}$cf_cv_posix_c_source" >&6
16425
16426 if test "$cf_cv_posix_c_source" != no ; then
16427@@ -10547,7 +10650,7 @@
16428 if test -n "$cf_new_cflags" ; then
16429 	test -n "$verbose" && echo "	add to \$CFLAGS $cf_new_cflags" 1>&6
16430
16431-echo "${as_me:-configure}:10550: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5
16432+echo "${as_me:-configure}:10653: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5
16433
16434 	test -n "$CFLAGS" && CFLAGS="$CFLAGS "
16435 	CFLAGS="${CFLAGS}$cf_new_cflags"
16436@@ -10557,7 +10660,7 @@
16437 if test -n "$cf_new_cppflags" ; then
16438 	test -n "$verbose" && echo "	add to \$CPPFLAGS $cf_new_cppflags" 1>&6
16439
16440-echo "${as_me:-configure}:10560: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5
16441+echo "${as_me:-configure}:10663: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5
16442
16443 	test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS "
16444 	CPPFLAGS="${CPPFLAGS}$cf_new_cppflags"
16445@@ -10567,7 +10670,7 @@
16446 if test -n "$cf_new_extra_cppflags" ; then
16447 	test -n "$verbose" && echo "	add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags" 1>&6
16448
16449-echo "${as_me:-configure}:10570: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5
16450+echo "${as_me:-configure}:10673: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5
16451
16452 	test -n "$EXTRA_CPPFLAGS" && EXTRA_CPPFLAGS="$EXTRA_CPPFLAGS "
16453 	EXTRA_CPPFLAGS="${EXTRA_CPPFLAGS}$cf_new_extra_cppflags"
16454@@ -10577,10 +10680,10 @@
16455 fi
16456
16457 if test -n "$cf_XOPEN_SOURCE" && test -z "$cf_cv_xopen_source" ; then
16458-	echo "$as_me:10580: checking if _XOPEN_SOURCE really is set" >&5
16459+	echo "$as_me:10683: checking if _XOPEN_SOURCE really is set" >&5
16460 echo $ECHO_N "checking if _XOPEN_SOURCE really is set... $ECHO_C" >&6
16461 	cat >conftest.$ac_ext <<_ACEOF
16462-#line 10583 "configure"
16463+#line 10686 "configure"
16464 #include "confdefs.h"
16465 #include <stdlib.h>
16466 int
16467@@ -10595,16 +10698,16 @@
16468 }
16469 _ACEOF
16470 rm -f conftest.$ac_objext
16471-if { (eval echo "$as_me:10598: \"$ac_compile\"") >&5
16472+if { (eval echo "$as_me:10701: \"$ac_compile\"") >&5
16473   (eval $ac_compile) 2>&5
16474   ac_status=$?
16475-  echo "$as_me:10601: \$? = $ac_status" >&5
16476+  echo "$as_me:10704: \$? = $ac_status" >&5
16477   (exit $ac_status); } &&
16478          { ac_try='test -s conftest.$ac_objext'
16479-  { (eval echo "$as_me:10604: \"$ac_try\"") >&5
16480+  { (eval echo "$as_me:10707: \"$ac_try\"") >&5
16481   (eval $ac_try) 2>&5
16482   ac_status=$?
16483-  echo "$as_me:10607: \$? = $ac_status" >&5
16484+  echo "$as_me:10710: \$? = $ac_status" >&5
16485   (exit $ac_status); }; }; then
16486   cf_XOPEN_SOURCE_set=yes
16487 else
16488@@ -10613,12 +10716,12 @@
16489 cf_XOPEN_SOURCE_set=no
16490 fi
16491 rm -f conftest.$ac_objext conftest.$ac_ext
16492-	echo "$as_me:10616: result: $cf_XOPEN_SOURCE_set" >&5
16493+	echo "$as_me:10719: result: $cf_XOPEN_SOURCE_set" >&5
16494 echo "${ECHO_T}$cf_XOPEN_SOURCE_set" >&6
16495 	if test $cf_XOPEN_SOURCE_set = yes
16496 	then
16497 		cat >conftest.$ac_ext <<_ACEOF
16498-#line 10621 "configure"
16499+#line 10724 "configure"
16500 #include "confdefs.h"
16501 #include <stdlib.h>
16502 int
16503@@ -10633,16 +10736,16 @@
16504 }
16505 _ACEOF
16506 rm -f conftest.$ac_objext
16507-if { (eval echo "$as_me:10636: \"$ac_compile\"") >&5
16508+if { (eval echo "$as_me:10739: \"$ac_compile\"") >&5
16509   (eval $ac_compile) 2>&5
16510   ac_status=$?
16511-  echo "$as_me:10639: \$? = $ac_status" >&5
16512+  echo "$as_me:10742: \$? = $ac_status" >&5
16513   (exit $ac_status); } &&
16514          { ac_try='test -s conftest.$ac_objext'
16515-  { (eval echo "$as_me:10642: \"$ac_try\"") >&5
16516+  { (eval echo "$as_me:10745: \"$ac_try\"") >&5
16517   (eval $ac_try) 2>&5
16518   ac_status=$?
16519-  echo "$as_me:10645: \$? = $ac_status" >&5
16520+  echo "$as_me:10748: \$? = $ac_status" >&5
16521   (exit $ac_status); }; }; then
16522   cf_XOPEN_SOURCE_set_ok=yes
16523 else
16524@@ -10653,19 +10756,19 @@
16525 rm -f conftest.$ac_objext conftest.$ac_ext
16526 		if test $cf_XOPEN_SOURCE_set_ok = no
16527 		then
16528-			{ echo "$as_me:10656: WARNING: _XOPEN_SOURCE is lower than requested" >&5
16529+			{ echo "$as_me:10759: WARNING: _XOPEN_SOURCE is lower than requested" >&5
16530 echo "$as_me: WARNING: _XOPEN_SOURCE is lower than requested" >&2;}
16531 		fi
16532 	else
16533
16534-echo "$as_me:10661: checking if we should define _XOPEN_SOURCE" >&5
16535+echo "$as_me:10764: checking if we should define _XOPEN_SOURCE" >&5
16536 echo $ECHO_N "checking if we should define _XOPEN_SOURCE... $ECHO_C" >&6
16537 if test "${cf_cv_xopen_source+set}" = set; then
16538   echo $ECHO_N "(cached) $ECHO_C" >&6
16539 else
16540
16541 	cat >conftest.$ac_ext <<_ACEOF
16542-#line 10668 "configure"
16543+#line 10771 "configure"
16544 #include "confdefs.h"
16545
16546 #include <stdlib.h>
16547@@ -10684,16 +10787,16 @@
16548 }
16549 _ACEOF
16550 rm -f conftest.$ac_objext
16551-if { (eval echo "$as_me:10687: \"$ac_compile\"") >&5
16552+if { (eval echo "$as_me:10790: \"$ac_compile\"") >&5
16553   (eval $ac_compile) 2>&5
16554   ac_status=$?
16555-  echo "$as_me:10690: \$? = $ac_status" >&5
16556+  echo "$as_me:10793: \$? = $ac_status" >&5
16557   (exit $ac_status); } &&
16558          { ac_try='test -s conftest.$ac_objext'
16559-  { (eval echo "$as_me:10693: \"$ac_try\"") >&5
16560+  { (eval echo "$as_me:10796: \"$ac_try\"") >&5
16561   (eval $ac_try) 2>&5
16562   ac_status=$?
16563-  echo "$as_me:10696: \$? = $ac_status" >&5
16564+  echo "$as_me:10799: \$? = $ac_status" >&5
16565   (exit $ac_status); }; }; then
16566   cf_cv_xopen_source=no
16567 else
16568@@ -10705,7 +10808,7 @@
16569 	CPPFLAGS="${CPPFLAGS}-D_XOPEN_SOURCE=$cf_XOPEN_SOURCE"
16570
16571 	 cat >conftest.$ac_ext <<_ACEOF
16572-#line 10708 "configure"
16573+#line 10811 "configure"
16574 #include "confdefs.h"
16575
16576 #include <stdlib.h>
16577@@ -10724,16 +10827,16 @@
16578 }
16579 _ACEOF
16580 rm -f conftest.$ac_objext
16581-if { (eval echo "$as_me:10727: \"$ac_compile\"") >&5
16582+if { (eval echo "$as_me:10830: \"$ac_compile\"") >&5
16583   (eval $ac_compile) 2>&5
16584   ac_status=$?
16585-  echo "$as_me:10730: \$? = $ac_status" >&5
16586+  echo "$as_me:10833: \$? = $ac_status" >&5
16587   (exit $ac_status); } &&
16588          { ac_try='test -s conftest.$ac_objext'
16589-  { (eval echo "$as_me:10733: \"$ac_try\"") >&5
16590+  { (eval echo "$as_me:10836: \"$ac_try\"") >&5
16591   (eval $ac_try) 2>&5
16592   ac_status=$?
16593-  echo "$as_me:10736: \$? = $ac_status" >&5
16594+  echo "$as_me:10839: \$? = $ac_status" >&5
16595   (exit $ac_status); }; }; then
16596   cf_cv_xopen_source=no
16597 else
16598@@ -10748,7 +10851,7 @@
16599 rm -f conftest.$ac_objext conftest.$ac_ext
16600
16601 fi
16602-echo "$as_me:10751: result: $cf_cv_xopen_source" >&5
16603+echo "$as_me:10854: result: $cf_cv_xopen_source" >&5
16604 echo "${ECHO_T}$cf_cv_xopen_source" >&6
16605
16606 if test "$cf_cv_xopen_source" != no ; then
16607@@ -10871,14 +10974,14 @@
16608
16609 # Work around breakage on OS X
16610
16611-echo "$as_me:10874: checking if SIGWINCH is defined" >&5
16612+echo "$as_me:10977: checking if SIGWINCH is defined" >&5
16613 echo $ECHO_N "checking if SIGWINCH is defined... $ECHO_C" >&6
16614 if test "${cf_cv_define_sigwinch+set}" = set; then
16615   echo $ECHO_N "(cached) $ECHO_C" >&6
16616 else
16617
16618 	cat >conftest.$ac_ext <<_ACEOF
16619-#line 10881 "configure"
16620+#line 10984 "configure"
16621 #include "confdefs.h"
16622
16623 #include <sys/types.h>
16624@@ -10893,23 +10996,23 @@
16625 }
16626 _ACEOF
16627 rm -f conftest.$ac_objext
16628-if { (eval echo "$as_me:10896: \"$ac_compile\"") >&5
16629+if { (eval echo "$as_me:10999: \"$ac_compile\"") >&5
16630   (eval $ac_compile) 2>&5
16631   ac_status=$?
16632-  echo "$as_me:10899: \$? = $ac_status" >&5
16633+  echo "$as_me:11002: \$? = $ac_status" >&5
16634   (exit $ac_status); } &&
16635          { ac_try='test -s conftest.$ac_objext'
16636-  { (eval echo "$as_me:10902: \"$ac_try\"") >&5
16637+  { (eval echo "$as_me:11005: \"$ac_try\"") >&5
16638   (eval $ac_try) 2>&5
16639   ac_status=$?
16640-  echo "$as_me:10905: \$? = $ac_status" >&5
16641+  echo "$as_me:11008: \$? = $ac_status" >&5
16642   (exit $ac_status); }; }; then
16643   cf_cv_define_sigwinch=yes
16644 else
16645   echo "$as_me: failed program was:" >&5
16646 cat conftest.$ac_ext >&5
16647 cat >conftest.$ac_ext <<_ACEOF
16648-#line 10912 "configure"
16649+#line 11015 "configure"
16650 #include "confdefs.h"
16651
16652 #undef _XOPEN_SOURCE
16653@@ -10927,16 +11030,16 @@
16654 }
16655 _ACEOF
16656 rm -f conftest.$ac_objext
16657-if { (eval echo "$as_me:10930: \"$ac_compile\"") >&5
16658+if { (eval echo "$as_me:11033: \"$ac_compile\"") >&5
16659   (eval $ac_compile) 2>&5
16660   ac_status=$?
16661-  echo "$as_me:10933: \$? = $ac_status" >&5
16662+  echo "$as_me:11036: \$? = $ac_status" >&5
16663   (exit $ac_status); } &&
16664          { ac_try='test -s conftest.$ac_objext'
16665-  { (eval echo "$as_me:10936: \"$ac_try\"") >&5
16666+  { (eval echo "$as_me:11039: \"$ac_try\"") >&5
16667   (eval $ac_try) 2>&5
16668   ac_status=$?
16669-  echo "$as_me:10939: \$? = $ac_status" >&5
16670+  echo "$as_me:11042: \$? = $ac_status" >&5
16671   (exit $ac_status); }; }; then
16672   cf_cv_define_sigwinch=maybe
16673 else
16674@@ -10950,11 +11053,11 @@
16675 rm -f conftest.$ac_objext conftest.$ac_ext
16676
16677 fi
16678-echo "$as_me:10953: result: $cf_cv_define_sigwinch" >&5
16679+echo "$as_me:11056: result: $cf_cv_define_sigwinch" >&5
16680 echo "${ECHO_T}$cf_cv_define_sigwinch" >&6
16681
16682 if test "$cf_cv_define_sigwinch" = maybe ; then
16683-echo "$as_me:10957: checking for actual SIGWINCH definition" >&5
16684+echo "$as_me:11060: checking for actual SIGWINCH definition" >&5
16685 echo $ECHO_N "checking for actual SIGWINCH definition... $ECHO_C" >&6
16686 if test "${cf_cv_fixup_sigwinch+set}" = set; then
16687   echo $ECHO_N "(cached) $ECHO_C" >&6
16688@@ -10965,7 +11068,7 @@
16689 while test $cf_sigwinch != 1
16690 do
16691 	cat >conftest.$ac_ext <<_ACEOF
16692-#line 10968 "configure"
16693+#line 11071 "configure"
16694 #include "confdefs.h"
16695
16696 #undef _XOPEN_SOURCE
16697@@ -10987,16 +11090,16 @@
16698 }
16699 _ACEOF
16700 rm -f conftest.$ac_objext
16701-if { (eval echo "$as_me:10990: \"$ac_compile\"") >&5
16702+if { (eval echo "$as_me:11093: \"$ac_compile\"") >&5
16703   (eval $ac_compile) 2>&5
16704   ac_status=$?
16705-  echo "$as_me:10993: \$? = $ac_status" >&5
16706+  echo "$as_me:11096: \$? = $ac_status" >&5
16707   (exit $ac_status); } &&
16708          { ac_try='test -s conftest.$ac_objext'
16709-  { (eval echo "$as_me:10996: \"$ac_try\"") >&5
16710+  { (eval echo "$as_me:11099: \"$ac_try\"") >&5
16711   (eval $ac_try) 2>&5
16712   ac_status=$?
16713-  echo "$as_me:10999: \$? = $ac_status" >&5
16714+  echo "$as_me:11102: \$? = $ac_status" >&5
16715   (exit $ac_status); }; }; then
16716   cf_cv_fixup_sigwinch=$cf_sigwinch
16717 	 break
16718@@ -11010,7 +11113,7 @@
16719 done
16720
16721 fi
16722-echo "$as_me:11013: result: $cf_cv_fixup_sigwinch" >&5
16723+echo "$as_me:11116: result: $cf_cv_fixup_sigwinch" >&5
16724 echo "${ECHO_T}$cf_cv_fixup_sigwinch" >&6
16725
16726 	if test "$cf_cv_fixup_sigwinch" != unknown ; then
16727@@ -11020,13 +11123,13 @@
16728
16729 # Checks for CODESET support.
16730
16731-echo "$as_me:11023: checking for nl_langinfo and CODESET" >&5
16732+echo "$as_me:11126: checking for nl_langinfo and CODESET" >&5
16733 echo $ECHO_N "checking for nl_langinfo and CODESET... $ECHO_C" >&6
16734 if test "${am_cv_langinfo_codeset+set}" = set; then
16735   echo $ECHO_N "(cached) $ECHO_C" >&6
16736 else
16737   cat >conftest.$ac_ext <<_ACEOF
16738-#line 11029 "configure"
16739+#line 11132 "configure"
16740 #include "confdefs.h"
16741 #include <langinfo.h>
16742 int
16743@@ -11038,16 +11141,16 @@
16744 }
16745 _ACEOF
16746 rm -f conftest.$ac_objext conftest$ac_exeext
16747-if { (eval echo "$as_me:11041: \"$ac_link\"") >&5
16748+if { (eval echo "$as_me:11144: \"$ac_link\"") >&5
16749   (eval $ac_link) 2>&5
16750   ac_status=$?
16751-  echo "$as_me:11044: \$? = $ac_status" >&5
16752+  echo "$as_me:11147: \$? = $ac_status" >&5
16753   (exit $ac_status); } &&
16754          { ac_try='test -s conftest$ac_exeext'
16755-  { (eval echo "$as_me:11047: \"$ac_try\"") >&5
16756+  { (eval echo "$as_me:11150: \"$ac_try\"") >&5
16757   (eval $ac_try) 2>&5
16758   ac_status=$?
16759-  echo "$as_me:11050: \$? = $ac_status" >&5
16760+  echo "$as_me:11153: \$? = $ac_status" >&5
16761   (exit $ac_status); }; }; then
16762   am_cv_langinfo_codeset=yes
16763 else
16764@@ -11058,7 +11161,7 @@
16765 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
16766
16767 fi
16768-echo "$as_me:11061: result: $am_cv_langinfo_codeset" >&5
16769+echo "$as_me:11164: result: $am_cv_langinfo_codeset" >&5
16770 echo "${ECHO_T}$am_cv_langinfo_codeset" >&6
16771 	if test $am_cv_langinfo_codeset = yes; then
16772
16773@@ -11072,7 +11175,7 @@
16774 NCURSES_OK_WCHAR_T=
16775 NCURSES_OK_WINT_T=
16776
16777-echo "$as_me:11075: checking if you want wide-character code" >&5
16778+echo "$as_me:11178: checking if you want wide-character code" >&5
16779 echo $ECHO_N "checking if you want wide-character code... $ECHO_C" >&6
16780
16781 # Check whether --enable-widec or --disable-widec was given.
16782@@ -11082,7 +11185,7 @@
16783 else
16784   with_widec=no
16785 fi;
16786-echo "$as_me:11085: result: $with_widec" >&5
16787+echo "$as_me:11188: result: $with_widec" >&5
16788 echo "${ECHO_T}$with_widec" >&6
16789
16790 NCURSES_WCWIDTH_GRAPHICS=1
16791@@ -11106,23 +11209,23 @@
16792
16793 do
16794 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
16795-echo "$as_me:11109: checking for $ac_header" >&5
16796+echo "$as_me:11212: checking for $ac_header" >&5
16797 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
16798 if eval "test \"\${$as_ac_Header+set}\" = set"; then
16799   echo $ECHO_N "(cached) $ECHO_C" >&6
16800 else
16801   cat >conftest.$ac_ext <<_ACEOF
16802-#line 11115 "configure"
16803+#line 11218 "configure"
16804 #include "confdefs.h"
16805 #include <$ac_header>
16806 _ACEOF
16807-if { (eval echo "$as_me:11119: \"$ac_cpp conftest.$ac_ext\"") >&5
16808+if { (eval echo "$as_me:11222: \"$ac_cpp conftest.$ac_ext\"") >&5
16809   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
16810   ac_status=$?
16811   egrep -v '^ *\+' conftest.er1 >conftest.err
16812   rm -f conftest.er1
16813   cat conftest.err >&5
16814-  echo "$as_me:11125: \$? = $ac_status" >&5
16815+  echo "$as_me:11228: \$? = $ac_status" >&5
16816   (exit $ac_status); } >/dev/null; then
16817   if test -s conftest.err; then
16818     ac_cpp_err=$ac_c_preproc_warn_flag
16819@@ -11141,7 +11244,7 @@
16820 fi
16821 rm -f conftest.err conftest.$ac_ext
16822 fi
16823-echo "$as_me:11144: result: `eval echo '${'$as_ac_Header'}'`" >&5
16824+echo "$as_me:11247: result: `eval echo '${'$as_ac_Header'}'`" >&5
16825 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
16826 if test `eval echo '${'$as_ac_Header'}'` = yes; then
16827   cat >>confdefs.h <<EOF
16828@@ -11151,14 +11254,14 @@
16829 fi
16830 done
16831
16832-echo "$as_me:11154: checking if wchar.h can be used as is" >&5
16833+echo "$as_me:11257: checking if wchar.h can be used as is" >&5
16834 echo $ECHO_N "checking if wchar.h can be used as is... $ECHO_C" >&6
16835 if test "${cf_cv_wchar_h_okay+set}" = set; then
16836   echo $ECHO_N "(cached) $ECHO_C" >&6
16837 else
16838
16839 cat >conftest.$ac_ext <<_ACEOF
16840-#line 11161 "configure"
16841+#line 11264 "configure"
16842 #include "confdefs.h"
16843
16844 #include <stdlib.h>
16845@@ -11180,16 +11283,16 @@
16846 }
16847 _ACEOF
16848 rm -f conftest.$ac_objext
16849-if { (eval echo "$as_me:11183: \"$ac_compile\"") >&5
16850+if { (eval echo "$as_me:11286: \"$ac_compile\"") >&5
16851   (eval $ac_compile) 2>&5
16852   ac_status=$?
16853-  echo "$as_me:11186: \$? = $ac_status" >&5
16854+  echo "$as_me:11289: \$? = $ac_status" >&5
16855   (exit $ac_status); } &&
16856          { ac_try='test -s conftest.$ac_objext'
16857-  { (eval echo "$as_me:11189: \"$ac_try\"") >&5
16858+  { (eval echo "$as_me:11292: \"$ac_try\"") >&5
16859   (eval $ac_try) 2>&5
16860   ac_status=$?
16861-  echo "$as_me:11192: \$? = $ac_status" >&5
16862+  echo "$as_me:11295: \$? = $ac_status" >&5
16863   (exit $ac_status); }; }; then
16864   cf_cv_wchar_h_okay=yes
16865 else
16866@@ -11199,16 +11302,16 @@
16867 fi
16868 rm -f conftest.$ac_objext conftest.$ac_ext
16869 fi
16870-echo "$as_me:11202: result: $cf_cv_wchar_h_okay" >&5
16871+echo "$as_me:11305: result: $cf_cv_wchar_h_okay" >&5
16872 echo "${ECHO_T}$cf_cv_wchar_h_okay" >&6
16873
16874 if test $cf_cv_wchar_h_okay = no
16875 then
16876
16877-echo "$as_me:11208: checking if we must define _XOPEN_SOURCE_EXTENDED" >&5
16878+echo "$as_me:11311: checking if we must define _XOPEN_SOURCE_EXTENDED" >&5
16879 echo $ECHO_N "checking if we must define _XOPEN_SOURCE_EXTENDED... $ECHO_C" >&6
16880 cat >conftest.$ac_ext <<_ACEOF
16881-#line 11211 "configure"
16882+#line 11314 "configure"
16883 #include "confdefs.h"
16884 #include <sys/types.h>
16885
16886@@ -11224,16 +11327,16 @@
16887 }
16888 _ACEOF
16889 rm -f conftest.$ac_objext
16890-if { (eval echo "$as_me:11227: \"$ac_compile\"") >&5
16891+if { (eval echo "$as_me:11330: \"$ac_compile\"") >&5
16892   (eval $ac_compile) 2>&5
16893   ac_status=$?
16894-  echo "$as_me:11230: \$? = $ac_status" >&5
16895+  echo "$as_me:11333: \$? = $ac_status" >&5
16896   (exit $ac_status); } &&
16897          { ac_try='test -s conftest.$ac_objext'
16898-  { (eval echo "$as_me:11233: \"$ac_try\"") >&5
16899+  { (eval echo "$as_me:11336: \"$ac_try\"") >&5
16900   (eval $ac_try) 2>&5
16901   ac_status=$?
16902-  echo "$as_me:11236: \$? = $ac_status" >&5
16903+  echo "$as_me:11339: \$? = $ac_status" >&5
16904   (exit $ac_status); }; }; then
16905   cf_result=no
16906 else
16907@@ -11242,16 +11345,16 @@
16908 cf_result=yes
16909 fi
16910 rm -f conftest.$ac_objext conftest.$ac_ext
16911-echo "$as_me:11245: result: $cf_result" >&5
16912+echo "$as_me:11348: result: $cf_result" >&5
16913 echo "${ECHO_T}$cf_result" >&6
16914
16915 if test "$cf_result" = yes ; then
16916 	CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE_EXTENDED"
16917 elif test "x" != "x" ; then
16918-	echo "$as_me:11251: checking checking for compatible value versus " >&5
16919+	echo "$as_me:11354: checking checking for compatible value versus " >&5
16920 echo $ECHO_N "checking checking for compatible value versus ... $ECHO_C" >&6
16921 	cat >conftest.$ac_ext <<_ACEOF
16922-#line 11254 "configure"
16923+#line 11357 "configure"
16924 #include "confdefs.h"
16925 #include <sys/types.h>
16926
16927@@ -11267,16 +11370,16 @@
16928 }
16929 _ACEOF
16930 rm -f conftest.$ac_objext
16931-if { (eval echo "$as_me:11270: \"$ac_compile\"") >&5
16932+if { (eval echo "$as_me:11373: \"$ac_compile\"") >&5
16933   (eval $ac_compile) 2>&5
16934   ac_status=$?
16935-  echo "$as_me:11273: \$? = $ac_status" >&5
16936+  echo "$as_me:11376: \$? = $ac_status" >&5
16937   (exit $ac_status); } &&
16938          { ac_try='test -s conftest.$ac_objext'
16939-  { (eval echo "$as_me:11276: \"$ac_try\"") >&5
16940+  { (eval echo "$as_me:11379: \"$ac_try\"") >&5
16941   (eval $ac_try) 2>&5
16942   ac_status=$?
16943-  echo "$as_me:11279: \$? = $ac_status" >&5
16944+  echo "$as_me:11382: \$? = $ac_status" >&5
16945   (exit $ac_status); }; }; then
16946   cf_result=yes
16947 else
16948@@ -11285,7 +11388,7 @@
16949 cf_result=no
16950 fi
16951 rm -f conftest.$ac_objext conftest.$ac_ext
16952-	echo "$as_me:11288: result: $cf_result" >&5
16953+	echo "$as_me:11391: result: $cf_result" >&5
16954 echo "${ECHO_T}$cf_result" >&6
16955 	if test "$cf_result" = no ; then
16956 		# perhaps we can override it - try...
16957@@ -11295,7 +11398,7 @@
16958
16959 fi
16960
16961-echo "$as_me:11298: checking if wcwidth agrees graphics are single-width" >&5
16962+echo "$as_me:11401: checking if wcwidth agrees graphics are single-width" >&5
16963 echo $ECHO_N "checking if wcwidth agrees graphics are single-width... $ECHO_C" >&6
16964 if test "${cf_cv_wcwidth_graphics+set}" = set; then
16965   echo $ECHO_N "(cached) $ECHO_C" >&6
16966@@ -11366,7 +11469,7 @@
16967   cf_cv_wcwidth_graphics=unknown
16968 else
16969   cat >conftest.$ac_ext <<_ACEOF
16970-#line 11369 "configure"
16971+#line 11472 "configure"
16972 #include "confdefs.h"
16973
16974 #include <locale.h>
16975@@ -11410,15 +11513,15 @@
16976
16977 _ACEOF
16978 rm -f conftest$ac_exeext
16979-if { (eval echo "$as_me:11413: \"$ac_link\"") >&5
16980+if { (eval echo "$as_me:11516: \"$ac_link\"") >&5
16981   (eval $ac_link) 2>&5
16982   ac_status=$?
16983-  echo "$as_me:11416: \$? = $ac_status" >&5
16984+  echo "$as_me:11519: \$? = $ac_status" >&5
16985   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
16986-  { (eval echo "$as_me:11418: \"$ac_try\"") >&5
16987+  { (eval echo "$as_me:11521: \"$ac_try\"") >&5
16988   (eval $ac_try) 2>&5
16989   ac_status=$?
16990-  echo "$as_me:11421: \$? = $ac_status" >&5
16991+  echo "$as_me:11524: \$? = $ac_status" >&5
16992   (exit $ac_status); }; }; then
16993   cf_cv_wcwidth_graphics=yes
16994 else
16995@@ -11431,7 +11534,7 @@
16996 fi
16997
16998 fi
16999-echo "$as_me:11434: result: $cf_cv_wcwidth_graphics" >&5
17000+echo "$as_me:11537: result: $cf_cv_wcwidth_graphics" >&5
17001 echo "${ECHO_T}$cf_cv_wcwidth_graphics" >&6
17002
17003 	test "$cf_cv_wcwidth_graphics" = no && NCURSES_WCWIDTH_GRAPHICS=0
17004@@ -11442,13 +11545,13 @@
17005 for ac_func in putwc btowc wctob mbtowc wctomb mblen mbrlen mbrtowc wcsrtombs mbsrtowcs wcstombs mbstowcs
17006 do
17007 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
17008-echo "$as_me:11445: checking for $ac_func" >&5
17009+echo "$as_me:11548: checking for $ac_func" >&5
17010 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
17011 if eval "test \"\${$as_ac_var+set}\" = set"; then
17012   echo $ECHO_N "(cached) $ECHO_C" >&6
17013 else
17014   cat >conftest.$ac_ext <<_ACEOF
17015-#line 11451 "configure"
17016+#line 11554 "configure"
17017 #include "confdefs.h"
17018 #define $ac_func autoconf_temporary
17019 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
17020@@ -11479,16 +11582,16 @@
17021 }
17022 _ACEOF
17023 rm -f conftest.$ac_objext conftest$ac_exeext
17024-if { (eval echo "$as_me:11482: \"$ac_link\"") >&5
17025+if { (eval echo "$as_me:11585: \"$ac_link\"") >&5
17026   (eval $ac_link) 2>&5
17027   ac_status=$?
17028-  echo "$as_me:11485: \$? = $ac_status" >&5
17029+  echo "$as_me:11588: \$? = $ac_status" >&5
17030   (exit $ac_status); } &&
17031          { ac_try='test -s conftest$ac_exeext'
17032-  { (eval echo "$as_me:11488: \"$ac_try\"") >&5
17033+  { (eval echo "$as_me:11591: \"$ac_try\"") >&5
17034   (eval $ac_try) 2>&5
17035   ac_status=$?
17036-  echo "$as_me:11491: \$? = $ac_status" >&5
17037+  echo "$as_me:11594: \$? = $ac_status" >&5
17038   (exit $ac_status); }; }; then
17039   eval "$as_ac_var=yes"
17040 else
17041@@ -11498,7 +11601,7 @@
17042 fi
17043 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
17044 fi
17045-echo "$as_me:11501: result: `eval echo '${'$as_ac_var'}'`" >&5
17046+echo "$as_me:11604: result: `eval echo '${'$as_ac_var'}'`" >&5
17047 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
17048 if test `eval echo '${'$as_ac_var'}'` = yes; then
17049   cat >>confdefs.h <<EOF
17050@@ -11510,7 +11613,7 @@
17051
17052 	if test "x$ac_cv_func_putwc" != xyes ; then
17053
17054-echo "$as_me:11513: checking for multibyte character support" >&5
17055+echo "$as_me:11616: checking for multibyte character support" >&5
17056 echo $ECHO_N "checking for multibyte character support... $ECHO_C" >&6
17057 if test "${cf_cv_utf8_lib+set}" = set; then
17058   echo $ECHO_N "(cached) $ECHO_C" >&6
17059@@ -11518,7 +11621,7 @@
17060
17061 	cf_save_LIBS="$LIBS"
17062 	cat >conftest.$ac_ext <<_ACEOF
17063-#line 11521 "configure"
17064+#line 11624 "configure"
17065 #include "confdefs.h"
17066
17067 #include <stdlib.h>
17068@@ -11531,16 +11634,16 @@
17069 }
17070 _ACEOF
17071 rm -f conftest.$ac_objext conftest$ac_exeext
17072-if { (eval echo "$as_me:11534: \"$ac_link\"") >&5
17073+if { (eval echo "$as_me:11637: \"$ac_link\"") >&5
17074   (eval $ac_link) 2>&5
17075   ac_status=$?
17076-  echo "$as_me:11537: \$? = $ac_status" >&5
17077+  echo "$as_me:11640: \$? = $ac_status" >&5
17078   (exit $ac_status); } &&
17079          { ac_try='test -s conftest$ac_exeext'
17080-  { (eval echo "$as_me:11540: \"$ac_try\"") >&5
17081+  { (eval echo "$as_me:11643: \"$ac_try\"") >&5
17082   (eval $ac_try) 2>&5
17083   ac_status=$?
17084-  echo "$as_me:11543: \$? = $ac_status" >&5
17085+  echo "$as_me:11646: \$? = $ac_status" >&5
17086   (exit $ac_status); }; }; then
17087   cf_cv_utf8_lib=yes
17088 else
17089@@ -11552,12 +11655,12 @@
17090 cf_cv_header_path_utf8=
17091 cf_cv_library_path_utf8=
17092
17093-echo "${as_me:-configure}:11555: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5
17094+echo "${as_me:-configure}:11658: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5
17095
17096 cf_save_LIBS="$LIBS"
17097
17098 cat >conftest.$ac_ext <<_ACEOF
17099-#line 11560 "configure"
17100+#line 11663 "configure"
17101 #include "confdefs.h"
17102
17103 #include <libutf8.h>
17104@@ -11570,16 +11673,16 @@
17105 }
17106 _ACEOF
17107 rm -f conftest.$ac_objext conftest$ac_exeext
17108-if { (eval echo "$as_me:11573: \"$ac_link\"") >&5
17109+if { (eval echo "$as_me:11676: \"$ac_link\"") >&5
17110   (eval $ac_link) 2>&5
17111   ac_status=$?
17112-  echo "$as_me:11576: \$? = $ac_status" >&5
17113+  echo "$as_me:11679: \$? = $ac_status" >&5
17114   (exit $ac_status); } &&
17115          { ac_try='test -s conftest$ac_exeext'
17116-  { (eval echo "$as_me:11579: \"$ac_try\"") >&5
17117+  { (eval echo "$as_me:11682: \"$ac_try\"") >&5
17118   (eval $ac_try) 2>&5
17119   ac_status=$?
17120-  echo "$as_me:11582: \$? = $ac_status" >&5
17121+  echo "$as_me:11685: \$? = $ac_status" >&5
17122   (exit $ac_status); }; }; then
17123
17124 	cf_cv_find_linkage_utf8=yes
17125@@ -11593,7 +11696,7 @@
17126 LIBS="-lutf8  $cf_save_LIBS"
17127
17128 cat >conftest.$ac_ext <<_ACEOF
17129-#line 11596 "configure"
17130+#line 11699 "configure"
17131 #include "confdefs.h"
17132
17133 #include <libutf8.h>
17134@@ -11606,16 +11709,16 @@
17135 }
17136 _ACEOF
17137 rm -f conftest.$ac_objext conftest$ac_exeext
17138-if { (eval echo "$as_me:11609: \"$ac_link\"") >&5
17139+if { (eval echo "$as_me:11712: \"$ac_link\"") >&5
17140   (eval $ac_link) 2>&5
17141   ac_status=$?
17142-  echo "$as_me:11612: \$? = $ac_status" >&5
17143+  echo "$as_me:11715: \$? = $ac_status" >&5
17144   (exit $ac_status); } &&
17145          { ac_try='test -s conftest$ac_exeext'
17146-  { (eval echo "$as_me:11615: \"$ac_try\"") >&5
17147+  { (eval echo "$as_me:11718: \"$ac_try\"") >&5
17148   (eval $ac_try) 2>&5
17149   ac_status=$?
17150-  echo "$as_me:11618: \$? = $ac_status" >&5
17151+  echo "$as_me:11721: \$? = $ac_status" >&5
17152   (exit $ac_status); }; }; then
17153
17154 	cf_cv_find_linkage_utf8=yes
17155@@ -11632,9 +11735,9 @@
17156
17157 	test -n "$verbose" && echo "	find linkage for utf8 library" 1>&6
17158
17159-echo "${as_me:-configure}:11635: testing find linkage for utf8 library ..." 1>&5
17160+echo "${as_me:-configure}:11738: testing find linkage for utf8 library ..." 1>&5
17161
17162-echo "${as_me:-configure}:11637: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5
17163+echo "${as_me:-configure}:11740: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5
17164
17165 	cf_save_CPPFLAGS="$CPPFLAGS"
17166 	cf_test_CPPFLAGS="$CPPFLAGS"
17167@@ -11725,7 +11828,7 @@
17168 		if test -d $cf_cv_header_path_utf8 ; then
17169 			test -n "$verbose" && echo "	... testing $cf_cv_header_path_utf8" 1>&6
17170
17171-echo "${as_me:-configure}:11728: testing ... testing $cf_cv_header_path_utf8 ..." 1>&5
17172+echo "${as_me:-configure}:11831: testing ... testing $cf_cv_header_path_utf8 ..." 1>&5
17173
17174 			CPPFLAGS="$cf_save_CPPFLAGS"
17175
17176@@ -11733,7 +11836,7 @@
17177 	CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_utf8"
17178
17179 			cat >conftest.$ac_ext <<_ACEOF
17180-#line 11736 "configure"
17181+#line 11839 "configure"
17182 #include "confdefs.h"
17183
17184 #include <libutf8.h>
17185@@ -11746,21 +11849,21 @@
17186 }
17187 _ACEOF
17188 rm -f conftest.$ac_objext
17189-if { (eval echo "$as_me:11749: \"$ac_compile\"") >&5
17190+if { (eval echo "$as_me:11852: \"$ac_compile\"") >&5
17191   (eval $ac_compile) 2>&5
17192   ac_status=$?
17193-  echo "$as_me:11752: \$? = $ac_status" >&5
17194+  echo "$as_me:11855: \$? = $ac_status" >&5
17195   (exit $ac_status); } &&
17196          { ac_try='test -s conftest.$ac_objext'
17197-  { (eval echo "$as_me:11755: \"$ac_try\"") >&5
17198+  { (eval echo "$as_me:11858: \"$ac_try\"") >&5
17199   (eval $ac_try) 2>&5
17200   ac_status=$?
17201-  echo "$as_me:11758: \$? = $ac_status" >&5
17202+  echo "$as_me:11861: \$? = $ac_status" >&5
17203   (exit $ac_status); }; }; then
17204
17205 				test -n "$verbose" && echo "	... found utf8 headers in $cf_cv_header_path_utf8" 1>&6
17206
17207-echo "${as_me:-configure}:11763: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5
17208+echo "${as_me:-configure}:11866: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5
17209
17210 				cf_cv_find_linkage_utf8=maybe
17211 				cf_test_CPPFLAGS="$CPPFLAGS"
17212@@ -11778,7 +11881,7 @@
17213
17214 	if test "$cf_cv_find_linkage_utf8" = maybe ; then
17215
17216-echo "${as_me:-configure}:11781: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5
17217+echo "${as_me:-configure}:11884: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5
17218
17219 		cf_save_LIBS="$LIBS"
17220 		cf_save_LDFLAGS="$LDFLAGS"
17221@@ -11853,13 +11956,13 @@
17222 				if test -d $cf_cv_library_path_utf8 ; then
17223 					test -n "$verbose" && echo "	... testing $cf_cv_library_path_utf8" 1>&6
17224
17225-echo "${as_me:-configure}:11856: testing ... testing $cf_cv_library_path_utf8 ..." 1>&5
17226+echo "${as_me:-configure}:11959: testing ... testing $cf_cv_library_path_utf8 ..." 1>&5
17227
17228 					CPPFLAGS="$cf_test_CPPFLAGS"
17229 					LIBS="-lutf8  $cf_save_LIBS"
17230 					LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_utf8"
17231 					cat >conftest.$ac_ext <<_ACEOF
17232-#line 11862 "configure"
17233+#line 11965 "configure"
17234 #include "confdefs.h"
17235
17236 #include <libutf8.h>
17237@@ -11872,21 +11975,21 @@
17238 }
17239 _ACEOF
17240 rm -f conftest.$ac_objext conftest$ac_exeext
17241-if { (eval echo "$as_me:11875: \"$ac_link\"") >&5
17242+if { (eval echo "$as_me:11978: \"$ac_link\"") >&5
17243   (eval $ac_link) 2>&5
17244   ac_status=$?
17245-  echo "$as_me:11878: \$? = $ac_status" >&5
17246+  echo "$as_me:11981: \$? = $ac_status" >&5
17247   (exit $ac_status); } &&
17248          { ac_try='test -s conftest$ac_exeext'
17249-  { (eval echo "$as_me:11881: \"$ac_try\"") >&5
17250+  { (eval echo "$as_me:11984: \"$ac_try\"") >&5
17251   (eval $ac_try) 2>&5
17252   ac_status=$?
17253-  echo "$as_me:11884: \$? = $ac_status" >&5
17254+  echo "$as_me:11987: \$? = $ac_status" >&5
17255   (exit $ac_status); }; }; then
17256
17257 					test -n "$verbose" && echo "	... found utf8 library in $cf_cv_library_path_utf8" 1>&6
17258
17259-echo "${as_me:-configure}:11889: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5
17260+echo "${as_me:-configure}:11992: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5
17261
17262 					cf_cv_find_linkage_utf8=yes
17263 					cf_cv_library_file_utf8="-lutf8"
17264@@ -11928,7 +12031,7 @@
17265 fi
17266 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
17267 fi
17268-echo "$as_me:11931: result: $cf_cv_utf8_lib" >&5
17269+echo "$as_me:12034: result: $cf_cv_utf8_lib" >&5
17270 echo "${ECHO_T}$cf_cv_utf8_lib" >&6
17271
17272 # HAVE_LIBUTF8_H is used by ncurses if curses.h is shared between
17273@@ -11966,7 +12069,7 @@
17274 	CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir"
17275
17276 			  cat >conftest.$ac_ext <<_ACEOF
17277-#line 11969 "configure"
17278+#line 12072 "configure"
17279 #include "confdefs.h"
17280 #include <stdio.h>
17281 int
17282@@ -11978,16 +12081,16 @@
17283 }
17284 _ACEOF
17285 rm -f conftest.$ac_objext
17286-if { (eval echo "$as_me:11981: \"$ac_compile\"") >&5
17287+if { (eval echo "$as_me:12084: \"$ac_compile\"") >&5
17288   (eval $ac_compile) 2>&5
17289   ac_status=$?
17290-  echo "$as_me:11984: \$? = $ac_status" >&5
17291+  echo "$as_me:12087: \$? = $ac_status" >&5
17292   (exit $ac_status); } &&
17293          { ac_try='test -s conftest.$ac_objext'
17294-  { (eval echo "$as_me:11987: \"$ac_try\"") >&5
17295+  { (eval echo "$as_me:12090: \"$ac_try\"") >&5
17296   (eval $ac_try) 2>&5
17297   ac_status=$?
17298-  echo "$as_me:11990: \$? = $ac_status" >&5
17299+  echo "$as_me:12093: \$? = $ac_status" >&5
17300   (exit $ac_status); }; }; then
17301   :
17302 else
17303@@ -12004,7 +12107,7 @@
17304 		if test "$cf_have_incdir" = no ; then
17305 		  test -n "$verbose" && echo "	adding $cf_add_incdir to include-path" 1>&6
17306
17307-echo "${as_me:-configure}:12007: testing adding $cf_add_incdir to include-path ..." 1>&5
17308+echo "${as_me:-configure}:12110: testing adding $cf_add_incdir to include-path ..." 1>&5
17309
17310 		  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
17311
17312@@ -12040,7 +12143,7 @@
17313 			if test "$cf_have_libdir" = no ; then
17314 				test -n "$verbose" && echo "	adding $cf_add_libdir to library-path" 1>&6
17315
17316-echo "${as_me:-configure}:12043: testing adding $cf_add_libdir to library-path ..." 1>&5
17317+echo "${as_me:-configure}:12146: testing adding $cf_add_libdir to library-path ..." 1>&5
17318
17319 				LDFLAGS="-L$cf_add_libdir $LDFLAGS"
17320 			fi
17321@@ -12072,14 +12175,14 @@
17322 	fi
17323
17324 # This is needed on Tru64 5.0 to declare mbstate_t
17325-echo "$as_me:12075: checking if we must include wchar.h to declare mbstate_t" >&5
17326+echo "$as_me:12178: checking if we must include wchar.h to declare mbstate_t" >&5
17327 echo $ECHO_N "checking if we must include wchar.h to declare mbstate_t... $ECHO_C" >&6
17328 if test "${cf_cv_mbstate_t+set}" = set; then
17329   echo $ECHO_N "(cached) $ECHO_C" >&6
17330 else
17331
17332 cat >conftest.$ac_ext <<_ACEOF
17333-#line 12082 "configure"
17334+#line 12185 "configure"
17335 #include "confdefs.h"
17336
17337 #include <stdlib.h>
17338@@ -12097,23 +12200,23 @@
17339 }
17340 _ACEOF
17341 rm -f conftest.$ac_objext
17342-if { (eval echo "$as_me:12100: \"$ac_compile\"") >&5
17343+if { (eval echo "$as_me:12203: \"$ac_compile\"") >&5
17344   (eval $ac_compile) 2>&5
17345   ac_status=$?
17346-  echo "$as_me:12103: \$? = $ac_status" >&5
17347+  echo "$as_me:12206: \$? = $ac_status" >&5
17348   (exit $ac_status); } &&
17349          { ac_try='test -s conftest.$ac_objext'
17350-  { (eval echo "$as_me:12106: \"$ac_try\"") >&5
17351+  { (eval echo "$as_me:12209: \"$ac_try\"") >&5
17352   (eval $ac_try) 2>&5
17353   ac_status=$?
17354-  echo "$as_me:12109: \$? = $ac_status" >&5
17355+  echo "$as_me:12212: \$? = $ac_status" >&5
17356   (exit $ac_status); }; }; then
17357   cf_cv_mbstate_t=no
17358 else
17359   echo "$as_me: failed program was:" >&5
17360 cat conftest.$ac_ext >&5
17361 cat >conftest.$ac_ext <<_ACEOF
17362-#line 12116 "configure"
17363+#line 12219 "configure"
17364 #include "confdefs.h"
17365
17366 #include <stdlib.h>
17367@@ -12132,16 +12235,16 @@
17368 }
17369 _ACEOF
17370 rm -f conftest.$ac_objext
17371-if { (eval echo "$as_me:12135: \"$ac_compile\"") >&5
17372+if { (eval echo "$as_me:12238: \"$ac_compile\"") >&5
17373   (eval $ac_compile) 2>&5
17374   ac_status=$?
17375-  echo "$as_me:12138: \$? = $ac_status" >&5
17376+  echo "$as_me:12241: \$? = $ac_status" >&5
17377   (exit $ac_status); } &&
17378          { ac_try='test -s conftest.$ac_objext'
17379-  { (eval echo "$as_me:12141: \"$ac_try\"") >&5
17380+  { (eval echo "$as_me:12244: \"$ac_try\"") >&5
17381   (eval $ac_try) 2>&5
17382   ac_status=$?
17383-  echo "$as_me:12144: \$? = $ac_status" >&5
17384+  echo "$as_me:12247: \$? = $ac_status" >&5
17385   (exit $ac_status); }; }; then
17386   cf_cv_mbstate_t=yes
17387 else
17388@@ -12153,7 +12256,7 @@
17389 fi
17390 rm -f conftest.$ac_objext conftest.$ac_ext
17391 fi
17392-echo "$as_me:12156: result: $cf_cv_mbstate_t" >&5
17393+echo "$as_me:12259: result: $cf_cv_mbstate_t" >&5
17394 echo "${ECHO_T}$cf_cv_mbstate_t" >&6
17395
17396 if test "$cf_cv_mbstate_t" = yes ; then
17397@@ -12171,14 +12274,14 @@
17398 fi
17399
17400 # This is needed on Tru64 5.0 to declare wchar_t
17401-echo "$as_me:12174: checking if we must include wchar.h to declare wchar_t" >&5
17402+echo "$as_me:12277: checking if we must include wchar.h to declare wchar_t" >&5
17403 echo $ECHO_N "checking if we must include wchar.h to declare wchar_t... $ECHO_C" >&6
17404 if test "${cf_cv_wchar_t+set}" = set; then
17405   echo $ECHO_N "(cached) $ECHO_C" >&6
17406 else
17407
17408 cat >conftest.$ac_ext <<_ACEOF
17409-#line 12181 "configure"
17410+#line 12284 "configure"
17411 #include "confdefs.h"
17412
17413 #include <stdlib.h>
17414@@ -12196,23 +12299,23 @@
17415 }
17416 _ACEOF
17417 rm -f conftest.$ac_objext
17418-if { (eval echo "$as_me:12199: \"$ac_compile\"") >&5
17419+if { (eval echo "$as_me:12302: \"$ac_compile\"") >&5
17420   (eval $ac_compile) 2>&5
17421   ac_status=$?
17422-  echo "$as_me:12202: \$? = $ac_status" >&5
17423+  echo "$as_me:12305: \$? = $ac_status" >&5
17424   (exit $ac_status); } &&
17425          { ac_try='test -s conftest.$ac_objext'
17426-  { (eval echo "$as_me:12205: \"$ac_try\"") >&5
17427+  { (eval echo "$as_me:12308: \"$ac_try\"") >&5
17428   (eval $ac_try) 2>&5
17429   ac_status=$?
17430-  echo "$as_me:12208: \$? = $ac_status" >&5
17431+  echo "$as_me:12311: \$? = $ac_status" >&5
17432   (exit $ac_status); }; }; then
17433   cf_cv_wchar_t=no
17434 else
17435   echo "$as_me: failed program was:" >&5
17436 cat conftest.$ac_ext >&5
17437 cat >conftest.$ac_ext <<_ACEOF
17438-#line 12215 "configure"
17439+#line 12318 "configure"
17440 #include "confdefs.h"
17441
17442 #include <stdlib.h>
17443@@ -12231,16 +12334,16 @@
17444 }
17445 _ACEOF
17446 rm -f conftest.$ac_objext
17447-if { (eval echo "$as_me:12234: \"$ac_compile\"") >&5
17448+if { (eval echo "$as_me:12337: \"$ac_compile\"") >&5
17449   (eval $ac_compile) 2>&5
17450   ac_status=$?
17451-  echo "$as_me:12237: \$? = $ac_status" >&5
17452+  echo "$as_me:12340: \$? = $ac_status" >&5
17453   (exit $ac_status); } &&
17454          { ac_try='test -s conftest.$ac_objext'
17455-  { (eval echo "$as_me:12240: \"$ac_try\"") >&5
17456+  { (eval echo "$as_me:12343: \"$ac_try\"") >&5
17457   (eval $ac_try) 2>&5
17458   ac_status=$?
17459-  echo "$as_me:12243: \$? = $ac_status" >&5
17460+  echo "$as_me:12346: \$? = $ac_status" >&5
17461   (exit $ac_status); }; }; then
17462   cf_cv_wchar_t=yes
17463 else
17464@@ -12252,7 +12355,7 @@
17465 fi
17466 rm -f conftest.$ac_objext conftest.$ac_ext
17467 fi
17468-echo "$as_me:12255: result: $cf_cv_wchar_t" >&5
17469+echo "$as_me:12358: result: $cf_cv_wchar_t" >&5
17470 echo "${ECHO_T}$cf_cv_wchar_t" >&6
17471
17472 if test "$cf_cv_wchar_t" = yes ; then
17473@@ -12275,14 +12378,14 @@
17474 fi
17475
17476 # This is needed on Tru64 5.0 to declare wint_t
17477-echo "$as_me:12278: checking if we must include wchar.h to declare wint_t" >&5
17478+echo "$as_me:12381: checking if we must include wchar.h to declare wint_t" >&5
17479 echo $ECHO_N "checking if we must include wchar.h to declare wint_t... $ECHO_C" >&6
17480 if test "${cf_cv_wint_t+set}" = set; then
17481   echo $ECHO_N "(cached) $ECHO_C" >&6
17482 else
17483
17484 cat >conftest.$ac_ext <<_ACEOF
17485-#line 12285 "configure"
17486+#line 12388 "configure"
17487 #include "confdefs.h"
17488
17489 #include <stdlib.h>
17490@@ -12300,23 +12403,23 @@
17491 }
17492 _ACEOF
17493 rm -f conftest.$ac_objext
17494-if { (eval echo "$as_me:12303: \"$ac_compile\"") >&5
17495+if { (eval echo "$as_me:12406: \"$ac_compile\"") >&5
17496   (eval $ac_compile) 2>&5
17497   ac_status=$?
17498-  echo "$as_me:12306: \$? = $ac_status" >&5
17499+  echo "$as_me:12409: \$? = $ac_status" >&5
17500   (exit $ac_status); } &&
17501          { ac_try='test -s conftest.$ac_objext'
17502-  { (eval echo "$as_me:12309: \"$ac_try\"") >&5
17503+  { (eval echo "$as_me:12412: \"$ac_try\"") >&5
17504   (eval $ac_try) 2>&5
17505   ac_status=$?
17506-  echo "$as_me:12312: \$? = $ac_status" >&5
17507+  echo "$as_me:12415: \$? = $ac_status" >&5
17508   (exit $ac_status); }; }; then
17509   cf_cv_wint_t=no
17510 else
17511   echo "$as_me: failed program was:" >&5
17512 cat conftest.$ac_ext >&5
17513 cat >conftest.$ac_ext <<_ACEOF
17514-#line 12319 "configure"
17515+#line 12422 "configure"
17516 #include "confdefs.h"
17517
17518 #include <stdlib.h>
17519@@ -12335,16 +12438,16 @@
17520 }
17521 _ACEOF
17522 rm -f conftest.$ac_objext
17523-if { (eval echo "$as_me:12338: \"$ac_compile\"") >&5
17524+if { (eval echo "$as_me:12441: \"$ac_compile\"") >&5
17525   (eval $ac_compile) 2>&5
17526   ac_status=$?
17527-  echo "$as_me:12341: \$? = $ac_status" >&5
17528+  echo "$as_me:12444: \$? = $ac_status" >&5
17529   (exit $ac_status); } &&
17530          { ac_try='test -s conftest.$ac_objext'
17531-  { (eval echo "$as_me:12344: \"$ac_try\"") >&5
17532+  { (eval echo "$as_me:12447: \"$ac_try\"") >&5
17533   (eval $ac_try) 2>&5
17534   ac_status=$?
17535-  echo "$as_me:12347: \$? = $ac_status" >&5
17536+  echo "$as_me:12450: \$? = $ac_status" >&5
17537   (exit $ac_status); }; }; then
17538   cf_cv_wint_t=yes
17539 else
17540@@ -12356,7 +12459,7 @@
17541 fi
17542 rm -f conftest.$ac_objext conftest.$ac_ext
17543 fi
17544-echo "$as_me:12359: result: $cf_cv_wint_t" >&5
17545+echo "$as_me:12462: result: $cf_cv_wint_t" >&5
17546 echo "${ECHO_T}$cf_cv_wint_t" >&6
17547
17548 if test "$cf_cv_wint_t" = yes ; then
17549@@ -12388,7 +12491,7 @@
17550 fi
17551
17552 ###   use option --disable-lp64 to allow long chtype
17553-echo "$as_me:12391: checking whether to enable _LP64 definition in curses.h" >&5
17554+echo "$as_me:12494: checking whether to enable _LP64 definition in curses.h" >&5
17555 echo $ECHO_N "checking whether to enable _LP64 definition in curses.h... $ECHO_C" >&6
17556
17557 # Check whether --enable-lp64 or --disable-lp64 was given.
17558@@ -12398,7 +12501,7 @@
17559 else
17560   with_lp64=$cf_dft_with_lp64
17561 fi;
17562-echo "$as_me:12401: result: $with_lp64" >&5
17563+echo "$as_me:12504: result: $with_lp64" >&5
17564 echo "${ECHO_T}$with_lp64" >&6
17565
17566 if test "x$with_lp64" = xyes ; then
17567@@ -12414,7 +12517,7 @@
17568 fi;
17569 if test "$enable_largefile" != no; then
17570
17571-  echo "$as_me:12417: checking for special C compiler options needed for large files" >&5
17572+  echo "$as_me:12520: checking for special C compiler options needed for large files" >&5
17573 echo $ECHO_N "checking for special C compiler options needed for large files... $ECHO_C" >&6
17574 if test "${ac_cv_sys_largefile_CC+set}" = set; then
17575   echo $ECHO_N "(cached) $ECHO_C" >&6
17576@@ -12426,7 +12529,7 @@
17577      	 # IRIX 6.2 and later do not support large files by default,
17578      	 # so use the C compiler's -n32 option if that helps.
17579          cat >conftest.$ac_ext <<_ACEOF
17580-#line 12429 "configure"
17581+#line 12532 "configure"
17582 #include "confdefs.h"
17583 #include <sys/types.h>
17584  /* Check that off_t can represent 2**63 - 1 correctly.
17585@@ -12446,16 +12549,16 @@
17586 }
17587 _ACEOF
17588      	 rm -f conftest.$ac_objext
17589-if { (eval echo "$as_me:12449: \"$ac_compile\"") >&5
17590+if { (eval echo "$as_me:12552: \"$ac_compile\"") >&5
17591   (eval $ac_compile) 2>&5
17592   ac_status=$?
17593-  echo "$as_me:12452: \$? = $ac_status" >&5
17594+  echo "$as_me:12555: \$? = $ac_status" >&5
17595   (exit $ac_status); } &&
17596          { ac_try='test -s conftest.$ac_objext'
17597-  { (eval echo "$as_me:12455: \"$ac_try\"") >&5
17598+  { (eval echo "$as_me:12558: \"$ac_try\"") >&5
17599   (eval $ac_try) 2>&5
17600   ac_status=$?
17601-  echo "$as_me:12458: \$? = $ac_status" >&5
17602+  echo "$as_me:12561: \$? = $ac_status" >&5
17603   (exit $ac_status); }; }; then
17604   break
17605 else
17606@@ -12465,16 +12568,16 @@
17607 rm -f conftest.$ac_objext
17608      	 CC="$CC -n32"
17609      	 rm -f conftest.$ac_objext
17610-if { (eval echo "$as_me:12468: \"$ac_compile\"") >&5
17611+if { (eval echo "$as_me:12571: \"$ac_compile\"") >&5
17612   (eval $ac_compile) 2>&5
17613   ac_status=$?
17614-  echo "$as_me:12471: \$? = $ac_status" >&5
17615+  echo "$as_me:12574: \$? = $ac_status" >&5
17616   (exit $ac_status); } &&
17617          { ac_try='test -s conftest.$ac_objext'
17618-  { (eval echo "$as_me:12474: \"$ac_try\"") >&5
17619+  { (eval echo "$as_me:12577: \"$ac_try\"") >&5
17620   (eval $ac_try) 2>&5
17621   ac_status=$?
17622-  echo "$as_me:12477: \$? = $ac_status" >&5
17623+  echo "$as_me:12580: \$? = $ac_status" >&5
17624   (exit $ac_status); }; }; then
17625   ac_cv_sys_largefile_CC=' -n32'; break
17626 else
17627@@ -12488,13 +12591,13 @@
17628        rm -f conftest.$ac_ext
17629     fi
17630 fi
17631-echo "$as_me:12491: result: $ac_cv_sys_largefile_CC" >&5
17632+echo "$as_me:12594: result: $ac_cv_sys_largefile_CC" >&5
17633 echo "${ECHO_T}$ac_cv_sys_largefile_CC" >&6
17634   if test "$ac_cv_sys_largefile_CC" != no; then
17635     CC=$CC$ac_cv_sys_largefile_CC
17636   fi
17637
17638-  echo "$as_me:12497: checking for _FILE_OFFSET_BITS value needed for large files" >&5
17639+  echo "$as_me:12600: checking for _FILE_OFFSET_BITS value needed for large files" >&5
17640 echo $ECHO_N "checking for _FILE_OFFSET_BITS value needed for large files... $ECHO_C" >&6
17641 if test "${ac_cv_sys_file_offset_bits+set}" = set; then
17642   echo $ECHO_N "(cached) $ECHO_C" >&6
17643@@ -12502,7 +12605,7 @@
17644   while :; do
17645   ac_cv_sys_file_offset_bits=no
17646   cat >conftest.$ac_ext <<_ACEOF
17647-#line 12505 "configure"
17648+#line 12608 "configure"
17649 #include "confdefs.h"
17650 #include <sys/types.h>
17651  /* Check that off_t can represent 2**63 - 1 correctly.
17652@@ -12522,16 +12625,16 @@
17653 }
17654 _ACEOF
17655 rm -f conftest.$ac_objext
17656-if { (eval echo "$as_me:12525: \"$ac_compile\"") >&5
17657+if { (eval echo "$as_me:12628: \"$ac_compile\"") >&5
17658   (eval $ac_compile) 2>&5
17659   ac_status=$?
17660-  echo "$as_me:12528: \$? = $ac_status" >&5
17661+  echo "$as_me:12631: \$? = $ac_status" >&5
17662   (exit $ac_status); } &&
17663          { ac_try='test -s conftest.$ac_objext'
17664-  { (eval echo "$as_me:12531: \"$ac_try\"") >&5
17665+  { (eval echo "$as_me:12634: \"$ac_try\"") >&5
17666   (eval $ac_try) 2>&5
17667   ac_status=$?
17668-  echo "$as_me:12534: \$? = $ac_status" >&5
17669+  echo "$as_me:12637: \$? = $ac_status" >&5
17670   (exit $ac_status); }; }; then
17671   break
17672 else
17673@@ -12540,7 +12643,7 @@
17674 fi
17675 rm -f conftest.$ac_objext conftest.$ac_ext
17676   cat >conftest.$ac_ext <<_ACEOF
17677-#line 12543 "configure"
17678+#line 12646 "configure"
17679 #include "confdefs.h"
17680 #define _FILE_OFFSET_BITS 64
17681 #include <sys/types.h>
17682@@ -12561,16 +12664,16 @@
17683 }
17684 _ACEOF
17685 rm -f conftest.$ac_objext
17686-if { (eval echo "$as_me:12564: \"$ac_compile\"") >&5
17687+if { (eval echo "$as_me:12667: \"$ac_compile\"") >&5
17688   (eval $ac_compile) 2>&5
17689   ac_status=$?
17690-  echo "$as_me:12567: \$? = $ac_status" >&5
17691+  echo "$as_me:12670: \$? = $ac_status" >&5
17692   (exit $ac_status); } &&
17693          { ac_try='test -s conftest.$ac_objext'
17694-  { (eval echo "$as_me:12570: \"$ac_try\"") >&5
17695+  { (eval echo "$as_me:12673: \"$ac_try\"") >&5
17696   (eval $ac_try) 2>&5
17697   ac_status=$?
17698-  echo "$as_me:12573: \$? = $ac_status" >&5
17699+  echo "$as_me:12676: \$? = $ac_status" >&5
17700   (exit $ac_status); }; }; then
17701   ac_cv_sys_file_offset_bits=64; break
17702 else
17703@@ -12581,7 +12684,7 @@
17704   break
17705 done
17706 fi
17707-echo "$as_me:12584: result: $ac_cv_sys_file_offset_bits" >&5
17708+echo "$as_me:12687: result: $ac_cv_sys_file_offset_bits" >&5
17709 echo "${ECHO_T}$ac_cv_sys_file_offset_bits" >&6
17710 if test "$ac_cv_sys_file_offset_bits" != no; then
17711
17712@@ -12591,7 +12694,7 @@
17713
17714 fi
17715 rm -rf conftest*
17716-  echo "$as_me:12594: checking for _LARGE_FILES value needed for large files" >&5
17717+  echo "$as_me:12697: checking for _LARGE_FILES value needed for large files" >&5
17718 echo $ECHO_N "checking for _LARGE_FILES value needed for large files... $ECHO_C" >&6
17719 if test "${ac_cv_sys_large_files+set}" = set; then
17720   echo $ECHO_N "(cached) $ECHO_C" >&6
17721@@ -12599,7 +12702,7 @@
17722   while :; do
17723   ac_cv_sys_large_files=no
17724   cat >conftest.$ac_ext <<_ACEOF
17725-#line 12602 "configure"
17726+#line 12705 "configure"
17727 #include "confdefs.h"
17728 #include <sys/types.h>
17729  /* Check that off_t can represent 2**63 - 1 correctly.
17730@@ -12619,16 +12722,16 @@
17731 }
17732 _ACEOF
17733 rm -f conftest.$ac_objext
17734-if { (eval echo "$as_me:12622: \"$ac_compile\"") >&5
17735+if { (eval echo "$as_me:12725: \"$ac_compile\"") >&5
17736   (eval $ac_compile) 2>&5
17737   ac_status=$?
17738-  echo "$as_me:12625: \$? = $ac_status" >&5
17739+  echo "$as_me:12728: \$? = $ac_status" >&5
17740   (exit $ac_status); } &&
17741          { ac_try='test -s conftest.$ac_objext'
17742-  { (eval echo "$as_me:12628: \"$ac_try\"") >&5
17743+  { (eval echo "$as_me:12731: \"$ac_try\"") >&5
17744   (eval $ac_try) 2>&5
17745   ac_status=$?
17746-  echo "$as_me:12631: \$? = $ac_status" >&5
17747+  echo "$as_me:12734: \$? = $ac_status" >&5
17748   (exit $ac_status); }; }; then
17749   break
17750 else
17751@@ -12637,7 +12740,7 @@
17752 fi
17753 rm -f conftest.$ac_objext conftest.$ac_ext
17754   cat >conftest.$ac_ext <<_ACEOF
17755-#line 12640 "configure"
17756+#line 12743 "configure"
17757 #include "confdefs.h"
17758 #define _LARGE_FILES 1
17759 #include <sys/types.h>
17760@@ -12658,16 +12761,16 @@
17761 }
17762 _ACEOF
17763 rm -f conftest.$ac_objext
17764-if { (eval echo "$as_me:12661: \"$ac_compile\"") >&5
17765+if { (eval echo "$as_me:12764: \"$ac_compile\"") >&5
17766   (eval $ac_compile) 2>&5
17767   ac_status=$?
17768-  echo "$as_me:12664: \$? = $ac_status" >&5
17769+  echo "$as_me:12767: \$? = $ac_status" >&5
17770   (exit $ac_status); } &&
17771          { ac_try='test -s conftest.$ac_objext'
17772-  { (eval echo "$as_me:12667: \"$ac_try\"") >&5
17773+  { (eval echo "$as_me:12770: \"$ac_try\"") >&5
17774   (eval $ac_try) 2>&5
17775   ac_status=$?
17776-  echo "$as_me:12670: \$? = $ac_status" >&5
17777+  echo "$as_me:12773: \$? = $ac_status" >&5
17778   (exit $ac_status); }; }; then
17779   ac_cv_sys_large_files=1; break
17780 else
17781@@ -12678,7 +12781,7 @@
17782   break
17783 done
17784 fi
17785-echo "$as_me:12681: result: $ac_cv_sys_large_files" >&5
17786+echo "$as_me:12784: result: $ac_cv_sys_large_files" >&5
17787 echo "${ECHO_T}$ac_cv_sys_large_files" >&6
17788 if test "$ac_cv_sys_large_files" != no; then
17789
17790@@ -12691,7 +12794,7 @@
17791 fi
17792
17793 	if test "$enable_largefile" != no ; then
17794-	echo "$as_me:12694: checking for _LARGEFILE_SOURCE value needed for large files" >&5
17795+	echo "$as_me:12797: checking for _LARGEFILE_SOURCE value needed for large files" >&5
17796 echo $ECHO_N "checking for _LARGEFILE_SOURCE value needed for large files... $ECHO_C" >&6
17797 if test "${ac_cv_sys_largefile_source+set}" = set; then
17798   echo $ECHO_N "(cached) $ECHO_C" >&6
17799@@ -12699,7 +12802,7 @@
17800   while :; do
17801   ac_cv_sys_largefile_source=no
17802   cat >conftest.$ac_ext <<_ACEOF
17803-#line 12702 "configure"
17804+#line 12805 "configure"
17805 #include "confdefs.h"
17806 #include <stdio.h>
17807 int
17808@@ -12711,16 +12814,16 @@
17809 }
17810 _ACEOF
17811 rm -f conftest.$ac_objext
17812-if { (eval echo "$as_me:12714: \"$ac_compile\"") >&5
17813+if { (eval echo "$as_me:12817: \"$ac_compile\"") >&5
17814   (eval $ac_compile) 2>&5
17815   ac_status=$?
17816-  echo "$as_me:12717: \$? = $ac_status" >&5
17817+  echo "$as_me:12820: \$? = $ac_status" >&5
17818   (exit $ac_status); } &&
17819          { ac_try='test -s conftest.$ac_objext'
17820-  { (eval echo "$as_me:12720: \"$ac_try\"") >&5
17821+  { (eval echo "$as_me:12823: \"$ac_try\"") >&5
17822   (eval $ac_try) 2>&5
17823   ac_status=$?
17824-  echo "$as_me:12723: \$? = $ac_status" >&5
17825+  echo "$as_me:12826: \$? = $ac_status" >&5
17826   (exit $ac_status); }; }; then
17827   break
17828 else
17829@@ -12729,7 +12832,7 @@
17830 fi
17831 rm -f conftest.$ac_objext conftest.$ac_ext
17832   cat >conftest.$ac_ext <<_ACEOF
17833-#line 12732 "configure"
17834+#line 12835 "configure"
17835 #include "confdefs.h"
17836 #define _LARGEFILE_SOURCE 1
17837 #include <stdio.h>
17838@@ -12742,16 +12845,16 @@
17839 }
17840 _ACEOF
17841 rm -f conftest.$ac_objext
17842-if { (eval echo "$as_me:12745: \"$ac_compile\"") >&5
17843+if { (eval echo "$as_me:12848: \"$ac_compile\"") >&5
17844   (eval $ac_compile) 2>&5
17845   ac_status=$?
17846-  echo "$as_me:12748: \$? = $ac_status" >&5
17847+  echo "$as_me:12851: \$? = $ac_status" >&5
17848   (exit $ac_status); } &&
17849          { ac_try='test -s conftest.$ac_objext'
17850-  { (eval echo "$as_me:12751: \"$ac_try\"") >&5
17851+  { (eval echo "$as_me:12854: \"$ac_try\"") >&5
17852   (eval $ac_try) 2>&5
17853   ac_status=$?
17854-  echo "$as_me:12754: \$? = $ac_status" >&5
17855+  echo "$as_me:12857: \$? = $ac_status" >&5
17856   (exit $ac_status); }; }; then
17857   ac_cv_sys_largefile_source=1; break
17858 else
17859@@ -12762,7 +12865,7 @@
17860   break
17861 done
17862 fi
17863-echo "$as_me:12765: result: $ac_cv_sys_largefile_source" >&5
17864+echo "$as_me:12868: result: $ac_cv_sys_largefile_source" >&5
17865 echo "${ECHO_T}$ac_cv_sys_largefile_source" >&6
17866 if test "$ac_cv_sys_largefile_source" != no; then
17867
17868@@ -12776,13 +12879,13 @@
17869 # We used to try defining _XOPEN_SOURCE=500 too, to work around a bug
17870 # in glibc 2.1.3, but that breaks too many other things.
17871 # If you want fseeko and ftello with glibc, upgrade to a fixed glibc.
17872-echo "$as_me:12779: checking for fseeko" >&5
17873+echo "$as_me:12882: checking for fseeko" >&5
17874 echo $ECHO_N "checking for fseeko... $ECHO_C" >&6
17875 if test "${ac_cv_func_fseeko+set}" = set; then
17876   echo $ECHO_N "(cached) $ECHO_C" >&6
17877 else
17878   cat >conftest.$ac_ext <<_ACEOF
17879-#line 12785 "configure"
17880+#line 12888 "configure"
17881 #include "confdefs.h"
17882 #include <stdio.h>
17883 int
17884@@ -12794,16 +12897,16 @@
17885 }
17886 _ACEOF
17887 rm -f conftest.$ac_objext conftest$ac_exeext
17888-if { (eval echo "$as_me:12797: \"$ac_link\"") >&5
17889+if { (eval echo "$as_me:12900: \"$ac_link\"") >&5
17890   (eval $ac_link) 2>&5
17891   ac_status=$?
17892-  echo "$as_me:12800: \$? = $ac_status" >&5
17893+  echo "$as_me:12903: \$? = $ac_status" >&5
17894   (exit $ac_status); } &&
17895          { ac_try='test -s conftest$ac_exeext'
17896-  { (eval echo "$as_me:12803: \"$ac_try\"") >&5
17897+  { (eval echo "$as_me:12906: \"$ac_try\"") >&5
17898   (eval $ac_try) 2>&5
17899   ac_status=$?
17900-  echo "$as_me:12806: \$? = $ac_status" >&5
17901+  echo "$as_me:12909: \$? = $ac_status" >&5
17902   (exit $ac_status); }; }; then
17903   ac_cv_func_fseeko=yes
17904 else
17905@@ -12813,7 +12916,7 @@
17906 fi
17907 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
17908 fi
17909-echo "$as_me:12816: result: $ac_cv_func_fseeko" >&5
17910+echo "$as_me:12919: result: $ac_cv_func_fseeko" >&5
17911 echo "${ECHO_T}$ac_cv_func_fseeko" >&6
17912 if test $ac_cv_func_fseeko = yes; then
17913
17914@@ -12852,14 +12955,14 @@
17915
17916 	fi
17917
17918-	echo "$as_me:12855: checking whether to use struct dirent64" >&5
17919+	echo "$as_me:12958: checking whether to use struct dirent64" >&5
17920 echo $ECHO_N "checking whether to use struct dirent64... $ECHO_C" >&6
17921 if test "${cf_cv_struct_dirent64+set}" = set; then
17922   echo $ECHO_N "(cached) $ECHO_C" >&6
17923 else
17924
17925 		cat >conftest.$ac_ext <<_ACEOF
17926-#line 12862 "configure"
17927+#line 12965 "configure"
17928 #include "confdefs.h"
17929
17930 #pragma GCC diagnostic error "-Wincompatible-pointer-types"
17931@@ -12881,16 +12984,16 @@
17932 }
17933 _ACEOF
17934 rm -f conftest.$ac_objext
17935-if { (eval echo "$as_me:12884: \"$ac_compile\"") >&5
17936+if { (eval echo "$as_me:12987: \"$ac_compile\"") >&5
17937   (eval $ac_compile) 2>&5
17938   ac_status=$?
17939-  echo "$as_me:12887: \$? = $ac_status" >&5
17940+  echo "$as_me:12990: \$? = $ac_status" >&5
17941   (exit $ac_status); } &&
17942          { ac_try='test -s conftest.$ac_objext'
17943-  { (eval echo "$as_me:12890: \"$ac_try\"") >&5
17944+  { (eval echo "$as_me:12993: \"$ac_try\"") >&5
17945   (eval $ac_try) 2>&5
17946   ac_status=$?
17947-  echo "$as_me:12893: \$? = $ac_status" >&5
17948+  echo "$as_me:12996: \$? = $ac_status" >&5
17949   (exit $ac_status); }; }; then
17950   cf_cv_struct_dirent64=yes
17951 else
17952@@ -12901,7 +13004,7 @@
17953 rm -f conftest.$ac_objext conftest.$ac_ext
17954
17955 fi
17956-echo "$as_me:12904: result: $cf_cv_struct_dirent64" >&5
17957+echo "$as_me:13007: result: $cf_cv_struct_dirent64" >&5
17958 echo "${ECHO_T}$cf_cv_struct_dirent64" >&6
17959 	test "$cf_cv_struct_dirent64" = yes &&
17960 cat >>confdefs.h <<\EOF
17961@@ -12911,7 +13014,7 @@
17962 	fi
17963
17964 ###   use option --disable-tparm-varargs to make tparm() conform to X/Open
17965-echo "$as_me:12914: checking if you want tparm not to use X/Open fixed-parameter list" >&5
17966+echo "$as_me:13017: checking if you want tparm not to use X/Open fixed-parameter list" >&5
17967 echo $ECHO_N "checking if you want tparm not to use X/Open fixed-parameter list... $ECHO_C" >&6
17968
17969 # Check whether --enable-tparm-varargs or --disable-tparm-varargs was given.
17970@@ -12921,14 +13024,14 @@
17971 else
17972   with_tparm_varargs=yes
17973 fi;
17974-echo "$as_me:12924: result: $with_tparm_varargs" >&5
17975+echo "$as_me:13027: result: $with_tparm_varargs" >&5
17976 echo "${ECHO_T}$with_tparm_varargs" >&6
17977 NCURSES_TPARM_VARARGS=0
17978 test "x$with_tparm_varargs" = xyes && NCURSES_TPARM_VARARGS=1
17979
17980 ###   use option --disable-tic-depends to make libtic not explicitly depend on ncurses/ncursesw
17981 if test "$with_ticlib" != no ; then
17982-echo "$as_me:12931: checking if you want tic library to use explicit dependency on ncurses$LIB_SUFFIX library" >&5
17983+echo "$as_me:13034: checking if you want tic library to use explicit dependency on ncurses$LIB_SUFFIX library" >&5
17984 echo $ECHO_N "checking if you want tic library to use explicit dependency on ncurses$LIB_SUFFIX library... $ECHO_C" >&6
17985
17986 # Check whether --enable-tic-depends or --disable-tic-depends was given.
17987@@ -12938,14 +13041,14 @@
17988 else
17989   with_tic_depends=yes
17990 fi;
17991-echo "$as_me:12941: result: $with_tic_depends" >&5
17992+echo "$as_me:13044: result: $with_tic_depends" >&5
17993 echo "${ECHO_T}$with_tic_depends" >&6
17994 else
17995 	with_tic_depends=no
17996 fi
17997
17998 ###   use option --disable-wattr-macros to suppress wattr* macros from curses.h
17999-echo "$as_me:12948: checking if you want to suppress wattr* macros to help with ncurses5/ncurses6 transition" >&5
18000+echo "$as_me:13051: checking if you want to suppress wattr* macros to help with ncurses5/ncurses6 transition" >&5
18001 echo $ECHO_N "checking if you want to suppress wattr* macros to help with ncurses5/ncurses6 transition... $ECHO_C" >&6
18002
18003 # Check whether --enable-wattr-macros or --disable-wattr-macros was given.
18004@@ -12957,15 +13060,15 @@
18005 fi;
18006 if [ "x$with_wattr_macros" != xyes ]; then
18007 	NCURSES_WATTR_MACROS=0
18008-	echo "$as_me:12960: result: yes" >&5
18009+	echo "$as_me:13063: result: yes" >&5
18010 echo "${ECHO_T}yes" >&6
18011 else
18012 	NCURSES_WATTR_MACROS=1
18013-	echo "$as_me:12964: result: no" >&5
18014+	echo "$as_me:13067: result: no" >&5
18015 echo "${ECHO_T}no" >&6
18016 fi
18017
18018-echo "$as_me:12968: checking for X11 rgb file" >&5
18019+echo "$as_me:13071: checking for X11 rgb file" >&5
18020 echo $ECHO_N "checking for X11 rgb file... $ECHO_C" >&6
18021
18022 # Check whether --with-x11-rgb or --without-x11-rgb was given.
18023@@ -13029,7 +13132,7 @@
18024 	cf_path=`echo $cf_path | sed -e s%NONE%$cf_path_syntax%`
18025 	;;
18026 (*)
18027-	{ { echo "$as_me:13032: error: expected a pathname, not \"$cf_path\"" >&5
18028+	{ { echo "$as_me:13135: error: expected a pathname, not \"$cf_path\"" >&5
18029 echo "$as_me: error: expected a pathname, not \"$cf_path\"" >&2;}
18030    { (exit 1); exit 1; }; }
18031 	;;
18032@@ -13037,7 +13140,7 @@
18033
18034 fi
18035
18036-echo "$as_me:13040: result: $RGB_PATH" >&5
18037+echo "$as_me:13143: result: $RGB_PATH" >&5
18038 echo "${ECHO_T}$RGB_PATH" >&6
18039
18040 cat >>confdefs.h <<EOF
18041@@ -13051,7 +13154,7 @@
18042 fi
18043
18044 ###   use option --with-bool to override bool's type
18045-echo "$as_me:13054: checking for type of bool" >&5
18046+echo "$as_me:13157: checking for type of bool" >&5
18047 echo $ECHO_N "checking for type of bool... $ECHO_C" >&6
18048
18049 # Check whether --with-bool or --without-bool was given.
18050@@ -13061,10 +13164,10 @@
18051 else
18052   NCURSES_BOOL=auto
18053 fi;
18054-echo "$as_me:13064: result: $NCURSES_BOOL" >&5
18055+echo "$as_me:13167: result: $NCURSES_BOOL" >&5
18056 echo "${ECHO_T}$NCURSES_BOOL" >&6
18057
18058-echo "$as_me:13067: checking for alternate terminal capabilities file" >&5
18059+echo "$as_me:13170: checking for alternate terminal capabilities file" >&5
18060 echo $ECHO_N "checking for alternate terminal capabilities file... $ECHO_C" >&6
18061
18062 # Check whether --with-caps or --without-caps was given.
18063@@ -13075,11 +13178,11 @@
18064   TERMINFO_CAPS=Caps
18065 fi;
18066 test -f "${srcdir}/include/${TERMINFO_CAPS}" || TERMINFO_CAPS=Caps
18067-echo "$as_me:13078: result: $TERMINFO_CAPS" >&5
18068+echo "$as_me:13181: result: $TERMINFO_CAPS" >&5
18069 echo "${ECHO_T}$TERMINFO_CAPS" >&6
18070
18071 ###   use option --with-chtype to override chtype's type
18072-echo "$as_me:13082: checking for type of chtype" >&5
18073+echo "$as_me:13185: checking for type of chtype" >&5
18074 echo $ECHO_N "checking for type of chtype... $ECHO_C" >&6
18075
18076 # Check whether --with-chtype or --without-chtype was given.
18077@@ -13089,11 +13192,11 @@
18078 else
18079   NCURSES_CHTYPE=$cf_dft_chtype
18080 fi;
18081-echo "$as_me:13092: result: $NCURSES_CHTYPE" >&5
18082+echo "$as_me:13195: result: $NCURSES_CHTYPE" >&5
18083 echo "${ECHO_T}$NCURSES_CHTYPE" >&6
18084
18085 ###   use option --with-ospeed to override ospeed's type
18086-echo "$as_me:13096: checking for type of ospeed" >&5
18087+echo "$as_me:13199: checking for type of ospeed" >&5
18088 echo $ECHO_N "checking for type of ospeed... $ECHO_C" >&6
18089
18090 # Check whether --with-ospeed or --without-ospeed was given.
18091@@ -13103,11 +13206,11 @@
18092 else
18093   NCURSES_OSPEED=short
18094 fi;
18095-echo "$as_me:13106: result: $NCURSES_OSPEED" >&5
18096+echo "$as_me:13209: result: $NCURSES_OSPEED" >&5
18097 echo "${ECHO_T}$NCURSES_OSPEED" >&6
18098
18099 ###   use option --with-mmask-t to override mmask_t's type
18100-echo "$as_me:13110: checking for type of mmask_t" >&5
18101+echo "$as_me:13213: checking for type of mmask_t" >&5
18102 echo $ECHO_N "checking for type of mmask_t... $ECHO_C" >&6
18103
18104 # Check whether --with-mmask-t or --without-mmask-t was given.
18105@@ -13117,11 +13220,11 @@
18106 else
18107   NCURSES_MMASK_T=$cf_dft_mmask_t
18108 fi;
18109-echo "$as_me:13120: result: $NCURSES_MMASK_T" >&5
18110+echo "$as_me:13223: result: $NCURSES_MMASK_T" >&5
18111 echo "${ECHO_T}$NCURSES_MMASK_T" >&6
18112
18113 ###   use option --with-ccharw-max to override CCHARW_MAX size
18114-echo "$as_me:13124: checking for size CCHARW_MAX" >&5
18115+echo "$as_me:13227: checking for size CCHARW_MAX" >&5
18116 echo $ECHO_N "checking for size CCHARW_MAX... $ECHO_C" >&6
18117
18118 # Check whether --with-ccharw-max or --without-ccharw-max was given.
18119@@ -13131,16 +13234,16 @@
18120 else
18121   NCURSES_CCHARW_MAX=5
18122 fi;
18123-echo "$as_me:13134: result: $NCURSES_CCHARW_MAX" >&5
18124+echo "$as_me:13237: result: $NCURSES_CCHARW_MAX" >&5
18125 echo "${ECHO_T}$NCURSES_CCHARW_MAX" >&6
18126
18127-echo "$as_me:13137: checking for ANSI C header files" >&5
18128+echo "$as_me:13240: checking for ANSI C header files" >&5
18129 echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6
18130 if test "${ac_cv_header_stdc+set}" = set; then
18131   echo $ECHO_N "(cached) $ECHO_C" >&6
18132 else
18133   cat >conftest.$ac_ext <<_ACEOF
18134-#line 13143 "configure"
18135+#line 13246 "configure"
18136 #include "confdefs.h"
18137 #include <stdlib.h>
18138 #include <stdarg.h>
18139@@ -13148,13 +13251,13 @@
18140 #include <float.h>
18141
18142 _ACEOF
18143-if { (eval echo "$as_me:13151: \"$ac_cpp conftest.$ac_ext\"") >&5
18144+if { (eval echo "$as_me:13254: \"$ac_cpp conftest.$ac_ext\"") >&5
18145   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
18146   ac_status=$?
18147   egrep -v '^ *\+' conftest.er1 >conftest.err
18148   rm -f conftest.er1
18149   cat conftest.err >&5
18150-  echo "$as_me:13157: \$? = $ac_status" >&5
18151+  echo "$as_me:13260: \$? = $ac_status" >&5
18152   (exit $ac_status); } >/dev/null; then
18153   if test -s conftest.err; then
18154     ac_cpp_err=$ac_c_preproc_warn_flag
18155@@ -13176,7 +13279,7 @@
18156 if test $ac_cv_header_stdc = yes; then
18157   # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
18158   cat >conftest.$ac_ext <<_ACEOF
18159-#line 13179 "configure"
18160+#line 13282 "configure"
18161 #include "confdefs.h"
18162 #include <string.h>
18163
18164@@ -13194,7 +13297,7 @@
18165 if test $ac_cv_header_stdc = yes; then
18166   # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
18167   cat >conftest.$ac_ext <<_ACEOF
18168-#line 13197 "configure"
18169+#line 13300 "configure"
18170 #include "confdefs.h"
18171 #include <stdlib.h>
18172
18173@@ -13215,7 +13318,7 @@
18174   :
18175 else
18176   cat >conftest.$ac_ext <<_ACEOF
18177-#line 13218 "configure"
18178+#line 13321 "configure"
18179 #include "confdefs.h"
18180 #include <ctype.h>
18181 #if ((' ' & 0x0FF) == 0x020)
18182@@ -13241,15 +13344,15 @@
18183 }
18184 _ACEOF
18185 rm -f conftest$ac_exeext
18186-if { (eval echo "$as_me:13244: \"$ac_link\"") >&5
18187+if { (eval echo "$as_me:13347: \"$ac_link\"") >&5
18188   (eval $ac_link) 2>&5
18189   ac_status=$?
18190-  echo "$as_me:13247: \$? = $ac_status" >&5
18191+  echo "$as_me:13350: \$? = $ac_status" >&5
18192   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
18193-  { (eval echo "$as_me:13249: \"$ac_try\"") >&5
18194+  { (eval echo "$as_me:13352: \"$ac_try\"") >&5
18195   (eval $ac_try) 2>&5
18196   ac_status=$?
18197-  echo "$as_me:13252: \$? = $ac_status" >&5
18198+  echo "$as_me:13355: \$? = $ac_status" >&5
18199   (exit $ac_status); }; }; then
18200   :
18201 else
18202@@ -13262,7 +13365,7 @@
18203 fi
18204 fi
18205 fi
18206-echo "$as_me:13265: result: $ac_cv_header_stdc" >&5
18207+echo "$as_me:13368: result: $ac_cv_header_stdc" >&5
18208 echo "${ECHO_T}$ac_cv_header_stdc" >&6
18209 if test $ac_cv_header_stdc = yes; then
18210
18211@@ -13278,28 +13381,28 @@
18212                   inttypes.h stdint.h unistd.h
18213 do
18214 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
18215-echo "$as_me:13281: checking for $ac_header" >&5
18216+echo "$as_me:13384: checking for $ac_header" >&5
18217 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
18218 if eval "test \"\${$as_ac_Header+set}\" = set"; then
18219   echo $ECHO_N "(cached) $ECHO_C" >&6
18220 else
18221   cat >conftest.$ac_ext <<_ACEOF
18222-#line 13287 "configure"
18223+#line 13390 "configure"
18224 #include "confdefs.h"
18225 $ac_includes_default
18226 #include <$ac_header>
18227 _ACEOF
18228 rm -f conftest.$ac_objext
18229-if { (eval echo "$as_me:13293: \"$ac_compile\"") >&5
18230+if { (eval echo "$as_me:13396: \"$ac_compile\"") >&5
18231   (eval $ac_compile) 2>&5
18232   ac_status=$?
18233-  echo "$as_me:13296: \$? = $ac_status" >&5
18234+  echo "$as_me:13399: \$? = $ac_status" >&5
18235   (exit $ac_status); } &&
18236          { ac_try='test -s conftest.$ac_objext'
18237-  { (eval echo "$as_me:13299: \"$ac_try\"") >&5
18238+  { (eval echo "$as_me:13402: \"$ac_try\"") >&5
18239   (eval $ac_try) 2>&5
18240   ac_status=$?
18241-  echo "$as_me:13302: \$? = $ac_status" >&5
18242+  echo "$as_me:13405: \$? = $ac_status" >&5
18243   (exit $ac_status); }; }; then
18244   eval "$as_ac_Header=yes"
18245 else
18246@@ -13309,7 +13412,7 @@
18247 fi
18248 rm -f conftest.$ac_objext conftest.$ac_ext
18249 fi
18250-echo "$as_me:13312: result: `eval echo '${'$as_ac_Header'}'`" >&5
18251+echo "$as_me:13415: result: `eval echo '${'$as_ac_Header'}'`" >&5
18252 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
18253 if test `eval echo '${'$as_ac_Header'}'` = yes; then
18254   cat >>confdefs.h <<EOF
18255@@ -13319,13 +13422,13 @@
18256 fi
18257 done
18258
18259-echo "$as_me:13322: checking for signed char" >&5
18260+echo "$as_me:13425: checking for signed char" >&5
18261 echo $ECHO_N "checking for signed char... $ECHO_C" >&6
18262 if test "${ac_cv_type_signed_char+set}" = set; then
18263   echo $ECHO_N "(cached) $ECHO_C" >&6
18264 else
18265   cat >conftest.$ac_ext <<_ACEOF
18266-#line 13328 "configure"
18267+#line 13431 "configure"
18268 #include "confdefs.h"
18269 $ac_includes_default
18270 int
18271@@ -13340,16 +13443,16 @@
18272 }
18273 _ACEOF
18274 rm -f conftest.$ac_objext
18275-if { (eval echo "$as_me:13343: \"$ac_compile\"") >&5
18276+if { (eval echo "$as_me:13446: \"$ac_compile\"") >&5
18277   (eval $ac_compile) 2>&5
18278   ac_status=$?
18279-  echo "$as_me:13346: \$? = $ac_status" >&5
18280+  echo "$as_me:13449: \$? = $ac_status" >&5
18281   (exit $ac_status); } &&
18282          { ac_try='test -s conftest.$ac_objext'
18283-  { (eval echo "$as_me:13349: \"$ac_try\"") >&5
18284+  { (eval echo "$as_me:13452: \"$ac_try\"") >&5
18285   (eval $ac_try) 2>&5
18286   ac_status=$?
18287-  echo "$as_me:13352: \$? = $ac_status" >&5
18288+  echo "$as_me:13455: \$? = $ac_status" >&5
18289   (exit $ac_status); }; }; then
18290   ac_cv_type_signed_char=yes
18291 else
18292@@ -13359,10 +13462,10 @@
18293 fi
18294 rm -f conftest.$ac_objext conftest.$ac_ext
18295 fi
18296-echo "$as_me:13362: result: $ac_cv_type_signed_char" >&5
18297+echo "$as_me:13465: result: $ac_cv_type_signed_char" >&5
18298 echo "${ECHO_T}$ac_cv_type_signed_char" >&6
18299
18300-echo "$as_me:13365: checking size of signed char" >&5
18301+echo "$as_me:13468: checking size of signed char" >&5
18302 echo $ECHO_N "checking size of signed char... $ECHO_C" >&6
18303 if test "${ac_cv_sizeof_signed_char+set}" = set; then
18304   echo $ECHO_N "(cached) $ECHO_C" >&6
18305@@ -13371,7 +13474,7 @@
18306   if test "$cross_compiling" = yes; then
18307   # Depending upon the size, compute the lo and hi bounds.
18308 cat >conftest.$ac_ext <<_ACEOF
18309-#line 13374 "configure"
18310+#line 13477 "configure"
18311 #include "confdefs.h"
18312 $ac_includes_default
18313 int
18314@@ -13383,21 +13486,21 @@
18315 }
18316 _ACEOF
18317 rm -f conftest.$ac_objext
18318-if { (eval echo "$as_me:13386: \"$ac_compile\"") >&5
18319+if { (eval echo "$as_me:13489: \"$ac_compile\"") >&5
18320   (eval $ac_compile) 2>&5
18321   ac_status=$?
18322-  echo "$as_me:13389: \$? = $ac_status" >&5
18323+  echo "$as_me:13492: \$? = $ac_status" >&5
18324   (exit $ac_status); } &&
18325          { ac_try='test -s conftest.$ac_objext'
18326-  { (eval echo "$as_me:13392: \"$ac_try\"") >&5
18327+  { (eval echo "$as_me:13495: \"$ac_try\"") >&5
18328   (eval $ac_try) 2>&5
18329   ac_status=$?
18330-  echo "$as_me:13395: \$? = $ac_status" >&5
18331+  echo "$as_me:13498: \$? = $ac_status" >&5
18332   (exit $ac_status); }; }; then
18333   ac_lo=0 ac_mid=0
18334   while :; do
18335     cat >conftest.$ac_ext <<_ACEOF
18336-#line 13400 "configure"
18337+#line 13503 "configure"
18338 #include "confdefs.h"
18339 $ac_includes_default
18340 int
18341@@ -13409,16 +13512,16 @@
18342 }
18343 _ACEOF
18344 rm -f conftest.$ac_objext
18345-if { (eval echo "$as_me:13412: \"$ac_compile\"") >&5
18346+if { (eval echo "$as_me:13515: \"$ac_compile\"") >&5
18347   (eval $ac_compile) 2>&5
18348   ac_status=$?
18349-  echo "$as_me:13415: \$? = $ac_status" >&5
18350+  echo "$as_me:13518: \$? = $ac_status" >&5
18351   (exit $ac_status); } &&
18352          { ac_try='test -s conftest.$ac_objext'
18353-  { (eval echo "$as_me:13418: \"$ac_try\"") >&5
18354+  { (eval echo "$as_me:13521: \"$ac_try\"") >&5
18355   (eval $ac_try) 2>&5
18356   ac_status=$?
18357-  echo "$as_me:13421: \$? = $ac_status" >&5
18358+  echo "$as_me:13524: \$? = $ac_status" >&5
18359   (exit $ac_status); }; }; then
18360   ac_hi=$ac_mid; break
18361 else
18362@@ -13434,7 +13537,7 @@
18363 ac_hi=-1 ac_mid=-1
18364   while :; do
18365     cat >conftest.$ac_ext <<_ACEOF
18366-#line 13437 "configure"
18367+#line 13540 "configure"
18368 #include "confdefs.h"
18369 $ac_includes_default
18370 int
18371@@ -13446,16 +13549,16 @@
18372 }
18373 _ACEOF
18374 rm -f conftest.$ac_objext
18375-if { (eval echo "$as_me:13449: \"$ac_compile\"") >&5
18376+if { (eval echo "$as_me:13552: \"$ac_compile\"") >&5
18377   (eval $ac_compile) 2>&5
18378   ac_status=$?
18379-  echo "$as_me:13452: \$? = $ac_status" >&5
18380+  echo "$as_me:13555: \$? = $ac_status" >&5
18381   (exit $ac_status); } &&
18382          { ac_try='test -s conftest.$ac_objext'
18383-  { (eval echo "$as_me:13455: \"$ac_try\"") >&5
18384+  { (eval echo "$as_me:13558: \"$ac_try\"") >&5
18385   (eval $ac_try) 2>&5
18386   ac_status=$?
18387-  echo "$as_me:13458: \$? = $ac_status" >&5
18388+  echo "$as_me:13561: \$? = $ac_status" >&5
18389   (exit $ac_status); }; }; then
18390   ac_lo=$ac_mid; break
18391 else
18392@@ -13471,7 +13574,7 @@
18393 while test "x$ac_lo" != "x$ac_hi"; do
18394   ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo`
18395   cat >conftest.$ac_ext <<_ACEOF
18396-#line 13474 "configure"
18397+#line 13577 "configure"
18398 #include "confdefs.h"
18399 $ac_includes_default
18400 int
18401@@ -13483,16 +13586,16 @@
18402 }
18403 _ACEOF
18404 rm -f conftest.$ac_objext
18405-if { (eval echo "$as_me:13486: \"$ac_compile\"") >&5
18406+if { (eval echo "$as_me:13589: \"$ac_compile\"") >&5
18407   (eval $ac_compile) 2>&5
18408   ac_status=$?
18409-  echo "$as_me:13489: \$? = $ac_status" >&5
18410+  echo "$as_me:13592: \$? = $ac_status" >&5
18411   (exit $ac_status); } &&
18412          { ac_try='test -s conftest.$ac_objext'
18413-  { (eval echo "$as_me:13492: \"$ac_try\"") >&5
18414+  { (eval echo "$as_me:13595: \"$ac_try\"") >&5
18415   (eval $ac_try) 2>&5
18416   ac_status=$?
18417-  echo "$as_me:13495: \$? = $ac_status" >&5
18418+  echo "$as_me:13598: \$? = $ac_status" >&5
18419   (exit $ac_status); }; }; then
18420   ac_hi=$ac_mid
18421 else
18422@@ -13505,12 +13608,12 @@
18423 ac_cv_sizeof_signed_char=$ac_lo
18424 else
18425   if test "$cross_compiling" = yes; then
18426-  { { echo "$as_me:13508: error: cannot run test program while cross compiling" >&5
18427+  { { echo "$as_me:13611: error: cannot run test program while cross compiling" >&5
18428 echo "$as_me: error: cannot run test program while cross compiling" >&2;}
18429    { (exit 1); exit 1; }; }
18430 else
18431   cat >conftest.$ac_ext <<_ACEOF
18432-#line 13513 "configure"
18433+#line 13616 "configure"
18434 #include "confdefs.h"
18435 $ac_includes_default
18436 int
18437@@ -13526,15 +13629,15 @@
18438 }
18439 _ACEOF
18440 rm -f conftest$ac_exeext
18441-if { (eval echo "$as_me:13529: \"$ac_link\"") >&5
18442+if { (eval echo "$as_me:13632: \"$ac_link\"") >&5
18443   (eval $ac_link) 2>&5
18444   ac_status=$?
18445-  echo "$as_me:13532: \$? = $ac_status" >&5
18446+  echo "$as_me:13635: \$? = $ac_status" >&5
18447   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
18448-  { (eval echo "$as_me:13534: \"$ac_try\"") >&5
18449+  { (eval echo "$as_me:13637: \"$ac_try\"") >&5
18450   (eval $ac_try) 2>&5
18451   ac_status=$?
18452-  echo "$as_me:13537: \$? = $ac_status" >&5
18453+  echo "$as_me:13640: \$? = $ac_status" >&5
18454   (exit $ac_status); }; }; then
18455   ac_cv_sizeof_signed_char=`cat conftest.val`
18456 else
18457@@ -13550,7 +13653,7 @@
18458   ac_cv_sizeof_signed_char=0
18459 fi
18460 fi
18461-echo "$as_me:13553: result: $ac_cv_sizeof_signed_char" >&5
18462+echo "$as_me:13656: result: $ac_cv_sizeof_signed_char" >&5
18463 echo "${ECHO_T}$ac_cv_sizeof_signed_char" >&6
18464 cat >>confdefs.h <<EOF
18465 #define SIZEOF_SIGNED_CHAR $ac_cv_sizeof_signed_char
18466@@ -13561,7 +13664,7 @@
18467 else
18468 	NCURSES_SBOOL="char"
18469 fi
18470-echo "$as_me:13564: checking if you want to use signed Boolean array in term.h" >&5
18471+echo "$as_me:13667: checking if you want to use signed Boolean array in term.h" >&5
18472 echo $ECHO_N "checking if you want to use signed Boolean array in term.h... $ECHO_C" >&6
18473
18474 # Check whether --enable-signed-char or --disable-signed-char was given.
18475@@ -13571,12 +13674,12 @@
18476 else
18477   with_signed_char=no
18478 fi;
18479-echo "$as_me:13574: result: $with_signed_char" >&5
18480+echo "$as_me:13677: result: $with_signed_char" >&5
18481 echo "${ECHO_T}$with_signed_char" >&6
18482 test "x$with_signed_char" != xyes && NCURSES_SBOOL="char"
18483
18484 ###   use option --with-tparm-arg to override tparm's argument type
18485-echo "$as_me:13579: checking for type of tparm args" >&5
18486+echo "$as_me:13682: checking for type of tparm args" >&5
18487 echo $ECHO_N "checking for type of tparm args... $ECHO_C" >&6
18488
18489 # Check whether --with-tparm-arg or --without-tparm-arg was given.
18490@@ -13586,11 +13689,11 @@
18491 else
18492   NCURSES_TPARM_ARG=$cf_dft_tparm_arg
18493 fi;
18494-echo "$as_me:13589: result: $NCURSES_TPARM_ARG" >&5
18495+echo "$as_me:13692: result: $NCURSES_TPARM_ARG" >&5
18496 echo "${ECHO_T}$NCURSES_TPARM_ARG" >&6
18497
18498 ### Enable compiling-in rcs id's
18499-echo "$as_me:13593: checking if RCS identifiers should be compiled-in" >&5
18500+echo "$as_me:13696: checking if RCS identifiers should be compiled-in" >&5
18501 echo $ECHO_N "checking if RCS identifiers should be compiled-in... $ECHO_C" >&6
18502
18503 # Check whether --with-rcs-ids or --without-rcs-ids was given.
18504@@ -13600,7 +13703,7 @@
18505 else
18506   with_rcs_ids=no
18507 fi;
18508-echo "$as_me:13603: result: $with_rcs_ids" >&5
18509+echo "$as_me:13706: result: $with_rcs_ids" >&5
18510 echo "${ECHO_T}$with_rcs_ids" >&6
18511 test "x$with_rcs_ids" = xyes &&
18512 cat >>confdefs.h <<\EOF
18513@@ -13609,7 +13712,7 @@
18514
18515 ###############################################################################
18516
18517-echo "$as_me:13612: checking format of man-pages" >&5
18518+echo "$as_me:13715: checking format of man-pages" >&5
18519 echo $ECHO_N "checking format of man-pages... $ECHO_C" >&6
18520
18521 # Check whether --with-manpage-format or --without-manpage-format was given.
18522@@ -13698,14 +13801,14 @@
18523 	;;
18524 esac
18525
18526-echo "$as_me:13701: result: $MANPAGE_FORMAT" >&5
18527+echo "$as_me:13804: result: $MANPAGE_FORMAT" >&5
18528 echo "${ECHO_T}$MANPAGE_FORMAT" >&6
18529 if test -n "$cf_unknown" ; then
18530-	{ echo "$as_me:13704: WARNING: Unexpected manpage-format $cf_unknown" >&5
18531+	{ echo "$as_me:13807: WARNING: Unexpected manpage-format $cf_unknown" >&5
18532 echo "$as_me: WARNING: Unexpected manpage-format $cf_unknown" >&2;}
18533 fi
18534
18535-echo "$as_me:13708: checking for manpage renaming" >&5
18536+echo "$as_me:13811: checking for manpage renaming" >&5
18537 echo $ECHO_N "checking for manpage renaming... $ECHO_C" >&6
18538
18539 # Check whether --with-manpage-renames or --without-manpage-renames was given.
18540@@ -13733,7 +13836,7 @@
18541 	if test -f $srcdir/man/$MANPAGE_RENAMES ; then
18542 		MANPAGE_RENAMES=`cd $srcdir/man && pwd`/$MANPAGE_RENAMES
18543 	elif test ! -f $MANPAGE_RENAMES ; then
18544-		{ { echo "$as_me:13736: error: not a filename: $MANPAGE_RENAMES" >&5
18545+		{ { echo "$as_me:13839: error: not a filename: $MANPAGE_RENAMES" >&5
18546 echo "$as_me: error: not a filename: $MANPAGE_RENAMES" >&2;}
18547    { (exit 1); exit 1; }; }
18548 	fi
18549@@ -13747,10 +13850,10 @@
18550 	fi
18551 fi
18552
18553-echo "$as_me:13750: result: $MANPAGE_RENAMES" >&5
18554+echo "$as_me:13853: result: $MANPAGE_RENAMES" >&5
18555 echo "${ECHO_T}$MANPAGE_RENAMES" >&6
18556
18557-echo "$as_me:13753: checking if manpage aliases will be installed" >&5
18558+echo "$as_me:13856: checking if manpage aliases will be installed" >&5
18559 echo $ECHO_N "checking if manpage aliases will be installed... $ECHO_C" >&6
18560
18561 # Check whether --with-manpage-aliases or --without-manpage-aliases was given.
18562@@ -13761,7 +13864,7 @@
18563   MANPAGE_ALIASES=yes
18564 fi;
18565
18566-echo "$as_me:13764: result: $MANPAGE_ALIASES" >&5
18567+echo "$as_me:13867: result: $MANPAGE_ALIASES" >&5
18568 echo "${ECHO_T}$MANPAGE_ALIASES" >&6
18569
18570 case "x$LN_S" in
18571@@ -13775,7 +13878,7 @@
18572
18573 MANPAGE_SYMLINKS=no
18574 if test "$MANPAGE_ALIASES" = yes ; then
18575-echo "$as_me:13778: checking if manpage symlinks should be used" >&5
18576+echo "$as_me:13881: checking if manpage symlinks should be used" >&5
18577 echo $ECHO_N "checking if manpage symlinks should be used... $ECHO_C" >&6
18578
18579 # Check whether --with-manpage-symlinks or --without-manpage-symlinks was given.
18580@@ -13788,17 +13891,17 @@
18581
18582 if test "$$cf_use_symlinks" = no; then
18583 if test "$MANPAGE_SYMLINKS" = yes ; then
18584-	{ echo "$as_me:13791: WARNING: cannot make symlinks" >&5
18585+	{ echo "$as_me:13894: WARNING: cannot make symlinks" >&5
18586 echo "$as_me: WARNING: cannot make symlinks" >&2;}
18587 	MANPAGE_SYMLINKS=no
18588 fi
18589 fi
18590
18591-echo "$as_me:13797: result: $MANPAGE_SYMLINKS" >&5
18592+echo "$as_me:13900: result: $MANPAGE_SYMLINKS" >&5
18593 echo "${ECHO_T}$MANPAGE_SYMLINKS" >&6
18594 fi
18595
18596-echo "$as_me:13801: checking for manpage tbl" >&5
18597+echo "$as_me:13904: checking for manpage tbl" >&5
18598 echo $ECHO_N "checking for manpage tbl... $ECHO_C" >&6
18599
18600 # Check whether --with-manpage-tbl or --without-manpage-tbl was given.
18601@@ -13809,7 +13912,7 @@
18602   MANPAGE_TBL=no
18603 fi;
18604
18605-echo "$as_me:13812: result: $MANPAGE_TBL" >&5
18606+echo "$as_me:13915: result: $MANPAGE_TBL" >&5
18607 echo "${ECHO_T}$MANPAGE_TBL" >&6
18608
18609 if test "$prefix" = "NONE" ; then
18610@@ -14142,7 +14245,7 @@
18611 ###############################################################################
18612
18613 ### Note that some functions (such as const) are normally disabled anyway.
18614-echo "$as_me:14145: checking if you want to build with function extensions" >&5
18615+echo "$as_me:14248: checking if you want to build with function extensions" >&5
18616 echo $ECHO_N "checking if you want to build with function extensions... $ECHO_C" >&6
18617
18618 # Check whether --enable-ext-funcs or --disable-ext-funcs was given.
18619@@ -14152,7 +14255,7 @@
18620 else
18621   with_ext_funcs=yes
18622 fi;
18623-echo "$as_me:14155: result: $with_ext_funcs" >&5
18624+echo "$as_me:14258: result: $with_ext_funcs" >&5
18625 echo "${ECHO_T}$with_ext_funcs" >&6
18626 if test "x$with_ext_funcs" = xyes ; then
18627 	NCURSES_EXT_FUNCS=1
18628@@ -14212,7 +14315,7 @@
18629 	GENERATED_EXT_FUNCS=
18630 fi
18631
18632-echo "$as_me:14215: checking if you want to build with SCREEN extensions" >&5
18633+echo "$as_me:14318: checking if you want to build with SCREEN extensions" >&5
18634 echo $ECHO_N "checking if you want to build with SCREEN extensions... $ECHO_C" >&6
18635
18636 # Check whether --enable-sp-funcs or --disable-sp-funcs was given.
18637@@ -14222,7 +14325,7 @@
18638 else
18639   with_sp_funcs=$cf_dft_ext_spfuncs
18640 fi;
18641-echo "$as_me:14225: result: $with_sp_funcs" >&5
18642+echo "$as_me:14328: result: $with_sp_funcs" >&5
18643 echo "${ECHO_T}$with_sp_funcs" >&6
18644 if test "x$with_sp_funcs" = xyes ; then
18645 	NCURSES_SP_FUNCS=1
18646@@ -14241,7 +14344,7 @@
18647 	GENERATED_SP_FUNCS=
18648 fi
18649
18650-echo "$as_me:14244: checking if you want to build with terminal-driver" >&5
18651+echo "$as_me:14347: checking if you want to build with terminal-driver" >&5
18652 echo $ECHO_N "checking if you want to build with terminal-driver... $ECHO_C" >&6
18653
18654 # Check whether --enable-term-driver or --disable-term-driver was given.
18655@@ -14251,7 +14354,7 @@
18656 else
18657   with_term_driver=no
18658 fi;
18659-echo "$as_me:14254: result: $with_term_driver" >&5
18660+echo "$as_me:14357: result: $with_term_driver" >&5
18661 echo "${ECHO_T}$with_term_driver" >&6
18662 if test "x$with_term_driver" = xyes ; then
18663
18664@@ -14260,19 +14363,19 @@
18665 EOF
18666
18667 	if test "x$with_termlib" != xno ; then
18668-		{ { echo "$as_me:14263: error: The term-driver option conflicts with the termlib option" >&5
18669+		{ { echo "$as_me:14366: error: The term-driver option conflicts with the termlib option" >&5
18670 echo "$as_me: error: The term-driver option conflicts with the termlib option" >&2;}
18671    { (exit 1); exit 1; }; }
18672 	fi
18673 	if test "x$with_sp_funcs" != xyes ; then
18674-		{ { echo "$as_me:14268: error: The term-driver option relies upon sp-funcs" >&5
18675+		{ { echo "$as_me:14371: error: The term-driver option relies upon sp-funcs" >&5
18676 echo "$as_me: error: The term-driver option relies upon sp-funcs" >&2;}
18677    { (exit 1); exit 1; }; }
18678 	fi
18679 fi
18680
18681 ###   use option --enable-const to turn on use of const beyond that in XSI.
18682-echo "$as_me:14275: checking for extended use of const keyword" >&5
18683+echo "$as_me:14378: checking for extended use of const keyword" >&5
18684 echo $ECHO_N "checking for extended use of const keyword... $ECHO_C" >&6
18685
18686 # Check whether --enable-const or --disable-const was given.
18687@@ -14282,7 +14385,7 @@
18688 else
18689   with_ext_const=$cf_dft_ext_const
18690 fi;
18691-echo "$as_me:14285: result: $with_ext_const" >&5
18692+echo "$as_me:14388: result: $with_ext_const" >&5
18693 echo "${ECHO_T}$with_ext_const" >&6
18694 NCURSES_CONST='/*nothing*/'
18695 if test "x$with_ext_const" = xyes ; then
18696@@ -14290,7 +14393,7 @@
18697 fi
18698
18699 ###   use option --enable-ext-colors to turn on use of colors beyond 16.
18700-echo "$as_me:14293: checking if you want to use extended colors" >&5
18701+echo "$as_me:14396: checking if you want to use extended colors" >&5
18702 echo $ECHO_N "checking if you want to use extended colors... $ECHO_C" >&6
18703
18704 # Check whether --enable-ext-colors or --disable-ext-colors was given.
18705@@ -14300,12 +14403,12 @@
18706 else
18707   with_ext_colors=$cf_dft_ext_colors
18708 fi;
18709-echo "$as_me:14303: result: $with_ext_colors" >&5
18710+echo "$as_me:14406: result: $with_ext_colors" >&5
18711 echo "${ECHO_T}$with_ext_colors" >&6
18712 NCURSES_EXT_COLORS=0
18713 if test "x$with_ext_colors" = xyes ; then
18714 	if test "x$with_widec" != xyes ; then
18715-		{ echo "$as_me:14308: WARNING: This option applies only to wide-character library" >&5
18716+		{ echo "$as_me:14411: WARNING: This option applies only to wide-character library" >&5
18717 echo "$as_me: WARNING: This option applies only to wide-character library" >&2;}
18718 	else
18719 		# cannot be ABI 5 since it changes sizeof(cchar_t)
18720@@ -14315,7 +14418,7 @@
18721 	(5.*)
18722 		cf_cv_rel_version=6.0
18723 		cf_cv_abi_version=6
18724-		{ echo "$as_me:14318: WARNING: overriding ABI version to $cf_cv_abi_version" >&5
18725+		{ echo "$as_me:14421: WARNING: overriding ABI version to $cf_cv_abi_version" >&5
18726 echo "$as_me: WARNING: overriding ABI version to $cf_cv_abi_version" >&2;}
18727 		;;
18728 	esac
18729@@ -14343,7 +14446,7 @@
18730 fi
18731
18732 ###   use option --enable-ext-mouse to modify coding to support 5-button mice
18733-echo "$as_me:14346: checking if you want to use extended mouse encoding" >&5
18734+echo "$as_me:14449: checking if you want to use extended mouse encoding" >&5
18735 echo $ECHO_N "checking if you want to use extended mouse encoding... $ECHO_C" >&6
18736
18737 # Check whether --enable-ext-mouse or --disable-ext-mouse was given.
18738@@ -14353,7 +14456,7 @@
18739 else
18740   with_ext_mouse=$cf_dft_ext_mouse
18741 fi;
18742-echo "$as_me:14356: result: $with_ext_mouse" >&5
18743+echo "$as_me:14459: result: $with_ext_mouse" >&5
18744 echo "${ECHO_T}$with_ext_mouse" >&6
18745 NCURSES_MOUSE_VERSION=1
18746 if test "x$with_ext_mouse" = xyes ; then
18747@@ -14364,7 +14467,7 @@
18748 	(5.*)
18749 		cf_cv_rel_version=6.0
18750 		cf_cv_abi_version=6
18751-		{ echo "$as_me:14367: WARNING: overriding ABI version to $cf_cv_abi_version" >&5
18752+		{ echo "$as_me:14470: WARNING: overriding ABI version to $cf_cv_abi_version" >&5
18753 echo "$as_me: WARNING: overriding ABI version to $cf_cv_abi_version" >&2;}
18754 		;;
18755 	esac
18756@@ -14373,7 +14476,7 @@
18757 fi
18758
18759 ###   use option --enable-ext-putwin to turn on extended screendumps
18760-echo "$as_me:14376: checking if you want to use extended putwin/screendump" >&5
18761+echo "$as_me:14479: checking if you want to use extended putwin/screendump" >&5
18762 echo $ECHO_N "checking if you want to use extended putwin/screendump... $ECHO_C" >&6
18763
18764 # Check whether --enable-ext-putwin or --disable-ext-putwin was given.
18765@@ -14383,7 +14486,7 @@
18766 else
18767   with_ext_putwin=$cf_dft_ext_putwin
18768 fi;
18769-echo "$as_me:14386: result: $with_ext_putwin" >&5
18770+echo "$as_me:14489: result: $with_ext_putwin" >&5
18771 echo "${ECHO_T}$with_ext_putwin" >&6
18772 if test "x$with_ext_putwin" = xyes ; then
18773
18774@@ -14393,7 +14496,7 @@
18775
18776 fi
18777
18778-echo "$as_me:14396: checking if you want \$NCURSES_NO_PADDING code" >&5
18779+echo "$as_me:14499: checking if you want \$NCURSES_NO_PADDING code" >&5
18780 echo $ECHO_N "checking if you want \$NCURSES_NO_PADDING code... $ECHO_C" >&6
18781
18782 # Check whether --enable-no-padding or --disable-no-padding was given.
18783@@ -14403,7 +14506,7 @@
18784 else
18785   with_no_padding=$with_ext_funcs
18786 fi;
18787-echo "$as_me:14406: result: $with_no_padding" >&5
18788+echo "$as_me:14509: result: $with_no_padding" >&5
18789 echo "${ECHO_T}$with_no_padding" >&6
18790 test "x$with_no_padding" = xyes &&
18791 cat >>confdefs.h <<\EOF
18792@@ -14411,7 +14514,7 @@
18793 EOF
18794
18795 ###   use option --enable-sigwinch to turn on use of SIGWINCH logic
18796-echo "$as_me:14414: checking if you want SIGWINCH handler" >&5
18797+echo "$as_me:14517: checking if you want SIGWINCH handler" >&5
18798 echo $ECHO_N "checking if you want SIGWINCH handler... $ECHO_C" >&6
18799
18800 # Check whether --enable-sigwinch or --disable-sigwinch was given.
18801@@ -14421,7 +14524,7 @@
18802 else
18803   with_sigwinch=$with_ext_funcs
18804 fi;
18805-echo "$as_me:14424: result: $with_sigwinch" >&5
18806+echo "$as_me:14527: result: $with_sigwinch" >&5
18807 echo "${ECHO_T}$with_sigwinch" >&6
18808 test "x$with_sigwinch" = xyes &&
18809 cat >>confdefs.h <<\EOF
18810@@ -14429,7 +14532,7 @@
18811 EOF
18812
18813 ###   use option --enable-tcap-names to allow user to define new capabilities
18814-echo "$as_me:14432: checking if you want user-definable terminal capabilities like termcap" >&5
18815+echo "$as_me:14535: checking if you want user-definable terminal capabilities like termcap" >&5
18816 echo $ECHO_N "checking if you want user-definable terminal capabilities like termcap... $ECHO_C" >&6
18817
18818 # Check whether --enable-tcap-names or --disable-tcap-names was given.
18819@@ -14439,14 +14542,14 @@
18820 else
18821   with_tcap_names=$with_ext_funcs
18822 fi;
18823-echo "$as_me:14442: result: $with_tcap_names" >&5
18824+echo "$as_me:14545: result: $with_tcap_names" >&5
18825 echo "${ECHO_T}$with_tcap_names" >&6
18826 NCURSES_XNAMES=0
18827 test "x$with_tcap_names" = xyes && NCURSES_XNAMES=1
18828
18829 ##############################################################################
18830
18831-echo "$as_me:14449: checking if you want to link with the pthread library" >&5
18832+echo "$as_me:14552: checking if you want to link with the pthread library" >&5
18833 echo $ECHO_N "checking if you want to link with the pthread library... $ECHO_C" >&6
18834
18835 # Check whether --with-pthread or --without-pthread was given.
18836@@ -14456,27 +14559,27 @@
18837 else
18838   with_pthread=no
18839 fi;
18840-echo "$as_me:14459: result: $with_pthread" >&5
18841+echo "$as_me:14562: result: $with_pthread" >&5
18842 echo "${ECHO_T}$with_pthread" >&6
18843
18844 if test "$with_pthread" != no ; then
18845-	echo "$as_me:14463: checking for pthread.h" >&5
18846+	echo "$as_me:14566: checking for pthread.h" >&5
18847 echo $ECHO_N "checking for pthread.h... $ECHO_C" >&6
18848 if test "${ac_cv_header_pthread_h+set}" = set; then
18849   echo $ECHO_N "(cached) $ECHO_C" >&6
18850 else
18851   cat >conftest.$ac_ext <<_ACEOF
18852-#line 14469 "configure"
18853+#line 14572 "configure"
18854 #include "confdefs.h"
18855 #include <pthread.h>
18856 _ACEOF
18857-if { (eval echo "$as_me:14473: \"$ac_cpp conftest.$ac_ext\"") >&5
18858+if { (eval echo "$as_me:14576: \"$ac_cpp conftest.$ac_ext\"") >&5
18859   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
18860   ac_status=$?
18861   egrep -v '^ *\+' conftest.er1 >conftest.err
18862   rm -f conftest.er1
18863   cat conftest.err >&5
18864-  echo "$as_me:14479: \$? = $ac_status" >&5
18865+  echo "$as_me:14582: \$? = $ac_status" >&5
18866   (exit $ac_status); } >/dev/null; then
18867   if test -s conftest.err; then
18868     ac_cpp_err=$ac_c_preproc_warn_flag
18869@@ -14495,7 +14598,7 @@
18870 fi
18871 rm -f conftest.err conftest.$ac_ext
18872 fi
18873-echo "$as_me:14498: result: $ac_cv_header_pthread_h" >&5
18874+echo "$as_me:14601: result: $ac_cv_header_pthread_h" >&5
18875 echo "${ECHO_T}$ac_cv_header_pthread_h" >&6
18876 if test $ac_cv_header_pthread_h = yes; then
18877
18878@@ -14505,7 +14608,7 @@
18879
18880 	for cf_lib_pthread in pthread c_r
18881 	do
18882-	    echo "$as_me:14508: checking if we can link with the $cf_lib_pthread library" >&5
18883+	    echo "$as_me:14611: checking if we can link with the $cf_lib_pthread library" >&5
18884 echo $ECHO_N "checking if we can link with the $cf_lib_pthread library... $ECHO_C" >&6
18885 	    cf_save_LIBS="$LIBS"
18886
18887@@ -14526,7 +14629,7 @@
18888 LIBS="$cf_add_libs"
18889
18890 	    cat >conftest.$ac_ext <<_ACEOF
18891-#line 14529 "configure"
18892+#line 14632 "configure"
18893 #include "confdefs.h"
18894
18895 #include <pthread.h>
18896@@ -14543,16 +14646,16 @@
18897 }
18898 _ACEOF
18899 rm -f conftest.$ac_objext conftest$ac_exeext
18900-if { (eval echo "$as_me:14546: \"$ac_link\"") >&5
18901+if { (eval echo "$as_me:14649: \"$ac_link\"") >&5
18902   (eval $ac_link) 2>&5
18903   ac_status=$?
18904-  echo "$as_me:14549: \$? = $ac_status" >&5
18905+  echo "$as_me:14652: \$? = $ac_status" >&5
18906   (exit $ac_status); } &&
18907          { ac_try='test -s conftest$ac_exeext'
18908-  { (eval echo "$as_me:14552: \"$ac_try\"") >&5
18909+  { (eval echo "$as_me:14655: \"$ac_try\"") >&5
18910   (eval $ac_try) 2>&5
18911   ac_status=$?
18912-  echo "$as_me:14555: \$? = $ac_status" >&5
18913+  echo "$as_me:14658: \$? = $ac_status" >&5
18914   (exit $ac_status); }; }; then
18915   with_pthread=yes
18916 else
18917@@ -14562,7 +14665,7 @@
18918 fi
18919 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
18920 	    LIBS="$cf_save_LIBS"
18921-	    echo "$as_me:14565: result: $with_pthread" >&5
18922+	    echo "$as_me:14668: result: $with_pthread" >&5
18923 echo "${ECHO_T}$with_pthread" >&6
18924 	    test "$with_pthread" = yes && break
18925 	done
18926@@ -14590,7 +14693,7 @@
18927 EOF
18928
18929 	else
18930-	    { { echo "$as_me:14593: error: Cannot link with pthread library" >&5
18931+	    { { echo "$as_me:14696: error: Cannot link with pthread library" >&5
18932 echo "$as_me: error: Cannot link with pthread library" >&2;}
18933    { (exit 1); exit 1; }; }
18934 	fi
18935@@ -14600,13 +14703,13 @@
18936 fi
18937
18938 if test "x$with_pthread" != xno; then
18939-	echo "$as_me:14603: checking for pthread_kill" >&5
18940+	echo "$as_me:14706: checking for pthread_kill" >&5
18941 echo $ECHO_N "checking for pthread_kill... $ECHO_C" >&6
18942 if test "${ac_cv_func_pthread_kill+set}" = set; then
18943   echo $ECHO_N "(cached) $ECHO_C" >&6
18944 else
18945   cat >conftest.$ac_ext <<_ACEOF
18946-#line 14609 "configure"
18947+#line 14712 "configure"
18948 #include "confdefs.h"
18949 #define pthread_kill autoconf_temporary
18950 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
18951@@ -14637,16 +14740,16 @@
18952 }
18953 _ACEOF
18954 rm -f conftest.$ac_objext conftest$ac_exeext
18955-if { (eval echo "$as_me:14640: \"$ac_link\"") >&5
18956+if { (eval echo "$as_me:14743: \"$ac_link\"") >&5
18957   (eval $ac_link) 2>&5
18958   ac_status=$?
18959-  echo "$as_me:14643: \$? = $ac_status" >&5
18960+  echo "$as_me:14746: \$? = $ac_status" >&5
18961   (exit $ac_status); } &&
18962          { ac_try='test -s conftest$ac_exeext'
18963-  { (eval echo "$as_me:14646: \"$ac_try\"") >&5
18964+  { (eval echo "$as_me:14749: \"$ac_try\"") >&5
18965   (eval $ac_try) 2>&5
18966   ac_status=$?
18967-  echo "$as_me:14649: \$? = $ac_status" >&5
18968+  echo "$as_me:14752: \$? = $ac_status" >&5
18969   (exit $ac_status); }; }; then
18970   ac_cv_func_pthread_kill=yes
18971 else
18972@@ -14656,11 +14759,11 @@
18973 fi
18974 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
18975 fi
18976-echo "$as_me:14659: result: $ac_cv_func_pthread_kill" >&5
18977+echo "$as_me:14762: result: $ac_cv_func_pthread_kill" >&5
18978 echo "${ECHO_T}$ac_cv_func_pthread_kill" >&6
18979 if test $ac_cv_func_pthread_kill = yes; then
18980
18981-		echo "$as_me:14663: checking if you want to allow EINTR in wgetch with pthreads" >&5
18982+		echo "$as_me:14766: checking if you want to allow EINTR in wgetch with pthreads" >&5
18983 echo $ECHO_N "checking if you want to allow EINTR in wgetch with pthreads... $ECHO_C" >&6
18984
18985 # Check whether --enable-pthreads-eintr or --disable-pthreads-eintr was given.
18986@@ -14670,7 +14773,7 @@
18987 else
18988   use_pthreads_eintr=no
18989 fi;
18990-		echo "$as_me:14673: result: $use_pthreads_eintr" >&5
18991+		echo "$as_me:14776: result: $use_pthreads_eintr" >&5
18992 echo "${ECHO_T}$use_pthreads_eintr" >&6
18993 		if test "x$use_pthreads_eintr" = xyes ; then
18994
18995@@ -14681,7 +14784,7 @@
18996 		fi
18997 fi
18998
18999-	echo "$as_me:14684: checking if you want to use weak-symbols for pthreads" >&5
19000+	echo "$as_me:14787: checking if you want to use weak-symbols for pthreads" >&5
19001 echo $ECHO_N "checking if you want to use weak-symbols for pthreads... $ECHO_C" >&6
19002
19003 # Check whether --enable-weak-symbols or --disable-weak-symbols was given.
19004@@ -14691,18 +14794,18 @@
19005 else
19006   use_weak_symbols=no
19007 fi;
19008-	echo "$as_me:14694: result: $use_weak_symbols" >&5
19009+	echo "$as_me:14797: result: $use_weak_symbols" >&5
19010 echo "${ECHO_T}$use_weak_symbols" >&6
19011 	if test "x$use_weak_symbols" = xyes ; then
19012
19013-echo "$as_me:14698: checking if $CC supports weak symbols" >&5
19014+echo "$as_me:14801: checking if $CC supports weak symbols" >&5
19015 echo $ECHO_N "checking if $CC supports weak symbols... $ECHO_C" >&6
19016 if test "${cf_cv_weak_symbols+set}" = set; then
19017   echo $ECHO_N "(cached) $ECHO_C" >&6
19018 else
19019
19020 cat >conftest.$ac_ext <<_ACEOF
19021-#line 14705 "configure"
19022+#line 14808 "configure"
19023 #include "confdefs.h"
19024
19025 #include <stdio.h>
19026@@ -14728,16 +14831,16 @@
19027 }
19028 _ACEOF
19029 rm -f conftest.$ac_objext
19030-if { (eval echo "$as_me:14731: \"$ac_compile\"") >&5
19031+if { (eval echo "$as_me:14834: \"$ac_compile\"") >&5
19032   (eval $ac_compile) 2>&5
19033   ac_status=$?
19034-  echo "$as_me:14734: \$? = $ac_status" >&5
19035+  echo "$as_me:14837: \$? = $ac_status" >&5
19036   (exit $ac_status); } &&
19037          { ac_try='test -s conftest.$ac_objext'
19038-  { (eval echo "$as_me:14737: \"$ac_try\"") >&5
19039+  { (eval echo "$as_me:14840: \"$ac_try\"") >&5
19040   (eval $ac_try) 2>&5
19041   ac_status=$?
19042-  echo "$as_me:14740: \$? = $ac_status" >&5
19043+  echo "$as_me:14843: \$? = $ac_status" >&5
19044   (exit $ac_status); }; }; then
19045   cf_cv_weak_symbols=yes
19046 else
19047@@ -14748,7 +14851,7 @@
19048 rm -f conftest.$ac_objext conftest.$ac_ext
19049
19050 fi
19051-echo "$as_me:14751: result: $cf_cv_weak_symbols" >&5
19052+echo "$as_me:14854: result: $cf_cv_weak_symbols" >&5
19053 echo "${ECHO_T}$cf_cv_weak_symbols" >&6
19054
19055 	else
19056@@ -14798,7 +14901,7 @@
19057 # opaque outside of that, so there is no --enable-opaque option.  We can use
19058 # this option without --with-pthreads, but this will be always set for
19059 # pthreads.
19060-echo "$as_me:14801: checking if you want reentrant code" >&5
19061+echo "$as_me:14904: checking if you want reentrant code" >&5
19062 echo $ECHO_N "checking if you want reentrant code... $ECHO_C" >&6
19063
19064 # Check whether --enable-reentrant or --disable-reentrant was given.
19065@@ -14808,7 +14911,7 @@
19066 else
19067   with_reentrant=no
19068 fi;
19069-echo "$as_me:14811: result: $with_reentrant" >&5
19070+echo "$as_me:14914: result: $with_reentrant" >&5
19071 echo "${ECHO_T}$with_reentrant" >&6
19072 if test "x$with_reentrant" = xyes ; then
19073 	cf_cv_enable_reentrant=1
19074@@ -14896,7 +14999,7 @@
19075 	(5.*)
19076 		cf_cv_rel_version=6.0
19077 		cf_cv_abi_version=6
19078-		{ echo "$as_me:14899: WARNING: overriding ABI version to $cf_cv_abi_version" >&5
19079+		{ echo "$as_me:15002: WARNING: overriding ABI version to $cf_cv_abi_version" >&5
19080 echo "$as_me: WARNING: overriding ABI version to $cf_cv_abi_version" >&2;}
19081 		;;
19082 	esac
19083@@ -14908,7 +15011,7 @@
19084 	NCURSES_SIZE_T=short
19085 fi
19086
19087-echo "$as_me:14911: checking if you want opaque curses-library structures" >&5
19088+echo "$as_me:15014: checking if you want opaque curses-library structures" >&5
19089 echo $ECHO_N "checking if you want opaque curses-library structures... $ECHO_C" >&6
19090
19091 # Check whether --enable-opaque-curses or --disable-opaque-curses was given.
19092@@ -14930,16 +15033,16 @@
19093 	 test "$cf_cv_enable_reentrant" = 1 || enable_opaque_curses=no
19094
19095 fi;
19096-echo "$as_me:14933: result: $enable_opaque_curses" >&5
19097+echo "$as_me:15036: result: $enable_opaque_curses" >&5
19098 echo "${ECHO_T}$enable_opaque_curses" >&6
19099
19100 test "$cf_cv_enable_reentrant" = 1 && \
19101 test "$enable_opaque_curses" = no && \
19102-{ { echo "$as_me:14938: error: reentrant configuration requires opaque library" >&5
19103+{ { echo "$as_me:15041: error: reentrant configuration requires opaque library" >&5
19104 echo "$as_me: error: reentrant configuration requires opaque library" >&2;}
19105    { (exit 1); exit 1; }; }
19106
19107-echo "$as_me:14942: checking if you want opaque form-library structures" >&5
19108+echo "$as_me:15045: checking if you want opaque form-library structures" >&5
19109 echo $ECHO_N "checking if you want opaque form-library structures... $ECHO_C" >&6
19110
19111 # Check whether --enable-opaque-form or --disable-opaque-form was given.
19112@@ -14949,10 +15052,10 @@
19113 else
19114   enable_opaque_form=no
19115 fi;
19116-echo "$as_me:14952: result: $enable_opaque_form" >&5
19117+echo "$as_me:15055: result: $enable_opaque_form" >&5
19118 echo "${ECHO_T}$enable_opaque_form" >&6
19119
19120-echo "$as_me:14955: checking if you want opaque menu-library structures" >&5
19121+echo "$as_me:15058: checking if you want opaque menu-library structures" >&5
19122 echo $ECHO_N "checking if you want opaque menu-library structures... $ECHO_C" >&6
19123
19124 # Check whether --enable-opaque-menu or --disable-opaque-menu was given.
19125@@ -14962,10 +15065,10 @@
19126 else
19127   enable_opaque_menu=no
19128 fi;
19129-echo "$as_me:14965: result: $enable_opaque_menu" >&5
19130+echo "$as_me:15068: result: $enable_opaque_menu" >&5
19131 echo "${ECHO_T}$enable_opaque_menu" >&6
19132
19133-echo "$as_me:14968: checking if you want opaque panel-library structures" >&5
19134+echo "$as_me:15071: checking if you want opaque panel-library structures" >&5
19135 echo $ECHO_N "checking if you want opaque panel-library structures... $ECHO_C" >&6
19136
19137 # Check whether --enable-opaque-panel or --disable-opaque-panel was given.
19138@@ -14975,7 +15078,7 @@
19139 else
19140   enable_opaque_panel=no
19141 fi;
19142-echo "$as_me:14978: result: $enable_opaque_panel" >&5
19143+echo "$as_me:15081: result: $enable_opaque_panel" >&5
19144 echo "${ECHO_T}$enable_opaque_panel" >&6
19145
19146 NCURSES_OPAQUE=0;		test "$enable_opaque_curses" = yes && NCURSES_OPAQUE=1
19147@@ -14985,7 +15088,7 @@
19148
19149 ### Allow using a different wrap-prefix
19150 if test "$cf_cv_enable_reentrant" != 0 || test "$BROKEN_LINKER" = 1 ; then
19151-	echo "$as_me:14988: checking for prefix used to wrap public variables" >&5
19152+	echo "$as_me:15091: checking for prefix used to wrap public variables" >&5
19153 echo $ECHO_N "checking for prefix used to wrap public variables... $ECHO_C" >&6
19154
19155 # Check whether --with-wrap-prefix or --without-wrap-prefix was given.
19156@@ -14995,7 +15098,7 @@
19157 else
19158   NCURSES_WRAP_PREFIX=_nc_
19159 fi;
19160-	echo "$as_me:14998: result: $NCURSES_WRAP_PREFIX" >&5
19161+	echo "$as_me:15101: result: $NCURSES_WRAP_PREFIX" >&5
19162 echo "${ECHO_T}$NCURSES_WRAP_PREFIX" >&6
19163 else
19164 	NCURSES_WRAP_PREFIX=_nc_
19165@@ -15008,7 +15111,7 @@
19166 ###############################################################################
19167 # These options are relatively safe to experiment with.
19168
19169-echo "$as_me:15011: checking if you want all development code" >&5
19170+echo "$as_me:15114: checking if you want all development code" >&5
19171 echo $ECHO_N "checking if you want all development code... $ECHO_C" >&6
19172
19173 # Check whether --with-develop or --without-develop was given.
19174@@ -15018,11 +15121,11 @@
19175 else
19176   with_develop=no
19177 fi;
19178-echo "$as_me:15021: result: $with_develop" >&5
19179+echo "$as_me:15124: result: $with_develop" >&5
19180 echo "${ECHO_T}$with_develop" >&6
19181
19182 ###   use option --enable-hard-tabs to turn on use of hard-tabs optimize
19183-echo "$as_me:15025: checking if you want hard-tabs code" >&5
19184+echo "$as_me:15128: checking if you want hard-tabs code" >&5
19185 echo $ECHO_N "checking if you want hard-tabs code... $ECHO_C" >&6
19186
19187 # Check whether --enable-hard-tabs or --disable-hard-tabs was given.
19188@@ -15032,7 +15135,7 @@
19189 else
19190   enable_hard_tabs=$with_develop
19191 fi;
19192-echo "$as_me:15035: result: $enable_hard_tabs" >&5
19193+echo "$as_me:15138: result: $enable_hard_tabs" >&5
19194 echo "${ECHO_T}$enable_hard_tabs" >&6
19195 test "x$enable_hard_tabs" = xyes &&
19196 cat >>confdefs.h <<\EOF
19197@@ -15040,7 +15143,7 @@
19198 EOF
19199
19200 ###   use option --enable-xmc-glitch to turn on use of magic-cookie optimize
19201-echo "$as_me:15043: checking if you want limited support for xmc" >&5
19202+echo "$as_me:15146: checking if you want limited support for xmc" >&5
19203 echo $ECHO_N "checking if you want limited support for xmc... $ECHO_C" >&6
19204
19205 # Check whether --enable-xmc-glitch or --disable-xmc-glitch was given.
19206@@ -15050,7 +15153,7 @@
19207 else
19208   enable_xmc_glitch=$with_develop
19209 fi;
19210-echo "$as_me:15053: result: $enable_xmc_glitch" >&5
19211+echo "$as_me:15156: result: $enable_xmc_glitch" >&5
19212 echo "${ECHO_T}$enable_xmc_glitch" >&6
19213 test "x$enable_xmc_glitch" = xyes &&
19214 cat >>confdefs.h <<\EOF
19215@@ -15060,7 +15163,7 @@
19216 ###############################################################################
19217 # These are just experimental, probably should not be in a package:
19218
19219-echo "$as_me:15063: checking if you do not want to assume colors are white-on-black" >&5
19220+echo "$as_me:15166: checking if you do not want to assume colors are white-on-black" >&5
19221 echo $ECHO_N "checking if you do not want to assume colors are white-on-black... $ECHO_C" >&6
19222
19223 # Check whether --enable-assumed-color or --disable-assumed-color was given.
19224@@ -15070,7 +15173,7 @@
19225 else
19226   with_assumed_color=yes
19227 fi;
19228-echo "$as_me:15073: result: $with_assumed_color" >&5
19229+echo "$as_me:15176: result: $with_assumed_color" >&5
19230 echo "${ECHO_T}$with_assumed_color" >&6
19231 test "x$with_assumed_color" = xyes &&
19232 cat >>confdefs.h <<\EOF
19233@@ -15078,7 +15181,7 @@
19234 EOF
19235
19236 ###   use option --enable-hashmap to turn on use of hashmap scrolling logic
19237-echo "$as_me:15081: checking if you want hashmap scrolling-optimization code" >&5
19238+echo "$as_me:15184: checking if you want hashmap scrolling-optimization code" >&5
19239 echo $ECHO_N "checking if you want hashmap scrolling-optimization code... $ECHO_C" >&6
19240
19241 # Check whether --enable-hashmap or --disable-hashmap was given.
19242@@ -15088,7 +15191,7 @@
19243 else
19244   with_hashmap=yes
19245 fi;
19246-echo "$as_me:15091: result: $with_hashmap" >&5
19247+echo "$as_me:15194: result: $with_hashmap" >&5
19248 echo "${ECHO_T}$with_hashmap" >&6
19249 test "x$with_hashmap" = xyes &&
19250 cat >>confdefs.h <<\EOF
19251@@ -15096,7 +15199,7 @@
19252 EOF
19253
19254 ###   use option --enable-colorfgbg to turn on use of $COLORFGBG environment
19255-echo "$as_me:15099: checking if you want colorfgbg code" >&5
19256+echo "$as_me:15202: checking if you want colorfgbg code" >&5
19257 echo $ECHO_N "checking if you want colorfgbg code... $ECHO_C" >&6
19258
19259 # Check whether --enable-colorfgbg or --disable-colorfgbg was given.
19260@@ -15106,7 +15209,7 @@
19261 else
19262   with_colorfgbg=no
19263 fi;
19264-echo "$as_me:15109: result: $with_colorfgbg" >&5
19265+echo "$as_me:15212: result: $with_colorfgbg" >&5
19266 echo "${ECHO_T}$with_colorfgbg" >&6
19267 test "x$with_colorfgbg" = xyes &&
19268 cat >>confdefs.h <<\EOF
19269@@ -15114,7 +15217,7 @@
19270 EOF
19271
19272 ###   use option --enable-interop to turn on use of bindings used for interop
19273-echo "$as_me:15117: checking if you want interop bindings" >&5
19274+echo "$as_me:15220: checking if you want interop bindings" >&5
19275 echo $ECHO_N "checking if you want interop bindings... $ECHO_C" >&6
19276
19277 # Check whether --enable-interop or --disable-interop was given.
19278@@ -15124,13 +15227,13 @@
19279 else
19280   with_exp_interop=$cf_dft_interop
19281 fi;
19282-echo "$as_me:15127: result: $with_exp_interop" >&5
19283+echo "$as_me:15230: result: $with_exp_interop" >&5
19284 echo "${ECHO_T}$with_exp_interop" >&6
19285
19286 NCURSES_INTEROP_FUNCS=0
19287 test "x$with_exp_interop" = xyes && NCURSES_INTEROP_FUNCS=1
19288
19289-echo "$as_me:15133: checking if you want experimental safe-sprintf code" >&5
19290+echo "$as_me:15236: checking if you want experimental safe-sprintf code" >&5
19291 echo $ECHO_N "checking if you want experimental safe-sprintf code... $ECHO_C" >&6
19292
19293 # Check whether --enable-safe-sprintf or --disable-safe-sprintf was given.
19294@@ -15140,13 +15243,13 @@
19295 else
19296   with_safe_sprintf=no
19297 fi;
19298-echo "$as_me:15143: result: $with_safe_sprintf" >&5
19299+echo "$as_me:15246: result: $with_safe_sprintf" >&5
19300 echo "${ECHO_T}$with_safe_sprintf" >&6
19301
19302 ###   use option --disable-scroll-hints to turn off use of scroll-hints scrolling logic
19303 # when hashmap is used scroll hints are useless
19304 if test "$with_hashmap" = no ; then
19305-echo "$as_me:15149: checking if you want to experiment without scrolling-hints code" >&5
19306+echo "$as_me:15252: checking if you want to experiment without scrolling-hints code" >&5
19307 echo $ECHO_N "checking if you want to experiment without scrolling-hints code... $ECHO_C" >&6
19308
19309 # Check whether --enable-scroll-hints or --disable-scroll-hints was given.
19310@@ -15156,7 +15259,7 @@
19311 else
19312   with_scroll_hints=yes
19313 fi;
19314-echo "$as_me:15159: result: $with_scroll_hints" >&5
19315+echo "$as_me:15262: result: $with_scroll_hints" >&5
19316 echo "${ECHO_T}$with_scroll_hints" >&6
19317 test "x$with_scroll_hints" = xyes &&
19318 cat >>confdefs.h <<\EOF
19319@@ -15165,7 +15268,7 @@
19320
19321 fi
19322
19323-echo "$as_me:15168: checking if you want wgetch-events code" >&5
19324+echo "$as_me:15271: checking if you want wgetch-events code" >&5
19325 echo $ECHO_N "checking if you want wgetch-events code... $ECHO_C" >&6
19326
19327 # Check whether --enable-wgetch-events or --disable-wgetch-events was given.
19328@@ -15175,7 +15278,7 @@
19329 else
19330   with_wgetch_events=no
19331 fi;
19332-echo "$as_me:15178: result: $with_wgetch_events" >&5
19333+echo "$as_me:15281: result: $with_wgetch_events" >&5
19334 echo "${ECHO_T}$with_wgetch_events" >&6
19335 test "x$with_wgetch_events" = xyes &&
19336 cat >>confdefs.h <<\EOF
19337@@ -15186,7 +15289,7 @@
19338
19339 ###	use option --disable-echo to suppress full display compiling commands
19340
19341-echo "$as_me:15189: checking if you want to see long compiling messages" >&5
19342+echo "$as_me:15292: checking if you want to see long compiling messages" >&5
19343 echo $ECHO_N "checking if you want to see long compiling messages... $ECHO_C" >&6
19344
19345 # Check whether --enable-echo or --disable-echo was given.
19346@@ -15220,7 +15323,7 @@
19347 	ECHO_CC=''
19348
19349 fi;
19350-echo "$as_me:15223: result: $enableval" >&5
19351+echo "$as_me:15326: result: $enableval" >&5
19352 echo "${ECHO_T}$enableval" >&6
19353
19354 if test "x$enable_echo" = xyes; then
19355@@ -15233,7 +15336,7 @@
19356
19357 # --disable-stripping is used for debugging
19358
19359-echo "$as_me:15236: checking if you want to install stripped executables" >&5
19360+echo "$as_me:15339: checking if you want to install stripped executables" >&5
19361 echo $ECHO_N "checking if you want to install stripped executables... $ECHO_C" >&6
19362
19363 # Check whether --enable-stripping or --disable-stripping was given.
19364@@ -15250,7 +15353,7 @@
19365 	with_stripping=yes
19366
19367 fi;
19368-echo "$as_me:15253: result: $with_stripping" >&5
19369+echo "$as_me:15356: result: $with_stripping" >&5
19370 echo "${ECHO_T}$with_stripping" >&6
19371
19372 if test "$with_stripping" = yes
19373@@ -15261,7 +15364,7 @@
19374 fi
19375
19376 : ${INSTALL:=install}
19377-echo "$as_me:15264: checking if install accepts -p option" >&5
19378+echo "$as_me:15367: checking if install accepts -p option" >&5
19379 echo $ECHO_N "checking if install accepts -p option... $ECHO_C" >&6
19380 if test "${cf_cv_install_p+set}" = set; then
19381   echo $ECHO_N "(cached) $ECHO_C" >&6
19382@@ -15292,10 +15395,10 @@
19383 	rm -rf conftest*
19384
19385 fi
19386-echo "$as_me:15295: result: $cf_cv_install_p" >&5
19387+echo "$as_me:15398: result: $cf_cv_install_p" >&5
19388 echo "${ECHO_T}$cf_cv_install_p" >&6
19389
19390-echo "$as_me:15298: checking if install needs to be told about ownership" >&5
19391+echo "$as_me:15401: checking if install needs to be told about ownership" >&5
19392 echo $ECHO_N "checking if install needs to be told about ownership... $ECHO_C" >&6
19393 case `$ac_config_guess` in
19394 (*minix)
19395@@ -15306,7 +15409,7 @@
19396 	;;
19397 esac
19398
19399-echo "$as_me:15309: result: $with_install_o" >&5
19400+echo "$as_me:15412: result: $with_install_o" >&5
19401 echo "${ECHO_T}$with_install_o" >&6
19402 if test "x$with_install_o" = xyes
19403 then
19404@@ -15330,7 +15433,7 @@
19405 fi
19406
19407 ###	use option --enable-warnings to turn on all gcc warnings
19408-echo "$as_me:15333: checking if you want to see compiler warnings" >&5
19409+echo "$as_me:15436: checking if you want to see compiler warnings" >&5
19410 echo $ECHO_N "checking if you want to see compiler warnings... $ECHO_C" >&6
19411
19412 # Check whether --enable-warnings or --disable-warnings was given.
19413@@ -15338,118 +15441,16 @@
19414   enableval="$enable_warnings"
19415   with_warnings=$enableval
19416 fi;
19417-echo "$as_me:15341: result: $with_warnings" >&5
19418+echo "$as_me:15444: result: $with_warnings" >&5
19419 echo "${ECHO_T}$with_warnings" >&6
19420
19421 if test "x$with_warnings" = "xyes"; then
19422
19423  	ADAFLAGS="$ADAFLAGS -gnatg"
19424
19425-INTEL_COMPILER=no
19426-
19427-if test "$GCC" = yes ; then
19428-	case $host_os in
19429-	(linux*|gnu*)
19430-		echo "$as_me:15353: checking if this is really Intel C compiler" >&5
19431-echo $ECHO_N "checking if this is really Intel C compiler... $ECHO_C" >&6
19432-		cf_save_CFLAGS="$CFLAGS"
19433-		CFLAGS="$CFLAGS -no-gcc"
19434-		cat >conftest.$ac_ext <<_ACEOF
19435-#line 15358 "configure"
19436-#include "confdefs.h"
19437-
19438-int
19439-main (void)
19440-{
19441-
19442-#ifdef __INTEL_COMPILER
19443-#else
19444-make an error
19445-#endif
19446-
19447-  ;
19448-  return 0;
19449-}
19450-_ACEOF
19451-rm -f conftest.$ac_objext
19452-if { (eval echo "$as_me:15375: \"$ac_compile\"") >&5
19453-  (eval $ac_compile) 2>&5
19454-  ac_status=$?
19455-  echo "$as_me:15378: \$? = $ac_status" >&5
19456-  (exit $ac_status); } &&
19457-         { ac_try='test -s conftest.$ac_objext'
19458-  { (eval echo "$as_me:15381: \"$ac_try\"") >&5
19459-  (eval $ac_try) 2>&5
19460-  ac_status=$?
19461-  echo "$as_me:15384: \$? = $ac_status" >&5
19462-  (exit $ac_status); }; }; then
19463-  INTEL_COMPILER=yes
19464-cf_save_CFLAGS="$cf_save_CFLAGS -we147"
19465-
19466-else
19467-  echo "$as_me: failed program was:" >&5
19468-cat conftest.$ac_ext >&5
19469-fi
19470-rm -f conftest.$ac_objext conftest.$ac_ext
19471-		CFLAGS="$cf_save_CFLAGS"
19472-		echo "$as_me:15395: result: $INTEL_COMPILER" >&5
19473-echo "${ECHO_T}$INTEL_COMPILER" >&6
19474-		;;
19475-	esac
19476-fi
19477-
19478-CLANG_COMPILER=no
19479-
19480-if test "$GCC" = yes ; then
19481-	echo "$as_me:15404: checking if this is really Clang C compiler" >&5
19482-echo $ECHO_N "checking if this is really Clang C compiler... $ECHO_C" >&6
19483-	cf_save_CFLAGS="$CFLAGS"
19484-	CFLAGS="$CFLAGS -Qunused-arguments"
19485-	cat >conftest.$ac_ext <<_ACEOF
19486-#line 15409 "configure"
19487-#include "confdefs.h"
19488-
19489-int
19490-main (void)
19491-{
19492-
19493-#ifdef __clang__
19494-#else
19495-make an error
19496-#endif
19497-
19498-  ;
19499-  return 0;
19500-}
19501-_ACEOF
19502-rm -f conftest.$ac_objext
19503-if { (eval echo "$as_me:15426: \"$ac_compile\"") >&5
19504-  (eval $ac_compile) 2>&5
19505-  ac_status=$?
19506-  echo "$as_me:15429: \$? = $ac_status" >&5
19507-  (exit $ac_status); } &&
19508-         { ac_try='test -s conftest.$ac_objext'
19509-  { (eval echo "$as_me:15432: \"$ac_try\"") >&5
19510-  (eval $ac_try) 2>&5
19511-  ac_status=$?
19512-  echo "$as_me:15435: \$? = $ac_status" >&5
19513-  (exit $ac_status); }; }; then
19514-  CLANG_COMPILER=yes
19515-cf_save_CFLAGS="$cf_save_CFLAGS -Qunused-arguments"
19516-
19517-else
19518-  echo "$as_me: failed program was:" >&5
19519-cat conftest.$ac_ext >&5
19520-fi
19521-rm -f conftest.$ac_objext conftest.$ac_ext
19522-	CFLAGS="$cf_save_CFLAGS"
19523-	echo "$as_me:15446: result: $CLANG_COMPILER" >&5
19524-echo "${ECHO_T}$CLANG_COMPILER" >&6
19525-fi
19526-
19527 if test "x$have_x" = xyes; then
19528 cat >conftest.$ac_ext <<_ACEOF
19529-#line 15452 "configure"
19530+#line 15453 "configure"
19531 #include "confdefs.h"
19532
19533 #include <stdlib.h>
19534@@ -15464,26 +15465,26 @@
19535 }
19536 _ACEOF
19537 rm -f conftest.$ac_objext
19538-if { (eval echo "$as_me:15467: \"$ac_compile\"") >&5
19539+if { (eval echo "$as_me:15468: \"$ac_compile\"") >&5
19540   (eval $ac_compile) 2>&5
19541   ac_status=$?
19542-  echo "$as_me:15470: \$? = $ac_status" >&5
19543+  echo "$as_me:15471: \$? = $ac_status" >&5
19544   (exit $ac_status); } &&
19545          { ac_try='test -s conftest.$ac_objext'
19546-  { (eval echo "$as_me:15473: \"$ac_try\"") >&5
19547+  { (eval echo "$as_me:15474: \"$ac_try\"") >&5
19548   (eval $ac_try) 2>&5
19549   ac_status=$?
19550-  echo "$as_me:15476: \$? = $ac_status" >&5
19551+  echo "$as_me:15477: \$? = $ac_status" >&5
19552   (exit $ac_status); }; }; then
19553
19554-echo "$as_me:15479: checking for X11/Xt const-feature" >&5
19555+echo "$as_me:15480: checking for X11/Xt const-feature" >&5
19556 echo $ECHO_N "checking for X11/Xt const-feature... $ECHO_C" >&6
19557 if test "${cf_cv_const_x_string+set}" = set; then
19558   echo $ECHO_N "(cached) $ECHO_C" >&6
19559 else
19560
19561 	cat >conftest.$ac_ext <<_ACEOF
19562-#line 15486 "configure"
19563+#line 15487 "configure"
19564 #include "confdefs.h"
19565
19566 #define _CONST_X_STRING	/* X11R7.8 (perhaps) */
19567@@ -15500,16 +15501,16 @@
19568 }
19569 _ACEOF
19570 rm -f conftest.$ac_objext
19571-if { (eval echo "$as_me:15503: \"$ac_compile\"") >&5
19572+if { (eval echo "$as_me:15504: \"$ac_compile\"") >&5
19573   (eval $ac_compile) 2>&5
19574   ac_status=$?
19575-  echo "$as_me:15506: \$? = $ac_status" >&5
19576+  echo "$as_me:15507: \$? = $ac_status" >&5
19577   (exit $ac_status); } &&
19578          { ac_try='test -s conftest.$ac_objext'
19579-  { (eval echo "$as_me:15509: \"$ac_try\"") >&5
19580+  { (eval echo "$as_me:15510: \"$ac_try\"") >&5
19581   (eval $ac_try) 2>&5
19582   ac_status=$?
19583-  echo "$as_me:15512: \$? = $ac_status" >&5
19584+  echo "$as_me:15513: \$? = $ac_status" >&5
19585   (exit $ac_status); }; }; then
19586
19587 			cf_cv_const_x_string=no
19588@@ -15524,7 +15525,7 @@
19589 rm -f conftest.$ac_objext conftest.$ac_ext
19590
19591 fi
19592-echo "$as_me:15527: result: $cf_cv_const_x_string" >&5
19593+echo "$as_me:15528: result: $cf_cv_const_x_string" >&5
19594 echo "${ECHO_T}$cf_cv_const_x_string" >&6
19595
19596 case $cf_cv_const_x_string in
19597@@ -15549,7 +15550,7 @@
19598 rm -f conftest.$ac_objext conftest.$ac_ext
19599  fi
19600 cat > conftest.$ac_ext <<EOF
19601-#line 15552 "${as_me:-configure}"
19602+#line 15553 "${as_me:-configure}"
19603 int main(int argc, char *argv[]) { return (argv[argc-1] == 0) ; }
19604 EOF
19605 if test "$INTEL_COMPILER" = yes
19606@@ -15565,7 +15566,7 @@
19607 # remark #981: operands are evaluated in unspecified order
19608 # warning #279: controlling expression is constant
19609
19610-	{ echo "$as_me:15568: checking for $CC warning options..." >&5
19611+	{ echo "$as_me:15569: checking for $CC warning options..." >&5
19612 echo "$as_me: checking for $CC warning options..." >&6;}
19613 	cf_save_CFLAGS="$CFLAGS"
19614 	EXTRA_CFLAGS="-Wall"
19615@@ -15581,12 +15582,12 @@
19616 		wd981
19617 	do
19618 		CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt"
19619-		if { (eval echo "$as_me:15584: \"$ac_compile\"") >&5
19620+		if { (eval echo "$as_me:15585: \"$ac_compile\"") >&5
19621   (eval $ac_compile) 2>&5
19622   ac_status=$?
19623-  echo "$as_me:15587: \$? = $ac_status" >&5
19624+  echo "$as_me:15588: \$? = $ac_status" >&5
19625   (exit $ac_status); }; then
19626-			test -n "$verbose" && echo "$as_me:15589: result: ... -$cf_opt" >&5
19627+			test -n "$verbose" && echo "$as_me:15590: result: ... -$cf_opt" >&5
19628 echo "${ECHO_T}... -$cf_opt" >&6
19629 			EXTRA_CFLAGS="$EXTRA_CFLAGS -$cf_opt"
19630 		fi
19631@@ -15594,7 +15595,7 @@
19632 	CFLAGS="$cf_save_CFLAGS"
19633 elif test "$GCC" = yes
19634 then
19635-	{ echo "$as_me:15597: checking for $CC warning options..." >&5
19636+	{ echo "$as_me:15598: checking for $CC warning options..." >&5
19637 echo "$as_me: checking for $CC warning options..." >&6;}
19638 	cf_save_CFLAGS="$CFLAGS"
19639 	EXTRA_CFLAGS=
19640@@ -15618,12 +15619,12 @@
19641 		Wundef $cf_gcc_warnings $cf_warn_CONST Wno-unknown-pragmas Wswitch-enum
19642 	do
19643 		CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt"
19644-		if { (eval echo "$as_me:15621: \"$ac_compile\"") >&5
19645+		if { (eval echo "$as_me:15622: \"$ac_compile\"") >&5
19646   (eval $ac_compile) 2>&5
19647   ac_status=$?
19648-  echo "$as_me:15624: \$? = $ac_status" >&5
19649+  echo "$as_me:15625: \$? = $ac_status" >&5
19650   (exit $ac_status); }; then
19651-			test -n "$verbose" && echo "$as_me:15626: result: ... -$cf_opt" >&5
19652+			test -n "$verbose" && echo "$as_me:15627: result: ... -$cf_opt" >&5
19653 echo "${ECHO_T}... -$cf_opt" >&6
19654 			case $cf_opt in
19655 			(Winline)
19656@@ -15631,7 +15632,7 @@
19657 				([34].*)
19658 					test -n "$verbose" && echo "	feature is broken in gcc $GCC_VERSION" 1>&6
19659
19660-echo "${as_me:-configure}:15634: testing feature is broken in gcc $GCC_VERSION ..." 1>&5
19661+echo "${as_me:-configure}:15635: testing feature is broken in gcc $GCC_VERSION ..." 1>&5
19662
19663 					continue;;
19664 				esac
19665@@ -15641,7 +15642,7 @@
19666 				([12].*)
19667 					test -n "$verbose" && echo "	feature is broken in gcc $GCC_VERSION" 1>&6
19668
19669-echo "${as_me:-configure}:15644: testing feature is broken in gcc $GCC_VERSION ..." 1>&5
19670+echo "${as_me:-configure}:15645: testing feature is broken in gcc $GCC_VERSION ..." 1>&5
19671
19672 					continue;;
19673 				esac
19674@@ -15661,12 +15662,12 @@
19675 if test "$GCC" = yes ; then
19676 	case $host_os in
19677 	(linux*|gnu*)
19678-		echo "$as_me:15664: checking if this is really Intel C++ compiler" >&5
19679+		echo "$as_me:15665: checking if this is really Intel C++ compiler" >&5
19680 echo $ECHO_N "checking if this is really Intel C++ compiler... $ECHO_C" >&6
19681 		cf_save_CFLAGS="$CXXFLAGS"
19682 		CXXFLAGS="$CXXFLAGS -no-gcc"
19683 		cat >conftest.$ac_ext <<_ACEOF
19684-#line 15669 "configure"
19685+#line 15670 "configure"
19686 #include "confdefs.h"
19687
19688 int
19689@@ -15683,16 +15684,16 @@
19690 }
19691 _ACEOF
19692 rm -f conftest.$ac_objext
19693-if { (eval echo "$as_me:15686: \"$ac_compile\"") >&5
19694+if { (eval echo "$as_me:15687: \"$ac_compile\"") >&5
19695   (eval $ac_compile) 2>&5
19696   ac_status=$?
19697-  echo "$as_me:15689: \$? = $ac_status" >&5
19698+  echo "$as_me:15690: \$? = $ac_status" >&5
19699   (exit $ac_status); } &&
19700          { ac_try='test -s conftest.$ac_objext'
19701-  { (eval echo "$as_me:15692: \"$ac_try\"") >&5
19702+  { (eval echo "$as_me:15693: \"$ac_try\"") >&5
19703   (eval $ac_try) 2>&5
19704   ac_status=$?
19705-  echo "$as_me:15695: \$? = $ac_status" >&5
19706+  echo "$as_me:15696: \$? = $ac_status" >&5
19707   (exit $ac_status); }; }; then
19708   INTEL_CPLUSPLUS=yes
19709 cf_save_CFLAGS="$cf_save_CFLAGS -we147"
19710@@ -15703,7 +15704,7 @@
19711 fi
19712 rm -f conftest.$ac_objext conftest.$ac_ext
19713 		CXXFLAGS="$cf_save_CFLAGS"
19714-		echo "$as_me:15706: result: $INTEL_CPLUSPLUS" >&5
19715+		echo "$as_me:15707: result: $INTEL_CPLUSPLUS" >&5
19716 echo "${ECHO_T}$INTEL_CPLUSPLUS" >&6
19717 		;;
19718 	esac
19719@@ -15712,12 +15713,12 @@
19720 CLANG_CPLUSPLUS=no
19721
19722 if test "$GCC" = yes ; then
19723-	echo "$as_me:15715: checking if this is really Clang C++ compiler" >&5
19724+	echo "$as_me:15716: checking if this is really Clang C++ compiler" >&5
19725 echo $ECHO_N "checking if this is really Clang C++ compiler... $ECHO_C" >&6
19726 	cf_save_CFLAGS="$CXXFLAGS"
19727 	CXXFLAGS="$CXXFLAGS -Qunused-arguments"
19728 	cat >conftest.$ac_ext <<_ACEOF
19729-#line 15720 "configure"
19730+#line 15721 "configure"
19731 #include "confdefs.h"
19732
19733 int
19734@@ -15734,16 +15735,16 @@
19735 }
19736 _ACEOF
19737 rm -f conftest.$ac_objext
19738-if { (eval echo "$as_me:15737: \"$ac_compile\"") >&5
19739+if { (eval echo "$as_me:15738: \"$ac_compile\"") >&5
19740   (eval $ac_compile) 2>&5
19741   ac_status=$?
19742-  echo "$as_me:15740: \$? = $ac_status" >&5
19743+  echo "$as_me:15741: \$? = $ac_status" >&5
19744   (exit $ac_status); } &&
19745          { ac_try='test -s conftest.$ac_objext'
19746-  { (eval echo "$as_me:15743: \"$ac_try\"") >&5
19747+  { (eval echo "$as_me:15744: \"$ac_try\"") >&5
19748   (eval $ac_try) 2>&5
19749   ac_status=$?
19750-  echo "$as_me:15746: \$? = $ac_status" >&5
19751+  echo "$as_me:15747: \$? = $ac_status" >&5
19752   (exit $ac_status); }; }; then
19753   CLANG_CPLUSPLUS=yes
19754 cf_save_CFLAGS="$cf_save_CFLAGS -Qunused-arguments"
19755@@ -15754,7 +15755,7 @@
19756 fi
19757 rm -f conftest.$ac_objext conftest.$ac_ext
19758 	CXXFLAGS="$cf_save_CFLAGS"
19759-	echo "$as_me:15757: result: $CLANG_CPLUSPLUS" >&5
19760+	echo "$as_me:15758: result: $CLANG_CPLUSPLUS" >&5
19761 echo "${ECHO_T}$CLANG_CPLUSPLUS" >&6
19762 fi
19763
19764@@ -15766,7 +15767,7 @@
19765 ac_main_return=return
19766
19767 cat > conftest.$ac_ext <<EOF
19768-#line 15769 "configure"
19769+#line 15770 "configure"
19770 int main(int argc, char *argv[]) { return (argv[argc-1] == 0) ; }
19771 EOF
19772
19773@@ -15784,7 +15785,7 @@
19774 # remark #981: operands are evaluated in unspecified order
19775 # warning #269: invalid format string conversion
19776
19777-	{ echo "$as_me:15787: checking for $CC warning options..." >&5
19778+	{ echo "$as_me:15788: checking for $CC warning options..." >&5
19779 echo "$as_me: checking for $CC warning options..." >&6;}
19780 	cf_save_CXXFLAGS="$CXXFLAGS"
19781 	EXTRA_CXXFLAGS="-Wall"
19782@@ -15801,12 +15802,12 @@
19783 		wd981
19784 	do
19785 		CXXFLAGS="$cf_save_CXXFLAGS $EXTRA_CXXFLAGS -$cf_opt"
19786-		if { (eval echo "$as_me:15804: \"$ac_compile\"") >&5
19787+		if { (eval echo "$as_me:15805: \"$ac_compile\"") >&5
19788   (eval $ac_compile) 2>&5
19789   ac_status=$?
19790-  echo "$as_me:15807: \$? = $ac_status" >&5
19791+  echo "$as_me:15808: \$? = $ac_status" >&5
19792   (exit $ac_status); }; then
19793-			test -n "$verbose" && echo "$as_me:15809: result: ... -$cf_opt" >&5
19794+			test -n "$verbose" && echo "$as_me:15810: result: ... -$cf_opt" >&5
19795 echo "${ECHO_T}... -$cf_opt" >&6
19796 			EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS -$cf_opt"
19797 		fi
19798@@ -15815,7 +15816,7 @@
19799
19800 elif test "$GXX" = yes
19801 then
19802-	{ echo "$as_me:15818: checking for $CXX warning options..." >&5
19803+	{ echo "$as_me:15819: checking for $CXX warning options..." >&5
19804 echo "$as_me: checking for $CXX warning options..." >&6;}
19805 	cf_save_CXXFLAGS="$CXXFLAGS"
19806 	EXTRA_CXXFLAGS="-W -Wall"
19807@@ -15845,16 +15846,16 @@
19808 		Wundef $cf_gxx_extra_warnings Wno-unused
19809 	do
19810 		CXXFLAGS="$cf_save_CXXFLAGS $EXTRA_CXXFLAGS -Werror -$cf_opt"
19811-		if { (eval echo "$as_me:15848: \"$ac_compile\"") >&5
19812+		if { (eval echo "$as_me:15849: \"$ac_compile\"") >&5
19813   (eval $ac_compile) 2>&5
19814   ac_status=$?
19815-  echo "$as_me:15851: \$? = $ac_status" >&5
19816+  echo "$as_me:15852: \$? = $ac_status" >&5
19817   (exit $ac_status); }; then
19818-			test -n "$verbose" && echo "$as_me:15853: result: ... -$cf_opt" >&5
19819+			test -n "$verbose" && echo "$as_me:15854: result: ... -$cf_opt" >&5
19820 echo "${ECHO_T}... -$cf_opt" >&6
19821 			EXTRA_CXXFLAGS="$EXTRA_CXXFLAGS -$cf_opt"
19822 		else
19823-			test -n "$verbose" && echo "$as_me:15857: result: ... no -$cf_opt" >&5
19824+			test -n "$verbose" && echo "$as_me:15858: result: ... no -$cf_opt" >&5
19825 echo "${ECHO_T}... no -$cf_opt" >&6
19826 		fi
19827 	done
19828@@ -15890,10 +15891,10 @@
19829 EOF
19830 if test "$GCC" = yes
19831 then
19832-	{ echo "$as_me:15893: checking for $CC __attribute__ directives..." >&5
19833+	{ echo "$as_me:15894: checking for $CC __attribute__ directives..." >&5
19834 echo "$as_me: checking for $CC __attribute__ directives..." >&6;}
19835 cat > conftest.$ac_ext <<EOF
19836-#line 15896 "${as_me:-configure}"
19837+#line 15897 "${as_me:-configure}"
19838 #include "confdefs.h"
19839 #include "conftest.h"
19840 #include "conftest.i"
19841@@ -15942,12 +15943,12 @@
19842 			;;
19843 		esac
19844
19845-		if { (eval echo "$as_me:15945: \"$ac_compile\"") >&5
19846+		if { (eval echo "$as_me:15946: \"$ac_compile\"") >&5
19847   (eval $ac_compile) 2>&5
19848   ac_status=$?
19849-  echo "$as_me:15948: \$? = $ac_status" >&5
19850+  echo "$as_me:15949: \$? = $ac_status" >&5
19851   (exit $ac_status); }; then
19852-			test -n "$verbose" && echo "$as_me:15950: result: ... $cf_attribute" >&5
19853+			test -n "$verbose" && echo "$as_me:15951: result: ... $cf_attribute" >&5
19854 echo "${ECHO_T}... $cf_attribute" >&6
19855 			cat conftest.h >>confdefs.h
19856 			case $cf_attribute in
19857@@ -16006,7 +16007,7 @@
19858 rm -rf conftest*
19859 fi
19860
19861-echo "$as_me:16009: checking if you want to work around bogus compiler/loader warnings" >&5
19862+echo "$as_me:16010: checking if you want to work around bogus compiler/loader warnings" >&5
19863 echo $ECHO_N "checking if you want to work around bogus compiler/loader warnings... $ECHO_C" >&6
19864
19865 # Check whether --enable-string-hacks or --disable-string-hacks was given.
19866@@ -16016,7 +16017,7 @@
19867 else
19868   with_string_hacks=no
19869 fi;
19870-echo "$as_me:16019: result: $with_string_hacks" >&5
19871+echo "$as_me:16020: result: $with_string_hacks" >&5
19872 echo "${ECHO_T}$with_string_hacks" >&6
19873
19874 if test "x$with_string_hacks" = "xyes"; then
19875@@ -16025,15 +16026,15 @@
19876 #define USE_STRING_HACKS 1
19877 EOF
19878
19879-	{ echo "$as_me:16028: WARNING: enabling string-hacks to work around bogus compiler/loader warnings" >&5
19880+	{ echo "$as_me:16029: WARNING: enabling string-hacks to work around bogus compiler/loader warnings" >&5
19881 echo "$as_me: WARNING: enabling string-hacks to work around bogus compiler/loader warnings" >&2;}
19882-	echo "$as_me:16030: checking for strlcat" >&5
19883+	echo "$as_me:16031: checking for strlcat" >&5
19884 echo $ECHO_N "checking for strlcat... $ECHO_C" >&6
19885 if test "${ac_cv_func_strlcat+set}" = set; then
19886   echo $ECHO_N "(cached) $ECHO_C" >&6
19887 else
19888   cat >conftest.$ac_ext <<_ACEOF
19889-#line 16036 "configure"
19890+#line 16037 "configure"
19891 #include "confdefs.h"
19892 #define strlcat autoconf_temporary
19893 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
19894@@ -16064,16 +16065,16 @@
19895 }
19896 _ACEOF
19897 rm -f conftest.$ac_objext conftest$ac_exeext
19898-if { (eval echo "$as_me:16067: \"$ac_link\"") >&5
19899+if { (eval echo "$as_me:16068: \"$ac_link\"") >&5
19900   (eval $ac_link) 2>&5
19901   ac_status=$?
19902-  echo "$as_me:16070: \$? = $ac_status" >&5
19903+  echo "$as_me:16071: \$? = $ac_status" >&5
19904   (exit $ac_status); } &&
19905          { ac_try='test -s conftest$ac_exeext'
19906-  { (eval echo "$as_me:16073: \"$ac_try\"") >&5
19907+  { (eval echo "$as_me:16074: \"$ac_try\"") >&5
19908   (eval $ac_try) 2>&5
19909   ac_status=$?
19910-  echo "$as_me:16076: \$? = $ac_status" >&5
19911+  echo "$as_me:16077: \$? = $ac_status" >&5
19912   (exit $ac_status); }; }; then
19913   ac_cv_func_strlcat=yes
19914 else
19915@@ -16083,7 +16084,7 @@
19916 fi
19917 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
19918 fi
19919-echo "$as_me:16086: result: $ac_cv_func_strlcat" >&5
19920+echo "$as_me:16087: result: $ac_cv_func_strlcat" >&5
19921 echo "${ECHO_T}$ac_cv_func_strlcat" >&6
19922 if test $ac_cv_func_strlcat = yes; then
19923
19924@@ -16093,7 +16094,7 @@
19925
19926 else
19927
19928-		echo "$as_me:16096: checking for strlcat in -lbsd" >&5
19929+		echo "$as_me:16097: checking for strlcat in -lbsd" >&5
19930 echo $ECHO_N "checking for strlcat in -lbsd... $ECHO_C" >&6
19931 if test "${ac_cv_lib_bsd_strlcat+set}" = set; then
19932   echo $ECHO_N "(cached) $ECHO_C" >&6
19933@@ -16101,7 +16102,7 @@
19934   ac_check_lib_save_LIBS=$LIBS
19935 LIBS="-lbsd  $LIBS"
19936 cat >conftest.$ac_ext <<_ACEOF
19937-#line 16104 "configure"
19938+#line 16105 "configure"
19939 #include "confdefs.h"
19940
19941 /* Override any gcc2 internal prototype to avoid an error.  */
19942@@ -16120,16 +16121,16 @@
19943 }
19944 _ACEOF
19945 rm -f conftest.$ac_objext conftest$ac_exeext
19946-if { (eval echo "$as_me:16123: \"$ac_link\"") >&5
19947+if { (eval echo "$as_me:16124: \"$ac_link\"") >&5
19948   (eval $ac_link) 2>&5
19949   ac_status=$?
19950-  echo "$as_me:16126: \$? = $ac_status" >&5
19951+  echo "$as_me:16127: \$? = $ac_status" >&5
19952   (exit $ac_status); } &&
19953          { ac_try='test -s conftest$ac_exeext'
19954-  { (eval echo "$as_me:16129: \"$ac_try\"") >&5
19955+  { (eval echo "$as_me:16130: \"$ac_try\"") >&5
19956   (eval $ac_try) 2>&5
19957   ac_status=$?
19958-  echo "$as_me:16132: \$? = $ac_status" >&5
19959+  echo "$as_me:16133: \$? = $ac_status" >&5
19960   (exit $ac_status); }; }; then
19961   ac_cv_lib_bsd_strlcat=yes
19962 else
19963@@ -16140,7 +16141,7 @@
19964 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
19965 LIBS=$ac_check_lib_save_LIBS
19966 fi
19967-echo "$as_me:16143: result: $ac_cv_lib_bsd_strlcat" >&5
19968+echo "$as_me:16144: result: $ac_cv_lib_bsd_strlcat" >&5
19969 echo "${ECHO_T}$ac_cv_lib_bsd_strlcat" >&6
19970 if test $ac_cv_lib_bsd_strlcat = yes; then
19971
19972@@ -16163,23 +16164,23 @@
19973 for ac_header in bsd/string.h
19974 do
19975 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
19976-echo "$as_me:16166: checking for $ac_header" >&5
19977+echo "$as_me:16167: checking for $ac_header" >&5
19978 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
19979 if eval "test \"\${$as_ac_Header+set}\" = set"; then
19980   echo $ECHO_N "(cached) $ECHO_C" >&6
19981 else
19982   cat >conftest.$ac_ext <<_ACEOF
19983-#line 16172 "configure"
19984+#line 16173 "configure"
19985 #include "confdefs.h"
19986 #include <$ac_header>
19987 _ACEOF
19988-if { (eval echo "$as_me:16176: \"$ac_cpp conftest.$ac_ext\"") >&5
19989+if { (eval echo "$as_me:16177: \"$ac_cpp conftest.$ac_ext\"") >&5
19990   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
19991   ac_status=$?
19992   egrep -v '^ *\+' conftest.er1 >conftest.err
19993   rm -f conftest.er1
19994   cat conftest.err >&5
19995-  echo "$as_me:16182: \$? = $ac_status" >&5
19996+  echo "$as_me:16183: \$? = $ac_status" >&5
19997   (exit $ac_status); } >/dev/null; then
19998   if test -s conftest.err; then
19999     ac_cpp_err=$ac_c_preproc_warn_flag
20000@@ -16198,7 +16199,7 @@
20001 fi
20002 rm -f conftest.err conftest.$ac_ext
20003 fi
20004-echo "$as_me:16201: result: `eval echo '${'$as_ac_Header'}'`" >&5
20005+echo "$as_me:16202: result: `eval echo '${'$as_ac_Header'}'`" >&5
20006 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
20007 if test `eval echo '${'$as_ac_Header'}'` = yes; then
20008   cat >>confdefs.h <<EOF
20009@@ -16219,13 +16220,13 @@
20010 for ac_func in strlcpy snprintf
20011 do
20012 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
20013-echo "$as_me:16222: checking for $ac_func" >&5
20014+echo "$as_me:16223: checking for $ac_func" >&5
20015 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
20016 if eval "test \"\${$as_ac_var+set}\" = set"; then
20017   echo $ECHO_N "(cached) $ECHO_C" >&6
20018 else
20019   cat >conftest.$ac_ext <<_ACEOF
20020-#line 16228 "configure"
20021+#line 16229 "configure"
20022 #include "confdefs.h"
20023 #define $ac_func autoconf_temporary
20024 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
20025@@ -16256,16 +16257,16 @@
20026 }
20027 _ACEOF
20028 rm -f conftest.$ac_objext conftest$ac_exeext
20029-if { (eval echo "$as_me:16259: \"$ac_link\"") >&5
20030+if { (eval echo "$as_me:16260: \"$ac_link\"") >&5
20031   (eval $ac_link) 2>&5
20032   ac_status=$?
20033-  echo "$as_me:16262: \$? = $ac_status" >&5
20034+  echo "$as_me:16263: \$? = $ac_status" >&5
20035   (exit $ac_status); } &&
20036          { ac_try='test -s conftest$ac_exeext'
20037-  { (eval echo "$as_me:16265: \"$ac_try\"") >&5
20038+  { (eval echo "$as_me:16266: \"$ac_try\"") >&5
20039   (eval $ac_try) 2>&5
20040   ac_status=$?
20041-  echo "$as_me:16268: \$? = $ac_status" >&5
20042+  echo "$as_me:16269: \$? = $ac_status" >&5
20043   (exit $ac_status); }; }; then
20044   eval "$as_ac_var=yes"
20045 else
20046@@ -16275,7 +16276,7 @@
20047 fi
20048 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
20049 fi
20050-echo "$as_me:16278: result: `eval echo '${'$as_ac_var'}'`" >&5
20051+echo "$as_me:16279: result: `eval echo '${'$as_ac_var'}'`" >&5
20052 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
20053 if test `eval echo '${'$as_ac_var'}'` = yes; then
20054   cat >>confdefs.h <<EOF
20055@@ -16288,7 +16289,7 @@
20056 fi
20057
20058 ###	use option --enable-assertions to turn on generation of assertion code
20059-echo "$as_me:16291: checking if you want to enable runtime assertions" >&5
20060+echo "$as_me:16292: checking if you want to enable runtime assertions" >&5
20061 echo $ECHO_N "checking if you want to enable runtime assertions... $ECHO_C" >&6
20062
20063 # Check whether --enable-assertions or --disable-assertions was given.
20064@@ -16298,7 +16299,7 @@
20065 else
20066   with_assertions=no
20067 fi;
20068-echo "$as_me:16301: result: $with_assertions" >&5
20069+echo "$as_me:16302: result: $with_assertions" >&5
20070 echo "${ECHO_T}$with_assertions" >&6
20071 if test -n "$GCC"
20072 then
20073@@ -16314,7 +16315,7 @@
20074
20075 ###	use option --disable-leaks to suppress "permanent" leaks, for testing
20076
20077-echo "$as_me:16317: checking if you want to use dmalloc for testing" >&5
20078+echo "$as_me:16318: checking if you want to use dmalloc for testing" >&5
20079 echo $ECHO_N "checking if you want to use dmalloc for testing... $ECHO_C" >&6
20080
20081 # Check whether --with-dmalloc or --without-dmalloc was given.
20082@@ -16331,7 +16332,7 @@
20083 else
20084   with_dmalloc=
20085 fi;
20086-echo "$as_me:16334: result: ${with_dmalloc:-no}" >&5
20087+echo "$as_me:16335: result: ${with_dmalloc:-no}" >&5
20088 echo "${ECHO_T}${with_dmalloc:-no}" >&6
20089
20090 case .$with_cflags in
20091@@ -16445,23 +16446,23 @@
20092 esac
20093
20094 if test "$with_dmalloc" = yes ; then
20095-	echo "$as_me:16448: checking for dmalloc.h" >&5
20096+	echo "$as_me:16449: checking for dmalloc.h" >&5
20097 echo $ECHO_N "checking for dmalloc.h... $ECHO_C" >&6
20098 if test "${ac_cv_header_dmalloc_h+set}" = set; then
20099   echo $ECHO_N "(cached) $ECHO_C" >&6
20100 else
20101   cat >conftest.$ac_ext <<_ACEOF
20102-#line 16454 "configure"
20103+#line 16455 "configure"
20104 #include "confdefs.h"
20105 #include <dmalloc.h>
20106 _ACEOF
20107-if { (eval echo "$as_me:16458: \"$ac_cpp conftest.$ac_ext\"") >&5
20108+if { (eval echo "$as_me:16459: \"$ac_cpp conftest.$ac_ext\"") >&5
20109   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
20110   ac_status=$?
20111   egrep -v '^ *\+' conftest.er1 >conftest.err
20112   rm -f conftest.er1
20113   cat conftest.err >&5
20114-  echo "$as_me:16464: \$? = $ac_status" >&5
20115+  echo "$as_me:16465: \$? = $ac_status" >&5
20116   (exit $ac_status); } >/dev/null; then
20117   if test -s conftest.err; then
20118     ac_cpp_err=$ac_c_preproc_warn_flag
20119@@ -16480,11 +16481,11 @@
20120 fi
20121 rm -f conftest.err conftest.$ac_ext
20122 fi
20123-echo "$as_me:16483: result: $ac_cv_header_dmalloc_h" >&5
20124+echo "$as_me:16484: result: $ac_cv_header_dmalloc_h" >&5
20125 echo "${ECHO_T}$ac_cv_header_dmalloc_h" >&6
20126 if test $ac_cv_header_dmalloc_h = yes; then
20127
20128-echo "$as_me:16487: checking for dmalloc_debug in -ldmalloc" >&5
20129+echo "$as_me:16488: checking for dmalloc_debug in -ldmalloc" >&5
20130 echo $ECHO_N "checking for dmalloc_debug in -ldmalloc... $ECHO_C" >&6
20131 if test "${ac_cv_lib_dmalloc_dmalloc_debug+set}" = set; then
20132   echo $ECHO_N "(cached) $ECHO_C" >&6
20133@@ -16492,7 +16493,7 @@
20134   ac_check_lib_save_LIBS=$LIBS
20135 LIBS="-ldmalloc  $LIBS"
20136 cat >conftest.$ac_ext <<_ACEOF
20137-#line 16495 "configure"
20138+#line 16496 "configure"
20139 #include "confdefs.h"
20140
20141 /* Override any gcc2 internal prototype to avoid an error.  */
20142@@ -16511,16 +16512,16 @@
20143 }
20144 _ACEOF
20145 rm -f conftest.$ac_objext conftest$ac_exeext
20146-if { (eval echo "$as_me:16514: \"$ac_link\"") >&5
20147+if { (eval echo "$as_me:16515: \"$ac_link\"") >&5
20148   (eval $ac_link) 2>&5
20149   ac_status=$?
20150-  echo "$as_me:16517: \$? = $ac_status" >&5
20151+  echo "$as_me:16518: \$? = $ac_status" >&5
20152   (exit $ac_status); } &&
20153          { ac_try='test -s conftest$ac_exeext'
20154-  { (eval echo "$as_me:16520: \"$ac_try\"") >&5
20155+  { (eval echo "$as_me:16521: \"$ac_try\"") >&5
20156   (eval $ac_try) 2>&5
20157   ac_status=$?
20158-  echo "$as_me:16523: \$? = $ac_status" >&5
20159+  echo "$as_me:16524: \$? = $ac_status" >&5
20160   (exit $ac_status); }; }; then
20161   ac_cv_lib_dmalloc_dmalloc_debug=yes
20162 else
20163@@ -16531,7 +16532,7 @@
20164 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
20165 LIBS=$ac_check_lib_save_LIBS
20166 fi
20167-echo "$as_me:16534: result: $ac_cv_lib_dmalloc_dmalloc_debug" >&5
20168+echo "$as_me:16535: result: $ac_cv_lib_dmalloc_dmalloc_debug" >&5
20169 echo "${ECHO_T}$ac_cv_lib_dmalloc_dmalloc_debug" >&6
20170 if test $ac_cv_lib_dmalloc_dmalloc_debug = yes; then
20171   cat >>confdefs.h <<EOF
20172@@ -16546,7 +16547,7 @@
20173
20174 fi
20175
20176-echo "$as_me:16549: checking if you want to use dbmalloc for testing" >&5
20177+echo "$as_me:16550: checking if you want to use dbmalloc for testing" >&5
20178 echo $ECHO_N "checking if you want to use dbmalloc for testing... $ECHO_C" >&6
20179
20180 # Check whether --with-dbmalloc or --without-dbmalloc was given.
20181@@ -16563,7 +16564,7 @@
20182 else
20183   with_dbmalloc=
20184 fi;
20185-echo "$as_me:16566: result: ${with_dbmalloc:-no}" >&5
20186+echo "$as_me:16567: result: ${with_dbmalloc:-no}" >&5
20187 echo "${ECHO_T}${with_dbmalloc:-no}" >&6
20188
20189 case .$with_cflags in
20190@@ -16677,23 +16678,23 @@
20191 esac
20192
20193 if test "$with_dbmalloc" = yes ; then
20194-	echo "$as_me:16680: checking for dbmalloc.h" >&5
20195+	echo "$as_me:16681: checking for dbmalloc.h" >&5
20196 echo $ECHO_N "checking for dbmalloc.h... $ECHO_C" >&6
20197 if test "${ac_cv_header_dbmalloc_h+set}" = set; then
20198   echo $ECHO_N "(cached) $ECHO_C" >&6
20199 else
20200   cat >conftest.$ac_ext <<_ACEOF
20201-#line 16686 "configure"
20202+#line 16687 "configure"
20203 #include "confdefs.h"
20204 #include <dbmalloc.h>
20205 _ACEOF
20206-if { (eval echo "$as_me:16690: \"$ac_cpp conftest.$ac_ext\"") >&5
20207+if { (eval echo "$as_me:16691: \"$ac_cpp conftest.$ac_ext\"") >&5
20208   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
20209   ac_status=$?
20210   egrep -v '^ *\+' conftest.er1 >conftest.err
20211   rm -f conftest.er1
20212   cat conftest.err >&5
20213-  echo "$as_me:16696: \$? = $ac_status" >&5
20214+  echo "$as_me:16697: \$? = $ac_status" >&5
20215   (exit $ac_status); } >/dev/null; then
20216   if test -s conftest.err; then
20217     ac_cpp_err=$ac_c_preproc_warn_flag
20218@@ -16712,11 +16713,11 @@
20219 fi
20220 rm -f conftest.err conftest.$ac_ext
20221 fi
20222-echo "$as_me:16715: result: $ac_cv_header_dbmalloc_h" >&5
20223+echo "$as_me:16716: result: $ac_cv_header_dbmalloc_h" >&5
20224 echo "${ECHO_T}$ac_cv_header_dbmalloc_h" >&6
20225 if test $ac_cv_header_dbmalloc_h = yes; then
20226
20227-echo "$as_me:16719: checking for debug_malloc in -ldbmalloc" >&5
20228+echo "$as_me:16720: checking for debug_malloc in -ldbmalloc" >&5
20229 echo $ECHO_N "checking for debug_malloc in -ldbmalloc... $ECHO_C" >&6
20230 if test "${ac_cv_lib_dbmalloc_debug_malloc+set}" = set; then
20231   echo $ECHO_N "(cached) $ECHO_C" >&6
20232@@ -16724,7 +16725,7 @@
20233   ac_check_lib_save_LIBS=$LIBS
20234 LIBS="-ldbmalloc  $LIBS"
20235 cat >conftest.$ac_ext <<_ACEOF
20236-#line 16727 "configure"
20237+#line 16728 "configure"
20238 #include "confdefs.h"
20239
20240 /* Override any gcc2 internal prototype to avoid an error.  */
20241@@ -16743,16 +16744,16 @@
20242 }
20243 _ACEOF
20244 rm -f conftest.$ac_objext conftest$ac_exeext
20245-if { (eval echo "$as_me:16746: \"$ac_link\"") >&5
20246+if { (eval echo "$as_me:16747: \"$ac_link\"") >&5
20247   (eval $ac_link) 2>&5
20248   ac_status=$?
20249-  echo "$as_me:16749: \$? = $ac_status" >&5
20250+  echo "$as_me:16750: \$? = $ac_status" >&5
20251   (exit $ac_status); } &&
20252          { ac_try='test -s conftest$ac_exeext'
20253-  { (eval echo "$as_me:16752: \"$ac_try\"") >&5
20254+  { (eval echo "$as_me:16753: \"$ac_try\"") >&5
20255   (eval $ac_try) 2>&5
20256   ac_status=$?
20257-  echo "$as_me:16755: \$? = $ac_status" >&5
20258+  echo "$as_me:16756: \$? = $ac_status" >&5
20259   (exit $ac_status); }; }; then
20260   ac_cv_lib_dbmalloc_debug_malloc=yes
20261 else
20262@@ -16763,7 +16764,7 @@
20263 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
20264 LIBS=$ac_check_lib_save_LIBS
20265 fi
20266-echo "$as_me:16766: result: $ac_cv_lib_dbmalloc_debug_malloc" >&5
20267+echo "$as_me:16767: result: $ac_cv_lib_dbmalloc_debug_malloc" >&5
20268 echo "${ECHO_T}$ac_cv_lib_dbmalloc_debug_malloc" >&6
20269 if test $ac_cv_lib_dbmalloc_debug_malloc = yes; then
20270   cat >>confdefs.h <<EOF
20271@@ -16778,7 +16779,7 @@
20272
20273 fi
20274
20275-echo "$as_me:16781: checking if you want to use valgrind for testing" >&5
20276+echo "$as_me:16782: checking if you want to use valgrind for testing" >&5
20277 echo $ECHO_N "checking if you want to use valgrind for testing... $ECHO_C" >&6
20278
20279 # Check whether --with-valgrind or --without-valgrind was given.
20280@@ -16795,7 +16796,7 @@
20281 else
20282   with_valgrind=
20283 fi;
20284-echo "$as_me:16798: result: ${with_valgrind:-no}" >&5
20285+echo "$as_me:16799: result: ${with_valgrind:-no}" >&5
20286 echo "${ECHO_T}${with_valgrind:-no}" >&6
20287
20288 case .$with_cflags in
20289@@ -16908,7 +16909,7 @@
20290 	;;
20291 esac
20292
20293-echo "$as_me:16911: checking if you want to perform memory-leak testing" >&5
20294+echo "$as_me:16912: checking if you want to perform memory-leak testing" >&5
20295 echo $ECHO_N "checking if you want to perform memory-leak testing... $ECHO_C" >&6
20296
20297 # Check whether --enable-leaks or --disable-leaks was given.
20298@@ -16918,7 +16919,7 @@
20299 else
20300   : ${with_no_leaks:=no}
20301 fi;
20302-echo "$as_me:16921: result: $with_no_leaks" >&5
20303+echo "$as_me:16922: result: $with_no_leaks" >&5
20304 echo "${ECHO_T}$with_no_leaks" >&6
20305
20306 if test "$with_no_leaks" = yes ; then
20307@@ -16970,7 +16971,7 @@
20308 	;;
20309 esac
20310
20311-echo "$as_me:16973: checking whether to add trace feature to all models" >&5
20312+echo "$as_me:16974: checking whether to add trace feature to all models" >&5
20313 echo $ECHO_N "checking whether to add trace feature to all models... $ECHO_C" >&6
20314
20315 # Check whether --with-trace or --without-trace was given.
20316@@ -16980,7 +16981,7 @@
20317 else
20318   cf_with_trace=$cf_all_traces
20319 fi;
20320-echo "$as_me:16983: result: $cf_with_trace" >&5
20321+echo "$as_me:16984: result: $cf_with_trace" >&5
20322 echo "${ECHO_T}$cf_with_trace" >&6
20323
20324 if test "x$cf_with_trace" = xyes ; then
20325@@ -17094,7 +17095,7 @@
20326 	ADA_TRACE=FALSE
20327 fi
20328
20329-echo "$as_me:17097: checking if we want to use GNAT projects" >&5
20330+echo "$as_me:17098: checking if we want to use GNAT projects" >&5
20331 echo $ECHO_N "checking if we want to use GNAT projects... $ECHO_C" >&6
20332
20333 # Check whether --enable-gnat-projects or --disable-gnat-projects was given.
20334@@ -17111,7 +17112,7 @@
20335 	enable_gnat_projects=yes
20336
20337 fi;
20338-echo "$as_me:17114: result: $enable_gnat_projects" >&5
20339+echo "$as_me:17115: result: $enable_gnat_projects" >&5
20340 echo "${ECHO_T}$enable_gnat_projects" >&6
20341
20342 ###	Checks for libraries.
20343@@ -17121,13 +17122,13 @@
20344 	LIBS=" -lpsapi $LIBS"
20345 	;;
20346 (*)
20347-echo "$as_me:17124: checking for gettimeofday" >&5
20348+echo "$as_me:17125: checking for gettimeofday" >&5
20349 echo $ECHO_N "checking for gettimeofday... $ECHO_C" >&6
20350 if test "${ac_cv_func_gettimeofday+set}" = set; then
20351   echo $ECHO_N "(cached) $ECHO_C" >&6
20352 else
20353   cat >conftest.$ac_ext <<_ACEOF
20354-#line 17130 "configure"
20355+#line 17131 "configure"
20356 #include "confdefs.h"
20357 #define gettimeofday autoconf_temporary
20358 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
20359@@ -17158,16 +17159,16 @@
20360 }
20361 _ACEOF
20362 rm -f conftest.$ac_objext conftest$ac_exeext
20363-if { (eval echo "$as_me:17161: \"$ac_link\"") >&5
20364+if { (eval echo "$as_me:17162: \"$ac_link\"") >&5
20365   (eval $ac_link) 2>&5
20366   ac_status=$?
20367-  echo "$as_me:17164: \$? = $ac_status" >&5
20368+  echo "$as_me:17165: \$? = $ac_status" >&5
20369   (exit $ac_status); } &&
20370          { ac_try='test -s conftest$ac_exeext'
20371-  { (eval echo "$as_me:17167: \"$ac_try\"") >&5
20372+  { (eval echo "$as_me:17168: \"$ac_try\"") >&5
20373   (eval $ac_try) 2>&5
20374   ac_status=$?
20375-  echo "$as_me:17170: \$? = $ac_status" >&5
20376+  echo "$as_me:17171: \$? = $ac_status" >&5
20377   (exit $ac_status); }; }; then
20378   ac_cv_func_gettimeofday=yes
20379 else
20380@@ -17177,7 +17178,7 @@
20381 fi
20382 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
20383 fi
20384-echo "$as_me:17180: result: $ac_cv_func_gettimeofday" >&5
20385+echo "$as_me:17181: result: $ac_cv_func_gettimeofday" >&5
20386 echo "${ECHO_T}$ac_cv_func_gettimeofday" >&6
20387 if test $ac_cv_func_gettimeofday = yes; then
20388
20389@@ -17187,7 +17188,7 @@
20390
20391 else
20392
20393-echo "$as_me:17190: checking for gettimeofday in -lbsd" >&5
20394+echo "$as_me:17191: checking for gettimeofday in -lbsd" >&5
20395 echo $ECHO_N "checking for gettimeofday in -lbsd... $ECHO_C" >&6
20396 if test "${ac_cv_lib_bsd_gettimeofday+set}" = set; then
20397   echo $ECHO_N "(cached) $ECHO_C" >&6
20398@@ -17195,7 +17196,7 @@
20399   ac_check_lib_save_LIBS=$LIBS
20400 LIBS="-lbsd  $LIBS"
20401 cat >conftest.$ac_ext <<_ACEOF
20402-#line 17198 "configure"
20403+#line 17199 "configure"
20404 #include "confdefs.h"
20405
20406 /* Override any gcc2 internal prototype to avoid an error.  */
20407@@ -17214,16 +17215,16 @@
20408 }
20409 _ACEOF
20410 rm -f conftest.$ac_objext conftest$ac_exeext
20411-if { (eval echo "$as_me:17217: \"$ac_link\"") >&5
20412+if { (eval echo "$as_me:17218: \"$ac_link\"") >&5
20413   (eval $ac_link) 2>&5
20414   ac_status=$?
20415-  echo "$as_me:17220: \$? = $ac_status" >&5
20416+  echo "$as_me:17221: \$? = $ac_status" >&5
20417   (exit $ac_status); } &&
20418          { ac_try='test -s conftest$ac_exeext'
20419-  { (eval echo "$as_me:17223: \"$ac_try\"") >&5
20420+  { (eval echo "$as_me:17224: \"$ac_try\"") >&5
20421   (eval $ac_try) 2>&5
20422   ac_status=$?
20423-  echo "$as_me:17226: \$? = $ac_status" >&5
20424+  echo "$as_me:17227: \$? = $ac_status" >&5
20425   (exit $ac_status); }; }; then
20426   ac_cv_lib_bsd_gettimeofday=yes
20427 else
20428@@ -17234,7 +17235,7 @@
20429 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
20430 LIBS=$ac_check_lib_save_LIBS
20431 fi
20432-echo "$as_me:17237: result: $ac_cv_lib_bsd_gettimeofday" >&5
20433+echo "$as_me:17238: result: $ac_cv_lib_bsd_gettimeofday" >&5
20434 echo "${ECHO_T}$ac_cv_lib_bsd_gettimeofday" >&6
20435 if test $ac_cv_lib_bsd_gettimeofday = yes; then
20436
20437@@ -17264,14 +17265,14 @@
20438 	;;
20439 esac
20440
20441-echo "$as_me:17267: checking if -lm needed for math functions" >&5
20442+echo "$as_me:17268: checking if -lm needed for math functions" >&5
20443 echo $ECHO_N "checking if -lm needed for math functions... $ECHO_C" >&6
20444 if test "${cf_cv_need_libm+set}" = set; then
20445   echo $ECHO_N "(cached) $ECHO_C" >&6
20446 else
20447
20448 	cat >conftest.$ac_ext <<_ACEOF
20449-#line 17274 "configure"
20450+#line 17275 "configure"
20451 #include "confdefs.h"
20452
20453 	#include <stdio.h>
20454@@ -17287,16 +17288,16 @@
20455 }
20456 _ACEOF
20457 rm -f conftest.$ac_objext conftest$ac_exeext
20458-if { (eval echo "$as_me:17290: \"$ac_link\"") >&5
20459+if { (eval echo "$as_me:17291: \"$ac_link\"") >&5
20460   (eval $ac_link) 2>&5
20461   ac_status=$?
20462-  echo "$as_me:17293: \$? = $ac_status" >&5
20463+  echo "$as_me:17294: \$? = $ac_status" >&5
20464   (exit $ac_status); } &&
20465          { ac_try='test -s conftest$ac_exeext'
20466-  { (eval echo "$as_me:17296: \"$ac_try\"") >&5
20467+  { (eval echo "$as_me:17297: \"$ac_try\"") >&5
20468   (eval $ac_try) 2>&5
20469   ac_status=$?
20470-  echo "$as_me:17299: \$? = $ac_status" >&5
20471+  echo "$as_me:17300: \$? = $ac_status" >&5
20472   (exit $ac_status); }; }; then
20473   cf_cv_need_libm=no
20474 else
20475@@ -17306,7 +17307,7 @@
20476 fi
20477 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
20478 fi
20479-echo "$as_me:17309: result: $cf_cv_need_libm" >&5
20480+echo "$as_me:17310: result: $cf_cv_need_libm" >&5
20481 echo "${ECHO_T}$cf_cv_need_libm" >&6
20482 if test "$cf_cv_need_libm" = yes
20483 then
20484@@ -17314,13 +17315,13 @@
20485 fi
20486
20487 ###	Checks for header files.
20488-echo "$as_me:17317: checking for ANSI C header files" >&5
20489+echo "$as_me:17318: checking for ANSI C header files" >&5
20490 echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6
20491 if test "${ac_cv_header_stdc+set}" = set; then
20492   echo $ECHO_N "(cached) $ECHO_C" >&6
20493 else
20494   cat >conftest.$ac_ext <<_ACEOF
20495-#line 17323 "configure"
20496+#line 17324 "configure"
20497 #include "confdefs.h"
20498 #include <stdlib.h>
20499 #include <stdarg.h>
20500@@ -17328,13 +17329,13 @@
20501 #include <float.h>
20502
20503 _ACEOF
20504-if { (eval echo "$as_me:17331: \"$ac_cpp conftest.$ac_ext\"") >&5
20505+if { (eval echo "$as_me:17332: \"$ac_cpp conftest.$ac_ext\"") >&5
20506   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
20507   ac_status=$?
20508   egrep -v '^ *\+' conftest.er1 >conftest.err
20509   rm -f conftest.er1
20510   cat conftest.err >&5
20511-  echo "$as_me:17337: \$? = $ac_status" >&5
20512+  echo "$as_me:17338: \$? = $ac_status" >&5
20513   (exit $ac_status); } >/dev/null; then
20514   if test -s conftest.err; then
20515     ac_cpp_err=$ac_c_preproc_warn_flag
20516@@ -17356,7 +17357,7 @@
20517 if test $ac_cv_header_stdc = yes; then
20518   # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
20519   cat >conftest.$ac_ext <<_ACEOF
20520-#line 17359 "configure"
20521+#line 17360 "configure"
20522 #include "confdefs.h"
20523 #include <string.h>
20524
20525@@ -17374,7 +17375,7 @@
20526 if test $ac_cv_header_stdc = yes; then
20527   # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
20528   cat >conftest.$ac_ext <<_ACEOF
20529-#line 17377 "configure"
20530+#line 17378 "configure"
20531 #include "confdefs.h"
20532 #include <stdlib.h>
20533
20534@@ -17395,7 +17396,7 @@
20535   :
20536 else
20537   cat >conftest.$ac_ext <<_ACEOF
20538-#line 17398 "configure"
20539+#line 17399 "configure"
20540 #include "confdefs.h"
20541 #include <ctype.h>
20542 #if ((' ' & 0x0FF) == 0x020)
20543@@ -17421,15 +17422,15 @@
20544 }
20545 _ACEOF
20546 rm -f conftest$ac_exeext
20547-if { (eval echo "$as_me:17424: \"$ac_link\"") >&5
20548+if { (eval echo "$as_me:17425: \"$ac_link\"") >&5
20549   (eval $ac_link) 2>&5
20550   ac_status=$?
20551-  echo "$as_me:17427: \$? = $ac_status" >&5
20552+  echo "$as_me:17428: \$? = $ac_status" >&5
20553   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
20554-  { (eval echo "$as_me:17429: \"$ac_try\"") >&5
20555+  { (eval echo "$as_me:17430: \"$ac_try\"") >&5
20556   (eval $ac_try) 2>&5
20557   ac_status=$?
20558-  echo "$as_me:17432: \$? = $ac_status" >&5
20559+  echo "$as_me:17433: \$? = $ac_status" >&5
20560   (exit $ac_status); }; }; then
20561   :
20562 else
20563@@ -17442,7 +17443,7 @@
20564 fi
20565 fi
20566 fi
20567-echo "$as_me:17445: result: $ac_cv_header_stdc" >&5
20568+echo "$as_me:17446: result: $ac_cv_header_stdc" >&5
20569 echo "${ECHO_T}$ac_cv_header_stdc" >&6
20570 if test $ac_cv_header_stdc = yes; then
20571
20572@@ -17455,13 +17456,13 @@
20573 ac_header_dirent=no
20574 for ac_hdr in dirent.h sys/ndir.h sys/dir.h ndir.h; do
20575   as_ac_Header=`echo "ac_cv_header_dirent_$ac_hdr" | $as_tr_sh`
20576-echo "$as_me:17458: checking for $ac_hdr that defines DIR" >&5
20577+echo "$as_me:17459: checking for $ac_hdr that defines DIR" >&5
20578 echo $ECHO_N "checking for $ac_hdr that defines DIR... $ECHO_C" >&6
20579 if eval "test \"\${$as_ac_Header+set}\" = set"; then
20580   echo $ECHO_N "(cached) $ECHO_C" >&6
20581 else
20582   cat >conftest.$ac_ext <<_ACEOF
20583-#line 17464 "configure"
20584+#line 17465 "configure"
20585 #include "confdefs.h"
20586 #include <sys/types.h>
20587 #include <$ac_hdr>
20588@@ -17476,16 +17477,16 @@
20589 }
20590 _ACEOF
20591 rm -f conftest.$ac_objext
20592-if { (eval echo "$as_me:17479: \"$ac_compile\"") >&5
20593+if { (eval echo "$as_me:17480: \"$ac_compile\"") >&5
20594   (eval $ac_compile) 2>&5
20595   ac_status=$?
20596-  echo "$as_me:17482: \$? = $ac_status" >&5
20597+  echo "$as_me:17483: \$? = $ac_status" >&5
20598   (exit $ac_status); } &&
20599          { ac_try='test -s conftest.$ac_objext'
20600-  { (eval echo "$as_me:17485: \"$ac_try\"") >&5
20601+  { (eval echo "$as_me:17486: \"$ac_try\"") >&5
20602   (eval $ac_try) 2>&5
20603   ac_status=$?
20604-  echo "$as_me:17488: \$? = $ac_status" >&5
20605+  echo "$as_me:17489: \$? = $ac_status" >&5
20606   (exit $ac_status); }; }; then
20607   eval "$as_ac_Header=yes"
20608 else
20609@@ -17495,7 +17496,7 @@
20610 fi
20611 rm -f conftest.$ac_objext conftest.$ac_ext
20612 fi
20613-echo "$as_me:17498: result: `eval echo '${'$as_ac_Header'}'`" >&5
20614+echo "$as_me:17499: result: `eval echo '${'$as_ac_Header'}'`" >&5
20615 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
20616 if test `eval echo '${'$as_ac_Header'}'` = yes; then
20617   cat >>confdefs.h <<EOF
20618@@ -17508,7 +17509,7 @@
20619 done
20620 # Two versions of opendir et al. are in -ldir and -lx on SCO Xenix.
20621 if test $ac_header_dirent = dirent.h; then
20622-  echo "$as_me:17511: checking for opendir in -ldir" >&5
20623+  echo "$as_me:17512: checking for opendir in -ldir" >&5
20624 echo $ECHO_N "checking for opendir in -ldir... $ECHO_C" >&6
20625 if test "${ac_cv_lib_dir_opendir+set}" = set; then
20626   echo $ECHO_N "(cached) $ECHO_C" >&6
20627@@ -17516,7 +17517,7 @@
20628   ac_check_lib_save_LIBS=$LIBS
20629 LIBS="-ldir  $LIBS"
20630 cat >conftest.$ac_ext <<_ACEOF
20631-#line 17519 "configure"
20632+#line 17520 "configure"
20633 #include "confdefs.h"
20634
20635 /* Override any gcc2 internal prototype to avoid an error.  */
20636@@ -17535,16 +17536,16 @@
20637 }
20638 _ACEOF
20639 rm -f conftest.$ac_objext conftest$ac_exeext
20640-if { (eval echo "$as_me:17538: \"$ac_link\"") >&5
20641+if { (eval echo "$as_me:17539: \"$ac_link\"") >&5
20642   (eval $ac_link) 2>&5
20643   ac_status=$?
20644-  echo "$as_me:17541: \$? = $ac_status" >&5
20645+  echo "$as_me:17542: \$? = $ac_status" >&5
20646   (exit $ac_status); } &&
20647          { ac_try='test -s conftest$ac_exeext'
20648-  { (eval echo "$as_me:17544: \"$ac_try\"") >&5
20649+  { (eval echo "$as_me:17545: \"$ac_try\"") >&5
20650   (eval $ac_try) 2>&5
20651   ac_status=$?
20652-  echo "$as_me:17547: \$? = $ac_status" >&5
20653+  echo "$as_me:17548: \$? = $ac_status" >&5
20654   (exit $ac_status); }; }; then
20655   ac_cv_lib_dir_opendir=yes
20656 else
20657@@ -17555,14 +17556,14 @@
20658 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
20659 LIBS=$ac_check_lib_save_LIBS
20660 fi
20661-echo "$as_me:17558: result: $ac_cv_lib_dir_opendir" >&5
20662+echo "$as_me:17559: result: $ac_cv_lib_dir_opendir" >&5
20663 echo "${ECHO_T}$ac_cv_lib_dir_opendir" >&6
20664 if test $ac_cv_lib_dir_opendir = yes; then
20665   LIBS="$LIBS -ldir"
20666 fi
20667
20668 else
20669-  echo "$as_me:17565: checking for opendir in -lx" >&5
20670+  echo "$as_me:17566: checking for opendir in -lx" >&5
20671 echo $ECHO_N "checking for opendir in -lx... $ECHO_C" >&6
20672 if test "${ac_cv_lib_x_opendir+set}" = set; then
20673   echo $ECHO_N "(cached) $ECHO_C" >&6
20674@@ -17570,7 +17571,7 @@
20675   ac_check_lib_save_LIBS=$LIBS
20676 LIBS="-lx  $LIBS"
20677 cat >conftest.$ac_ext <<_ACEOF
20678-#line 17573 "configure"
20679+#line 17574 "configure"
20680 #include "confdefs.h"
20681
20682 /* Override any gcc2 internal prototype to avoid an error.  */
20683@@ -17589,16 +17590,16 @@
20684 }
20685 _ACEOF
20686 rm -f conftest.$ac_objext conftest$ac_exeext
20687-if { (eval echo "$as_me:17592: \"$ac_link\"") >&5
20688+if { (eval echo "$as_me:17593: \"$ac_link\"") >&5
20689   (eval $ac_link) 2>&5
20690   ac_status=$?
20691-  echo "$as_me:17595: \$? = $ac_status" >&5
20692+  echo "$as_me:17596: \$? = $ac_status" >&5
20693   (exit $ac_status); } &&
20694          { ac_try='test -s conftest$ac_exeext'
20695-  { (eval echo "$as_me:17598: \"$ac_try\"") >&5
20696+  { (eval echo "$as_me:17599: \"$ac_try\"") >&5
20697   (eval $ac_try) 2>&5
20698   ac_status=$?
20699-  echo "$as_me:17601: \$? = $ac_status" >&5
20700+  echo "$as_me:17602: \$? = $ac_status" >&5
20701   (exit $ac_status); }; }; then
20702   ac_cv_lib_x_opendir=yes
20703 else
20704@@ -17609,7 +17610,7 @@
20705 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
20706 LIBS=$ac_check_lib_save_LIBS
20707 fi
20708-echo "$as_me:17612: result: $ac_cv_lib_x_opendir" >&5
20709+echo "$as_me:17613: result: $ac_cv_lib_x_opendir" >&5
20710 echo "${ECHO_T}$ac_cv_lib_x_opendir" >&6
20711 if test $ac_cv_lib_x_opendir = yes; then
20712   LIBS="$LIBS -lx"
20713@@ -17617,13 +17618,13 @@
20714
20715 fi
20716
20717-echo "$as_me:17620: checking whether time.h and sys/time.h may both be included" >&5
20718+echo "$as_me:17621: checking whether time.h and sys/time.h may both be included" >&5
20719 echo $ECHO_N "checking whether time.h and sys/time.h may both be included... $ECHO_C" >&6
20720 if test "${ac_cv_header_time+set}" = set; then
20721   echo $ECHO_N "(cached) $ECHO_C" >&6
20722 else
20723   cat >conftest.$ac_ext <<_ACEOF
20724-#line 17626 "configure"
20725+#line 17627 "configure"
20726 #include "confdefs.h"
20727 #include <sys/types.h>
20728 #include <sys/time.h>
20729@@ -17639,16 +17640,16 @@
20730 }
20731 _ACEOF
20732 rm -f conftest.$ac_objext
20733-if { (eval echo "$as_me:17642: \"$ac_compile\"") >&5
20734+if { (eval echo "$as_me:17643: \"$ac_compile\"") >&5
20735   (eval $ac_compile) 2>&5
20736   ac_status=$?
20737-  echo "$as_me:17645: \$? = $ac_status" >&5
20738+  echo "$as_me:17646: \$? = $ac_status" >&5
20739   (exit $ac_status); } &&
20740          { ac_try='test -s conftest.$ac_objext'
20741-  { (eval echo "$as_me:17648: \"$ac_try\"") >&5
20742+  { (eval echo "$as_me:17649: \"$ac_try\"") >&5
20743   (eval $ac_try) 2>&5
20744   ac_status=$?
20745-  echo "$as_me:17651: \$? = $ac_status" >&5
20746+  echo "$as_me:17652: \$? = $ac_status" >&5
20747   (exit $ac_status); }; }; then
20748   ac_cv_header_time=yes
20749 else
20750@@ -17658,7 +17659,7 @@
20751 fi
20752 rm -f conftest.$ac_objext conftest.$ac_ext
20753 fi
20754-echo "$as_me:17661: result: $ac_cv_header_time" >&5
20755+echo "$as_me:17662: result: $ac_cv_header_time" >&5
20756 echo "${ECHO_T}$ac_cv_header_time" >&6
20757 if test $ac_cv_header_time = yes; then
20758
20759@@ -17677,13 +17678,13 @@
20760 	;;
20761 esac
20762
20763-echo "$as_me:17680: checking for regcomp" >&5
20764+echo "$as_me:17681: checking for regcomp" >&5
20765 echo $ECHO_N "checking for regcomp... $ECHO_C" >&6
20766 if test "${ac_cv_func_regcomp+set}" = set; then
20767   echo $ECHO_N "(cached) $ECHO_C" >&6
20768 else
20769   cat >conftest.$ac_ext <<_ACEOF
20770-#line 17686 "configure"
20771+#line 17687 "configure"
20772 #include "confdefs.h"
20773 #define regcomp autoconf_temporary
20774 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
20775@@ -17714,16 +17715,16 @@
20776 }
20777 _ACEOF
20778 rm -f conftest.$ac_objext conftest$ac_exeext
20779-if { (eval echo "$as_me:17717: \"$ac_link\"") >&5
20780+if { (eval echo "$as_me:17718: \"$ac_link\"") >&5
20781   (eval $ac_link) 2>&5
20782   ac_status=$?
20783-  echo "$as_me:17720: \$? = $ac_status" >&5
20784+  echo "$as_me:17721: \$? = $ac_status" >&5
20785   (exit $ac_status); } &&
20786          { ac_try='test -s conftest$ac_exeext'
20787-  { (eval echo "$as_me:17723: \"$ac_try\"") >&5
20788+  { (eval echo "$as_me:17724: \"$ac_try\"") >&5
20789   (eval $ac_try) 2>&5
20790   ac_status=$?
20791-  echo "$as_me:17726: \$? = $ac_status" >&5
20792+  echo "$as_me:17727: \$? = $ac_status" >&5
20793   (exit $ac_status); }; }; then
20794   ac_cv_func_regcomp=yes
20795 else
20796@@ -17733,7 +17734,7 @@
20797 fi
20798 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
20799 fi
20800-echo "$as_me:17736: result: $ac_cv_func_regcomp" >&5
20801+echo "$as_me:17737: result: $ac_cv_func_regcomp" >&5
20802 echo "${ECHO_T}$ac_cv_func_regcomp" >&6
20803 if test $ac_cv_func_regcomp = yes; then
20804   cf_regex_func=regcomp
20805@@ -17742,7 +17743,7 @@
20806 	for cf_regex_lib in $cf_regex_libs
20807 	do
20808 		as_ac_Lib=`echo "ac_cv_lib_$cf_regex_lib''_regcomp" | $as_tr_sh`
20809-echo "$as_me:17745: checking for regcomp in -l$cf_regex_lib" >&5
20810+echo "$as_me:17746: checking for regcomp in -l$cf_regex_lib" >&5
20811 echo $ECHO_N "checking for regcomp in -l$cf_regex_lib... $ECHO_C" >&6
20812 if eval "test \"\${$as_ac_Lib+set}\" = set"; then
20813   echo $ECHO_N "(cached) $ECHO_C" >&6
20814@@ -17750,7 +17751,7 @@
20815   ac_check_lib_save_LIBS=$LIBS
20816 LIBS="-l$cf_regex_lib  $LIBS"
20817 cat >conftest.$ac_ext <<_ACEOF
20818-#line 17753 "configure"
20819+#line 17754 "configure"
20820 #include "confdefs.h"
20821
20822 /* Override any gcc2 internal prototype to avoid an error.  */
20823@@ -17769,16 +17770,16 @@
20824 }
20825 _ACEOF
20826 rm -f conftest.$ac_objext conftest$ac_exeext
20827-if { (eval echo "$as_me:17772: \"$ac_link\"") >&5
20828+if { (eval echo "$as_me:17773: \"$ac_link\"") >&5
20829   (eval $ac_link) 2>&5
20830   ac_status=$?
20831-  echo "$as_me:17775: \$? = $ac_status" >&5
20832+  echo "$as_me:17776: \$? = $ac_status" >&5
20833   (exit $ac_status); } &&
20834          { ac_try='test -s conftest$ac_exeext'
20835-  { (eval echo "$as_me:17778: \"$ac_try\"") >&5
20836+  { (eval echo "$as_me:17779: \"$ac_try\"") >&5
20837   (eval $ac_try) 2>&5
20838   ac_status=$?
20839-  echo "$as_me:17781: \$? = $ac_status" >&5
20840+  echo "$as_me:17782: \$? = $ac_status" >&5
20841   (exit $ac_status); }; }; then
20842   eval "$as_ac_Lib=yes"
20843 else
20844@@ -17789,7 +17790,7 @@
20845 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
20846 LIBS=$ac_check_lib_save_LIBS
20847 fi
20848-echo "$as_me:17792: result: `eval echo '${'$as_ac_Lib'}'`" >&5
20849+echo "$as_me:17793: result: `eval echo '${'$as_ac_Lib'}'`" >&5
20850 echo "${ECHO_T}`eval echo '${'$as_ac_Lib'}'`" >&6
20851 if test `eval echo '${'$as_ac_Lib'}'` = yes; then
20852
20853@@ -17818,13 +17819,13 @@
20854 fi
20855
20856 if test "$cf_regex_func" = no ; then
20857-	echo "$as_me:17821: checking for compile" >&5
20858+	echo "$as_me:17822: checking for compile" >&5
20859 echo $ECHO_N "checking for compile... $ECHO_C" >&6
20860 if test "${ac_cv_func_compile+set}" = set; then
20861   echo $ECHO_N "(cached) $ECHO_C" >&6
20862 else
20863   cat >conftest.$ac_ext <<_ACEOF
20864-#line 17827 "configure"
20865+#line 17828 "configure"
20866 #include "confdefs.h"
20867 #define compile autoconf_temporary
20868 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
20869@@ -17855,16 +17856,16 @@
20870 }
20871 _ACEOF
20872 rm -f conftest.$ac_objext conftest$ac_exeext
20873-if { (eval echo "$as_me:17858: \"$ac_link\"") >&5
20874+if { (eval echo "$as_me:17859: \"$ac_link\"") >&5
20875   (eval $ac_link) 2>&5
20876   ac_status=$?
20877-  echo "$as_me:17861: \$? = $ac_status" >&5
20878+  echo "$as_me:17862: \$? = $ac_status" >&5
20879   (exit $ac_status); } &&
20880          { ac_try='test -s conftest$ac_exeext'
20881-  { (eval echo "$as_me:17864: \"$ac_try\"") >&5
20882+  { (eval echo "$as_me:17865: \"$ac_try\"") >&5
20883   (eval $ac_try) 2>&5
20884   ac_status=$?
20885-  echo "$as_me:17867: \$? = $ac_status" >&5
20886+  echo "$as_me:17868: \$? = $ac_status" >&5
20887   (exit $ac_status); }; }; then
20888   ac_cv_func_compile=yes
20889 else
20890@@ -17874,13 +17875,13 @@
20891 fi
20892 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
20893 fi
20894-echo "$as_me:17877: result: $ac_cv_func_compile" >&5
20895+echo "$as_me:17878: result: $ac_cv_func_compile" >&5
20896 echo "${ECHO_T}$ac_cv_func_compile" >&6
20897 if test $ac_cv_func_compile = yes; then
20898   cf_regex_func=compile
20899 else
20900
20901-		echo "$as_me:17883: checking for compile in -lgen" >&5
20902+		echo "$as_me:17884: checking for compile in -lgen" >&5
20903 echo $ECHO_N "checking for compile in -lgen... $ECHO_C" >&6
20904 if test "${ac_cv_lib_gen_compile+set}" = set; then
20905   echo $ECHO_N "(cached) $ECHO_C" >&6
20906@@ -17888,7 +17889,7 @@
20907   ac_check_lib_save_LIBS=$LIBS
20908 LIBS="-lgen  $LIBS"
20909 cat >conftest.$ac_ext <<_ACEOF
20910-#line 17891 "configure"
20911+#line 17892 "configure"
20912 #include "confdefs.h"
20913
20914 /* Override any gcc2 internal prototype to avoid an error.  */
20915@@ -17907,16 +17908,16 @@
20916 }
20917 _ACEOF
20918 rm -f conftest.$ac_objext conftest$ac_exeext
20919-if { (eval echo "$as_me:17910: \"$ac_link\"") >&5
20920+if { (eval echo "$as_me:17911: \"$ac_link\"") >&5
20921   (eval $ac_link) 2>&5
20922   ac_status=$?
20923-  echo "$as_me:17913: \$? = $ac_status" >&5
20924+  echo "$as_me:17914: \$? = $ac_status" >&5
20925   (exit $ac_status); } &&
20926          { ac_try='test -s conftest$ac_exeext'
20927-  { (eval echo "$as_me:17916: \"$ac_try\"") >&5
20928+  { (eval echo "$as_me:17917: \"$ac_try\"") >&5
20929   (eval $ac_try) 2>&5
20930   ac_status=$?
20931-  echo "$as_me:17919: \$? = $ac_status" >&5
20932+  echo "$as_me:17920: \$? = $ac_status" >&5
20933   (exit $ac_status); }; }; then
20934   ac_cv_lib_gen_compile=yes
20935 else
20936@@ -17927,7 +17928,7 @@
20937 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
20938 LIBS=$ac_check_lib_save_LIBS
20939 fi
20940-echo "$as_me:17930: result: $ac_cv_lib_gen_compile" >&5
20941+echo "$as_me:17931: result: $ac_cv_lib_gen_compile" >&5
20942 echo "${ECHO_T}$ac_cv_lib_gen_compile" >&6
20943 if test $ac_cv_lib_gen_compile = yes; then
20944
20945@@ -17955,11 +17956,11 @@
20946 fi
20947
20948 if test "$cf_regex_func" = no ; then
20949-	{ echo "$as_me:17958: WARNING: cannot find regular expression library" >&5
20950+	{ echo "$as_me:17959: WARNING: cannot find regular expression library" >&5
20951 echo "$as_me: WARNING: cannot find regular expression library" >&2;}
20952 fi
20953
20954-echo "$as_me:17962: checking for regular-expression headers" >&5
20955+echo "$as_me:17963: checking for regular-expression headers" >&5
20956 echo $ECHO_N "checking for regular-expression headers... $ECHO_C" >&6
20957 if test "${cf_cv_regex_hdrs+set}" = set; then
20958   echo $ECHO_N "(cached) $ECHO_C" >&6
20959@@ -17971,7 +17972,7 @@
20960 	for cf_regex_hdr in regexp.h regexpr.h
20961 	do
20962 		cat >conftest.$ac_ext <<_ACEOF
20963-#line 17974 "configure"
20964+#line 17975 "configure"
20965 #include "confdefs.h"
20966 #include <$cf_regex_hdr>
20967 int
20968@@ -17986,16 +17987,16 @@
20969 }
20970 _ACEOF
20971 rm -f conftest.$ac_objext conftest$ac_exeext
20972-if { (eval echo "$as_me:17989: \"$ac_link\"") >&5
20973+if { (eval echo "$as_me:17990: \"$ac_link\"") >&5
20974   (eval $ac_link) 2>&5
20975   ac_status=$?
20976-  echo "$as_me:17992: \$? = $ac_status" >&5
20977+  echo "$as_me:17993: \$? = $ac_status" >&5
20978   (exit $ac_status); } &&
20979          { ac_try='test -s conftest$ac_exeext'
20980-  { (eval echo "$as_me:17995: \"$ac_try\"") >&5
20981+  { (eval echo "$as_me:17996: \"$ac_try\"") >&5
20982   (eval $ac_try) 2>&5
20983   ac_status=$?
20984-  echo "$as_me:17998: \$? = $ac_status" >&5
20985+  echo "$as_me:17999: \$? = $ac_status" >&5
20986   (exit $ac_status); }; }; then
20987
20988 			cf_cv_regex_hdrs=$cf_regex_hdr
20989@@ -18012,7 +18013,7 @@
20990 	for cf_regex_hdr in regex.h
20991 	do
20992 		cat >conftest.$ac_ext <<_ACEOF
20993-#line 18015 "configure"
20994+#line 18016 "configure"
20995 #include "confdefs.h"
20996 #include <sys/types.h>
20997 #include <$cf_regex_hdr>
20998@@ -18030,16 +18031,16 @@
20999 }
21000 _ACEOF
21001 rm -f conftest.$ac_objext conftest$ac_exeext
21002-if { (eval echo "$as_me:18033: \"$ac_link\"") >&5
21003+if { (eval echo "$as_me:18034: \"$ac_link\"") >&5
21004   (eval $ac_link) 2>&5
21005   ac_status=$?
21006-  echo "$as_me:18036: \$? = $ac_status" >&5
21007+  echo "$as_me:18037: \$? = $ac_status" >&5
21008   (exit $ac_status); } &&
21009          { ac_try='test -s conftest$ac_exeext'
21010-  { (eval echo "$as_me:18039: \"$ac_try\"") >&5
21011+  { (eval echo "$as_me:18040: \"$ac_try\"") >&5
21012   (eval $ac_try) 2>&5
21013   ac_status=$?
21014-  echo "$as_me:18042: \$? = $ac_status" >&5
21015+  echo "$as_me:18043: \$? = $ac_status" >&5
21016   (exit $ac_status); }; }; then
21017
21018 			cf_cv_regex_hdrs=$cf_regex_hdr
21019@@ -18055,11 +18056,11 @@
21020 esac
21021
21022 fi
21023-echo "$as_me:18058: result: $cf_cv_regex_hdrs" >&5
21024+echo "$as_me:18059: result: $cf_cv_regex_hdrs" >&5
21025 echo "${ECHO_T}$cf_cv_regex_hdrs" >&6
21026
21027 case $cf_cv_regex_hdrs in
21028-	(no)		{ echo "$as_me:18062: WARNING: no regular expression header found" >&5
21029+	(no)		{ echo "$as_me:18063: WARNING: no regular expression header found" >&5
21030 echo "$as_me: WARNING: no regular expression header found" >&2;} ;;
21031 	(regex.h)
21032 cat >>confdefs.h <<\EOF
21033@@ -18098,23 +18099,23 @@
21034
21035 do
21036 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
21037-echo "$as_me:18101: checking for $ac_header" >&5
21038+echo "$as_me:18102: checking for $ac_header" >&5
21039 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
21040 if eval "test \"\${$as_ac_Header+set}\" = set"; then
21041   echo $ECHO_N "(cached) $ECHO_C" >&6
21042 else
21043   cat >conftest.$ac_ext <<_ACEOF
21044-#line 18107 "configure"
21045+#line 18108 "configure"
21046 #include "confdefs.h"
21047 #include <$ac_header>
21048 _ACEOF
21049-if { (eval echo "$as_me:18111: \"$ac_cpp conftest.$ac_ext\"") >&5
21050+if { (eval echo "$as_me:18112: \"$ac_cpp conftest.$ac_ext\"") >&5
21051   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
21052   ac_status=$?
21053   egrep -v '^ *\+' conftest.er1 >conftest.err
21054   rm -f conftest.er1
21055   cat conftest.err >&5
21056-  echo "$as_me:18117: \$? = $ac_status" >&5
21057+  echo "$as_me:18118: \$? = $ac_status" >&5
21058   (exit $ac_status); } >/dev/null; then
21059   if test -s conftest.err; then
21060     ac_cpp_err=$ac_c_preproc_warn_flag
21061@@ -18133,7 +18134,7 @@
21062 fi
21063 rm -f conftest.err conftest.$ac_ext
21064 fi
21065-echo "$as_me:18136: result: `eval echo '${'$as_ac_Header'}'`" >&5
21066+echo "$as_me:18137: result: `eval echo '${'$as_ac_Header'}'`" >&5
21067 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
21068 if test `eval echo '${'$as_ac_Header'}'` = yes; then
21069   cat >>confdefs.h <<EOF
21070@@ -18146,23 +18147,23 @@
21071 for ac_header in unistd.h getopt.h
21072 do
21073 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
21074-echo "$as_me:18149: checking for $ac_header" >&5
21075+echo "$as_me:18150: checking for $ac_header" >&5
21076 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
21077 if eval "test \"\${$as_ac_Header+set}\" = set"; then
21078   echo $ECHO_N "(cached) $ECHO_C" >&6
21079 else
21080   cat >conftest.$ac_ext <<_ACEOF
21081-#line 18155 "configure"
21082+#line 18156 "configure"
21083 #include "confdefs.h"
21084 #include <$ac_header>
21085 _ACEOF
21086-if { (eval echo "$as_me:18159: \"$ac_cpp conftest.$ac_ext\"") >&5
21087+if { (eval echo "$as_me:18160: \"$ac_cpp conftest.$ac_ext\"") >&5
21088   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
21089   ac_status=$?
21090   egrep -v '^ *\+' conftest.er1 >conftest.err
21091   rm -f conftest.er1
21092   cat conftest.err >&5
21093-  echo "$as_me:18165: \$? = $ac_status" >&5
21094+  echo "$as_me:18166: \$? = $ac_status" >&5
21095   (exit $ac_status); } >/dev/null; then
21096   if test -s conftest.err; then
21097     ac_cpp_err=$ac_c_preproc_warn_flag
21098@@ -18181,7 +18182,7 @@
21099 fi
21100 rm -f conftest.err conftest.$ac_ext
21101 fi
21102-echo "$as_me:18184: result: `eval echo '${'$as_ac_Header'}'`" >&5
21103+echo "$as_me:18185: result: `eval echo '${'$as_ac_Header'}'`" >&5
21104 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
21105 if test `eval echo '${'$as_ac_Header'}'` = yes; then
21106   cat >>confdefs.h <<EOF
21107@@ -18191,7 +18192,7 @@
21108 fi
21109 done
21110
21111-echo "$as_me:18194: checking for header declaring getopt variables" >&5
21112+echo "$as_me:18195: checking for header declaring getopt variables" >&5
21113 echo $ECHO_N "checking for header declaring getopt variables... $ECHO_C" >&6
21114 if test "${cf_cv_getopt_header+set}" = set; then
21115   echo $ECHO_N "(cached) $ECHO_C" >&6
21116@@ -18201,7 +18202,7 @@
21117 for cf_header in stdio.h stdlib.h unistd.h getopt.h
21118 do
21119 cat >conftest.$ac_ext <<_ACEOF
21120-#line 18204 "configure"
21121+#line 18205 "configure"
21122 #include "confdefs.h"
21123
21124 #include <$cf_header>
21125@@ -18214,16 +18215,16 @@
21126 }
21127 _ACEOF
21128 rm -f conftest.$ac_objext
21129-if { (eval echo "$as_me:18217: \"$ac_compile\"") >&5
21130+if { (eval echo "$as_me:18218: \"$ac_compile\"") >&5
21131   (eval $ac_compile) 2>&5
21132   ac_status=$?
21133-  echo "$as_me:18220: \$? = $ac_status" >&5
21134+  echo "$as_me:18221: \$? = $ac_status" >&5
21135   (exit $ac_status); } &&
21136          { ac_try='test -s conftest.$ac_objext'
21137-  { (eval echo "$as_me:18223: \"$ac_try\"") >&5
21138+  { (eval echo "$as_me:18224: \"$ac_try\"") >&5
21139   (eval $ac_try) 2>&5
21140   ac_status=$?
21141-  echo "$as_me:18226: \$? = $ac_status" >&5
21142+  echo "$as_me:18227: \$? = $ac_status" >&5
21143   (exit $ac_status); }; }; then
21144   cf_cv_getopt_header=$cf_header
21145  break
21146@@ -18235,7 +18236,7 @@
21147 done
21148
21149 fi
21150-echo "$as_me:18238: result: $cf_cv_getopt_header" >&5
21151+echo "$as_me:18239: result: $cf_cv_getopt_header" >&5
21152 echo "${ECHO_T}$cf_cv_getopt_header" >&6
21153 if test $cf_cv_getopt_header != none ; then
21154
21155@@ -18252,14 +18253,14 @@
21156
21157 fi
21158
21159-echo "$as_me:18255: checking if external environ is declared" >&5
21160+echo "$as_me:18256: checking if external environ is declared" >&5
21161 echo $ECHO_N "checking if external environ is declared... $ECHO_C" >&6
21162 if test "${cf_cv_dcl_environ+set}" = set; then
21163   echo $ECHO_N "(cached) $ECHO_C" >&6
21164 else
21165
21166     cat >conftest.$ac_ext <<_ACEOF
21167-#line 18262 "configure"
21168+#line 18263 "configure"
21169 #include "confdefs.h"
21170
21171 #ifdef HAVE_STDLIB_H
21172@@ -18275,16 +18276,16 @@
21173 }
21174 _ACEOF
21175 rm -f conftest.$ac_objext
21176-if { (eval echo "$as_me:18278: \"$ac_compile\"") >&5
21177+if { (eval echo "$as_me:18279: \"$ac_compile\"") >&5
21178   (eval $ac_compile) 2>&5
21179   ac_status=$?
21180-  echo "$as_me:18281: \$? = $ac_status" >&5
21181+  echo "$as_me:18282: \$? = $ac_status" >&5
21182   (exit $ac_status); } &&
21183          { ac_try='test -s conftest.$ac_objext'
21184-  { (eval echo "$as_me:18284: \"$ac_try\"") >&5
21185+  { (eval echo "$as_me:18285: \"$ac_try\"") >&5
21186   (eval $ac_try) 2>&5
21187   ac_status=$?
21188-  echo "$as_me:18287: \$? = $ac_status" >&5
21189+  echo "$as_me:18288: \$? = $ac_status" >&5
21190   (exit $ac_status); }; }; then
21191   cf_cv_dcl_environ=yes
21192 else
21193@@ -18295,7 +18296,7 @@
21194 rm -f conftest.$ac_objext conftest.$ac_ext
21195
21196 fi
21197-echo "$as_me:18298: result: $cf_cv_dcl_environ" >&5
21198+echo "$as_me:18299: result: $cf_cv_dcl_environ" >&5
21199 echo "${ECHO_T}$cf_cv_dcl_environ" >&6
21200
21201 if test "$cf_cv_dcl_environ" = no ; then
21202@@ -18310,14 +18311,14 @@
21203
21204 # It's possible (for near-UNIX clones) that the data doesn't exist
21205
21206-echo "$as_me:18313: checking if external environ exists" >&5
21207+echo "$as_me:18314: checking if external environ exists" >&5
21208 echo $ECHO_N "checking if external environ exists... $ECHO_C" >&6
21209 if test "${cf_cv_have_environ+set}" = set; then
21210   echo $ECHO_N "(cached) $ECHO_C" >&6
21211 else
21212
21213 	cat >conftest.$ac_ext <<_ACEOF
21214-#line 18320 "configure"
21215+#line 18321 "configure"
21216 #include "confdefs.h"
21217
21218 #undef environ
21219@@ -18332,16 +18333,16 @@
21220 }
21221 _ACEOF
21222 rm -f conftest.$ac_objext conftest$ac_exeext
21223-if { (eval echo "$as_me:18335: \"$ac_link\"") >&5
21224+if { (eval echo "$as_me:18336: \"$ac_link\"") >&5
21225   (eval $ac_link) 2>&5
21226   ac_status=$?
21227-  echo "$as_me:18338: \$? = $ac_status" >&5
21228+  echo "$as_me:18339: \$? = $ac_status" >&5
21229   (exit $ac_status); } &&
21230          { ac_try='test -s conftest$ac_exeext'
21231-  { (eval echo "$as_me:18341: \"$ac_try\"") >&5
21232+  { (eval echo "$as_me:18342: \"$ac_try\"") >&5
21233   (eval $ac_try) 2>&5
21234   ac_status=$?
21235-  echo "$as_me:18344: \$? = $ac_status" >&5
21236+  echo "$as_me:18345: \$? = $ac_status" >&5
21237   (exit $ac_status); }; }; then
21238   cf_cv_have_environ=yes
21239 else
21240@@ -18352,7 +18353,7 @@
21241 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
21242
21243 fi
21244-echo "$as_me:18355: result: $cf_cv_have_environ" >&5
21245+echo "$as_me:18356: result: $cf_cv_have_environ" >&5
21246 echo "${ECHO_T}$cf_cv_have_environ" >&6
21247
21248 if test "$cf_cv_have_environ" = yes ; then
21249@@ -18365,13 +18366,13 @@
21250
21251 fi
21252
21253-echo "$as_me:18368: checking for getenv" >&5
21254+echo "$as_me:18369: checking for getenv" >&5
21255 echo $ECHO_N "checking for getenv... $ECHO_C" >&6
21256 if test "${ac_cv_func_getenv+set}" = set; then
21257   echo $ECHO_N "(cached) $ECHO_C" >&6
21258 else
21259   cat >conftest.$ac_ext <<_ACEOF
21260-#line 18374 "configure"
21261+#line 18375 "configure"
21262 #include "confdefs.h"
21263 #define getenv autoconf_temporary
21264 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
21265@@ -18402,16 +18403,16 @@
21266 }
21267 _ACEOF
21268 rm -f conftest.$ac_objext conftest$ac_exeext
21269-if { (eval echo "$as_me:18405: \"$ac_link\"") >&5
21270+if { (eval echo "$as_me:18406: \"$ac_link\"") >&5
21271   (eval $ac_link) 2>&5
21272   ac_status=$?
21273-  echo "$as_me:18408: \$? = $ac_status" >&5
21274+  echo "$as_me:18409: \$? = $ac_status" >&5
21275   (exit $ac_status); } &&
21276          { ac_try='test -s conftest$ac_exeext'
21277-  { (eval echo "$as_me:18411: \"$ac_try\"") >&5
21278+  { (eval echo "$as_me:18412: \"$ac_try\"") >&5
21279   (eval $ac_try) 2>&5
21280   ac_status=$?
21281-  echo "$as_me:18414: \$? = $ac_status" >&5
21282+  echo "$as_me:18415: \$? = $ac_status" >&5
21283   (exit $ac_status); }; }; then
21284   ac_cv_func_getenv=yes
21285 else
21286@@ -18421,19 +18422,19 @@
21287 fi
21288 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
21289 fi
21290-echo "$as_me:18424: result: $ac_cv_func_getenv" >&5
21291+echo "$as_me:18425: result: $ac_cv_func_getenv" >&5
21292 echo "${ECHO_T}$ac_cv_func_getenv" >&6
21293
21294 for ac_func in putenv setenv strdup
21295 do
21296 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
21297-echo "$as_me:18430: checking for $ac_func" >&5
21298+echo "$as_me:18431: checking for $ac_func" >&5
21299 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
21300 if eval "test \"\${$as_ac_var+set}\" = set"; then
21301   echo $ECHO_N "(cached) $ECHO_C" >&6
21302 else
21303   cat >conftest.$ac_ext <<_ACEOF
21304-#line 18436 "configure"
21305+#line 18437 "configure"
21306 #include "confdefs.h"
21307 #define $ac_func autoconf_temporary
21308 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
21309@@ -18464,16 +18465,16 @@
21310 }
21311 _ACEOF
21312 rm -f conftest.$ac_objext conftest$ac_exeext
21313-if { (eval echo "$as_me:18467: \"$ac_link\"") >&5
21314+if { (eval echo "$as_me:18468: \"$ac_link\"") >&5
21315   (eval $ac_link) 2>&5
21316   ac_status=$?
21317-  echo "$as_me:18470: \$? = $ac_status" >&5
21318+  echo "$as_me:18471: \$? = $ac_status" >&5
21319   (exit $ac_status); } &&
21320          { ac_try='test -s conftest$ac_exeext'
21321-  { (eval echo "$as_me:18473: \"$ac_try\"") >&5
21322+  { (eval echo "$as_me:18474: \"$ac_try\"") >&5
21323   (eval $ac_try) 2>&5
21324   ac_status=$?
21325-  echo "$as_me:18476: \$? = $ac_status" >&5
21326+  echo "$as_me:18477: \$? = $ac_status" >&5
21327   (exit $ac_status); }; }; then
21328   eval "$as_ac_var=yes"
21329 else
21330@@ -18483,7 +18484,7 @@
21331 fi
21332 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
21333 fi
21334-echo "$as_me:18486: result: `eval echo '${'$as_ac_var'}'`" >&5
21335+echo "$as_me:18487: result: `eval echo '${'$as_ac_var'}'`" >&5
21336 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
21337 if test `eval echo '${'$as_ac_var'}'` = yes; then
21338   cat >>confdefs.h <<EOF
21339@@ -18493,7 +18494,7 @@
21340 fi
21341 done
21342
21343-echo "$as_me:18496: checking if getenv returns consistent values" >&5
21344+echo "$as_me:18497: checking if getenv returns consistent values" >&5
21345 echo $ECHO_N "checking if getenv returns consistent values... $ECHO_C" >&6
21346 if test "${cf_cv_consistent_getenv+set}" = set; then
21347   echo $ECHO_N "(cached) $ECHO_C" >&6
21348@@ -18503,7 +18504,7 @@
21349   cf_cv_consistent_getenv=unknown
21350 else
21351   cat >conftest.$ac_ext <<_ACEOF
21352-#line 18506 "configure"
21353+#line 18507 "configure"
21354 #include "confdefs.h"
21355
21356 #include <stdlib.h>
21357@@ -18612,15 +18613,15 @@
21358
21359 _ACEOF
21360 rm -f conftest$ac_exeext
21361-if { (eval echo "$as_me:18615: \"$ac_link\"") >&5
21362+if { (eval echo "$as_me:18616: \"$ac_link\"") >&5
21363   (eval $ac_link) 2>&5
21364   ac_status=$?
21365-  echo "$as_me:18618: \$? = $ac_status" >&5
21366+  echo "$as_me:18619: \$? = $ac_status" >&5
21367   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
21368-  { (eval echo "$as_me:18620: \"$ac_try\"") >&5
21369+  { (eval echo "$as_me:18621: \"$ac_try\"") >&5
21370   (eval $ac_try) 2>&5
21371   ac_status=$?
21372-  echo "$as_me:18623: \$? = $ac_status" >&5
21373+  echo "$as_me:18624: \$? = $ac_status" >&5
21374   (exit $ac_status); }; }; then
21375   cf_cv_consistent_getenv=yes
21376 else
21377@@ -18633,7 +18634,7 @@
21378 fi
21379
21380 fi
21381-echo "$as_me:18636: result: $cf_cv_consistent_getenv" >&5
21382+echo "$as_me:18637: result: $cf_cv_consistent_getenv" >&5
21383 echo "${ECHO_T}$cf_cv_consistent_getenv" >&6
21384
21385 if test "x$cf_cv_consistent_getenv" = xno
21386@@ -18648,7 +18649,7 @@
21387 if test "x$cf_cv_consistent_getenv" = xno && \
21388 	test "x$cf_with_trace" = xyes
21389 then
21390-	{ echo "$as_me:18651: WARNING: The NCURSES_TRACE environment variable is not supported with this configuration" >&5
21391+	{ echo "$as_me:18652: WARNING: The NCURSES_TRACE environment variable is not supported with this configuration" >&5
21392 echo "$as_me: WARNING: The NCURSES_TRACE environment variable is not supported with this configuration" >&2;}
21393 fi
21394
21395@@ -18656,7 +18657,7 @@
21396 # Note: even non-Posix ISC needs <sys/bsdtypes.h> to declare fd_set
21397 if test "x$ISC" = xyes ; then
21398
21399-echo "$as_me:18659: checking for main in -lcposix" >&5
21400+echo "$as_me:18660: checking for main in -lcposix" >&5
21401 echo $ECHO_N "checking for main in -lcposix... $ECHO_C" >&6
21402 if test "${ac_cv_lib_cposix_main+set}" = set; then
21403   echo $ECHO_N "(cached) $ECHO_C" >&6
21404@@ -18664,7 +18665,7 @@
21405   ac_check_lib_save_LIBS=$LIBS
21406 LIBS="-lcposix  $LIBS"
21407 cat >conftest.$ac_ext <<_ACEOF
21408-#line 18667 "configure"
21409+#line 18668 "configure"
21410 #include "confdefs.h"
21411
21412 int
21413@@ -18676,16 +18677,16 @@
21414 }
21415 _ACEOF
21416 rm -f conftest.$ac_objext conftest$ac_exeext
21417-if { (eval echo "$as_me:18679: \"$ac_link\"") >&5
21418+if { (eval echo "$as_me:18680: \"$ac_link\"") >&5
21419   (eval $ac_link) 2>&5
21420   ac_status=$?
21421-  echo "$as_me:18682: \$? = $ac_status" >&5
21422+  echo "$as_me:18683: \$? = $ac_status" >&5
21423   (exit $ac_status); } &&
21424          { ac_try='test -s conftest$ac_exeext'
21425-  { (eval echo "$as_me:18685: \"$ac_try\"") >&5
21426+  { (eval echo "$as_me:18686: \"$ac_try\"") >&5
21427   (eval $ac_try) 2>&5
21428   ac_status=$?
21429-  echo "$as_me:18688: \$? = $ac_status" >&5
21430+  echo "$as_me:18689: \$? = $ac_status" >&5
21431   (exit $ac_status); }; }; then
21432   ac_cv_lib_cposix_main=yes
21433 else
21434@@ -18696,7 +18697,7 @@
21435 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
21436 LIBS=$ac_check_lib_save_LIBS
21437 fi
21438-echo "$as_me:18699: result: $ac_cv_lib_cposix_main" >&5
21439+echo "$as_me:18700: result: $ac_cv_lib_cposix_main" >&5
21440 echo "${ECHO_T}$ac_cv_lib_cposix_main" >&6
21441 if test $ac_cv_lib_cposix_main = yes; then
21442   cat >>confdefs.h <<EOF
21443@@ -18707,7 +18708,7 @@
21444
21445 fi
21446
21447-	echo "$as_me:18710: checking for bzero in -linet" >&5
21448+	echo "$as_me:18711: checking for bzero in -linet" >&5
21449 echo $ECHO_N "checking for bzero in -linet... $ECHO_C" >&6
21450 if test "${ac_cv_lib_inet_bzero+set}" = set; then
21451   echo $ECHO_N "(cached) $ECHO_C" >&6
21452@@ -18715,7 +18716,7 @@
21453   ac_check_lib_save_LIBS=$LIBS
21454 LIBS="-linet  $LIBS"
21455 cat >conftest.$ac_ext <<_ACEOF
21456-#line 18718 "configure"
21457+#line 18719 "configure"
21458 #include "confdefs.h"
21459
21460 /* Override any gcc2 internal prototype to avoid an error.  */
21461@@ -18734,16 +18735,16 @@
21462 }
21463 _ACEOF
21464 rm -f conftest.$ac_objext conftest$ac_exeext
21465-if { (eval echo "$as_me:18737: \"$ac_link\"") >&5
21466+if { (eval echo "$as_me:18738: \"$ac_link\"") >&5
21467   (eval $ac_link) 2>&5
21468   ac_status=$?
21469-  echo "$as_me:18740: \$? = $ac_status" >&5
21470+  echo "$as_me:18741: \$? = $ac_status" >&5
21471   (exit $ac_status); } &&
21472          { ac_try='test -s conftest$ac_exeext'
21473-  { (eval echo "$as_me:18743: \"$ac_try\"") >&5
21474+  { (eval echo "$as_me:18744: \"$ac_try\"") >&5
21475   (eval $ac_try) 2>&5
21476   ac_status=$?
21477-  echo "$as_me:18746: \$? = $ac_status" >&5
21478+  echo "$as_me:18747: \$? = $ac_status" >&5
21479   (exit $ac_status); }; }; then
21480   ac_cv_lib_inet_bzero=yes
21481 else
21482@@ -18754,7 +18755,7 @@
21483 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
21484 LIBS=$ac_check_lib_save_LIBS
21485 fi
21486-echo "$as_me:18757: result: $ac_cv_lib_inet_bzero" >&5
21487+echo "$as_me:18758: result: $ac_cv_lib_inet_bzero" >&5
21488 echo "${ECHO_T}$ac_cv_lib_inet_bzero" >&6
21489 if test $ac_cv_lib_inet_bzero = yes; then
21490
21491@@ -18777,14 +18778,14 @@
21492 fi
21493 fi
21494
21495-echo "$as_me:18780: checking if sys/time.h works with sys/select.h" >&5
21496+echo "$as_me:18781: checking if sys/time.h works with sys/select.h" >&5
21497 echo $ECHO_N "checking if sys/time.h works with sys/select.h... $ECHO_C" >&6
21498 if test "${cf_cv_sys_time_select+set}" = set; then
21499   echo $ECHO_N "(cached) $ECHO_C" >&6
21500 else
21501
21502 cat >conftest.$ac_ext <<_ACEOF
21503-#line 18787 "configure"
21504+#line 18788 "configure"
21505 #include "confdefs.h"
21506
21507 #include <sys/types.h>
21508@@ -18804,16 +18805,16 @@
21509 }
21510 _ACEOF
21511 rm -f conftest.$ac_objext
21512-if { (eval echo "$as_me:18807: \"$ac_compile\"") >&5
21513+if { (eval echo "$as_me:18808: \"$ac_compile\"") >&5
21514   (eval $ac_compile) 2>&5
21515   ac_status=$?
21516-  echo "$as_me:18810: \$? = $ac_status" >&5
21517+  echo "$as_me:18811: \$? = $ac_status" >&5
21518   (exit $ac_status); } &&
21519          { ac_try='test -s conftest.$ac_objext'
21520-  { (eval echo "$as_me:18813: \"$ac_try\"") >&5
21521+  { (eval echo "$as_me:18814: \"$ac_try\"") >&5
21522   (eval $ac_try) 2>&5
21523   ac_status=$?
21524-  echo "$as_me:18816: \$? = $ac_status" >&5
21525+  echo "$as_me:18817: \$? = $ac_status" >&5
21526   (exit $ac_status); }; }; then
21527   cf_cv_sys_time_select=yes
21528 else
21529@@ -18825,7 +18826,7 @@
21530
21531 fi
21532
21533-echo "$as_me:18828: result: $cf_cv_sys_time_select" >&5
21534+echo "$as_me:18829: result: $cf_cv_sys_time_select" >&5
21535 echo "${ECHO_T}$cf_cv_sys_time_select" >&6
21536 test "$cf_cv_sys_time_select" = yes &&
21537 cat >>confdefs.h <<\EOF
21538@@ -18840,13 +18841,13 @@
21539 ac_compiler_gnu=$ac_cv_c_compiler_gnu
21540 ac_main_return=return
21541
21542-echo "$as_me:18843: checking for an ANSI C-conforming const" >&5
21543+echo "$as_me:18844: checking for an ANSI C-conforming const" >&5
21544 echo $ECHO_N "checking for an ANSI C-conforming const... $ECHO_C" >&6
21545 if test "${ac_cv_c_const+set}" = set; then
21546   echo $ECHO_N "(cached) $ECHO_C" >&6
21547 else
21548   cat >conftest.$ac_ext <<_ACEOF
21549-#line 18849 "configure"
21550+#line 18850 "configure"
21551 #include "confdefs.h"
21552
21553 int
21554@@ -18904,16 +18905,16 @@
21555 }
21556 _ACEOF
21557 rm -f conftest.$ac_objext
21558-if { (eval echo "$as_me:18907: \"$ac_compile\"") >&5
21559+if { (eval echo "$as_me:18908: \"$ac_compile\"") >&5
21560   (eval $ac_compile) 2>&5
21561   ac_status=$?
21562-  echo "$as_me:18910: \$? = $ac_status" >&5
21563+  echo "$as_me:18911: \$? = $ac_status" >&5
21564   (exit $ac_status); } &&
21565          { ac_try='test -s conftest.$ac_objext'
21566-  { (eval echo "$as_me:18913: \"$ac_try\"") >&5
21567+  { (eval echo "$as_me:18914: \"$ac_try\"") >&5
21568   (eval $ac_try) 2>&5
21569   ac_status=$?
21570-  echo "$as_me:18916: \$? = $ac_status" >&5
21571+  echo "$as_me:18917: \$? = $ac_status" >&5
21572   (exit $ac_status); }; }; then
21573   ac_cv_c_const=yes
21574 else
21575@@ -18923,7 +18924,7 @@
21576 fi
21577 rm -f conftest.$ac_objext conftest.$ac_ext
21578 fi
21579-echo "$as_me:18926: result: $ac_cv_c_const" >&5
21580+echo "$as_me:18927: result: $ac_cv_c_const" >&5
21581 echo "${ECHO_T}$ac_cv_c_const" >&6
21582 if test $ac_cv_c_const = no; then
21583
21584@@ -18933,7 +18934,7 @@
21585
21586 fi
21587
21588-echo "$as_me:18936: checking for inline" >&5
21589+echo "$as_me:18937: checking for inline" >&5
21590 echo $ECHO_N "checking for inline... $ECHO_C" >&6
21591 if test "${ac_cv_c_inline+set}" = set; then
21592   echo $ECHO_N "(cached) $ECHO_C" >&6
21593@@ -18941,7 +18942,7 @@
21594   ac_cv_c_inline=no
21595 for ac_kw in inline __inline__ __inline; do
21596   cat >conftest.$ac_ext <<_ACEOF
21597-#line 18944 "configure"
21598+#line 18945 "configure"
21599 #include "confdefs.h"
21600 #ifndef __cplusplus
21601 static $ac_kw int static_foo () {return 0; }
21602@@ -18950,16 +18951,16 @@
21603
21604 _ACEOF
21605 rm -f conftest.$ac_objext
21606-if { (eval echo "$as_me:18953: \"$ac_compile\"") >&5
21607+if { (eval echo "$as_me:18954: \"$ac_compile\"") >&5
21608   (eval $ac_compile) 2>&5
21609   ac_status=$?
21610-  echo "$as_me:18956: \$? = $ac_status" >&5
21611+  echo "$as_me:18957: \$? = $ac_status" >&5
21612   (exit $ac_status); } &&
21613          { ac_try='test -s conftest.$ac_objext'
21614-  { (eval echo "$as_me:18959: \"$ac_try\"") >&5
21615+  { (eval echo "$as_me:18960: \"$ac_try\"") >&5
21616   (eval $ac_try) 2>&5
21617   ac_status=$?
21618-  echo "$as_me:18962: \$? = $ac_status" >&5
21619+  echo "$as_me:18963: \$? = $ac_status" >&5
21620   (exit $ac_status); }; }; then
21621   ac_cv_c_inline=$ac_kw; break
21622 else
21623@@ -18970,7 +18971,7 @@
21624 done
21625
21626 fi
21627-echo "$as_me:18973: result: $ac_cv_c_inline" >&5
21628+echo "$as_me:18974: result: $ac_cv_c_inline" >&5
21629 echo "${ECHO_T}$ac_cv_c_inline" >&6
21630 case $ac_cv_c_inline in
21631   inline | yes) ;;
21632@@ -18996,7 +18997,7 @@
21633 		:
21634 	elif test "$GCC" = yes
21635 	then
21636-		echo "$as_me:18999: checking if $CC supports options to tune inlining" >&5
21637+		echo "$as_me:19000: checking if $CC supports options to tune inlining" >&5
21638 echo $ECHO_N "checking if $CC supports options to tune inlining... $ECHO_C" >&6
21639 if test "${cf_cv_gcc_inline+set}" = set; then
21640   echo $ECHO_N "(cached) $ECHO_C" >&6
21641@@ -19005,7 +19006,7 @@
21642 		cf_save_CFLAGS=$CFLAGS
21643 		CFLAGS="$CFLAGS --param max-inline-insns-single=1200"
21644 		cat >conftest.$ac_ext <<_ACEOF
21645-#line 19008 "configure"
21646+#line 19009 "configure"
21647 #include "confdefs.h"
21648 inline int foo(void) { return 1; }
21649 int
21650@@ -19017,16 +19018,16 @@
21651 }
21652 _ACEOF
21653 rm -f conftest.$ac_objext
21654-if { (eval echo "$as_me:19020: \"$ac_compile\"") >&5
21655+if { (eval echo "$as_me:19021: \"$ac_compile\"") >&5
21656   (eval $ac_compile) 2>&5
21657   ac_status=$?
21658-  echo "$as_me:19023: \$? = $ac_status" >&5
21659+  echo "$as_me:19024: \$? = $ac_status" >&5
21660   (exit $ac_status); } &&
21661          { ac_try='test -s conftest.$ac_objext'
21662-  { (eval echo "$as_me:19026: \"$ac_try\"") >&5
21663+  { (eval echo "$as_me:19027: \"$ac_try\"") >&5
21664   (eval $ac_try) 2>&5
21665   ac_status=$?
21666-  echo "$as_me:19029: \$? = $ac_status" >&5
21667+  echo "$as_me:19030: \$? = $ac_status" >&5
21668   (exit $ac_status); }; }; then
21669   cf_cv_gcc_inline=yes
21670 else
21671@@ -19038,7 +19039,7 @@
21672 		CFLAGS=$cf_save_CFLAGS
21673
21674 fi
21675-echo "$as_me:19041: result: $cf_cv_gcc_inline" >&5
21676+echo "$as_me:19042: result: $cf_cv_gcc_inline" >&5
21677 echo "${ECHO_T}$cf_cv_gcc_inline" >&6
21678 		if test "$cf_cv_gcc_inline" = yes ; then
21679
21680@@ -19144,7 +19145,7 @@
21681 	fi
21682 fi
21683
21684-echo "$as_me:19147: checking for signal global datatype" >&5
21685+echo "$as_me:19148: checking for signal global datatype" >&5
21686 echo $ECHO_N "checking for signal global datatype... $ECHO_C" >&6
21687 if test "${cf_cv_sig_atomic_t+set}" = set; then
21688   echo $ECHO_N "(cached) $ECHO_C" >&6
21689@@ -19156,7 +19157,7 @@
21690 		"int"
21691 	do
21692 	cat >conftest.$ac_ext <<_ACEOF
21693-#line 19159 "configure"
21694+#line 19160 "configure"
21695 #include "confdefs.h"
21696
21697 #include <sys/types.h>
21698@@ -19179,16 +19180,16 @@
21699 }
21700 _ACEOF
21701 rm -f conftest.$ac_objext
21702-if { (eval echo "$as_me:19182: \"$ac_compile\"") >&5
21703+if { (eval echo "$as_me:19183: \"$ac_compile\"") >&5
21704   (eval $ac_compile) 2>&5
21705   ac_status=$?
21706-  echo "$as_me:19185: \$? = $ac_status" >&5
21707+  echo "$as_me:19186: \$? = $ac_status" >&5
21708   (exit $ac_status); } &&
21709          { ac_try='test -s conftest.$ac_objext'
21710-  { (eval echo "$as_me:19188: \"$ac_try\"") >&5
21711+  { (eval echo "$as_me:19189: \"$ac_try\"") >&5
21712   (eval $ac_try) 2>&5
21713   ac_status=$?
21714-  echo "$as_me:19191: \$? = $ac_status" >&5
21715+  echo "$as_me:19192: \$? = $ac_status" >&5
21716   (exit $ac_status); }; }; then
21717   cf_cv_sig_atomic_t=$cf_type
21718 else
21719@@ -19202,7 +19203,7 @@
21720
21721 fi
21722
21723-echo "$as_me:19205: result: $cf_cv_sig_atomic_t" >&5
21724+echo "$as_me:19206: result: $cf_cv_sig_atomic_t" >&5
21725 echo "${ECHO_T}$cf_cv_sig_atomic_t" >&6
21726 test "$cf_cv_sig_atomic_t" != no &&
21727 cat >>confdefs.h <<EOF
21728@@ -19211,7 +19212,7 @@
21729
21730 if test $NCURSES_CHTYPE = auto ; then
21731
21732-echo "$as_me:19214: checking for type of chtype" >&5
21733+echo "$as_me:19215: checking for type of chtype" >&5
21734 echo $ECHO_N "checking for type of chtype... $ECHO_C" >&6
21735 if test "${cf_cv_typeof_chtype+set}" = set; then
21736   echo $ECHO_N "(cached) $ECHO_C" >&6
21737@@ -19221,7 +19222,7 @@
21738   cf_cv_typeof_chtype=long
21739 else
21740   cat >conftest.$ac_ext <<_ACEOF
21741-#line 19224 "configure"
21742+#line 19225 "configure"
21743 #include "confdefs.h"
21744
21745 #define WANT_BITS 31
21746@@ -19256,15 +19257,15 @@
21747
21748 _ACEOF
21749 rm -f conftest$ac_exeext
21750-if { (eval echo "$as_me:19259: \"$ac_link\"") >&5
21751+if { (eval echo "$as_me:19260: \"$ac_link\"") >&5
21752   (eval $ac_link) 2>&5
21753   ac_status=$?
21754-  echo "$as_me:19262: \$? = $ac_status" >&5
21755+  echo "$as_me:19263: \$? = $ac_status" >&5
21756   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
21757-  { (eval echo "$as_me:19264: \"$ac_try\"") >&5
21758+  { (eval echo "$as_me:19265: \"$ac_try\"") >&5
21759   (eval $ac_try) 2>&5
21760   ac_status=$?
21761-  echo "$as_me:19267: \$? = $ac_status" >&5
21762+  echo "$as_me:19268: \$? = $ac_status" >&5
21763   (exit $ac_status); }; }; then
21764   cf_cv_typeof_chtype=`cat cf_test.out`
21765 else
21766@@ -19279,7 +19280,7 @@
21767
21768 fi
21769
21770-echo "$as_me:19282: result: $cf_cv_typeof_chtype" >&5
21771+echo "$as_me:19283: result: $cf_cv_typeof_chtype" >&5
21772 echo "${ECHO_T}$cf_cv_typeof_chtype" >&6
21773
21774 cat >>confdefs.h <<EOF
21775@@ -19291,14 +19292,14 @@
21776 fi
21777 test "$cf_cv_typeof_chtype" = unsigned && cf_cv_typeof_chtype=""
21778
21779-echo "$as_me:19294: checking if unsigned literals are legal" >&5
21780+echo "$as_me:19295: checking if unsigned literals are legal" >&5
21781 echo $ECHO_N "checking if unsigned literals are legal... $ECHO_C" >&6
21782 if test "${cf_cv_unsigned_literals+set}" = set; then
21783   echo $ECHO_N "(cached) $ECHO_C" >&6
21784 else
21785
21786 	cat >conftest.$ac_ext <<_ACEOF
21787-#line 19301 "configure"
21788+#line 19302 "configure"
21789 #include "confdefs.h"
21790
21791 int
21792@@ -19310,16 +19311,16 @@
21793 }
21794 _ACEOF
21795 rm -f conftest.$ac_objext
21796-if { (eval echo "$as_me:19313: \"$ac_compile\"") >&5
21797+if { (eval echo "$as_me:19314: \"$ac_compile\"") >&5
21798   (eval $ac_compile) 2>&5
21799   ac_status=$?
21800-  echo "$as_me:19316: \$? = $ac_status" >&5
21801+  echo "$as_me:19317: \$? = $ac_status" >&5
21802   (exit $ac_status); } &&
21803          { ac_try='test -s conftest.$ac_objext'
21804-  { (eval echo "$as_me:19319: \"$ac_try\"") >&5
21805+  { (eval echo "$as_me:19320: \"$ac_try\"") >&5
21806   (eval $ac_try) 2>&5
21807   ac_status=$?
21808-  echo "$as_me:19322: \$? = $ac_status" >&5
21809+  echo "$as_me:19323: \$? = $ac_status" >&5
21810   (exit $ac_status); }; }; then
21811   cf_cv_unsigned_literals=yes
21812 else
21813@@ -19331,7 +19332,7 @@
21814
21815 fi
21816
21817-echo "$as_me:19334: result: $cf_cv_unsigned_literals" >&5
21818+echo "$as_me:19335: result: $cf_cv_unsigned_literals" >&5
21819 echo "${ECHO_T}$cf_cv_unsigned_literals" >&6
21820
21821 cf_cv_1UL="1"
21822@@ -19347,14 +19348,14 @@
21823
21824 ###	Checks for external-data
21825
21826-echo "$as_me:19350: checking if external errno is declared" >&5
21827+echo "$as_me:19351: checking if external errno is declared" >&5
21828 echo $ECHO_N "checking if external errno is declared... $ECHO_C" >&6
21829 if test "${cf_cv_dcl_errno+set}" = set; then
21830   echo $ECHO_N "(cached) $ECHO_C" >&6
21831 else
21832
21833 	cat >conftest.$ac_ext <<_ACEOF
21834-#line 19357 "configure"
21835+#line 19358 "configure"
21836 #include "confdefs.h"
21837
21838 #ifdef HAVE_STDLIB_H
21839@@ -19372,16 +19373,16 @@
21840 }
21841 _ACEOF
21842 rm -f conftest.$ac_objext
21843-if { (eval echo "$as_me:19375: \"$ac_compile\"") >&5
21844+if { (eval echo "$as_me:19376: \"$ac_compile\"") >&5
21845   (eval $ac_compile) 2>&5
21846   ac_status=$?
21847-  echo "$as_me:19378: \$? = $ac_status" >&5
21848+  echo "$as_me:19379: \$? = $ac_status" >&5
21849   (exit $ac_status); } &&
21850          { ac_try='test -s conftest.$ac_objext'
21851-  { (eval echo "$as_me:19381: \"$ac_try\"") >&5
21852+  { (eval echo "$as_me:19382: \"$ac_try\"") >&5
21853   (eval $ac_try) 2>&5
21854   ac_status=$?
21855-  echo "$as_me:19384: \$? = $ac_status" >&5
21856+  echo "$as_me:19385: \$? = $ac_status" >&5
21857   (exit $ac_status); }; }; then
21858   cf_cv_dcl_errno=yes
21859 else
21860@@ -19392,7 +19393,7 @@
21861 rm -f conftest.$ac_objext conftest.$ac_ext
21862
21863 fi
21864-echo "$as_me:19395: result: $cf_cv_dcl_errno" >&5
21865+echo "$as_me:19396: result: $cf_cv_dcl_errno" >&5
21866 echo "${ECHO_T}$cf_cv_dcl_errno" >&6
21867
21868 if test "$cf_cv_dcl_errno" = no ; then
21869@@ -19407,14 +19408,14 @@
21870
21871 # It's possible (for near-UNIX clones) that the data doesn't exist
21872
21873-echo "$as_me:19410: checking if external errno exists" >&5
21874+echo "$as_me:19411: checking if external errno exists" >&5
21875 echo $ECHO_N "checking if external errno exists... $ECHO_C" >&6
21876 if test "${cf_cv_have_errno+set}" = set; then
21877   echo $ECHO_N "(cached) $ECHO_C" >&6
21878 else
21879
21880 	cat >conftest.$ac_ext <<_ACEOF
21881-#line 19417 "configure"
21882+#line 19418 "configure"
21883 #include "confdefs.h"
21884
21885 #undef errno
21886@@ -19429,16 +19430,16 @@
21887 }
21888 _ACEOF
21889 rm -f conftest.$ac_objext conftest$ac_exeext
21890-if { (eval echo "$as_me:19432: \"$ac_link\"") >&5
21891+if { (eval echo "$as_me:19433: \"$ac_link\"") >&5
21892   (eval $ac_link) 2>&5
21893   ac_status=$?
21894-  echo "$as_me:19435: \$? = $ac_status" >&5
21895+  echo "$as_me:19436: \$? = $ac_status" >&5
21896   (exit $ac_status); } &&
21897          { ac_try='test -s conftest$ac_exeext'
21898-  { (eval echo "$as_me:19438: \"$ac_try\"") >&5
21899+  { (eval echo "$as_me:19439: \"$ac_try\"") >&5
21900   (eval $ac_try) 2>&5
21901   ac_status=$?
21902-  echo "$as_me:19441: \$? = $ac_status" >&5
21903+  echo "$as_me:19442: \$? = $ac_status" >&5
21904   (exit $ac_status); }; }; then
21905   cf_cv_have_errno=yes
21906 else
21907@@ -19449,7 +19450,7 @@
21908 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
21909
21910 fi
21911-echo "$as_me:19452: result: $cf_cv_have_errno" >&5
21912+echo "$as_me:19453: result: $cf_cv_have_errno" >&5
21913 echo "${ECHO_T}$cf_cv_have_errno" >&6
21914
21915 if test "$cf_cv_have_errno" = yes ; then
21916@@ -19462,7 +19463,7 @@
21917
21918 fi
21919
21920-echo "$as_me:19465: checking if data-only library module links" >&5
21921+echo "$as_me:19466: checking if data-only library module links" >&5
21922 echo $ECHO_N "checking if data-only library module links... $ECHO_C" >&6
21923 if test "${cf_cv_link_dataonly+set}" = set; then
21924   echo $ECHO_N "(cached) $ECHO_C" >&6
21925@@ -19470,20 +19471,20 @@
21926
21927 	rm -f conftest.a
21928 	cat >conftest.$ac_ext <<EOF
21929-#line 19473 "configure"
21930+#line 19474 "configure"
21931 int	testdata[3] = { 123, 456, 789 };
21932 EOF
21933-	if { (eval echo "$as_me:19476: \"$ac_compile\"") >&5
21934+	if { (eval echo "$as_me:19477: \"$ac_compile\"") >&5
21935   (eval $ac_compile) 2>&5
21936   ac_status=$?
21937-  echo "$as_me:19479: \$? = $ac_status" >&5
21938+  echo "$as_me:19480: \$? = $ac_status" >&5
21939   (exit $ac_status); } ; then
21940 		mv conftest.o data.o && \
21941 		( $AR $ARFLAGS conftest.a data.o ) 2>&5 1>/dev/null
21942 	fi
21943 	rm -f conftest.$ac_ext data.o
21944 	cat >conftest.$ac_ext <<EOF
21945-#line 19486 "configure"
21946+#line 19487 "configure"
21947 int	testfunc(void)
21948 {
21949 #if defined(NeXT)
21950@@ -19496,10 +19497,10 @@
21951 #endif
21952 }
21953 EOF
21954-	if { (eval echo "$as_me:19499: \"$ac_compile\"") >&5
21955+	if { (eval echo "$as_me:19500: \"$ac_compile\"") >&5
21956   (eval $ac_compile) 2>&5
21957   ac_status=$?
21958-  echo "$as_me:19502: \$? = $ac_status" >&5
21959+  echo "$as_me:19503: \$? = $ac_status" >&5
21960   (exit $ac_status); }; then
21961 		mv conftest.o func.o && \
21962 		( $AR $ARFLAGS conftest.a func.o ) 2>&5 1>/dev/null
21963@@ -19512,7 +19513,7 @@
21964   cf_cv_link_dataonly=unknown
21965 else
21966   cat >conftest.$ac_ext <<_ACEOF
21967-#line 19515 "configure"
21968+#line 19516 "configure"
21969 #include "confdefs.h"
21970
21971 	int main(void)
21972@@ -19523,15 +19524,15 @@
21973
21974 _ACEOF
21975 rm -f conftest$ac_exeext
21976-if { (eval echo "$as_me:19526: \"$ac_link\"") >&5
21977+if { (eval echo "$as_me:19527: \"$ac_link\"") >&5
21978   (eval $ac_link) 2>&5
21979   ac_status=$?
21980-  echo "$as_me:19529: \$? = $ac_status" >&5
21981+  echo "$as_me:19530: \$? = $ac_status" >&5
21982   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
21983-  { (eval echo "$as_me:19531: \"$ac_try\"") >&5
21984+  { (eval echo "$as_me:19532: \"$ac_try\"") >&5
21985   (eval $ac_try) 2>&5
21986   ac_status=$?
21987-  echo "$as_me:19534: \$? = $ac_status" >&5
21988+  echo "$as_me:19535: \$? = $ac_status" >&5
21989   (exit $ac_status); }; }; then
21990   cf_cv_link_dataonly=yes
21991 else
21992@@ -19546,7 +19547,7 @@
21993
21994 fi
21995
21996-echo "$as_me:19549: result: $cf_cv_link_dataonly" >&5
21997+echo "$as_me:19550: result: $cf_cv_link_dataonly" >&5
21998 echo "${ECHO_T}$cf_cv_link_dataonly" >&6
21999
22000 if test "$cf_cv_link_dataonly" = no ; then
22001@@ -19588,13 +19589,13 @@
22002
22003 do
22004 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
22005-echo "$as_me:19591: checking for $ac_func" >&5
22006+echo "$as_me:19592: checking for $ac_func" >&5
22007 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
22008 if eval "test \"\${$as_ac_var+set}\" = set"; then
22009   echo $ECHO_N "(cached) $ECHO_C" >&6
22010 else
22011   cat >conftest.$ac_ext <<_ACEOF
22012-#line 19597 "configure"
22013+#line 19598 "configure"
22014 #include "confdefs.h"
22015 #define $ac_func autoconf_temporary
22016 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
22017@@ -19625,16 +19626,16 @@
22018 }
22019 _ACEOF
22020 rm -f conftest.$ac_objext conftest$ac_exeext
22021-if { (eval echo "$as_me:19628: \"$ac_link\"") >&5
22022+if { (eval echo "$as_me:19629: \"$ac_link\"") >&5
22023   (eval $ac_link) 2>&5
22024   ac_status=$?
22025-  echo "$as_me:19631: \$? = $ac_status" >&5
22026+  echo "$as_me:19632: \$? = $ac_status" >&5
22027   (exit $ac_status); } &&
22028          { ac_try='test -s conftest$ac_exeext'
22029-  { (eval echo "$as_me:19634: \"$ac_try\"") >&5
22030+  { (eval echo "$as_me:19635: \"$ac_try\"") >&5
22031   (eval $ac_try) 2>&5
22032   ac_status=$?
22033-  echo "$as_me:19637: \$? = $ac_status" >&5
22034+  echo "$as_me:19638: \$? = $ac_status" >&5
22035   (exit $ac_status); }; }; then
22036   eval "$as_ac_var=yes"
22037 else
22038@@ -19644,7 +19645,7 @@
22039 fi
22040 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
22041 fi
22042-echo "$as_me:19647: result: `eval echo '${'$as_ac_var'}'`" >&5
22043+echo "$as_me:19648: result: `eval echo '${'$as_ac_var'}'`" >&5
22044 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
22045 if test `eval echo '${'$as_ac_var'}'` = yes; then
22046   cat >>confdefs.h <<EOF
22047@@ -19656,7 +19657,7 @@
22048
22049 if test "x$ac_cv_func_getopt" = xno && \
22050    test "x$cf_with_progs$cf_with_tests" != xnono; then
22051-	{ { echo "$as_me:19659: error: getopt is required for building programs" >&5
22052+	{ { echo "$as_me:19660: error: getopt is required for building programs" >&5
22053 echo "$as_me: error: getopt is required for building programs" >&2;}
22054    { (exit 1); exit 1; }; }
22055 fi
22056@@ -19665,7 +19666,7 @@
22057 then
22058 	if test "x$ac_cv_func_vsnprintf" = xyes
22059 	then
22060-		{ echo "$as_me:19668: WARNING: will use vsnprintf instead of safe-sprintf option" >&5
22061+		{ echo "$as_me:19669: WARNING: will use vsnprintf instead of safe-sprintf option" >&5
22062 echo "$as_me: WARNING: will use vsnprintf instead of safe-sprintf option" >&2;}
22063 	else
22064
22065@@ -19678,14 +19679,14 @@
22066
22067 if test "x$with_getcap" = "xyes" ; then
22068
22069-echo "$as_me:19681: checking for terminal-capability database functions" >&5
22070+echo "$as_me:19682: checking for terminal-capability database functions" >&5
22071 echo $ECHO_N "checking for terminal-capability database functions... $ECHO_C" >&6
22072 if test "${cf_cv_cgetent+set}" = set; then
22073   echo $ECHO_N "(cached) $ECHO_C" >&6
22074 else
22075
22076 cat >conftest.$ac_ext <<_ACEOF
22077-#line 19688 "configure"
22078+#line 19689 "configure"
22079 #include "confdefs.h"
22080
22081 #include <stdlib.h>
22082@@ -19705,16 +19706,16 @@
22083 }
22084 _ACEOF
22085 rm -f conftest.$ac_objext conftest$ac_exeext
22086-if { (eval echo "$as_me:19708: \"$ac_link\"") >&5
22087+if { (eval echo "$as_me:19709: \"$ac_link\"") >&5
22088   (eval $ac_link) 2>&5
22089   ac_status=$?
22090-  echo "$as_me:19711: \$? = $ac_status" >&5
22091+  echo "$as_me:19712: \$? = $ac_status" >&5
22092   (exit $ac_status); } &&
22093          { ac_try='test -s conftest$ac_exeext'
22094-  { (eval echo "$as_me:19714: \"$ac_try\"") >&5
22095+  { (eval echo "$as_me:19715: \"$ac_try\"") >&5
22096   (eval $ac_try) 2>&5
22097   ac_status=$?
22098-  echo "$as_me:19717: \$? = $ac_status" >&5
22099+  echo "$as_me:19718: \$? = $ac_status" >&5
22100   (exit $ac_status); }; }; then
22101   cf_cv_cgetent=yes
22102 else
22103@@ -19725,7 +19726,7 @@
22104 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
22105
22106 fi
22107-echo "$as_me:19728: result: $cf_cv_cgetent" >&5
22108+echo "$as_me:19729: result: $cf_cv_cgetent" >&5
22109 echo "${ECHO_T}$cf_cv_cgetent" >&6
22110
22111 if test "$cf_cv_cgetent" = yes
22112@@ -19735,14 +19736,14 @@
22113 #define HAVE_BSD_CGETENT 1
22114 EOF
22115
22116-echo "$as_me:19738: checking if cgetent uses const parameter" >&5
22117+echo "$as_me:19739: checking if cgetent uses const parameter" >&5
22118 echo $ECHO_N "checking if cgetent uses const parameter... $ECHO_C" >&6
22119 if test "${cf_cv_cgetent_const+set}" = set; then
22120   echo $ECHO_N "(cached) $ECHO_C" >&6
22121 else
22122
22123 cat >conftest.$ac_ext <<_ACEOF
22124-#line 19745 "configure"
22125+#line 19746 "configure"
22126 #include "confdefs.h"
22127
22128 #pragma GCC diagnostic error "-Wincompatible-pointer-types-discards-qualifiers"
22129@@ -19765,16 +19766,16 @@
22130 }
22131 _ACEOF
22132 rm -f conftest.$ac_objext conftest$ac_exeext
22133-if { (eval echo "$as_me:19768: \"$ac_link\"") >&5
22134+if { (eval echo "$as_me:19769: \"$ac_link\"") >&5
22135   (eval $ac_link) 2>&5
22136   ac_status=$?
22137-  echo "$as_me:19771: \$? = $ac_status" >&5
22138+  echo "$as_me:19772: \$? = $ac_status" >&5
22139   (exit $ac_status); } &&
22140          { ac_try='test -s conftest$ac_exeext'
22141-  { (eval echo "$as_me:19774: \"$ac_try\"") >&5
22142+  { (eval echo "$as_me:19775: \"$ac_try\"") >&5
22143   (eval $ac_try) 2>&5
22144   ac_status=$?
22145-  echo "$as_me:19777: \$? = $ac_status" >&5
22146+  echo "$as_me:19778: \$? = $ac_status" >&5
22147   (exit $ac_status); }; }; then
22148   cf_cv_cgetent_const=yes
22149 else
22150@@ -19785,7 +19786,7 @@
22151 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
22152
22153 fi
22154-echo "$as_me:19788: result: $cf_cv_cgetent_const" >&5
22155+echo "$as_me:19789: result: $cf_cv_cgetent_const" >&5
22156 echo "${ECHO_T}$cf_cv_cgetent_const" >&6
22157 	if test "$cf_cv_cgetent_const" = yes
22158 	then
22159@@ -19799,14 +19800,14 @@
22160
22161 fi
22162
22163-echo "$as_me:19802: checking for isascii" >&5
22164+echo "$as_me:19803: checking for isascii" >&5
22165 echo $ECHO_N "checking for isascii... $ECHO_C" >&6
22166 if test "${cf_cv_have_isascii+set}" = set; then
22167   echo $ECHO_N "(cached) $ECHO_C" >&6
22168 else
22169
22170 	cat >conftest.$ac_ext <<_ACEOF
22171-#line 19809 "configure"
22172+#line 19810 "configure"
22173 #include "confdefs.h"
22174 #include <ctype.h>
22175 int
22176@@ -19818,16 +19819,16 @@
22177 }
22178 _ACEOF
22179 rm -f conftest.$ac_objext conftest$ac_exeext
22180-if { (eval echo "$as_me:19821: \"$ac_link\"") >&5
22181+if { (eval echo "$as_me:19822: \"$ac_link\"") >&5
22182   (eval $ac_link) 2>&5
22183   ac_status=$?
22184-  echo "$as_me:19824: \$? = $ac_status" >&5
22185+  echo "$as_me:19825: \$? = $ac_status" >&5
22186   (exit $ac_status); } &&
22187          { ac_try='test -s conftest$ac_exeext'
22188-  { (eval echo "$as_me:19827: \"$ac_try\"") >&5
22189+  { (eval echo "$as_me:19828: \"$ac_try\"") >&5
22190   (eval $ac_try) 2>&5
22191   ac_status=$?
22192-  echo "$as_me:19830: \$? = $ac_status" >&5
22193+  echo "$as_me:19831: \$? = $ac_status" >&5
22194   (exit $ac_status); }; }; then
22195   cf_cv_have_isascii=yes
22196 else
22197@@ -19838,7 +19839,7 @@
22198 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
22199
22200 fi
22201-echo "$as_me:19841: result: $cf_cv_have_isascii" >&5
22202+echo "$as_me:19842: result: $cf_cv_have_isascii" >&5
22203 echo "${ECHO_T}$cf_cv_have_isascii" >&6
22204 test "$cf_cv_have_isascii" = yes &&
22205 cat >>confdefs.h <<\EOF
22206@@ -19846,10 +19847,10 @@
22207 EOF
22208
22209 if test "$ac_cv_func_sigaction" = yes; then
22210-echo "$as_me:19849: checking whether sigaction needs _POSIX_SOURCE" >&5
22211+echo "$as_me:19850: checking whether sigaction needs _POSIX_SOURCE" >&5
22212 echo $ECHO_N "checking whether sigaction needs _POSIX_SOURCE... $ECHO_C" >&6
22213 cat >conftest.$ac_ext <<_ACEOF
22214-#line 19852 "configure"
22215+#line 19853 "configure"
22216 #include "confdefs.h"
22217
22218 #include <sys/types.h>
22219@@ -19863,16 +19864,16 @@
22220 }
22221 _ACEOF
22222 rm -f conftest.$ac_objext
22223-if { (eval echo "$as_me:19866: \"$ac_compile\"") >&5
22224+if { (eval echo "$as_me:19867: \"$ac_compile\"") >&5
22225   (eval $ac_compile) 2>&5
22226   ac_status=$?
22227-  echo "$as_me:19869: \$? = $ac_status" >&5
22228+  echo "$as_me:19870: \$? = $ac_status" >&5
22229   (exit $ac_status); } &&
22230          { ac_try='test -s conftest.$ac_objext'
22231-  { (eval echo "$as_me:19872: \"$ac_try\"") >&5
22232+  { (eval echo "$as_me:19873: \"$ac_try\"") >&5
22233   (eval $ac_try) 2>&5
22234   ac_status=$?
22235-  echo "$as_me:19875: \$? = $ac_status" >&5
22236+  echo "$as_me:19876: \$? = $ac_status" >&5
22237   (exit $ac_status); }; }; then
22238   sigact_bad=no
22239 else
22240@@ -19880,7 +19881,7 @@
22241 cat conftest.$ac_ext >&5
22242
22243 cat >conftest.$ac_ext <<_ACEOF
22244-#line 19883 "configure"
22245+#line 19884 "configure"
22246 #include "confdefs.h"
22247
22248 #define _POSIX_SOURCE
22249@@ -19895,16 +19896,16 @@
22250 }
22251 _ACEOF
22252 rm -f conftest.$ac_objext
22253-if { (eval echo "$as_me:19898: \"$ac_compile\"") >&5
22254+if { (eval echo "$as_me:19899: \"$ac_compile\"") >&5
22255   (eval $ac_compile) 2>&5
22256   ac_status=$?
22257-  echo "$as_me:19901: \$? = $ac_status" >&5
22258+  echo "$as_me:19902: \$? = $ac_status" >&5
22259   (exit $ac_status); } &&
22260          { ac_try='test -s conftest.$ac_objext'
22261-  { (eval echo "$as_me:19904: \"$ac_try\"") >&5
22262+  { (eval echo "$as_me:19905: \"$ac_try\"") >&5
22263   (eval $ac_try) 2>&5
22264   ac_status=$?
22265-  echo "$as_me:19907: \$? = $ac_status" >&5
22266+  echo "$as_me:19908: \$? = $ac_status" >&5
22267   (exit $ac_status); }; }; then
22268   sigact_bad=yes
22269
22270@@ -19920,11 +19921,11 @@
22271 rm -f conftest.$ac_objext conftest.$ac_ext
22272 fi
22273 rm -f conftest.$ac_objext conftest.$ac_ext
22274-echo "$as_me:19923: result: $sigact_bad" >&5
22275+echo "$as_me:19924: result: $sigact_bad" >&5
22276 echo "${ECHO_T}$sigact_bad" >&6
22277 fi
22278
22279-echo "$as_me:19927: checking if nanosleep really works" >&5
22280+echo "$as_me:19928: checking if nanosleep really works" >&5
22281 echo $ECHO_N "checking if nanosleep really works... $ECHO_C" >&6
22282 if test "${cf_cv_func_nanosleep+set}" = set; then
22283   echo $ECHO_N "(cached) $ECHO_C" >&6
22284@@ -19934,7 +19935,7 @@
22285   cf_cv_func_nanosleep=unknown
22286 else
22287   cat >conftest.$ac_ext <<_ACEOF
22288-#line 19937 "configure"
22289+#line 19938 "configure"
22290 #include "confdefs.h"
22291
22292 #include <stdio.h>
22293@@ -19959,15 +19960,15 @@
22294
22295 _ACEOF
22296 rm -f conftest$ac_exeext
22297-if { (eval echo "$as_me:19962: \"$ac_link\"") >&5
22298+if { (eval echo "$as_me:19963: \"$ac_link\"") >&5
22299   (eval $ac_link) 2>&5
22300   ac_status=$?
22301-  echo "$as_me:19965: \$? = $ac_status" >&5
22302+  echo "$as_me:19966: \$? = $ac_status" >&5
22303   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
22304-  { (eval echo "$as_me:19967: \"$ac_try\"") >&5
22305+  { (eval echo "$as_me:19968: \"$ac_try\"") >&5
22306   (eval $ac_try) 2>&5
22307   ac_status=$?
22308-  echo "$as_me:19970: \$? = $ac_status" >&5
22309+  echo "$as_me:19971: \$? = $ac_status" >&5
22310   (exit $ac_status); }; }; then
22311   cf_cv_func_nanosleep=yes
22312 else
22313@@ -19979,7 +19980,7 @@
22314 rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
22315 fi
22316 fi
22317-echo "$as_me:19982: result: $cf_cv_func_nanosleep" >&5
22318+echo "$as_me:19983: result: $cf_cv_func_nanosleep" >&5
22319 echo "${ECHO_T}$cf_cv_func_nanosleep" >&6
22320
22321 test "$cf_cv_func_nanosleep" = "yes" &&
22322@@ -19996,23 +19997,23 @@
22323
22324 do
22325 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
22326-echo "$as_me:19999: checking for $ac_header" >&5
22327+echo "$as_me:20000: checking for $ac_header" >&5
22328 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
22329 if eval "test \"\${$as_ac_Header+set}\" = set"; then
22330   echo $ECHO_N "(cached) $ECHO_C" >&6
22331 else
22332   cat >conftest.$ac_ext <<_ACEOF
22333-#line 20005 "configure"
22334+#line 20006 "configure"
22335 #include "confdefs.h"
22336 #include <$ac_header>
22337 _ACEOF
22338-if { (eval echo "$as_me:20009: \"$ac_cpp conftest.$ac_ext\"") >&5
22339+if { (eval echo "$as_me:20010: \"$ac_cpp conftest.$ac_ext\"") >&5
22340   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
22341   ac_status=$?
22342   egrep -v '^ *\+' conftest.er1 >conftest.err
22343   rm -f conftest.er1
22344   cat conftest.err >&5
22345-  echo "$as_me:20015: \$? = $ac_status" >&5
22346+  echo "$as_me:20016: \$? = $ac_status" >&5
22347   (exit $ac_status); } >/dev/null; then
22348   if test -s conftest.err; then
22349     ac_cpp_err=$ac_c_preproc_warn_flag
22350@@ -20031,7 +20032,7 @@
22351 fi
22352 rm -f conftest.err conftest.$ac_ext
22353 fi
22354-echo "$as_me:20034: result: `eval echo '${'$as_ac_Header'}'`" >&5
22355+echo "$as_me:20035: result: `eval echo '${'$as_ac_Header'}'`" >&5
22356 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
22357 if test `eval echo '${'$as_ac_Header'}'` = yes; then
22358   cat >>confdefs.h <<EOF
22359@@ -20048,10 +20049,10 @@
22360 	(*)	termios_bad=maybe ;;
22361 	esac
22362 	if test "$termios_bad" = maybe ; then
22363-	echo "$as_me:20051: checking whether termios.h needs _POSIX_SOURCE" >&5
22364+	echo "$as_me:20052: checking whether termios.h needs _POSIX_SOURCE" >&5
22365 echo $ECHO_N "checking whether termios.h needs _POSIX_SOURCE... $ECHO_C" >&6
22366 	cat >conftest.$ac_ext <<_ACEOF
22367-#line 20054 "configure"
22368+#line 20055 "configure"
22369 #include "confdefs.h"
22370 #include <termios.h>
22371 int
22372@@ -20063,16 +20064,16 @@
22373 }
22374 _ACEOF
22375 rm -f conftest.$ac_objext
22376-if { (eval echo "$as_me:20066: \"$ac_compile\"") >&5
22377+if { (eval echo "$as_me:20067: \"$ac_compile\"") >&5
22378   (eval $ac_compile) 2>&5
22379   ac_status=$?
22380-  echo "$as_me:20069: \$? = $ac_status" >&5
22381+  echo "$as_me:20070: \$? = $ac_status" >&5
22382   (exit $ac_status); } &&
22383          { ac_try='test -s conftest.$ac_objext'
22384-  { (eval echo "$as_me:20072: \"$ac_try\"") >&5
22385+  { (eval echo "$as_me:20073: \"$ac_try\"") >&5
22386   (eval $ac_try) 2>&5
22387   ac_status=$?
22388-  echo "$as_me:20075: \$? = $ac_status" >&5
22389+  echo "$as_me:20076: \$? = $ac_status" >&5
22390   (exit $ac_status); }; }; then
22391   termios_bad=no
22392 else
22393@@ -20080,7 +20081,7 @@
22394 cat conftest.$ac_ext >&5
22395
22396 		cat >conftest.$ac_ext <<_ACEOF
22397-#line 20083 "configure"
22398+#line 20084 "configure"
22399 #include "confdefs.h"
22400
22401 #define _POSIX_SOURCE
22402@@ -20094,16 +20095,16 @@
22403 }
22404 _ACEOF
22405 rm -f conftest.$ac_objext
22406-if { (eval echo "$as_me:20097: \"$ac_compile\"") >&5
22407+if { (eval echo "$as_me:20098: \"$ac_compile\"") >&5
22408   (eval $ac_compile) 2>&5
22409   ac_status=$?
22410-  echo "$as_me:20100: \$? = $ac_status" >&5
22411+  echo "$as_me:20101: \$? = $ac_status" >&5
22412   (exit $ac_status); } &&
22413          { ac_try='test -s conftest.$ac_objext'
22414-  { (eval echo "$as_me:20103: \"$ac_try\"") >&5
22415+  { (eval echo "$as_me:20104: \"$ac_try\"") >&5
22416   (eval $ac_try) 2>&5
22417   ac_status=$?
22418-  echo "$as_me:20106: \$? = $ac_status" >&5
22419+  echo "$as_me:20107: \$? = $ac_status" >&5
22420   (exit $ac_status); }; }; then
22421   termios_bad=unknown
22422 else
22423@@ -20119,19 +20120,19 @@
22424
22425 fi
22426 rm -f conftest.$ac_objext conftest.$ac_ext
22427-	echo "$as_me:20122: result: $termios_bad" >&5
22428+	echo "$as_me:20123: result: $termios_bad" >&5
22429 echo "${ECHO_T}$termios_bad" >&6
22430 	fi
22431 fi
22432
22433-echo "$as_me:20127: checking for tcgetattr" >&5
22434+echo "$as_me:20128: checking for tcgetattr" >&5
22435 echo $ECHO_N "checking for tcgetattr... $ECHO_C" >&6
22436 if test "${cf_cv_have_tcgetattr+set}" = set; then
22437   echo $ECHO_N "(cached) $ECHO_C" >&6
22438 else
22439
22440 cat >conftest.$ac_ext <<_ACEOF
22441-#line 20134 "configure"
22442+#line 20135 "configure"
22443 #include "confdefs.h"
22444
22445 #include <sys/types.h>
22446@@ -20159,16 +20160,16 @@
22447 }
22448 _ACEOF
22449 rm -f conftest.$ac_objext conftest$ac_exeext
22450-if { (eval echo "$as_me:20162: \"$ac_link\"") >&5
22451+if { (eval echo "$as_me:20163: \"$ac_link\"") >&5
22452   (eval $ac_link) 2>&5
22453   ac_status=$?
22454-  echo "$as_me:20165: \$? = $ac_status" >&5
22455+  echo "$as_me:20166: \$? = $ac_status" >&5
22456   (exit $ac_status); } &&
22457          { ac_try='test -s conftest$ac_exeext'
22458-  { (eval echo "$as_me:20168: \"$ac_try\"") >&5
22459+  { (eval echo "$as_me:20169: \"$ac_try\"") >&5
22460   (eval $ac_try) 2>&5
22461   ac_status=$?
22462-  echo "$as_me:20171: \$? = $ac_status" >&5
22463+  echo "$as_me:20172: \$? = $ac_status" >&5
22464   (exit $ac_status); }; }; then
22465   cf_cv_have_tcgetattr=yes
22466 else
22467@@ -20178,21 +20179,21 @@
22468 fi
22469 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
22470 fi
22471-echo "$as_me:20181: result: $cf_cv_have_tcgetattr" >&5
22472+echo "$as_me:20182: result: $cf_cv_have_tcgetattr" >&5
22473 echo "${ECHO_T}$cf_cv_have_tcgetattr" >&6
22474 test "$cf_cv_have_tcgetattr" = yes &&
22475 cat >>confdefs.h <<\EOF
22476 #define HAVE_TCGETATTR 1
22477 EOF
22478
22479-echo "$as_me:20188: checking for vsscanf function or workaround" >&5
22480+echo "$as_me:20189: checking for vsscanf function or workaround" >&5
22481 echo $ECHO_N "checking for vsscanf function or workaround... $ECHO_C" >&6
22482 if test "${cf_cv_func_vsscanf+set}" = set; then
22483   echo $ECHO_N "(cached) $ECHO_C" >&6
22484 else
22485
22486 cat >conftest.$ac_ext <<_ACEOF
22487-#line 20195 "configure"
22488+#line 20196 "configure"
22489 #include "confdefs.h"
22490
22491 #include <stdarg.h>
22492@@ -20208,16 +20209,16 @@
22493 }
22494 _ACEOF
22495 rm -f conftest.$ac_objext conftest$ac_exeext
22496-if { (eval echo "$as_me:20211: \"$ac_link\"") >&5
22497+if { (eval echo "$as_me:20212: \"$ac_link\"") >&5
22498   (eval $ac_link) 2>&5
22499   ac_status=$?
22500-  echo "$as_me:20214: \$? = $ac_status" >&5
22501+  echo "$as_me:20215: \$? = $ac_status" >&5
22502   (exit $ac_status); } &&
22503          { ac_try='test -s conftest$ac_exeext'
22504-  { (eval echo "$as_me:20217: \"$ac_try\"") >&5
22505+  { (eval echo "$as_me:20218: \"$ac_try\"") >&5
22506   (eval $ac_try) 2>&5
22507   ac_status=$?
22508-  echo "$as_me:20220: \$? = $ac_status" >&5
22509+  echo "$as_me:20221: \$? = $ac_status" >&5
22510   (exit $ac_status); }; }; then
22511   cf_cv_func_vsscanf=vsscanf
22512 else
22513@@ -20225,7 +20226,7 @@
22514 cat conftest.$ac_ext >&5
22515
22516 cat >conftest.$ac_ext <<_ACEOF
22517-#line 20228 "configure"
22518+#line 20229 "configure"
22519 #include "confdefs.h"
22520
22521 #include <stdarg.h>
22522@@ -20247,16 +20248,16 @@
22523 }
22524 _ACEOF
22525 rm -f conftest.$ac_objext conftest$ac_exeext
22526-if { (eval echo "$as_me:20250: \"$ac_link\"") >&5
22527+if { (eval echo "$as_me:20251: \"$ac_link\"") >&5
22528   (eval $ac_link) 2>&5
22529   ac_status=$?
22530-  echo "$as_me:20253: \$? = $ac_status" >&5
22531+  echo "$as_me:20254: \$? = $ac_status" >&5
22532   (exit $ac_status); } &&
22533          { ac_try='test -s conftest$ac_exeext'
22534-  { (eval echo "$as_me:20256: \"$ac_try\"") >&5
22535+  { (eval echo "$as_me:20257: \"$ac_try\"") >&5
22536   (eval $ac_try) 2>&5
22537   ac_status=$?
22538-  echo "$as_me:20259: \$? = $ac_status" >&5
22539+  echo "$as_me:20260: \$? = $ac_status" >&5
22540   (exit $ac_status); }; }; then
22541   cf_cv_func_vsscanf=vfscanf
22542 else
22543@@ -20264,7 +20265,7 @@
22544 cat conftest.$ac_ext >&5
22545
22546 cat >conftest.$ac_ext <<_ACEOF
22547-#line 20267 "configure"
22548+#line 20268 "configure"
22549 #include "confdefs.h"
22550
22551 #include <stdarg.h>
22552@@ -20286,16 +20287,16 @@
22553 }
22554 _ACEOF
22555 rm -f conftest.$ac_objext conftest$ac_exeext
22556-if { (eval echo "$as_me:20289: \"$ac_link\"") >&5
22557+if { (eval echo "$as_me:20290: \"$ac_link\"") >&5
22558   (eval $ac_link) 2>&5
22559   ac_status=$?
22560-  echo "$as_me:20292: \$? = $ac_status" >&5
22561+  echo "$as_me:20293: \$? = $ac_status" >&5
22562   (exit $ac_status); } &&
22563          { ac_try='test -s conftest$ac_exeext'
22564-  { (eval echo "$as_me:20295: \"$ac_try\"") >&5
22565+  { (eval echo "$as_me:20296: \"$ac_try\"") >&5
22566   (eval $ac_try) 2>&5
22567   ac_status=$?
22568-  echo "$as_me:20298: \$? = $ac_status" >&5
22569+  echo "$as_me:20299: \$? = $ac_status" >&5
22570   (exit $ac_status); }; }; then
22571   cf_cv_func_vsscanf=_doscan
22572 else
22573@@ -20310,7 +20311,7 @@
22574 fi
22575 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
22576 fi
22577-echo "$as_me:20313: result: $cf_cv_func_vsscanf" >&5
22578+echo "$as_me:20314: result: $cf_cv_func_vsscanf" >&5
22579 echo "${ECHO_T}$cf_cv_func_vsscanf" >&6
22580
22581 case $cf_cv_func_vsscanf in
22582@@ -20336,23 +20337,23 @@
22583
22584 do
22585 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
22586-echo "$as_me:20339: checking for $ac_header" >&5
22587+echo "$as_me:20340: checking for $ac_header" >&5
22588 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
22589 if eval "test \"\${$as_ac_Header+set}\" = set"; then
22590   echo $ECHO_N "(cached) $ECHO_C" >&6
22591 else
22592   cat >conftest.$ac_ext <<_ACEOF
22593-#line 20345 "configure"
22594+#line 20346 "configure"
22595 #include "confdefs.h"
22596 #include <$ac_header>
22597 _ACEOF
22598-if { (eval echo "$as_me:20349: \"$ac_cpp conftest.$ac_ext\"") >&5
22599+if { (eval echo "$as_me:20350: \"$ac_cpp conftest.$ac_ext\"") >&5
22600   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
22601   ac_status=$?
22602   egrep -v '^ *\+' conftest.er1 >conftest.err
22603   rm -f conftest.er1
22604   cat conftest.err >&5
22605-  echo "$as_me:20355: \$? = $ac_status" >&5
22606+  echo "$as_me:20356: \$? = $ac_status" >&5
22607   (exit $ac_status); } >/dev/null; then
22608   if test -s conftest.err; then
22609     ac_cpp_err=$ac_c_preproc_warn_flag
22610@@ -20371,7 +20372,7 @@
22611 fi
22612 rm -f conftest.err conftest.$ac_ext
22613 fi
22614-echo "$as_me:20374: result: `eval echo '${'$as_ac_Header'}'`" >&5
22615+echo "$as_me:20375: result: `eval echo '${'$as_ac_Header'}'`" >&5
22616 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
22617 if test `eval echo '${'$as_ac_Header'}'` = yes; then
22618   cat >>confdefs.h <<EOF
22619@@ -20381,7 +20382,7 @@
22620 fi
22621 done
22622
22623-echo "$as_me:20384: checking for working mkstemp" >&5
22624+echo "$as_me:20385: checking for working mkstemp" >&5
22625 echo $ECHO_N "checking for working mkstemp... $ECHO_C" >&6
22626 if test "${cf_cv_func_mkstemp+set}" = set; then
22627   echo $ECHO_N "(cached) $ECHO_C" >&6
22628@@ -20392,7 +20393,7 @@
22629   cf_cv_func_mkstemp=maybe
22630 else
22631   cat >conftest.$ac_ext <<_ACEOF
22632-#line 20395 "configure"
22633+#line 20396 "configure"
22634 #include "confdefs.h"
22635
22636 #include <sys/types.h>
22637@@ -20433,15 +20434,15 @@
22638
22639 _ACEOF
22640 rm -f conftest$ac_exeext
22641-if { (eval echo "$as_me:20436: \"$ac_link\"") >&5
22642+if { (eval echo "$as_me:20437: \"$ac_link\"") >&5
22643   (eval $ac_link) 2>&5
22644   ac_status=$?
22645-  echo "$as_me:20439: \$? = $ac_status" >&5
22646+  echo "$as_me:20440: \$? = $ac_status" >&5
22647   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
22648-  { (eval echo "$as_me:20441: \"$ac_try\"") >&5
22649+  { (eval echo "$as_me:20442: \"$ac_try\"") >&5
22650   (eval $ac_try) 2>&5
22651   ac_status=$?
22652-  echo "$as_me:20444: \$? = $ac_status" >&5
22653+  echo "$as_me:20445: \$? = $ac_status" >&5
22654   (exit $ac_status); }; }; then
22655   cf_cv_func_mkstemp=yes
22656
22657@@ -20456,16 +20457,16 @@
22658 fi
22659
22660 fi
22661-echo "$as_me:20459: result: $cf_cv_func_mkstemp" >&5
22662+echo "$as_me:20460: result: $cf_cv_func_mkstemp" >&5
22663 echo "${ECHO_T}$cf_cv_func_mkstemp" >&6
22664 if test "x$cf_cv_func_mkstemp" = xmaybe ; then
22665-	echo "$as_me:20462: checking for mkstemp" >&5
22666+	echo "$as_me:20463: checking for mkstemp" >&5
22667 echo $ECHO_N "checking for mkstemp... $ECHO_C" >&6
22668 if test "${ac_cv_func_mkstemp+set}" = set; then
22669   echo $ECHO_N "(cached) $ECHO_C" >&6
22670 else
22671   cat >conftest.$ac_ext <<_ACEOF
22672-#line 20468 "configure"
22673+#line 20469 "configure"
22674 #include "confdefs.h"
22675 #define mkstemp autoconf_temporary
22676 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
22677@@ -20496,16 +20497,16 @@
22678 }
22679 _ACEOF
22680 rm -f conftest.$ac_objext conftest$ac_exeext
22681-if { (eval echo "$as_me:20499: \"$ac_link\"") >&5
22682+if { (eval echo "$as_me:20500: \"$ac_link\"") >&5
22683   (eval $ac_link) 2>&5
22684   ac_status=$?
22685-  echo "$as_me:20502: \$? = $ac_status" >&5
22686+  echo "$as_me:20503: \$? = $ac_status" >&5
22687   (exit $ac_status); } &&
22688          { ac_try='test -s conftest$ac_exeext'
22689-  { (eval echo "$as_me:20505: \"$ac_try\"") >&5
22690+  { (eval echo "$as_me:20506: \"$ac_try\"") >&5
22691   (eval $ac_try) 2>&5
22692   ac_status=$?
22693-  echo "$as_me:20508: \$? = $ac_status" >&5
22694+  echo "$as_me:20509: \$? = $ac_status" >&5
22695   (exit $ac_status); }; }; then
22696   ac_cv_func_mkstemp=yes
22697 else
22698@@ -20515,7 +20516,7 @@
22699 fi
22700 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
22701 fi
22702-echo "$as_me:20518: result: $ac_cv_func_mkstemp" >&5
22703+echo "$as_me:20519: result: $ac_cv_func_mkstemp" >&5
22704 echo "${ECHO_T}$ac_cv_func_mkstemp" >&6
22705
22706 fi
22707@@ -20536,21 +20537,21 @@
22708 fi
22709
22710 if test "x$cross_compiling" = xyes ; then
22711-	{ echo "$as_me:20539: WARNING: cross compiling: assume setvbuf params not reversed" >&5
22712+	{ echo "$as_me:20540: WARNING: cross compiling: assume setvbuf params not reversed" >&5
22713 echo "$as_me: WARNING: cross compiling: assume setvbuf params not reversed" >&2;}
22714 else
22715-	echo "$as_me:20542: checking whether setvbuf arguments are reversed" >&5
22716+	echo "$as_me:20543: checking whether setvbuf arguments are reversed" >&5
22717 echo $ECHO_N "checking whether setvbuf arguments are reversed... $ECHO_C" >&6
22718 if test "${ac_cv_func_setvbuf_reversed+set}" = set; then
22719   echo $ECHO_N "(cached) $ECHO_C" >&6
22720 else
22721   if test "$cross_compiling" = yes; then
22722-  { { echo "$as_me:20548: error: cannot run test program while cross compiling" >&5
22723+  { { echo "$as_me:20549: error: cannot run test program while cross compiling" >&5
22724 echo "$as_me: error: cannot run test program while cross compiling" >&2;}
22725    { (exit 1); exit 1; }; }
22726 else
22727   cat >conftest.$ac_ext <<_ACEOF
22728-#line 20553 "configure"
22729+#line 20554 "configure"
22730 #include "confdefs.h"
22731 #include <stdio.h>
22732 /* If setvbuf has the reversed format, exit 0. */
22733@@ -20567,15 +20568,15 @@
22734 }
22735 _ACEOF
22736 rm -f conftest$ac_exeext
22737-if { (eval echo "$as_me:20570: \"$ac_link\"") >&5
22738+if { (eval echo "$as_me:20571: \"$ac_link\"") >&5
22739   (eval $ac_link) 2>&5
22740   ac_status=$?
22741-  echo "$as_me:20573: \$? = $ac_status" >&5
22742+  echo "$as_me:20574: \$? = $ac_status" >&5
22743   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
22744-  { (eval echo "$as_me:20575: \"$ac_try\"") >&5
22745+  { (eval echo "$as_me:20576: \"$ac_try\"") >&5
22746   (eval $ac_try) 2>&5
22747   ac_status=$?
22748-  echo "$as_me:20578: \$? = $ac_status" >&5
22749+  echo "$as_me:20579: \$? = $ac_status" >&5
22750   (exit $ac_status); }; }; then
22751   ac_cv_func_setvbuf_reversed=yes
22752 else
22753@@ -20588,7 +20589,7 @@
22754 fi
22755 rm -f core core.* *.core
22756 fi
22757-echo "$as_me:20591: result: $ac_cv_func_setvbuf_reversed" >&5
22758+echo "$as_me:20592: result: $ac_cv_func_setvbuf_reversed" >&5
22759 echo "${ECHO_T}$ac_cv_func_setvbuf_reversed" >&6
22760 if test $ac_cv_func_setvbuf_reversed = yes; then
22761
22762@@ -20599,13 +20600,13 @@
22763 fi
22764
22765 fi
22766-echo "$as_me:20602: checking for intptr_t" >&5
22767+echo "$as_me:20603: checking for intptr_t" >&5
22768 echo $ECHO_N "checking for intptr_t... $ECHO_C" >&6
22769 if test "${ac_cv_type_intptr_t+set}" = set; then
22770   echo $ECHO_N "(cached) $ECHO_C" >&6
22771 else
22772   cat >conftest.$ac_ext <<_ACEOF
22773-#line 20608 "configure"
22774+#line 20609 "configure"
22775 #include "confdefs.h"
22776 $ac_includes_default
22777 int
22778@@ -20620,16 +20621,16 @@
22779 }
22780 _ACEOF
22781 rm -f conftest.$ac_objext
22782-if { (eval echo "$as_me:20623: \"$ac_compile\"") >&5
22783+if { (eval echo "$as_me:20624: \"$ac_compile\"") >&5
22784   (eval $ac_compile) 2>&5
22785   ac_status=$?
22786-  echo "$as_me:20626: \$? = $ac_status" >&5
22787+  echo "$as_me:20627: \$? = $ac_status" >&5
22788   (exit $ac_status); } &&
22789          { ac_try='test -s conftest.$ac_objext'
22790-  { (eval echo "$as_me:20629: \"$ac_try\"") >&5
22791+  { (eval echo "$as_me:20630: \"$ac_try\"") >&5
22792   (eval $ac_try) 2>&5
22793   ac_status=$?
22794-  echo "$as_me:20632: \$? = $ac_status" >&5
22795+  echo "$as_me:20633: \$? = $ac_status" >&5
22796   (exit $ac_status); }; }; then
22797   ac_cv_type_intptr_t=yes
22798 else
22799@@ -20639,7 +20640,7 @@
22800 fi
22801 rm -f conftest.$ac_objext conftest.$ac_ext
22802 fi
22803-echo "$as_me:20642: result: $ac_cv_type_intptr_t" >&5
22804+echo "$as_me:20643: result: $ac_cv_type_intptr_t" >&5
22805 echo "${ECHO_T}$ac_cv_type_intptr_t" >&6
22806 if test $ac_cv_type_intptr_t = yes; then
22807   :
22808@@ -20651,13 +20652,13 @@
22809
22810 fi
22811
22812-echo "$as_me:20654: checking for ssize_t" >&5
22813+echo "$as_me:20655: checking for ssize_t" >&5
22814 echo $ECHO_N "checking for ssize_t... $ECHO_C" >&6
22815 if test "${ac_cv_type_ssize_t+set}" = set; then
22816   echo $ECHO_N "(cached) $ECHO_C" >&6
22817 else
22818   cat >conftest.$ac_ext <<_ACEOF
22819-#line 20660 "configure"
22820+#line 20661 "configure"
22821 #include "confdefs.h"
22822 $ac_includes_default
22823 int
22824@@ -20672,16 +20673,16 @@
22825 }
22826 _ACEOF
22827 rm -f conftest.$ac_objext
22828-if { (eval echo "$as_me:20675: \"$ac_compile\"") >&5
22829+if { (eval echo "$as_me:20676: \"$ac_compile\"") >&5
22830   (eval $ac_compile) 2>&5
22831   ac_status=$?
22832-  echo "$as_me:20678: \$? = $ac_status" >&5
22833+  echo "$as_me:20679: \$? = $ac_status" >&5
22834   (exit $ac_status); } &&
22835          { ac_try='test -s conftest.$ac_objext'
22836-  { (eval echo "$as_me:20681: \"$ac_try\"") >&5
22837+  { (eval echo "$as_me:20682: \"$ac_try\"") >&5
22838   (eval $ac_try) 2>&5
22839   ac_status=$?
22840-  echo "$as_me:20684: \$? = $ac_status" >&5
22841+  echo "$as_me:20685: \$? = $ac_status" >&5
22842   (exit $ac_status); }; }; then
22843   ac_cv_type_ssize_t=yes
22844 else
22845@@ -20691,7 +20692,7 @@
22846 fi
22847 rm -f conftest.$ac_objext conftest.$ac_ext
22848 fi
22849-echo "$as_me:20694: result: $ac_cv_type_ssize_t" >&5
22850+echo "$as_me:20695: result: $ac_cv_type_ssize_t" >&5
22851 echo "${ECHO_T}$ac_cv_type_ssize_t" >&6
22852 if test $ac_cv_type_ssize_t = yes; then
22853   :
22854@@ -20703,14 +20704,14 @@
22855
22856 fi
22857
22858-echo "$as_me:20706: checking for type sigaction_t" >&5
22859+echo "$as_me:20707: checking for type sigaction_t" >&5
22860 echo $ECHO_N "checking for type sigaction_t... $ECHO_C" >&6
22861 if test "${cf_cv_type_sigaction+set}" = set; then
22862   echo $ECHO_N "(cached) $ECHO_C" >&6
22863 else
22864
22865 	cat >conftest.$ac_ext <<_ACEOF
22866-#line 20713 "configure"
22867+#line 20714 "configure"
22868 #include "confdefs.h"
22869
22870 #include <signal.h>
22871@@ -20723,16 +20724,16 @@
22872 }
22873 _ACEOF
22874 rm -f conftest.$ac_objext
22875-if { (eval echo "$as_me:20726: \"$ac_compile\"") >&5
22876+if { (eval echo "$as_me:20727: \"$ac_compile\"") >&5
22877   (eval $ac_compile) 2>&5
22878   ac_status=$?
22879-  echo "$as_me:20729: \$? = $ac_status" >&5
22880+  echo "$as_me:20730: \$? = $ac_status" >&5
22881   (exit $ac_status); } &&
22882          { ac_try='test -s conftest.$ac_objext'
22883-  { (eval echo "$as_me:20732: \"$ac_try\"") >&5
22884+  { (eval echo "$as_me:20733: \"$ac_try\"") >&5
22885   (eval $ac_try) 2>&5
22886   ac_status=$?
22887-  echo "$as_me:20735: \$? = $ac_status" >&5
22888+  echo "$as_me:20736: \$? = $ac_status" >&5
22889   (exit $ac_status); }; }; then
22890   cf_cv_type_sigaction=yes
22891 else
22892@@ -20743,14 +20744,14 @@
22893 rm -f conftest.$ac_objext conftest.$ac_ext
22894 fi
22895
22896-echo "$as_me:20746: result: $cf_cv_type_sigaction" >&5
22897+echo "$as_me:20747: result: $cf_cv_type_sigaction" >&5
22898 echo "${ECHO_T}$cf_cv_type_sigaction" >&6
22899 test "$cf_cv_type_sigaction" = yes &&
22900 cat >>confdefs.h <<\EOF
22901 #define HAVE_TYPE_SIGACTION 1
22902 EOF
22903
22904-echo "$as_me:20753: checking declaration of size-change" >&5
22905+echo "$as_me:20754: checking declaration of size-change" >&5
22906 echo $ECHO_N "checking declaration of size-change... $ECHO_C" >&6
22907 if test "${cf_cv_sizechange+set}" = set; then
22908   echo $ECHO_N "(cached) $ECHO_C" >&6
22909@@ -20771,7 +20772,7 @@
22910
22911 	fi
22912 	cat >conftest.$ac_ext <<_ACEOF
22913-#line 20774 "configure"
22914+#line 20775 "configure"
22915 #include "confdefs.h"
22916 #include <sys/types.h>
22917 #ifdef HAVE_TERMIOS_H
22918@@ -20817,16 +20818,16 @@
22919 }
22920 _ACEOF
22921 rm -f conftest.$ac_objext
22922-if { (eval echo "$as_me:20820: \"$ac_compile\"") >&5
22923+if { (eval echo "$as_me:20821: \"$ac_compile\"") >&5
22924   (eval $ac_compile) 2>&5
22925   ac_status=$?
22926-  echo "$as_me:20823: \$? = $ac_status" >&5
22927+  echo "$as_me:20824: \$? = $ac_status" >&5
22928   (exit $ac_status); } &&
22929          { ac_try='test -s conftest.$ac_objext'
22930-  { (eval echo "$as_me:20826: \"$ac_try\"") >&5
22931+  { (eval echo "$as_me:20827: \"$ac_try\"") >&5
22932   (eval $ac_try) 2>&5
22933   ac_status=$?
22934-  echo "$as_me:20829: \$? = $ac_status" >&5
22935+  echo "$as_me:20830: \$? = $ac_status" >&5
22936   (exit $ac_status); }; }; then
22937   cf_cv_sizechange=yes
22938 else
22939@@ -20845,7 +20846,7 @@
22940 done
22941
22942 fi
22943-echo "$as_me:20848: result: $cf_cv_sizechange" >&5
22944+echo "$as_me:20849: result: $cf_cv_sizechange" >&5
22945 echo "${ECHO_T}$cf_cv_sizechange" >&6
22946 if test "$cf_cv_sizechange" != no ; then
22947
22948@@ -20863,13 +20864,13 @@
22949 	esac
22950 fi
22951
22952-echo "$as_me:20866: checking for memmove" >&5
22953+echo "$as_me:20867: checking for memmove" >&5
22954 echo $ECHO_N "checking for memmove... $ECHO_C" >&6
22955 if test "${ac_cv_func_memmove+set}" = set; then
22956   echo $ECHO_N "(cached) $ECHO_C" >&6
22957 else
22958   cat >conftest.$ac_ext <<_ACEOF
22959-#line 20872 "configure"
22960+#line 20873 "configure"
22961 #include "confdefs.h"
22962 #define memmove autoconf_temporary
22963 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
22964@@ -20900,16 +20901,16 @@
22965 }
22966 _ACEOF
22967 rm -f conftest.$ac_objext conftest$ac_exeext
22968-if { (eval echo "$as_me:20903: \"$ac_link\"") >&5
22969+if { (eval echo "$as_me:20904: \"$ac_link\"") >&5
22970   (eval $ac_link) 2>&5
22971   ac_status=$?
22972-  echo "$as_me:20906: \$? = $ac_status" >&5
22973+  echo "$as_me:20907: \$? = $ac_status" >&5
22974   (exit $ac_status); } &&
22975          { ac_try='test -s conftest$ac_exeext'
22976-  { (eval echo "$as_me:20909: \"$ac_try\"") >&5
22977+  { (eval echo "$as_me:20910: \"$ac_try\"") >&5
22978   (eval $ac_try) 2>&5
22979   ac_status=$?
22980-  echo "$as_me:20912: \$? = $ac_status" >&5
22981+  echo "$as_me:20913: \$? = $ac_status" >&5
22982   (exit $ac_status); }; }; then
22983   ac_cv_func_memmove=yes
22984 else
22985@@ -20919,19 +20920,19 @@
22986 fi
22987 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
22988 fi
22989-echo "$as_me:20922: result: $ac_cv_func_memmove" >&5
22990+echo "$as_me:20923: result: $ac_cv_func_memmove" >&5
22991 echo "${ECHO_T}$ac_cv_func_memmove" >&6
22992 if test $ac_cv_func_memmove = yes; then
22993   :
22994 else
22995
22996-echo "$as_me:20928: checking for bcopy" >&5
22997+echo "$as_me:20929: checking for bcopy" >&5
22998 echo $ECHO_N "checking for bcopy... $ECHO_C" >&6
22999 if test "${ac_cv_func_bcopy+set}" = set; then
23000   echo $ECHO_N "(cached) $ECHO_C" >&6
23001 else
23002   cat >conftest.$ac_ext <<_ACEOF
23003-#line 20934 "configure"
23004+#line 20935 "configure"
23005 #include "confdefs.h"
23006 #define bcopy autoconf_temporary
23007 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
23008@@ -20962,16 +20963,16 @@
23009 }
23010 _ACEOF
23011 rm -f conftest.$ac_objext conftest$ac_exeext
23012-if { (eval echo "$as_me:20965: \"$ac_link\"") >&5
23013+if { (eval echo "$as_me:20966: \"$ac_link\"") >&5
23014   (eval $ac_link) 2>&5
23015   ac_status=$?
23016-  echo "$as_me:20968: \$? = $ac_status" >&5
23017+  echo "$as_me:20969: \$? = $ac_status" >&5
23018   (exit $ac_status); } &&
23019          { ac_try='test -s conftest$ac_exeext'
23020-  { (eval echo "$as_me:20971: \"$ac_try\"") >&5
23021+  { (eval echo "$as_me:20972: \"$ac_try\"") >&5
23022   (eval $ac_try) 2>&5
23023   ac_status=$?
23024-  echo "$as_me:20974: \$? = $ac_status" >&5
23025+  echo "$as_me:20975: \$? = $ac_status" >&5
23026   (exit $ac_status); }; }; then
23027   ac_cv_func_bcopy=yes
23028 else
23029@@ -20981,11 +20982,11 @@
23030 fi
23031 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
23032 fi
23033-echo "$as_me:20984: result: $ac_cv_func_bcopy" >&5
23034+echo "$as_me:20985: result: $ac_cv_func_bcopy" >&5
23035 echo "${ECHO_T}$ac_cv_func_bcopy" >&6
23036 if test $ac_cv_func_bcopy = yes; then
23037
23038-	echo "$as_me:20988: checking if bcopy does overlapping moves" >&5
23039+	echo "$as_me:20989: checking if bcopy does overlapping moves" >&5
23040 echo $ECHO_N "checking if bcopy does overlapping moves... $ECHO_C" >&6
23041 if test "${cf_cv_good_bcopy+set}" = set; then
23042   echo $ECHO_N "(cached) $ECHO_C" >&6
23043@@ -20995,7 +20996,7 @@
23044   cf_cv_good_bcopy=unknown
23045 else
23046   cat >conftest.$ac_ext <<_ACEOF
23047-#line 20998 "configure"
23048+#line 20999 "configure"
23049 #include "confdefs.h"
23050
23051 int main(void) {
23052@@ -21009,15 +21010,15 @@
23053
23054 _ACEOF
23055 rm -f conftest$ac_exeext
23056-if { (eval echo "$as_me:21012: \"$ac_link\"") >&5
23057+if { (eval echo "$as_me:21013: \"$ac_link\"") >&5
23058   (eval $ac_link) 2>&5
23059   ac_status=$?
23060-  echo "$as_me:21015: \$? = $ac_status" >&5
23061+  echo "$as_me:21016: \$? = $ac_status" >&5
23062   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
23063-  { (eval echo "$as_me:21017: \"$ac_try\"") >&5
23064+  { (eval echo "$as_me:21018: \"$ac_try\"") >&5
23065   (eval $ac_try) 2>&5
23066   ac_status=$?
23067-  echo "$as_me:21020: \$? = $ac_status" >&5
23068+  echo "$as_me:21021: \$? = $ac_status" >&5
23069   (exit $ac_status); }; }; then
23070   cf_cv_good_bcopy=yes
23071 else
23072@@ -21030,7 +21031,7 @@
23073 fi
23074
23075 fi
23076-echo "$as_me:21033: result: $cf_cv_good_bcopy" >&5
23077+echo "$as_me:21034: result: $cf_cv_good_bcopy" >&5
23078 echo "${ECHO_T}$cf_cv_good_bcopy" >&6
23079
23080 else
23081@@ -21057,13 +21058,13 @@
23082 for ac_func in posix_openpt
23083 do
23084 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
23085-echo "$as_me:21060: checking for $ac_func" >&5
23086+echo "$as_me:21061: checking for $ac_func" >&5
23087 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
23088 if eval "test \"\${$as_ac_var+set}\" = set"; then
23089   echo $ECHO_N "(cached) $ECHO_C" >&6
23090 else
23091   cat >conftest.$ac_ext <<_ACEOF
23092-#line 21066 "configure"
23093+#line 21067 "configure"
23094 #include "confdefs.h"
23095 #define $ac_func autoconf_temporary
23096 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
23097@@ -21094,16 +21095,16 @@
23098 }
23099 _ACEOF
23100 rm -f conftest.$ac_objext conftest$ac_exeext
23101-if { (eval echo "$as_me:21097: \"$ac_link\"") >&5
23102+if { (eval echo "$as_me:21098: \"$ac_link\"") >&5
23103   (eval $ac_link) 2>&5
23104   ac_status=$?
23105-  echo "$as_me:21100: \$? = $ac_status" >&5
23106+  echo "$as_me:21101: \$? = $ac_status" >&5
23107   (exit $ac_status); } &&
23108          { ac_try='test -s conftest$ac_exeext'
23109-  { (eval echo "$as_me:21103: \"$ac_try\"") >&5
23110+  { (eval echo "$as_me:21104: \"$ac_try\"") >&5
23111   (eval $ac_try) 2>&5
23112   ac_status=$?
23113-  echo "$as_me:21106: \$? = $ac_status" >&5
23114+  echo "$as_me:21107: \$? = $ac_status" >&5
23115   (exit $ac_status); }; }; then
23116   eval "$as_ac_var=yes"
23117 else
23118@@ -21113,7 +21114,7 @@
23119 fi
23120 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
23121 fi
23122-echo "$as_me:21116: result: `eval echo '${'$as_ac_var'}'`" >&5
23123+echo "$as_me:21117: result: `eval echo '${'$as_ac_var'}'`" >&5
23124 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
23125 if test `eval echo '${'$as_ac_var'}'` = yes; then
23126   cat >>confdefs.h <<EOF
23127@@ -21123,7 +21124,7 @@
23128 fi
23129 done
23130  }
23131-echo "$as_me:21126: checking if poll really works" >&5
23132+echo "$as_me:21127: checking if poll really works" >&5
23133 echo $ECHO_N "checking if poll really works... $ECHO_C" >&6
23134 if test "${cf_cv_working_poll+set}" = set; then
23135   echo $ECHO_N "(cached) $ECHO_C" >&6
23136@@ -21133,7 +21134,7 @@
23137   cf_cv_working_poll=unknown
23138 else
23139   cat >conftest.$ac_ext <<_ACEOF
23140-#line 21136 "configure"
23141+#line 21137 "configure"
23142 #include "confdefs.h"
23143
23144 #include <stdlib.h>
23145@@ -21185,15 +21186,15 @@
23146 }
23147 _ACEOF
23148 rm -f conftest$ac_exeext
23149-if { (eval echo "$as_me:21188: \"$ac_link\"") >&5
23150+if { (eval echo "$as_me:21189: \"$ac_link\"") >&5
23151   (eval $ac_link) 2>&5
23152   ac_status=$?
23153-  echo "$as_me:21191: \$? = $ac_status" >&5
23154+  echo "$as_me:21192: \$? = $ac_status" >&5
23155   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
23156-  { (eval echo "$as_me:21193: \"$ac_try\"") >&5
23157+  { (eval echo "$as_me:21194: \"$ac_try\"") >&5
23158   (eval $ac_try) 2>&5
23159   ac_status=$?
23160-  echo "$as_me:21196: \$? = $ac_status" >&5
23161+  echo "$as_me:21197: \$? = $ac_status" >&5
23162   (exit $ac_status); }; }; then
23163   cf_cv_working_poll=yes
23164 else
23165@@ -21205,21 +21206,21 @@
23166 rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
23167 fi
23168 fi
23169-echo "$as_me:21208: result: $cf_cv_working_poll" >&5
23170+echo "$as_me:21209: result: $cf_cv_working_poll" >&5
23171 echo "${ECHO_T}$cf_cv_working_poll" >&6
23172 test "$cf_cv_working_poll" = "yes" &&
23173 cat >>confdefs.h <<\EOF
23174 #define HAVE_WORKING_POLL 1
23175 EOF
23176
23177-echo "$as_me:21215: checking for va_copy" >&5
23178+echo "$as_me:21216: checking for va_copy" >&5
23179 echo $ECHO_N "checking for va_copy... $ECHO_C" >&6
23180 if test "${cf_cv_have_va_copy+set}" = set; then
23181   echo $ECHO_N "(cached) $ECHO_C" >&6
23182 else
23183
23184 cat >conftest.$ac_ext <<_ACEOF
23185-#line 21222 "configure"
23186+#line 21223 "configure"
23187 #include "confdefs.h"
23188
23189 #include <stdarg.h>
23190@@ -21236,16 +21237,16 @@
23191 }
23192 _ACEOF
23193 rm -f conftest.$ac_objext conftest$ac_exeext
23194-if { (eval echo "$as_me:21239: \"$ac_link\"") >&5
23195+if { (eval echo "$as_me:21240: \"$ac_link\"") >&5
23196   (eval $ac_link) 2>&5
23197   ac_status=$?
23198-  echo "$as_me:21242: \$? = $ac_status" >&5
23199+  echo "$as_me:21243: \$? = $ac_status" >&5
23200   (exit $ac_status); } &&
23201          { ac_try='test -s conftest$ac_exeext'
23202-  { (eval echo "$as_me:21245: \"$ac_try\"") >&5
23203+  { (eval echo "$as_me:21246: \"$ac_try\"") >&5
23204   (eval $ac_try) 2>&5
23205   ac_status=$?
23206-  echo "$as_me:21248: \$? = $ac_status" >&5
23207+  echo "$as_me:21249: \$? = $ac_status" >&5
23208   (exit $ac_status); }; }; then
23209   cf_cv_have_va_copy=yes
23210 else
23211@@ -21255,7 +21256,7 @@
23212 fi
23213 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
23214 fi
23215-echo "$as_me:21258: result: $cf_cv_have_va_copy" >&5
23216+echo "$as_me:21259: result: $cf_cv_have_va_copy" >&5
23217 echo "${ECHO_T}$cf_cv_have_va_copy" >&6
23218
23219 if test "$cf_cv_have_va_copy" = yes;
23220@@ -21267,14 +21268,14 @@
23221
23222 else # !cf_cv_have_va_copy
23223
23224-echo "$as_me:21270: checking for __va_copy" >&5
23225+echo "$as_me:21271: checking for __va_copy" >&5
23226 echo $ECHO_N "checking for __va_copy... $ECHO_C" >&6
23227 if test "${cf_cv_have___va_copy+set}" = set; then
23228   echo $ECHO_N "(cached) $ECHO_C" >&6
23229 else
23230
23231 cat >conftest.$ac_ext <<_ACEOF
23232-#line 21277 "configure"
23233+#line 21278 "configure"
23234 #include "confdefs.h"
23235
23236 #include <stdarg.h>
23237@@ -21291,16 +21292,16 @@
23238 }
23239 _ACEOF
23240 rm -f conftest.$ac_objext conftest$ac_exeext
23241-if { (eval echo "$as_me:21294: \"$ac_link\"") >&5
23242+if { (eval echo "$as_me:21295: \"$ac_link\"") >&5
23243   (eval $ac_link) 2>&5
23244   ac_status=$?
23245-  echo "$as_me:21297: \$? = $ac_status" >&5
23246+  echo "$as_me:21298: \$? = $ac_status" >&5
23247   (exit $ac_status); } &&
23248          { ac_try='test -s conftest$ac_exeext'
23249-  { (eval echo "$as_me:21300: \"$ac_try\"") >&5
23250+  { (eval echo "$as_me:21301: \"$ac_try\"") >&5
23251   (eval $ac_try) 2>&5
23252   ac_status=$?
23253-  echo "$as_me:21303: \$? = $ac_status" >&5
23254+  echo "$as_me:21304: \$? = $ac_status" >&5
23255   (exit $ac_status); }; }; then
23256   cf_cv_have___va_copy=yes
23257 else
23258@@ -21310,7 +21311,7 @@
23259 fi
23260 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
23261 fi
23262-echo "$as_me:21313: result: $cf_cv_have___va_copy" >&5
23263+echo "$as_me:21314: result: $cf_cv_have___va_copy" >&5
23264 echo "${ECHO_T}$cf_cv_have___va_copy" >&6
23265
23266 if test "$cf_cv_have___va_copy" = yes
23267@@ -21322,14 +21323,14 @@
23268
23269 else # !cf_cv_have___va_copy
23270
23271-echo "$as_me:21325: checking for __builtin_va_copy" >&5
23272+echo "$as_me:21326: checking for __builtin_va_copy" >&5
23273 echo $ECHO_N "checking for __builtin_va_copy... $ECHO_C" >&6
23274 if test "${cf_cv_have___builtin_va_copy+set}" = set; then
23275   echo $ECHO_N "(cached) $ECHO_C" >&6
23276 else
23277
23278 cat >conftest.$ac_ext <<_ACEOF
23279-#line 21332 "configure"
23280+#line 21333 "configure"
23281 #include "confdefs.h"
23282
23283 #include <stdarg.h>
23284@@ -21346,16 +21347,16 @@
23285 }
23286 _ACEOF
23287 rm -f conftest.$ac_objext conftest$ac_exeext
23288-if { (eval echo "$as_me:21349: \"$ac_link\"") >&5
23289+if { (eval echo "$as_me:21350: \"$ac_link\"") >&5
23290   (eval $ac_link) 2>&5
23291   ac_status=$?
23292-  echo "$as_me:21352: \$? = $ac_status" >&5
23293+  echo "$as_me:21353: \$? = $ac_status" >&5
23294   (exit $ac_status); } &&
23295          { ac_try='test -s conftest$ac_exeext'
23296-  { (eval echo "$as_me:21355: \"$ac_try\"") >&5
23297+  { (eval echo "$as_me:21356: \"$ac_try\"") >&5
23298   (eval $ac_try) 2>&5
23299   ac_status=$?
23300-  echo "$as_me:21358: \$? = $ac_status" >&5
23301+  echo "$as_me:21359: \$? = $ac_status" >&5
23302   (exit $ac_status); }; }; then
23303   cf_cv_have___builtin_va_copy=yes
23304 else
23305@@ -21365,7 +21366,7 @@
23306 fi
23307 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
23308 fi
23309-echo "$as_me:21368: result: $cf_cv_have___builtin_va_copy" >&5
23310+echo "$as_me:21369: result: $cf_cv_have___builtin_va_copy" >&5
23311 echo "${ECHO_T}$cf_cv_have___builtin_va_copy" >&6
23312
23313 test "$cf_cv_have___builtin_va_copy" = yes &&
23314@@ -21383,14 +21384,14 @@
23315 	;;
23316
23317 (*)
23318-	echo "$as_me:21386: checking if we can simply copy va_list" >&5
23319+	echo "$as_me:21387: checking if we can simply copy va_list" >&5
23320 echo $ECHO_N "checking if we can simply copy va_list... $ECHO_C" >&6
23321 if test "${cf_cv_pointer_va_list+set}" = set; then
23322   echo $ECHO_N "(cached) $ECHO_C" >&6
23323 else
23324
23325 cat >conftest.$ac_ext <<_ACEOF
23326-#line 21393 "configure"
23327+#line 21394 "configure"
23328 #include "confdefs.h"
23329
23330 #include <stdarg.h>
23331@@ -21407,16 +21408,16 @@
23332 }
23333 _ACEOF
23334 rm -f conftest.$ac_objext conftest$ac_exeext
23335-if { (eval echo "$as_me:21410: \"$ac_link\"") >&5
23336+if { (eval echo "$as_me:21411: \"$ac_link\"") >&5
23337   (eval $ac_link) 2>&5
23338   ac_status=$?
23339-  echo "$as_me:21413: \$? = $ac_status" >&5
23340+  echo "$as_me:21414: \$? = $ac_status" >&5
23341   (exit $ac_status); } &&
23342          { ac_try='test -s conftest$ac_exeext'
23343-  { (eval echo "$as_me:21416: \"$ac_try\"") >&5
23344+  { (eval echo "$as_me:21417: \"$ac_try\"") >&5
23345   (eval $ac_try) 2>&5
23346   ac_status=$?
23347-  echo "$as_me:21419: \$? = $ac_status" >&5
23348+  echo "$as_me:21420: \$? = $ac_status" >&5
23349   (exit $ac_status); }; }; then
23350   cf_cv_pointer_va_list=yes
23351 else
23352@@ -21426,19 +21427,19 @@
23353 fi
23354 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
23355 fi
23356-echo "$as_me:21429: result: $cf_cv_pointer_va_list" >&5
23357+echo "$as_me:21430: result: $cf_cv_pointer_va_list" >&5
23358 echo "${ECHO_T}$cf_cv_pointer_va_list" >&6
23359
23360 	if test "$cf_cv_pointer_va_list" = no
23361 	then
23362-		echo "$as_me:21434: checking if we can copy va_list indirectly" >&5
23363+		echo "$as_me:21435: checking if we can copy va_list indirectly" >&5
23364 echo $ECHO_N "checking if we can copy va_list indirectly... $ECHO_C" >&6
23365 if test "${cf_cv_array_va_list+set}" = set; then
23366   echo $ECHO_N "(cached) $ECHO_C" >&6
23367 else
23368
23369 cat >conftest.$ac_ext <<_ACEOF
23370-#line 21441 "configure"
23371+#line 21442 "configure"
23372 #include "confdefs.h"
23373
23374 #include <stdarg.h>
23375@@ -21455,16 +21456,16 @@
23376 }
23377 _ACEOF
23378 rm -f conftest.$ac_objext conftest$ac_exeext
23379-if { (eval echo "$as_me:21458: \"$ac_link\"") >&5
23380+if { (eval echo "$as_me:21459: \"$ac_link\"") >&5
23381   (eval $ac_link) 2>&5
23382   ac_status=$?
23383-  echo "$as_me:21461: \$? = $ac_status" >&5
23384+  echo "$as_me:21462: \$? = $ac_status" >&5
23385   (exit $ac_status); } &&
23386          { ac_try='test -s conftest$ac_exeext'
23387-  { (eval echo "$as_me:21464: \"$ac_try\"") >&5
23388+  { (eval echo "$as_me:21465: \"$ac_try\"") >&5
23389   (eval $ac_try) 2>&5
23390   ac_status=$?
23391-  echo "$as_me:21467: \$? = $ac_status" >&5
23392+  echo "$as_me:21468: \$? = $ac_status" >&5
23393   (exit $ac_status); }; }; then
23394   cf_cv_array_va_list=yes
23395 else
23396@@ -21474,7 +21475,7 @@
23397 fi
23398 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
23399 fi
23400-echo "$as_me:21477: result: $cf_cv_array_va_list" >&5
23401+echo "$as_me:21478: result: $cf_cv_array_va_list" >&5
23402 echo "${ECHO_T}$cf_cv_array_va_list" >&6
23403 		test "$cf_cv_array_va_list" = yes &&
23404 cat >>confdefs.h <<\EOF
23405@@ -21485,13 +21486,13 @@
23406 	;;
23407 esac
23408
23409-echo "$as_me:21488: checking for pid_t" >&5
23410+echo "$as_me:21489: checking for pid_t" >&5
23411 echo $ECHO_N "checking for pid_t... $ECHO_C" >&6
23412 if test "${ac_cv_type_pid_t+set}" = set; then
23413   echo $ECHO_N "(cached) $ECHO_C" >&6
23414 else
23415   cat >conftest.$ac_ext <<_ACEOF
23416-#line 21494 "configure"
23417+#line 21495 "configure"
23418 #include "confdefs.h"
23419 $ac_includes_default
23420 int
23421@@ -21506,16 +21507,16 @@
23422 }
23423 _ACEOF
23424 rm -f conftest.$ac_objext
23425-if { (eval echo "$as_me:21509: \"$ac_compile\"") >&5
23426+if { (eval echo "$as_me:21510: \"$ac_compile\"") >&5
23427   (eval $ac_compile) 2>&5
23428   ac_status=$?
23429-  echo "$as_me:21512: \$? = $ac_status" >&5
23430+  echo "$as_me:21513: \$? = $ac_status" >&5
23431   (exit $ac_status); } &&
23432          { ac_try='test -s conftest.$ac_objext'
23433-  { (eval echo "$as_me:21515: \"$ac_try\"") >&5
23434+  { (eval echo "$as_me:21516: \"$ac_try\"") >&5
23435   (eval $ac_try) 2>&5
23436   ac_status=$?
23437-  echo "$as_me:21518: \$? = $ac_status" >&5
23438+  echo "$as_me:21519: \$? = $ac_status" >&5
23439   (exit $ac_status); }; }; then
23440   ac_cv_type_pid_t=yes
23441 else
23442@@ -21525,7 +21526,7 @@
23443 fi
23444 rm -f conftest.$ac_objext conftest.$ac_ext
23445 fi
23446-echo "$as_me:21528: result: $ac_cv_type_pid_t" >&5
23447+echo "$as_me:21529: result: $ac_cv_type_pid_t" >&5
23448 echo "${ECHO_T}$ac_cv_type_pid_t" >&6
23449 if test $ac_cv_type_pid_t = yes; then
23450   :
23451@@ -21540,23 +21541,23 @@
23452 for ac_header in unistd.h vfork.h
23453 do
23454 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
23455-echo "$as_me:21543: checking for $ac_header" >&5
23456+echo "$as_me:21544: checking for $ac_header" >&5
23457 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
23458 if eval "test \"\${$as_ac_Header+set}\" = set"; then
23459   echo $ECHO_N "(cached) $ECHO_C" >&6
23460 else
23461   cat >conftest.$ac_ext <<_ACEOF
23462-#line 21549 "configure"
23463+#line 21550 "configure"
23464 #include "confdefs.h"
23465 #include <$ac_header>
23466 _ACEOF
23467-if { (eval echo "$as_me:21553: \"$ac_cpp conftest.$ac_ext\"") >&5
23468+if { (eval echo "$as_me:21554: \"$ac_cpp conftest.$ac_ext\"") >&5
23469   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
23470   ac_status=$?
23471   egrep -v '^ *\+' conftest.er1 >conftest.err
23472   rm -f conftest.er1
23473   cat conftest.err >&5
23474-  echo "$as_me:21559: \$? = $ac_status" >&5
23475+  echo "$as_me:21560: \$? = $ac_status" >&5
23476   (exit $ac_status); } >/dev/null; then
23477   if test -s conftest.err; then
23478     ac_cpp_err=$ac_c_preproc_warn_flag
23479@@ -21575,7 +21576,7 @@
23480 fi
23481 rm -f conftest.err conftest.$ac_ext
23482 fi
23483-echo "$as_me:21578: result: `eval echo '${'$as_ac_Header'}'`" >&5
23484+echo "$as_me:21579: result: `eval echo '${'$as_ac_Header'}'`" >&5
23485 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
23486 if test `eval echo '${'$as_ac_Header'}'` = yes; then
23487   cat >>confdefs.h <<EOF
23488@@ -21588,13 +21589,13 @@
23489 for ac_func in fork vfork
23490 do
23491 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
23492-echo "$as_me:21591: checking for $ac_func" >&5
23493+echo "$as_me:21592: checking for $ac_func" >&5
23494 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
23495 if eval "test \"\${$as_ac_var+set}\" = set"; then
23496   echo $ECHO_N "(cached) $ECHO_C" >&6
23497 else
23498   cat >conftest.$ac_ext <<_ACEOF
23499-#line 21597 "configure"
23500+#line 21598 "configure"
23501 #include "confdefs.h"
23502 #define $ac_func autoconf_temporary
23503 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
23504@@ -21625,16 +21626,16 @@
23505 }
23506 _ACEOF
23507 rm -f conftest.$ac_objext conftest$ac_exeext
23508-if { (eval echo "$as_me:21628: \"$ac_link\"") >&5
23509+if { (eval echo "$as_me:21629: \"$ac_link\"") >&5
23510   (eval $ac_link) 2>&5
23511   ac_status=$?
23512-  echo "$as_me:21631: \$? = $ac_status" >&5
23513+  echo "$as_me:21632: \$? = $ac_status" >&5
23514   (exit $ac_status); } &&
23515          { ac_try='test -s conftest$ac_exeext'
23516-  { (eval echo "$as_me:21634: \"$ac_try\"") >&5
23517+  { (eval echo "$as_me:21635: \"$ac_try\"") >&5
23518   (eval $ac_try) 2>&5
23519   ac_status=$?
23520-  echo "$as_me:21637: \$? = $ac_status" >&5
23521+  echo "$as_me:21638: \$? = $ac_status" >&5
23522   (exit $ac_status); }; }; then
23523   eval "$as_ac_var=yes"
23524 else
23525@@ -21644,7 +21645,7 @@
23526 fi
23527 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
23528 fi
23529-echo "$as_me:21647: result: `eval echo '${'$as_ac_var'}'`" >&5
23530+echo "$as_me:21648: result: `eval echo '${'$as_ac_var'}'`" >&5
23531 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
23532 if test `eval echo '${'$as_ac_var'}'` = yes; then
23533   cat >>confdefs.h <<EOF
23534@@ -21656,7 +21657,7 @@
23535
23536 ac_cv_func_fork_works=$ac_cv_func_fork
23537 if test "x$ac_cv_func_fork" = xyes; then
23538-  echo "$as_me:21659: checking for working fork" >&5
23539+  echo "$as_me:21660: checking for working fork" >&5
23540 echo $ECHO_N "checking for working fork... $ECHO_C" >&6
23541 if test "${ac_cv_func_fork_works+set}" = set; then
23542   echo $ECHO_N "(cached) $ECHO_C" >&6
23543@@ -21679,15 +21680,15 @@
23544       }
23545 _ACEOF
23546 rm -f conftest$ac_exeext
23547-if { (eval echo "$as_me:21682: \"$ac_link\"") >&5
23548+if { (eval echo "$as_me:21683: \"$ac_link\"") >&5
23549   (eval $ac_link) 2>&5
23550   ac_status=$?
23551-  echo "$as_me:21685: \$? = $ac_status" >&5
23552+  echo "$as_me:21686: \$? = $ac_status" >&5
23553   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
23554-  { (eval echo "$as_me:21687: \"$ac_try\"") >&5
23555+  { (eval echo "$as_me:21688: \"$ac_try\"") >&5
23556   (eval $ac_try) 2>&5
23557   ac_status=$?
23558-  echo "$as_me:21690: \$? = $ac_status" >&5
23559+  echo "$as_me:21691: \$? = $ac_status" >&5
23560   (exit $ac_status); }; }; then
23561   ac_cv_func_fork_works=yes
23562 else
23563@@ -21699,7 +21700,7 @@
23564 rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
23565 fi
23566 fi
23567-echo "$as_me:21702: result: $ac_cv_func_fork_works" >&5
23568+echo "$as_me:21703: result: $ac_cv_func_fork_works" >&5
23569 echo "${ECHO_T}$ac_cv_func_fork_works" >&6
23570
23571 fi
23572@@ -21713,12 +21714,12 @@
23573       ac_cv_func_fork_works=yes
23574       ;;
23575   esac
23576-  { echo "$as_me:21716: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&5
23577+  { echo "$as_me:21717: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&5
23578 echo "$as_me: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&2;}
23579 fi
23580 ac_cv_func_vfork_works=$ac_cv_func_vfork
23581 if test "x$ac_cv_func_vfork" = xyes; then
23582-  echo "$as_me:21721: checking for working vfork" >&5
23583+  echo "$as_me:21722: checking for working vfork" >&5
23584 echo $ECHO_N "checking for working vfork... $ECHO_C" >&6
23585 if test "${ac_cv_func_vfork_works+set}" = set; then
23586   echo $ECHO_N "(cached) $ECHO_C" >&6
23587@@ -21727,7 +21728,7 @@
23588   ac_cv_func_vfork_works=cross
23589 else
23590   cat >conftest.$ac_ext <<_ACEOF
23591-#line 21730 "configure"
23592+#line 21731 "configure"
23593 #include "confdefs.h"
23594 /* Thanks to Paul Eggert for this test.  */
23595 #include <stdio.h>
23596@@ -21824,15 +21825,15 @@
23597 }
23598 _ACEOF
23599 rm -f conftest$ac_exeext
23600-if { (eval echo "$as_me:21827: \"$ac_link\"") >&5
23601+if { (eval echo "$as_me:21828: \"$ac_link\"") >&5
23602   (eval $ac_link) 2>&5
23603   ac_status=$?
23604-  echo "$as_me:21830: \$? = $ac_status" >&5
23605+  echo "$as_me:21831: \$? = $ac_status" >&5
23606   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
23607-  { (eval echo "$as_me:21832: \"$ac_try\"") >&5
23608+  { (eval echo "$as_me:21833: \"$ac_try\"") >&5
23609   (eval $ac_try) 2>&5
23610   ac_status=$?
23611-  echo "$as_me:21835: \$? = $ac_status" >&5
23612+  echo "$as_me:21836: \$? = $ac_status" >&5
23613   (exit $ac_status); }; }; then
23614   ac_cv_func_vfork_works=yes
23615 else
23616@@ -21844,13 +21845,13 @@
23617 rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
23618 fi
23619 fi
23620-echo "$as_me:21847: result: $ac_cv_func_vfork_works" >&5
23621+echo "$as_me:21848: result: $ac_cv_func_vfork_works" >&5
23622 echo "${ECHO_T}$ac_cv_func_vfork_works" >&6
23623
23624 fi;
23625 if test "x$ac_cv_func_fork_works" = xcross; then
23626   ac_cv_func_vfork_works=ac_cv_func_vfork
23627-  { echo "$as_me:21853: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&5
23628+  { echo "$as_me:21854: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&5
23629 echo "$as_me: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&2;}
23630 fi
23631
23632@@ -21875,7 +21876,7 @@
23633
23634 fi
23635
23636-echo "$as_me:21878: checking if fopen accepts explicit binary mode" >&5
23637+echo "$as_me:21879: checking if fopen accepts explicit binary mode" >&5
23638 echo $ECHO_N "checking if fopen accepts explicit binary mode... $ECHO_C" >&6
23639 if test "${cf_cv_fopen_bin_r+set}" = set; then
23640   echo $ECHO_N "(cached) $ECHO_C" >&6
23641@@ -21885,7 +21886,7 @@
23642   cf_cv_fopen_bin_r=unknown
23643 else
23644   cat >conftest.$ac_ext <<_ACEOF
23645-#line 21888 "configure"
23646+#line 21889 "configure"
23647 #include "confdefs.h"
23648
23649 #include <stdio.h>
23650@@ -21918,15 +21919,15 @@
23651
23652 _ACEOF
23653 rm -f conftest$ac_exeext
23654-if { (eval echo "$as_me:21921: \"$ac_link\"") >&5
23655+if { (eval echo "$as_me:21922: \"$ac_link\"") >&5
23656   (eval $ac_link) 2>&5
23657   ac_status=$?
23658-  echo "$as_me:21924: \$? = $ac_status" >&5
23659+  echo "$as_me:21925: \$? = $ac_status" >&5
23660   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
23661-  { (eval echo "$as_me:21926: \"$ac_try\"") >&5
23662+  { (eval echo "$as_me:21927: \"$ac_try\"") >&5
23663   (eval $ac_try) 2>&5
23664   ac_status=$?
23665-  echo "$as_me:21929: \$? = $ac_status" >&5
23666+  echo "$as_me:21930: \$? = $ac_status" >&5
23667   (exit $ac_status); }; }; then
23668   cf_cv_fopen_bin_r=yes
23669 else
23670@@ -21939,7 +21940,7 @@
23671 fi
23672
23673 fi
23674-echo "$as_me:21942: result: $cf_cv_fopen_bin_r" >&5
23675+echo "$as_me:21943: result: $cf_cv_fopen_bin_r" >&5
23676 echo "${ECHO_T}$cf_cv_fopen_bin_r" >&6
23677 test "x$cf_cv_fopen_bin_r" != xno && cat >>confdefs.h <<\EOF
23678 #define USE_FOPEN_BIN_R 1
23679@@ -21947,7 +21948,7 @@
23680
23681 # special check for test/ditto.c
23682
23683-echo "$as_me:21950: checking for openpty in -lutil" >&5
23684+echo "$as_me:21951: checking for openpty in -lutil" >&5
23685 echo $ECHO_N "checking for openpty in -lutil... $ECHO_C" >&6
23686 if test "${ac_cv_lib_util_openpty+set}" = set; then
23687   echo $ECHO_N "(cached) $ECHO_C" >&6
23688@@ -21955,7 +21956,7 @@
23689   ac_check_lib_save_LIBS=$LIBS
23690 LIBS="-lutil  $LIBS"
23691 cat >conftest.$ac_ext <<_ACEOF
23692-#line 21958 "configure"
23693+#line 21959 "configure"
23694 #include "confdefs.h"
23695
23696 /* Override any gcc2 internal prototype to avoid an error.  */
23697@@ -21974,16 +21975,16 @@
23698 }
23699 _ACEOF
23700 rm -f conftest.$ac_objext conftest$ac_exeext
23701-if { (eval echo "$as_me:21977: \"$ac_link\"") >&5
23702+if { (eval echo "$as_me:21978: \"$ac_link\"") >&5
23703   (eval $ac_link) 2>&5
23704   ac_status=$?
23705-  echo "$as_me:21980: \$? = $ac_status" >&5
23706+  echo "$as_me:21981: \$? = $ac_status" >&5
23707   (exit $ac_status); } &&
23708          { ac_try='test -s conftest$ac_exeext'
23709-  { (eval echo "$as_me:21983: \"$ac_try\"") >&5
23710+  { (eval echo "$as_me:21984: \"$ac_try\"") >&5
23711   (eval $ac_try) 2>&5
23712   ac_status=$?
23713-  echo "$as_me:21986: \$? = $ac_status" >&5
23714+  echo "$as_me:21987: \$? = $ac_status" >&5
23715   (exit $ac_status); }; }; then
23716   ac_cv_lib_util_openpty=yes
23717 else
23718@@ -21994,7 +21995,7 @@
23719 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
23720 LIBS=$ac_check_lib_save_LIBS
23721 fi
23722-echo "$as_me:21997: result: $ac_cv_lib_util_openpty" >&5
23723+echo "$as_me:21998: result: $ac_cv_lib_util_openpty" >&5
23724 echo "${ECHO_T}$ac_cv_lib_util_openpty" >&6
23725 if test $ac_cv_lib_util_openpty = yes; then
23726   cf_cv_lib_util=yes
23727@@ -22002,7 +22003,7 @@
23728   cf_cv_lib_util=no
23729 fi
23730
23731-echo "$as_me:22005: checking for openpty header" >&5
23732+echo "$as_me:22006: checking for openpty header" >&5
23733 echo $ECHO_N "checking for openpty header... $ECHO_C" >&6
23734 if test "${cf_cv_func_openpty+set}" = set; then
23735   echo $ECHO_N "(cached) $ECHO_C" >&6
23736@@ -22029,7 +22030,7 @@
23737 	for cf_header in pty.h libutil.h util.h
23738 	do
23739 	cat >conftest.$ac_ext <<_ACEOF
23740-#line 22032 "configure"
23741+#line 22033 "configure"
23742 #include "confdefs.h"
23743
23744 #include <$cf_header>
23745@@ -22046,16 +22047,16 @@
23746 }
23747 _ACEOF
23748 rm -f conftest.$ac_objext conftest$ac_exeext
23749-if { (eval echo "$as_me:22049: \"$ac_link\"") >&5
23750+if { (eval echo "$as_me:22050: \"$ac_link\"") >&5
23751   (eval $ac_link) 2>&5
23752   ac_status=$?
23753-  echo "$as_me:22052: \$? = $ac_status" >&5
23754+  echo "$as_me:22053: \$? = $ac_status" >&5
23755   (exit $ac_status); } &&
23756          { ac_try='test -s conftest$ac_exeext'
23757-  { (eval echo "$as_me:22055: \"$ac_try\"") >&5
23758+  { (eval echo "$as_me:22056: \"$ac_try\"") >&5
23759   (eval $ac_try) 2>&5
23760   ac_status=$?
23761-  echo "$as_me:22058: \$? = $ac_status" >&5
23762+  echo "$as_me:22059: \$? = $ac_status" >&5
23763   (exit $ac_status); }; }; then
23764
23765 		cf_cv_func_openpty=$cf_header
23766@@ -22073,7 +22074,7 @@
23767 	LIBS="$cf_save_LIBS"
23768
23769 fi
23770-echo "$as_me:22076: result: $cf_cv_func_openpty" >&5
23771+echo "$as_me:22077: result: $cf_cv_func_openpty" >&5
23772 echo "${ECHO_T}$cf_cv_func_openpty" >&6
23773
23774 if test "$cf_cv_func_openpty" != no ; then
23775@@ -22146,7 +22147,7 @@
23776 	CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir"
23777
23778 			  cat >conftest.$ac_ext <<_ACEOF
23779-#line 22149 "configure"
23780+#line 22150 "configure"
23781 #include "confdefs.h"
23782 #include <stdio.h>
23783 int
23784@@ -22158,16 +22159,16 @@
23785 }
23786 _ACEOF
23787 rm -f conftest.$ac_objext
23788-if { (eval echo "$as_me:22161: \"$ac_compile\"") >&5
23789+if { (eval echo "$as_me:22162: \"$ac_compile\"") >&5
23790   (eval $ac_compile) 2>&5
23791   ac_status=$?
23792-  echo "$as_me:22164: \$? = $ac_status" >&5
23793+  echo "$as_me:22165: \$? = $ac_status" >&5
23794   (exit $ac_status); } &&
23795          { ac_try='test -s conftest.$ac_objext'
23796-  { (eval echo "$as_me:22167: \"$ac_try\"") >&5
23797+  { (eval echo "$as_me:22168: \"$ac_try\"") >&5
23798   (eval $ac_try) 2>&5
23799   ac_status=$?
23800-  echo "$as_me:22170: \$? = $ac_status" >&5
23801+  echo "$as_me:22171: \$? = $ac_status" >&5
23802   (exit $ac_status); }; }; then
23803   :
23804 else
23805@@ -22184,7 +22185,7 @@
23806 		if test "$cf_have_incdir" = no ; then
23807 		  test -n "$verbose" && echo "	adding $cf_add_incdir to include-path" 1>&6
23808
23809-echo "${as_me:-configure}:22187: testing adding $cf_add_incdir to include-path ..." 1>&5
23810+echo "${as_me:-configure}:22188: testing adding $cf_add_incdir to include-path ..." 1>&5
23811
23812 		  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
23813
23814@@ -22220,7 +22221,7 @@
23815 			if test "$cf_have_libdir" = no ; then
23816 				test -n "$verbose" && echo "	adding $cf_add_libdir to library-path" 1>&6
23817
23818-echo "${as_me:-configure}:22223: testing adding $cf_add_libdir to library-path ..." 1>&5
23819+echo "${as_me:-configure}:22224: testing adding $cf_add_libdir to library-path ..." 1>&5
23820
23821 				LDFLAGS="-L$cf_add_libdir $LDFLAGS"
23822 			fi
23823@@ -22231,7 +22232,7 @@
23824 	else
23825 		case "$with_hashed_db" in
23826 		(./*|../*|/*)
23827-			{ echo "$as_me:22234: WARNING: no such directory $with_hashed_db" >&5
23828+			{ echo "$as_me:22235: WARNING: no such directory $with_hashed_db" >&5
23829 echo "$as_me: WARNING: no such directory $with_hashed_db" >&2;}
23830 			;;
23831 		(*)
23832@@ -22303,7 +22304,7 @@
23833 	CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir"
23834
23835 			  cat >conftest.$ac_ext <<_ACEOF
23836-#line 22306 "configure"
23837+#line 22307 "configure"
23838 #include "confdefs.h"
23839 #include <stdio.h>
23840 int
23841@@ -22315,16 +22316,16 @@
23842 }
23843 _ACEOF
23844 rm -f conftest.$ac_objext
23845-if { (eval echo "$as_me:22318: \"$ac_compile\"") >&5
23846+if { (eval echo "$as_me:22319: \"$ac_compile\"") >&5
23847   (eval $ac_compile) 2>&5
23848   ac_status=$?
23849-  echo "$as_me:22321: \$? = $ac_status" >&5
23850+  echo "$as_me:22322: \$? = $ac_status" >&5
23851   (exit $ac_status); } &&
23852          { ac_try='test -s conftest.$ac_objext'
23853-  { (eval echo "$as_me:22324: \"$ac_try\"") >&5
23854+  { (eval echo "$as_me:22325: \"$ac_try\"") >&5
23855   (eval $ac_try) 2>&5
23856   ac_status=$?
23857-  echo "$as_me:22327: \$? = $ac_status" >&5
23858+  echo "$as_me:22328: \$? = $ac_status" >&5
23859   (exit $ac_status); }; }; then
23860   :
23861 else
23862@@ -22341,7 +22342,7 @@
23863 		if test "$cf_have_incdir" = no ; then
23864 		  test -n "$verbose" && echo "	adding $cf_add_incdir to include-path" 1>&6
23865
23866-echo "${as_me:-configure}:22344: testing adding $cf_add_incdir to include-path ..." 1>&5
23867+echo "${as_me:-configure}:22345: testing adding $cf_add_incdir to include-path ..." 1>&5
23868
23869 		  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
23870
23871@@ -22421,7 +22422,7 @@
23872 			if test "$cf_have_libdir" = no ; then
23873 				test -n "$verbose" && echo "	adding $cf_add_libdir to library-path" 1>&6
23874
23875-echo "${as_me:-configure}:22424: testing adding $cf_add_libdir to library-path ..." 1>&5
23876+echo "${as_me:-configure}:22425: testing adding $cf_add_libdir to library-path ..." 1>&5
23877
23878 				LDFLAGS="-L$cf_add_libdir $LDFLAGS"
23879 			fi
23880@@ -22438,23 +22439,23 @@
23881 	fi
23882 esac
23883
23884-echo "$as_me:22441: checking for db.h" >&5
23885+echo "$as_me:22442: checking for db.h" >&5
23886 echo $ECHO_N "checking for db.h... $ECHO_C" >&6
23887 if test "${ac_cv_header_db_h+set}" = set; then
23888   echo $ECHO_N "(cached) $ECHO_C" >&6
23889 else
23890   cat >conftest.$ac_ext <<_ACEOF
23891-#line 22447 "configure"
23892+#line 22448 "configure"
23893 #include "confdefs.h"
23894 #include <db.h>
23895 _ACEOF
23896-if { (eval echo "$as_me:22451: \"$ac_cpp conftest.$ac_ext\"") >&5
23897+if { (eval echo "$as_me:22452: \"$ac_cpp conftest.$ac_ext\"") >&5
23898   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
23899   ac_status=$?
23900   egrep -v '^ *\+' conftest.er1 >conftest.err
23901   rm -f conftest.er1
23902   cat conftest.err >&5
23903-  echo "$as_me:22457: \$? = $ac_status" >&5
23904+  echo "$as_me:22458: \$? = $ac_status" >&5
23905   (exit $ac_status); } >/dev/null; then
23906   if test -s conftest.err; then
23907     ac_cpp_err=$ac_c_preproc_warn_flag
23908@@ -22473,11 +22474,11 @@
23909 fi
23910 rm -f conftest.err conftest.$ac_ext
23911 fi
23912-echo "$as_me:22476: result: $ac_cv_header_db_h" >&5
23913+echo "$as_me:22477: result: $ac_cv_header_db_h" >&5
23914 echo "${ECHO_T}$ac_cv_header_db_h" >&6
23915 if test $ac_cv_header_db_h = yes; then
23916
23917-echo "$as_me:22480: checking for version of db" >&5
23918+echo "$as_me:22481: checking for version of db" >&5
23919 echo $ECHO_N "checking for version of db... $ECHO_C" >&6
23920 if test "${cf_cv_hashed_db_version+set}" = set; then
23921   echo $ECHO_N "(cached) $ECHO_C" >&6
23922@@ -22488,10 +22489,10 @@
23923 for cf_db_version in 1 2 3 4 5 6
23924 do
23925
23926-echo "${as_me:-configure}:22491: testing checking for db version $cf_db_version ..." 1>&5
23927+echo "${as_me:-configure}:22492: testing checking for db version $cf_db_version ..." 1>&5
23928
23929 	cat >conftest.$ac_ext <<_ACEOF
23930-#line 22494 "configure"
23931+#line 22495 "configure"
23932 #include "confdefs.h"
23933
23934 $ac_includes_default
23935@@ -22521,16 +22522,16 @@
23936 }
23937 _ACEOF
23938 rm -f conftest.$ac_objext
23939-if { (eval echo "$as_me:22524: \"$ac_compile\"") >&5
23940+if { (eval echo "$as_me:22525: \"$ac_compile\"") >&5
23941   (eval $ac_compile) 2>&5
23942   ac_status=$?
23943-  echo "$as_me:22527: \$? = $ac_status" >&5
23944+  echo "$as_me:22528: \$? = $ac_status" >&5
23945   (exit $ac_status); } &&
23946          { ac_try='test -s conftest.$ac_objext'
23947-  { (eval echo "$as_me:22530: \"$ac_try\"") >&5
23948+  { (eval echo "$as_me:22531: \"$ac_try\"") >&5
23949   (eval $ac_try) 2>&5
23950   ac_status=$?
23951-  echo "$as_me:22533: \$? = $ac_status" >&5
23952+  echo "$as_me:22534: \$? = $ac_status" >&5
23953   (exit $ac_status); }; }; then
23954
23955 	cf_cv_hashed_db_version=$cf_db_version
23956@@ -22544,16 +22545,16 @@
23957 done
23958
23959 fi
23960-echo "$as_me:22547: result: $cf_cv_hashed_db_version" >&5
23961+echo "$as_me:22548: result: $cf_cv_hashed_db_version" >&5
23962 echo "${ECHO_T}$cf_cv_hashed_db_version" >&6
23963
23964 if test "$cf_cv_hashed_db_version" = unknown ; then
23965-	{ { echo "$as_me:22551: error: Cannot determine version of db" >&5
23966+	{ { echo "$as_me:22552: error: Cannot determine version of db" >&5
23967 echo "$as_me: error: Cannot determine version of db" >&2;}
23968    { (exit 1); exit 1; }; }
23969 else
23970
23971-echo "$as_me:22556: checking for db libraries" >&5
23972+echo "$as_me:22557: checking for db libraries" >&5
23973 echo $ECHO_N "checking for db libraries... $ECHO_C" >&6
23974 if test "${cf_cv_hashed_db_libs+set}" = set; then
23975   echo $ECHO_N "(cached) $ECHO_C" >&6
23976@@ -22583,10 +22584,10 @@
23977
23978 	fi
23979
23980-echo "${as_me:-configure}:22586: testing checking for library "$cf_db_libs" ..." 1>&5
23981+echo "${as_me:-configure}:22587: testing checking for library "$cf_db_libs" ..." 1>&5
23982
23983 	cat >conftest.$ac_ext <<_ACEOF
23984-#line 22589 "configure"
23985+#line 22590 "configure"
23986 #include "confdefs.h"
23987
23988 $ac_includes_default
23989@@ -22641,16 +22642,16 @@
23990 }
23991 _ACEOF
23992 rm -f conftest.$ac_objext conftest$ac_exeext
23993-if { (eval echo "$as_me:22644: \"$ac_link\"") >&5
23994+if { (eval echo "$as_me:22645: \"$ac_link\"") >&5
23995   (eval $ac_link) 2>&5
23996   ac_status=$?
23997-  echo "$as_me:22647: \$? = $ac_status" >&5
23998+  echo "$as_me:22648: \$? = $ac_status" >&5
23999   (exit $ac_status); } &&
24000          { ac_try='test -s conftest$ac_exeext'
24001-  { (eval echo "$as_me:22650: \"$ac_try\"") >&5
24002+  { (eval echo "$as_me:22651: \"$ac_try\"") >&5
24003   (eval $ac_try) 2>&5
24004   ac_status=$?
24005-  echo "$as_me:22653: \$? = $ac_status" >&5
24006+  echo "$as_me:22654: \$? = $ac_status" >&5
24007   (exit $ac_status); }; }; then
24008
24009 	if test -n "$cf_db_libs" ; then
24010@@ -22670,11 +22671,11 @@
24011 done
24012
24013 fi
24014-echo "$as_me:22673: result: $cf_cv_hashed_db_libs" >&5
24015+echo "$as_me:22674: result: $cf_cv_hashed_db_libs" >&5
24016 echo "${ECHO_T}$cf_cv_hashed_db_libs" >&6
24017
24018 	if test "$cf_cv_hashed_db_libs" = unknown ; then
24019-		{ { echo "$as_me:22677: error: Cannot determine library for db" >&5
24020+		{ { echo "$as_me:22678: error: Cannot determine library for db" >&5
24021 echo "$as_me: error: Cannot determine library for db" >&2;}
24022    { (exit 1); exit 1; }; }
24023 	elif test "$cf_cv_hashed_db_libs" != default ; then
24024@@ -22700,7 +22701,7 @@
24025
24026 else
24027
24028-	{ { echo "$as_me:22703: error: Cannot find db.h" >&5
24029+	{ { echo "$as_me:22704: error: Cannot find db.h" >&5
24030 echo "$as_me: error: Cannot find db.h" >&2;}
24031    { (exit 1); exit 1; }; }
24032
24033@@ -22715,7 +22716,7 @@
24034
24035 # Just in case, check if the C compiler has a bool type.
24036
24037-echo "$as_me:22718: checking if we should include stdbool.h" >&5
24038+echo "$as_me:22719: checking if we should include stdbool.h" >&5
24039 echo $ECHO_N "checking if we should include stdbool.h... $ECHO_C" >&6
24040
24041 if test "${cf_cv_header_stdbool_h+set}" = set; then
24042@@ -22723,7 +22724,7 @@
24043 else
24044
24045 	cat >conftest.$ac_ext <<_ACEOF
24046-#line 22726 "configure"
24047+#line 22727 "configure"
24048 #include "confdefs.h"
24049
24050 int
24051@@ -22735,23 +22736,23 @@
24052 }
24053 _ACEOF
24054 rm -f conftest.$ac_objext
24055-if { (eval echo "$as_me:22738: \"$ac_compile\"") >&5
24056+if { (eval echo "$as_me:22739: \"$ac_compile\"") >&5
24057   (eval $ac_compile) 2>&5
24058   ac_status=$?
24059-  echo "$as_me:22741: \$? = $ac_status" >&5
24060+  echo "$as_me:22742: \$? = $ac_status" >&5
24061   (exit $ac_status); } &&
24062          { ac_try='test -s conftest.$ac_objext'
24063-  { (eval echo "$as_me:22744: \"$ac_try\"") >&5
24064+  { (eval echo "$as_me:22745: \"$ac_try\"") >&5
24065   (eval $ac_try) 2>&5
24066   ac_status=$?
24067-  echo "$as_me:22747: \$? = $ac_status" >&5
24068+  echo "$as_me:22748: \$? = $ac_status" >&5
24069   (exit $ac_status); }; }; then
24070   cf_cv_header_stdbool_h=0
24071 else
24072   echo "$as_me: failed program was:" >&5
24073 cat conftest.$ac_ext >&5
24074 cat >conftest.$ac_ext <<_ACEOF
24075-#line 22754 "configure"
24076+#line 22755 "configure"
24077 #include "confdefs.h"
24078
24079 #ifndef __BEOS__
24080@@ -22767,16 +22768,16 @@
24081 }
24082 _ACEOF
24083 rm -f conftest.$ac_objext
24084-if { (eval echo "$as_me:22770: \"$ac_compile\"") >&5
24085+if { (eval echo "$as_me:22771: \"$ac_compile\"") >&5
24086   (eval $ac_compile) 2>&5
24087   ac_status=$?
24088-  echo "$as_me:22773: \$? = $ac_status" >&5
24089+  echo "$as_me:22774: \$? = $ac_status" >&5
24090   (exit $ac_status); } &&
24091          { ac_try='test -s conftest.$ac_objext'
24092-  { (eval echo "$as_me:22776: \"$ac_try\"") >&5
24093+  { (eval echo "$as_me:22777: \"$ac_try\"") >&5
24094   (eval $ac_try) 2>&5
24095   ac_status=$?
24096-  echo "$as_me:22779: \$? = $ac_status" >&5
24097+  echo "$as_me:22780: \$? = $ac_status" >&5
24098   (exit $ac_status); }; }; then
24099   cf_cv_header_stdbool_h=1
24100 else
24101@@ -22790,13 +22791,13 @@
24102 fi
24103
24104 if test "$cf_cv_header_stdbool_h" = 1
24105-then	echo "$as_me:22793: result: yes" >&5
24106+then	echo "$as_me:22794: result: yes" >&5
24107 echo "${ECHO_T}yes" >&6
24108-else	echo "$as_me:22795: result: no" >&5
24109+else	echo "$as_me:22796: result: no" >&5
24110 echo "${ECHO_T}no" >&6
24111 fi
24112
24113-echo "$as_me:22799: checking for builtin bool type" >&5
24114+echo "$as_me:22800: checking for builtin bool type" >&5
24115 echo $ECHO_N "checking for builtin bool type... $ECHO_C" >&6
24116
24117 if test "${cf_cv_cc_bool_type+set}" = set; then
24118@@ -22804,7 +22805,7 @@
24119 else
24120
24121 	cat >conftest.$ac_ext <<_ACEOF
24122-#line 22807 "configure"
24123+#line 22808 "configure"
24124 #include "confdefs.h"
24125
24126 #include <stdio.h>
24127@@ -22819,16 +22820,16 @@
24128 }
24129 _ACEOF
24130 rm -f conftest.$ac_objext
24131-if { (eval echo "$as_me:22822: \"$ac_compile\"") >&5
24132+if { (eval echo "$as_me:22823: \"$ac_compile\"") >&5
24133   (eval $ac_compile) 2>&5
24134   ac_status=$?
24135-  echo "$as_me:22825: \$? = $ac_status" >&5
24136+  echo "$as_me:22826: \$? = $ac_status" >&5
24137   (exit $ac_status); } &&
24138          { ac_try='test -s conftest.$ac_objext'
24139-  { (eval echo "$as_me:22828: \"$ac_try\"") >&5
24140+  { (eval echo "$as_me:22829: \"$ac_try\"") >&5
24141   (eval $ac_try) 2>&5
24142   ac_status=$?
24143-  echo "$as_me:22831: \$? = $ac_status" >&5
24144+  echo "$as_me:22832: \$? = $ac_status" >&5
24145   (exit $ac_status); }; }; then
24146   cf_cv_cc_bool_type=1
24147 else
24148@@ -22841,9 +22842,9 @@
24149 fi
24150
24151 if test "$cf_cv_cc_bool_type" = 1
24152-then	echo "$as_me:22844: result: yes" >&5
24153+then	echo "$as_me:22845: result: yes" >&5
24154 echo "${ECHO_T}yes" >&6
24155-else	echo "$as_me:22846: result: no" >&5
24156+else	echo "$as_me:22847: result: no" >&5
24157 echo "${ECHO_T}no" >&6
24158 fi
24159
24160@@ -22860,10 +22861,10 @@
24161
24162 	cf_save="$LIBS"
24163 	LIBS="$LIBS $CXXLIBS"
24164-	echo "$as_me:22863: checking if we already have C++ library" >&5
24165+	echo "$as_me:22864: checking if we already have C++ library" >&5
24166 echo $ECHO_N "checking if we already have C++ library... $ECHO_C" >&6
24167 	cat >conftest.$ac_ext <<_ACEOF
24168-#line 22866 "configure"
24169+#line 22867 "configure"
24170 #include "confdefs.h"
24171
24172 			#include <iostream>
24173@@ -22877,16 +22878,16 @@
24174 }
24175 _ACEOF
24176 rm -f conftest.$ac_objext conftest$ac_exeext
24177-if { (eval echo "$as_me:22880: \"$ac_link\"") >&5
24178+if { (eval echo "$as_me:22881: \"$ac_link\"") >&5
24179   (eval $ac_link) 2>&5
24180   ac_status=$?
24181-  echo "$as_me:22883: \$? = $ac_status" >&5
24182+  echo "$as_me:22884: \$? = $ac_status" >&5
24183   (exit $ac_status); } &&
24184          { ac_try='test -s conftest$ac_exeext'
24185-  { (eval echo "$as_me:22886: \"$ac_try\"") >&5
24186+  { (eval echo "$as_me:22887: \"$ac_try\"") >&5
24187   (eval $ac_try) 2>&5
24188   ac_status=$?
24189-  echo "$as_me:22889: \$? = $ac_status" >&5
24190+  echo "$as_me:22890: \$? = $ac_status" >&5
24191   (exit $ac_status); }; }; then
24192   cf_have_libstdcpp=yes
24193 else
24194@@ -22895,7 +22896,7 @@
24195 cf_have_libstdcpp=no
24196 fi
24197 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
24198-	echo "$as_me:22898: result: $cf_have_libstdcpp" >&5
24199+	echo "$as_me:22899: result: $cf_have_libstdcpp" >&5
24200 echo "${ECHO_T}$cf_have_libstdcpp" >&6
24201 	LIBS="$cf_save"
24202
24203@@ -22914,7 +22915,7 @@
24204 			;;
24205 		esac
24206
24207-		echo "$as_me:22917: checking for library $cf_stdcpp_libname" >&5
24208+		echo "$as_me:22918: checking for library $cf_stdcpp_libname" >&5
24209 echo $ECHO_N "checking for library $cf_stdcpp_libname... $ECHO_C" >&6
24210 if test "${cf_cv_libstdcpp+set}" = set; then
24211   echo $ECHO_N "(cached) $ECHO_C" >&6
24212@@ -22940,7 +22941,7 @@
24213 LIBS="$cf_add_libs"
24214
24215 		cat >conftest.$ac_ext <<_ACEOF
24216-#line 22943 "configure"
24217+#line 22944 "configure"
24218 #include "confdefs.h"
24219
24220 				#include <iostream>
24221@@ -22954,16 +22955,16 @@
24222 }
24223 _ACEOF
24224 rm -f conftest.$ac_objext conftest$ac_exeext
24225-if { (eval echo "$as_me:22957: \"$ac_link\"") >&5
24226+if { (eval echo "$as_me:22958: \"$ac_link\"") >&5
24227   (eval $ac_link) 2>&5
24228   ac_status=$?
24229-  echo "$as_me:22960: \$? = $ac_status" >&5
24230+  echo "$as_me:22961: \$? = $ac_status" >&5
24231   (exit $ac_status); } &&
24232          { ac_try='test -s conftest$ac_exeext'
24233-  { (eval echo "$as_me:22963: \"$ac_try\"") >&5
24234+  { (eval echo "$as_me:22964: \"$ac_try\"") >&5
24235   (eval $ac_try) 2>&5
24236   ac_status=$?
24237-  echo "$as_me:22966: \$? = $ac_status" >&5
24238+  echo "$as_me:22967: \$? = $ac_status" >&5
24239   (exit $ac_status); }; }; then
24240   cf_cv_libstdcpp=yes
24241 else
24242@@ -22975,7 +22976,7 @@
24243 			LIBS="$cf_save"
24244
24245 fi
24246-echo "$as_me:22978: result: $cf_cv_libstdcpp" >&5
24247+echo "$as_me:22979: result: $cf_cv_libstdcpp" >&5
24248 echo "${ECHO_T}$cf_cv_libstdcpp" >&6
24249 		test "$cf_cv_libstdcpp" = yes && {
24250 cf_add_libs="-l$cf_stdcpp_libname"
24251@@ -22997,7 +22998,7 @@
24252 	fi
24253 fi
24254
24255-	echo "$as_me:23000: checking whether $CXX understands -c and -o together" >&5
24256+	echo "$as_me:23001: checking whether $CXX understands -c and -o together" >&5
24257 echo $ECHO_N "checking whether $CXX understands -c and -o together... $ECHO_C" >&6
24258 if test "${cf_cv_prog_CXX_c_o+set}" = set; then
24259   echo $ECHO_N "(cached) $ECHO_C" >&6
24260@@ -23012,15 +23013,15 @@
24261 # We do the test twice because some compilers refuse to overwrite an
24262 # existing .o file with -o, though they will create one.
24263 ac_try='$CXX $CXXFLAGS $CPPFLAGS -c conftest.$ac_ext -o conftest2.$ac_objext >&5'
24264-if { (eval echo "$as_me:23015: \"$ac_try\"") >&5
24265+if { (eval echo "$as_me:23016: \"$ac_try\"") >&5
24266   (eval $ac_try) 2>&5
24267   ac_status=$?
24268-  echo "$as_me:23018: \$? = $ac_status" >&5
24269+  echo "$as_me:23019: \$? = $ac_status" >&5
24270   (exit $ac_status); } &&
24271-  test -f conftest2.$ac_objext && { (eval echo "$as_me:23020: \"$ac_try\"") >&5
24272+  test -f conftest2.$ac_objext && { (eval echo "$as_me:23021: \"$ac_try\"") >&5
24273   (eval $ac_try) 2>&5
24274   ac_status=$?
24275-  echo "$as_me:23023: \$? = $ac_status" >&5
24276+  echo "$as_me:23024: \$? = $ac_status" >&5
24277   (exit $ac_status); };
24278 then
24279   eval cf_cv_prog_CXX_c_o=yes
24280@@ -23031,10 +23032,10 @@
24281
24282 fi
24283 if test $cf_cv_prog_CXX_c_o = yes; then
24284-  echo "$as_me:23034: result: yes" >&5
24285+  echo "$as_me:23035: result: yes" >&5
24286 echo "${ECHO_T}yes" >&6
24287 else
24288-  echo "$as_me:23037: result: no" >&5
24289+  echo "$as_me:23038: result: no" >&5
24290 echo "${ECHO_T}no" >&6
24291 fi
24292
24293@@ -23054,7 +23055,7 @@
24294 	;;
24295 esac
24296 if test "$GXX" = yes; then
24297-	echo "$as_me:23057: checking for lib$cf_gpp_libname" >&5
24298+	echo "$as_me:23058: checking for lib$cf_gpp_libname" >&5
24299 echo $ECHO_N "checking for lib$cf_gpp_libname... $ECHO_C" >&6
24300 	cf_save="$LIBS"
24301
24302@@ -23075,7 +23076,7 @@
24303 LIBS="$cf_add_libs"
24304
24305 	cat >conftest.$ac_ext <<_ACEOF
24306-#line 23078 "configure"
24307+#line 23079 "configure"
24308 #include "confdefs.h"
24309
24310 #include <$cf_gpp_libname/builtin.h>
24311@@ -23089,16 +23090,16 @@
24312 }
24313 _ACEOF
24314 rm -f conftest.$ac_objext conftest$ac_exeext
24315-if { (eval echo "$as_me:23092: \"$ac_link\"") >&5
24316+if { (eval echo "$as_me:23093: \"$ac_link\"") >&5
24317   (eval $ac_link) 2>&5
24318   ac_status=$?
24319-  echo "$as_me:23095: \$? = $ac_status" >&5
24320+  echo "$as_me:23096: \$? = $ac_status" >&5
24321   (exit $ac_status); } &&
24322          { ac_try='test -s conftest$ac_exeext'
24323-  { (eval echo "$as_me:23098: \"$ac_try\"") >&5
24324+  { (eval echo "$as_me:23099: \"$ac_try\"") >&5
24325   (eval $ac_try) 2>&5
24326   ac_status=$?
24327-  echo "$as_me:23101: \$? = $ac_status" >&5
24328+  echo "$as_me:23102: \$? = $ac_status" >&5
24329   (exit $ac_status); }; }; then
24330   cf_cxx_library=yes
24331
24332@@ -23135,7 +23136,7 @@
24333   echo "$as_me: failed program was:" >&5
24334 cat conftest.$ac_ext >&5
24335 cat >conftest.$ac_ext <<_ACEOF
24336-#line 23138 "configure"
24337+#line 23139 "configure"
24338 #include "confdefs.h"
24339
24340 #include <builtin.h>
24341@@ -23149,16 +23150,16 @@
24342 }
24343 _ACEOF
24344 rm -f conftest.$ac_objext conftest$ac_exeext
24345-if { (eval echo "$as_me:23152: \"$ac_link\"") >&5
24346+if { (eval echo "$as_me:23153: \"$ac_link\"") >&5
24347   (eval $ac_link) 2>&5
24348   ac_status=$?
24349-  echo "$as_me:23155: \$? = $ac_status" >&5
24350+  echo "$as_me:23156: \$? = $ac_status" >&5
24351   (exit $ac_status); } &&
24352          { ac_try='test -s conftest$ac_exeext'
24353-  { (eval echo "$as_me:23158: \"$ac_try\"") >&5
24354+  { (eval echo "$as_me:23159: \"$ac_try\"") >&5
24355   (eval $ac_try) 2>&5
24356   ac_status=$?
24357-  echo "$as_me:23161: \$? = $ac_status" >&5
24358+  echo "$as_me:23162: \$? = $ac_status" >&5
24359   (exit $ac_status); }; }; then
24360   cf_cxx_library=yes
24361
24362@@ -23191,7 +23192,7 @@
24363 fi
24364 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
24365 	LIBS="$cf_save"
24366-	echo "$as_me:23194: result: $cf_cxx_library" >&5
24367+	echo "$as_me:23195: result: $cf_cxx_library" >&5
24368 echo "${ECHO_T}$cf_cxx_library" >&6
24369 fi
24370
24371@@ -23207,7 +23208,7 @@
24372 ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
24373 ac_compiler_gnu=$ac_cv_cxx_compiler_gnu
24374 ac_main_return=return
24375-echo "$as_me:23210: checking how to run the C++ preprocessor" >&5
24376+echo "$as_me:23211: checking how to run the C++ preprocessor" >&5
24377 echo $ECHO_N "checking how to run the C++ preprocessor... $ECHO_C" >&6
24378 if test -z "$CXXCPP"; then
24379   if test "${ac_cv_prog_CXXCPP+set}" = set; then
24380@@ -23224,18 +23225,18 @@
24381   # On the NeXT, cc -E runs the code through the compiler's parser,
24382   # not just through cpp. "Syntax error" is here to catch this case.
24383   cat >conftest.$ac_ext <<_ACEOF
24384-#line 23227 "configure"
24385+#line 23228 "configure"
24386 #include "confdefs.h"
24387 #include <assert.h>
24388                      Syntax error
24389 _ACEOF
24390-if { (eval echo "$as_me:23232: \"$ac_cpp conftest.$ac_ext\"") >&5
24391+if { (eval echo "$as_me:23233: \"$ac_cpp conftest.$ac_ext\"") >&5
24392   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
24393   ac_status=$?
24394   egrep -v '^ *\+' conftest.er1 >conftest.err
24395   rm -f conftest.er1
24396   cat conftest.err >&5
24397-  echo "$as_me:23238: \$? = $ac_status" >&5
24398+  echo "$as_me:23239: \$? = $ac_status" >&5
24399   (exit $ac_status); } >/dev/null; then
24400   if test -s conftest.err; then
24401     ac_cpp_err=$ac_cxx_preproc_warn_flag
24402@@ -23258,17 +23259,17 @@
24403   # OK, works on sane cases.  Now check whether non-existent headers
24404   # can be detected and how.
24405   cat >conftest.$ac_ext <<_ACEOF
24406-#line 23261 "configure"
24407+#line 23262 "configure"
24408 #include "confdefs.h"
24409 #include <ac_nonexistent.h>
24410 _ACEOF
24411-if { (eval echo "$as_me:23265: \"$ac_cpp conftest.$ac_ext\"") >&5
24412+if { (eval echo "$as_me:23266: \"$ac_cpp conftest.$ac_ext\"") >&5
24413   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
24414   ac_status=$?
24415   egrep -v '^ *\+' conftest.er1 >conftest.err
24416   rm -f conftest.er1
24417   cat conftest.err >&5
24418-  echo "$as_me:23271: \$? = $ac_status" >&5
24419+  echo "$as_me:23272: \$? = $ac_status" >&5
24420   (exit $ac_status); } >/dev/null; then
24421   if test -s conftest.err; then
24422     ac_cpp_err=$ac_cxx_preproc_warn_flag
24423@@ -23305,7 +23306,7 @@
24424 else
24425   ac_cv_prog_CXXCPP=$CXXCPP
24426 fi
24427-echo "$as_me:23308: result: $CXXCPP" >&5
24428+echo "$as_me:23309: result: $CXXCPP" >&5
24429 echo "${ECHO_T}$CXXCPP" >&6
24430 ac_preproc_ok=false
24431 for ac_cxx_preproc_warn_flag in '' yes
24432@@ -23315,18 +23316,18 @@
24433   # On the NeXT, cc -E runs the code through the compiler's parser,
24434   # not just through cpp. "Syntax error" is here to catch this case.
24435   cat >conftest.$ac_ext <<_ACEOF
24436-#line 23318 "configure"
24437+#line 23319 "configure"
24438 #include "confdefs.h"
24439 #include <assert.h>
24440                      Syntax error
24441 _ACEOF
24442-if { (eval echo "$as_me:23323: \"$ac_cpp conftest.$ac_ext\"") >&5
24443+if { (eval echo "$as_me:23324: \"$ac_cpp conftest.$ac_ext\"") >&5
24444   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
24445   ac_status=$?
24446   egrep -v '^ *\+' conftest.er1 >conftest.err
24447   rm -f conftest.er1
24448   cat conftest.err >&5
24449-  echo "$as_me:23329: \$? = $ac_status" >&5
24450+  echo "$as_me:23330: \$? = $ac_status" >&5
24451   (exit $ac_status); } >/dev/null; then
24452   if test -s conftest.err; then
24453     ac_cpp_err=$ac_cxx_preproc_warn_flag
24454@@ -23349,17 +23350,17 @@
24455   # OK, works on sane cases.  Now check whether non-existent headers
24456   # can be detected and how.
24457   cat >conftest.$ac_ext <<_ACEOF
24458-#line 23352 "configure"
24459+#line 23353 "configure"
24460 #include "confdefs.h"
24461 #include <ac_nonexistent.h>
24462 _ACEOF
24463-if { (eval echo "$as_me:23356: \"$ac_cpp conftest.$ac_ext\"") >&5
24464+if { (eval echo "$as_me:23357: \"$ac_cpp conftest.$ac_ext\"") >&5
24465   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
24466   ac_status=$?
24467   egrep -v '^ *\+' conftest.er1 >conftest.err
24468   rm -f conftest.er1
24469   cat conftest.err >&5
24470-  echo "$as_me:23362: \$? = $ac_status" >&5
24471+  echo "$as_me:23363: \$? = $ac_status" >&5
24472   (exit $ac_status); } >/dev/null; then
24473   if test -s conftest.err; then
24474     ac_cpp_err=$ac_cxx_preproc_warn_flag
24475@@ -23387,7 +23388,7 @@
24476 if $ac_preproc_ok; then
24477   :
24478 else
24479-  { { echo "$as_me:23390: error: C++ preprocessor \"$CXXCPP\" fails sanity check" >&5
24480+  { { echo "$as_me:23391: error: C++ preprocessor \"$CXXCPP\" fails sanity check" >&5
24481 echo "$as_me: error: C++ preprocessor \"$CXXCPP\" fails sanity check" >&2;}
24482    { (exit 1); exit 1; }; }
24483 fi
24484@@ -23402,23 +23403,23 @@
24485 for ac_header in typeinfo
24486 do
24487 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
24488-echo "$as_me:23405: checking for $ac_header" >&5
24489+echo "$as_me:23406: checking for $ac_header" >&5
24490 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
24491 if eval "test \"\${$as_ac_Header+set}\" = set"; then
24492   echo $ECHO_N "(cached) $ECHO_C" >&6
24493 else
24494   cat >conftest.$ac_ext <<_ACEOF
24495-#line 23411 "configure"
24496+#line 23412 "configure"
24497 #include "confdefs.h"
24498 #include <$ac_header>
24499 _ACEOF
24500-if { (eval echo "$as_me:23415: \"$ac_cpp conftest.$ac_ext\"") >&5
24501+if { (eval echo "$as_me:23416: \"$ac_cpp conftest.$ac_ext\"") >&5
24502   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
24503   ac_status=$?
24504   egrep -v '^ *\+' conftest.er1 >conftest.err
24505   rm -f conftest.er1
24506   cat conftest.err >&5
24507-  echo "$as_me:23421: \$? = $ac_status" >&5
24508+  echo "$as_me:23422: \$? = $ac_status" >&5
24509   (exit $ac_status); } >/dev/null; then
24510   if test -s conftest.err; then
24511     ac_cpp_err=$ac_cxx_preproc_warn_flag
24512@@ -23437,7 +23438,7 @@
24513 fi
24514 rm -f conftest.err conftest.$ac_ext
24515 fi
24516-echo "$as_me:23440: result: `eval echo '${'$as_ac_Header'}'`" >&5
24517+echo "$as_me:23441: result: `eval echo '${'$as_ac_Header'}'`" >&5
24518 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
24519 if test `eval echo '${'$as_ac_Header'}'` = yes; then
24520   cat >>confdefs.h <<EOF
24521@@ -23450,23 +23451,23 @@
24522 for ac_header in iostream
24523 do
24524 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
24525-echo "$as_me:23453: checking for $ac_header" >&5
24526+echo "$as_me:23454: checking for $ac_header" >&5
24527 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
24528 if eval "test \"\${$as_ac_Header+set}\" = set"; then
24529   echo $ECHO_N "(cached) $ECHO_C" >&6
24530 else
24531   cat >conftest.$ac_ext <<_ACEOF
24532-#line 23459 "configure"
24533+#line 23460 "configure"
24534 #include "confdefs.h"
24535 #include <$ac_header>
24536 _ACEOF
24537-if { (eval echo "$as_me:23463: \"$ac_cpp conftest.$ac_ext\"") >&5
24538+if { (eval echo "$as_me:23464: \"$ac_cpp conftest.$ac_ext\"") >&5
24539   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
24540   ac_status=$?
24541   egrep -v '^ *\+' conftest.er1 >conftest.err
24542   rm -f conftest.er1
24543   cat conftest.err >&5
24544-  echo "$as_me:23469: \$? = $ac_status" >&5
24545+  echo "$as_me:23470: \$? = $ac_status" >&5
24546   (exit $ac_status); } >/dev/null; then
24547   if test -s conftest.err; then
24548     ac_cpp_err=$ac_cxx_preproc_warn_flag
24549@@ -23485,7 +23486,7 @@
24550 fi
24551 rm -f conftest.err conftest.$ac_ext
24552 fi
24553-echo "$as_me:23488: result: `eval echo '${'$as_ac_Header'}'`" >&5
24554+echo "$as_me:23489: result: `eval echo '${'$as_ac_Header'}'`" >&5
24555 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
24556 if test `eval echo '${'$as_ac_Header'}'` = yes; then
24557   cat >>confdefs.h <<EOF
24558@@ -23496,10 +23497,10 @@
24559 done
24560
24561 if test x"$ac_cv_header_iostream" = xyes ; then
24562-	echo "$as_me:23499: checking if iostream uses std-namespace" >&5
24563+	echo "$as_me:23500: checking if iostream uses std-namespace" >&5
24564 echo $ECHO_N "checking if iostream uses std-namespace... $ECHO_C" >&6
24565 	cat >conftest.$ac_ext <<_ACEOF
24566-#line 23502 "configure"
24567+#line 23503 "configure"
24568 #include "confdefs.h"
24569
24570 #include <iostream>
24571@@ -23516,16 +23517,16 @@
24572 }
24573 _ACEOF
24574 rm -f conftest.$ac_objext
24575-if { (eval echo "$as_me:23519: \"$ac_compile\"") >&5
24576+if { (eval echo "$as_me:23520: \"$ac_compile\"") >&5
24577   (eval $ac_compile) 2>&5
24578   ac_status=$?
24579-  echo "$as_me:23522: \$? = $ac_status" >&5
24580+  echo "$as_me:23523: \$? = $ac_status" >&5
24581   (exit $ac_status); } &&
24582          { ac_try='test -s conftest.$ac_objext'
24583-  { (eval echo "$as_me:23525: \"$ac_try\"") >&5
24584+  { (eval echo "$as_me:23526: \"$ac_try\"") >&5
24585   (eval $ac_try) 2>&5
24586   ac_status=$?
24587-  echo "$as_me:23528: \$? = $ac_status" >&5
24588+  echo "$as_me:23529: \$? = $ac_status" >&5
24589   (exit $ac_status); }; }; then
24590   cf_iostream_namespace=yes
24591 else
24592@@ -23534,7 +23535,7 @@
24593 cf_iostream_namespace=no
24594 fi
24595 rm -f conftest.$ac_objext conftest.$ac_ext
24596-	echo "$as_me:23537: result: $cf_iostream_namespace" >&5
24597+	echo "$as_me:23538: result: $cf_iostream_namespace" >&5
24598 echo "${ECHO_T}$cf_iostream_namespace" >&6
24599 	if test "$cf_iostream_namespace" = yes ; then
24600
24601@@ -23545,7 +23546,7 @@
24602 	fi
24603 fi
24604
24605-echo "$as_me:23548: checking if we should include stdbool.h" >&5
24606+echo "$as_me:23549: checking if we should include stdbool.h" >&5
24607 echo $ECHO_N "checking if we should include stdbool.h... $ECHO_C" >&6
24608
24609 if test "${cf_cv_header_stdbool_h+set}" = set; then
24610@@ -23553,7 +23554,7 @@
24611 else
24612
24613 	cat >conftest.$ac_ext <<_ACEOF
24614-#line 23556 "configure"
24615+#line 23557 "configure"
24616 #include "confdefs.h"
24617
24618 int
24619@@ -23565,23 +23566,23 @@
24620 }
24621 _ACEOF
24622 rm -f conftest.$ac_objext
24623-if { (eval echo "$as_me:23568: \"$ac_compile\"") >&5
24624+if { (eval echo "$as_me:23569: \"$ac_compile\"") >&5
24625   (eval $ac_compile) 2>&5
24626   ac_status=$?
24627-  echo "$as_me:23571: \$? = $ac_status" >&5
24628+  echo "$as_me:23572: \$? = $ac_status" >&5
24629   (exit $ac_status); } &&
24630          { ac_try='test -s conftest.$ac_objext'
24631-  { (eval echo "$as_me:23574: \"$ac_try\"") >&5
24632+  { (eval echo "$as_me:23575: \"$ac_try\"") >&5
24633   (eval $ac_try) 2>&5
24634   ac_status=$?
24635-  echo "$as_me:23577: \$? = $ac_status" >&5
24636+  echo "$as_me:23578: \$? = $ac_status" >&5
24637   (exit $ac_status); }; }; then
24638   cf_cv_header_stdbool_h=0
24639 else
24640   echo "$as_me: failed program was:" >&5
24641 cat conftest.$ac_ext >&5
24642 cat >conftest.$ac_ext <<_ACEOF
24643-#line 23584 "configure"
24644+#line 23585 "configure"
24645 #include "confdefs.h"
24646
24647 #ifndef __BEOS__
24648@@ -23597,16 +23598,16 @@
24649 }
24650 _ACEOF
24651 rm -f conftest.$ac_objext
24652-if { (eval echo "$as_me:23600: \"$ac_compile\"") >&5
24653+if { (eval echo "$as_me:23601: \"$ac_compile\"") >&5
24654   (eval $ac_compile) 2>&5
24655   ac_status=$?
24656-  echo "$as_me:23603: \$? = $ac_status" >&5
24657+  echo "$as_me:23604: \$? = $ac_status" >&5
24658   (exit $ac_status); } &&
24659          { ac_try='test -s conftest.$ac_objext'
24660-  { (eval echo "$as_me:23606: \"$ac_try\"") >&5
24661+  { (eval echo "$as_me:23607: \"$ac_try\"") >&5
24662   (eval $ac_try) 2>&5
24663   ac_status=$?
24664-  echo "$as_me:23609: \$? = $ac_status" >&5
24665+  echo "$as_me:23610: \$? = $ac_status" >&5
24666   (exit $ac_status); }; }; then
24667   cf_cv_header_stdbool_h=1
24668 else
24669@@ -23620,13 +23621,13 @@
24670 fi
24671
24672 if test "$cf_cv_header_stdbool_h" = 1
24673-then	echo "$as_me:23623: result: yes" >&5
24674+then	echo "$as_me:23624: result: yes" >&5
24675 echo "${ECHO_T}yes" >&6
24676-else	echo "$as_me:23625: result: no" >&5
24677+else	echo "$as_me:23626: result: no" >&5
24678 echo "${ECHO_T}no" >&6
24679 fi
24680
24681-echo "$as_me:23629: checking for builtin bool type" >&5
24682+echo "$as_me:23630: checking for builtin bool type" >&5
24683 echo $ECHO_N "checking for builtin bool type... $ECHO_C" >&6
24684
24685 if test "${cf_cv_builtin_bool+set}" = set; then
24686@@ -23634,7 +23635,7 @@
24687 else
24688
24689 	cat >conftest.$ac_ext <<_ACEOF
24690-#line 23637 "configure"
24691+#line 23638 "configure"
24692 #include "confdefs.h"
24693
24694 #include <stdio.h>
24695@@ -23649,16 +23650,16 @@
24696 }
24697 _ACEOF
24698 rm -f conftest.$ac_objext
24699-if { (eval echo "$as_me:23652: \"$ac_compile\"") >&5
24700+if { (eval echo "$as_me:23653: \"$ac_compile\"") >&5
24701   (eval $ac_compile) 2>&5
24702   ac_status=$?
24703-  echo "$as_me:23655: \$? = $ac_status" >&5
24704+  echo "$as_me:23656: \$? = $ac_status" >&5
24705   (exit $ac_status); } &&
24706          { ac_try='test -s conftest.$ac_objext'
24707-  { (eval echo "$as_me:23658: \"$ac_try\"") >&5
24708+  { (eval echo "$as_me:23659: \"$ac_try\"") >&5
24709   (eval $ac_try) 2>&5
24710   ac_status=$?
24711-  echo "$as_me:23661: \$? = $ac_status" >&5
24712+  echo "$as_me:23662: \$? = $ac_status" >&5
24713   (exit $ac_status); }; }; then
24714   cf_cv_builtin_bool=1
24715 else
24716@@ -23671,13 +23672,13 @@
24717 fi
24718
24719 if test "$cf_cv_builtin_bool" = 1
24720-then	echo "$as_me:23674: result: yes" >&5
24721+then	echo "$as_me:23675: result: yes" >&5
24722 echo "${ECHO_T}yes" >&6
24723-else	echo "$as_me:23676: result: no" >&5
24724+else	echo "$as_me:23677: result: no" >&5
24725 echo "${ECHO_T}no" >&6
24726 fi
24727
24728-echo "$as_me:23680: checking for size of bool" >&5
24729+echo "$as_me:23681: checking for size of bool" >&5
24730 echo $ECHO_N "checking for size of bool... $ECHO_C" >&6
24731 if test "${cf_cv_type_of_bool+set}" = set; then
24732   echo $ECHO_N "(cached) $ECHO_C" >&6
24733@@ -23688,7 +23689,7 @@
24734   cf_cv_type_of_bool=unknown
24735 else
24736   cat >conftest.$ac_ext <<_ACEOF
24737-#line 23691 "configure"
24738+#line 23692 "configure"
24739 #include "confdefs.h"
24740
24741 #include <stdlib.h>
24742@@ -23730,15 +23731,15 @@
24743
24744 _ACEOF
24745 rm -f conftest$ac_exeext
24746-if { (eval echo "$as_me:23733: \"$ac_link\"") >&5
24747+if { (eval echo "$as_me:23734: \"$ac_link\"") >&5
24748   (eval $ac_link) 2>&5
24749   ac_status=$?
24750-  echo "$as_me:23736: \$? = $ac_status" >&5
24751+  echo "$as_me:23737: \$? = $ac_status" >&5
24752   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
24753-  { (eval echo "$as_me:23738: \"$ac_try\"") >&5
24754+  { (eval echo "$as_me:23739: \"$ac_try\"") >&5
24755   (eval $ac_try) 2>&5
24756   ac_status=$?
24757-  echo "$as_me:23741: \$? = $ac_status" >&5
24758+  echo "$as_me:23742: \$? = $ac_status" >&5
24759   (exit $ac_status); }; }; then
24760   cf_cv_type_of_bool=`cat cf_test.out`
24761 		 if test -z "$cf_cv_type_of_bool"; then
24762@@ -23756,18 +23757,18 @@
24763 fi
24764
24765 	rm -f cf_test.out
24766-echo "$as_me:23759: result: $cf_cv_type_of_bool" >&5
24767+echo "$as_me:23760: result: $cf_cv_type_of_bool" >&5
24768 echo "${ECHO_T}$cf_cv_type_of_bool" >&6
24769 if test "$cf_cv_type_of_bool" = unknown ; then
24770 	case .$NCURSES_BOOL in
24771 	(.auto|.) NCURSES_BOOL=unsigned;;
24772 	esac
24773-	{ echo "$as_me:23765: WARNING: Assuming $NCURSES_BOOL for type of bool" >&5
24774+	{ echo "$as_me:23766: WARNING: Assuming $NCURSES_BOOL for type of bool" >&5
24775 echo "$as_me: WARNING: Assuming $NCURSES_BOOL for type of bool" >&2;}
24776 	cf_cv_type_of_bool=$NCURSES_BOOL
24777 fi
24778
24779-echo "$as_me:23770: checking for special defines needed for etip.h" >&5
24780+echo "$as_me:23771: checking for special defines needed for etip.h" >&5
24781 echo $ECHO_N "checking for special defines needed for etip.h... $ECHO_C" >&6
24782 cf_save_CXXFLAGS="$CXXFLAGS"
24783 cf_result="none"
24784@@ -23785,7 +23786,7 @@
24785 	test -n "$cf_math" && CXXFLAGS="$CXXFLAGS -DETIP_NEEDS_${cf_math}"
24786 	test -n "$cf_excp" && CXXFLAGS="$CXXFLAGS -DETIP_NEEDS_${cf_excp}"
24787 cat >conftest.$ac_ext <<_ACEOF
24788-#line 23788 "configure"
24789+#line 23789 "configure"
24790 #include "confdefs.h"
24791
24792 #include <etip.h.in>
24793@@ -23799,16 +23800,16 @@
24794 }
24795 _ACEOF
24796 rm -f conftest.$ac_objext
24797-if { (eval echo "$as_me:23802: \"$ac_compile\"") >&5
24798+if { (eval echo "$as_me:23803: \"$ac_compile\"") >&5
24799   (eval $ac_compile) 2>&5
24800   ac_status=$?
24801-  echo "$as_me:23805: \$? = $ac_status" >&5
24802+  echo "$as_me:23806: \$? = $ac_status" >&5
24803   (exit $ac_status); } &&
24804          { ac_try='test -s conftest.$ac_objext'
24805-  { (eval echo "$as_me:23808: \"$ac_try\"") >&5
24806+  { (eval echo "$as_me:23809: \"$ac_try\"") >&5
24807   (eval $ac_try) 2>&5
24808   ac_status=$?
24809-  echo "$as_me:23811: \$? = $ac_status" >&5
24810+  echo "$as_me:23812: \$? = $ac_status" >&5
24811   (exit $ac_status); }; }; then
24812
24813 	test -n "$cf_math" && cat >>confdefs.h <<EOF
24814@@ -23829,12 +23830,12 @@
24815 rm -f conftest.$ac_objext conftest.$ac_ext
24816 done
24817 done
24818-echo "$as_me:23832: result: $cf_result" >&5
24819+echo "$as_me:23833: result: $cf_result" >&5
24820 echo "${ECHO_T}$cf_result" >&6
24821 CXXFLAGS="$cf_save_CXXFLAGS"
24822
24823 if test -n "$CXX"; then
24824-echo "$as_me:23837: checking if $CXX accepts parameter initialization" >&5
24825+echo "$as_me:23838: checking if $CXX accepts parameter initialization" >&5
24826 echo $ECHO_N "checking if $CXX accepts parameter initialization... $ECHO_C" >&6
24827 if test "${cf_cv_cpp_param_init+set}" = set; then
24828   echo $ECHO_N "(cached) $ECHO_C" >&6
24829@@ -23851,7 +23852,7 @@
24830   cf_cv_cpp_param_init=unknown
24831 else
24832   cat >conftest.$ac_ext <<_ACEOF
24833-#line 23854 "configure"
24834+#line 23855 "configure"
24835 #include "confdefs.h"
24836
24837 class TEST {
24838@@ -23870,15 +23871,15 @@
24839
24840 _ACEOF
24841 rm -f conftest$ac_exeext
24842-if { (eval echo "$as_me:23873: \"$ac_link\"") >&5
24843+if { (eval echo "$as_me:23874: \"$ac_link\"") >&5
24844   (eval $ac_link) 2>&5
24845   ac_status=$?
24846-  echo "$as_me:23876: \$? = $ac_status" >&5
24847+  echo "$as_me:23877: \$? = $ac_status" >&5
24848   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
24849-  { (eval echo "$as_me:23878: \"$ac_try\"") >&5
24850+  { (eval echo "$as_me:23879: \"$ac_try\"") >&5
24851   (eval $ac_try) 2>&5
24852   ac_status=$?
24853-  echo "$as_me:23881: \$? = $ac_status" >&5
24854+  echo "$as_me:23882: \$? = $ac_status" >&5
24855   (exit $ac_status); }; }; then
24856   cf_cv_cpp_param_init=yes
24857 else
24858@@ -23897,7 +23898,7 @@
24859 ac_main_return=return
24860
24861 fi
24862-echo "$as_me:23900: result: $cf_cv_cpp_param_init" >&5
24863+echo "$as_me:23901: result: $cf_cv_cpp_param_init" >&5
24864 echo "${ECHO_T}$cf_cv_cpp_param_init" >&6
24865 fi
24866 test "$cf_cv_cpp_param_init" = yes &&
24867@@ -23907,7 +23908,7 @@
24868
24869 if test -n "$CXX"; then
24870
24871-echo "$as_me:23910: checking if $CXX accepts static_cast" >&5
24872+echo "$as_me:23911: checking if $CXX accepts static_cast" >&5
24873 echo $ECHO_N "checking if $CXX accepts static_cast... $ECHO_C" >&6
24874 if test "${cf_cv_cpp_static_cast+set}" = set; then
24875   echo $ECHO_N "(cached) $ECHO_C" >&6
24876@@ -23921,7 +23922,7 @@
24877 ac_main_return=return
24878
24879 	cat >conftest.$ac_ext <<_ACEOF
24880-#line 23924 "configure"
24881+#line 23925 "configure"
24882 #include "confdefs.h"
24883
24884 class NCursesPanel
24885@@ -23965,16 +23966,16 @@
24886 }
24887 _ACEOF
24888 rm -f conftest.$ac_objext
24889-if { (eval echo "$as_me:23968: \"$ac_compile\"") >&5
24890+if { (eval echo "$as_me:23969: \"$ac_compile\"") >&5
24891   (eval $ac_compile) 2>&5
24892   ac_status=$?
24893-  echo "$as_me:23971: \$? = $ac_status" >&5
24894+  echo "$as_me:23972: \$? = $ac_status" >&5
24895   (exit $ac_status); } &&
24896          { ac_try='test -s conftest.$ac_objext'
24897-  { (eval echo "$as_me:23974: \"$ac_try\"") >&5
24898+  { (eval echo "$as_me:23975: \"$ac_try\"") >&5
24899   (eval $ac_try) 2>&5
24900   ac_status=$?
24901-  echo "$as_me:23977: \$? = $ac_status" >&5
24902+  echo "$as_me:23978: \$? = $ac_status" >&5
24903   (exit $ac_status); }; }; then
24904   cf_cv_cpp_static_cast=yes
24905 else
24906@@ -23992,7 +23993,7 @@
24907 ac_main_return=return
24908
24909 fi
24910-echo "$as_me:23995: result: $cf_cv_cpp_static_cast" >&5
24911+echo "$as_me:23996: result: $cf_cv_cpp_static_cast" >&5
24912 echo "${ECHO_T}$cf_cv_cpp_static_cast" >&6
24913
24914 fi
24915@@ -24041,7 +24042,7 @@
24916 	else
24917 		if test "$cf_cv_header_stdbool_h" = 1 ; then
24918
24919-echo "$as_me:24044: checking for size of bool" >&5
24920+echo "$as_me:24045: checking for size of bool" >&5
24921 echo $ECHO_N "checking for size of bool... $ECHO_C" >&6
24922 if test "${cf_cv_type_of_bool+set}" = set; then
24923   echo $ECHO_N "(cached) $ECHO_C" >&6
24924@@ -24052,7 +24053,7 @@
24925   cf_cv_type_of_bool=unknown
24926 else
24927   cat >conftest.$ac_ext <<_ACEOF
24928-#line 24055 "configure"
24929+#line 24056 "configure"
24930 #include "confdefs.h"
24931
24932 #include <stdlib.h>
24933@@ -24094,15 +24095,15 @@
24934
24935 _ACEOF
24936 rm -f conftest$ac_exeext
24937-if { (eval echo "$as_me:24097: \"$ac_link\"") >&5
24938+if { (eval echo "$as_me:24098: \"$ac_link\"") >&5
24939   (eval $ac_link) 2>&5
24940   ac_status=$?
24941-  echo "$as_me:24100: \$? = $ac_status" >&5
24942+  echo "$as_me:24101: \$? = $ac_status" >&5
24943   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
24944-  { (eval echo "$as_me:24102: \"$ac_try\"") >&5
24945+  { (eval echo "$as_me:24103: \"$ac_try\"") >&5
24946   (eval $ac_try) 2>&5
24947   ac_status=$?
24948-  echo "$as_me:24105: \$? = $ac_status" >&5
24949+  echo "$as_me:24106: \$? = $ac_status" >&5
24950   (exit $ac_status); }; }; then
24951   cf_cv_type_of_bool=`cat cf_test.out`
24952 		 if test -z "$cf_cv_type_of_bool"; then
24953@@ -24120,25 +24121,25 @@
24954 fi
24955
24956 	rm -f cf_test.out
24957-echo "$as_me:24123: result: $cf_cv_type_of_bool" >&5
24958+echo "$as_me:24124: result: $cf_cv_type_of_bool" >&5
24959 echo "${ECHO_T}$cf_cv_type_of_bool" >&6
24960 if test "$cf_cv_type_of_bool" = unknown ; then
24961 	case .$NCURSES_BOOL in
24962 	(.auto|.) NCURSES_BOOL=unsigned;;
24963 	esac
24964-	{ echo "$as_me:24129: WARNING: Assuming $NCURSES_BOOL for type of bool" >&5
24965+	{ echo "$as_me:24130: WARNING: Assuming $NCURSES_BOOL for type of bool" >&5
24966 echo "$as_me: WARNING: Assuming $NCURSES_BOOL for type of bool" >&2;}
24967 	cf_cv_type_of_bool=$NCURSES_BOOL
24968 fi
24969
24970 		else
24971-			echo "$as_me:24135: checking for fallback type of bool" >&5
24972+			echo "$as_me:24136: checking for fallback type of bool" >&5
24973 echo $ECHO_N "checking for fallback type of bool... $ECHO_C" >&6
24974 			case "$host_cpu" in
24975 			(i?86)	cf_cv_type_of_bool=char	;;
24976 			(*)	cf_cv_type_of_bool=int	;;
24977 			esac
24978-			echo "$as_me:24141: result: $cf_cv_type_of_bool" >&5
24979+			echo "$as_me:24142: result: $cf_cv_type_of_bool" >&5
24980 echo "${ECHO_T}$cf_cv_type_of_bool" >&6
24981 		fi
24982 	fi
24983@@ -24167,7 +24168,7 @@
24984
24985 	if test "$cf_with_ada" != "no" ; then
24986 		if test "$with_libtool" != "no"; then
24987-			{ echo "$as_me:24170: WARNING: libtool does not support Ada - disabling feature" >&5
24988+			{ echo "$as_me:24171: WARNING: libtool does not support Ada - disabling feature" >&5
24989 echo "$as_me: WARNING: libtool does not support Ada - disabling feature" >&2;}
24990 			cf_with_ada=no
24991 		fi
24992@@ -24179,7 +24180,7 @@
24993 cf_ada_config="#"
24994 # Extract the first word of "$cf_ada_make", so it can be a program name with args.
24995 set dummy $cf_ada_make; ac_word=$2
24996-echo "$as_me:24182: checking for $ac_word" >&5
24997+echo "$as_me:24183: checking for $ac_word" >&5
24998 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
24999 if test "${ac_cv_prog_gnatmake_exists+set}" = set; then
25000   echo $ECHO_N "(cached) $ECHO_C" >&6
25001@@ -24194,7 +24195,7 @@
25002   test -z "$ac_dir" && ac_dir=.
25003   $as_executable_p "$ac_dir/$ac_word" || continue
25004 ac_cv_prog_gnatmake_exists="yes"
25005-echo "$as_me:24197: found $ac_dir/$ac_word" >&5
25006+echo "$as_me:24198: found $ac_dir/$ac_word" >&5
25007 break
25008 done
25009
25010@@ -24203,10 +24204,10 @@
25011 fi
25012 gnatmake_exists=$ac_cv_prog_gnatmake_exists
25013 if test -n "$gnatmake_exists"; then
25014-  echo "$as_me:24206: result: $gnatmake_exists" >&5
25015+  echo "$as_me:24207: result: $gnatmake_exists" >&5
25016 echo "${ECHO_T}$gnatmake_exists" >&6
25017 else
25018-  echo "$as_me:24209: result: no" >&5
25019+  echo "$as_me:24210: result: no" >&5
25020 echo "${ECHO_T}no" >&6
25021 fi
25022
25023@@ -24216,7 +24217,7 @@
25024 else
25025 	# Extract the first word of "gprconfig", so it can be a program name with args.
25026 set dummy gprconfig; ac_word=$2
25027-echo "$as_me:24219: checking for $ac_word" >&5
25028+echo "$as_me:24220: checking for $ac_word" >&5
25029 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
25030 if test "${ac_cv_prog_gprconfig_exists+set}" = set; then
25031   echo $ECHO_N "(cached) $ECHO_C" >&6
25032@@ -24231,7 +24232,7 @@
25033   test -z "$ac_dir" && ac_dir=.
25034   $as_executable_p "$ac_dir/$ac_word" || continue
25035 ac_cv_prog_gprconfig_exists="yes"
25036-echo "$as_me:24234: found $ac_dir/$ac_word" >&5
25037+echo "$as_me:24235: found $ac_dir/$ac_word" >&5
25038 break
25039 done
25040
25041@@ -24240,10 +24241,10 @@
25042 fi
25043 gprconfig_exists=$ac_cv_prog_gprconfig_exists
25044 if test -n "$gprconfig_exists"; then
25045-  echo "$as_me:24243: result: $gprconfig_exists" >&5
25046+  echo "$as_me:24244: result: $gprconfig_exists" >&5
25047 echo "${ECHO_T}$gprconfig_exists" >&6
25048 else
25049-  echo "$as_me:24246: result: no" >&5
25050+  echo "$as_me:24247: result: no" >&5
25051 echo "${ECHO_T}no" >&6
25052 fi
25053
25054@@ -24256,7 +24257,7 @@
25055 			cd conftest.src
25056 			for cf_gprconfig in Ada C
25057 			do
25058-				echo "$as_me:24259: checking for gprconfig name for $cf_gprconfig" >&5
25059+				echo "$as_me:24260: checking for gprconfig name for $cf_gprconfig" >&5
25060 echo $ECHO_N "checking for gprconfig name for $cf_gprconfig... $ECHO_C" >&6
25061 				if test $cf_gprconfig = C
25062 				then
25063@@ -24275,10 +24276,10 @@
25064 				if test -n "$cf_gprconfig_value"
25065 				then
25066 					eval cf_ada_config_$cf_gprconfig=$cf_gprconfig_value
25067-					echo "$as_me:24278: result: $cf_gprconfig_value" >&5
25068+					echo "$as_me:24279: result: $cf_gprconfig_value" >&5
25069 echo "${ECHO_T}$cf_gprconfig_value" >&6
25070 				else
25071-					echo "$as_me:24281: result: missing" >&5
25072+					echo "$as_me:24282: result: missing" >&5
25073 echo "${ECHO_T}missing" >&6
25074 					cf_ada_config="#"
25075 					break
25076@@ -24294,12 +24295,12 @@
25077 	if test "x$cf_ada_config" != "x#"
25078 	then
25079
25080-echo "$as_me:24297: checking for gnat version" >&5
25081+echo "$as_me:24298: checking for gnat version" >&5
25082 echo $ECHO_N "checking for gnat version... $ECHO_C" >&6
25083 cf_gnat_version=`${cf_ada_make:-gnatmake} -v 2>&1 | \
25084 	grep '[0-9].[0-9][0-9]*' |\
25085 	sed -e '2,$d' -e 's/[^0-9 \.]//g' -e 's/^[ ]*//' -e 's/ .*//'`
25086-echo "$as_me:24302: result: $cf_gnat_version" >&5
25087+echo "$as_me:24303: result: $cf_gnat_version" >&5
25088 echo "${ECHO_T}$cf_gnat_version" >&6
25089
25090 case $cf_gnat_version in
25091@@ -24307,7 +24308,7 @@
25092 	cf_cv_prog_gnat_correct=yes
25093 	;;
25094 (*)
25095-	{ echo "$as_me:24310: WARNING: Unsupported GNAT version $cf_gnat_version. We require 3.11 or better. Disabling Ada95 binding." >&5
25096+	{ echo "$as_me:24311: WARNING: Unsupported GNAT version $cf_gnat_version. We require 3.11 or better. Disabling Ada95 binding." >&5
25097 echo "$as_me: WARNING: Unsupported GNAT version $cf_gnat_version. We require 3.11 or better. Disabling Ada95 binding." >&2;}
25098 	cf_cv_prog_gnat_correct=no
25099 	;;
25100@@ -24315,7 +24316,7 @@
25101
25102 		# Extract the first word of "m4", so it can be a program name with args.
25103 set dummy m4; ac_word=$2
25104-echo "$as_me:24318: checking for $ac_word" >&5
25105+echo "$as_me:24319: checking for $ac_word" >&5
25106 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
25107 if test "${ac_cv_prog_M4_exists+set}" = set; then
25108   echo $ECHO_N "(cached) $ECHO_C" >&6
25109@@ -24330,7 +24331,7 @@
25110   test -z "$ac_dir" && ac_dir=.
25111   $as_executable_p "$ac_dir/$ac_word" || continue
25112 ac_cv_prog_M4_exists="yes"
25113-echo "$as_me:24333: found $ac_dir/$ac_word" >&5
25114+echo "$as_me:24334: found $ac_dir/$ac_word" >&5
25115 break
25116 done
25117
25118@@ -24339,10 +24340,10 @@
25119 fi
25120 M4_exists=$ac_cv_prog_M4_exists
25121 if test -n "$M4_exists"; then
25122-  echo "$as_me:24342: result: $M4_exists" >&5
25123+  echo "$as_me:24343: result: $M4_exists" >&5
25124 echo "${ECHO_T}$M4_exists" >&6
25125 else
25126-  echo "$as_me:24345: result: no" >&5
25127+  echo "$as_me:24346: result: no" >&5
25128 echo "${ECHO_T}no" >&6
25129 fi
25130
25131@@ -24351,7 +24352,7 @@
25132 			echo Ada95 binding required program m4 not found. Ada95 binding disabled.
25133 		fi
25134 		if test "$cf_cv_prog_gnat_correct" = yes; then
25135-			echo "$as_me:24354: checking if GNAT works" >&5
25136+			echo "$as_me:24355: checking if GNAT works" >&5
25137 echo $ECHO_N "checking if GNAT works... $ECHO_C" >&6
25138
25139 rm -rf conftest* *~conftest*
25140@@ -24379,7 +24380,7 @@
25141 fi
25142 rm -rf conftest* *~conftest*
25143
25144-			echo "$as_me:24382: result: $cf_cv_prog_gnat_correct" >&5
25145+			echo "$as_me:24383: result: $cf_cv_prog_gnat_correct" >&5
25146 echo "${ECHO_T}$cf_cv_prog_gnat_correct" >&6
25147 		fi
25148 	else
25149@@ -24391,7 +24392,7 @@
25150
25151  	ADAFLAGS="$ADAFLAGS -gnatpn"
25152
25153-	echo "$as_me:24394: checking optimization options for ADAFLAGS" >&5
25154+	echo "$as_me:24395: checking optimization options for ADAFLAGS" >&5
25155 echo $ECHO_N "checking optimization options for ADAFLAGS... $ECHO_C" >&6
25156 	case "$CFLAGS" in
25157 	(*-g*)
25158@@ -24408,10 +24409,10 @@
25159
25160 		;;
25161 	esac
25162-	echo "$as_me:24411: result: $ADAFLAGS" >&5
25163+	echo "$as_me:24412: result: $ADAFLAGS" >&5
25164 echo "${ECHO_T}$ADAFLAGS" >&6
25165
25166-echo "$as_me:24414: checking if GNATPREP supports -T option" >&5
25167+echo "$as_me:24415: checking if GNATPREP supports -T option" >&5
25168 echo $ECHO_N "checking if GNATPREP supports -T option... $ECHO_C" >&6
25169 if test "${cf_cv_gnatprep_opt_t+set}" = set; then
25170   echo $ECHO_N "(cached) $ECHO_C" >&6
25171@@ -24421,11 +24422,11 @@
25172 gnatprep -T 2>/dev/null >/dev/null && cf_cv_gnatprep_opt_t=yes
25173
25174 fi
25175-echo "$as_me:24424: result: $cf_cv_gnatprep_opt_t" >&5
25176+echo "$as_me:24425: result: $cf_cv_gnatprep_opt_t" >&5
25177 echo "${ECHO_T}$cf_cv_gnatprep_opt_t" >&6
25178 test "$cf_cv_gnatprep_opt_t" = yes && GNATPREP_OPTS="-T $GNATPREP_OPTS"
25179
25180-echo "$as_me:24428: checking if GNAT supports generics" >&5
25181+echo "$as_me:24429: checking if GNAT supports generics" >&5
25182 echo $ECHO_N "checking if GNAT supports generics... $ECHO_C" >&6
25183 case $cf_gnat_version in
25184 (3.[1-9]*|[4-9].*)
25185@@ -24435,7 +24436,7 @@
25186 	cf_gnat_generics=no
25187 	;;
25188 esac
25189-echo "$as_me:24438: result: $cf_gnat_generics" >&5
25190+echo "$as_me:24439: result: $cf_gnat_generics" >&5
25191 echo "${ECHO_T}$cf_gnat_generics" >&6
25192
25193 if test "$cf_gnat_generics" = yes
25194@@ -24447,7 +24448,7 @@
25195 	cf_generic_objects=
25196 fi
25197
25198-echo "$as_me:24450: checking if GNAT supports SIGINT" >&5
25199+echo "$as_me:24451: checking if GNAT supports SIGINT" >&5
25200 echo $ECHO_N "checking if GNAT supports SIGINT... $ECHO_C" >&6
25201 if test "${cf_cv_gnat_sigint+set}" = set; then
25202   echo $ECHO_N "(cached) $ECHO_C" >&6
25203@@ -24495,7 +24496,7 @@
25204 rm -rf conftest* *~conftest*
25205
25206 fi
25207-echo "$as_me:24498: result: $cf_cv_gnat_sigint" >&5
25208+echo "$as_me:24499: result: $cf_cv_gnat_sigint" >&5
25209 echo "${ECHO_T}$cf_cv_gnat_sigint" >&6
25210
25211 if test $cf_cv_gnat_sigint = yes ; then
25212@@ -24508,7 +24509,7 @@
25213 cf_gnat_projects=no
25214
25215 if test "$enable_gnat_projects" != no ; then
25216-echo "$as_me:24511: checking if GNAT supports project files" >&5
25217+echo "$as_me:24512: checking if GNAT supports project files" >&5
25218 echo $ECHO_N "checking if GNAT supports project files... $ECHO_C" >&6
25219 case $cf_gnat_version in
25220 (3.[0-9]*)
25221@@ -24571,15 +24572,15 @@
25222 	esac
25223 	;;
25224 esac
25225-echo "$as_me:24574: result: $cf_gnat_projects" >&5
25226+echo "$as_me:24575: result: $cf_gnat_projects" >&5
25227 echo "${ECHO_T}$cf_gnat_projects" >&6
25228 fi # enable_gnat_projects
25229
25230 if test $cf_gnat_projects = yes
25231 then
25232-	echo "$as_me:24580: checking if GNAT supports libraries" >&5
25233+	echo "$as_me:24581: checking if GNAT supports libraries" >&5
25234 echo $ECHO_N "checking if GNAT supports libraries... $ECHO_C" >&6
25235-	echo "$as_me:24582: result: $cf_gnat_libraries" >&5
25236+	echo "$as_me:24583: result: $cf_gnat_libraries" >&5
25237 echo "${ECHO_T}$cf_gnat_libraries" >&6
25238 fi
25239
25240@@ -24599,7 +24600,7 @@
25241 	USE_GNAT_LIBRARIES="#"
25242 fi
25243
25244-echo "$as_me:24602: checking for ada-compiler" >&5
25245+echo "$as_me:24603: checking for ada-compiler" >&5
25246 echo $ECHO_N "checking for ada-compiler... $ECHO_C" >&6
25247
25248 # Check whether --with-ada-compiler or --without-ada-compiler was given.
25249@@ -24610,12 +24611,12 @@
25250   cf_ada_compiler=gnatmake
25251 fi;
25252
25253-echo "$as_me:24613: result: $cf_ada_compiler" >&5
25254+echo "$as_me:24614: result: $cf_ada_compiler" >&5
25255 echo "${ECHO_T}$cf_ada_compiler" >&6
25256
25257 			cf_ada_package=terminal_interface
25258
25259-echo "$as_me:24618: checking for ada-include" >&5
25260+echo "$as_me:24619: checking for ada-include" >&5
25261 echo $ECHO_N "checking for ada-include... $ECHO_C" >&6
25262
25263 # Check whether --with-ada-include or --without-ada-include was given.
25264@@ -24651,7 +24652,7 @@
25265 	withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%`
25266 	;;
25267 (*)
25268-	{ { echo "$as_me:24654: error: expected a pathname, not \"$withval\"" >&5
25269+	{ { echo "$as_me:24655: error: expected a pathname, not \"$withval\"" >&5
25270 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;}
25271    { (exit 1); exit 1; }; }
25272 	;;
25273@@ -24660,10 +24661,10 @@
25274 fi
25275 eval ADA_INCLUDE="$withval"
25276
25277-echo "$as_me:24663: result: $ADA_INCLUDE" >&5
25278+echo "$as_me:24664: result: $ADA_INCLUDE" >&5
25279 echo "${ECHO_T}$ADA_INCLUDE" >&6
25280
25281-echo "$as_me:24666: checking for ada-objects" >&5
25282+echo "$as_me:24667: checking for ada-objects" >&5
25283 echo $ECHO_N "checking for ada-objects... $ECHO_C" >&6
25284
25285 # Check whether --with-ada-objects or --without-ada-objects was given.
25286@@ -24699,7 +24700,7 @@
25287 	withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%`
25288 	;;
25289 (*)
25290-	{ { echo "$as_me:24702: error: expected a pathname, not \"$withval\"" >&5
25291+	{ { echo "$as_me:24703: error: expected a pathname, not \"$withval\"" >&5
25292 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;}
25293    { (exit 1); exit 1; }; }
25294 	;;
25295@@ -24708,10 +24709,10 @@
25296 fi
25297 eval ADA_OBJECTS="$withval"
25298
25299-echo "$as_me:24711: result: $ADA_OBJECTS" >&5
25300+echo "$as_me:24712: result: $ADA_OBJECTS" >&5
25301 echo "${ECHO_T}$ADA_OBJECTS" >&6
25302
25303-echo "$as_me:24714: checking if an Ada95 shared-library should be built" >&5
25304+echo "$as_me:24715: checking if an Ada95 shared-library should be built" >&5
25305 echo $ECHO_N "checking if an Ada95 shared-library should be built... $ECHO_C" >&6
25306
25307 # Check whether --with-ada-sharedlib or --without-ada-sharedlib was given.
25308@@ -24721,14 +24722,14 @@
25309 else
25310   with_ada_sharedlib=no
25311 fi;
25312-echo "$as_me:24724: result: $with_ada_sharedlib" >&5
25313+echo "$as_me:24725: result: $with_ada_sharedlib" >&5
25314 echo "${ECHO_T}$with_ada_sharedlib" >&6
25315
25316 if test "x$with_ada_sharedlib" != xno
25317 then
25318 	if test "x$cf_gnat_projects" != xyes
25319 	then
25320-		{ echo "$as_me:24731: WARNING: disabling shared-library since GNAT projects are not supported" >&5
25321+		{ echo "$as_me:24732: WARNING: disabling shared-library since GNAT projects are not supported" >&5
25322 echo "$as_me: WARNING: disabling shared-library since GNAT projects are not supported" >&2;}
25323 		with_ada_sharedlib=no
25324 	fi
25325@@ -24746,6 +24747,27 @@
25326 	fi
25327 fi
25328
25329+			# allow the Ada binding to be renamed
25330+
25331+echo "$as_me:24752: checking for ada-libname" >&5
25332+echo $ECHO_N "checking for ada-libname... $ECHO_C" >&6
25333+
25334+# Check whether --with-ada-libname or --without-ada-libname was given.
25335+if test "${with_ada_libname+set}" = set; then
25336+  withval="$with_ada_libname"
25337+  ADA_LIBNAME=$withval
25338+else
25339+  ADA_LIBNAME=AdaCurses
25340+fi;
25341+case "x$ADA_LIBNAME" in
25342+(x|xyes|xno)
25343+	ADA_LIBNAME=AdaCurses
25344+	;;
25345+esac
25346+
25347+echo "$as_me:24768: result: $ADA_LIBNAME" >&5
25348+echo "${ECHO_T}$ADA_LIBNAME" >&6
25349+
25350 		fi
25351 	fi
25352 else
25353@@ -24754,13 +24776,13 @@
25354
25355 # do this "late" to avoid conflict with header-checks
25356 if test "x$with_widec" = xyes ; then
25357-	echo "$as_me:24757: checking for wchar_t" >&5
25358+	echo "$as_me:24779: checking for wchar_t" >&5
25359 echo $ECHO_N "checking for wchar_t... $ECHO_C" >&6
25360 if test "${ac_cv_type_wchar_t+set}" = set; then
25361   echo $ECHO_N "(cached) $ECHO_C" >&6
25362 else
25363   cat >conftest.$ac_ext <<_ACEOF
25364-#line 24763 "configure"
25365+#line 24785 "configure"
25366 #include "confdefs.h"
25367 $ac_includes_default
25368 int
25369@@ -24775,16 +24797,16 @@
25370 }
25371 _ACEOF
25372 rm -f conftest.$ac_objext
25373-if { (eval echo "$as_me:24778: \"$ac_compile\"") >&5
25374+if { (eval echo "$as_me:24800: \"$ac_compile\"") >&5
25375   (eval $ac_compile) 2>&5
25376   ac_status=$?
25377-  echo "$as_me:24781: \$? = $ac_status" >&5
25378+  echo "$as_me:24803: \$? = $ac_status" >&5
25379   (exit $ac_status); } &&
25380          { ac_try='test -s conftest.$ac_objext'
25381-  { (eval echo "$as_me:24784: \"$ac_try\"") >&5
25382+  { (eval echo "$as_me:24806: \"$ac_try\"") >&5
25383   (eval $ac_try) 2>&5
25384   ac_status=$?
25385-  echo "$as_me:24787: \$? = $ac_status" >&5
25386+  echo "$as_me:24809: \$? = $ac_status" >&5
25387   (exit $ac_status); }; }; then
25388   ac_cv_type_wchar_t=yes
25389 else
25390@@ -24794,10 +24816,10 @@
25391 fi
25392 rm -f conftest.$ac_objext conftest.$ac_ext
25393 fi
25394-echo "$as_me:24797: result: $ac_cv_type_wchar_t" >&5
25395+echo "$as_me:24819: result: $ac_cv_type_wchar_t" >&5
25396 echo "${ECHO_T}$ac_cv_type_wchar_t" >&6
25397
25398-echo "$as_me:24800: checking size of wchar_t" >&5
25399+echo "$as_me:24822: checking size of wchar_t" >&5
25400 echo $ECHO_N "checking size of wchar_t... $ECHO_C" >&6
25401 if test "${ac_cv_sizeof_wchar_t+set}" = set; then
25402   echo $ECHO_N "(cached) $ECHO_C" >&6
25403@@ -24806,7 +24828,7 @@
25404   if test "$cross_compiling" = yes; then
25405   # Depending upon the size, compute the lo and hi bounds.
25406 cat >conftest.$ac_ext <<_ACEOF
25407-#line 24809 "configure"
25408+#line 24831 "configure"
25409 #include "confdefs.h"
25410 $ac_includes_default
25411 int
25412@@ -24818,21 +24840,21 @@
25413 }
25414 _ACEOF
25415 rm -f conftest.$ac_objext
25416-if { (eval echo "$as_me:24821: \"$ac_compile\"") >&5
25417+if { (eval echo "$as_me:24843: \"$ac_compile\"") >&5
25418   (eval $ac_compile) 2>&5
25419   ac_status=$?
25420-  echo "$as_me:24824: \$? = $ac_status" >&5
25421+  echo "$as_me:24846: \$? = $ac_status" >&5
25422   (exit $ac_status); } &&
25423          { ac_try='test -s conftest.$ac_objext'
25424-  { (eval echo "$as_me:24827: \"$ac_try\"") >&5
25425+  { (eval echo "$as_me:24849: \"$ac_try\"") >&5
25426   (eval $ac_try) 2>&5
25427   ac_status=$?
25428-  echo "$as_me:24830: \$? = $ac_status" >&5
25429+  echo "$as_me:24852: \$? = $ac_status" >&5
25430   (exit $ac_status); }; }; then
25431   ac_lo=0 ac_mid=0
25432   while :; do
25433     cat >conftest.$ac_ext <<_ACEOF
25434-#line 24835 "configure"
25435+#line 24857 "configure"
25436 #include "confdefs.h"
25437 $ac_includes_default
25438 int
25439@@ -24844,16 +24866,16 @@
25440 }
25441 _ACEOF
25442 rm -f conftest.$ac_objext
25443-if { (eval echo "$as_me:24847: \"$ac_compile\"") >&5
25444+if { (eval echo "$as_me:24869: \"$ac_compile\"") >&5
25445   (eval $ac_compile) 2>&5
25446   ac_status=$?
25447-  echo "$as_me:24850: \$? = $ac_status" >&5
25448+  echo "$as_me:24872: \$? = $ac_status" >&5
25449   (exit $ac_status); } &&
25450          { ac_try='test -s conftest.$ac_objext'
25451-  { (eval echo "$as_me:24853: \"$ac_try\"") >&5
25452+  { (eval echo "$as_me:24875: \"$ac_try\"") >&5
25453   (eval $ac_try) 2>&5
25454   ac_status=$?
25455-  echo "$as_me:24856: \$? = $ac_status" >&5
25456+  echo "$as_me:24878: \$? = $ac_status" >&5
25457   (exit $ac_status); }; }; then
25458   ac_hi=$ac_mid; break
25459 else
25460@@ -24869,7 +24891,7 @@
25461 ac_hi=-1 ac_mid=-1
25462   while :; do
25463     cat >conftest.$ac_ext <<_ACEOF
25464-#line 24872 "configure"
25465+#line 24894 "configure"
25466 #include "confdefs.h"
25467 $ac_includes_default
25468 int
25469@@ -24881,16 +24903,16 @@
25470 }
25471 _ACEOF
25472 rm -f conftest.$ac_objext
25473-if { (eval echo "$as_me:24884: \"$ac_compile\"") >&5
25474+if { (eval echo "$as_me:24906: \"$ac_compile\"") >&5
25475   (eval $ac_compile) 2>&5
25476   ac_status=$?
25477-  echo "$as_me:24887: \$? = $ac_status" >&5
25478+  echo "$as_me:24909: \$? = $ac_status" >&5
25479   (exit $ac_status); } &&
25480          { ac_try='test -s conftest.$ac_objext'
25481-  { (eval echo "$as_me:24890: \"$ac_try\"") >&5
25482+  { (eval echo "$as_me:24912: \"$ac_try\"") >&5
25483   (eval $ac_try) 2>&5
25484   ac_status=$?
25485-  echo "$as_me:24893: \$? = $ac_status" >&5
25486+  echo "$as_me:24915: \$? = $ac_status" >&5
25487   (exit $ac_status); }; }; then
25488   ac_lo=$ac_mid; break
25489 else
25490@@ -24906,7 +24928,7 @@
25491 while test "x$ac_lo" != "x$ac_hi"; do
25492   ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo`
25493   cat >conftest.$ac_ext <<_ACEOF
25494-#line 24909 "configure"
25495+#line 24931 "configure"
25496 #include "confdefs.h"
25497 $ac_includes_default
25498 int
25499@@ -24918,16 +24940,16 @@
25500 }
25501 _ACEOF
25502 rm -f conftest.$ac_objext
25503-if { (eval echo "$as_me:24921: \"$ac_compile\"") >&5
25504+if { (eval echo "$as_me:24943: \"$ac_compile\"") >&5
25505   (eval $ac_compile) 2>&5
25506   ac_status=$?
25507-  echo "$as_me:24924: \$? = $ac_status" >&5
25508+  echo "$as_me:24946: \$? = $ac_status" >&5
25509   (exit $ac_status); } &&
25510          { ac_try='test -s conftest.$ac_objext'
25511-  { (eval echo "$as_me:24927: \"$ac_try\"") >&5
25512+  { (eval echo "$as_me:24949: \"$ac_try\"") >&5
25513   (eval $ac_try) 2>&5
25514   ac_status=$?
25515-  echo "$as_me:24930: \$? = $ac_status" >&5
25516+  echo "$as_me:24952: \$? = $ac_status" >&5
25517   (exit $ac_status); }; }; then
25518   ac_hi=$ac_mid
25519 else
25520@@ -24940,12 +24962,12 @@
25521 ac_cv_sizeof_wchar_t=$ac_lo
25522 else
25523   if test "$cross_compiling" = yes; then
25524-  { { echo "$as_me:24943: error: cannot run test program while cross compiling" >&5
25525+  { { echo "$as_me:24965: error: cannot run test program while cross compiling" >&5
25526 echo "$as_me: error: cannot run test program while cross compiling" >&2;}
25527    { (exit 1); exit 1; }; }
25528 else
25529   cat >conftest.$ac_ext <<_ACEOF
25530-#line 24948 "configure"
25531+#line 24970 "configure"
25532 #include "confdefs.h"
25533 $ac_includes_default
25534 int
25535@@ -24961,15 +24983,15 @@
25536 }
25537 _ACEOF
25538 rm -f conftest$ac_exeext
25539-if { (eval echo "$as_me:24964: \"$ac_link\"") >&5
25540+if { (eval echo "$as_me:24986: \"$ac_link\"") >&5
25541   (eval $ac_link) 2>&5
25542   ac_status=$?
25543-  echo "$as_me:24967: \$? = $ac_status" >&5
25544+  echo "$as_me:24989: \$? = $ac_status" >&5
25545   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
25546-  { (eval echo "$as_me:24969: \"$ac_try\"") >&5
25547+  { (eval echo "$as_me:24991: \"$ac_try\"") >&5
25548   (eval $ac_try) 2>&5
25549   ac_status=$?
25550-  echo "$as_me:24972: \$? = $ac_status" >&5
25551+  echo "$as_me:24994: \$? = $ac_status" >&5
25552   (exit $ac_status); }; }; then
25553   ac_cv_sizeof_wchar_t=`cat conftest.val`
25554 else
25555@@ -24985,7 +25007,7 @@
25556   ac_cv_sizeof_wchar_t=0
25557 fi
25558 fi
25559-echo "$as_me:24988: result: $ac_cv_sizeof_wchar_t" >&5
25560+echo "$as_me:25010: result: $ac_cv_sizeof_wchar_t" >&5
25561 echo "${ECHO_T}$ac_cv_sizeof_wchar_t" >&6
25562 cat >>confdefs.h <<EOF
25563 #define SIZEOF_WCHAR_T $ac_cv_sizeof_wchar_t
25564@@ -25003,7 +25025,7 @@
25565 ### chooses to split module lists into libraries.
25566 ###
25567 ### (see CF_LIB_RULES).
25568-echo "$as_me:25006: checking for library subsets" >&5
25569+echo "$as_me:25028: checking for library subsets" >&5
25570 echo $ECHO_N "checking for library subsets... $ECHO_C" >&6
25571 LIB_SUBSETS=
25572
25573@@ -25045,7 +25067,7 @@
25574 test "x$with_widec"     = xyes && LIB_SUBSETS="${LIB_SUBSETS}+widechar"
25575 test "x$with_ext_funcs" = xyes && LIB_SUBSETS="${LIB_SUBSETS}+ext_funcs"
25576
25577-echo "$as_me:25048: result: $LIB_SUBSETS" >&5
25578+echo "$as_me:25070: result: $LIB_SUBSETS" >&5
25579 echo "${ECHO_T}$LIB_SUBSETS" >&6
25580
25581 ### Construct the list of include-directories to be generated
25582@@ -25076,7 +25098,7 @@
25583 fi
25584
25585 ### Build up pieces for makefile rules
25586-echo "$as_me:25079: checking default library suffix" >&5
25587+echo "$as_me:25101: checking default library suffix" >&5
25588 echo $ECHO_N "checking default library suffix... $ECHO_C" >&6
25589
25590 	case $DFT_LWR_MODEL in
25591@@ -25087,10 +25109,10 @@
25592 	(shared)  DFT_ARG_SUFFIX=''   ;;
25593 	esac
25594 	test -n "$LIB_SUFFIX" && DFT_ARG_SUFFIX="${LIB_SUFFIX}${DFT_ARG_SUFFIX}"
25595-echo "$as_me:25090: result: $DFT_ARG_SUFFIX" >&5
25596+echo "$as_me:25112: result: $DFT_ARG_SUFFIX" >&5
25597 echo "${ECHO_T}$DFT_ARG_SUFFIX" >&6
25598
25599-echo "$as_me:25093: checking default library-dependency suffix" >&5
25600+echo "$as_me:25115: checking default library-dependency suffix" >&5
25601 echo $ECHO_N "checking default library-dependency suffix... $ECHO_C" >&6
25602
25603 	case X$DFT_LWR_MODEL in
25604@@ -25148,10 +25170,10 @@
25605 		DFT_LIB_SUFFIX="${LIB_SUFFIX}${EXTRA_SUFFIX}${DFT_LIB_SUFFIX}"
25606 		DFT_DEP_SUFFIX="${LIB_SUFFIX}${EXTRA_SUFFIX}${DFT_DEP_SUFFIX}"
25607 	fi
25608-echo "$as_me:25151: result: $DFT_DEP_SUFFIX" >&5
25609+echo "$as_me:25173: result: $DFT_DEP_SUFFIX" >&5
25610 echo "${ECHO_T}$DFT_DEP_SUFFIX" >&6
25611
25612-echo "$as_me:25154: checking default object directory" >&5
25613+echo "$as_me:25176: checking default object directory" >&5
25614 echo $ECHO_N "checking default object directory... $ECHO_C" >&6
25615
25616 	case $DFT_LWR_MODEL in
25617@@ -25167,11 +25189,11 @@
25618 			DFT_OBJ_SUBDIR='obj_s' ;;
25619 		esac
25620 	esac
25621-echo "$as_me:25170: result: $DFT_OBJ_SUBDIR" >&5
25622+echo "$as_me:25192: result: $DFT_OBJ_SUBDIR" >&5
25623 echo "${ECHO_T}$DFT_OBJ_SUBDIR" >&6
25624
25625 if test "x$cf_with_cxx" = xyes ; then
25626-echo "$as_me:25174: checking c++ library-dependency suffix" >&5
25627+echo "$as_me:25196: checking c++ library-dependency suffix" >&5
25628 echo $ECHO_N "checking c++ library-dependency suffix... $ECHO_C" >&6
25629 if test "$with_libtool" != "no"; then
25630 	# libtool thinks it can make c++ shared libraries (perhaps only g++)
25631@@ -25239,7 +25261,7 @@
25632 	fi
25633
25634 fi
25635-echo "$as_me:25242: result: $CXX_LIB_SUFFIX" >&5
25636+echo "$as_me:25264: result: $CXX_LIB_SUFFIX" >&5
25637 echo "${ECHO_T}$CXX_LIB_SUFFIX" >&6
25638
25639 fi
25640@@ -25415,19 +25437,19 @@
25641
25642 if test -n "$LDFLAGS_STATIC" && test -n "$LDFLAGS_SHARED"
25643 then
25644-	echo "$as_me:25418: checking if linker supports switching between static/dynamic" >&5
25645+	echo "$as_me:25440: checking if linker supports switching between static/dynamic" >&5
25646 echo $ECHO_N "checking if linker supports switching between static/dynamic... $ECHO_C" >&6
25647
25648 	rm -f libconftest.a
25649 	cat >conftest.$ac_ext <<EOF
25650-#line 25423 "configure"
25651+#line 25445 "configure"
25652 #include <stdio.h>
25653 int cf_ldflags_static(FILE *fp) { return fflush(fp); }
25654 EOF
25655-	if { (eval echo "$as_me:25427: \"$ac_compile\"") >&5
25656+	if { (eval echo "$as_me:25449: \"$ac_compile\"") >&5
25657   (eval $ac_compile) 2>&5
25658   ac_status=$?
25659-  echo "$as_me:25430: \$? = $ac_status" >&5
25660+  echo "$as_me:25452: \$? = $ac_status" >&5
25661   (exit $ac_status); } ; then
25662 		( $AR $ARFLAGS libconftest.a conftest.o ) 2>&5 1>/dev/null
25663 		( eval $RANLIB libconftest.a ) 2>&5 >/dev/null
25664@@ -25438,10 +25460,10 @@
25665
25666 	LIBS="$LDFLAGS_STATIC -L`pwd` -lconftest $LDFLAGS_DYNAMIC $LIBS"
25667 	cat >conftest.$ac_ext <<_ACEOF
25668-#line 25441 "configure"
25669+#line 25463 "configure"
25670 #include "confdefs.h"
25671
25672-#line 25444 "configure"
25673+#line 25466 "configure"
25674 #include <stdio.h>
25675 int cf_ldflags_static(FILE *fp);
25676
25677@@ -25456,16 +25478,16 @@
25678 }
25679 _ACEOF
25680 rm -f conftest.$ac_objext conftest$ac_exeext
25681-if { (eval echo "$as_me:25459: \"$ac_link\"") >&5
25682+if { (eval echo "$as_me:25481: \"$ac_link\"") >&5
25683   (eval $ac_link) 2>&5
25684   ac_status=$?
25685-  echo "$as_me:25462: \$? = $ac_status" >&5
25686+  echo "$as_me:25484: \$? = $ac_status" >&5
25687   (exit $ac_status); } &&
25688          { ac_try='test -s conftest$ac_exeext'
25689-  { (eval echo "$as_me:25465: \"$ac_try\"") >&5
25690+  { (eval echo "$as_me:25487: \"$ac_try\"") >&5
25691   (eval $ac_try) 2>&5
25692   ac_status=$?
25693-  echo "$as_me:25468: \$? = $ac_status" >&5
25694+  echo "$as_me:25490: \$? = $ac_status" >&5
25695   (exit $ac_status); }; }; then
25696
25697 	# some linkers simply ignore the -dynamic
25698@@ -25488,7 +25510,7 @@
25699 	rm -f libconftest.*
25700 	LIBS="$cf_save_LIBS"
25701
25702-	echo "$as_me:25491: result: $cf_ldflags_static" >&5
25703+	echo "$as_me:25513: result: $cf_ldflags_static" >&5
25704 echo "${ECHO_T}$cf_ldflags_static" >&6
25705
25706 	if test $cf_ldflags_static != yes
25707@@ -25504,7 +25526,7 @@
25708 	;;
25709 esac
25710
25711-echo "$as_me:25507: checking where we will install curses.h" >&5
25712+echo "$as_me:25529: checking where we will install curses.h" >&5
25713 echo $ECHO_N "checking where we will install curses.h... $ECHO_C" >&6
25714
25715 includesubdir=
25716@@ -25514,7 +25536,7 @@
25717 then
25718 	includesubdir="/ncurses${USE_LIB_SUFFIX}"
25719 fi
25720-echo "$as_me:25517: result: ${includedir}${includesubdir}" >&5
25721+echo "$as_me:25539: result: ${includedir}${includesubdir}" >&5
25722 echo "${ECHO_T}${includedir}${includesubdir}" >&6
25723
25724 ### Resolve a conflict between normal and wide-curses by forcing applications
25725@@ -25522,7 +25544,7 @@
25726 if test "$with_overwrite" != no ; then
25727 if test "$NCURSES_LIBUTF8" = 1 ; then
25728 	NCURSES_LIBUTF8='defined(HAVE_LIBUTF8_H)'
25729-	{ echo "$as_me:25525: WARNING: Wide-character applications must define HAVE_LIBUTF8_H to include curses.h" >&5
25730+	{ echo "$as_me:25547: WARNING: Wide-character applications must define HAVE_LIBUTF8_H to include curses.h" >&5
25731 echo "$as_me: WARNING: Wide-character applications must define HAVE_LIBUTF8_H to include curses.h" >&2;}
25732 fi
25733 fi
25734@@ -25540,7 +25562,7 @@
25735 ### Construct the list of subdirectories for which we'll customize makefiles
25736 ### with the appropriate compile-rules.
25737
25738-echo "$as_me:25543: checking for src modules" >&5
25739+echo "$as_me:25565: checking for src modules" >&5
25740 echo $ECHO_N "checking for src modules... $ECHO_C" >&6
25741
25742 # dependencies and linker-arguments for test-programs
25743@@ -25605,7 +25627,7 @@
25744 		fi
25745 	fi
25746 done
25747-echo "$as_me:25608: result: $cf_cv_src_modules" >&5
25748+echo "$as_me:25630: result: $cf_cv_src_modules" >&5
25749 echo "${ECHO_T}$cf_cv_src_modules" >&6
25750
25751 TEST_ARGS="-L${LIB_DIR} $TEST_ARGS"
25752@@ -25657,6 +25679,7 @@
25753 fi
25754
25755 if test "x$cf_with_ada" = "xyes" && test "x$cf_cv_prog_gnat_correct" = "xyes"; then
25756+   SUB_MAKEFILES="$SUB_MAKEFILES Ada95/src/library.gpr:Ada95/src/library.gpr.in"
25757    SUB_MAKEFILES="$SUB_MAKEFILES Ada95/gen/adacurses${USE_CFG_SUFFIX}-config:Ada95/gen/adacurses-config.in"
25758    SUB_MAKEFILES="$SUB_MAKEFILES man/adacurses${USE_CFG_SUFFIX}-config.1:man/MKada_config.in"
25759 fi
25760@@ -25871,7 +25894,7 @@
25761 	(*-D_XOPEN_SOURCE_EXTENDED*)
25762 		test -n "$verbose" && echo "	moving _XOPEN_SOURCE_EXTENDED to work around g++ problem" 1>&6
25763
25764-echo "${as_me:-configure}:25874: testing moving _XOPEN_SOURCE_EXTENDED to work around g++ problem ..." 1>&5
25765+echo "${as_me:-configure}:25897: testing moving _XOPEN_SOURCE_EXTENDED to work around g++ problem ..." 1>&5
25766
25767 		CFLAGS="$CFLAGS -D_XOPEN_SOURCE_EXTENDED"
25768 		CPPFLAGS=`echo "x$CPPFLAGS" | sed -e  's/^.//' -e 's/-D_XOPEN_SOURCE_EXTENDED//'`
25769@@ -25882,7 +25905,7 @@
25770
25771 # Help to automatically enable the extended curses features when using either
25772 # the *-config or the ".pc" files by adding defines.
25773-echo "$as_me:25885: checking for defines to add to ncurses${USE_CFG_SUFFIX}-config script" >&5
25774+echo "$as_me:25908: checking for defines to add to ncurses${USE_CFG_SUFFIX}-config script" >&5
25775 echo $ECHO_N "checking for defines to add to ncurses${USE_CFG_SUFFIX}-config script... $ECHO_C" >&6
25776 PKG_CFLAGS=
25777 for cf_loop1 in $CPPFLAGS_after_XOPEN
25778@@ -25898,7 +25921,7 @@
25779 	done
25780 	test "$cf_found" = no && PKG_CFLAGS="$PKG_CFLAGS $cf_loop1"
25781 done
25782-echo "$as_me:25901: result: $PKG_CFLAGS" >&5
25783+echo "$as_me:25924: result: $PKG_CFLAGS" >&5
25784 echo "${ECHO_T}$PKG_CFLAGS" >&6
25785
25786 # AC_CHECK_SIZEOF demands a literal parameter, no variables.  So we do this.
25787@@ -25944,8 +25967,6 @@
25788 	MAKE_DATABASE="$MAKE_TERMINFO"
25789 fi
25790
25791-SUB_SCRIPTS=
25792-
25793 if test -n "$PACKAGE"
25794 then
25795 	PACKAGE="${PACKAGE}${DFT_ARG_SUFFIX}"
25796@@ -25961,7 +25982,7 @@
25797 	cf_filter_syms=$cf_dft_filter_syms
25798 	test -n "$verbose" && echo "	will map symbols to ABI=$cf_cv_abi_version" 1>&6
25799
25800-echo "${as_me:-configure}:25964: testing will map symbols to ABI=$cf_cv_abi_version ..." 1>&5
25801+echo "${as_me:-configure}:25985: testing will map symbols to ABI=$cf_cv_abi_version ..." 1>&5
25802
25803 fi
25804
25805@@ -25990,7 +26011,7 @@
25806 #define HAVE_CURSES_DATA_BOOLNAMES 1
25807 EOF
25808
25809-ac_config_files="$ac_config_files include/MKterm.h.awk include/curses.head:include/curses.h.in include/ncurses_dll.h include/termcap.h include/unctrl.h $SUB_SCRIPTS $SUB_MAKEFILES Makefile"
25810+ac_config_files="$ac_config_files include/MKterm.h.awk include/curses.head:include/curses.h.in include/ncurses_dll.h include/termcap.h include/unctrl.h $SUB_MAKEFILES Makefile"
25811 ac_config_commands="$ac_config_commands default"
25812 cat >confcache <<\_ACEOF
25813 # This file is a shell script that caches the results of configure
25814@@ -26071,7 +26092,7 @@
25815 : ${CONFIG_STATUS=./config.status}
25816 ac_clean_files_save=$ac_clean_files
25817 ac_clean_files="$ac_clean_files $CONFIG_STATUS"
25818-{ echo "$as_me:26074: creating $CONFIG_STATUS" >&5
25819+{ echo "$as_me:26095: creating $CONFIG_STATUS" >&5
25820 echo "$as_me: creating $CONFIG_STATUS" >&6;}
25821 cat >$CONFIG_STATUS <<_ACEOF
25822 #! $SHELL
25823@@ -26203,7 +26224,7 @@
25824 cat >>$CONFIG_STATUS <<EOF
25825 ac_cs_version="\\
25826 config.status
25827-configured by $0, generated by GNU Autoconf 2.52.20190828,
25828+configured by $0, generated by GNU Autoconf 2.52.20190901,
25829   with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
25830
25831 Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001
25832@@ -26247,7 +26268,7 @@
25833     echo "$ac_cs_version"; exit 0 ;;
25834   --he | --h)
25835     # Conflict between --help and --header
25836-    { { echo "$as_me:26250: error: ambiguous option: $1
25837+    { { echo "$as_me:26271: error: ambiguous option: $1
25838 Try \`$0 --help' for more information." >&5
25839 echo "$as_me: error: ambiguous option: $1
25840 Try \`$0 --help' for more information." >&2;}
25841@@ -26266,7 +26287,7 @@
25842     ac_need_defaults=false;;
25843
25844   # This is an error.
25845-  -*) { { echo "$as_me:26269: error: unrecognized option: $1
25846+  -*) { { echo "$as_me:26290: error: unrecognized option: $1
25847 Try \`$0 --help' for more information." >&5
25848 echo "$as_me: error: unrecognized option: $1
25849 Try \`$0 --help' for more information." >&2;}
25850@@ -26285,7 +26306,7 @@
25851 ## Running config.status.  ##
25852 ## ----------------------- ##
25853
25854-This file was extended by $as_me 2.52.20190828, executed with
25855+This file was extended by $as_me 2.52.20190901, executed with
25856   CONFIG_FILES    = $CONFIG_FILES
25857   CONFIG_HEADERS  = $CONFIG_HEADERS
25858   CONFIG_LINKS    = $CONFIG_LINKS
25859@@ -26381,12 +26402,11 @@
25860   "include/ncurses_dll.h" ) CONFIG_FILES="$CONFIG_FILES include/ncurses_dll.h" ;;
25861   "include/termcap.h" ) CONFIG_FILES="$CONFIG_FILES include/termcap.h" ;;
25862   "include/unctrl.h" ) CONFIG_FILES="$CONFIG_FILES include/unctrl.h" ;;
25863-  "$SUB_SCRIPTS" ) CONFIG_FILES="$CONFIG_FILES $SUB_SCRIPTS" ;;
25864   "$SUB_MAKEFILES" ) CONFIG_FILES="$CONFIG_FILES $SUB_MAKEFILES" ;;
25865   "Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;;
25866   "default" ) CONFIG_COMMANDS="$CONFIG_COMMANDS default" ;;
25867   "include/ncurses_cfg.h" ) CONFIG_HEADERS="$CONFIG_HEADERS include/ncurses_cfg.h:include/ncurses_cfg.hin" ;;
25868-  *) { { echo "$as_me:26389: error: invalid argument: $ac_config_target" >&5
25869+  *) { { echo "$as_me:26409: error: invalid argument: $ac_config_target" >&5
25870 echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
25871    { (exit 1); exit 1; }; };;
25872   esac
25873@@ -26694,6 +26714,7 @@
25874 s,@ADA_OBJECTS@,$ADA_OBJECTS,;t t
25875 s,@ADA_SHAREDLIB@,$ADA_SHAREDLIB,;t t
25876 s,@MAKE_ADA_SHAREDLIB@,$MAKE_ADA_SHAREDLIB,;t t
25877+s,@ADA_LIBNAME@,$ADA_LIBNAME,;t t
25878 s,@ACPPFLAGS@,$ACPPFLAGS,;t t
25879 s,@DFT_ARG_SUFFIX@,$DFT_ARG_SUFFIX,;t t
25880 s,@DFT_DEP_SUFFIX@,$DFT_DEP_SUFFIX,;t t
25881@@ -26881,7 +26902,7 @@
25882   esac
25883
25884   if test x"$ac_file" != x-; then
25885-    { echo "$as_me:26884: creating $ac_file" >&5
25886+    { echo "$as_me:26905: creating $ac_file" >&5
25887 echo "$as_me: creating $ac_file" >&6;}
25888     rm -f "$ac_file"
25889   fi
25890@@ -26899,7 +26920,7 @@
25891       -) echo $tmp/stdin ;;
25892       [\\/$]*)
25893          # Absolute (can't be DOS-style, as IFS=:)
25894-         test -f "$f" || { { echo "$as_me:26902: error: cannot find input file: $f" >&5
25895+         test -f "$f" || { { echo "$as_me:26923: error: cannot find input file: $f" >&5
25896 echo "$as_me: error: cannot find input file: $f" >&2;}
25897    { (exit 1); exit 1; }; }
25898          echo $f;;
25899@@ -26912,7 +26933,7 @@
25900            echo $srcdir/$f
25901          else
25902            # /dev/null tree
25903-           { { echo "$as_me:26915: error: cannot find input file: $f" >&5
25904+           { { echo "$as_me:26936: error: cannot find input file: $f" >&5
25905 echo "$as_me: error: cannot find input file: $f" >&2;}
25906    { (exit 1); exit 1; }; }
25907          fi;;
25908@@ -26928,7 +26949,7 @@
25909       if test -n "$ac_seen"; then
25910         ac_used=`grep '@datarootdir@' $ac_item`
25911         if test -z "$ac_used"; then
25912-          { echo "$as_me:26931: WARNING: datarootdir was used implicitly but not set:
25913+          { echo "$as_me:26952: WARNING: datarootdir was used implicitly but not set:
25914 $ac_seen" >&5
25915 echo "$as_me: WARNING: datarootdir was used implicitly but not set:
25916 $ac_seen" >&2;}
25917@@ -26937,7 +26958,7 @@
25918       fi
25919       ac_seen=`grep '${datarootdir}' $ac_item`
25920       if test -n "$ac_seen"; then
25921-        { echo "$as_me:26940: WARNING: datarootdir was used explicitly but not set:
25922+        { echo "$as_me:26961: WARNING: datarootdir was used explicitly but not set:
25923 $ac_seen" >&5
25924 echo "$as_me: WARNING: datarootdir was used explicitly but not set:
25925 $ac_seen" >&2;}
25926@@ -26974,7 +26995,7 @@
25927             ac_init=`egrep '[ 	]*'$ac_name'[ 	]*=' $ac_file`
25928             if test -z "$ac_init"; then
25929               ac_seen=`echo "$ac_seen" |sed -e 's,^,'$ac_file':,'`
25930-              { echo "$as_me:26977: WARNING: Variable $ac_name is used but was not set:
25931+              { echo "$as_me:26998: WARNING: Variable $ac_name is used but was not set:
25932 $ac_seen" >&5
25933 echo "$as_me: WARNING: Variable $ac_name is used but was not set:
25934 $ac_seen" >&2;}
25935@@ -26985,7 +27006,7 @@
25936     egrep -n '@[A-Z_][A-Z_0-9]+@' $ac_file >>$tmp/out
25937     if test -s $tmp/out; then
25938       ac_seen=`sed -e 's,^,'$ac_file':,' < $tmp/out`
25939-      { echo "$as_me:26988: WARNING: Some variables may not be substituted:
25940+      { echo "$as_me:27009: WARNING: Some variables may not be substituted:
25941 $ac_seen" >&5
25942 echo "$as_me: WARNING: Some variables may not be substituted:
25943 $ac_seen" >&2;}
25944@@ -27034,7 +27055,7 @@
25945   * )   ac_file_in=$ac_file.in ;;
25946   esac
25947
25948-  test x"$ac_file" != x- && { echo "$as_me:27037: creating $ac_file" >&5
25949+  test x"$ac_file" != x- && { echo "$as_me:27058: creating $ac_file" >&5
25950 echo "$as_me: creating $ac_file" >&6;}
25951
25952   # First look for the input files in the build tree, otherwise in the
25953@@ -27045,7 +27066,7 @@
25954       -) echo $tmp/stdin ;;
25955       [\\/$]*)
25956          # Absolute (can't be DOS-style, as IFS=:)
25957-         test -f "$f" || { { echo "$as_me:27048: error: cannot find input file: $f" >&5
25958+         test -f "$f" || { { echo "$as_me:27069: error: cannot find input file: $f" >&5
25959 echo "$as_me: error: cannot find input file: $f" >&2;}
25960    { (exit 1); exit 1; }; }
25961          echo $f;;
25962@@ -27058,7 +27079,7 @@
25963            echo $srcdir/$f
25964          else
25965            # /dev/null tree
25966-           { { echo "$as_me:27061: error: cannot find input file: $f" >&5
25967+           { { echo "$as_me:27082: error: cannot find input file: $f" >&5
25968 echo "$as_me: error: cannot find input file: $f" >&2;}
25969    { (exit 1); exit 1; }; }
25970          fi;;
25971@@ -27116,7 +27137,7 @@
25972   rm -f $tmp/in
25973   if test x"$ac_file" != x-; then
25974     if cmp -s $ac_file $tmp/config.h 2>/dev/null; then
25975-      { echo "$as_me:27119: $ac_file is unchanged" >&5
25976+      { echo "$as_me:27140: $ac_file is unchanged" >&5
25977 echo "$as_me: $ac_file is unchanged" >&6;}
25978     else
25979       ac_dir=`$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
25980@@ -27461,7 +27482,7 @@
25981 				(cygdll|msysdll|mingw)
25982 					test "x$with_shared_cxx" = xno && test -n "$verbose" && echo "	overriding CXX_MODEL to SHARED" 1>&6
25983
25984-echo "${as_me:-configure}:27464: testing overriding CXX_MODEL to SHARED ..." 1>&5
25985+echo "${as_me:-configure}:27485: testing overriding CXX_MODEL to SHARED ..." 1>&5
25986
25987 					with_shared_cxx=yes
25988 					;;
25989Index: configure.in
25990Prereq:  1.688
25991--- ncurses-6.1-20190831+/configure.in	2019-06-30 15:21:02.000000000 +0000
25992+++ ncurses-6.1-20190907/configure.in	2019-09-07 20:06:52.000000000 +0000
25993@@ -28,14 +28,14 @@
25994 dnl
25995 dnl Author: Thomas E. Dickey 1995-on
25996 dnl
25997-dnl $Id: configure.in,v 1.688 2019/06/30 15:21:02 tom Exp $
25998+dnl $Id: configure.in,v 1.689 2019/09/07 20:06:52 tom Exp $
25999 dnl Process this file with autoconf to produce a configure script.
26000 dnl
26001 dnl See https://invisible-island.net/autoconf/ for additional information.
26002 dnl
26003 dnl ---------------------------------------------------------------------------
26004 AC_PREREQ(2.52.20170501)
26005-AC_REVISION($Revision: 1.688 $)
26006+AC_REVISION($Revision: 1.689 $)
26007 AC_INIT(ncurses/base/lib_initscr.c)
26008 AC_CONFIG_HEADER(include/ncurses_cfg.h:include/ncurses_cfg.hin)
26009
26010@@ -58,7 +58,7 @@
26011
26012 ###	Checks for programs.
26013 AC_ARG_WITH(ada,
26014-	[  --without-ada           suppress check for Ada95, don't build demo],
26015+	[  --without-ada           suppress check for Ada compiler, don't build demo],
26016 	[cf_with_ada=$withval],
26017 	[cf_with_ada=yes])
26018
26019@@ -154,7 +154,7 @@
26020 	[cf_with_cxx_binding=$cf_with_cxx])
26021 AC_MSG_RESULT($cf_with_cxx_binding)
26022
26023-AC_MSG_CHECKING(if you want to build with Ada95)
26024+AC_MSG_CHECKING(if you want to build with Ada)
26025 AC_MSG_RESULT($cf_with_ada)
26026
26027 AC_MSG_CHECKING(if you want to install terminal database)
26028@@ -1884,7 +1884,7 @@
26029 fi
26030 AC_SUBST(USE_CXX_BOOL)
26031
26032-CF_HELP_MESSAGE(Ada95 Binding Options:)
26033+CF_HELP_MESSAGE(Ada Binding Options:)
26034
26035 dnl If the Ada95 source-tree is present, add that to the build unless it will
26036 dnl not work, or was not requested.
26037@@ -1901,7 +1901,7 @@
26038 	fi
26039
26040 dnl Check for availability of GNU Ada Translator (GNAT).
26041-dnl At the moment we support no other Ada95 compiler.
26042+dnl At the moment we support no other Ada compiler.
26043 	if test "$cf_with_ada" != "no" ; then
26044 		CF_PROG_GNAT
26045 		if test	"x$cf_cv_prog_gnat_correct" = xyes; then
26046@@ -1922,6 +1922,9 @@
26047 			CF_WITH_ADA_INCLUDE
26048 			CF_WITH_ADA_OBJECTS
26049 			CF_WITH_ADA_SHAREDLIB
26050+
26051+			# allow the Ada binding to be renamed
26052+			CF_WITH_ADA_LIBNAME(AdaCurses)
26053 		fi
26054 	fi
26055 else
26056@@ -2201,6 +2204,7 @@
26057 CF_SRC_MODULES($modules_to_build)
26058
26059 if test "x$cf_with_ada" = "xyes" && test "x$cf_cv_prog_gnat_correct" = "xyes"; then
26060+   SUB_MAKEFILES="$SUB_MAKEFILES Ada95/src/library.gpr:Ada95/src/library.gpr.in"
26061    SUB_MAKEFILES="$SUB_MAKEFILES Ada95/gen/adacurses${USE_CFG_SUFFIX}-config:Ada95/gen/adacurses-config.in"
26062    SUB_MAKEFILES="$SUB_MAKEFILES man/adacurses${USE_CFG_SUFFIX}-config.1:man/MKada_config.in"
26063 fi
26064@@ -2345,8 +2349,6 @@
26065 fi
26066 AC_SUBST(MAKE_DATABASE)
26067
26068-SUB_SCRIPTS=
26069-
26070 dnl Override the package used for exported symbols
26071 if test -n "$PACKAGE"
26072 then
26073@@ -2397,7 +2399,6 @@
26074 	include/ncurses_dll.h \
26075 	include/termcap.h \
26076 	include/unctrl.h \
26077-	$SUB_SCRIPTS \
26078 	$SUB_MAKEFILES \
26079 	Makefile,[
26080 if test "x$cf_with_tests" != xno ; then
26081Index: dist.mk
26082Prereq:  1.1303
26083--- ncurses-6.1-20190831+/dist.mk	2019-08-31 13:43:44.000000000 +0000
26084+++ ncurses-6.1-20190907/dist.mk	2019-09-07 15:19:35.000000000 +0000
26085@@ -25,7 +25,7 @@
26086 # use or other dealings in this Software without prior written               #
26087 # authorization.                                                             #
26088 ##############################################################################
26089-# $Id: dist.mk,v 1.1303 2019/08/31 13:43:44 tom Exp $
26090+# $Id: dist.mk,v 1.1304 2019/09/07 15:19:35 tom Exp $
26091 # Makefile for creating ncurses distributions.
26092 #
26093 # This only needs to be used directly as a makefile by developers, but
26094@@ -37,7 +37,7 @@
26095 # These define the major/minor/patch versions of ncurses.
26096 NCURSES_MAJOR = 6
26097 NCURSES_MINOR = 1
26098-NCURSES_PATCH = 20190831
26099+NCURSES_PATCH = 20190907
26100
26101 # We don't append the patch to the version, since this only applies to releases
26102 VERSION = $(NCURSES_MAJOR).$(NCURSES_MINOR)
26103Index: man/MKada_config.in
26104Prereq:  1.10
26105--- ncurses-6.1-20190831+/man/MKada_config.in	2016-11-05 21:08:21.000000000 +0000
26106+++ ncurses-6.1-20190907/man/MKada_config.in	2019-09-07 20:22:51.000000000 +0000
26107@@ -1,5 +1,5 @@
26108 .\"***************************************************************************
26109-.\" Copyright (c) 2010-2014,2016 Free Software Foundation, Inc.              *
26110+.\" Copyright (c) 2010-2016,2019 Free Software Foundation, Inc.              *
26111 .\"                                                                          *
26112 .\" Permission is hereby granted, free of charge, to any person obtaining a  *
26113 .\" copy of this software and associated documentation files (the            *
26114@@ -26,28 +26,28 @@
26115 .\" authorization.                                                           *
26116 .\"***************************************************************************
26117 .\"
26118-.\" $Id: MKada_config.in,v 1.10 2016/11/05 21:08:21 tom Exp $
26119+.\" $Id: MKada_config.in,v 1.11 2019/09/07 20:22:51 tom Exp $
26120 .ds C adacurses@USE_CFG_SUFFIX@\-config
26121 .TH ADACURSES "1" "" "" "User Commands"
26122 .SH NAME
26123-adacurses@USE_CFG_SUFFIX@\-config \- helper script for AdaCurses libraries
26124+adacurses@USE_CFG_SUFFIX@\-config \- helper script for @ADA_LIBNAME@ libraries
26125 .SH SYNOPSIS
26126 .B \*C
26127 [\fIoptions\fR]
26128 .SH DESCRIPTION
26129 This is a shell script which simplifies configuring an application to use
26130-the AdaCurses library binding to ncurses.
26131+the @ADA_LIBNAME@ library binding to ncurses.
26132 .SH OPTIONS
26133 .TP
26134 \fB\-\-cflags\fR
26135-echos the gnat (Ada compiler) flags needed to compile with AdaCurses.
26136+echos the gnat (Ada compiler) flags needed to compile with @ADA_LIBNAME@.
26137 .TP
26138 \fB\-\-libs\fR
26139-echos the gnat libraries needed to link with AdaCurses.
26140+echos the gnat libraries needed to link with @ADA_LIBNAME@.
26141 .TP
26142 \fB\-\-version\fR
26143 echos the release+patchdate version of the ncurses libraries used
26144-to configure and build AdaCurses.
26145+to configure and build @ADA_LIBNAME@.
26146 .TP
26147 \fB\-\-help\fR
26148 prints a list of the \fB\*C\fP script's options.
26149@@ -60,7 +60,7 @@
26150 .SH EXAMPLE
26151 .PP
26152 For example, supposing that you want to compile the "Hello World!"
26153-program for AdaCurses.
26154+program for @ADA_LIBNAME@.
26155 Make a file named "hello.adb":
26156 .RS
26157 .nf
26158Index: package/debian-mingw/changelog
26159--- ncurses-6.1-20190831+/package/debian-mingw/changelog	2019-08-31 13:43:44.000000000 +0000
26160+++ ncurses-6.1-20190907/package/debian-mingw/changelog	2019-09-07 15:19:35.000000000 +0000
26161@@ -1,8 +1,8 @@
26162-ncurses6 (6.1+20190831) unstable; urgency=low
26163+ncurses6 (6.1+20190907) unstable; urgency=low
26164
26165   * latest weekly patch
26166
26167- -- Thomas E. Dickey <dickey@invisible-island.net>  Sat, 31 Aug 2019 09:43:44 -0400
26168+ -- Thomas E. Dickey <dickey@invisible-island.net>  Sat, 07 Sep 2019 11:19:35 -0400
26169
26170 ncurses6 (5.9-20131005) unstable; urgency=low
26171
26172Index: package/debian-mingw64/changelog
26173--- ncurses-6.1-20190831+/package/debian-mingw64/changelog	2019-08-31 13:43:44.000000000 +0000
26174+++ ncurses-6.1-20190907/package/debian-mingw64/changelog	2019-09-07 15:19:35.000000000 +0000
26175@@ -1,8 +1,8 @@
26176-ncurses6 (6.1+20190831) unstable; urgency=low
26177+ncurses6 (6.1+20190907) unstable; urgency=low
26178
26179   * latest weekly patch
26180
26181- -- Thomas E. Dickey <dickey@invisible-island.net>  Sat, 31 Aug 2019 09:43:44 -0400
26182+ -- Thomas E. Dickey <dickey@invisible-island.net>  Sat, 07 Sep 2019 11:19:35 -0400
26183
26184 ncurses6 (5.9-20131005) unstable; urgency=low
26185
26186Index: package/debian/changelog
26187--- ncurses-6.1-20190831+/package/debian/changelog	2019-08-31 13:43:44.000000000 +0000
26188+++ ncurses-6.1-20190907/package/debian/changelog	2019-09-07 15:19:35.000000000 +0000
26189@@ -1,8 +1,8 @@
26190-ncurses6 (6.1+20190831) unstable; urgency=low
26191+ncurses6 (6.1+20190907) unstable; urgency=low
26192
26193   * latest weekly patch
26194
26195- -- Thomas E. Dickey <dickey@invisible-island.net>  Sat, 31 Aug 2019 09:43:44 -0400
26196+ -- Thomas E. Dickey <dickey@invisible-island.net>  Sat, 07 Sep 2019 11:19:35 -0400
26197
26198 ncurses6 (5.9-20120608) unstable; urgency=low
26199
26200Index: package/mingw-ncurses.nsi
26201Prereq:  1.349
26202--- ncurses-6.1-20190831+/package/mingw-ncurses.nsi	2019-08-31 13:43:44.000000000 +0000
26203+++ ncurses-6.1-20190907/package/mingw-ncurses.nsi	2019-09-07 15:19:35.000000000 +0000
26204@@ -1,4 +1,4 @@
26205-; $Id: mingw-ncurses.nsi,v 1.349 2019/08/31 13:43:44 tom Exp $
26206+; $Id: mingw-ncurses.nsi,v 1.350 2019/09/07 15:19:35 tom Exp $
26207
26208 ; TODO add examples
26209 ; TODO bump ABI to 6
26210@@ -10,7 +10,7 @@
26211 !define VERSION_MAJOR "6"
26212 !define VERSION_MINOR "1"
26213 !define VERSION_YYYY  "2019"
26214-!define VERSION_MMDD  "0831"
26215+!define VERSION_MMDD  "0907"
26216 !define VERSION_PATCH ${VERSION_YYYY}${VERSION_MMDD}
26217
26218 !define MY_ABI   "5"
26219Index: package/mingw-ncurses.spec
26220--- ncurses-6.1-20190831+/package/mingw-ncurses.spec	2019-08-31 13:43:44.000000000 +0000
26221+++ ncurses-6.1-20190907/package/mingw-ncurses.spec	2019-09-07 15:19:35.000000000 +0000
26222@@ -3,7 +3,7 @@
26223 Summary: shared libraries for terminal handling
26224 Name: mingw32-ncurses6
26225 Version: 6.1
26226-Release: 20190831
26227+Release: 20190907
26228 License: X11
26229 Group: Development/Libraries
26230 Source: ncurses-%{version}-%{release}.tgz
26231Index: package/ncurses.spec
26232--- ncurses-6.1-20190831+/package/ncurses.spec	2019-08-31 13:43:44.000000000 +0000
26233+++ ncurses-6.1-20190907/package/ncurses.spec	2019-09-07 15:19:35.000000000 +0000
26234@@ -1,7 +1,7 @@
26235 Summary: shared libraries for terminal handling
26236 Name: ncurses6
26237 Version: 6.1
26238-Release: 20190831
26239+Release: 20190907
26240 License: X11
26241 Group: Development/Libraries
26242 Source: ncurses-%{version}-%{release}.tgz
26243Index: package/ncursest.spec
26244--- ncurses-6.1-20190831+/package/ncursest.spec	2019-08-31 13:43:44.000000000 +0000
26245+++ ncurses-6.1-20190907/package/ncursest.spec	2019-09-07 15:19:35.000000000 +0000
26246@@ -1,7 +1,7 @@
26247 Summary: Curses library with POSIX thread support.
26248 Name: ncursest6
26249 Version: 6.1
26250-Release: 20190831
26251+Release: 20190907
26252 License: X11
26253 Group: Development/Libraries
26254 Source: ncurses-%{version}-%{release}.tgz
26255Index: test/aclocal.m4
26256Prereq:  1.163
26257--- ncurses-6.1-20190831+/test/aclocal.m4	2019-01-01 01:46:17.000000000 +0000
26258+++ ncurses-6.1-20190907/test/aclocal.m4	2019-09-07 23:58:37.000000000 +0000
26259@@ -1,5 +1,5 @@
26260 dnl***************************************************************************
26261-dnl Copyright (c) 2003-2017,2018 Free Software Foundation, Inc.              *
26262+dnl Copyright (c) 2003-2018,2019 Free Software Foundation, Inc.              *
26263 dnl                                                                          *
26264 dnl Permission is hereby granted, free of charge, to any person obtaining a  *
26265 dnl copy of this software and associated documentation files (the            *
26266@@ -26,7 +26,7 @@
26267 dnl authorization.                                                           *
26268 dnl***************************************************************************
26269 dnl
26270-dnl $Id: aclocal.m4,v 1.163 2019/01/01 01:46:17 tom Exp $
26271+dnl $Id: aclocal.m4,v 1.165 2019/09/07 23:58:37 tom Exp $
26272 dnl
26273 dnl Author: Thomas E. Dickey
26274 dnl
26275@@ -597,6 +597,60 @@
26276 fi
26277 ])
26278 dnl ---------------------------------------------------------------------------
26279+dnl CF_CONST_X_STRING version: 1 updated: 2019/04/08 17:50:29
26280+dnl -----------------
26281+dnl The X11R4-X11R6 Xt specification uses an ambiguous String type for most
26282+dnl character-strings.
26283+dnl
26284+dnl It is ambiguous because the specification accommodated the pre-ANSI
26285+dnl compilers bundled by more than one vendor in lieu of providing a standard C
26286+dnl compiler other than by costly add-ons.  Because of this, the specification
26287+dnl did not take into account the use of const for telling the compiler that
26288+dnl string literals would be in readonly memory.
26289+dnl
26290+dnl As a workaround, one could (starting with X11R5) define XTSTRINGDEFINES, to
26291+dnl let the compiler decide how to represent Xt's strings which were #define'd.
26292+dnl That does not solve the problem of using the block of Xt's strings which
26293+dnl are compiled into the library (and is less efficient than one might want).
26294+dnl
26295+dnl Xt specification 7 introduces the _CONST_X_STRING symbol which is used both
26296+dnl when compiling the library and compiling using the library, to tell the
26297+dnl compiler that String is const.
26298+AC_DEFUN([CF_CONST_X_STRING],
26299+[
26300+AC_TRY_COMPILE(
26301+[
26302+#include <stdlib.h>
26303+#include <X11/Intrinsic.h>
26304+],
26305+[String foo = malloc(1)],[
26306+
26307+AC_CACHE_CHECK(for X11/Xt const-feature,cf_cv_const_x_string,[
26308+	AC_TRY_COMPILE(
26309+		[
26310+#define _CONST_X_STRING	/* X11R7.8 (perhaps) */
26311+#undef  XTSTRINGDEFINES	/* X11R5 and later */
26312+#include <stdlib.h>
26313+#include <X11/Intrinsic.h>
26314+		],[String foo = malloc(1); *foo = 0],[
26315+			cf_cv_const_x_string=no
26316+		],[
26317+			cf_cv_const_x_string=yes
26318+		])
26319+])
26320+
26321+case $cf_cv_const_x_string in
26322+(no)
26323+	CF_APPEND_TEXT(CPPFLAGS,-DXTSTRINGDEFINES)
26324+	;;
26325+(*)
26326+	CF_APPEND_TEXT(CPPFLAGS,-D_CONST_X_STRING)
26327+	;;
26328+esac
26329+
26330+])
26331+])dnl
26332+dnl ---------------------------------------------------------------------------
26333 dnl CF_CURSES_ACS_MAP version: 7 updated: 2012/10/06 16:39:58
26334 dnl -----------------
26335 dnl Check for likely values of acs_map[]:
26336@@ -1606,9 +1660,10 @@
26337 fi
26338 ])dnl
26339 dnl ---------------------------------------------------------------------------
26340-dnl CF_GCC_VERSION version: 7 updated: 2012/10/18 06:46:33
26341+dnl CF_GCC_VERSION version: 8 updated: 2019/09/07 13:38:36
26342 dnl --------------
26343-dnl Find version of gcc
26344+dnl Find version of gcc, and (because icc/clang pretend to be gcc without being
26345+dnl compatible), attempt to determine if icc/clang is actually used.
26346 AC_DEFUN([CF_GCC_VERSION],[
26347 AC_REQUIRE([AC_PROG_CC])
26348 GCC_VERSION=none
26349@@ -1618,9 +1673,11 @@
26350 	test -z "$GCC_VERSION" && GCC_VERSION=unknown
26351 	AC_MSG_RESULT($GCC_VERSION)
26352 fi
26353+CF_INTEL_COMPILER(GCC,INTEL_COMPILER,CFLAGS)
26354+CF_CLANG_COMPILER(GCC,CLANG_COMPILER,CFLAGS)
26355 ])dnl
26356 dnl ---------------------------------------------------------------------------
26357-dnl CF_GCC_WARNINGS version: 33 updated: 2018/06/20 20:23:13
26358+dnl CF_GCC_WARNINGS version: 36 updated: 2019/09/07 13:38:36
26359 dnl ---------------
26360 dnl Check if the compiler supports useful warning options.  There's a few that
26361 dnl we don't use, simply because they're too noisy:
26362@@ -1642,14 +1699,11 @@
26363 AC_DEFUN([CF_GCC_WARNINGS],
26364 [
26365 AC_REQUIRE([CF_GCC_VERSION])
26366-CF_INTEL_COMPILER(GCC,INTEL_COMPILER,CFLAGS)
26367-CF_CLANG_COMPILER(GCC,CLANG_COMPILER,CFLAGS)
26368-
26369+if test "x$have_x" = xyes; then CF_CONST_X_STRING fi
26370 cat > conftest.$ac_ext <<EOF
26371 #line __oline__ "${as_me:-configure}"
26372 int main(int argc, char *argv[[]]) { return (argv[[argc-1]] == 0) ; }
26373 EOF
26374-
26375 if test "$INTEL_COMPILER" = yes
26376 then
26377 # The "-wdXXX" options suppress warnings:
26378@@ -1684,7 +1738,6 @@
26379 		fi
26380 	done
26381 	CFLAGS="$cf_save_CFLAGS"
26382-
26383 elif test "$GCC" = yes
26384 then
26385 	AC_CHECKING([for $CC warning options])
26386@@ -1713,9 +1766,6 @@
26387 		if AC_TRY_EVAL(ac_compile); then
26388 			test -n "$verbose" && AC_MSG_RESULT(... -$cf_opt)
26389 			case $cf_opt in
26390-			(Wcast-qual)
26391-				CF_APPEND_TEXT(CPPFLAGS,-DXTSTRINGDEFINES)
26392-				;;
26393 			(Winline)
26394 				case $GCC_VERSION in
26395 				([[34]].*)
26396@@ -3186,12 +3236,12 @@
26397 AC_SUBST(EXTRA_LDFLAGS)
26398 ])dnl
26399 dnl ---------------------------------------------------------------------------
26400-dnl CF_SIGWINCH version: 1 updated: 2006/04/02 16:41:09
26401+dnl CF_SIGWINCH version: 2 updated: 2019/03/23 19:54:44
26402 dnl -----------
26403 dnl Use this macro after CF_XOPEN_SOURCE, but do not require it (not all
26404 dnl programs need this test).
26405 dnl
26406-dnl This is really a MacOS X 10.4.3 workaround.  Defining _POSIX_C_SOURCE
26407+dnl This is really a Mac OS X 10.4.3 workaround.  Defining _POSIX_C_SOURCE
26408 dnl forces SIGWINCH to be undefined (breaks xterm, ncurses).  Oddly, the struct
26409 dnl winsize declaration is left alone - we may revisit this if Apple choose to
26410 dnl break that part of the interface as well.
26411@@ -4230,7 +4280,7 @@
26412 		[CF_ADD_LIB(Xext)])])
26413 ])dnl
26414 dnl ---------------------------------------------------------------------------
26415-dnl CF_X_TOOLKIT version: 23 updated: 2015/04/12 15:39:00
26416+dnl CF_X_TOOLKIT version: 24 updated: 2019/03/23 19:54:44
26417 dnl ------------
26418 dnl Check for X Toolkit libraries
26419 AC_DEFUN([CF_X_TOOLKIT],
26420@@ -4238,7 +4288,7 @@
26421 AC_REQUIRE([AC_PATH_XTRA])
26422 AC_REQUIRE([CF_CHECK_CACHE])
26423
26424-# OSX is schizoid about who owns /usr/X11 (old) versus /opt/X11 (new), and (and
26425+# OSX is schizoid about who owns /usr/X11 (old) versus /opt/X11 (new) (and
26426 # in some cases has installed dummy files in the former, other cases replaced
26427 # it with a link to the new location).  This complicates the configure script.
26428 # Check for that pitfall, and recover using pkg-config
26429Index: test/configure
26430--- ncurses-6.1-20190831+/test/configure	2019-08-31 16:35:56.000000000 +0000
26431+++ ncurses-6.1-20190907/test/configure	2019-09-07 23:59:06.000000000 +0000
26432@@ -1,6 +1,6 @@
26433 #! /bin/sh
26434 # Guess values for system-dependent variables and create Makefiles.
26435-# Generated by Autoconf 2.52.20190828.
26436+# Generated by Autoconf 2.52.20190901.
26437 #
26438 # Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001
26439 # Free Software Foundation, Inc.
26440@@ -765,7 +765,7 @@
26441 running configure, to aid debugging if configure makes a mistake.
26442
26443 It was created by $as_me, which was
26444-generated by GNU Autoconf 2.52.20190828.  Invocation command line was
26445+generated by GNU Autoconf 2.52.20190901.  Invocation command line was
26446
26447   $ $0 $@
26448
26449@@ -1856,7 +1856,109 @@
26450 echo "${ECHO_T}$GCC_VERSION" >&6
26451 fi
26452
26453-echo "$as_me:1859: checking for $CC option to accept ANSI C" >&5
26454+INTEL_COMPILER=no
26455+
26456+if test "$GCC" = yes ; then
26457+	case $host_os in
26458+	(linux*|gnu*)
26459+		echo "$as_me:1864: checking if this is really Intel C compiler" >&5
26460+echo $ECHO_N "checking if this is really Intel C compiler... $ECHO_C" >&6
26461+		cf_save_CFLAGS="$CFLAGS"
26462+		CFLAGS="$CFLAGS -no-gcc"
26463+		cat >conftest.$ac_ext <<_ACEOF
26464+#line 1869 "configure"
26465+#include "confdefs.h"
26466+
26467+int
26468+main (void)
26469+{
26470+
26471+#ifdef __INTEL_COMPILER
26472+#else
26473+make an error
26474+#endif
26475+
26476+  ;
26477+  return 0;
26478+}
26479+_ACEOF
26480+rm -f conftest.$ac_objext
26481+if { (eval echo "$as_me:1886: \"$ac_compile\"") >&5
26482+  (eval $ac_compile) 2>&5
26483+  ac_status=$?
26484+  echo "$as_me:1889: \$? = $ac_status" >&5
26485+  (exit $ac_status); } &&
26486+         { ac_try='test -s conftest.$ac_objext'
26487+  { (eval echo "$as_me:1892: \"$ac_try\"") >&5
26488+  (eval $ac_try) 2>&5
26489+  ac_status=$?
26490+  echo "$as_me:1895: \$? = $ac_status" >&5
26491+  (exit $ac_status); }; }; then
26492+  INTEL_COMPILER=yes
26493+cf_save_CFLAGS="$cf_save_CFLAGS -we147"
26494+
26495+else
26496+  echo "$as_me: failed program was:" >&5
26497+cat conftest.$ac_ext >&5
26498+fi
26499+rm -f conftest.$ac_objext conftest.$ac_ext
26500+		CFLAGS="$cf_save_CFLAGS"
26501+		echo "$as_me:1906: result: $INTEL_COMPILER" >&5
26502+echo "${ECHO_T}$INTEL_COMPILER" >&6
26503+		;;
26504+	esac
26505+fi
26506+
26507+CLANG_COMPILER=no
26508+
26509+if test "$GCC" = yes ; then
26510+	echo "$as_me:1915: checking if this is really Clang C compiler" >&5
26511+echo $ECHO_N "checking if this is really Clang C compiler... $ECHO_C" >&6
26512+	cf_save_CFLAGS="$CFLAGS"
26513+	CFLAGS="$CFLAGS -Qunused-arguments"
26514+	cat >conftest.$ac_ext <<_ACEOF
26515+#line 1920 "configure"
26516+#include "confdefs.h"
26517+
26518+int
26519+main (void)
26520+{
26521+
26522+#ifdef __clang__
26523+#else
26524+make an error
26525+#endif
26526+
26527+  ;
26528+  return 0;
26529+}
26530+_ACEOF
26531+rm -f conftest.$ac_objext
26532+if { (eval echo "$as_me:1937: \"$ac_compile\"") >&5
26533+  (eval $ac_compile) 2>&5
26534+  ac_status=$?
26535+  echo "$as_me:1940: \$? = $ac_status" >&5
26536+  (exit $ac_status); } &&
26537+         { ac_try='test -s conftest.$ac_objext'
26538+  { (eval echo "$as_me:1943: \"$ac_try\"") >&5
26539+  (eval $ac_try) 2>&5
26540+  ac_status=$?
26541+  echo "$as_me:1946: \$? = $ac_status" >&5
26542+  (exit $ac_status); }; }; then
26543+  CLANG_COMPILER=yes
26544+cf_save_CFLAGS="$cf_save_CFLAGS -Qunused-arguments"
26545+
26546+else
26547+  echo "$as_me: failed program was:" >&5
26548+cat conftest.$ac_ext >&5
26549+fi
26550+rm -f conftest.$ac_objext conftest.$ac_ext
26551+	CFLAGS="$cf_save_CFLAGS"
26552+	echo "$as_me:1957: result: $CLANG_COMPILER" >&5
26553+echo "${ECHO_T}$CLANG_COMPILER" >&6
26554+fi
26555+
26556+echo "$as_me:1961: checking for $CC option to accept ANSI C" >&5
26557 echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6
26558 if test "${ac_cv_prog_cc_stdc+set}" = set; then
26559   echo $ECHO_N "(cached) $ECHO_C" >&6
26560@@ -1864,7 +1966,7 @@
26561   ac_cv_prog_cc_stdc=no
26562 ac_save_CC=$CC
26563 cat >conftest.$ac_ext <<_ACEOF
26564-#line 1867 "configure"
26565+#line 1969 "configure"
26566 #include "confdefs.h"
26567 #include <stdarg.h>
26568 #include <stdio.h>
26569@@ -1913,16 +2015,16 @@
26570 do
26571   CC="$ac_save_CC $ac_arg"
26572   rm -f conftest.$ac_objext
26573-if { (eval echo "$as_me:1916: \"$ac_compile\"") >&5
26574+if { (eval echo "$as_me:2018: \"$ac_compile\"") >&5
26575   (eval $ac_compile) 2>&5
26576   ac_status=$?
26577-  echo "$as_me:1919: \$? = $ac_status" >&5
26578+  echo "$as_me:2021: \$? = $ac_status" >&5
26579   (exit $ac_status); } &&
26580          { ac_try='test -s conftest.$ac_objext'
26581-  { (eval echo "$as_me:1922: \"$ac_try\"") >&5
26582+  { (eval echo "$as_me:2024: \"$ac_try\"") >&5
26583   (eval $ac_try) 2>&5
26584   ac_status=$?
26585-  echo "$as_me:1925: \$? = $ac_status" >&5
26586+  echo "$as_me:2027: \$? = $ac_status" >&5
26587   (exit $ac_status); }; }; then
26588   ac_cv_prog_cc_stdc=$ac_arg
26589 break
26590@@ -1939,10 +2041,10 @@
26591
26592 case "x$ac_cv_prog_cc_stdc" in
26593   x|xno)
26594-    echo "$as_me:1942: result: none needed" >&5
26595+    echo "$as_me:2044: result: none needed" >&5
26596 echo "${ECHO_T}none needed" >&6 ;;
26597   *)
26598-    echo "$as_me:1945: result: $ac_cv_prog_cc_stdc" >&5
26599+    echo "$as_me:2047: result: $ac_cv_prog_cc_stdc" >&5
26600 echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6
26601     CC="$CC $ac_cv_prog_cc_stdc" ;;
26602 esac
26603@@ -1950,13 +2052,13 @@
26604 # This should have been defined by AC_PROG_CC
26605 : ${CC:=cc}
26606
26607-echo "$as_me:1953: checking \$CFLAGS variable" >&5
26608+echo "$as_me:2055: checking \$CFLAGS variable" >&5
26609 echo $ECHO_N "checking \$CFLAGS variable... $ECHO_C" >&6
26610 case "x$CFLAGS" in
26611 (*-[IUD]*)
26612-	echo "$as_me:1957: result: broken" >&5
26613+	echo "$as_me:2059: result: broken" >&5
26614 echo "${ECHO_T}broken" >&6
26615-	{ echo "$as_me:1959: WARNING: your environment uses the CFLAGS variable to hold CPPFLAGS options" >&5
26616+	{ echo "$as_me:2061: WARNING: your environment uses the CFLAGS variable to hold CPPFLAGS options" >&5
26617 echo "$as_me: WARNING: your environment uses the CFLAGS variable to hold CPPFLAGS options" >&2;}
26618 	cf_flags="$CFLAGS"
26619 	CFLAGS=
26620@@ -2064,18 +2166,18 @@
26621 	done
26622 	;;
26623 (*)
26624-	echo "$as_me:2067: result: ok" >&5
26625+	echo "$as_me:2169: result: ok" >&5
26626 echo "${ECHO_T}ok" >&6
26627 	;;
26628 esac
26629
26630-echo "$as_me:2072: checking \$CC variable" >&5
26631+echo "$as_me:2174: checking \$CC variable" >&5
26632 echo $ECHO_N "checking \$CC variable... $ECHO_C" >&6
26633 case "$CC" in
26634 (*[\ \	]-*)
26635-	echo "$as_me:2076: result: broken" >&5
26636+	echo "$as_me:2178: result: broken" >&5
26637 echo "${ECHO_T}broken" >&6
26638-	{ echo "$as_me:2078: WARNING: your environment uses the CC variable to hold CFLAGS/CPPFLAGS options" >&5
26639+	{ echo "$as_me:2180: WARNING: your environment uses the CC variable to hold CFLAGS/CPPFLAGS options" >&5
26640 echo "$as_me: WARNING: your environment uses the CC variable to hold CFLAGS/CPPFLAGS options" >&2;}
26641 	# humor him...
26642 	cf_prog=`echo "$CC" | sed -e 's/	/ /g' -e 's/[ ]* / /g' -e 's/[ ]*[ ]-[^ ].*//'`
26643@@ -2192,24 +2294,24 @@
26644 	done
26645 	test -n "$verbose" && echo "	resulting CC: '$CC'" 1>&6
26646
26647-echo "${as_me:-configure}:2195: testing resulting CC: '$CC' ..." 1>&5
26648+echo "${as_me:-configure}:2297: testing resulting CC: '$CC' ..." 1>&5
26649
26650 	test -n "$verbose" && echo "	resulting CFLAGS: '$CFLAGS'" 1>&6
26651
26652-echo "${as_me:-configure}:2199: testing resulting CFLAGS: '$CFLAGS' ..." 1>&5
26653+echo "${as_me:-configure}:2301: testing resulting CFLAGS: '$CFLAGS' ..." 1>&5
26654
26655 	test -n "$verbose" && echo "	resulting CPPFLAGS: '$CPPFLAGS'" 1>&6
26656
26657-echo "${as_me:-configure}:2203: testing resulting CPPFLAGS: '$CPPFLAGS' ..." 1>&5
26658+echo "${as_me:-configure}:2305: testing resulting CPPFLAGS: '$CPPFLAGS' ..." 1>&5
26659
26660 	;;
26661 (*)
26662-	echo "$as_me:2207: result: ok" >&5
26663+	echo "$as_me:2309: result: ok" >&5
26664 echo "${ECHO_T}ok" >&6
26665 	;;
26666 esac
26667
26668-echo "$as_me:2212: checking for inline" >&5
26669+echo "$as_me:2314: checking for inline" >&5
26670 echo $ECHO_N "checking for inline... $ECHO_C" >&6
26671 if test "${ac_cv_c_inline+set}" = set; then
26672   echo $ECHO_N "(cached) $ECHO_C" >&6
26673@@ -2217,7 +2319,7 @@
26674   ac_cv_c_inline=no
26675 for ac_kw in inline __inline__ __inline; do
26676   cat >conftest.$ac_ext <<_ACEOF
26677-#line 2220 "configure"
26678+#line 2322 "configure"
26679 #include "confdefs.h"
26680 #ifndef __cplusplus
26681 static $ac_kw int static_foo () {return 0; }
26682@@ -2226,16 +2328,16 @@
26683
26684 _ACEOF
26685 rm -f conftest.$ac_objext
26686-if { (eval echo "$as_me:2229: \"$ac_compile\"") >&5
26687+if { (eval echo "$as_me:2331: \"$ac_compile\"") >&5
26688   (eval $ac_compile) 2>&5
26689   ac_status=$?
26690-  echo "$as_me:2232: \$? = $ac_status" >&5
26691+  echo "$as_me:2334: \$? = $ac_status" >&5
26692   (exit $ac_status); } &&
26693          { ac_try='test -s conftest.$ac_objext'
26694-  { (eval echo "$as_me:2235: \"$ac_try\"") >&5
26695+  { (eval echo "$as_me:2337: \"$ac_try\"") >&5
26696   (eval $ac_try) 2>&5
26697   ac_status=$?
26698-  echo "$as_me:2238: \$? = $ac_status" >&5
26699+  echo "$as_me:2340: \$? = $ac_status" >&5
26700   (exit $ac_status); }; }; then
26701   ac_cv_c_inline=$ac_kw; break
26702 else
26703@@ -2246,7 +2348,7 @@
26704 done
26705
26706 fi
26707-echo "$as_me:2249: result: $ac_cv_c_inline" >&5
26708+echo "$as_me:2351: result: $ac_cv_c_inline" >&5
26709 echo "${ECHO_T}$ac_cv_c_inline" >&6
26710 case $ac_cv_c_inline in
26711   inline | yes) ;;
26712@@ -2267,7 +2369,7 @@
26713 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
26714 ac_compiler_gnu=$ac_cv_c_compiler_gnu
26715 ac_main_return=return
26716-echo "$as_me:2270: checking how to run the C preprocessor" >&5
26717+echo "$as_me:2372: checking how to run the C preprocessor" >&5
26718 echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6
26719 # On Suns, sometimes $CPP names a directory.
26720 if test -n "$CPP" && test -d "$CPP"; then
26721@@ -2288,18 +2390,18 @@
26722   # On the NeXT, cc -E runs the code through the compiler's parser,
26723   # not just through cpp. "Syntax error" is here to catch this case.
26724   cat >conftest.$ac_ext <<_ACEOF
26725-#line 2291 "configure"
26726+#line 2393 "configure"
26727 #include "confdefs.h"
26728 #include <assert.h>
26729                      Syntax error
26730 _ACEOF
26731-if { (eval echo "$as_me:2296: \"$ac_cpp conftest.$ac_ext\"") >&5
26732+if { (eval echo "$as_me:2398: \"$ac_cpp conftest.$ac_ext\"") >&5
26733   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
26734   ac_status=$?
26735   egrep -v '^ *\+' conftest.er1 >conftest.err
26736   rm -f conftest.er1
26737   cat conftest.err >&5
26738-  echo "$as_me:2302: \$? = $ac_status" >&5
26739+  echo "$as_me:2404: \$? = $ac_status" >&5
26740   (exit $ac_status); } >/dev/null; then
26741   if test -s conftest.err; then
26742     ac_cpp_err=$ac_c_preproc_warn_flag
26743@@ -2322,17 +2424,17 @@
26744   # OK, works on sane cases.  Now check whether non-existent headers
26745   # can be detected and how.
26746   cat >conftest.$ac_ext <<_ACEOF
26747-#line 2325 "configure"
26748+#line 2427 "configure"
26749 #include "confdefs.h"
26750 #include <ac_nonexistent.h>
26751 _ACEOF
26752-if { (eval echo "$as_me:2329: \"$ac_cpp conftest.$ac_ext\"") >&5
26753+if { (eval echo "$as_me:2431: \"$ac_cpp conftest.$ac_ext\"") >&5
26754   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
26755   ac_status=$?
26756   egrep -v '^ *\+' conftest.er1 >conftest.err
26757   rm -f conftest.er1
26758   cat conftest.err >&5
26759-  echo "$as_me:2335: \$? = $ac_status" >&5
26760+  echo "$as_me:2437: \$? = $ac_status" >&5
26761   (exit $ac_status); } >/dev/null; then
26762   if test -s conftest.err; then
26763     ac_cpp_err=$ac_c_preproc_warn_flag
26764@@ -2369,7 +2471,7 @@
26765 else
26766   ac_cv_prog_CPP=$CPP
26767 fi
26768-echo "$as_me:2372: result: $CPP" >&5
26769+echo "$as_me:2474: result: $CPP" >&5
26770 echo "${ECHO_T}$CPP" >&6
26771 ac_preproc_ok=false
26772 for ac_c_preproc_warn_flag in '' yes
26773@@ -2379,18 +2481,18 @@
26774   # On the NeXT, cc -E runs the code through the compiler's parser,
26775   # not just through cpp. "Syntax error" is here to catch this case.
26776   cat >conftest.$ac_ext <<_ACEOF
26777-#line 2382 "configure"
26778+#line 2484 "configure"
26779 #include "confdefs.h"
26780 #include <assert.h>
26781                      Syntax error
26782 _ACEOF
26783-if { (eval echo "$as_me:2387: \"$ac_cpp conftest.$ac_ext\"") >&5
26784+if { (eval echo "$as_me:2489: \"$ac_cpp conftest.$ac_ext\"") >&5
26785   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
26786   ac_status=$?
26787   egrep -v '^ *\+' conftest.er1 >conftest.err
26788   rm -f conftest.er1
26789   cat conftest.err >&5
26790-  echo "$as_me:2393: \$? = $ac_status" >&5
26791+  echo "$as_me:2495: \$? = $ac_status" >&5
26792   (exit $ac_status); } >/dev/null; then
26793   if test -s conftest.err; then
26794     ac_cpp_err=$ac_c_preproc_warn_flag
26795@@ -2413,17 +2515,17 @@
26796   # OK, works on sane cases.  Now check whether non-existent headers
26797   # can be detected and how.
26798   cat >conftest.$ac_ext <<_ACEOF
26799-#line 2416 "configure"
26800+#line 2518 "configure"
26801 #include "confdefs.h"
26802 #include <ac_nonexistent.h>
26803 _ACEOF
26804-if { (eval echo "$as_me:2420: \"$ac_cpp conftest.$ac_ext\"") >&5
26805+if { (eval echo "$as_me:2522: \"$ac_cpp conftest.$ac_ext\"") >&5
26806   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
26807   ac_status=$?
26808   egrep -v '^ *\+' conftest.er1 >conftest.err
26809   rm -f conftest.er1
26810   cat conftest.err >&5
26811-  echo "$as_me:2426: \$? = $ac_status" >&5
26812+  echo "$as_me:2528: \$? = $ac_status" >&5
26813   (exit $ac_status); } >/dev/null; then
26814   if test -s conftest.err; then
26815     ac_cpp_err=$ac_c_preproc_warn_flag
26816@@ -2451,7 +2553,7 @@
26817 if $ac_preproc_ok; then
26818   :
26819 else
26820-  { { echo "$as_me:2454: error: C preprocessor \"$CPP\" fails sanity check" >&5
26821+  { { echo "$as_me:2556: error: C preprocessor \"$CPP\" fails sanity check" >&5
26822 echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check" >&2;}
26823    { (exit 1); exit 1; }; }
26824 fi
26825@@ -2467,7 +2569,7 @@
26826 do
26827   # Extract the first word of "$ac_prog", so it can be a program name with args.
26828 set dummy $ac_prog; ac_word=$2
26829-echo "$as_me:2470: checking for $ac_word" >&5
26830+echo "$as_me:2572: checking for $ac_word" >&5
26831 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
26832 if test "${ac_cv_prog_AWK+set}" = set; then
26833   echo $ECHO_N "(cached) $ECHO_C" >&6
26834@@ -2482,7 +2584,7 @@
26835   test -z "$ac_dir" && ac_dir=.
26836   $as_executable_p "$ac_dir/$ac_word" || continue
26837 ac_cv_prog_AWK="$ac_prog"
26838-echo "$as_me:2485: found $ac_dir/$ac_word" >&5
26839+echo "$as_me:2587: found $ac_dir/$ac_word" >&5
26840 break
26841 done
26842
26843@@ -2490,10 +2592,10 @@
26844 fi
26845 AWK=$ac_cv_prog_AWK
26846 if test -n "$AWK"; then
26847-  echo "$as_me:2493: result: $AWK" >&5
26848+  echo "$as_me:2595: result: $AWK" >&5
26849 echo "${ECHO_T}$AWK" >&6
26850 else
26851-  echo "$as_me:2496: result: no" >&5
26852+  echo "$as_me:2598: result: no" >&5
26853 echo "${ECHO_T}no" >&6
26854 fi
26855
26856@@ -2512,7 +2614,7 @@
26857 # AFS /usr/afsws/bin/install, which mishandles nonexistent args
26858 # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
26859 # ./install, which can be erroneously created by make from ./install.sh.
26860-echo "$as_me:2515: checking for a BSD compatible install" >&5
26861+echo "$as_me:2617: checking for a BSD compatible install" >&5
26862 echo $ECHO_N "checking for a BSD compatible install... $ECHO_C" >&6
26863 if test -z "$INSTALL"; then
26864 if test "${ac_cv_path_install+set}" = set; then
26865@@ -2561,7 +2663,7 @@
26866     INSTALL=$ac_install_sh
26867   fi
26868 fi
26869-echo "$as_me:2564: result: $INSTALL" >&5
26870+echo "$as_me:2666: result: $INSTALL" >&5
26871 echo "${ECHO_T}$INSTALL" >&6
26872
26873 # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
26874@@ -2582,7 +2684,7 @@
26875 	;;
26876 esac
26877
26878-echo "$as_me:2585: checking if you want to install stripped executables" >&5
26879+echo "$as_me:2687: checking if you want to install stripped executables" >&5
26880 echo $ECHO_N "checking if you want to install stripped executables... $ECHO_C" >&6
26881
26882 # Check whether --enable-stripping or --disable-stripping was given.
26883@@ -2599,7 +2701,7 @@
26884 	with_stripping=yes
26885
26886 fi;
26887-echo "$as_me:2602: result: $with_stripping" >&5
26888+echo "$as_me:2704: result: $with_stripping" >&5
26889 echo "${ECHO_T}$with_stripping" >&6
26890
26891 if test "$with_stripping" = yes
26892@@ -2610,7 +2712,7 @@
26893 fi
26894
26895 : ${INSTALL:=install}
26896-echo "$as_me:2613: checking if install accepts -p option" >&5
26897+echo "$as_me:2715: checking if install accepts -p option" >&5
26898 echo $ECHO_N "checking if install accepts -p option... $ECHO_C" >&6
26899 if test "${cf_cv_install_p+set}" = set; then
26900   echo $ECHO_N "(cached) $ECHO_C" >&6
26901@@ -2641,10 +2743,10 @@
26902 	rm -rf conftest*
26903
26904 fi
26905-echo "$as_me:2644: result: $cf_cv_install_p" >&5
26906+echo "$as_me:2746: result: $cf_cv_install_p" >&5
26907 echo "${ECHO_T}$cf_cv_install_p" >&6
26908
26909-echo "$as_me:2647: checking if install needs to be told about ownership" >&5
26910+echo "$as_me:2749: checking if install needs to be told about ownership" >&5
26911 echo $ECHO_N "checking if install needs to be told about ownership... $ECHO_C" >&6
26912 case `$ac_config_guess` in
26913 (*minix)
26914@@ -2655,7 +2757,7 @@
26915 	;;
26916 esac
26917
26918-echo "$as_me:2658: result: $with_install_o" >&5
26919+echo "$as_me:2760: result: $with_install_o" >&5
26920 echo "${ECHO_T}$with_install_o" >&6
26921 if test "x$with_install_o" = xyes
26922 then
26923@@ -2668,7 +2770,7 @@
26924 do
26925   # Extract the first word of "$ac_prog", so it can be a program name with args.
26926 set dummy $ac_prog; ac_word=$2
26927-echo "$as_me:2671: checking for $ac_word" >&5
26928+echo "$as_me:2773: checking for $ac_word" >&5
26929 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
26930 if test "${ac_cv_prog_LINT+set}" = set; then
26931   echo $ECHO_N "(cached) $ECHO_C" >&6
26932@@ -2683,7 +2785,7 @@
26933   test -z "$ac_dir" && ac_dir=.
26934   $as_executable_p "$ac_dir/$ac_word" || continue
26935 ac_cv_prog_LINT="$ac_prog"
26936-echo "$as_me:2686: found $ac_dir/$ac_word" >&5
26937+echo "$as_me:2788: found $ac_dir/$ac_word" >&5
26938 break
26939 done
26940
26941@@ -2691,17 +2793,17 @@
26942 fi
26943 LINT=$ac_cv_prog_LINT
26944 if test -n "$LINT"; then
26945-  echo "$as_me:2694: result: $LINT" >&5
26946+  echo "$as_me:2796: result: $LINT" >&5
26947 echo "${ECHO_T}$LINT" >&6
26948 else
26949-  echo "$as_me:2697: result: no" >&5
26950+  echo "$as_me:2799: result: no" >&5
26951 echo "${ECHO_T}no" >&6
26952 fi
26953
26954   test -n "$LINT" && break
26955 done
26956
26957-echo "$as_me:2704: checking if filesystem supports mixed-case filenames" >&5
26958+echo "$as_me:2806: checking if filesystem supports mixed-case filenames" >&5
26959 echo $ECHO_N "checking if filesystem supports mixed-case filenames... $ECHO_C" >&6
26960 if test "${cf_cv_mixedcase+set}" = set; then
26961   echo $ECHO_N "(cached) $ECHO_C" >&6
26962@@ -2728,7 +2830,7 @@
26963 fi
26964
26965 fi
26966-echo "$as_me:2731: result: $cf_cv_mixedcase" >&5
26967+echo "$as_me:2833: result: $cf_cv_mixedcase" >&5
26968 echo "${ECHO_T}$cf_cv_mixedcase" >&6
26969 test "$cf_cv_mixedcase" = yes &&
26970 cat >>confdefs.h <<\EOF
26971@@ -2739,7 +2841,7 @@
26972 do
26973   # Extract the first word of "$ac_prog", so it can be a program name with args.
26974 set dummy $ac_prog; ac_word=$2
26975-echo "$as_me:2742: checking for $ac_word" >&5
26976+echo "$as_me:2844: checking for $ac_word" >&5
26977 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
26978 if test "${ac_cv_prog_CTAGS+set}" = set; then
26979   echo $ECHO_N "(cached) $ECHO_C" >&6
26980@@ -2754,7 +2856,7 @@
26981   test -z "$ac_dir" && ac_dir=.
26982   $as_executable_p "$ac_dir/$ac_word" || continue
26983 ac_cv_prog_CTAGS="$ac_prog"
26984-echo "$as_me:2757: found $ac_dir/$ac_word" >&5
26985+echo "$as_me:2859: found $ac_dir/$ac_word" >&5
26986 break
26987 done
26988
26989@@ -2762,10 +2864,10 @@
26990 fi
26991 CTAGS=$ac_cv_prog_CTAGS
26992 if test -n "$CTAGS"; then
26993-  echo "$as_me:2765: result: $CTAGS" >&5
26994+  echo "$as_me:2867: result: $CTAGS" >&5
26995 echo "${ECHO_T}$CTAGS" >&6
26996 else
26997-  echo "$as_me:2768: result: no" >&5
26998+  echo "$as_me:2870: result: no" >&5
26999 echo "${ECHO_T}no" >&6
27000 fi
27001
27002@@ -2776,7 +2878,7 @@
27003 do
27004   # Extract the first word of "$ac_prog", so it can be a program name with args.
27005 set dummy $ac_prog; ac_word=$2
27006-echo "$as_me:2779: checking for $ac_word" >&5
27007+echo "$as_me:2881: checking for $ac_word" >&5
27008 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
27009 if test "${ac_cv_prog_ETAGS+set}" = set; then
27010   echo $ECHO_N "(cached) $ECHO_C" >&6
27011@@ -2791,7 +2893,7 @@
27012   test -z "$ac_dir" && ac_dir=.
27013   $as_executable_p "$ac_dir/$ac_word" || continue
27014 ac_cv_prog_ETAGS="$ac_prog"
27015-echo "$as_me:2794: found $ac_dir/$ac_word" >&5
27016+echo "$as_me:2896: found $ac_dir/$ac_word" >&5
27017 break
27018 done
27019
27020@@ -2799,10 +2901,10 @@
27021 fi
27022 ETAGS=$ac_cv_prog_ETAGS
27023 if test -n "$ETAGS"; then
27024-  echo "$as_me:2802: result: $ETAGS" >&5
27025+  echo "$as_me:2904: result: $ETAGS" >&5
27026 echo "${ECHO_T}$ETAGS" >&6
27027 else
27028-  echo "$as_me:2805: result: no" >&5
27029+  echo "$as_me:2907: result: no" >&5
27030 echo "${ECHO_T}no" >&6
27031 fi
27032
27033@@ -2811,7 +2913,7 @@
27034
27035 # Extract the first word of "${CTAGS:-ctags}", so it can be a program name with args.
27036 set dummy ${CTAGS:-ctags}; ac_word=$2
27037-echo "$as_me:2814: checking for $ac_word" >&5
27038+echo "$as_me:2916: checking for $ac_word" >&5
27039 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
27040 if test "${ac_cv_prog_MAKE_LOWER_TAGS+set}" = set; then
27041   echo $ECHO_N "(cached) $ECHO_C" >&6
27042@@ -2826,7 +2928,7 @@
27043   test -z "$ac_dir" && ac_dir=.
27044   $as_executable_p "$ac_dir/$ac_word" || continue
27045 ac_cv_prog_MAKE_LOWER_TAGS="yes"
27046-echo "$as_me:2829: found $ac_dir/$ac_word" >&5
27047+echo "$as_me:2931: found $ac_dir/$ac_word" >&5
27048 break
27049 done
27050
27051@@ -2835,17 +2937,17 @@
27052 fi
27053 MAKE_LOWER_TAGS=$ac_cv_prog_MAKE_LOWER_TAGS
27054 if test -n "$MAKE_LOWER_TAGS"; then
27055-  echo "$as_me:2838: result: $MAKE_LOWER_TAGS" >&5
27056+  echo "$as_me:2940: result: $MAKE_LOWER_TAGS" >&5
27057 echo "${ECHO_T}$MAKE_LOWER_TAGS" >&6
27058 else
27059-  echo "$as_me:2841: result: no" >&5
27060+  echo "$as_me:2943: result: no" >&5
27061 echo "${ECHO_T}no" >&6
27062 fi
27063
27064 if test "$cf_cv_mixedcase" = yes ; then
27065 	# Extract the first word of "${ETAGS:-etags}", so it can be a program name with args.
27066 set dummy ${ETAGS:-etags}; ac_word=$2
27067-echo "$as_me:2848: checking for $ac_word" >&5
27068+echo "$as_me:2950: checking for $ac_word" >&5
27069 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
27070 if test "${ac_cv_prog_MAKE_UPPER_TAGS+set}" = set; then
27071   echo $ECHO_N "(cached) $ECHO_C" >&6
27072@@ -2860,7 +2962,7 @@
27073   test -z "$ac_dir" && ac_dir=.
27074   $as_executable_p "$ac_dir/$ac_word" || continue
27075 ac_cv_prog_MAKE_UPPER_TAGS="yes"
27076-echo "$as_me:2863: found $ac_dir/$ac_word" >&5
27077+echo "$as_me:2965: found $ac_dir/$ac_word" >&5
27078 break
27079 done
27080
27081@@ -2869,10 +2971,10 @@
27082 fi
27083 MAKE_UPPER_TAGS=$ac_cv_prog_MAKE_UPPER_TAGS
27084 if test -n "$MAKE_UPPER_TAGS"; then
27085-  echo "$as_me:2872: result: $MAKE_UPPER_TAGS" >&5
27086+  echo "$as_me:2974: result: $MAKE_UPPER_TAGS" >&5
27087 echo "${ECHO_T}$MAKE_UPPER_TAGS" >&6
27088 else
27089-  echo "$as_me:2875: result: no" >&5
27090+  echo "$as_me:2977: result: no" >&5
27091 echo "${ECHO_T}no" >&6
27092 fi
27093
27094@@ -2892,14 +2994,14 @@
27095 	MAKE_LOWER_TAGS="#"
27096 fi
27097
27098-echo "$as_me:2895: checking if -lm needed for math functions" >&5
27099+echo "$as_me:2997: checking if -lm needed for math functions" >&5
27100 echo $ECHO_N "checking if -lm needed for math functions... $ECHO_C" >&6
27101 if test "${cf_cv_need_libm+set}" = set; then
27102   echo $ECHO_N "(cached) $ECHO_C" >&6
27103 else
27104
27105 	cat >conftest.$ac_ext <<_ACEOF
27106-#line 2902 "configure"
27107+#line 3004 "configure"
27108 #include "confdefs.h"
27109
27110 	#include <stdio.h>
27111@@ -2915,16 +3017,16 @@
27112 }
27113 _ACEOF
27114 rm -f conftest.$ac_objext conftest$ac_exeext
27115-if { (eval echo "$as_me:2918: \"$ac_link\"") >&5
27116+if { (eval echo "$as_me:3020: \"$ac_link\"") >&5
27117   (eval $ac_link) 2>&5
27118   ac_status=$?
27119-  echo "$as_me:2921: \$? = $ac_status" >&5
27120+  echo "$as_me:3023: \$? = $ac_status" >&5
27121   (exit $ac_status); } &&
27122          { ac_try='test -s conftest$ac_exeext'
27123-  { (eval echo "$as_me:2924: \"$ac_try\"") >&5
27124+  { (eval echo "$as_me:3026: \"$ac_try\"") >&5
27125   (eval $ac_try) 2>&5
27126   ac_status=$?
27127-  echo "$as_me:2927: \$? = $ac_status" >&5
27128+  echo "$as_me:3029: \$? = $ac_status" >&5
27129   (exit $ac_status); }; }; then
27130   cf_cv_need_libm=no
27131 else
27132@@ -2934,7 +3036,7 @@
27133 fi
27134 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
27135 fi
27136-echo "$as_me:2937: result: $cf_cv_need_libm" >&5
27137+echo "$as_me:3039: result: $cf_cv_need_libm" >&5
27138 echo "${ECHO_T}$cf_cv_need_libm" >&6
27139 if test "$cf_cv_need_libm" = yes
27140 then
27141@@ -2993,10 +3095,10 @@
27142 EOF
27143 if test "$GCC" = yes
27144 then
27145-	{ echo "$as_me:2996: checking for $CC __attribute__ directives..." >&5
27146+	{ echo "$as_me:3098: checking for $CC __attribute__ directives..." >&5
27147 echo "$as_me: checking for $CC __attribute__ directives..." >&6;}
27148 cat > conftest.$ac_ext <<EOF
27149-#line 2999 "${as_me:-configure}"
27150+#line 3101 "${as_me:-configure}"
27151 #include "confdefs.h"
27152 #include "conftest.h"
27153 #include "conftest.i"
27154@@ -3045,12 +3147,12 @@
27155 			;;
27156 		esac
27157
27158-		if { (eval echo "$as_me:3048: \"$ac_compile\"") >&5
27159+		if { (eval echo "$as_me:3150: \"$ac_compile\"") >&5
27160   (eval $ac_compile) 2>&5
27161   ac_status=$?
27162-  echo "$as_me:3051: \$? = $ac_status" >&5
27163+  echo "$as_me:3153: \$? = $ac_status" >&5
27164   (exit $ac_status); }; then
27165-			test -n "$verbose" && echo "$as_me:3053: result: ... $cf_attribute" >&5
27166+			test -n "$verbose" && echo "$as_me:3155: result: ... $cf_attribute" >&5
27167 echo "${ECHO_T}... $cf_attribute" >&6
27168 			cat conftest.h >>confdefs.h
27169 			case $cf_attribute in
27170@@ -3109,7 +3211,7 @@
27171 rm -rf conftest*
27172 fi
27173
27174-echo "$as_me:3112: checking if you want to work around bogus compiler/loader warnings" >&5
27175+echo "$as_me:3214: checking if you want to work around bogus compiler/loader warnings" >&5
27176 echo $ECHO_N "checking if you want to work around bogus compiler/loader warnings... $ECHO_C" >&6
27177
27178 # Check whether --enable-string-hacks or --disable-string-hacks was given.
27179@@ -3119,7 +3221,7 @@
27180 else
27181   with_string_hacks=no
27182 fi;
27183-echo "$as_me:3122: result: $with_string_hacks" >&5
27184+echo "$as_me:3224: result: $with_string_hacks" >&5
27185 echo "${ECHO_T}$with_string_hacks" >&6
27186
27187 if test "x$with_string_hacks" = "xyes"; then
27188@@ -3128,15 +3230,15 @@
27189 #define USE_STRING_HACKS 1
27190 EOF
27191
27192-	{ echo "$as_me:3131: WARNING: enabling string-hacks to work around bogus compiler/loader warnings" >&5
27193+	{ echo "$as_me:3233: WARNING: enabling string-hacks to work around bogus compiler/loader warnings" >&5
27194 echo "$as_me: WARNING: enabling string-hacks to work around bogus compiler/loader warnings" >&2;}
27195-	echo "$as_me:3133: checking for strlcat" >&5
27196+	echo "$as_me:3235: checking for strlcat" >&5
27197 echo $ECHO_N "checking for strlcat... $ECHO_C" >&6
27198 if test "${ac_cv_func_strlcat+set}" = set; then
27199   echo $ECHO_N "(cached) $ECHO_C" >&6
27200 else
27201   cat >conftest.$ac_ext <<_ACEOF
27202-#line 3139 "configure"
27203+#line 3241 "configure"
27204 #include "confdefs.h"
27205 #define strlcat autoconf_temporary
27206 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
27207@@ -3167,16 +3269,16 @@
27208 }
27209 _ACEOF
27210 rm -f conftest.$ac_objext conftest$ac_exeext
27211-if { (eval echo "$as_me:3170: \"$ac_link\"") >&5
27212+if { (eval echo "$as_me:3272: \"$ac_link\"") >&5
27213   (eval $ac_link) 2>&5
27214   ac_status=$?
27215-  echo "$as_me:3173: \$? = $ac_status" >&5
27216+  echo "$as_me:3275: \$? = $ac_status" >&5
27217   (exit $ac_status); } &&
27218          { ac_try='test -s conftest$ac_exeext'
27219-  { (eval echo "$as_me:3176: \"$ac_try\"") >&5
27220+  { (eval echo "$as_me:3278: \"$ac_try\"") >&5
27221   (eval $ac_try) 2>&5
27222   ac_status=$?
27223-  echo "$as_me:3179: \$? = $ac_status" >&5
27224+  echo "$as_me:3281: \$? = $ac_status" >&5
27225   (exit $ac_status); }; }; then
27226   ac_cv_func_strlcat=yes
27227 else
27228@@ -3186,7 +3288,7 @@
27229 fi
27230 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
27231 fi
27232-echo "$as_me:3189: result: $ac_cv_func_strlcat" >&5
27233+echo "$as_me:3291: result: $ac_cv_func_strlcat" >&5
27234 echo "${ECHO_T}$ac_cv_func_strlcat" >&6
27235 if test $ac_cv_func_strlcat = yes; then
27236
27237@@ -3196,7 +3298,7 @@
27238
27239 else
27240
27241-		echo "$as_me:3199: checking for strlcat in -lbsd" >&5
27242+		echo "$as_me:3301: checking for strlcat in -lbsd" >&5
27243 echo $ECHO_N "checking for strlcat in -lbsd... $ECHO_C" >&6
27244 if test "${ac_cv_lib_bsd_strlcat+set}" = set; then
27245   echo $ECHO_N "(cached) $ECHO_C" >&6
27246@@ -3204,7 +3306,7 @@
27247   ac_check_lib_save_LIBS=$LIBS
27248 LIBS="-lbsd  $LIBS"
27249 cat >conftest.$ac_ext <<_ACEOF
27250-#line 3207 "configure"
27251+#line 3309 "configure"
27252 #include "confdefs.h"
27253
27254 /* Override any gcc2 internal prototype to avoid an error.  */
27255@@ -3223,16 +3325,16 @@
27256 }
27257 _ACEOF
27258 rm -f conftest.$ac_objext conftest$ac_exeext
27259-if { (eval echo "$as_me:3226: \"$ac_link\"") >&5
27260+if { (eval echo "$as_me:3328: \"$ac_link\"") >&5
27261   (eval $ac_link) 2>&5
27262   ac_status=$?
27263-  echo "$as_me:3229: \$? = $ac_status" >&5
27264+  echo "$as_me:3331: \$? = $ac_status" >&5
27265   (exit $ac_status); } &&
27266          { ac_try='test -s conftest$ac_exeext'
27267-  { (eval echo "$as_me:3232: \"$ac_try\"") >&5
27268+  { (eval echo "$as_me:3334: \"$ac_try\"") >&5
27269   (eval $ac_try) 2>&5
27270   ac_status=$?
27271-  echo "$as_me:3235: \$? = $ac_status" >&5
27272+  echo "$as_me:3337: \$? = $ac_status" >&5
27273   (exit $ac_status); }; }; then
27274   ac_cv_lib_bsd_strlcat=yes
27275 else
27276@@ -3243,7 +3345,7 @@
27277 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
27278 LIBS=$ac_check_lib_save_LIBS
27279 fi
27280-echo "$as_me:3246: result: $ac_cv_lib_bsd_strlcat" >&5
27281+echo "$as_me:3348: result: $ac_cv_lib_bsd_strlcat" >&5
27282 echo "${ECHO_T}$ac_cv_lib_bsd_strlcat" >&6
27283 if test $ac_cv_lib_bsd_strlcat = yes; then
27284
27285@@ -3266,23 +3368,23 @@
27286 for ac_header in bsd/string.h
27287 do
27288 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
27289-echo "$as_me:3269: checking for $ac_header" >&5
27290+echo "$as_me:3371: checking for $ac_header" >&5
27291 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
27292 if eval "test \"\${$as_ac_Header+set}\" = set"; then
27293   echo $ECHO_N "(cached) $ECHO_C" >&6
27294 else
27295   cat >conftest.$ac_ext <<_ACEOF
27296-#line 3275 "configure"
27297+#line 3377 "configure"
27298 #include "confdefs.h"
27299 #include <$ac_header>
27300 _ACEOF
27301-if { (eval echo "$as_me:3279: \"$ac_cpp conftest.$ac_ext\"") >&5
27302+if { (eval echo "$as_me:3381: \"$ac_cpp conftest.$ac_ext\"") >&5
27303   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
27304   ac_status=$?
27305   egrep -v '^ *\+' conftest.er1 >conftest.err
27306   rm -f conftest.er1
27307   cat conftest.err >&5
27308-  echo "$as_me:3285: \$? = $ac_status" >&5
27309+  echo "$as_me:3387: \$? = $ac_status" >&5
27310   (exit $ac_status); } >/dev/null; then
27311   if test -s conftest.err; then
27312     ac_cpp_err=$ac_c_preproc_warn_flag
27313@@ -3301,7 +3403,7 @@
27314 fi
27315 rm -f conftest.err conftest.$ac_ext
27316 fi
27317-echo "$as_me:3304: result: `eval echo '${'$as_ac_Header'}'`" >&5
27318+echo "$as_me:3406: result: `eval echo '${'$as_ac_Header'}'`" >&5
27319 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
27320 if test `eval echo '${'$as_ac_Header'}'` = yes; then
27321   cat >>confdefs.h <<EOF
27322@@ -3322,13 +3424,13 @@
27323 for ac_func in strlcpy snprintf
27324 do
27325 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
27326-echo "$as_me:3325: checking for $ac_func" >&5
27327+echo "$as_me:3427: checking for $ac_func" >&5
27328 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
27329 if eval "test \"\${$as_ac_var+set}\" = set"; then
27330   echo $ECHO_N "(cached) $ECHO_C" >&6
27331 else
27332   cat >conftest.$ac_ext <<_ACEOF
27333-#line 3331 "configure"
27334+#line 3433 "configure"
27335 #include "confdefs.h"
27336 #define $ac_func autoconf_temporary
27337 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
27338@@ -3359,16 +3461,16 @@
27339 }
27340 _ACEOF
27341 rm -f conftest.$ac_objext conftest$ac_exeext
27342-if { (eval echo "$as_me:3362: \"$ac_link\"") >&5
27343+if { (eval echo "$as_me:3464: \"$ac_link\"") >&5
27344   (eval $ac_link) 2>&5
27345   ac_status=$?
27346-  echo "$as_me:3365: \$? = $ac_status" >&5
27347+  echo "$as_me:3467: \$? = $ac_status" >&5
27348   (exit $ac_status); } &&
27349          { ac_try='test -s conftest$ac_exeext'
27350-  { (eval echo "$as_me:3368: \"$ac_try\"") >&5
27351+  { (eval echo "$as_me:3470: \"$ac_try\"") >&5
27352   (eval $ac_try) 2>&5
27353   ac_status=$?
27354-  echo "$as_me:3371: \$? = $ac_status" >&5
27355+  echo "$as_me:3473: \$? = $ac_status" >&5
27356   (exit $ac_status); }; }; then
27357   eval "$as_ac_var=yes"
27358 else
27359@@ -3378,7 +3480,7 @@
27360 fi
27361 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
27362 fi
27363-echo "$as_me:3381: result: `eval echo '${'$as_ac_var'}'`" >&5
27364+echo "$as_me:3483: result: `eval echo '${'$as_ac_var'}'`" >&5
27365 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
27366 if test `eval echo '${'$as_ac_var'}'` = yes; then
27367   cat >>confdefs.h <<EOF
27368@@ -3390,14 +3492,14 @@
27369
27370 fi
27371
27372-echo "$as_me:3393: checking if the POSIX test-macros are already defined" >&5
27373+echo "$as_me:3495: checking if the POSIX test-macros are already defined" >&5
27374 echo $ECHO_N "checking if the POSIX test-macros are already defined... $ECHO_C" >&6
27375 if test "${cf_cv_posix_visible+set}" = set; then
27376   echo $ECHO_N "(cached) $ECHO_C" >&6
27377 else
27378
27379 cat >conftest.$ac_ext <<_ACEOF
27380-#line 3400 "configure"
27381+#line 3502 "configure"
27382 #include "confdefs.h"
27383 #include <stdio.h>
27384 int
27385@@ -3416,16 +3518,16 @@
27386 }
27387 _ACEOF
27388 rm -f conftest.$ac_objext
27389-if { (eval echo "$as_me:3419: \"$ac_compile\"") >&5
27390+if { (eval echo "$as_me:3521: \"$ac_compile\"") >&5
27391   (eval $ac_compile) 2>&5
27392   ac_status=$?
27393-  echo "$as_me:3422: \$? = $ac_status" >&5
27394+  echo "$as_me:3524: \$? = $ac_status" >&5
27395   (exit $ac_status); } &&
27396          { ac_try='test -s conftest.$ac_objext'
27397-  { (eval echo "$as_me:3425: \"$ac_try\"") >&5
27398+  { (eval echo "$as_me:3527: \"$ac_try\"") >&5
27399   (eval $ac_try) 2>&5
27400   ac_status=$?
27401-  echo "$as_me:3428: \$? = $ac_status" >&5
27402+  echo "$as_me:3530: \$? = $ac_status" >&5
27403   (exit $ac_status); }; }; then
27404   cf_cv_posix_visible=no
27405 else
27406@@ -3436,7 +3538,7 @@
27407 rm -f conftest.$ac_objext conftest.$ac_ext
27408
27409 fi
27410-echo "$as_me:3439: result: $cf_cv_posix_visible" >&5
27411+echo "$as_me:3541: result: $cf_cv_posix_visible" >&5
27412 echo "${ECHO_T}$cf_cv_posix_visible" >&6
27413
27414 if test "$cf_cv_posix_visible" = no; then
27415@@ -3481,14 +3583,14 @@
27416
27417 cf_gnu_xopen_source=$cf_XOPEN_SOURCE
27418
27419-echo "$as_me:3484: checking if this is the GNU C library" >&5
27420+echo "$as_me:3586: checking if this is the GNU C library" >&5
27421 echo $ECHO_N "checking if this is the GNU C library... $ECHO_C" >&6
27422 if test "${cf_cv_gnu_library+set}" = set; then
27423   echo $ECHO_N "(cached) $ECHO_C" >&6
27424 else
27425
27426 cat >conftest.$ac_ext <<_ACEOF
27427-#line 3491 "configure"
27428+#line 3593 "configure"
27429 #include "confdefs.h"
27430 #include <sys/types.h>
27431 int
27432@@ -3507,16 +3609,16 @@
27433 }
27434 _ACEOF
27435 rm -f conftest.$ac_objext
27436-if { (eval echo "$as_me:3510: \"$ac_compile\"") >&5
27437+if { (eval echo "$as_me:3612: \"$ac_compile\"") >&5
27438   (eval $ac_compile) 2>&5
27439   ac_status=$?
27440-  echo "$as_me:3513: \$? = $ac_status" >&5
27441+  echo "$as_me:3615: \$? = $ac_status" >&5
27442   (exit $ac_status); } &&
27443          { ac_try='test -s conftest.$ac_objext'
27444-  { (eval echo "$as_me:3516: \"$ac_try\"") >&5
27445+  { (eval echo "$as_me:3618: \"$ac_try\"") >&5
27446   (eval $ac_try) 2>&5
27447   ac_status=$?
27448-  echo "$as_me:3519: \$? = $ac_status" >&5
27449+  echo "$as_me:3621: \$? = $ac_status" >&5
27450   (exit $ac_status); }; }; then
27451   cf_cv_gnu_library=yes
27452 else
27453@@ -3527,7 +3629,7 @@
27454 rm -f conftest.$ac_objext conftest.$ac_ext
27455
27456 fi
27457-echo "$as_me:3530: result: $cf_cv_gnu_library" >&5
27458+echo "$as_me:3632: result: $cf_cv_gnu_library" >&5
27459 echo "${ECHO_T}$cf_cv_gnu_library" >&6
27460
27461 if test x$cf_cv_gnu_library = xyes; then
27462@@ -3535,7 +3637,7 @@
27463 	# With glibc 2.19 (13 years after this check was begun), _DEFAULT_SOURCE
27464 	# was changed to help a little.  newlib incorporated the change about 4
27465 	# years later.
27466-	echo "$as_me:3538: checking if _DEFAULT_SOURCE can be used as a basis" >&5
27467+	echo "$as_me:3640: checking if _DEFAULT_SOURCE can be used as a basis" >&5
27468 echo $ECHO_N "checking if _DEFAULT_SOURCE can be used as a basis... $ECHO_C" >&6
27469 if test "${cf_cv_gnu_library_219+set}" = set; then
27470   echo $ECHO_N "(cached) $ECHO_C" >&6
27471@@ -3547,7 +3649,7 @@
27472 	CPPFLAGS="${CPPFLAGS}-D_DEFAULT_SOURCE"
27473
27474 		cat >conftest.$ac_ext <<_ACEOF
27475-#line 3550 "configure"
27476+#line 3652 "configure"
27477 #include "confdefs.h"
27478 #include <sys/types.h>
27479 int
27480@@ -3566,16 +3668,16 @@
27481 }
27482 _ACEOF
27483 rm -f conftest.$ac_objext
27484-if { (eval echo "$as_me:3569: \"$ac_compile\"") >&5
27485+if { (eval echo "$as_me:3671: \"$ac_compile\"") >&5
27486   (eval $ac_compile) 2>&5
27487   ac_status=$?
27488-  echo "$as_me:3572: \$? = $ac_status" >&5
27489+  echo "$as_me:3674: \$? = $ac_status" >&5
27490   (exit $ac_status); } &&
27491          { ac_try='test -s conftest.$ac_objext'
27492-  { (eval echo "$as_me:3575: \"$ac_try\"") >&5
27493+  { (eval echo "$as_me:3677: \"$ac_try\"") >&5
27494   (eval $ac_try) 2>&5
27495   ac_status=$?
27496-  echo "$as_me:3578: \$? = $ac_status" >&5
27497+  echo "$as_me:3680: \$? = $ac_status" >&5
27498   (exit $ac_status); }; }; then
27499   cf_cv_gnu_library_219=yes
27500 else
27501@@ -3587,12 +3689,12 @@
27502 		CPPFLAGS="$cf_save"
27503
27504 fi
27505-echo "$as_me:3590: result: $cf_cv_gnu_library_219" >&5
27506+echo "$as_me:3692: result: $cf_cv_gnu_library_219" >&5
27507 echo "${ECHO_T}$cf_cv_gnu_library_219" >&6
27508
27509 	if test "x$cf_cv_gnu_library_219" = xyes; then
27510 		cf_save="$CPPFLAGS"
27511-		echo "$as_me:3595: checking if _XOPEN_SOURCE=$cf_gnu_xopen_source works with _DEFAULT_SOURCE" >&5
27512+		echo "$as_me:3697: checking if _XOPEN_SOURCE=$cf_gnu_xopen_source works with _DEFAULT_SOURCE" >&5
27513 echo $ECHO_N "checking if _XOPEN_SOURCE=$cf_gnu_xopen_source works with _DEFAULT_SOURCE... $ECHO_C" >&6
27514 if test "${cf_cv_gnu_dftsrc_219+set}" = set; then
27515   echo $ECHO_N "(cached) $ECHO_C" >&6
27516@@ -3697,7 +3799,7 @@
27517 fi
27518
27519 			cat >conftest.$ac_ext <<_ACEOF
27520-#line 3700 "configure"
27521+#line 3802 "configure"
27522 #include "confdefs.h"
27523
27524 				#include <limits.h>
27525@@ -3717,16 +3819,16 @@
27526 }
27527 _ACEOF
27528 rm -f conftest.$ac_objext
27529-if { (eval echo "$as_me:3720: \"$ac_compile\"") >&5
27530+if { (eval echo "$as_me:3822: \"$ac_compile\"") >&5
27531   (eval $ac_compile) 2>&5
27532   ac_status=$?
27533-  echo "$as_me:3723: \$? = $ac_status" >&5
27534+  echo "$as_me:3825: \$? = $ac_status" >&5
27535   (exit $ac_status); } &&
27536          { ac_try='test -s conftest.$ac_objext'
27537-  { (eval echo "$as_me:3726: \"$ac_try\"") >&5
27538+  { (eval echo "$as_me:3828: \"$ac_try\"") >&5
27539   (eval $ac_try) 2>&5
27540   ac_status=$?
27541-  echo "$as_me:3729: \$? = $ac_status" >&5
27542+  echo "$as_me:3831: \$? = $ac_status" >&5
27543   (exit $ac_status); }; }; then
27544   cf_cv_gnu_dftsrc_219=yes
27545 else
27546@@ -3737,7 +3839,7 @@
27547 rm -f conftest.$ac_objext conftest.$ac_ext
27548
27549 fi
27550-echo "$as_me:3740: result: $cf_cv_gnu_dftsrc_219" >&5
27551+echo "$as_me:3842: result: $cf_cv_gnu_dftsrc_219" >&5
27552 echo "${ECHO_T}$cf_cv_gnu_dftsrc_219" >&6
27553 		test "x$cf_cv_gnu_dftsrc_219" = "xyes" || CPPFLAGS="$cf_save"
27554 	else
27555@@ -3746,14 +3848,14 @@
27556
27557 	if test "x$cf_cv_gnu_dftsrc_219" != xyes; then
27558
27559-		echo "$as_me:3749: checking if we must define _GNU_SOURCE" >&5
27560+		echo "$as_me:3851: checking if we must define _GNU_SOURCE" >&5
27561 echo $ECHO_N "checking if we must define _GNU_SOURCE... $ECHO_C" >&6
27562 if test "${cf_cv_gnu_source+set}" = set; then
27563   echo $ECHO_N "(cached) $ECHO_C" >&6
27564 else
27565
27566 		cat >conftest.$ac_ext <<_ACEOF
27567-#line 3756 "configure"
27568+#line 3858 "configure"
27569 #include "confdefs.h"
27570 #include <sys/types.h>
27571 int
27572@@ -3768,16 +3870,16 @@
27573 }
27574 _ACEOF
27575 rm -f conftest.$ac_objext
27576-if { (eval echo "$as_me:3771: \"$ac_compile\"") >&5
27577+if { (eval echo "$as_me:3873: \"$ac_compile\"") >&5
27578   (eval $ac_compile) 2>&5
27579   ac_status=$?
27580-  echo "$as_me:3774: \$? = $ac_status" >&5
27581+  echo "$as_me:3876: \$? = $ac_status" >&5
27582   (exit $ac_status); } &&
27583          { ac_try='test -s conftest.$ac_objext'
27584-  { (eval echo "$as_me:3777: \"$ac_try\"") >&5
27585+  { (eval echo "$as_me:3879: \"$ac_try\"") >&5
27586   (eval $ac_try) 2>&5
27587   ac_status=$?
27588-  echo "$as_me:3780: \$? = $ac_status" >&5
27589+  echo "$as_me:3882: \$? = $ac_status" >&5
27590   (exit $ac_status); }; }; then
27591   cf_cv_gnu_source=no
27592 else
27593@@ -3884,7 +3986,7 @@
27594 fi
27595
27596 			 cat >conftest.$ac_ext <<_ACEOF
27597-#line 3887 "configure"
27598+#line 3989 "configure"
27599 #include "confdefs.h"
27600 #include <sys/types.h>
27601 int
27602@@ -3899,16 +4001,16 @@
27603 }
27604 _ACEOF
27605 rm -f conftest.$ac_objext
27606-if { (eval echo "$as_me:3902: \"$ac_compile\"") >&5
27607+if { (eval echo "$as_me:4004: \"$ac_compile\"") >&5
27608   (eval $ac_compile) 2>&5
27609   ac_status=$?
27610-  echo "$as_me:3905: \$? = $ac_status" >&5
27611+  echo "$as_me:4007: \$? = $ac_status" >&5
27612   (exit $ac_status); } &&
27613          { ac_try='test -s conftest.$ac_objext'
27614-  { (eval echo "$as_me:3908: \"$ac_try\"") >&5
27615+  { (eval echo "$as_me:4010: \"$ac_try\"") >&5
27616   (eval $ac_try) 2>&5
27617   ac_status=$?
27618-  echo "$as_me:3911: \$? = $ac_status" >&5
27619+  echo "$as_me:4013: \$? = $ac_status" >&5
27620   (exit $ac_status); }; }; then
27621   cf_cv_gnu_source=no
27622 else
27623@@ -3923,12 +4025,12 @@
27624 rm -f conftest.$ac_objext conftest.$ac_ext
27625
27626 fi
27627-echo "$as_me:3926: result: $cf_cv_gnu_source" >&5
27628+echo "$as_me:4028: result: $cf_cv_gnu_source" >&5
27629 echo "${ECHO_T}$cf_cv_gnu_source" >&6
27630
27631 		if test "$cf_cv_gnu_source" = yes
27632 		then
27633-		echo "$as_me:3931: checking if we should also define _DEFAULT_SOURCE" >&5
27634+		echo "$as_me:4033: checking if we should also define _DEFAULT_SOURCE" >&5
27635 echo $ECHO_N "checking if we should also define _DEFAULT_SOURCE... $ECHO_C" >&6
27636 if test "${cf_cv_default_source+set}" = set; then
27637   echo $ECHO_N "(cached) $ECHO_C" >&6
27638@@ -3938,7 +4040,7 @@
27639 	CPPFLAGS="${CPPFLAGS}-D_GNU_SOURCE"
27640
27641 			cat >conftest.$ac_ext <<_ACEOF
27642-#line 3941 "configure"
27643+#line 4043 "configure"
27644 #include "confdefs.h"
27645 #include <sys/types.h>
27646 int
27647@@ -3953,16 +4055,16 @@
27648 }
27649 _ACEOF
27650 rm -f conftest.$ac_objext
27651-if { (eval echo "$as_me:3956: \"$ac_compile\"") >&5
27652+if { (eval echo "$as_me:4058: \"$ac_compile\"") >&5
27653   (eval $ac_compile) 2>&5
27654   ac_status=$?
27655-  echo "$as_me:3959: \$? = $ac_status" >&5
27656+  echo "$as_me:4061: \$? = $ac_status" >&5
27657   (exit $ac_status); } &&
27658          { ac_try='test -s conftest.$ac_objext'
27659-  { (eval echo "$as_me:3962: \"$ac_try\"") >&5
27660+  { (eval echo "$as_me:4064: \"$ac_try\"") >&5
27661   (eval $ac_try) 2>&5
27662   ac_status=$?
27663-  echo "$as_me:3965: \$? = $ac_status" >&5
27664+  echo "$as_me:4067: \$? = $ac_status" >&5
27665   (exit $ac_status); }; }; then
27666   cf_cv_default_source=no
27667 else
27668@@ -3973,7 +4075,7 @@
27669 rm -f conftest.$ac_objext conftest.$ac_ext
27670
27671 fi
27672-echo "$as_me:3976: result: $cf_cv_default_source" >&5
27673+echo "$as_me:4078: result: $cf_cv_default_source" >&5
27674 echo "${ECHO_T}$cf_cv_default_source" >&6
27675 			if test "$cf_cv_default_source" = yes
27676 			then
27677@@ -4010,16 +4112,16 @@
27678 	sed	-e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^ 	]*\)\?[ 	]/ /g' \
27679 		-e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^ 	]*\)\?$//g'`
27680
27681-echo "$as_me:4013: checking if we should define _POSIX_C_SOURCE" >&5
27682+echo "$as_me:4115: checking if we should define _POSIX_C_SOURCE" >&5
27683 echo $ECHO_N "checking if we should define _POSIX_C_SOURCE... $ECHO_C" >&6
27684 if test "${cf_cv_posix_c_source+set}" = set; then
27685   echo $ECHO_N "(cached) $ECHO_C" >&6
27686 else
27687
27688-echo "${as_me:-configure}:4019: testing if the symbol is already defined go no further ..." 1>&5
27689+echo "${as_me:-configure}:4121: testing if the symbol is already defined go no further ..." 1>&5
27690
27691 	cat >conftest.$ac_ext <<_ACEOF
27692-#line 4022 "configure"
27693+#line 4124 "configure"
27694 #include "confdefs.h"
27695 #include <sys/types.h>
27696 int
27697@@ -4034,16 +4136,16 @@
27698 }
27699 _ACEOF
27700 rm -f conftest.$ac_objext
27701-if { (eval echo "$as_me:4037: \"$ac_compile\"") >&5
27702+if { (eval echo "$as_me:4139: \"$ac_compile\"") >&5
27703   (eval $ac_compile) 2>&5
27704   ac_status=$?
27705-  echo "$as_me:4040: \$? = $ac_status" >&5
27706+  echo "$as_me:4142: \$? = $ac_status" >&5
27707   (exit $ac_status); } &&
27708          { ac_try='test -s conftest.$ac_objext'
27709-  { (eval echo "$as_me:4043: \"$ac_try\"") >&5
27710+  { (eval echo "$as_me:4145: \"$ac_try\"") >&5
27711   (eval $ac_try) 2>&5
27712   ac_status=$?
27713-  echo "$as_me:4046: \$? = $ac_status" >&5
27714+  echo "$as_me:4148: \$? = $ac_status" >&5
27715   (exit $ac_status); }; }; then
27716   cf_cv_posix_c_source=no
27717 else
27718@@ -4064,7 +4166,7 @@
27719 	 esac
27720 	 if test "$cf_want_posix_source" = yes ; then
27721 		cat >conftest.$ac_ext <<_ACEOF
27722-#line 4067 "configure"
27723+#line 4169 "configure"
27724 #include "confdefs.h"
27725 #include <sys/types.h>
27726 int
27727@@ -4079,16 +4181,16 @@
27728 }
27729 _ACEOF
27730 rm -f conftest.$ac_objext
27731-if { (eval echo "$as_me:4082: \"$ac_compile\"") >&5
27732+if { (eval echo "$as_me:4184: \"$ac_compile\"") >&5
27733   (eval $ac_compile) 2>&5
27734   ac_status=$?
27735-  echo "$as_me:4085: \$? = $ac_status" >&5
27736+  echo "$as_me:4187: \$? = $ac_status" >&5
27737   (exit $ac_status); } &&
27738          { ac_try='test -s conftest.$ac_objext'
27739-  { (eval echo "$as_me:4088: \"$ac_try\"") >&5
27740+  { (eval echo "$as_me:4190: \"$ac_try\"") >&5
27741   (eval $ac_try) 2>&5
27742   ac_status=$?
27743-  echo "$as_me:4091: \$? = $ac_status" >&5
27744+  echo "$as_me:4193: \$? = $ac_status" >&5
27745   (exit $ac_status); }; }; then
27746   :
27747 else
27748@@ -4099,7 +4201,7 @@
27749 rm -f conftest.$ac_objext conftest.$ac_ext
27750 	 fi
27751
27752-echo "${as_me:-configure}:4102: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5
27753+echo "${as_me:-configure}:4204: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5
27754
27755 	 CFLAGS="$cf_trim_CFLAGS"
27756 	 CPPFLAGS="$cf_trim_CPPFLAGS"
27757@@ -4107,10 +4209,10 @@
27758 	test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS "
27759 	CPPFLAGS="${CPPFLAGS}$cf_cv_posix_c_source"
27760
27761-echo "${as_me:-configure}:4110: testing if the second compile does not leave our definition intact error ..." 1>&5
27762+echo "${as_me:-configure}:4212: testing if the second compile does not leave our definition intact error ..." 1>&5
27763
27764 	 cat >conftest.$ac_ext <<_ACEOF
27765-#line 4113 "configure"
27766+#line 4215 "configure"
27767 #include "confdefs.h"
27768 #include <sys/types.h>
27769 int
27770@@ -4125,16 +4227,16 @@
27771 }
27772 _ACEOF
27773 rm -f conftest.$ac_objext
27774-if { (eval echo "$as_me:4128: \"$ac_compile\"") >&5
27775+if { (eval echo "$as_me:4230: \"$ac_compile\"") >&5
27776   (eval $ac_compile) 2>&5
27777   ac_status=$?
27778-  echo "$as_me:4131: \$? = $ac_status" >&5
27779+  echo "$as_me:4233: \$? = $ac_status" >&5
27780   (exit $ac_status); } &&
27781          { ac_try='test -s conftest.$ac_objext'
27782-  { (eval echo "$as_me:4134: \"$ac_try\"") >&5
27783+  { (eval echo "$as_me:4236: \"$ac_try\"") >&5
27784   (eval $ac_try) 2>&5
27785   ac_status=$?
27786-  echo "$as_me:4137: \$? = $ac_status" >&5
27787+  echo "$as_me:4239: \$? = $ac_status" >&5
27788   (exit $ac_status); }; }; then
27789   :
27790 else
27791@@ -4150,7 +4252,7 @@
27792 rm -f conftest.$ac_objext conftest.$ac_ext
27793
27794 fi
27795-echo "$as_me:4153: result: $cf_cv_posix_c_source" >&5
27796+echo "$as_me:4255: result: $cf_cv_posix_c_source" >&5
27797 echo "${ECHO_T}$cf_cv_posix_c_source" >&6
27798
27799 if test "$cf_cv_posix_c_source" != no ; then
27800@@ -4290,14 +4392,14 @@
27801 	;;
27802 (*)
27803
27804-echo "$as_me:4293: checking if we should define _XOPEN_SOURCE" >&5
27805+echo "$as_me:4395: checking if we should define _XOPEN_SOURCE" >&5
27806 echo $ECHO_N "checking if we should define _XOPEN_SOURCE... $ECHO_C" >&6
27807 if test "${cf_cv_xopen_source+set}" = set; then
27808   echo $ECHO_N "(cached) $ECHO_C" >&6
27809 else
27810
27811 	cat >conftest.$ac_ext <<_ACEOF
27812-#line 4300 "configure"
27813+#line 4402 "configure"
27814 #include "confdefs.h"
27815
27816 #include <stdlib.h>
27817@@ -4316,16 +4418,16 @@
27818 }
27819 _ACEOF
27820 rm -f conftest.$ac_objext
27821-if { (eval echo "$as_me:4319: \"$ac_compile\"") >&5
27822+if { (eval echo "$as_me:4421: \"$ac_compile\"") >&5
27823   (eval $ac_compile) 2>&5
27824   ac_status=$?
27825-  echo "$as_me:4322: \$? = $ac_status" >&5
27826+  echo "$as_me:4424: \$? = $ac_status" >&5
27827   (exit $ac_status); } &&
27828          { ac_try='test -s conftest.$ac_objext'
27829-  { (eval echo "$as_me:4325: \"$ac_try\"") >&5
27830+  { (eval echo "$as_me:4427: \"$ac_try\"") >&5
27831   (eval $ac_try) 2>&5
27832   ac_status=$?
27833-  echo "$as_me:4328: \$? = $ac_status" >&5
27834+  echo "$as_me:4430: \$? = $ac_status" >&5
27835   (exit $ac_status); }; }; then
27836   cf_cv_xopen_source=no
27837 else
27838@@ -4337,7 +4439,7 @@
27839 	CPPFLAGS="${CPPFLAGS}-D_XOPEN_SOURCE=$cf_XOPEN_SOURCE"
27840
27841 	 cat >conftest.$ac_ext <<_ACEOF
27842-#line 4340 "configure"
27843+#line 4442 "configure"
27844 #include "confdefs.h"
27845
27846 #include <stdlib.h>
27847@@ -4356,16 +4458,16 @@
27848 }
27849 _ACEOF
27850 rm -f conftest.$ac_objext
27851-if { (eval echo "$as_me:4359: \"$ac_compile\"") >&5
27852+if { (eval echo "$as_me:4461: \"$ac_compile\"") >&5
27853   (eval $ac_compile) 2>&5
27854   ac_status=$?
27855-  echo "$as_me:4362: \$? = $ac_status" >&5
27856+  echo "$as_me:4464: \$? = $ac_status" >&5
27857   (exit $ac_status); } &&
27858          { ac_try='test -s conftest.$ac_objext'
27859-  { (eval echo "$as_me:4365: \"$ac_try\"") >&5
27860+  { (eval echo "$as_me:4467: \"$ac_try\"") >&5
27861   (eval $ac_try) 2>&5
27862   ac_status=$?
27863-  echo "$as_me:4368: \$? = $ac_status" >&5
27864+  echo "$as_me:4470: \$? = $ac_status" >&5
27865   (exit $ac_status); }; }; then
27866   cf_cv_xopen_source=no
27867 else
27868@@ -4380,7 +4482,7 @@
27869 rm -f conftest.$ac_objext conftest.$ac_ext
27870
27871 fi
27872-echo "$as_me:4383: result: $cf_cv_xopen_source" >&5
27873+echo "$as_me:4485: result: $cf_cv_xopen_source" >&5
27874 echo "${ECHO_T}$cf_cv_xopen_source" >&6
27875
27876 if test "$cf_cv_xopen_source" != no ; then
27877@@ -4510,16 +4612,16 @@
27878 	sed	-e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^ 	]*\)\?[ 	]/ /g' \
27879 		-e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^ 	]*\)\?$//g'`
27880
27881-echo "$as_me:4513: checking if we should define _POSIX_C_SOURCE" >&5
27882+echo "$as_me:4615: checking if we should define _POSIX_C_SOURCE" >&5
27883 echo $ECHO_N "checking if we should define _POSIX_C_SOURCE... $ECHO_C" >&6
27884 if test "${cf_cv_posix_c_source+set}" = set; then
27885   echo $ECHO_N "(cached) $ECHO_C" >&6
27886 else
27887
27888-echo "${as_me:-configure}:4519: testing if the symbol is already defined go no further ..." 1>&5
27889+echo "${as_me:-configure}:4621: testing if the symbol is already defined go no further ..." 1>&5
27890
27891 	cat >conftest.$ac_ext <<_ACEOF
27892-#line 4522 "configure"
27893+#line 4624 "configure"
27894 #include "confdefs.h"
27895 #include <sys/types.h>
27896 int
27897@@ -4534,16 +4636,16 @@
27898 }
27899 _ACEOF
27900 rm -f conftest.$ac_objext
27901-if { (eval echo "$as_me:4537: \"$ac_compile\"") >&5
27902+if { (eval echo "$as_me:4639: \"$ac_compile\"") >&5
27903   (eval $ac_compile) 2>&5
27904   ac_status=$?
27905-  echo "$as_me:4540: \$? = $ac_status" >&5
27906+  echo "$as_me:4642: \$? = $ac_status" >&5
27907   (exit $ac_status); } &&
27908          { ac_try='test -s conftest.$ac_objext'
27909-  { (eval echo "$as_me:4543: \"$ac_try\"") >&5
27910+  { (eval echo "$as_me:4645: \"$ac_try\"") >&5
27911   (eval $ac_try) 2>&5
27912   ac_status=$?
27913-  echo "$as_me:4546: \$? = $ac_status" >&5
27914+  echo "$as_me:4648: \$? = $ac_status" >&5
27915   (exit $ac_status); }; }; then
27916   cf_cv_posix_c_source=no
27917 else
27918@@ -4564,7 +4666,7 @@
27919 	 esac
27920 	 if test "$cf_want_posix_source" = yes ; then
27921 		cat >conftest.$ac_ext <<_ACEOF
27922-#line 4567 "configure"
27923+#line 4669 "configure"
27924 #include "confdefs.h"
27925 #include <sys/types.h>
27926 int
27927@@ -4579,16 +4681,16 @@
27928 }
27929 _ACEOF
27930 rm -f conftest.$ac_objext
27931-if { (eval echo "$as_me:4582: \"$ac_compile\"") >&5
27932+if { (eval echo "$as_me:4684: \"$ac_compile\"") >&5
27933   (eval $ac_compile) 2>&5
27934   ac_status=$?
27935-  echo "$as_me:4585: \$? = $ac_status" >&5
27936+  echo "$as_me:4687: \$? = $ac_status" >&5
27937   (exit $ac_status); } &&
27938          { ac_try='test -s conftest.$ac_objext'
27939-  { (eval echo "$as_me:4588: \"$ac_try\"") >&5
27940+  { (eval echo "$as_me:4690: \"$ac_try\"") >&5
27941   (eval $ac_try) 2>&5
27942   ac_status=$?
27943-  echo "$as_me:4591: \$? = $ac_status" >&5
27944+  echo "$as_me:4693: \$? = $ac_status" >&5
27945   (exit $ac_status); }; }; then
27946   :
27947 else
27948@@ -4599,7 +4701,7 @@
27949 rm -f conftest.$ac_objext conftest.$ac_ext
27950 	 fi
27951
27952-echo "${as_me:-configure}:4602: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5
27953+echo "${as_me:-configure}:4704: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5
27954
27955 	 CFLAGS="$cf_trim_CFLAGS"
27956 	 CPPFLAGS="$cf_trim_CPPFLAGS"
27957@@ -4607,10 +4709,10 @@
27958 	test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS "
27959 	CPPFLAGS="${CPPFLAGS}$cf_cv_posix_c_source"
27960
27961-echo "${as_me:-configure}:4610: testing if the second compile does not leave our definition intact error ..." 1>&5
27962+echo "${as_me:-configure}:4712: testing if the second compile does not leave our definition intact error ..." 1>&5
27963
27964 	 cat >conftest.$ac_ext <<_ACEOF
27965-#line 4613 "configure"
27966+#line 4715 "configure"
27967 #include "confdefs.h"
27968 #include <sys/types.h>
27969 int
27970@@ -4625,16 +4727,16 @@
27971 }
27972 _ACEOF
27973 rm -f conftest.$ac_objext
27974-if { (eval echo "$as_me:4628: \"$ac_compile\"") >&5
27975+if { (eval echo "$as_me:4730: \"$ac_compile\"") >&5
27976   (eval $ac_compile) 2>&5
27977   ac_status=$?
27978-  echo "$as_me:4631: \$? = $ac_status" >&5
27979+  echo "$as_me:4733: \$? = $ac_status" >&5
27980   (exit $ac_status); } &&
27981          { ac_try='test -s conftest.$ac_objext'
27982-  { (eval echo "$as_me:4634: \"$ac_try\"") >&5
27983+  { (eval echo "$as_me:4736: \"$ac_try\"") >&5
27984   (eval $ac_try) 2>&5
27985   ac_status=$?
27986-  echo "$as_me:4637: \$? = $ac_status" >&5
27987+  echo "$as_me:4739: \$? = $ac_status" >&5
27988   (exit $ac_status); }; }; then
27989   :
27990 else
27991@@ -4650,7 +4752,7 @@
27992 rm -f conftest.$ac_objext conftest.$ac_ext
27993
27994 fi
27995-echo "$as_me:4653: result: $cf_cv_posix_c_source" >&5
27996+echo "$as_me:4755: result: $cf_cv_posix_c_source" >&5
27997 echo "${ECHO_T}$cf_cv_posix_c_source" >&6
27998
27999 if test "$cf_cv_posix_c_source" != no ; then
28000@@ -4844,7 +4946,7 @@
28001 if test -n "$cf_new_cflags" ; then
28002 	test -n "$verbose" && echo "	add to \$CFLAGS $cf_new_cflags" 1>&6
28003
28004-echo "${as_me:-configure}:4847: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5
28005+echo "${as_me:-configure}:4949: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5
28006
28007 	test -n "$CFLAGS" && CFLAGS="$CFLAGS "
28008 	CFLAGS="${CFLAGS}$cf_new_cflags"
28009@@ -4854,7 +4956,7 @@
28010 if test -n "$cf_new_cppflags" ; then
28011 	test -n "$verbose" && echo "	add to \$CPPFLAGS $cf_new_cppflags" 1>&6
28012
28013-echo "${as_me:-configure}:4857: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5
28014+echo "${as_me:-configure}:4959: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5
28015
28016 	test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS "
28017 	CPPFLAGS="${CPPFLAGS}$cf_new_cppflags"
28018@@ -4864,7 +4966,7 @@
28019 if test -n "$cf_new_extra_cppflags" ; then
28020 	test -n "$verbose" && echo "	add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags" 1>&6
28021
28022-echo "${as_me:-configure}:4867: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5
28023+echo "${as_me:-configure}:4969: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5
28024
28025 	test -n "$EXTRA_CPPFLAGS" && EXTRA_CPPFLAGS="$EXTRA_CPPFLAGS "
28026 	EXTRA_CPPFLAGS="${EXTRA_CPPFLAGS}$cf_new_extra_cppflags"
28027@@ -4874,10 +4976,10 @@
28028 fi
28029
28030 if test -n "$cf_XOPEN_SOURCE" && test -z "$cf_cv_xopen_source" ; then
28031-	echo "$as_me:4877: checking if _XOPEN_SOURCE really is set" >&5
28032+	echo "$as_me:4979: checking if _XOPEN_SOURCE really is set" >&5
28033 echo $ECHO_N "checking if _XOPEN_SOURCE really is set... $ECHO_C" >&6
28034 	cat >conftest.$ac_ext <<_ACEOF
28035-#line 4880 "configure"
28036+#line 4982 "configure"
28037 #include "confdefs.h"
28038 #include <stdlib.h>
28039 int
28040@@ -4892,16 +4994,16 @@
28041 }
28042 _ACEOF
28043 rm -f conftest.$ac_objext
28044-if { (eval echo "$as_me:4895: \"$ac_compile\"") >&5
28045+if { (eval echo "$as_me:4997: \"$ac_compile\"") >&5
28046   (eval $ac_compile) 2>&5
28047   ac_status=$?
28048-  echo "$as_me:4898: \$? = $ac_status" >&5
28049+  echo "$as_me:5000: \$? = $ac_status" >&5
28050   (exit $ac_status); } &&
28051          { ac_try='test -s conftest.$ac_objext'
28052-  { (eval echo "$as_me:4901: \"$ac_try\"") >&5
28053+  { (eval echo "$as_me:5003: \"$ac_try\"") >&5
28054   (eval $ac_try) 2>&5
28055   ac_status=$?
28056-  echo "$as_me:4904: \$? = $ac_status" >&5
28057+  echo "$as_me:5006: \$? = $ac_status" >&5
28058   (exit $ac_status); }; }; then
28059   cf_XOPEN_SOURCE_set=yes
28060 else
28061@@ -4910,12 +5012,12 @@
28062 cf_XOPEN_SOURCE_set=no
28063 fi
28064 rm -f conftest.$ac_objext conftest.$ac_ext
28065-	echo "$as_me:4913: result: $cf_XOPEN_SOURCE_set" >&5
28066+	echo "$as_me:5015: result: $cf_XOPEN_SOURCE_set" >&5
28067 echo "${ECHO_T}$cf_XOPEN_SOURCE_set" >&6
28068 	if test $cf_XOPEN_SOURCE_set = yes
28069 	then
28070 		cat >conftest.$ac_ext <<_ACEOF
28071-#line 4918 "configure"
28072+#line 5020 "configure"
28073 #include "confdefs.h"
28074 #include <stdlib.h>
28075 int
28076@@ -4930,16 +5032,16 @@
28077 }
28078 _ACEOF
28079 rm -f conftest.$ac_objext
28080-if { (eval echo "$as_me:4933: \"$ac_compile\"") >&5
28081+if { (eval echo "$as_me:5035: \"$ac_compile\"") >&5
28082   (eval $ac_compile) 2>&5
28083   ac_status=$?
28084-  echo "$as_me:4936: \$? = $ac_status" >&5
28085+  echo "$as_me:5038: \$? = $ac_status" >&5
28086   (exit $ac_status); } &&
28087          { ac_try='test -s conftest.$ac_objext'
28088-  { (eval echo "$as_me:4939: \"$ac_try\"") >&5
28089+  { (eval echo "$as_me:5041: \"$ac_try\"") >&5
28090   (eval $ac_try) 2>&5
28091   ac_status=$?
28092-  echo "$as_me:4942: \$? = $ac_status" >&5
28093+  echo "$as_me:5044: \$? = $ac_status" >&5
28094   (exit $ac_status); }; }; then
28095   cf_XOPEN_SOURCE_set_ok=yes
28096 else
28097@@ -4950,19 +5052,19 @@
28098 rm -f conftest.$ac_objext conftest.$ac_ext
28099 		if test $cf_XOPEN_SOURCE_set_ok = no
28100 		then
28101-			{ echo "$as_me:4953: WARNING: _XOPEN_SOURCE is lower than requested" >&5
28102+			{ echo "$as_me:5055: WARNING: _XOPEN_SOURCE is lower than requested" >&5
28103 echo "$as_me: WARNING: _XOPEN_SOURCE is lower than requested" >&2;}
28104 		fi
28105 	else
28106
28107-echo "$as_me:4958: checking if we should define _XOPEN_SOURCE" >&5
28108+echo "$as_me:5060: checking if we should define _XOPEN_SOURCE" >&5
28109 echo $ECHO_N "checking if we should define _XOPEN_SOURCE... $ECHO_C" >&6
28110 if test "${cf_cv_xopen_source+set}" = set; then
28111   echo $ECHO_N "(cached) $ECHO_C" >&6
28112 else
28113
28114 	cat >conftest.$ac_ext <<_ACEOF
28115-#line 4965 "configure"
28116+#line 5067 "configure"
28117 #include "confdefs.h"
28118
28119 #include <stdlib.h>
28120@@ -4981,16 +5083,16 @@
28121 }
28122 _ACEOF
28123 rm -f conftest.$ac_objext
28124-if { (eval echo "$as_me:4984: \"$ac_compile\"") >&5
28125+if { (eval echo "$as_me:5086: \"$ac_compile\"") >&5
28126   (eval $ac_compile) 2>&5
28127   ac_status=$?
28128-  echo "$as_me:4987: \$? = $ac_status" >&5
28129+  echo "$as_me:5089: \$? = $ac_status" >&5
28130   (exit $ac_status); } &&
28131          { ac_try='test -s conftest.$ac_objext'
28132-  { (eval echo "$as_me:4990: \"$ac_try\"") >&5
28133+  { (eval echo "$as_me:5092: \"$ac_try\"") >&5
28134   (eval $ac_try) 2>&5
28135   ac_status=$?
28136-  echo "$as_me:4993: \$? = $ac_status" >&5
28137+  echo "$as_me:5095: \$? = $ac_status" >&5
28138   (exit $ac_status); }; }; then
28139   cf_cv_xopen_source=no
28140 else
28141@@ -5002,7 +5104,7 @@
28142 	CPPFLAGS="${CPPFLAGS}-D_XOPEN_SOURCE=$cf_XOPEN_SOURCE"
28143
28144 	 cat >conftest.$ac_ext <<_ACEOF
28145-#line 5005 "configure"
28146+#line 5107 "configure"
28147 #include "confdefs.h"
28148
28149 #include <stdlib.h>
28150@@ -5021,16 +5123,16 @@
28151 }
28152 _ACEOF
28153 rm -f conftest.$ac_objext
28154-if { (eval echo "$as_me:5024: \"$ac_compile\"") >&5
28155+if { (eval echo "$as_me:5126: \"$ac_compile\"") >&5
28156   (eval $ac_compile) 2>&5
28157   ac_status=$?
28158-  echo "$as_me:5027: \$? = $ac_status" >&5
28159+  echo "$as_me:5129: \$? = $ac_status" >&5
28160   (exit $ac_status); } &&
28161          { ac_try='test -s conftest.$ac_objext'
28162-  { (eval echo "$as_me:5030: \"$ac_try\"") >&5
28163+  { (eval echo "$as_me:5132: \"$ac_try\"") >&5
28164   (eval $ac_try) 2>&5
28165   ac_status=$?
28166-  echo "$as_me:5033: \$? = $ac_status" >&5
28167+  echo "$as_me:5135: \$? = $ac_status" >&5
28168   (exit $ac_status); }; }; then
28169   cf_cv_xopen_source=no
28170 else
28171@@ -5045,7 +5147,7 @@
28172 rm -f conftest.$ac_objext conftest.$ac_ext
28173
28174 fi
28175-echo "$as_me:5048: result: $cf_cv_xopen_source" >&5
28176+echo "$as_me:5150: result: $cf_cv_xopen_source" >&5
28177 echo "${ECHO_T}$cf_cv_xopen_source" >&6
28178
28179 if test "$cf_cv_xopen_source" != no ; then
28180@@ -5164,7 +5266,7 @@
28181 fi
28182 fi # cf_cv_posix_visible
28183
28184-echo "$as_me:5167: checking for signal global datatype" >&5
28185+echo "$as_me:5269: checking for signal global datatype" >&5
28186 echo $ECHO_N "checking for signal global datatype... $ECHO_C" >&6
28187 if test "${cf_cv_sig_atomic_t+set}" = set; then
28188   echo $ECHO_N "(cached) $ECHO_C" >&6
28189@@ -5176,7 +5278,7 @@
28190 		"int"
28191 	do
28192 	cat >conftest.$ac_ext <<_ACEOF
28193-#line 5179 "configure"
28194+#line 5281 "configure"
28195 #include "confdefs.h"
28196
28197 #include <sys/types.h>
28198@@ -5199,16 +5301,16 @@
28199 }
28200 _ACEOF
28201 rm -f conftest.$ac_objext
28202-if { (eval echo "$as_me:5202: \"$ac_compile\"") >&5
28203+if { (eval echo "$as_me:5304: \"$ac_compile\"") >&5
28204   (eval $ac_compile) 2>&5
28205   ac_status=$?
28206-  echo "$as_me:5205: \$? = $ac_status" >&5
28207+  echo "$as_me:5307: \$? = $ac_status" >&5
28208   (exit $ac_status); } &&
28209          { ac_try='test -s conftest.$ac_objext'
28210-  { (eval echo "$as_me:5208: \"$ac_try\"") >&5
28211+  { (eval echo "$as_me:5310: \"$ac_try\"") >&5
28212   (eval $ac_try) 2>&5
28213   ac_status=$?
28214-  echo "$as_me:5211: \$? = $ac_status" >&5
28215+  echo "$as_me:5313: \$? = $ac_status" >&5
28216   (exit $ac_status); }; }; then
28217   cf_cv_sig_atomic_t=$cf_type
28218 else
28219@@ -5222,7 +5324,7 @@
28220
28221 fi
28222
28223-echo "$as_me:5225: result: $cf_cv_sig_atomic_t" >&5
28224+echo "$as_me:5327: result: $cf_cv_sig_atomic_t" >&5
28225 echo "${ECHO_T}$cf_cv_sig_atomic_t" >&6
28226 test "$cf_cv_sig_atomic_t" != no &&
28227 cat >>confdefs.h <<EOF
28228@@ -5231,14 +5333,14 @@
28229
28230 # Work around breakage on OS X
28231
28232-echo "$as_me:5234: checking if SIGWINCH is defined" >&5
28233+echo "$as_me:5336: checking if SIGWINCH is defined" >&5
28234 echo $ECHO_N "checking if SIGWINCH is defined... $ECHO_C" >&6
28235 if test "${cf_cv_define_sigwinch+set}" = set; then
28236   echo $ECHO_N "(cached) $ECHO_C" >&6
28237 else
28238
28239 	cat >conftest.$ac_ext <<_ACEOF
28240-#line 5241 "configure"
28241+#line 5343 "configure"
28242 #include "confdefs.h"
28243
28244 #include <sys/types.h>
28245@@ -5253,23 +5355,23 @@
28246 }
28247 _ACEOF
28248 rm -f conftest.$ac_objext
28249-if { (eval echo "$as_me:5256: \"$ac_compile\"") >&5
28250+if { (eval echo "$as_me:5358: \"$ac_compile\"") >&5
28251   (eval $ac_compile) 2>&5
28252   ac_status=$?
28253-  echo "$as_me:5259: \$? = $ac_status" >&5
28254+  echo "$as_me:5361: \$? = $ac_status" >&5
28255   (exit $ac_status); } &&
28256          { ac_try='test -s conftest.$ac_objext'
28257-  { (eval echo "$as_me:5262: \"$ac_try\"") >&5
28258+  { (eval echo "$as_me:5364: \"$ac_try\"") >&5
28259   (eval $ac_try) 2>&5
28260   ac_status=$?
28261-  echo "$as_me:5265: \$? = $ac_status" >&5
28262+  echo "$as_me:5367: \$? = $ac_status" >&5
28263   (exit $ac_status); }; }; then
28264   cf_cv_define_sigwinch=yes
28265 else
28266   echo "$as_me: failed program was:" >&5
28267 cat conftest.$ac_ext >&5
28268 cat >conftest.$ac_ext <<_ACEOF
28269-#line 5272 "configure"
28270+#line 5374 "configure"
28271 #include "confdefs.h"
28272
28273 #undef _XOPEN_SOURCE
28274@@ -5287,16 +5389,16 @@
28275 }
28276 _ACEOF
28277 rm -f conftest.$ac_objext
28278-if { (eval echo "$as_me:5290: \"$ac_compile\"") >&5
28279+if { (eval echo "$as_me:5392: \"$ac_compile\"") >&5
28280   (eval $ac_compile) 2>&5
28281   ac_status=$?
28282-  echo "$as_me:5293: \$? = $ac_status" >&5
28283+  echo "$as_me:5395: \$? = $ac_status" >&5
28284   (exit $ac_status); } &&
28285          { ac_try='test -s conftest.$ac_objext'
28286-  { (eval echo "$as_me:5296: \"$ac_try\"") >&5
28287+  { (eval echo "$as_me:5398: \"$ac_try\"") >&5
28288   (eval $ac_try) 2>&5
28289   ac_status=$?
28290-  echo "$as_me:5299: \$? = $ac_status" >&5
28291+  echo "$as_me:5401: \$? = $ac_status" >&5
28292   (exit $ac_status); }; }; then
28293   cf_cv_define_sigwinch=maybe
28294 else
28295@@ -5310,11 +5412,11 @@
28296 rm -f conftest.$ac_objext conftest.$ac_ext
28297
28298 fi
28299-echo "$as_me:5313: result: $cf_cv_define_sigwinch" >&5
28300+echo "$as_me:5415: result: $cf_cv_define_sigwinch" >&5
28301 echo "${ECHO_T}$cf_cv_define_sigwinch" >&6
28302
28303 if test "$cf_cv_define_sigwinch" = maybe ; then
28304-echo "$as_me:5317: checking for actual SIGWINCH definition" >&5
28305+echo "$as_me:5419: checking for actual SIGWINCH definition" >&5
28306 echo $ECHO_N "checking for actual SIGWINCH definition... $ECHO_C" >&6
28307 if test "${cf_cv_fixup_sigwinch+set}" = set; then
28308   echo $ECHO_N "(cached) $ECHO_C" >&6
28309@@ -5325,7 +5427,7 @@
28310 while test $cf_sigwinch != 1
28311 do
28312 	cat >conftest.$ac_ext <<_ACEOF
28313-#line 5328 "configure"
28314+#line 5430 "configure"
28315 #include "confdefs.h"
28316
28317 #undef _XOPEN_SOURCE
28318@@ -5347,16 +5449,16 @@
28319 }
28320 _ACEOF
28321 rm -f conftest.$ac_objext
28322-if { (eval echo "$as_me:5350: \"$ac_compile\"") >&5
28323+if { (eval echo "$as_me:5452: \"$ac_compile\"") >&5
28324   (eval $ac_compile) 2>&5
28325   ac_status=$?
28326-  echo "$as_me:5353: \$? = $ac_status" >&5
28327+  echo "$as_me:5455: \$? = $ac_status" >&5
28328   (exit $ac_status); } &&
28329          { ac_try='test -s conftest.$ac_objext'
28330-  { (eval echo "$as_me:5356: \"$ac_try\"") >&5
28331+  { (eval echo "$as_me:5458: \"$ac_try\"") >&5
28332   (eval $ac_try) 2>&5
28333   ac_status=$?
28334-  echo "$as_me:5359: \$? = $ac_status" >&5
28335+  echo "$as_me:5461: \$? = $ac_status" >&5
28336   (exit $ac_status); }; }; then
28337   cf_cv_fixup_sigwinch=$cf_sigwinch
28338 	 break
28339@@ -5370,7 +5472,7 @@
28340 done
28341
28342 fi
28343-echo "$as_me:5373: result: $cf_cv_fixup_sigwinch" >&5
28344+echo "$as_me:5475: result: $cf_cv_fixup_sigwinch" >&5
28345 echo "${ECHO_T}$cf_cv_fixup_sigwinch" >&6
28346
28347 	if test "$cf_cv_fixup_sigwinch" != unknown ; then
28348@@ -5380,13 +5482,13 @@
28349
28350 # Checks for CODESET support.
28351
28352-echo "$as_me:5383: checking for nl_langinfo and CODESET" >&5
28353+echo "$as_me:5485: checking for nl_langinfo and CODESET" >&5
28354 echo $ECHO_N "checking for nl_langinfo and CODESET... $ECHO_C" >&6
28355 if test "${am_cv_langinfo_codeset+set}" = set; then
28356   echo $ECHO_N "(cached) $ECHO_C" >&6
28357 else
28358   cat >conftest.$ac_ext <<_ACEOF
28359-#line 5389 "configure"
28360+#line 5491 "configure"
28361 #include "confdefs.h"
28362 #include <langinfo.h>
28363 int
28364@@ -5398,16 +5500,16 @@
28365 }
28366 _ACEOF
28367 rm -f conftest.$ac_objext conftest$ac_exeext
28368-if { (eval echo "$as_me:5401: \"$ac_link\"") >&5
28369+if { (eval echo "$as_me:5503: \"$ac_link\"") >&5
28370   (eval $ac_link) 2>&5
28371   ac_status=$?
28372-  echo "$as_me:5404: \$? = $ac_status" >&5
28373+  echo "$as_me:5506: \$? = $ac_status" >&5
28374   (exit $ac_status); } &&
28375          { ac_try='test -s conftest$ac_exeext'
28376-  { (eval echo "$as_me:5407: \"$ac_try\"") >&5
28377+  { (eval echo "$as_me:5509: \"$ac_try\"") >&5
28378   (eval $ac_try) 2>&5
28379   ac_status=$?
28380-  echo "$as_me:5410: \$? = $ac_status" >&5
28381+  echo "$as_me:5512: \$? = $ac_status" >&5
28382   (exit $ac_status); }; }; then
28383   am_cv_langinfo_codeset=yes
28384 else
28385@@ -5418,7 +5520,7 @@
28386 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
28387
28388 fi
28389-echo "$as_me:5421: result: $am_cv_langinfo_codeset" >&5
28390+echo "$as_me:5523: result: $am_cv_langinfo_codeset" >&5
28391 echo "${ECHO_T}$am_cv_langinfo_codeset" >&6
28392 	if test $am_cv_langinfo_codeset = yes; then
28393
28394@@ -5428,7 +5530,7 @@
28395
28396 	fi
28397
28398-echo "$as_me:5431: checking if you want to use pkg-config" >&5
28399+echo "$as_me:5533: checking if you want to use pkg-config" >&5
28400 echo $ECHO_N "checking if you want to use pkg-config... $ECHO_C" >&6
28401
28402 # Check whether --with-pkg-config or --without-pkg-config was given.
28403@@ -5438,7 +5540,7 @@
28404 else
28405   cf_pkg_config=yes
28406 fi;
28407-echo "$as_me:5441: result: $cf_pkg_config" >&5
28408+echo "$as_me:5543: result: $cf_pkg_config" >&5
28409 echo "${ECHO_T}$cf_pkg_config" >&6
28410
28411 case $cf_pkg_config in
28412@@ -5450,7 +5552,7 @@
28413 if test -n "$ac_tool_prefix"; then
28414   # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args.
28415 set dummy ${ac_tool_prefix}pkg-config; ac_word=$2
28416-echo "$as_me:5453: checking for $ac_word" >&5
28417+echo "$as_me:5555: checking for $ac_word" >&5
28418 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
28419 if test "${ac_cv_path_PKG_CONFIG+set}" = set; then
28420   echo $ECHO_N "(cached) $ECHO_C" >&6
28421@@ -5467,7 +5569,7 @@
28422   test -z "$ac_dir" && ac_dir=.
28423   if $as_executable_p "$ac_dir/$ac_word"; then
28424    ac_cv_path_PKG_CONFIG="$ac_dir/$ac_word"
28425-   echo "$as_me:5470: found $ac_dir/$ac_word" >&5
28426+   echo "$as_me:5572: found $ac_dir/$ac_word" >&5
28427    break
28428 fi
28429 done
28430@@ -5478,10 +5580,10 @@
28431 PKG_CONFIG=$ac_cv_path_PKG_CONFIG
28432
28433 if test -n "$PKG_CONFIG"; then
28434-  echo "$as_me:5481: result: $PKG_CONFIG" >&5
28435+  echo "$as_me:5583: result: $PKG_CONFIG" >&5
28436 echo "${ECHO_T}$PKG_CONFIG" >&6
28437 else
28438-  echo "$as_me:5484: result: no" >&5
28439+  echo "$as_me:5586: result: no" >&5
28440 echo "${ECHO_T}no" >&6
28441 fi
28442
28443@@ -5490,7 +5592,7 @@
28444   ac_pt_PKG_CONFIG=$PKG_CONFIG
28445   # Extract the first word of "pkg-config", so it can be a program name with args.
28446 set dummy pkg-config; ac_word=$2
28447-echo "$as_me:5493: checking for $ac_word" >&5
28448+echo "$as_me:5595: checking for $ac_word" >&5
28449 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
28450 if test "${ac_cv_path_ac_pt_PKG_CONFIG+set}" = set; then
28451   echo $ECHO_N "(cached) $ECHO_C" >&6
28452@@ -5507,7 +5609,7 @@
28453   test -z "$ac_dir" && ac_dir=.
28454   if $as_executable_p "$ac_dir/$ac_word"; then
28455    ac_cv_path_ac_pt_PKG_CONFIG="$ac_dir/$ac_word"
28456-   echo "$as_me:5510: found $ac_dir/$ac_word" >&5
28457+   echo "$as_me:5612: found $ac_dir/$ac_word" >&5
28458    break
28459 fi
28460 done
28461@@ -5519,10 +5621,10 @@
28462 ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG
28463
28464 if test -n "$ac_pt_PKG_CONFIG"; then
28465-  echo "$as_me:5522: result: $ac_pt_PKG_CONFIG" >&5
28466+  echo "$as_me:5624: result: $ac_pt_PKG_CONFIG" >&5
28467 echo "${ECHO_T}$ac_pt_PKG_CONFIG" >&6
28468 else
28469-  echo "$as_me:5525: result: no" >&5
28470+  echo "$as_me:5627: result: no" >&5
28471 echo "${ECHO_T}no" >&6
28472 fi
28473
28474@@ -5565,18 +5667,18 @@
28475 	PKG_CONFIG=`echo $PKG_CONFIG | sed -e s%NONE%$cf_path_syntax%`
28476 	;;
28477 (*)
28478-	{ { echo "$as_me:5568: error: expected a pathname, not \"$PKG_CONFIG\"" >&5
28479+	{ { echo "$as_me:5670: error: expected a pathname, not \"$PKG_CONFIG\"" >&5
28480 echo "$as_me: error: expected a pathname, not \"$PKG_CONFIG\"" >&2;}
28481    { (exit 1); exit 1; }; }
28482 	;;
28483 esac
28484
28485 elif test "x$cf_pkg_config" != xno ; then
28486-	{ echo "$as_me:5575: WARNING: pkg-config is not installed" >&5
28487+	{ echo "$as_me:5677: WARNING: pkg-config is not installed" >&5
28488 echo "$as_me: WARNING: pkg-config is not installed" >&2;}
28489 fi
28490
28491-echo "$as_me:5579: checking if you want to see long compiling messages" >&5
28492+echo "$as_me:5681: checking if you want to see long compiling messages" >&5
28493 echo $ECHO_N "checking if you want to see long compiling messages... $ECHO_C" >&6
28494
28495 # Check whether --enable-echo or --disable-echo was given.
28496@@ -5610,10 +5712,10 @@
28497 	ECHO_CC=''
28498
28499 fi;
28500-echo "$as_me:5613: result: $enableval" >&5
28501+echo "$as_me:5715: result: $enableval" >&5
28502 echo "${ECHO_T}$enableval" >&6
28503
28504-echo "$as_me:5616: checking for ncurses wrap-prefix" >&5
28505+echo "$as_me:5718: checking for ncurses wrap-prefix" >&5
28506 echo $ECHO_N "checking for ncurses wrap-prefix... $ECHO_C" >&6
28507
28508 # Check whether --with-ncurses-wrap-prefix or --without-ncurses-wrap-prefix was given.
28509@@ -5623,10 +5725,10 @@
28510 else
28511   NCURSES_WRAP_PREFIX=_nc_
28512 fi;
28513-echo "$as_me:5626: result: $NCURSES_WRAP_PREFIX" >&5
28514+echo "$as_me:5728: result: $NCURSES_WRAP_PREFIX" >&5
28515 echo "${ECHO_T}$NCURSES_WRAP_PREFIX" >&6
28516
28517-echo "$as_me:5629: checking if you want to check for wide-character functions" >&5
28518+echo "$as_me:5731: checking if you want to check for wide-character functions" >&5
28519 echo $ECHO_N "checking if you want to check for wide-character functions... $ECHO_C" >&6
28520
28521 # Check whether --enable-widec or --disable-widec was given.
28522@@ -5643,10 +5745,10 @@
28523 	cf_enable_widec=yes
28524
28525 fi;
28526-echo "$as_me:5646: result: $cf_enable_widec" >&5
28527+echo "$as_me:5748: result: $cf_enable_widec" >&5
28528 echo "${ECHO_T}$cf_enable_widec" >&6
28529
28530-echo "$as_me:5649: checking for specific curses-directory" >&5
28531+echo "$as_me:5751: checking for specific curses-directory" >&5
28532 echo $ECHO_N "checking for specific curses-directory... $ECHO_C" >&6
28533
28534 # Check whether --with-curses-dir or --without-curses-dir was given.
28535@@ -5656,7 +5758,7 @@
28536 else
28537   cf_cv_curses_dir=no
28538 fi;
28539-echo "$as_me:5659: result: $cf_cv_curses_dir" >&5
28540+echo "$as_me:5761: result: $cf_cv_curses_dir" >&5
28541 echo "${ECHO_T}$cf_cv_curses_dir" >&6
28542
28543 if ( test -n "$cf_cv_curses_dir" && test "$cf_cv_curses_dir" != "no" )
28544@@ -5687,7 +5789,7 @@
28545 	withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%`
28546 	;;
28547 (*)
28548-	{ { echo "$as_me:5690: error: expected a pathname, not \"$withval\"" >&5
28549+	{ { echo "$as_me:5792: error: expected a pathname, not \"$withval\"" >&5
28550 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;}
28551    { (exit 1); exit 1; }; }
28552 	;;
28553@@ -5723,7 +5825,7 @@
28554 	CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir"
28555
28556 			  cat >conftest.$ac_ext <<_ACEOF
28557-#line 5726 "configure"
28558+#line 5828 "configure"
28559 #include "confdefs.h"
28560 #include <stdio.h>
28561 int
28562@@ -5735,16 +5837,16 @@
28563 }
28564 _ACEOF
28565 rm -f conftest.$ac_objext
28566-if { (eval echo "$as_me:5738: \"$ac_compile\"") >&5
28567+if { (eval echo "$as_me:5840: \"$ac_compile\"") >&5
28568   (eval $ac_compile) 2>&5
28569   ac_status=$?
28570-  echo "$as_me:5741: \$? = $ac_status" >&5
28571+  echo "$as_me:5843: \$? = $ac_status" >&5
28572   (exit $ac_status); } &&
28573          { ac_try='test -s conftest.$ac_objext'
28574-  { (eval echo "$as_me:5744: \"$ac_try\"") >&5
28575+  { (eval echo "$as_me:5846: \"$ac_try\"") >&5
28576   (eval $ac_try) 2>&5
28577   ac_status=$?
28578-  echo "$as_me:5747: \$? = $ac_status" >&5
28579+  echo "$as_me:5849: \$? = $ac_status" >&5
28580   (exit $ac_status); }; }; then
28581   :
28582 else
28583@@ -5761,7 +5863,7 @@
28584 		if test "$cf_have_incdir" = no ; then
28585 		  test -n "$verbose" && echo "	adding $cf_add_incdir to include-path" 1>&6
28586
28587-echo "${as_me:-configure}:5764: testing adding $cf_add_incdir to include-path ..." 1>&5
28588+echo "${as_me:-configure}:5866: testing adding $cf_add_incdir to include-path ..." 1>&5
28589
28590 		  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
28591
28592@@ -5797,7 +5899,7 @@
28593 			if test "$cf_have_libdir" = no ; then
28594 				test -n "$verbose" && echo "	adding $cf_add_libdir to library-path" 1>&6
28595
28596-echo "${as_me:-configure}:5800: testing adding $cf_add_libdir to library-path ..." 1>&5
28597+echo "${as_me:-configure}:5902: testing adding $cf_add_libdir to library-path ..." 1>&5
28598
28599 				LDFLAGS="-L$cf_add_libdir $LDFLAGS"
28600 			fi
28601@@ -5810,7 +5912,7 @@
28602
28603 cf_cv_screen=curses
28604
28605-echo "$as_me:5813: checking for specified curses library type" >&5
28606+echo "$as_me:5915: checking for specified curses library type" >&5
28607 echo $ECHO_N "checking for specified curses library type... $ECHO_C" >&6
28608
28609 # Check whether --with-screen or --without-screen was given.
28610@@ -5854,13 +5956,13 @@
28611 fi;
28612 fi;
28613
28614-echo "$as_me:5857: result: $cf_cv_screen" >&5
28615+echo "$as_me:5959: result: $cf_cv_screen" >&5
28616 echo "${ECHO_T}$cf_cv_screen" >&6
28617
28618 case $cf_cv_screen in
28619 (curses|curses_*)
28620
28621-echo "$as_me:5863: checking for extra include directories" >&5
28622+echo "$as_me:5965: checking for extra include directories" >&5
28623 echo $ECHO_N "checking for extra include directories... $ECHO_C" >&6
28624 if test "${cf_cv_curses_incdir+set}" = set; then
28625   echo $ECHO_N "(cached) $ECHO_C" >&6
28626@@ -5886,7 +5988,7 @@
28627 esac
28628
28629 fi
28630-echo "$as_me:5889: result: $cf_cv_curses_incdir" >&5
28631+echo "$as_me:5991: result: $cf_cv_curses_incdir" >&5
28632 echo "${ECHO_T}$cf_cv_curses_incdir" >&6
28633 if test "$cf_cv_curses_incdir" != no
28634 then
28635@@ -5896,7 +5998,7 @@
28636
28637 fi
28638
28639-echo "$as_me:5899: checking if we have identified curses headers" >&5
28640+echo "$as_me:6001: checking if we have identified curses headers" >&5
28641 echo $ECHO_N "checking if we have identified curses headers... $ECHO_C" >&6
28642 if test "${cf_cv_ncurses_header+set}" = set; then
28643   echo $ECHO_N "(cached) $ECHO_C" >&6
28644@@ -5908,7 +6010,7 @@
28645 	curses.h  ncurses/ncurses.h ncurses/curses.h
28646 do
28647 cat >conftest.$ac_ext <<_ACEOF
28648-#line 5911 "configure"
28649+#line 6013 "configure"
28650 #include "confdefs.h"
28651 #include <${cf_header}>
28652 int
28653@@ -5920,16 +6022,16 @@
28654 }
28655 _ACEOF
28656 rm -f conftest.$ac_objext
28657-if { (eval echo "$as_me:5923: \"$ac_compile\"") >&5
28658+if { (eval echo "$as_me:6025: \"$ac_compile\"") >&5
28659   (eval $ac_compile) 2>&5
28660   ac_status=$?
28661-  echo "$as_me:5926: \$? = $ac_status" >&5
28662+  echo "$as_me:6028: \$? = $ac_status" >&5
28663   (exit $ac_status); } &&
28664          { ac_try='test -s conftest.$ac_objext'
28665-  { (eval echo "$as_me:5929: \"$ac_try\"") >&5
28666+  { (eval echo "$as_me:6031: \"$ac_try\"") >&5
28667   (eval $ac_try) 2>&5
28668   ac_status=$?
28669-  echo "$as_me:5932: \$? = $ac_status" >&5
28670+  echo "$as_me:6034: \$? = $ac_status" >&5
28671   (exit $ac_status); }; }; then
28672   cf_cv_ncurses_header=$cf_header; break
28673 else
28674@@ -5940,11 +6042,11 @@
28675 done
28676
28677 fi
28678-echo "$as_me:5943: result: $cf_cv_ncurses_header" >&5
28679+echo "$as_me:6045: result: $cf_cv_ncurses_header" >&5
28680 echo "${ECHO_T}$cf_cv_ncurses_header" >&6
28681
28682 if test "$cf_cv_ncurses_header" = none ; then
28683-	{ { echo "$as_me:5947: error: No curses header-files found" >&5
28684+	{ { echo "$as_me:6049: error: No curses header-files found" >&5
28685 echo "$as_me: error: No curses header-files found" >&2;}
28686    { (exit 1); exit 1; }; }
28687 fi
28688@@ -5954,23 +6056,23 @@
28689 for ac_header in $cf_cv_ncurses_header
28690 do
28691 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
28692-echo "$as_me:5957: checking for $ac_header" >&5
28693+echo "$as_me:6059: checking for $ac_header" >&5
28694 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
28695 if eval "test \"\${$as_ac_Header+set}\" = set"; then
28696   echo $ECHO_N "(cached) $ECHO_C" >&6
28697 else
28698   cat >conftest.$ac_ext <<_ACEOF
28699-#line 5963 "configure"
28700+#line 6065 "configure"
28701 #include "confdefs.h"
28702 #include <$ac_header>
28703 _ACEOF
28704-if { (eval echo "$as_me:5967: \"$ac_cpp conftest.$ac_ext\"") >&5
28705+if { (eval echo "$as_me:6069: \"$ac_cpp conftest.$ac_ext\"") >&5
28706   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
28707   ac_status=$?
28708   egrep -v '^ *\+' conftest.er1 >conftest.err
28709   rm -f conftest.er1
28710   cat conftest.err >&5
28711-  echo "$as_me:5973: \$? = $ac_status" >&5
28712+  echo "$as_me:6075: \$? = $ac_status" >&5
28713   (exit $ac_status); } >/dev/null; then
28714   if test -s conftest.err; then
28715     ac_cpp_err=$ac_c_preproc_warn_flag
28716@@ -5989,7 +6091,7 @@
28717 fi
28718 rm -f conftest.err conftest.$ac_ext
28719 fi
28720-echo "$as_me:5992: result: `eval echo '${'$as_ac_Header'}'`" >&5
28721+echo "$as_me:6094: result: `eval echo '${'$as_ac_Header'}'`" >&5
28722 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
28723 if test `eval echo '${'$as_ac_Header'}'` = yes; then
28724   cat >>confdefs.h <<EOF
28725@@ -5999,7 +6101,7 @@
28726 fi
28727 done
28728
28729-echo "$as_me:6002: checking for terminfo header" >&5
28730+echo "$as_me:6104: checking for terminfo header" >&5
28731 echo $ECHO_N "checking for terminfo header... $ECHO_C" >&6
28732 if test "${cf_cv_term_header+set}" = set; then
28733   echo $ECHO_N "(cached) $ECHO_C" >&6
28734@@ -6017,7 +6119,7 @@
28735 for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h"
28736 do
28737 cat >conftest.$ac_ext <<_ACEOF
28738-#line 6020 "configure"
28739+#line 6122 "configure"
28740 #include "confdefs.h"
28741 #include <stdio.h>
28742 #include <${cf_cv_ncurses_header:-curses.h}>
28743@@ -6032,16 +6134,16 @@
28744 }
28745 _ACEOF
28746 rm -f conftest.$ac_objext
28747-if { (eval echo "$as_me:6035: \"$ac_compile\"") >&5
28748+if { (eval echo "$as_me:6137: \"$ac_compile\"") >&5
28749   (eval $ac_compile) 2>&5
28750   ac_status=$?
28751-  echo "$as_me:6038: \$? = $ac_status" >&5
28752+  echo "$as_me:6140: \$? = $ac_status" >&5
28753   (exit $ac_status); } &&
28754          { ac_try='test -s conftest.$ac_objext'
28755-  { (eval echo "$as_me:6041: \"$ac_try\"") >&5
28756+  { (eval echo "$as_me:6143: \"$ac_try\"") >&5
28757   (eval $ac_try) 2>&5
28758   ac_status=$?
28759-  echo "$as_me:6044: \$? = $ac_status" >&5
28760+  echo "$as_me:6146: \$? = $ac_status" >&5
28761   (exit $ac_status); }; }; then
28762
28763 	cf_cv_term_header="$cf_test"
28764@@ -6057,7 +6159,7 @@
28765 done
28766
28767 fi
28768-echo "$as_me:6060: result: $cf_cv_term_header" >&5
28769+echo "$as_me:6162: result: $cf_cv_term_header" >&5
28770 echo "${ECHO_T}$cf_cv_term_header" >&6
28771
28772 # Set definitions to allow ifdef'ing to accommodate subdirectories
28773@@ -6089,7 +6191,7 @@
28774 	;;
28775 esac
28776
28777-echo "$as_me:6092: checking for ncurses version" >&5
28778+echo "$as_me:6194: checking for ncurses version" >&5
28779 echo $ECHO_N "checking for ncurses version... $ECHO_C" >&6
28780 if test "${cf_cv_ncurses_version+set}" = set; then
28781   echo $ECHO_N "(cached) $ECHO_C" >&6
28782@@ -6115,10 +6217,10 @@
28783 #endif
28784 EOF
28785 	cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out"
28786-	{ (eval echo "$as_me:6118: \"$cf_try\"") >&5
28787+	{ (eval echo "$as_me:6220: \"$cf_try\"") >&5
28788   (eval $cf_try) 2>&5
28789   ac_status=$?
28790-  echo "$as_me:6121: \$? = $ac_status" >&5
28791+  echo "$as_me:6223: \$? = $ac_status" >&5
28792   (exit $ac_status); }
28793 	if test -f conftest.out ; then
28794 		cf_out=`cat conftest.out | sed -e 's%^Autoconf %%' -e 's%^[^"]*"%%' -e 's%".*%%'`
28795@@ -6128,7 +6230,7 @@
28796
28797 else
28798   cat >conftest.$ac_ext <<_ACEOF
28799-#line 6131 "configure"
28800+#line 6233 "configure"
28801 #include "confdefs.h"
28802
28803 #include <${cf_cv_ncurses_header:-curses.h}>
28804@@ -6153,15 +6255,15 @@
28805 }
28806 _ACEOF
28807 rm -f conftest$ac_exeext
28808-if { (eval echo "$as_me:6156: \"$ac_link\"") >&5
28809+if { (eval echo "$as_me:6258: \"$ac_link\"") >&5
28810   (eval $ac_link) 2>&5
28811   ac_status=$?
28812-  echo "$as_me:6159: \$? = $ac_status" >&5
28813+  echo "$as_me:6261: \$? = $ac_status" >&5
28814   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
28815-  { (eval echo "$as_me:6161: \"$ac_try\"") >&5
28816+  { (eval echo "$as_me:6263: \"$ac_try\"") >&5
28817   (eval $ac_try) 2>&5
28818   ac_status=$?
28819-  echo "$as_me:6164: \$? = $ac_status" >&5
28820+  echo "$as_me:6266: \$? = $ac_status" >&5
28821   (exit $ac_status); }; }; then
28822
28823 	cf_cv_ncurses_version=`cat $cf_tempfile`
28824@@ -6175,17 +6277,17 @@
28825 	rm -f $cf_tempfile
28826
28827 fi
28828-echo "$as_me:6178: result: $cf_cv_ncurses_version" >&5
28829+echo "$as_me:6280: result: $cf_cv_ncurses_version" >&5
28830 echo "${ECHO_T}$cf_cv_ncurses_version" >&6
28831 test "$cf_cv_ncurses_version" = no ||
28832 cat >>confdefs.h <<\EOF
28833 #define NCURSES 1
28834 EOF
28835
28836-echo "$as_me:6185: checking if we have identified curses libraries" >&5
28837+echo "$as_me:6287: checking if we have identified curses libraries" >&5
28838 echo $ECHO_N "checking if we have identified curses libraries... $ECHO_C" >&6
28839 cat >conftest.$ac_ext <<_ACEOF
28840-#line 6188 "configure"
28841+#line 6290 "configure"
28842 #include "confdefs.h"
28843 #include <${cf_cv_ncurses_header:-curses.h}>
28844 int
28845@@ -6197,16 +6299,16 @@
28846 }
28847 _ACEOF
28848 rm -f conftest.$ac_objext conftest$ac_exeext
28849-if { (eval echo "$as_me:6200: \"$ac_link\"") >&5
28850+if { (eval echo "$as_me:6302: \"$ac_link\"") >&5
28851   (eval $ac_link) 2>&5
28852   ac_status=$?
28853-  echo "$as_me:6203: \$? = $ac_status" >&5
28854+  echo "$as_me:6305: \$? = $ac_status" >&5
28855   (exit $ac_status); } &&
28856          { ac_try='test -s conftest$ac_exeext'
28857-  { (eval echo "$as_me:6206: \"$ac_try\"") >&5
28858+  { (eval echo "$as_me:6308: \"$ac_try\"") >&5
28859   (eval $ac_try) 2>&5
28860   ac_status=$?
28861-  echo "$as_me:6209: \$? = $ac_status" >&5
28862+  echo "$as_me:6311: \$? = $ac_status" >&5
28863   (exit $ac_status); }; }; then
28864   cf_result=yes
28865 else
28866@@ -6215,13 +6317,13 @@
28867 cf_result=no
28868 fi
28869 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
28870-echo "$as_me:6218: result: $cf_result" >&5
28871+echo "$as_me:6320: result: $cf_result" >&5
28872 echo "${ECHO_T}$cf_result" >&6
28873
28874 if test "$cf_result" = no ; then
28875 case $host_os in
28876 (freebsd*)
28877-	echo "$as_me:6224: checking for tgoto in -lmytinfo" >&5
28878+	echo "$as_me:6326: checking for tgoto in -lmytinfo" >&5
28879 echo $ECHO_N "checking for tgoto in -lmytinfo... $ECHO_C" >&6
28880 if test "${ac_cv_lib_mytinfo_tgoto+set}" = set; then
28881   echo $ECHO_N "(cached) $ECHO_C" >&6
28882@@ -6229,7 +6331,7 @@
28883   ac_check_lib_save_LIBS=$LIBS
28884 LIBS="-lmytinfo  $LIBS"
28885 cat >conftest.$ac_ext <<_ACEOF
28886-#line 6232 "configure"
28887+#line 6334 "configure"
28888 #include "confdefs.h"
28889
28890 /* Override any gcc2 internal prototype to avoid an error.  */
28891@@ -6248,16 +6350,16 @@
28892 }
28893 _ACEOF
28894 rm -f conftest.$ac_objext conftest$ac_exeext
28895-if { (eval echo "$as_me:6251: \"$ac_link\"") >&5
28896+if { (eval echo "$as_me:6353: \"$ac_link\"") >&5
28897   (eval $ac_link) 2>&5
28898   ac_status=$?
28899-  echo "$as_me:6254: \$? = $ac_status" >&5
28900+  echo "$as_me:6356: \$? = $ac_status" >&5
28901   (exit $ac_status); } &&
28902          { ac_try='test -s conftest$ac_exeext'
28903-  { (eval echo "$as_me:6257: \"$ac_try\"") >&5
28904+  { (eval echo "$as_me:6359: \"$ac_try\"") >&5
28905   (eval $ac_try) 2>&5
28906   ac_status=$?
28907-  echo "$as_me:6260: \$? = $ac_status" >&5
28908+  echo "$as_me:6362: \$? = $ac_status" >&5
28909   (exit $ac_status); }; }; then
28910   ac_cv_lib_mytinfo_tgoto=yes
28911 else
28912@@ -6268,7 +6370,7 @@
28913 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
28914 LIBS=$ac_check_lib_save_LIBS
28915 fi
28916-echo "$as_me:6271: result: $ac_cv_lib_mytinfo_tgoto" >&5
28917+echo "$as_me:6373: result: $ac_cv_lib_mytinfo_tgoto" >&5
28918 echo "${ECHO_T}$ac_cv_lib_mytinfo_tgoto" >&6
28919 if test $ac_cv_lib_mytinfo_tgoto = yes; then
28920
28921@@ -6298,7 +6400,7 @@
28922 	# term.h) for cur_colr
28923 	if test "x$cf_cv_screen" = "xcurses_colr"
28924 	then
28925-		echo "$as_me:6301: checking for initscr in -lcur_colr" >&5
28926+		echo "$as_me:6403: checking for initscr in -lcur_colr" >&5
28927 echo $ECHO_N "checking for initscr in -lcur_colr... $ECHO_C" >&6
28928 if test "${ac_cv_lib_cur_colr_initscr+set}" = set; then
28929   echo $ECHO_N "(cached) $ECHO_C" >&6
28930@@ -6306,7 +6408,7 @@
28931   ac_check_lib_save_LIBS=$LIBS
28932 LIBS="-lcur_colr  $LIBS"
28933 cat >conftest.$ac_ext <<_ACEOF
28934-#line 6309 "configure"
28935+#line 6411 "configure"
28936 #include "confdefs.h"
28937
28938 /* Override any gcc2 internal prototype to avoid an error.  */
28939@@ -6325,16 +6427,16 @@
28940 }
28941 _ACEOF
28942 rm -f conftest.$ac_objext conftest$ac_exeext
28943-if { (eval echo "$as_me:6328: \"$ac_link\"") >&5
28944+if { (eval echo "$as_me:6430: \"$ac_link\"") >&5
28945   (eval $ac_link) 2>&5
28946   ac_status=$?
28947-  echo "$as_me:6331: \$? = $ac_status" >&5
28948+  echo "$as_me:6433: \$? = $ac_status" >&5
28949   (exit $ac_status); } &&
28950          { ac_try='test -s conftest$ac_exeext'
28951-  { (eval echo "$as_me:6334: \"$ac_try\"") >&5
28952+  { (eval echo "$as_me:6436: \"$ac_try\"") >&5
28953   (eval $ac_try) 2>&5
28954   ac_status=$?
28955-  echo "$as_me:6337: \$? = $ac_status" >&5
28956+  echo "$as_me:6439: \$? = $ac_status" >&5
28957   (exit $ac_status); }; }; then
28958   ac_cv_lib_cur_colr_initscr=yes
28959 else
28960@@ -6345,7 +6447,7 @@
28961 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
28962 LIBS=$ac_check_lib_save_LIBS
28963 fi
28964-echo "$as_me:6348: result: $ac_cv_lib_cur_colr_initscr" >&5
28965+echo "$as_me:6450: result: $ac_cv_lib_cur_colr_initscr" >&5
28966 echo "${ECHO_T}$ac_cv_lib_cur_colr_initscr" >&6
28967 if test $ac_cv_lib_cur_colr_initscr = yes; then
28968
28969@@ -6369,7 +6471,7 @@
28970
28971 else
28972
28973-		echo "$as_me:6372: checking for initscr in -lHcurses" >&5
28974+		echo "$as_me:6474: checking for initscr in -lHcurses" >&5
28975 echo $ECHO_N "checking for initscr in -lHcurses... $ECHO_C" >&6
28976 if test "${ac_cv_lib_Hcurses_initscr+set}" = set; then
28977   echo $ECHO_N "(cached) $ECHO_C" >&6
28978@@ -6377,7 +6479,7 @@
28979   ac_check_lib_save_LIBS=$LIBS
28980 LIBS="-lHcurses  $LIBS"
28981 cat >conftest.$ac_ext <<_ACEOF
28982-#line 6380 "configure"
28983+#line 6482 "configure"
28984 #include "confdefs.h"
28985
28986 /* Override any gcc2 internal prototype to avoid an error.  */
28987@@ -6396,16 +6498,16 @@
28988 }
28989 _ACEOF
28990 rm -f conftest.$ac_objext conftest$ac_exeext
28991-if { (eval echo "$as_me:6399: \"$ac_link\"") >&5
28992+if { (eval echo "$as_me:6501: \"$ac_link\"") >&5
28993   (eval $ac_link) 2>&5
28994   ac_status=$?
28995-  echo "$as_me:6402: \$? = $ac_status" >&5
28996+  echo "$as_me:6504: \$? = $ac_status" >&5
28997   (exit $ac_status); } &&
28998          { ac_try='test -s conftest$ac_exeext'
28999-  { (eval echo "$as_me:6405: \"$ac_try\"") >&5
29000+  { (eval echo "$as_me:6507: \"$ac_try\"") >&5
29001   (eval $ac_try) 2>&5
29002   ac_status=$?
29003-  echo "$as_me:6408: \$? = $ac_status" >&5
29004+  echo "$as_me:6510: \$? = $ac_status" >&5
29005   (exit $ac_status); }; }; then
29006   ac_cv_lib_Hcurses_initscr=yes
29007 else
29008@@ -6416,7 +6518,7 @@
29009 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
29010 LIBS=$ac_check_lib_save_LIBS
29011 fi
29012-echo "$as_me:6419: result: $ac_cv_lib_Hcurses_initscr" >&5
29013+echo "$as_me:6521: result: $ac_cv_lib_Hcurses_initscr" >&5
29014 echo "${ECHO_T}$ac_cv_lib_Hcurses_initscr" >&6
29015 if test $ac_cv_lib_Hcurses_initscr = yes; then
29016
29017@@ -6474,7 +6576,7 @@
29018 			if test "$cf_have_libdir" = no ; then
29019 				test -n "$verbose" && echo "	adding $cf_add_libdir to library-path" 1>&6
29020
29021-echo "${as_me:-configure}:6477: testing adding $cf_add_libdir to library-path ..." 1>&5
29022+echo "${as_me:-configure}:6579: testing adding $cf_add_libdir to library-path ..." 1>&5
29023
29024 				LDFLAGS="-L$cf_add_libdir $LDFLAGS"
29025 			fi
29026@@ -6503,7 +6605,7 @@
29027 			if test "$cf_have_libdir" = no ; then
29028 				test -n "$verbose" && echo "	adding $cf_add_libdir to library-path" 1>&6
29029
29030-echo "${as_me:-configure}:6506: testing adding $cf_add_libdir to library-path ..." 1>&5
29031+echo "${as_me:-configure}:6608: testing adding $cf_add_libdir to library-path ..." 1>&5
29032
29033 				LDFLAGS="-L$cf_add_libdir $LDFLAGS"
29034 			fi
29035@@ -6534,7 +6636,7 @@
29036 			if test "$cf_have_libdir" = no ; then
29037 				test -n "$verbose" && echo "	adding $cf_add_libdir to library-path" 1>&6
29038
29039-echo "${as_me:-configure}:6537: testing adding $cf_add_libdir to library-path ..." 1>&5
29040+echo "${as_me:-configure}:6639: testing adding $cf_add_libdir to library-path ..." 1>&5
29041
29042 				LDFLAGS="-L$cf_add_libdir $LDFLAGS"
29043 			fi
29044@@ -6569,7 +6671,7 @@
29045 			if test "$cf_have_libdir" = no ; then
29046 				test -n "$verbose" && echo "	adding $cf_add_libdir to library-path" 1>&6
29047
29048-echo "${as_me:-configure}:6572: testing adding $cf_add_libdir to library-path ..." 1>&5
29049+echo "${as_me:-configure}:6674: testing adding $cf_add_libdir to library-path ..." 1>&5
29050
29051 				LDFLAGS="-L$cf_add_libdir $LDFLAGS"
29052 			fi
29053@@ -6613,13 +6715,13 @@
29054 	# because it may be needed to link the test-case for initscr.
29055 	if test "x$cf_term_lib" = x
29056 	then
29057-		echo "$as_me:6616: checking for tgoto" >&5
29058+		echo "$as_me:6718: checking for tgoto" >&5
29059 echo $ECHO_N "checking for tgoto... $ECHO_C" >&6
29060 if test "${ac_cv_func_tgoto+set}" = set; then
29061   echo $ECHO_N "(cached) $ECHO_C" >&6
29062 else
29063   cat >conftest.$ac_ext <<_ACEOF
29064-#line 6622 "configure"
29065+#line 6724 "configure"
29066 #include "confdefs.h"
29067 #define tgoto autoconf_temporary
29068 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
29069@@ -6650,16 +6752,16 @@
29070 }
29071 _ACEOF
29072 rm -f conftest.$ac_objext conftest$ac_exeext
29073-if { (eval echo "$as_me:6653: \"$ac_link\"") >&5
29074+if { (eval echo "$as_me:6755: \"$ac_link\"") >&5
29075   (eval $ac_link) 2>&5
29076   ac_status=$?
29077-  echo "$as_me:6656: \$? = $ac_status" >&5
29078+  echo "$as_me:6758: \$? = $ac_status" >&5
29079   (exit $ac_status); } &&
29080          { ac_try='test -s conftest$ac_exeext'
29081-  { (eval echo "$as_me:6659: \"$ac_try\"") >&5
29082+  { (eval echo "$as_me:6761: \"$ac_try\"") >&5
29083   (eval $ac_try) 2>&5
29084   ac_status=$?
29085-  echo "$as_me:6662: \$? = $ac_status" >&5
29086+  echo "$as_me:6764: \$? = $ac_status" >&5
29087   (exit $ac_status); }; }; then
29088   ac_cv_func_tgoto=yes
29089 else
29090@@ -6669,7 +6771,7 @@
29091 fi
29092 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
29093 fi
29094-echo "$as_me:6672: result: $ac_cv_func_tgoto" >&5
29095+echo "$as_me:6774: result: $ac_cv_func_tgoto" >&5
29096 echo "${ECHO_T}$ac_cv_func_tgoto" >&6
29097 if test $ac_cv_func_tgoto = yes; then
29098   cf_term_lib=predefined
29099@@ -6678,7 +6780,7 @@
29100 			for cf_term_lib in $cf_check_list otermcap termcap tinfo termlib unknown
29101 			do
29102 				as_ac_Lib=`echo "ac_cv_lib_$cf_term_lib''_tgoto" | $as_tr_sh`
29103-echo "$as_me:6681: checking for tgoto in -l$cf_term_lib" >&5
29104+echo "$as_me:6783: checking for tgoto in -l$cf_term_lib" >&5
29105 echo $ECHO_N "checking for tgoto in -l$cf_term_lib... $ECHO_C" >&6
29106 if eval "test \"\${$as_ac_Lib+set}\" = set"; then
29107   echo $ECHO_N "(cached) $ECHO_C" >&6
29108@@ -6686,7 +6788,7 @@
29109   ac_check_lib_save_LIBS=$LIBS
29110 LIBS="-l$cf_term_lib  $LIBS"
29111 cat >conftest.$ac_ext <<_ACEOF
29112-#line 6689 "configure"
29113+#line 6791 "configure"
29114 #include "confdefs.h"
29115
29116 /* Override any gcc2 internal prototype to avoid an error.  */
29117@@ -6705,16 +6807,16 @@
29118 }
29119 _ACEOF
29120 rm -f conftest.$ac_objext conftest$ac_exeext
29121-if { (eval echo "$as_me:6708: \"$ac_link\"") >&5
29122+if { (eval echo "$as_me:6810: \"$ac_link\"") >&5
29123   (eval $ac_link) 2>&5
29124   ac_status=$?
29125-  echo "$as_me:6711: \$? = $ac_status" >&5
29126+  echo "$as_me:6813: \$? = $ac_status" >&5
29127   (exit $ac_status); } &&
29128          { ac_try='test -s conftest$ac_exeext'
29129-  { (eval echo "$as_me:6714: \"$ac_try\"") >&5
29130+  { (eval echo "$as_me:6816: \"$ac_try\"") >&5
29131   (eval $ac_try) 2>&5
29132   ac_status=$?
29133-  echo "$as_me:6717: \$? = $ac_status" >&5
29134+  echo "$as_me:6819: \$? = $ac_status" >&5
29135   (exit $ac_status); }; }; then
29136   eval "$as_ac_Lib=yes"
29137 else
29138@@ -6725,7 +6827,7 @@
29139 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
29140 LIBS=$ac_check_lib_save_LIBS
29141 fi
29142-echo "$as_me:6728: result: `eval echo '${'$as_ac_Lib'}'`" >&5
29143+echo "$as_me:6830: result: `eval echo '${'$as_ac_Lib'}'`" >&5
29144 echo "${ECHO_T}`eval echo '${'$as_ac_Lib'}'`" >&6
29145 if test `eval echo '${'$as_ac_Lib'}'` = yes; then
29146
29147@@ -6748,10 +6850,10 @@
29148 		do
29149 			LIBS="-l$cf_curs_lib $cf_save_LIBS"
29150 			if test "$cf_term_lib" = unknown || test "$cf_term_lib" = "$cf_curs_lib" ; then
29151-				echo "$as_me:6751: checking if we can link with $cf_curs_lib library" >&5
29152+				echo "$as_me:6853: checking if we can link with $cf_curs_lib library" >&5
29153 echo $ECHO_N "checking if we can link with $cf_curs_lib library... $ECHO_C" >&6
29154 				cat >conftest.$ac_ext <<_ACEOF
29155-#line 6754 "configure"
29156+#line 6856 "configure"
29157 #include "confdefs.h"
29158 #include <${cf_cv_ncurses_header:-curses.h}>
29159 int
29160@@ -6763,16 +6865,16 @@
29161 }
29162 _ACEOF
29163 rm -f conftest.$ac_objext conftest$ac_exeext
29164-if { (eval echo "$as_me:6766: \"$ac_link\"") >&5
29165+if { (eval echo "$as_me:6868: \"$ac_link\"") >&5
29166   (eval $ac_link) 2>&5
29167   ac_status=$?
29168-  echo "$as_me:6769: \$? = $ac_status" >&5
29169+  echo "$as_me:6871: \$? = $ac_status" >&5
29170   (exit $ac_status); } &&
29171          { ac_try='test -s conftest$ac_exeext'
29172-  { (eval echo "$as_me:6772: \"$ac_try\"") >&5
29173+  { (eval echo "$as_me:6874: \"$ac_try\"") >&5
29174   (eval $ac_try) 2>&5
29175   ac_status=$?
29176-  echo "$as_me:6775: \$? = $ac_status" >&5
29177+  echo "$as_me:6877: \$? = $ac_status" >&5
29178   (exit $ac_status); }; }; then
29179   cf_result=yes
29180 else
29181@@ -6781,16 +6883,16 @@
29182 cf_result=no
29183 fi
29184 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
29185-				echo "$as_me:6784: result: $cf_result" >&5
29186+				echo "$as_me:6886: result: $cf_result" >&5
29187 echo "${ECHO_T}$cf_result" >&6
29188 				test $cf_result = yes && break
29189 			elif test "$cf_curs_lib" = "$cf_term_lib" ; then
29190 				cf_result=no
29191 			elif test "$cf_term_lib" != predefined ; then
29192-				echo "$as_me:6790: checking if we need both $cf_curs_lib and $cf_term_lib libraries" >&5
29193+				echo "$as_me:6892: checking if we need both $cf_curs_lib and $cf_term_lib libraries" >&5
29194 echo $ECHO_N "checking if we need both $cf_curs_lib and $cf_term_lib libraries... $ECHO_C" >&6
29195 				cat >conftest.$ac_ext <<_ACEOF
29196-#line 6793 "configure"
29197+#line 6895 "configure"
29198 #include "confdefs.h"
29199 #include <${cf_cv_ncurses_header:-curses.h}>
29200 int
29201@@ -6802,16 +6904,16 @@
29202 }
29203 _ACEOF
29204 rm -f conftest.$ac_objext conftest$ac_exeext
29205-if { (eval echo "$as_me:6805: \"$ac_link\"") >&5
29206+if { (eval echo "$as_me:6907: \"$ac_link\"") >&5
29207   (eval $ac_link) 2>&5
29208   ac_status=$?
29209-  echo "$as_me:6808: \$? = $ac_status" >&5
29210+  echo "$as_me:6910: \$? = $ac_status" >&5
29211   (exit $ac_status); } &&
29212          { ac_try='test -s conftest$ac_exeext'
29213-  { (eval echo "$as_me:6811: \"$ac_try\"") >&5
29214+  { (eval echo "$as_me:6913: \"$ac_try\"") >&5
29215   (eval $ac_try) 2>&5
29216   ac_status=$?
29217-  echo "$as_me:6814: \$? = $ac_status" >&5
29218+  echo "$as_me:6916: \$? = $ac_status" >&5
29219   (exit $ac_status); }; }; then
29220   cf_result=no
29221 else
29222@@ -6820,7 +6922,7 @@
29223
29224 					LIBS="-l$cf_curs_lib -l$cf_term_lib $cf_save_LIBS"
29225 					cat >conftest.$ac_ext <<_ACEOF
29226-#line 6823 "configure"
29227+#line 6925 "configure"
29228 #include "confdefs.h"
29229 #include <${cf_cv_ncurses_header:-curses.h}>
29230 int
29231@@ -6832,16 +6934,16 @@
29232 }
29233 _ACEOF
29234 rm -f conftest.$ac_objext conftest$ac_exeext
29235-if { (eval echo "$as_me:6835: \"$ac_link\"") >&5
29236+if { (eval echo "$as_me:6937: \"$ac_link\"") >&5
29237   (eval $ac_link) 2>&5
29238   ac_status=$?
29239-  echo "$as_me:6838: \$? = $ac_status" >&5
29240+  echo "$as_me:6940: \$? = $ac_status" >&5
29241   (exit $ac_status); } &&
29242          { ac_try='test -s conftest$ac_exeext'
29243-  { (eval echo "$as_me:6841: \"$ac_try\"") >&5
29244+  { (eval echo "$as_me:6943: \"$ac_try\"") >&5
29245   (eval $ac_try) 2>&5
29246   ac_status=$?
29247-  echo "$as_me:6844: \$? = $ac_status" >&5
29248+  echo "$as_me:6946: \$? = $ac_status" >&5
29249   (exit $ac_status); }; }; then
29250   cf_result=yes
29251 else
29252@@ -6853,13 +6955,13 @@
29253
29254 fi
29255 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
29256-				echo "$as_me:6856: result: $cf_result" >&5
29257+				echo "$as_me:6958: result: $cf_result" >&5
29258 echo "${ECHO_T}$cf_result" >&6
29259 				test $cf_result != error && break
29260 			fi
29261 		done
29262 	fi
29263-	test $cf_curs_lib = unknown && { { echo "$as_me:6862: error: no curses library found" >&5
29264+	test $cf_curs_lib = unknown && { { echo "$as_me:6964: error: no curses library found" >&5
29265 echo "$as_me: error: no curses library found" >&2;}
29266    { (exit 1); exit 1; }; }
29267 fi
29268@@ -6868,7 +6970,7 @@
29269 	;;
29270 (ncursesw*)
29271
29272-echo "$as_me:6871: checking for multibyte character support" >&5
29273+echo "$as_me:6973: checking for multibyte character support" >&5
29274 echo $ECHO_N "checking for multibyte character support... $ECHO_C" >&6
29275 if test "${cf_cv_utf8_lib+set}" = set; then
29276   echo $ECHO_N "(cached) $ECHO_C" >&6
29277@@ -6876,7 +6978,7 @@
29278
29279 	cf_save_LIBS="$LIBS"
29280 	cat >conftest.$ac_ext <<_ACEOF
29281-#line 6879 "configure"
29282+#line 6981 "configure"
29283 #include "confdefs.h"
29284
29285 #include <stdlib.h>
29286@@ -6889,16 +6991,16 @@
29287 }
29288 _ACEOF
29289 rm -f conftest.$ac_objext conftest$ac_exeext
29290-if { (eval echo "$as_me:6892: \"$ac_link\"") >&5
29291+if { (eval echo "$as_me:6994: \"$ac_link\"") >&5
29292   (eval $ac_link) 2>&5
29293   ac_status=$?
29294-  echo "$as_me:6895: \$? = $ac_status" >&5
29295+  echo "$as_me:6997: \$? = $ac_status" >&5
29296   (exit $ac_status); } &&
29297          { ac_try='test -s conftest$ac_exeext'
29298-  { (eval echo "$as_me:6898: \"$ac_try\"") >&5
29299+  { (eval echo "$as_me:7000: \"$ac_try\"") >&5
29300   (eval $ac_try) 2>&5
29301   ac_status=$?
29302-  echo "$as_me:6901: \$? = $ac_status" >&5
29303+  echo "$as_me:7003: \$? = $ac_status" >&5
29304   (exit $ac_status); }; }; then
29305   cf_cv_utf8_lib=yes
29306 else
29307@@ -6910,12 +7012,12 @@
29308 cf_cv_header_path_utf8=
29309 cf_cv_library_path_utf8=
29310
29311-echo "${as_me:-configure}:6913: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5
29312+echo "${as_me:-configure}:7015: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5
29313
29314 cf_save_LIBS="$LIBS"
29315
29316 cat >conftest.$ac_ext <<_ACEOF
29317-#line 6918 "configure"
29318+#line 7020 "configure"
29319 #include "confdefs.h"
29320
29321 #include <libutf8.h>
29322@@ -6928,16 +7030,16 @@
29323 }
29324 _ACEOF
29325 rm -f conftest.$ac_objext conftest$ac_exeext
29326-if { (eval echo "$as_me:6931: \"$ac_link\"") >&5
29327+if { (eval echo "$as_me:7033: \"$ac_link\"") >&5
29328   (eval $ac_link) 2>&5
29329   ac_status=$?
29330-  echo "$as_me:6934: \$? = $ac_status" >&5
29331+  echo "$as_me:7036: \$? = $ac_status" >&5
29332   (exit $ac_status); } &&
29333          { ac_try='test -s conftest$ac_exeext'
29334-  { (eval echo "$as_me:6937: \"$ac_try\"") >&5
29335+  { (eval echo "$as_me:7039: \"$ac_try\"") >&5
29336   (eval $ac_try) 2>&5
29337   ac_status=$?
29338-  echo "$as_me:6940: \$? = $ac_status" >&5
29339+  echo "$as_me:7042: \$? = $ac_status" >&5
29340   (exit $ac_status); }; }; then
29341
29342 	cf_cv_find_linkage_utf8=yes
29343@@ -6951,7 +7053,7 @@
29344 LIBS="-lutf8  $cf_save_LIBS"
29345
29346 cat >conftest.$ac_ext <<_ACEOF
29347-#line 6954 "configure"
29348+#line 7056 "configure"
29349 #include "confdefs.h"
29350
29351 #include <libutf8.h>
29352@@ -6964,16 +7066,16 @@
29353 }
29354 _ACEOF
29355 rm -f conftest.$ac_objext conftest$ac_exeext
29356-if { (eval echo "$as_me:6967: \"$ac_link\"") >&5
29357+if { (eval echo "$as_me:7069: \"$ac_link\"") >&5
29358   (eval $ac_link) 2>&5
29359   ac_status=$?
29360-  echo "$as_me:6970: \$? = $ac_status" >&5
29361+  echo "$as_me:7072: \$? = $ac_status" >&5
29362   (exit $ac_status); } &&
29363          { ac_try='test -s conftest$ac_exeext'
29364-  { (eval echo "$as_me:6973: \"$ac_try\"") >&5
29365+  { (eval echo "$as_me:7075: \"$ac_try\"") >&5
29366   (eval $ac_try) 2>&5
29367   ac_status=$?
29368-  echo "$as_me:6976: \$? = $ac_status" >&5
29369+  echo "$as_me:7078: \$? = $ac_status" >&5
29370   (exit $ac_status); }; }; then
29371
29372 	cf_cv_find_linkage_utf8=yes
29373@@ -6990,9 +7092,9 @@
29374
29375 	test -n "$verbose" && echo "	find linkage for utf8 library" 1>&6
29376
29377-echo "${as_me:-configure}:6993: testing find linkage for utf8 library ..." 1>&5
29378+echo "${as_me:-configure}:7095: testing find linkage for utf8 library ..." 1>&5
29379
29380-echo "${as_me:-configure}:6995: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5
29381+echo "${as_me:-configure}:7097: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5
29382
29383 	cf_save_CPPFLAGS="$CPPFLAGS"
29384 	cf_test_CPPFLAGS="$CPPFLAGS"
29385@@ -7083,7 +7185,7 @@
29386 		if test -d $cf_cv_header_path_utf8 ; then
29387 			test -n "$verbose" && echo "	... testing $cf_cv_header_path_utf8" 1>&6
29388
29389-echo "${as_me:-configure}:7086: testing ... testing $cf_cv_header_path_utf8 ..." 1>&5
29390+echo "${as_me:-configure}:7188: testing ... testing $cf_cv_header_path_utf8 ..." 1>&5
29391
29392 			CPPFLAGS="$cf_save_CPPFLAGS"
29393
29394@@ -7091,7 +7193,7 @@
29395 	CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_utf8"
29396
29397 			cat >conftest.$ac_ext <<_ACEOF
29398-#line 7094 "configure"
29399+#line 7196 "configure"
29400 #include "confdefs.h"
29401
29402 #include <libutf8.h>
29403@@ -7104,21 +7206,21 @@
29404 }
29405 _ACEOF
29406 rm -f conftest.$ac_objext
29407-if { (eval echo "$as_me:7107: \"$ac_compile\"") >&5
29408+if { (eval echo "$as_me:7209: \"$ac_compile\"") >&5
29409   (eval $ac_compile) 2>&5
29410   ac_status=$?
29411-  echo "$as_me:7110: \$? = $ac_status" >&5
29412+  echo "$as_me:7212: \$? = $ac_status" >&5
29413   (exit $ac_status); } &&
29414          { ac_try='test -s conftest.$ac_objext'
29415-  { (eval echo "$as_me:7113: \"$ac_try\"") >&5
29416+  { (eval echo "$as_me:7215: \"$ac_try\"") >&5
29417   (eval $ac_try) 2>&5
29418   ac_status=$?
29419-  echo "$as_me:7116: \$? = $ac_status" >&5
29420+  echo "$as_me:7218: \$? = $ac_status" >&5
29421   (exit $ac_status); }; }; then
29422
29423 				test -n "$verbose" && echo "	... found utf8 headers in $cf_cv_header_path_utf8" 1>&6
29424
29425-echo "${as_me:-configure}:7121: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5
29426+echo "${as_me:-configure}:7223: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5
29427
29428 				cf_cv_find_linkage_utf8=maybe
29429 				cf_test_CPPFLAGS="$CPPFLAGS"
29430@@ -7136,7 +7238,7 @@
29431
29432 	if test "$cf_cv_find_linkage_utf8" = maybe ; then
29433
29434-echo "${as_me:-configure}:7139: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5
29435+echo "${as_me:-configure}:7241: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5
29436
29437 		cf_save_LIBS="$LIBS"
29438 		cf_save_LDFLAGS="$LDFLAGS"
29439@@ -7211,13 +7313,13 @@
29440 				if test -d $cf_cv_library_path_utf8 ; then
29441 					test -n "$verbose" && echo "	... testing $cf_cv_library_path_utf8" 1>&6
29442
29443-echo "${as_me:-configure}:7214: testing ... testing $cf_cv_library_path_utf8 ..." 1>&5
29444+echo "${as_me:-configure}:7316: testing ... testing $cf_cv_library_path_utf8 ..." 1>&5
29445
29446 					CPPFLAGS="$cf_test_CPPFLAGS"
29447 					LIBS="-lutf8  $cf_save_LIBS"
29448 					LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_utf8"
29449 					cat >conftest.$ac_ext <<_ACEOF
29450-#line 7220 "configure"
29451+#line 7322 "configure"
29452 #include "confdefs.h"
29453
29454 #include <libutf8.h>
29455@@ -7230,21 +7332,21 @@
29456 }
29457 _ACEOF
29458 rm -f conftest.$ac_objext conftest$ac_exeext
29459-if { (eval echo "$as_me:7233: \"$ac_link\"") >&5
29460+if { (eval echo "$as_me:7335: \"$ac_link\"") >&5
29461   (eval $ac_link) 2>&5
29462   ac_status=$?
29463-  echo "$as_me:7236: \$? = $ac_status" >&5
29464+  echo "$as_me:7338: \$? = $ac_status" >&5
29465   (exit $ac_status); } &&
29466          { ac_try='test -s conftest$ac_exeext'
29467-  { (eval echo "$as_me:7239: \"$ac_try\"") >&5
29468+  { (eval echo "$as_me:7341: \"$ac_try\"") >&5
29469   (eval $ac_try) 2>&5
29470   ac_status=$?
29471-  echo "$as_me:7242: \$? = $ac_status" >&5
29472+  echo "$as_me:7344: \$? = $ac_status" >&5
29473   (exit $ac_status); }; }; then
29474
29475 					test -n "$verbose" && echo "	... found utf8 library in $cf_cv_library_path_utf8" 1>&6
29476
29477-echo "${as_me:-configure}:7247: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5
29478+echo "${as_me:-configure}:7349: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5
29479
29480 					cf_cv_find_linkage_utf8=yes
29481 					cf_cv_library_file_utf8="-lutf8"
29482@@ -7286,7 +7388,7 @@
29483 fi
29484 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
29485 fi
29486-echo "$as_me:7289: result: $cf_cv_utf8_lib" >&5
29487+echo "$as_me:7391: result: $cf_cv_utf8_lib" >&5
29488 echo "${ECHO_T}$cf_cv_utf8_lib" >&6
29489
29490 # HAVE_LIBUTF8_H is used by ncurses if curses.h is shared between
29491@@ -7324,7 +7426,7 @@
29492 	CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir"
29493
29494 			  cat >conftest.$ac_ext <<_ACEOF
29495-#line 7327 "configure"
29496+#line 7429 "configure"
29497 #include "confdefs.h"
29498 #include <stdio.h>
29499 int
29500@@ -7336,16 +7438,16 @@
29501 }
29502 _ACEOF
29503 rm -f conftest.$ac_objext
29504-if { (eval echo "$as_me:7339: \"$ac_compile\"") >&5
29505+if { (eval echo "$as_me:7441: \"$ac_compile\"") >&5
29506   (eval $ac_compile) 2>&5
29507   ac_status=$?
29508-  echo "$as_me:7342: \$? = $ac_status" >&5
29509+  echo "$as_me:7444: \$? = $ac_status" >&5
29510   (exit $ac_status); } &&
29511          { ac_try='test -s conftest.$ac_objext'
29512-  { (eval echo "$as_me:7345: \"$ac_try\"") >&5
29513+  { (eval echo "$as_me:7447: \"$ac_try\"") >&5
29514   (eval $ac_try) 2>&5
29515   ac_status=$?
29516-  echo "$as_me:7348: \$? = $ac_status" >&5
29517+  echo "$as_me:7450: \$? = $ac_status" >&5
29518   (exit $ac_status); }; }; then
29519   :
29520 else
29521@@ -7362,7 +7464,7 @@
29522 		if test "$cf_have_incdir" = no ; then
29523 		  test -n "$verbose" && echo "	adding $cf_add_incdir to include-path" 1>&6
29524
29525-echo "${as_me:-configure}:7365: testing adding $cf_add_incdir to include-path ..." 1>&5
29526+echo "${as_me:-configure}:7467: testing adding $cf_add_incdir to include-path ..." 1>&5
29527
29528 		  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
29529
29530@@ -7398,7 +7500,7 @@
29531 			if test "$cf_have_libdir" = no ; then
29532 				test -n "$verbose" && echo "	adding $cf_add_libdir to library-path" 1>&6
29533
29534-echo "${as_me:-configure}:7401: testing adding $cf_add_libdir to library-path ..." 1>&5
29535+echo "${as_me:-configure}:7503: testing adding $cf_add_libdir to library-path ..." 1>&5
29536
29537 				LDFLAGS="-L$cf_add_libdir $LDFLAGS"
29538 			fi
29539@@ -7428,13 +7530,13 @@
29540 cf_have_ncuconfig=no
29541
29542 if test "x${PKG_CONFIG:=none}" != xnone; then
29543-	echo "$as_me:7431: checking pkg-config for $cf_ncuconfig_root" >&5
29544+	echo "$as_me:7533: checking pkg-config for $cf_ncuconfig_root" >&5
29545 echo $ECHO_N "checking pkg-config for $cf_ncuconfig_root... $ECHO_C" >&6
29546 	if "$PKG_CONFIG" --exists $cf_ncuconfig_root ; then
29547-		echo "$as_me:7434: result: yes" >&5
29548+		echo "$as_me:7536: result: yes" >&5
29549 echo "${ECHO_T}yes" >&6
29550
29551-		echo "$as_me:7437: checking if the $cf_ncuconfig_root package files work" >&5
29552+		echo "$as_me:7539: checking if the $cf_ncuconfig_root package files work" >&5
29553 echo $ECHO_N "checking if the $cf_ncuconfig_root package files work... $ECHO_C" >&6
29554 		cf_have_ncuconfig=unknown
29555
29556@@ -7556,7 +7658,7 @@
29557 LIBS="$cf_add_libs"
29558
29559 		cat >conftest.$ac_ext <<_ACEOF
29560-#line 7559 "configure"
29561+#line 7661 "configure"
29562 #include "confdefs.h"
29563 #include <${cf_cv_ncurses_header:-curses.h}>
29564 int
29565@@ -7568,37 +7670,37 @@
29566 }
29567 _ACEOF
29568 rm -f conftest.$ac_objext conftest$ac_exeext
29569-if { (eval echo "$as_me:7571: \"$ac_link\"") >&5
29570+if { (eval echo "$as_me:7673: \"$ac_link\"") >&5
29571   (eval $ac_link) 2>&5
29572   ac_status=$?
29573-  echo "$as_me:7574: \$? = $ac_status" >&5
29574+  echo "$as_me:7676: \$? = $ac_status" >&5
29575   (exit $ac_status); } &&
29576          { ac_try='test -s conftest$ac_exeext'
29577-  { (eval echo "$as_me:7577: \"$ac_try\"") >&5
29578+  { (eval echo "$as_me:7679: \"$ac_try\"") >&5
29579   (eval $ac_try) 2>&5
29580   ac_status=$?
29581-  echo "$as_me:7580: \$? = $ac_status" >&5
29582+  echo "$as_me:7682: \$? = $ac_status" >&5
29583   (exit $ac_status); }; }; then
29584   if test "$cross_compiling" = yes; then
29585   cf_have_ncuconfig=maybe
29586 else
29587   cat >conftest.$ac_ext <<_ACEOF
29588-#line 7586 "configure"
29589+#line 7688 "configure"
29590 #include "confdefs.h"
29591 #include <${cf_cv_ncurses_header:-curses.h}>
29592 				int main(void)
29593 				{ char *xx = curses_version(); return (xx == 0); }
29594 _ACEOF
29595 rm -f conftest$ac_exeext
29596-if { (eval echo "$as_me:7593: \"$ac_link\"") >&5
29597+if { (eval echo "$as_me:7695: \"$ac_link\"") >&5
29598   (eval $ac_link) 2>&5
29599   ac_status=$?
29600-  echo "$as_me:7596: \$? = $ac_status" >&5
29601+  echo "$as_me:7698: \$? = $ac_status" >&5
29602   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
29603-  { (eval echo "$as_me:7598: \"$ac_try\"") >&5
29604+  { (eval echo "$as_me:7700: \"$ac_try\"") >&5
29605   (eval $ac_try) 2>&5
29606   ac_status=$?
29607-  echo "$as_me:7601: \$? = $ac_status" >&5
29608+  echo "$as_me:7703: \$? = $ac_status" >&5
29609   (exit $ac_status); }; }; then
29610   cf_have_ncuconfig=yes
29611 else
29612@@ -7615,7 +7717,7 @@
29613 cf_have_ncuconfig=no
29614 fi
29615 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
29616-		echo "$as_me:7618: result: $cf_have_ncuconfig" >&5
29617+		echo "$as_me:7720: result: $cf_have_ncuconfig" >&5
29618 echo "${ECHO_T}$cf_have_ncuconfig" >&6
29619 		test "$cf_have_ncuconfig" = maybe && cf_have_ncuconfig=yes
29620 		if test "$cf_have_ncuconfig" != "yes"
29621@@ -7631,7 +7733,7 @@
29622
29623 			NCURSES_CONFIG_PKG=$cf_ncuconfig_root
29624
29625-echo "$as_me:7634: checking for terminfo header" >&5
29626+echo "$as_me:7736: checking for terminfo header" >&5
29627 echo $ECHO_N "checking for terminfo header... $ECHO_C" >&6
29628 if test "${cf_cv_term_header+set}" = set; then
29629   echo $ECHO_N "(cached) $ECHO_C" >&6
29630@@ -7649,7 +7751,7 @@
29631 for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h"
29632 do
29633 cat >conftest.$ac_ext <<_ACEOF
29634-#line 7652 "configure"
29635+#line 7754 "configure"
29636 #include "confdefs.h"
29637 #include <stdio.h>
29638 #include <${cf_cv_ncurses_header:-curses.h}>
29639@@ -7664,16 +7766,16 @@
29640 }
29641 _ACEOF
29642 rm -f conftest.$ac_objext
29643-if { (eval echo "$as_me:7667: \"$ac_compile\"") >&5
29644+if { (eval echo "$as_me:7769: \"$ac_compile\"") >&5
29645   (eval $ac_compile) 2>&5
29646   ac_status=$?
29647-  echo "$as_me:7670: \$? = $ac_status" >&5
29648+  echo "$as_me:7772: \$? = $ac_status" >&5
29649   (exit $ac_status); } &&
29650          { ac_try='test -s conftest.$ac_objext'
29651-  { (eval echo "$as_me:7673: \"$ac_try\"") >&5
29652+  { (eval echo "$as_me:7775: \"$ac_try\"") >&5
29653   (eval $ac_try) 2>&5
29654   ac_status=$?
29655-  echo "$as_me:7676: \$? = $ac_status" >&5
29656+  echo "$as_me:7778: \$? = $ac_status" >&5
29657   (exit $ac_status); }; }; then
29658
29659 	cf_cv_term_header="$cf_test"
29660@@ -7689,7 +7791,7 @@
29661 done
29662
29663 fi
29664-echo "$as_me:7692: result: $cf_cv_term_header" >&5
29665+echo "$as_me:7794: result: $cf_cv_term_header" >&5
29666 echo "${ECHO_T}$cf_cv_term_header" >&6
29667
29668 # Set definitions to allow ifdef'ing to accommodate subdirectories
29669@@ -7724,7 +7826,7 @@
29670 		fi
29671
29672 	else
29673-		echo "$as_me:7727: result: no" >&5
29674+		echo "$as_me:7829: result: no" >&5
29675 echo "${ECHO_T}no" >&6
29676 		NCURSES_CONFIG_PKG=none
29677 	fi
29678@@ -7740,7 +7842,7 @@
29679   do
29680     # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
29681 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
29682-echo "$as_me:7743: checking for $ac_word" >&5
29683+echo "$as_me:7845: checking for $ac_word" >&5
29684 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
29685 if test "${ac_cv_prog_NCURSES_CONFIG+set}" = set; then
29686   echo $ECHO_N "(cached) $ECHO_C" >&6
29687@@ -7755,7 +7857,7 @@
29688   test -z "$ac_dir" && ac_dir=.
29689   $as_executable_p "$ac_dir/$ac_word" || continue
29690 ac_cv_prog_NCURSES_CONFIG="$ac_tool_prefix$ac_prog"
29691-echo "$as_me:7758: found $ac_dir/$ac_word" >&5
29692+echo "$as_me:7860: found $ac_dir/$ac_word" >&5
29693 break
29694 done
29695
29696@@ -7763,10 +7865,10 @@
29697 fi
29698 NCURSES_CONFIG=$ac_cv_prog_NCURSES_CONFIG
29699 if test -n "$NCURSES_CONFIG"; then
29700-  echo "$as_me:7766: result: $NCURSES_CONFIG" >&5
29701+  echo "$as_me:7868: result: $NCURSES_CONFIG" >&5
29702 echo "${ECHO_T}$NCURSES_CONFIG" >&6
29703 else
29704-  echo "$as_me:7769: result: no" >&5
29705+  echo "$as_me:7871: result: no" >&5
29706 echo "${ECHO_T}no" >&6
29707 fi
29708
29709@@ -7779,7 +7881,7 @@
29710 do
29711   # Extract the first word of "$ac_prog", so it can be a program name with args.
29712 set dummy $ac_prog; ac_word=$2
29713-echo "$as_me:7782: checking for $ac_word" >&5
29714+echo "$as_me:7884: checking for $ac_word" >&5
29715 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
29716 if test "${ac_cv_prog_ac_ct_NCURSES_CONFIG+set}" = set; then
29717   echo $ECHO_N "(cached) $ECHO_C" >&6
29718@@ -7794,7 +7896,7 @@
29719   test -z "$ac_dir" && ac_dir=.
29720   $as_executable_p "$ac_dir/$ac_word" || continue
29721 ac_cv_prog_ac_ct_NCURSES_CONFIG="$ac_prog"
29722-echo "$as_me:7797: found $ac_dir/$ac_word" >&5
29723+echo "$as_me:7899: found $ac_dir/$ac_word" >&5
29724 break
29725 done
29726
29727@@ -7802,10 +7904,10 @@
29728 fi
29729 ac_ct_NCURSES_CONFIG=$ac_cv_prog_ac_ct_NCURSES_CONFIG
29730 if test -n "$ac_ct_NCURSES_CONFIG"; then
29731-  echo "$as_me:7805: result: $ac_ct_NCURSES_CONFIG" >&5
29732+  echo "$as_me:7907: result: $ac_ct_NCURSES_CONFIG" >&5
29733 echo "${ECHO_T}$ac_ct_NCURSES_CONFIG" >&6
29734 else
29735-  echo "$as_me:7808: result: no" >&5
29736+  echo "$as_me:7910: result: no" >&5
29737 echo "${ECHO_T}no" >&6
29738 fi
29739
29740@@ -7934,7 +8036,7 @@
29741
29742 		# even with config script, some packages use no-override for curses.h
29743
29744-echo "$as_me:7937: checking if we have identified curses headers" >&5
29745+echo "$as_me:8039: checking if we have identified curses headers" >&5
29746 echo $ECHO_N "checking if we have identified curses headers... $ECHO_C" >&6
29747 if test "${cf_cv_ncurses_header+set}" = set; then
29748   echo $ECHO_N "(cached) $ECHO_C" >&6
29749@@ -7946,7 +8048,7 @@
29750 	curses.h $cf_cv_screen/curses.h
29751 do
29752 cat >conftest.$ac_ext <<_ACEOF
29753-#line 7949 "configure"
29754+#line 8051 "configure"
29755 #include "confdefs.h"
29756 #include <${cf_header}>
29757 int
29758@@ -7958,16 +8060,16 @@
29759 }
29760 _ACEOF
29761 rm -f conftest.$ac_objext
29762-if { (eval echo "$as_me:7961: \"$ac_compile\"") >&5
29763+if { (eval echo "$as_me:8063: \"$ac_compile\"") >&5
29764   (eval $ac_compile) 2>&5
29765   ac_status=$?
29766-  echo "$as_me:7964: \$? = $ac_status" >&5
29767+  echo "$as_me:8066: \$? = $ac_status" >&5
29768   (exit $ac_status); } &&
29769          { ac_try='test -s conftest.$ac_objext'
29770-  { (eval echo "$as_me:7967: \"$ac_try\"") >&5
29771+  { (eval echo "$as_me:8069: \"$ac_try\"") >&5
29772   (eval $ac_try) 2>&5
29773   ac_status=$?
29774-  echo "$as_me:7970: \$? = $ac_status" >&5
29775+  echo "$as_me:8072: \$? = $ac_status" >&5
29776   (exit $ac_status); }; }; then
29777   cf_cv_ncurses_header=$cf_header; break
29778 else
29779@@ -7978,11 +8080,11 @@
29780 done
29781
29782 fi
29783-echo "$as_me:7981: result: $cf_cv_ncurses_header" >&5
29784+echo "$as_me:8083: result: $cf_cv_ncurses_header" >&5
29785 echo "${ECHO_T}$cf_cv_ncurses_header" >&6
29786
29787 if test "$cf_cv_ncurses_header" = none ; then
29788-	{ { echo "$as_me:7985: error: No curses header-files found" >&5
29789+	{ { echo "$as_me:8087: error: No curses header-files found" >&5
29790 echo "$as_me: error: No curses header-files found" >&2;}
29791    { (exit 1); exit 1; }; }
29792 fi
29793@@ -7992,23 +8094,23 @@
29794 for ac_header in $cf_cv_ncurses_header
29795 do
29796 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
29797-echo "$as_me:7995: checking for $ac_header" >&5
29798+echo "$as_me:8097: checking for $ac_header" >&5
29799 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
29800 if eval "test \"\${$as_ac_Header+set}\" = set"; then
29801   echo $ECHO_N "(cached) $ECHO_C" >&6
29802 else
29803   cat >conftest.$ac_ext <<_ACEOF
29804-#line 8001 "configure"
29805+#line 8103 "configure"
29806 #include "confdefs.h"
29807 #include <$ac_header>
29808 _ACEOF
29809-if { (eval echo "$as_me:8005: \"$ac_cpp conftest.$ac_ext\"") >&5
29810+if { (eval echo "$as_me:8107: \"$ac_cpp conftest.$ac_ext\"") >&5
29811   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
29812   ac_status=$?
29813   egrep -v '^ *\+' conftest.er1 >conftest.err
29814   rm -f conftest.er1
29815   cat conftest.err >&5
29816-  echo "$as_me:8011: \$? = $ac_status" >&5
29817+  echo "$as_me:8113: \$? = $ac_status" >&5
29818   (exit $ac_status); } >/dev/null; then
29819   if test -s conftest.err; then
29820     ac_cpp_err=$ac_c_preproc_warn_flag
29821@@ -8027,7 +8129,7 @@
29822 fi
29823 rm -f conftest.err conftest.$ac_ext
29824 fi
29825-echo "$as_me:8030: result: `eval echo '${'$as_ac_Header'}'`" >&5
29826+echo "$as_me:8132: result: `eval echo '${'$as_ac_Header'}'`" >&5
29827 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
29828 if test `eval echo '${'$as_ac_Header'}'` = yes; then
29829   cat >>confdefs.h <<EOF
29830@@ -8083,7 +8185,7 @@
29831 	CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir"
29832
29833 			  cat >conftest.$ac_ext <<_ACEOF
29834-#line 8086 "configure"
29835+#line 8188 "configure"
29836 #include "confdefs.h"
29837 #include <stdio.h>
29838 int
29839@@ -8095,16 +8197,16 @@
29840 }
29841 _ACEOF
29842 rm -f conftest.$ac_objext
29843-if { (eval echo "$as_me:8098: \"$ac_compile\"") >&5
29844+if { (eval echo "$as_me:8200: \"$ac_compile\"") >&5
29845   (eval $ac_compile) 2>&5
29846   ac_status=$?
29847-  echo "$as_me:8101: \$? = $ac_status" >&5
29848+  echo "$as_me:8203: \$? = $ac_status" >&5
29849   (exit $ac_status); } &&
29850          { ac_try='test -s conftest.$ac_objext'
29851-  { (eval echo "$as_me:8104: \"$ac_try\"") >&5
29852+  { (eval echo "$as_me:8206: \"$ac_try\"") >&5
29853   (eval $ac_try) 2>&5
29854   ac_status=$?
29855-  echo "$as_me:8107: \$? = $ac_status" >&5
29856+  echo "$as_me:8209: \$? = $ac_status" >&5
29857   (exit $ac_status); }; }; then
29858   :
29859 else
29860@@ -8121,7 +8223,7 @@
29861 		if test "$cf_have_incdir" = no ; then
29862 		  test -n "$verbose" && echo "	adding $cf_add_incdir to include-path" 1>&6
29863
29864-echo "${as_me:-configure}:8124: testing adding $cf_add_incdir to include-path ..." 1>&5
29865+echo "${as_me:-configure}:8226: testing adding $cf_add_incdir to include-path ..." 1>&5
29866
29867 		  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
29868
29869@@ -8140,7 +8242,7 @@
29870
29871 }
29872
29873-echo "$as_me:8143: checking for $cf_ncuhdr_root header in include-path" >&5
29874+echo "$as_me:8245: checking for $cf_ncuhdr_root header in include-path" >&5
29875 echo $ECHO_N "checking for $cf_ncuhdr_root header in include-path... $ECHO_C" >&6
29876 if test "${cf_cv_ncurses_h+set}" = set; then
29877   echo $ECHO_N "(cached) $ECHO_C" >&6
29878@@ -8152,7 +8254,7 @@
29879 	do
29880
29881 	cat >conftest.$ac_ext <<_ACEOF
29882-#line 8155 "configure"
29883+#line 8257 "configure"
29884 #include "confdefs.h"
29885
29886 #include <$cf_header>
29887@@ -8176,16 +8278,16 @@
29888 }
29889 _ACEOF
29890 rm -f conftest.$ac_objext
29891-if { (eval echo "$as_me:8179: \"$ac_compile\"") >&5
29892+if { (eval echo "$as_me:8281: \"$ac_compile\"") >&5
29893   (eval $ac_compile) 2>&5
29894   ac_status=$?
29895-  echo "$as_me:8182: \$? = $ac_status" >&5
29896+  echo "$as_me:8284: \$? = $ac_status" >&5
29897   (exit $ac_status); } &&
29898          { ac_try='test -s conftest.$ac_objext'
29899-  { (eval echo "$as_me:8185: \"$ac_try\"") >&5
29900+  { (eval echo "$as_me:8287: \"$ac_try\"") >&5
29901   (eval $ac_try) 2>&5
29902   ac_status=$?
29903-  echo "$as_me:8188: \$? = $ac_status" >&5
29904+  echo "$as_me:8290: \$? = $ac_status" >&5
29905   (exit $ac_status); }; }; then
29906   cf_cv_ncurses_h=$cf_header
29907
29908@@ -8200,14 +8302,14 @@
29909 	done
29910
29911 fi
29912-echo "$as_me:8203: result: $cf_cv_ncurses_h" >&5
29913+echo "$as_me:8305: result: $cf_cv_ncurses_h" >&5
29914 echo "${ECHO_T}$cf_cv_ncurses_h" >&6
29915
29916 if test "$cf_cv_ncurses_h" != no ; then
29917 	cf_cv_ncurses_header=$cf_cv_ncurses_h
29918 else
29919
29920-echo "$as_me:8210: checking for $cf_ncuhdr_root include-path" >&5
29921+echo "$as_me:8312: checking for $cf_ncuhdr_root include-path" >&5
29922 echo $ECHO_N "checking for $cf_ncuhdr_root include-path... $ECHO_C" >&6
29923 if test "${cf_cv_ncurses_h2+set}" = set; then
29924   echo $ECHO_N "(cached) $ECHO_C" >&6
29925@@ -8328,7 +8430,7 @@
29926 	CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir"
29927
29928 			  cat >conftest.$ac_ext <<_ACEOF
29929-#line 8331 "configure"
29930+#line 8433 "configure"
29931 #include "confdefs.h"
29932 #include <stdio.h>
29933 int
29934@@ -8340,16 +8442,16 @@
29935 }
29936 _ACEOF
29937 rm -f conftest.$ac_objext
29938-if { (eval echo "$as_me:8343: \"$ac_compile\"") >&5
29939+if { (eval echo "$as_me:8445: \"$ac_compile\"") >&5
29940   (eval $ac_compile) 2>&5
29941   ac_status=$?
29942-  echo "$as_me:8346: \$? = $ac_status" >&5
29943+  echo "$as_me:8448: \$? = $ac_status" >&5
29944   (exit $ac_status); } &&
29945          { ac_try='test -s conftest.$ac_objext'
29946-  { (eval echo "$as_me:8349: \"$ac_try\"") >&5
29947+  { (eval echo "$as_me:8451: \"$ac_try\"") >&5
29948   (eval $ac_try) 2>&5
29949   ac_status=$?
29950-  echo "$as_me:8352: \$? = $ac_status" >&5
29951+  echo "$as_me:8454: \$? = $ac_status" >&5
29952   (exit $ac_status); }; }; then
29953   :
29954 else
29955@@ -8366,7 +8468,7 @@
29956 		if test "$cf_have_incdir" = no ; then
29957 		  test -n "$verbose" && echo "	adding $cf_add_incdir to include-path" 1>&6
29958
29959-echo "${as_me:-configure}:8369: testing adding $cf_add_incdir to include-path ..." 1>&5
29960+echo "${as_me:-configure}:8471: testing adding $cf_add_incdir to include-path ..." 1>&5
29961
29962 		  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
29963
29964@@ -8389,7 +8491,7 @@
29965 		do
29966
29967 	cat >conftest.$ac_ext <<_ACEOF
29968-#line 8392 "configure"
29969+#line 8494 "configure"
29970 #include "confdefs.h"
29971
29972 #include <$cf_header>
29973@@ -8413,16 +8515,16 @@
29974 }
29975 _ACEOF
29976 rm -f conftest.$ac_objext
29977-if { (eval echo "$as_me:8416: \"$ac_compile\"") >&5
29978+if { (eval echo "$as_me:8518: \"$ac_compile\"") >&5
29979   (eval $ac_compile) 2>&5
29980   ac_status=$?
29981-  echo "$as_me:8419: \$? = $ac_status" >&5
29982+  echo "$as_me:8521: \$? = $ac_status" >&5
29983   (exit $ac_status); } &&
29984          { ac_try='test -s conftest.$ac_objext'
29985-  { (eval echo "$as_me:8422: \"$ac_try\"") >&5
29986+  { (eval echo "$as_me:8524: \"$ac_try\"") >&5
29987   (eval $ac_try) 2>&5
29988   ac_status=$?
29989-  echo "$as_me:8425: \$? = $ac_status" >&5
29990+  echo "$as_me:8527: \$? = $ac_status" >&5
29991   (exit $ac_status); }; }; then
29992   cf_cv_ncurses_h2=$cf_header
29993
29994@@ -8443,12 +8545,12 @@
29995 		CPPFLAGS="$cf_save2_CPPFLAGS"
29996 		test "$cf_cv_ncurses_h2" != no && break
29997 	done
29998-	test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:8446: error: not found" >&5
29999+	test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:8548: error: not found" >&5
30000 echo "$as_me: error: not found" >&2;}
30001    { (exit 1); exit 1; }; }
30002
30003 fi
30004-echo "$as_me:8451: result: $cf_cv_ncurses_h2" >&5
30005+echo "$as_me:8553: result: $cf_cv_ncurses_h2" >&5
30006 echo "${ECHO_T}$cf_cv_ncurses_h2" >&6
30007
30008 	cf_1st_incdir=`echo $cf_cv_ncurses_h2 | sed -e 's%/[^/]*$%%'`
30009@@ -8484,7 +8586,7 @@
30010 	CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir"
30011
30012 			  cat >conftest.$ac_ext <<_ACEOF
30013-#line 8487 "configure"
30014+#line 8589 "configure"
30015 #include "confdefs.h"
30016 #include <stdio.h>
30017 int
30018@@ -8496,16 +8598,16 @@
30019 }
30020 _ACEOF
30021 rm -f conftest.$ac_objext
30022-if { (eval echo "$as_me:8499: \"$ac_compile\"") >&5
30023+if { (eval echo "$as_me:8601: \"$ac_compile\"") >&5
30024   (eval $ac_compile) 2>&5
30025   ac_status=$?
30026-  echo "$as_me:8502: \$? = $ac_status" >&5
30027+  echo "$as_me:8604: \$? = $ac_status" >&5
30028   (exit $ac_status); } &&
30029          { ac_try='test -s conftest.$ac_objext'
30030-  { (eval echo "$as_me:8505: \"$ac_try\"") >&5
30031+  { (eval echo "$as_me:8607: \"$ac_try\"") >&5
30032   (eval $ac_try) 2>&5
30033   ac_status=$?
30034-  echo "$as_me:8508: \$? = $ac_status" >&5
30035+  echo "$as_me:8610: \$? = $ac_status" >&5
30036   (exit $ac_status); }; }; then
30037   :
30038 else
30039@@ -8522,7 +8624,7 @@
30040 		if test "$cf_have_incdir" = no ; then
30041 		  test -n "$verbose" && echo "	adding $cf_add_incdir to include-path" 1>&6
30042
30043-echo "${as_me:-configure}:8525: testing adding $cf_add_incdir to include-path ..." 1>&5
30044+echo "${as_me:-configure}:8627: testing adding $cf_add_incdir to include-path ..." 1>&5
30045
30046 		  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
30047
30048@@ -8570,7 +8672,7 @@
30049 	;;
30050 esac
30051
30052-echo "$as_me:8573: checking for terminfo header" >&5
30053+echo "$as_me:8675: checking for terminfo header" >&5
30054 echo $ECHO_N "checking for terminfo header... $ECHO_C" >&6
30055 if test "${cf_cv_term_header+set}" = set; then
30056   echo $ECHO_N "(cached) $ECHO_C" >&6
30057@@ -8588,7 +8690,7 @@
30058 for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h"
30059 do
30060 cat >conftest.$ac_ext <<_ACEOF
30061-#line 8591 "configure"
30062+#line 8693 "configure"
30063 #include "confdefs.h"
30064 #include <stdio.h>
30065 #include <${cf_cv_ncurses_header:-curses.h}>
30066@@ -8603,16 +8705,16 @@
30067 }
30068 _ACEOF
30069 rm -f conftest.$ac_objext
30070-if { (eval echo "$as_me:8606: \"$ac_compile\"") >&5
30071+if { (eval echo "$as_me:8708: \"$ac_compile\"") >&5
30072   (eval $ac_compile) 2>&5
30073   ac_status=$?
30074-  echo "$as_me:8609: \$? = $ac_status" >&5
30075+  echo "$as_me:8711: \$? = $ac_status" >&5
30076   (exit $ac_status); } &&
30077          { ac_try='test -s conftest.$ac_objext'
30078-  { (eval echo "$as_me:8612: \"$ac_try\"") >&5
30079+  { (eval echo "$as_me:8714: \"$ac_try\"") >&5
30080   (eval $ac_try) 2>&5
30081   ac_status=$?
30082-  echo "$as_me:8615: \$? = $ac_status" >&5
30083+  echo "$as_me:8717: \$? = $ac_status" >&5
30084   (exit $ac_status); }; }; then
30085
30086 	cf_cv_term_header="$cf_test"
30087@@ -8628,7 +8730,7 @@
30088 done
30089
30090 fi
30091-echo "$as_me:8631: result: $cf_cv_term_header" >&5
30092+echo "$as_me:8733: result: $cf_cv_term_header" >&5
30093 echo "${ECHO_T}$cf_cv_term_header" >&6
30094
30095 # Set definitions to allow ifdef'ing to accommodate subdirectories
30096@@ -8666,7 +8768,7 @@
30097 #define NCURSES 1
30098 EOF
30099
30100-echo "$as_me:8669: checking for ncurses version" >&5
30101+echo "$as_me:8771: checking for ncurses version" >&5
30102 echo $ECHO_N "checking for ncurses version... $ECHO_C" >&6
30103 if test "${cf_cv_ncurses_version+set}" = set; then
30104   echo $ECHO_N "(cached) $ECHO_C" >&6
30105@@ -8692,10 +8794,10 @@
30106 #endif
30107 EOF
30108 	cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out"
30109-	{ (eval echo "$as_me:8695: \"$cf_try\"") >&5
30110+	{ (eval echo "$as_me:8797: \"$cf_try\"") >&5
30111   (eval $cf_try) 2>&5
30112   ac_status=$?
30113-  echo "$as_me:8698: \$? = $ac_status" >&5
30114+  echo "$as_me:8800: \$? = $ac_status" >&5
30115   (exit $ac_status); }
30116 	if test -f conftest.out ; then
30117 		cf_out=`cat conftest.out | sed -e 's%^Autoconf %%' -e 's%^[^"]*"%%' -e 's%".*%%'`
30118@@ -8705,7 +8807,7 @@
30119
30120 else
30121   cat >conftest.$ac_ext <<_ACEOF
30122-#line 8708 "configure"
30123+#line 8810 "configure"
30124 #include "confdefs.h"
30125
30126 #include <${cf_cv_ncurses_header:-curses.h}>
30127@@ -8730,15 +8832,15 @@
30128 }
30129 _ACEOF
30130 rm -f conftest$ac_exeext
30131-if { (eval echo "$as_me:8733: \"$ac_link\"") >&5
30132+if { (eval echo "$as_me:8835: \"$ac_link\"") >&5
30133   (eval $ac_link) 2>&5
30134   ac_status=$?
30135-  echo "$as_me:8736: \$? = $ac_status" >&5
30136+  echo "$as_me:8838: \$? = $ac_status" >&5
30137   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
30138-  { (eval echo "$as_me:8738: \"$ac_try\"") >&5
30139+  { (eval echo "$as_me:8840: \"$ac_try\"") >&5
30140   (eval $ac_try) 2>&5
30141   ac_status=$?
30142-  echo "$as_me:8741: \$? = $ac_status" >&5
30143+  echo "$as_me:8843: \$? = $ac_status" >&5
30144   (exit $ac_status); }; }; then
30145
30146 	cf_cv_ncurses_version=`cat $cf_tempfile`
30147@@ -8752,7 +8854,7 @@
30148 	rm -f $cf_tempfile
30149
30150 fi
30151-echo "$as_me:8755: result: $cf_cv_ncurses_version" >&5
30152+echo "$as_me:8857: result: $cf_cv_ncurses_version" >&5
30153 echo "${ECHO_T}$cf_cv_ncurses_version" >&6
30154 test "$cf_cv_ncurses_version" = no ||
30155 cat >>confdefs.h <<\EOF
30156@@ -8765,7 +8867,7 @@
30157 	# to link gpm.
30158 cf_ncurses_LIBS=""
30159 cf_ncurses_SAVE="$LIBS"
30160-echo "$as_me:8768: checking for Gpm_Open in -lgpm" >&5
30161+echo "$as_me:8870: checking for Gpm_Open in -lgpm" >&5
30162 echo $ECHO_N "checking for Gpm_Open in -lgpm... $ECHO_C" >&6
30163 if test "${ac_cv_lib_gpm_Gpm_Open+set}" = set; then
30164   echo $ECHO_N "(cached) $ECHO_C" >&6
30165@@ -8773,7 +8875,7 @@
30166   ac_check_lib_save_LIBS=$LIBS
30167 LIBS="-lgpm  $LIBS"
30168 cat >conftest.$ac_ext <<_ACEOF
30169-#line 8776 "configure"
30170+#line 8878 "configure"
30171 #include "confdefs.h"
30172
30173 /* Override any gcc2 internal prototype to avoid an error.  */
30174@@ -8792,16 +8894,16 @@
30175 }
30176 _ACEOF
30177 rm -f conftest.$ac_objext conftest$ac_exeext
30178-if { (eval echo "$as_me:8795: \"$ac_link\"") >&5
30179+if { (eval echo "$as_me:8897: \"$ac_link\"") >&5
30180   (eval $ac_link) 2>&5
30181   ac_status=$?
30182-  echo "$as_me:8798: \$? = $ac_status" >&5
30183+  echo "$as_me:8900: \$? = $ac_status" >&5
30184   (exit $ac_status); } &&
30185          { ac_try='test -s conftest$ac_exeext'
30186-  { (eval echo "$as_me:8801: \"$ac_try\"") >&5
30187+  { (eval echo "$as_me:8903: \"$ac_try\"") >&5
30188   (eval $ac_try) 2>&5
30189   ac_status=$?
30190-  echo "$as_me:8804: \$? = $ac_status" >&5
30191+  echo "$as_me:8906: \$? = $ac_status" >&5
30192   (exit $ac_status); }; }; then
30193   ac_cv_lib_gpm_Gpm_Open=yes
30194 else
30195@@ -8812,10 +8914,10 @@
30196 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
30197 LIBS=$ac_check_lib_save_LIBS
30198 fi
30199-echo "$as_me:8815: result: $ac_cv_lib_gpm_Gpm_Open" >&5
30200+echo "$as_me:8917: result: $ac_cv_lib_gpm_Gpm_Open" >&5
30201 echo "${ECHO_T}$ac_cv_lib_gpm_Gpm_Open" >&6
30202 if test $ac_cv_lib_gpm_Gpm_Open = yes; then
30203-  echo "$as_me:8818: checking for initscr in -lgpm" >&5
30204+  echo "$as_me:8920: checking for initscr in -lgpm" >&5
30205 echo $ECHO_N "checking for initscr in -lgpm... $ECHO_C" >&6
30206 if test "${ac_cv_lib_gpm_initscr+set}" = set; then
30207   echo $ECHO_N "(cached) $ECHO_C" >&6
30208@@ -8823,7 +8925,7 @@
30209   ac_check_lib_save_LIBS=$LIBS
30210 LIBS="-lgpm  $LIBS"
30211 cat >conftest.$ac_ext <<_ACEOF
30212-#line 8826 "configure"
30213+#line 8928 "configure"
30214 #include "confdefs.h"
30215
30216 /* Override any gcc2 internal prototype to avoid an error.  */
30217@@ -8842,16 +8944,16 @@
30218 }
30219 _ACEOF
30220 rm -f conftest.$ac_objext conftest$ac_exeext
30221-if { (eval echo "$as_me:8845: \"$ac_link\"") >&5
30222+if { (eval echo "$as_me:8947: \"$ac_link\"") >&5
30223   (eval $ac_link) 2>&5
30224   ac_status=$?
30225-  echo "$as_me:8848: \$? = $ac_status" >&5
30226+  echo "$as_me:8950: \$? = $ac_status" >&5
30227   (exit $ac_status); } &&
30228          { ac_try='test -s conftest$ac_exeext'
30229-  { (eval echo "$as_me:8851: \"$ac_try\"") >&5
30230+  { (eval echo "$as_me:8953: \"$ac_try\"") >&5
30231   (eval $ac_try) 2>&5
30232   ac_status=$?
30233-  echo "$as_me:8854: \$? = $ac_status" >&5
30234+  echo "$as_me:8956: \$? = $ac_status" >&5
30235   (exit $ac_status); }; }; then
30236   ac_cv_lib_gpm_initscr=yes
30237 else
30238@@ -8862,7 +8964,7 @@
30239 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
30240 LIBS=$ac_check_lib_save_LIBS
30241 fi
30242-echo "$as_me:8865: result: $ac_cv_lib_gpm_initscr" >&5
30243+echo "$as_me:8967: result: $ac_cv_lib_gpm_initscr" >&5
30244 echo "${ECHO_T}$ac_cv_lib_gpm_initscr" >&6
30245 if test $ac_cv_lib_gpm_initscr = yes; then
30246   LIBS="$cf_ncurses_SAVE"
30247@@ -8877,7 +8979,7 @@
30248 	# This is only necessary if you are linking against an obsolete
30249 	# version of ncurses (but it should do no harm, since it's static).
30250 	if test "$cf_nculib_root" = ncurses ; then
30251-		echo "$as_me:8880: checking for tgoto in -lmytinfo" >&5
30252+		echo "$as_me:8982: checking for tgoto in -lmytinfo" >&5
30253 echo $ECHO_N "checking for tgoto in -lmytinfo... $ECHO_C" >&6
30254 if test "${ac_cv_lib_mytinfo_tgoto+set}" = set; then
30255   echo $ECHO_N "(cached) $ECHO_C" >&6
30256@@ -8885,7 +8987,7 @@
30257   ac_check_lib_save_LIBS=$LIBS
30258 LIBS="-lmytinfo  $LIBS"
30259 cat >conftest.$ac_ext <<_ACEOF
30260-#line 8888 "configure"
30261+#line 8990 "configure"
30262 #include "confdefs.h"
30263
30264 /* Override any gcc2 internal prototype to avoid an error.  */
30265@@ -8904,16 +9006,16 @@
30266 }
30267 _ACEOF
30268 rm -f conftest.$ac_objext conftest$ac_exeext
30269-if { (eval echo "$as_me:8907: \"$ac_link\"") >&5
30270+if { (eval echo "$as_me:9009: \"$ac_link\"") >&5
30271   (eval $ac_link) 2>&5
30272   ac_status=$?
30273-  echo "$as_me:8910: \$? = $ac_status" >&5
30274+  echo "$as_me:9012: \$? = $ac_status" >&5
30275   (exit $ac_status); } &&
30276          { ac_try='test -s conftest$ac_exeext'
30277-  { (eval echo "$as_me:8913: \"$ac_try\"") >&5
30278+  { (eval echo "$as_me:9015: \"$ac_try\"") >&5
30279   (eval $ac_try) 2>&5
30280   ac_status=$?
30281-  echo "$as_me:8916: \$? = $ac_status" >&5
30282+  echo "$as_me:9018: \$? = $ac_status" >&5
30283   (exit $ac_status); }; }; then
30284   ac_cv_lib_mytinfo_tgoto=yes
30285 else
30286@@ -8924,7 +9026,7 @@
30287 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
30288 LIBS=$ac_check_lib_save_LIBS
30289 fi
30290-echo "$as_me:8927: result: $ac_cv_lib_mytinfo_tgoto" >&5
30291+echo "$as_me:9029: result: $ac_cv_lib_mytinfo_tgoto" >&5
30292 echo "${ECHO_T}$ac_cv_lib_mytinfo_tgoto" >&6
30293 if test $ac_cv_lib_mytinfo_tgoto = yes; then
30294   cf_ncurses_LIBS="-lmytinfo $cf_ncurses_LIBS"
30295@@ -8973,13 +9075,13 @@
30296
30297 	eval 'cf_cv_have_lib_'$cf_nculib_root'=no'
30298 	cf_libdir=""
30299-	echo "$as_me:8976: checking for initscr" >&5
30300+	echo "$as_me:9078: checking for initscr" >&5
30301 echo $ECHO_N "checking for initscr... $ECHO_C" >&6
30302 if test "${ac_cv_func_initscr+set}" = set; then
30303   echo $ECHO_N "(cached) $ECHO_C" >&6
30304 else
30305   cat >conftest.$ac_ext <<_ACEOF
30306-#line 8982 "configure"
30307+#line 9084 "configure"
30308 #include "confdefs.h"
30309 #define initscr autoconf_temporary
30310 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
30311@@ -9010,16 +9112,16 @@
30312 }
30313 _ACEOF
30314 rm -f conftest.$ac_objext conftest$ac_exeext
30315-if { (eval echo "$as_me:9013: \"$ac_link\"") >&5
30316+if { (eval echo "$as_me:9115: \"$ac_link\"") >&5
30317   (eval $ac_link) 2>&5
30318   ac_status=$?
30319-  echo "$as_me:9016: \$? = $ac_status" >&5
30320+  echo "$as_me:9118: \$? = $ac_status" >&5
30321   (exit $ac_status); } &&
30322          { ac_try='test -s conftest$ac_exeext'
30323-  { (eval echo "$as_me:9019: \"$ac_try\"") >&5
30324+  { (eval echo "$as_me:9121: \"$ac_try\"") >&5
30325   (eval $ac_try) 2>&5
30326   ac_status=$?
30327-  echo "$as_me:9022: \$? = $ac_status" >&5
30328+  echo "$as_me:9124: \$? = $ac_status" >&5
30329   (exit $ac_status); }; }; then
30330   ac_cv_func_initscr=yes
30331 else
30332@@ -9029,18 +9131,18 @@
30333 fi
30334 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
30335 fi
30336-echo "$as_me:9032: result: $ac_cv_func_initscr" >&5
30337+echo "$as_me:9134: result: $ac_cv_func_initscr" >&5
30338 echo "${ECHO_T}$ac_cv_func_initscr" >&6
30339 if test $ac_cv_func_initscr = yes; then
30340   eval 'cf_cv_have_lib_'$cf_nculib_root'=yes'
30341 else
30342
30343 		cf_save_LIBS="$LIBS"
30344-		echo "$as_me:9039: checking for initscr in -l$cf_nculib_root" >&5
30345+		echo "$as_me:9141: checking for initscr in -l$cf_nculib_root" >&5
30346 echo $ECHO_N "checking for initscr in -l$cf_nculib_root... $ECHO_C" >&6
30347 		LIBS="-l$cf_nculib_root $LIBS"
30348 		cat >conftest.$ac_ext <<_ACEOF
30349-#line 9043 "configure"
30350+#line 9145 "configure"
30351 #include "confdefs.h"
30352 #include <${cf_cv_ncurses_header:-curses.h}>
30353 int
30354@@ -9052,25 +9154,25 @@
30355 }
30356 _ACEOF
30357 rm -f conftest.$ac_objext conftest$ac_exeext
30358-if { (eval echo "$as_me:9055: \"$ac_link\"") >&5
30359+if { (eval echo "$as_me:9157: \"$ac_link\"") >&5
30360   (eval $ac_link) 2>&5
30361   ac_status=$?
30362-  echo "$as_me:9058: \$? = $ac_status" >&5
30363+  echo "$as_me:9160: \$? = $ac_status" >&5
30364   (exit $ac_status); } &&
30365          { ac_try='test -s conftest$ac_exeext'
30366-  { (eval echo "$as_me:9061: \"$ac_try\"") >&5
30367+  { (eval echo "$as_me:9163: \"$ac_try\"") >&5
30368   (eval $ac_try) 2>&5
30369   ac_status=$?
30370-  echo "$as_me:9064: \$? = $ac_status" >&5
30371+  echo "$as_me:9166: \$? = $ac_status" >&5
30372   (exit $ac_status); }; }; then
30373-  echo "$as_me:9066: result: yes" >&5
30374+  echo "$as_me:9168: result: yes" >&5
30375 echo "${ECHO_T}yes" >&6
30376 			 eval 'cf_cv_have_lib_'$cf_nculib_root'=yes'
30377
30378 else
30379   echo "$as_me: failed program was:" >&5
30380 cat conftest.$ac_ext >&5
30381-echo "$as_me:9073: result: no" >&5
30382+echo "$as_me:9175: result: no" >&5
30383 echo "${ECHO_T}no" >&6
30384
30385 cf_search=
30386@@ -9138,11 +9240,11 @@
30387
30388 			for cf_libdir in $cf_search
30389 			do
30390-				echo "$as_me:9141: checking for -l$cf_nculib_root in $cf_libdir" >&5
30391+				echo "$as_me:9243: checking for -l$cf_nculib_root in $cf_libdir" >&5
30392 echo $ECHO_N "checking for -l$cf_nculib_root in $cf_libdir... $ECHO_C" >&6
30393 				LIBS="-L$cf_libdir -l$cf_nculib_root $cf_save_LIBS"
30394 				cat >conftest.$ac_ext <<_ACEOF
30395-#line 9145 "configure"
30396+#line 9247 "configure"
30397 #include "confdefs.h"
30398 #include <${cf_cv_ncurses_header:-curses.h}>
30399 int
30400@@ -9154,25 +9256,25 @@
30401 }
30402 _ACEOF
30403 rm -f conftest.$ac_objext conftest$ac_exeext
30404-if { (eval echo "$as_me:9157: \"$ac_link\"") >&5
30405+if { (eval echo "$as_me:9259: \"$ac_link\"") >&5
30406   (eval $ac_link) 2>&5
30407   ac_status=$?
30408-  echo "$as_me:9160: \$? = $ac_status" >&5
30409+  echo "$as_me:9262: \$? = $ac_status" >&5
30410   (exit $ac_status); } &&
30411          { ac_try='test -s conftest$ac_exeext'
30412-  { (eval echo "$as_me:9163: \"$ac_try\"") >&5
30413+  { (eval echo "$as_me:9265: \"$ac_try\"") >&5
30414   (eval $ac_try) 2>&5
30415   ac_status=$?
30416-  echo "$as_me:9166: \$? = $ac_status" >&5
30417+  echo "$as_me:9268: \$? = $ac_status" >&5
30418   (exit $ac_status); }; }; then
30419-  echo "$as_me:9168: result: yes" >&5
30420+  echo "$as_me:9270: result: yes" >&5
30421 echo "${ECHO_T}yes" >&6
30422 			 		 eval 'cf_cv_have_lib_'$cf_nculib_root'=yes'
30423 					 break
30424 else
30425   echo "$as_me: failed program was:" >&5
30426 cat conftest.$ac_ext >&5
30427-echo "$as_me:9175: result: no" >&5
30428+echo "$as_me:9277: result: no" >&5
30429 echo "${ECHO_T}no" >&6
30430 					 LIBS="$cf_save_LIBS"
30431 fi
30432@@ -9187,7 +9289,7 @@
30433 eval 'cf_found_library=$cf_cv_have_lib_'$cf_nculib_root
30434
30435 if test $cf_found_library = no ; then
30436-	{ { echo "$as_me:9190: error: Cannot link $cf_nculib_root library" >&5
30437+	{ { echo "$as_me:9292: error: Cannot link $cf_nculib_root library" >&5
30438 echo "$as_me: error: Cannot link $cf_nculib_root library" >&2;}
30439    { (exit 1); exit 1; }; }
30440 fi
30441@@ -9195,7 +9297,7 @@
30442 fi
30443
30444 if test -n "$cf_ncurses_LIBS" ; then
30445-	echo "$as_me:9198: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5
30446+	echo "$as_me:9300: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5
30447 echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS... $ECHO_C" >&6
30448 	cf_ncurses_SAVE="$LIBS"
30449 	for p in $cf_ncurses_LIBS ; do
30450@@ -9205,7 +9307,7 @@
30451 		fi
30452 	done
30453 	cat >conftest.$ac_ext <<_ACEOF
30454-#line 9208 "configure"
30455+#line 9310 "configure"
30456 #include "confdefs.h"
30457 #include <${cf_cv_ncurses_header:-curses.h}>
30458 int
30459@@ -9217,23 +9319,23 @@
30460 }
30461 _ACEOF
30462 rm -f conftest.$ac_objext conftest$ac_exeext
30463-if { (eval echo "$as_me:9220: \"$ac_link\"") >&5
30464+if { (eval echo "$as_me:9322: \"$ac_link\"") >&5
30465   (eval $ac_link) 2>&5
30466   ac_status=$?
30467-  echo "$as_me:9223: \$? = $ac_status" >&5
30468+  echo "$as_me:9325: \$? = $ac_status" >&5
30469   (exit $ac_status); } &&
30470          { ac_try='test -s conftest$ac_exeext'
30471-  { (eval echo "$as_me:9226: \"$ac_try\"") >&5
30472+  { (eval echo "$as_me:9328: \"$ac_try\"") >&5
30473   (eval $ac_try) 2>&5
30474   ac_status=$?
30475-  echo "$as_me:9229: \$? = $ac_status" >&5
30476+  echo "$as_me:9331: \$? = $ac_status" >&5
30477   (exit $ac_status); }; }; then
30478-  echo "$as_me:9231: result: yes" >&5
30479+  echo "$as_me:9333: result: yes" >&5
30480 echo "${ECHO_T}yes" >&6
30481 else
30482   echo "$as_me: failed program was:" >&5
30483 cat conftest.$ac_ext >&5
30484-echo "$as_me:9236: result: no" >&5
30485+echo "$as_me:9338: result: no" >&5
30486 echo "${ECHO_T}no" >&6
30487 		 LIBS="$cf_ncurses_SAVE"
30488 fi
30489@@ -9258,13 +9360,13 @@
30490 cf_have_ncuconfig=no
30491
30492 if test "x${PKG_CONFIG:=none}" != xnone; then
30493-	echo "$as_me:9261: checking pkg-config for $cf_ncuconfig_root" >&5
30494+	echo "$as_me:9363: checking pkg-config for $cf_ncuconfig_root" >&5
30495 echo $ECHO_N "checking pkg-config for $cf_ncuconfig_root... $ECHO_C" >&6
30496 	if "$PKG_CONFIG" --exists $cf_ncuconfig_root ; then
30497-		echo "$as_me:9264: result: yes" >&5
30498+		echo "$as_me:9366: result: yes" >&5
30499 echo "${ECHO_T}yes" >&6
30500
30501-		echo "$as_me:9267: checking if the $cf_ncuconfig_root package files work" >&5
30502+		echo "$as_me:9369: checking if the $cf_ncuconfig_root package files work" >&5
30503 echo $ECHO_N "checking if the $cf_ncuconfig_root package files work... $ECHO_C" >&6
30504 		cf_have_ncuconfig=unknown
30505
30506@@ -9386,7 +9488,7 @@
30507 LIBS="$cf_add_libs"
30508
30509 		cat >conftest.$ac_ext <<_ACEOF
30510-#line 9389 "configure"
30511+#line 9491 "configure"
30512 #include "confdefs.h"
30513 #include <${cf_cv_ncurses_header:-curses.h}>
30514 int
30515@@ -9398,37 +9500,37 @@
30516 }
30517 _ACEOF
30518 rm -f conftest.$ac_objext conftest$ac_exeext
30519-if { (eval echo "$as_me:9401: \"$ac_link\"") >&5
30520+if { (eval echo "$as_me:9503: \"$ac_link\"") >&5
30521   (eval $ac_link) 2>&5
30522   ac_status=$?
30523-  echo "$as_me:9404: \$? = $ac_status" >&5
30524+  echo "$as_me:9506: \$? = $ac_status" >&5
30525   (exit $ac_status); } &&
30526          { ac_try='test -s conftest$ac_exeext'
30527-  { (eval echo "$as_me:9407: \"$ac_try\"") >&5
30528+  { (eval echo "$as_me:9509: \"$ac_try\"") >&5
30529   (eval $ac_try) 2>&5
30530   ac_status=$?
30531-  echo "$as_me:9410: \$? = $ac_status" >&5
30532+  echo "$as_me:9512: \$? = $ac_status" >&5
30533   (exit $ac_status); }; }; then
30534   if test "$cross_compiling" = yes; then
30535   cf_have_ncuconfig=maybe
30536 else
30537   cat >conftest.$ac_ext <<_ACEOF
30538-#line 9416 "configure"
30539+#line 9518 "configure"
30540 #include "confdefs.h"
30541 #include <${cf_cv_ncurses_header:-curses.h}>
30542 				int main(void)
30543 				{ char *xx = curses_version(); return (xx == 0); }
30544 _ACEOF
30545 rm -f conftest$ac_exeext
30546-if { (eval echo "$as_me:9423: \"$ac_link\"") >&5
30547+if { (eval echo "$as_me:9525: \"$ac_link\"") >&5
30548   (eval $ac_link) 2>&5
30549   ac_status=$?
30550-  echo "$as_me:9426: \$? = $ac_status" >&5
30551+  echo "$as_me:9528: \$? = $ac_status" >&5
30552   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
30553-  { (eval echo "$as_me:9428: \"$ac_try\"") >&5
30554+  { (eval echo "$as_me:9530: \"$ac_try\"") >&5
30555   (eval $ac_try) 2>&5
30556   ac_status=$?
30557-  echo "$as_me:9431: \$? = $ac_status" >&5
30558+  echo "$as_me:9533: \$? = $ac_status" >&5
30559   (exit $ac_status); }; }; then
30560   cf_have_ncuconfig=yes
30561 else
30562@@ -9445,7 +9547,7 @@
30563 cf_have_ncuconfig=no
30564 fi
30565 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
30566-		echo "$as_me:9448: result: $cf_have_ncuconfig" >&5
30567+		echo "$as_me:9550: result: $cf_have_ncuconfig" >&5
30568 echo "${ECHO_T}$cf_have_ncuconfig" >&6
30569 		test "$cf_have_ncuconfig" = maybe && cf_have_ncuconfig=yes
30570 		if test "$cf_have_ncuconfig" != "yes"
30571@@ -9461,7 +9563,7 @@
30572
30573 			NCURSES_CONFIG_PKG=$cf_ncuconfig_root
30574
30575-echo "$as_me:9464: checking for terminfo header" >&5
30576+echo "$as_me:9566: checking for terminfo header" >&5
30577 echo $ECHO_N "checking for terminfo header... $ECHO_C" >&6
30578 if test "${cf_cv_term_header+set}" = set; then
30579   echo $ECHO_N "(cached) $ECHO_C" >&6
30580@@ -9479,7 +9581,7 @@
30581 for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h"
30582 do
30583 cat >conftest.$ac_ext <<_ACEOF
30584-#line 9482 "configure"
30585+#line 9584 "configure"
30586 #include "confdefs.h"
30587 #include <stdio.h>
30588 #include <${cf_cv_ncurses_header:-curses.h}>
30589@@ -9494,16 +9596,16 @@
30590 }
30591 _ACEOF
30592 rm -f conftest.$ac_objext
30593-if { (eval echo "$as_me:9497: \"$ac_compile\"") >&5
30594+if { (eval echo "$as_me:9599: \"$ac_compile\"") >&5
30595   (eval $ac_compile) 2>&5
30596   ac_status=$?
30597-  echo "$as_me:9500: \$? = $ac_status" >&5
30598+  echo "$as_me:9602: \$? = $ac_status" >&5
30599   (exit $ac_status); } &&
30600          { ac_try='test -s conftest.$ac_objext'
30601-  { (eval echo "$as_me:9503: \"$ac_try\"") >&5
30602+  { (eval echo "$as_me:9605: \"$ac_try\"") >&5
30603   (eval $ac_try) 2>&5
30604   ac_status=$?
30605-  echo "$as_me:9506: \$? = $ac_status" >&5
30606+  echo "$as_me:9608: \$? = $ac_status" >&5
30607   (exit $ac_status); }; }; then
30608
30609 	cf_cv_term_header="$cf_test"
30610@@ -9519,7 +9621,7 @@
30611 done
30612
30613 fi
30614-echo "$as_me:9522: result: $cf_cv_term_header" >&5
30615+echo "$as_me:9624: result: $cf_cv_term_header" >&5
30616 echo "${ECHO_T}$cf_cv_term_header" >&6
30617
30618 # Set definitions to allow ifdef'ing to accommodate subdirectories
30619@@ -9554,7 +9656,7 @@
30620 		fi
30621
30622 	else
30623-		echo "$as_me:9557: result: no" >&5
30624+		echo "$as_me:9659: result: no" >&5
30625 echo "${ECHO_T}no" >&6
30626 		NCURSES_CONFIG_PKG=none
30627 	fi
30628@@ -9570,7 +9672,7 @@
30629   do
30630     # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
30631 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
30632-echo "$as_me:9573: checking for $ac_word" >&5
30633+echo "$as_me:9675: checking for $ac_word" >&5
30634 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
30635 if test "${ac_cv_prog_NCURSES_CONFIG+set}" = set; then
30636   echo $ECHO_N "(cached) $ECHO_C" >&6
30637@@ -9585,7 +9687,7 @@
30638   test -z "$ac_dir" && ac_dir=.
30639   $as_executable_p "$ac_dir/$ac_word" || continue
30640 ac_cv_prog_NCURSES_CONFIG="$ac_tool_prefix$ac_prog"
30641-echo "$as_me:9588: found $ac_dir/$ac_word" >&5
30642+echo "$as_me:9690: found $ac_dir/$ac_word" >&5
30643 break
30644 done
30645
30646@@ -9593,10 +9695,10 @@
30647 fi
30648 NCURSES_CONFIG=$ac_cv_prog_NCURSES_CONFIG
30649 if test -n "$NCURSES_CONFIG"; then
30650-  echo "$as_me:9596: result: $NCURSES_CONFIG" >&5
30651+  echo "$as_me:9698: result: $NCURSES_CONFIG" >&5
30652 echo "${ECHO_T}$NCURSES_CONFIG" >&6
30653 else
30654-  echo "$as_me:9599: result: no" >&5
30655+  echo "$as_me:9701: result: no" >&5
30656 echo "${ECHO_T}no" >&6
30657 fi
30658
30659@@ -9609,7 +9711,7 @@
30660 do
30661   # Extract the first word of "$ac_prog", so it can be a program name with args.
30662 set dummy $ac_prog; ac_word=$2
30663-echo "$as_me:9612: checking for $ac_word" >&5
30664+echo "$as_me:9714: checking for $ac_word" >&5
30665 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
30666 if test "${ac_cv_prog_ac_ct_NCURSES_CONFIG+set}" = set; then
30667   echo $ECHO_N "(cached) $ECHO_C" >&6
30668@@ -9624,7 +9726,7 @@
30669   test -z "$ac_dir" && ac_dir=.
30670   $as_executable_p "$ac_dir/$ac_word" || continue
30671 ac_cv_prog_ac_ct_NCURSES_CONFIG="$ac_prog"
30672-echo "$as_me:9627: found $ac_dir/$ac_word" >&5
30673+echo "$as_me:9729: found $ac_dir/$ac_word" >&5
30674 break
30675 done
30676
30677@@ -9632,10 +9734,10 @@
30678 fi
30679 ac_ct_NCURSES_CONFIG=$ac_cv_prog_ac_ct_NCURSES_CONFIG
30680 if test -n "$ac_ct_NCURSES_CONFIG"; then
30681-  echo "$as_me:9635: result: $ac_ct_NCURSES_CONFIG" >&5
30682+  echo "$as_me:9737: result: $ac_ct_NCURSES_CONFIG" >&5
30683 echo "${ECHO_T}$ac_ct_NCURSES_CONFIG" >&6
30684 else
30685-  echo "$as_me:9638: result: no" >&5
30686+  echo "$as_me:9740: result: no" >&5
30687 echo "${ECHO_T}no" >&6
30688 fi
30689
30690@@ -9764,7 +9866,7 @@
30691
30692 		# even with config script, some packages use no-override for curses.h
30693
30694-echo "$as_me:9767: checking if we have identified curses headers" >&5
30695+echo "$as_me:9869: checking if we have identified curses headers" >&5
30696 echo $ECHO_N "checking if we have identified curses headers... $ECHO_C" >&6
30697 if test "${cf_cv_ncurses_header+set}" = set; then
30698   echo $ECHO_N "(cached) $ECHO_C" >&6
30699@@ -9776,7 +9878,7 @@
30700 	curses.h $cf_cv_screen/curses.h
30701 do
30702 cat >conftest.$ac_ext <<_ACEOF
30703-#line 9779 "configure"
30704+#line 9881 "configure"
30705 #include "confdefs.h"
30706 #include <${cf_header}>
30707 int
30708@@ -9788,16 +9890,16 @@
30709 }
30710 _ACEOF
30711 rm -f conftest.$ac_objext
30712-if { (eval echo "$as_me:9791: \"$ac_compile\"") >&5
30713+if { (eval echo "$as_me:9893: \"$ac_compile\"") >&5
30714   (eval $ac_compile) 2>&5
30715   ac_status=$?
30716-  echo "$as_me:9794: \$? = $ac_status" >&5
30717+  echo "$as_me:9896: \$? = $ac_status" >&5
30718   (exit $ac_status); } &&
30719          { ac_try='test -s conftest.$ac_objext'
30720-  { (eval echo "$as_me:9797: \"$ac_try\"") >&5
30721+  { (eval echo "$as_me:9899: \"$ac_try\"") >&5
30722   (eval $ac_try) 2>&5
30723   ac_status=$?
30724-  echo "$as_me:9800: \$? = $ac_status" >&5
30725+  echo "$as_me:9902: \$? = $ac_status" >&5
30726   (exit $ac_status); }; }; then
30727   cf_cv_ncurses_header=$cf_header; break
30728 else
30729@@ -9808,11 +9910,11 @@
30730 done
30731
30732 fi
30733-echo "$as_me:9811: result: $cf_cv_ncurses_header" >&5
30734+echo "$as_me:9913: result: $cf_cv_ncurses_header" >&5
30735 echo "${ECHO_T}$cf_cv_ncurses_header" >&6
30736
30737 if test "$cf_cv_ncurses_header" = none ; then
30738-	{ { echo "$as_me:9815: error: No curses header-files found" >&5
30739+	{ { echo "$as_me:9917: error: No curses header-files found" >&5
30740 echo "$as_me: error: No curses header-files found" >&2;}
30741    { (exit 1); exit 1; }; }
30742 fi
30743@@ -9822,23 +9924,23 @@
30744 for ac_header in $cf_cv_ncurses_header
30745 do
30746 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
30747-echo "$as_me:9825: checking for $ac_header" >&5
30748+echo "$as_me:9927: checking for $ac_header" >&5
30749 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
30750 if eval "test \"\${$as_ac_Header+set}\" = set"; then
30751   echo $ECHO_N "(cached) $ECHO_C" >&6
30752 else
30753   cat >conftest.$ac_ext <<_ACEOF
30754-#line 9831 "configure"
30755+#line 9933 "configure"
30756 #include "confdefs.h"
30757 #include <$ac_header>
30758 _ACEOF
30759-if { (eval echo "$as_me:9835: \"$ac_cpp conftest.$ac_ext\"") >&5
30760+if { (eval echo "$as_me:9937: \"$ac_cpp conftest.$ac_ext\"") >&5
30761   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
30762   ac_status=$?
30763   egrep -v '^ *\+' conftest.er1 >conftest.err
30764   rm -f conftest.er1
30765   cat conftest.err >&5
30766-  echo "$as_me:9841: \$? = $ac_status" >&5
30767+  echo "$as_me:9943: \$? = $ac_status" >&5
30768   (exit $ac_status); } >/dev/null; then
30769   if test -s conftest.err; then
30770     ac_cpp_err=$ac_c_preproc_warn_flag
30771@@ -9857,7 +9959,7 @@
30772 fi
30773 rm -f conftest.err conftest.$ac_ext
30774 fi
30775-echo "$as_me:9860: result: `eval echo '${'$as_ac_Header'}'`" >&5
30776+echo "$as_me:9962: result: `eval echo '${'$as_ac_Header'}'`" >&5
30777 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
30778 if test `eval echo '${'$as_ac_Header'}'` = yes; then
30779   cat >>confdefs.h <<EOF
30780@@ -9913,7 +10015,7 @@
30781 	CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir"
30782
30783 			  cat >conftest.$ac_ext <<_ACEOF
30784-#line 9916 "configure"
30785+#line 10018 "configure"
30786 #include "confdefs.h"
30787 #include <stdio.h>
30788 int
30789@@ -9925,16 +10027,16 @@
30790 }
30791 _ACEOF
30792 rm -f conftest.$ac_objext
30793-if { (eval echo "$as_me:9928: \"$ac_compile\"") >&5
30794+if { (eval echo "$as_me:10030: \"$ac_compile\"") >&5
30795   (eval $ac_compile) 2>&5
30796   ac_status=$?
30797-  echo "$as_me:9931: \$? = $ac_status" >&5
30798+  echo "$as_me:10033: \$? = $ac_status" >&5
30799   (exit $ac_status); } &&
30800          { ac_try='test -s conftest.$ac_objext'
30801-  { (eval echo "$as_me:9934: \"$ac_try\"") >&5
30802+  { (eval echo "$as_me:10036: \"$ac_try\"") >&5
30803   (eval $ac_try) 2>&5
30804   ac_status=$?
30805-  echo "$as_me:9937: \$? = $ac_status" >&5
30806+  echo "$as_me:10039: \$? = $ac_status" >&5
30807   (exit $ac_status); }; }; then
30808   :
30809 else
30810@@ -9951,7 +10053,7 @@
30811 		if test "$cf_have_incdir" = no ; then
30812 		  test -n "$verbose" && echo "	adding $cf_add_incdir to include-path" 1>&6
30813
30814-echo "${as_me:-configure}:9954: testing adding $cf_add_incdir to include-path ..." 1>&5
30815+echo "${as_me:-configure}:10056: testing adding $cf_add_incdir to include-path ..." 1>&5
30816
30817 		  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
30818
30819@@ -9970,7 +10072,7 @@
30820
30821 }
30822
30823-echo "$as_me:9973: checking for $cf_ncuhdr_root header in include-path" >&5
30824+echo "$as_me:10075: checking for $cf_ncuhdr_root header in include-path" >&5
30825 echo $ECHO_N "checking for $cf_ncuhdr_root header in include-path... $ECHO_C" >&6
30826 if test "${cf_cv_ncurses_h+set}" = set; then
30827   echo $ECHO_N "(cached) $ECHO_C" >&6
30828@@ -9982,7 +10084,7 @@
30829 	do
30830
30831 	cat >conftest.$ac_ext <<_ACEOF
30832-#line 9985 "configure"
30833+#line 10087 "configure"
30834 #include "confdefs.h"
30835
30836 #include <$cf_header>
30837@@ -10006,16 +10108,16 @@
30838 }
30839 _ACEOF
30840 rm -f conftest.$ac_objext
30841-if { (eval echo "$as_me:10009: \"$ac_compile\"") >&5
30842+if { (eval echo "$as_me:10111: \"$ac_compile\"") >&5
30843   (eval $ac_compile) 2>&5
30844   ac_status=$?
30845-  echo "$as_me:10012: \$? = $ac_status" >&5
30846+  echo "$as_me:10114: \$? = $ac_status" >&5
30847   (exit $ac_status); } &&
30848          { ac_try='test -s conftest.$ac_objext'
30849-  { (eval echo "$as_me:10015: \"$ac_try\"") >&5
30850+  { (eval echo "$as_me:10117: \"$ac_try\"") >&5
30851   (eval $ac_try) 2>&5
30852   ac_status=$?
30853-  echo "$as_me:10018: \$? = $ac_status" >&5
30854+  echo "$as_me:10120: \$? = $ac_status" >&5
30855   (exit $ac_status); }; }; then
30856   cf_cv_ncurses_h=$cf_header
30857
30858@@ -10030,14 +10132,14 @@
30859 	done
30860
30861 fi
30862-echo "$as_me:10033: result: $cf_cv_ncurses_h" >&5
30863+echo "$as_me:10135: result: $cf_cv_ncurses_h" >&5
30864 echo "${ECHO_T}$cf_cv_ncurses_h" >&6
30865
30866 if test "$cf_cv_ncurses_h" != no ; then
30867 	cf_cv_ncurses_header=$cf_cv_ncurses_h
30868 else
30869
30870-echo "$as_me:10040: checking for $cf_ncuhdr_root include-path" >&5
30871+echo "$as_me:10142: checking for $cf_ncuhdr_root include-path" >&5
30872 echo $ECHO_N "checking for $cf_ncuhdr_root include-path... $ECHO_C" >&6
30873 if test "${cf_cv_ncurses_h2+set}" = set; then
30874   echo $ECHO_N "(cached) $ECHO_C" >&6
30875@@ -10158,7 +10260,7 @@
30876 	CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir"
30877
30878 			  cat >conftest.$ac_ext <<_ACEOF
30879-#line 10161 "configure"
30880+#line 10263 "configure"
30881 #include "confdefs.h"
30882 #include <stdio.h>
30883 int
30884@@ -10170,16 +10272,16 @@
30885 }
30886 _ACEOF
30887 rm -f conftest.$ac_objext
30888-if { (eval echo "$as_me:10173: \"$ac_compile\"") >&5
30889+if { (eval echo "$as_me:10275: \"$ac_compile\"") >&5
30890   (eval $ac_compile) 2>&5
30891   ac_status=$?
30892-  echo "$as_me:10176: \$? = $ac_status" >&5
30893+  echo "$as_me:10278: \$? = $ac_status" >&5
30894   (exit $ac_status); } &&
30895          { ac_try='test -s conftest.$ac_objext'
30896-  { (eval echo "$as_me:10179: \"$ac_try\"") >&5
30897+  { (eval echo "$as_me:10281: \"$ac_try\"") >&5
30898   (eval $ac_try) 2>&5
30899   ac_status=$?
30900-  echo "$as_me:10182: \$? = $ac_status" >&5
30901+  echo "$as_me:10284: \$? = $ac_status" >&5
30902   (exit $ac_status); }; }; then
30903   :
30904 else
30905@@ -10196,7 +10298,7 @@
30906 		if test "$cf_have_incdir" = no ; then
30907 		  test -n "$verbose" && echo "	adding $cf_add_incdir to include-path" 1>&6
30908
30909-echo "${as_me:-configure}:10199: testing adding $cf_add_incdir to include-path ..." 1>&5
30910+echo "${as_me:-configure}:10301: testing adding $cf_add_incdir to include-path ..." 1>&5
30911
30912 		  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
30913
30914@@ -10219,7 +10321,7 @@
30915 		do
30916
30917 	cat >conftest.$ac_ext <<_ACEOF
30918-#line 10222 "configure"
30919+#line 10324 "configure"
30920 #include "confdefs.h"
30921
30922 #include <$cf_header>
30923@@ -10243,16 +10345,16 @@
30924 }
30925 _ACEOF
30926 rm -f conftest.$ac_objext
30927-if { (eval echo "$as_me:10246: \"$ac_compile\"") >&5
30928+if { (eval echo "$as_me:10348: \"$ac_compile\"") >&5
30929   (eval $ac_compile) 2>&5
30930   ac_status=$?
30931-  echo "$as_me:10249: \$? = $ac_status" >&5
30932+  echo "$as_me:10351: \$? = $ac_status" >&5
30933   (exit $ac_status); } &&
30934          { ac_try='test -s conftest.$ac_objext'
30935-  { (eval echo "$as_me:10252: \"$ac_try\"") >&5
30936+  { (eval echo "$as_me:10354: \"$ac_try\"") >&5
30937   (eval $ac_try) 2>&5
30938   ac_status=$?
30939-  echo "$as_me:10255: \$? = $ac_status" >&5
30940+  echo "$as_me:10357: \$? = $ac_status" >&5
30941   (exit $ac_status); }; }; then
30942   cf_cv_ncurses_h2=$cf_header
30943
30944@@ -10273,12 +10375,12 @@
30945 		CPPFLAGS="$cf_save2_CPPFLAGS"
30946 		test "$cf_cv_ncurses_h2" != no && break
30947 	done
30948-	test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:10276: error: not found" >&5
30949+	test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:10378: error: not found" >&5
30950 echo "$as_me: error: not found" >&2;}
30951    { (exit 1); exit 1; }; }
30952
30953 fi
30954-echo "$as_me:10281: result: $cf_cv_ncurses_h2" >&5
30955+echo "$as_me:10383: result: $cf_cv_ncurses_h2" >&5
30956 echo "${ECHO_T}$cf_cv_ncurses_h2" >&6
30957
30958 	cf_1st_incdir=`echo $cf_cv_ncurses_h2 | sed -e 's%/[^/]*$%%'`
30959@@ -10314,7 +10416,7 @@
30960 	CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir"
30961
30962 			  cat >conftest.$ac_ext <<_ACEOF
30963-#line 10317 "configure"
30964+#line 10419 "configure"
30965 #include "confdefs.h"
30966 #include <stdio.h>
30967 int
30968@@ -10326,16 +10428,16 @@
30969 }
30970 _ACEOF
30971 rm -f conftest.$ac_objext
30972-if { (eval echo "$as_me:10329: \"$ac_compile\"") >&5
30973+if { (eval echo "$as_me:10431: \"$ac_compile\"") >&5
30974   (eval $ac_compile) 2>&5
30975   ac_status=$?
30976-  echo "$as_me:10332: \$? = $ac_status" >&5
30977+  echo "$as_me:10434: \$? = $ac_status" >&5
30978   (exit $ac_status); } &&
30979          { ac_try='test -s conftest.$ac_objext'
30980-  { (eval echo "$as_me:10335: \"$ac_try\"") >&5
30981+  { (eval echo "$as_me:10437: \"$ac_try\"") >&5
30982   (eval $ac_try) 2>&5
30983   ac_status=$?
30984-  echo "$as_me:10338: \$? = $ac_status" >&5
30985+  echo "$as_me:10440: \$? = $ac_status" >&5
30986   (exit $ac_status); }; }; then
30987   :
30988 else
30989@@ -10352,7 +10454,7 @@
30990 		if test "$cf_have_incdir" = no ; then
30991 		  test -n "$verbose" && echo "	adding $cf_add_incdir to include-path" 1>&6
30992
30993-echo "${as_me:-configure}:10355: testing adding $cf_add_incdir to include-path ..." 1>&5
30994+echo "${as_me:-configure}:10457: testing adding $cf_add_incdir to include-path ..." 1>&5
30995
30996 		  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
30997
30998@@ -10400,7 +10502,7 @@
30999 	;;
31000 esac
31001
31002-echo "$as_me:10403: checking for terminfo header" >&5
31003+echo "$as_me:10505: checking for terminfo header" >&5
31004 echo $ECHO_N "checking for terminfo header... $ECHO_C" >&6
31005 if test "${cf_cv_term_header+set}" = set; then
31006   echo $ECHO_N "(cached) $ECHO_C" >&6
31007@@ -10418,7 +10520,7 @@
31008 for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h"
31009 do
31010 cat >conftest.$ac_ext <<_ACEOF
31011-#line 10421 "configure"
31012+#line 10523 "configure"
31013 #include "confdefs.h"
31014 #include <stdio.h>
31015 #include <${cf_cv_ncurses_header:-curses.h}>
31016@@ -10433,16 +10535,16 @@
31017 }
31018 _ACEOF
31019 rm -f conftest.$ac_objext
31020-if { (eval echo "$as_me:10436: \"$ac_compile\"") >&5
31021+if { (eval echo "$as_me:10538: \"$ac_compile\"") >&5
31022   (eval $ac_compile) 2>&5
31023   ac_status=$?
31024-  echo "$as_me:10439: \$? = $ac_status" >&5
31025+  echo "$as_me:10541: \$? = $ac_status" >&5
31026   (exit $ac_status); } &&
31027          { ac_try='test -s conftest.$ac_objext'
31028-  { (eval echo "$as_me:10442: \"$ac_try\"") >&5
31029+  { (eval echo "$as_me:10544: \"$ac_try\"") >&5
31030   (eval $ac_try) 2>&5
31031   ac_status=$?
31032-  echo "$as_me:10445: \$? = $ac_status" >&5
31033+  echo "$as_me:10547: \$? = $ac_status" >&5
31034   (exit $ac_status); }; }; then
31035
31036 	cf_cv_term_header="$cf_test"
31037@@ -10458,7 +10560,7 @@
31038 done
31039
31040 fi
31041-echo "$as_me:10461: result: $cf_cv_term_header" >&5
31042+echo "$as_me:10563: result: $cf_cv_term_header" >&5
31043 echo "${ECHO_T}$cf_cv_term_header" >&6
31044
31045 # Set definitions to allow ifdef'ing to accommodate subdirectories
31046@@ -10496,7 +10598,7 @@
31047 #define NCURSES 1
31048 EOF
31049
31050-echo "$as_me:10499: checking for ncurses version" >&5
31051+echo "$as_me:10601: checking for ncurses version" >&5
31052 echo $ECHO_N "checking for ncurses version... $ECHO_C" >&6
31053 if test "${cf_cv_ncurses_version+set}" = set; then
31054   echo $ECHO_N "(cached) $ECHO_C" >&6
31055@@ -10522,10 +10624,10 @@
31056 #endif
31057 EOF
31058 	cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out"
31059-	{ (eval echo "$as_me:10525: \"$cf_try\"") >&5
31060+	{ (eval echo "$as_me:10627: \"$cf_try\"") >&5
31061   (eval $cf_try) 2>&5
31062   ac_status=$?
31063-  echo "$as_me:10528: \$? = $ac_status" >&5
31064+  echo "$as_me:10630: \$? = $ac_status" >&5
31065   (exit $ac_status); }
31066 	if test -f conftest.out ; then
31067 		cf_out=`cat conftest.out | sed -e 's%^Autoconf %%' -e 's%^[^"]*"%%' -e 's%".*%%'`
31068@@ -10535,7 +10637,7 @@
31069
31070 else
31071   cat >conftest.$ac_ext <<_ACEOF
31072-#line 10538 "configure"
31073+#line 10640 "configure"
31074 #include "confdefs.h"
31075
31076 #include <${cf_cv_ncurses_header:-curses.h}>
31077@@ -10560,15 +10662,15 @@
31078 }
31079 _ACEOF
31080 rm -f conftest$ac_exeext
31081-if { (eval echo "$as_me:10563: \"$ac_link\"") >&5
31082+if { (eval echo "$as_me:10665: \"$ac_link\"") >&5
31083   (eval $ac_link) 2>&5
31084   ac_status=$?
31085-  echo "$as_me:10566: \$? = $ac_status" >&5
31086+  echo "$as_me:10668: \$? = $ac_status" >&5
31087   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
31088-  { (eval echo "$as_me:10568: \"$ac_try\"") >&5
31089+  { (eval echo "$as_me:10670: \"$ac_try\"") >&5
31090   (eval $ac_try) 2>&5
31091   ac_status=$?
31092-  echo "$as_me:10571: \$? = $ac_status" >&5
31093+  echo "$as_me:10673: \$? = $ac_status" >&5
31094   (exit $ac_status); }; }; then
31095
31096 	cf_cv_ncurses_version=`cat $cf_tempfile`
31097@@ -10582,7 +10684,7 @@
31098 	rm -f $cf_tempfile
31099
31100 fi
31101-echo "$as_me:10585: result: $cf_cv_ncurses_version" >&5
31102+echo "$as_me:10687: result: $cf_cv_ncurses_version" >&5
31103 echo "${ECHO_T}$cf_cv_ncurses_version" >&6
31104 test "$cf_cv_ncurses_version" = no ||
31105 cat >>confdefs.h <<\EOF
31106@@ -10595,7 +10697,7 @@
31107 	# to link gpm.
31108 cf_ncurses_LIBS=""
31109 cf_ncurses_SAVE="$LIBS"
31110-echo "$as_me:10598: checking for Gpm_Open in -lgpm" >&5
31111+echo "$as_me:10700: checking for Gpm_Open in -lgpm" >&5
31112 echo $ECHO_N "checking for Gpm_Open in -lgpm... $ECHO_C" >&6
31113 if test "${ac_cv_lib_gpm_Gpm_Open+set}" = set; then
31114   echo $ECHO_N "(cached) $ECHO_C" >&6
31115@@ -10603,7 +10705,7 @@
31116   ac_check_lib_save_LIBS=$LIBS
31117 LIBS="-lgpm  $LIBS"
31118 cat >conftest.$ac_ext <<_ACEOF
31119-#line 10606 "configure"
31120+#line 10708 "configure"
31121 #include "confdefs.h"
31122
31123 /* Override any gcc2 internal prototype to avoid an error.  */
31124@@ -10622,16 +10724,16 @@
31125 }
31126 _ACEOF
31127 rm -f conftest.$ac_objext conftest$ac_exeext
31128-if { (eval echo "$as_me:10625: \"$ac_link\"") >&5
31129+if { (eval echo "$as_me:10727: \"$ac_link\"") >&5
31130   (eval $ac_link) 2>&5
31131   ac_status=$?
31132-  echo "$as_me:10628: \$? = $ac_status" >&5
31133+  echo "$as_me:10730: \$? = $ac_status" >&5
31134   (exit $ac_status); } &&
31135          { ac_try='test -s conftest$ac_exeext'
31136-  { (eval echo "$as_me:10631: \"$ac_try\"") >&5
31137+  { (eval echo "$as_me:10733: \"$ac_try\"") >&5
31138   (eval $ac_try) 2>&5
31139   ac_status=$?
31140-  echo "$as_me:10634: \$? = $ac_status" >&5
31141+  echo "$as_me:10736: \$? = $ac_status" >&5
31142   (exit $ac_status); }; }; then
31143   ac_cv_lib_gpm_Gpm_Open=yes
31144 else
31145@@ -10642,10 +10744,10 @@
31146 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
31147 LIBS=$ac_check_lib_save_LIBS
31148 fi
31149-echo "$as_me:10645: result: $ac_cv_lib_gpm_Gpm_Open" >&5
31150+echo "$as_me:10747: result: $ac_cv_lib_gpm_Gpm_Open" >&5
31151 echo "${ECHO_T}$ac_cv_lib_gpm_Gpm_Open" >&6
31152 if test $ac_cv_lib_gpm_Gpm_Open = yes; then
31153-  echo "$as_me:10648: checking for initscr in -lgpm" >&5
31154+  echo "$as_me:10750: checking for initscr in -lgpm" >&5
31155 echo $ECHO_N "checking for initscr in -lgpm... $ECHO_C" >&6
31156 if test "${ac_cv_lib_gpm_initscr+set}" = set; then
31157   echo $ECHO_N "(cached) $ECHO_C" >&6
31158@@ -10653,7 +10755,7 @@
31159   ac_check_lib_save_LIBS=$LIBS
31160 LIBS="-lgpm  $LIBS"
31161 cat >conftest.$ac_ext <<_ACEOF
31162-#line 10656 "configure"
31163+#line 10758 "configure"
31164 #include "confdefs.h"
31165
31166 /* Override any gcc2 internal prototype to avoid an error.  */
31167@@ -10672,16 +10774,16 @@
31168 }
31169 _ACEOF
31170 rm -f conftest.$ac_objext conftest$ac_exeext
31171-if { (eval echo "$as_me:10675: \"$ac_link\"") >&5
31172+if { (eval echo "$as_me:10777: \"$ac_link\"") >&5
31173   (eval $ac_link) 2>&5
31174   ac_status=$?
31175-  echo "$as_me:10678: \$? = $ac_status" >&5
31176+  echo "$as_me:10780: \$? = $ac_status" >&5
31177   (exit $ac_status); } &&
31178          { ac_try='test -s conftest$ac_exeext'
31179-  { (eval echo "$as_me:10681: \"$ac_try\"") >&5
31180+  { (eval echo "$as_me:10783: \"$ac_try\"") >&5
31181   (eval $ac_try) 2>&5
31182   ac_status=$?
31183-  echo "$as_me:10684: \$? = $ac_status" >&5
31184+  echo "$as_me:10786: \$? = $ac_status" >&5
31185   (exit $ac_status); }; }; then
31186   ac_cv_lib_gpm_initscr=yes
31187 else
31188@@ -10692,7 +10794,7 @@
31189 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
31190 LIBS=$ac_check_lib_save_LIBS
31191 fi
31192-echo "$as_me:10695: result: $ac_cv_lib_gpm_initscr" >&5
31193+echo "$as_me:10797: result: $ac_cv_lib_gpm_initscr" >&5
31194 echo "${ECHO_T}$ac_cv_lib_gpm_initscr" >&6
31195 if test $ac_cv_lib_gpm_initscr = yes; then
31196   LIBS="$cf_ncurses_SAVE"
31197@@ -10707,7 +10809,7 @@
31198 	# This is only necessary if you are linking against an obsolete
31199 	# version of ncurses (but it should do no harm, since it's static).
31200 	if test "$cf_nculib_root" = ncurses ; then
31201-		echo "$as_me:10710: checking for tgoto in -lmytinfo" >&5
31202+		echo "$as_me:10812: checking for tgoto in -lmytinfo" >&5
31203 echo $ECHO_N "checking for tgoto in -lmytinfo... $ECHO_C" >&6
31204 if test "${ac_cv_lib_mytinfo_tgoto+set}" = set; then
31205   echo $ECHO_N "(cached) $ECHO_C" >&6
31206@@ -10715,7 +10817,7 @@
31207   ac_check_lib_save_LIBS=$LIBS
31208 LIBS="-lmytinfo  $LIBS"
31209 cat >conftest.$ac_ext <<_ACEOF
31210-#line 10718 "configure"
31211+#line 10820 "configure"
31212 #include "confdefs.h"
31213
31214 /* Override any gcc2 internal prototype to avoid an error.  */
31215@@ -10734,16 +10836,16 @@
31216 }
31217 _ACEOF
31218 rm -f conftest.$ac_objext conftest$ac_exeext
31219-if { (eval echo "$as_me:10737: \"$ac_link\"") >&5
31220+if { (eval echo "$as_me:10839: \"$ac_link\"") >&5
31221   (eval $ac_link) 2>&5
31222   ac_status=$?
31223-  echo "$as_me:10740: \$? = $ac_status" >&5
31224+  echo "$as_me:10842: \$? = $ac_status" >&5
31225   (exit $ac_status); } &&
31226          { ac_try='test -s conftest$ac_exeext'
31227-  { (eval echo "$as_me:10743: \"$ac_try\"") >&5
31228+  { (eval echo "$as_me:10845: \"$ac_try\"") >&5
31229   (eval $ac_try) 2>&5
31230   ac_status=$?
31231-  echo "$as_me:10746: \$? = $ac_status" >&5
31232+  echo "$as_me:10848: \$? = $ac_status" >&5
31233   (exit $ac_status); }; }; then
31234   ac_cv_lib_mytinfo_tgoto=yes
31235 else
31236@@ -10754,7 +10856,7 @@
31237 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
31238 LIBS=$ac_check_lib_save_LIBS
31239 fi
31240-echo "$as_me:10757: result: $ac_cv_lib_mytinfo_tgoto" >&5
31241+echo "$as_me:10859: result: $ac_cv_lib_mytinfo_tgoto" >&5
31242 echo "${ECHO_T}$ac_cv_lib_mytinfo_tgoto" >&6
31243 if test $ac_cv_lib_mytinfo_tgoto = yes; then
31244   cf_ncurses_LIBS="-lmytinfo $cf_ncurses_LIBS"
31245@@ -10803,13 +10905,13 @@
31246
31247 	eval 'cf_cv_have_lib_'$cf_nculib_root'=no'
31248 	cf_libdir=""
31249-	echo "$as_me:10806: checking for initscr" >&5
31250+	echo "$as_me:10908: checking for initscr" >&5
31251 echo $ECHO_N "checking for initscr... $ECHO_C" >&6
31252 if test "${ac_cv_func_initscr+set}" = set; then
31253   echo $ECHO_N "(cached) $ECHO_C" >&6
31254 else
31255   cat >conftest.$ac_ext <<_ACEOF
31256-#line 10812 "configure"
31257+#line 10914 "configure"
31258 #include "confdefs.h"
31259 #define initscr autoconf_temporary
31260 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
31261@@ -10840,16 +10942,16 @@
31262 }
31263 _ACEOF
31264 rm -f conftest.$ac_objext conftest$ac_exeext
31265-if { (eval echo "$as_me:10843: \"$ac_link\"") >&5
31266+if { (eval echo "$as_me:10945: \"$ac_link\"") >&5
31267   (eval $ac_link) 2>&5
31268   ac_status=$?
31269-  echo "$as_me:10846: \$? = $ac_status" >&5
31270+  echo "$as_me:10948: \$? = $ac_status" >&5
31271   (exit $ac_status); } &&
31272          { ac_try='test -s conftest$ac_exeext'
31273-  { (eval echo "$as_me:10849: \"$ac_try\"") >&5
31274+  { (eval echo "$as_me:10951: \"$ac_try\"") >&5
31275   (eval $ac_try) 2>&5
31276   ac_status=$?
31277-  echo "$as_me:10852: \$? = $ac_status" >&5
31278+  echo "$as_me:10954: \$? = $ac_status" >&5
31279   (exit $ac_status); }; }; then
31280   ac_cv_func_initscr=yes
31281 else
31282@@ -10859,18 +10961,18 @@
31283 fi
31284 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
31285 fi
31286-echo "$as_me:10862: result: $ac_cv_func_initscr" >&5
31287+echo "$as_me:10964: result: $ac_cv_func_initscr" >&5
31288 echo "${ECHO_T}$ac_cv_func_initscr" >&6
31289 if test $ac_cv_func_initscr = yes; then
31290   eval 'cf_cv_have_lib_'$cf_nculib_root'=yes'
31291 else
31292
31293 		cf_save_LIBS="$LIBS"
31294-		echo "$as_me:10869: checking for initscr in -l$cf_nculib_root" >&5
31295+		echo "$as_me:10971: checking for initscr in -l$cf_nculib_root" >&5
31296 echo $ECHO_N "checking for initscr in -l$cf_nculib_root... $ECHO_C" >&6
31297 		LIBS="-l$cf_nculib_root $LIBS"
31298 		cat >conftest.$ac_ext <<_ACEOF
31299-#line 10873 "configure"
31300+#line 10975 "configure"
31301 #include "confdefs.h"
31302 #include <${cf_cv_ncurses_header:-curses.h}>
31303 int
31304@@ -10882,25 +10984,25 @@
31305 }
31306 _ACEOF
31307 rm -f conftest.$ac_objext conftest$ac_exeext
31308-if { (eval echo "$as_me:10885: \"$ac_link\"") >&5
31309+if { (eval echo "$as_me:10987: \"$ac_link\"") >&5
31310   (eval $ac_link) 2>&5
31311   ac_status=$?
31312-  echo "$as_me:10888: \$? = $ac_status" >&5
31313+  echo "$as_me:10990: \$? = $ac_status" >&5
31314   (exit $ac_status); } &&
31315          { ac_try='test -s conftest$ac_exeext'
31316-  { (eval echo "$as_me:10891: \"$ac_try\"") >&5
31317+  { (eval echo "$as_me:10993: \"$ac_try\"") >&5
31318   (eval $ac_try) 2>&5
31319   ac_status=$?
31320-  echo "$as_me:10894: \$? = $ac_status" >&5
31321+  echo "$as_me:10996: \$? = $ac_status" >&5
31322   (exit $ac_status); }; }; then
31323-  echo "$as_me:10896: result: yes" >&5
31324+  echo "$as_me:10998: result: yes" >&5
31325 echo "${ECHO_T}yes" >&6
31326 			 eval 'cf_cv_have_lib_'$cf_nculib_root'=yes'
31327
31328 else
31329   echo "$as_me: failed program was:" >&5
31330 cat conftest.$ac_ext >&5
31331-echo "$as_me:10903: result: no" >&5
31332+echo "$as_me:11005: result: no" >&5
31333 echo "${ECHO_T}no" >&6
31334
31335 cf_search=
31336@@ -10968,11 +11070,11 @@
31337
31338 			for cf_libdir in $cf_search
31339 			do
31340-				echo "$as_me:10971: checking for -l$cf_nculib_root in $cf_libdir" >&5
31341+				echo "$as_me:11073: checking for -l$cf_nculib_root in $cf_libdir" >&5
31342 echo $ECHO_N "checking for -l$cf_nculib_root in $cf_libdir... $ECHO_C" >&6
31343 				LIBS="-L$cf_libdir -l$cf_nculib_root $cf_save_LIBS"
31344 				cat >conftest.$ac_ext <<_ACEOF
31345-#line 10975 "configure"
31346+#line 11077 "configure"
31347 #include "confdefs.h"
31348 #include <${cf_cv_ncurses_header:-curses.h}>
31349 int
31350@@ -10984,25 +11086,25 @@
31351 }
31352 _ACEOF
31353 rm -f conftest.$ac_objext conftest$ac_exeext
31354-if { (eval echo "$as_me:10987: \"$ac_link\"") >&5
31355+if { (eval echo "$as_me:11089: \"$ac_link\"") >&5
31356   (eval $ac_link) 2>&5
31357   ac_status=$?
31358-  echo "$as_me:10990: \$? = $ac_status" >&5
31359+  echo "$as_me:11092: \$? = $ac_status" >&5
31360   (exit $ac_status); } &&
31361          { ac_try='test -s conftest$ac_exeext'
31362-  { (eval echo "$as_me:10993: \"$ac_try\"") >&5
31363+  { (eval echo "$as_me:11095: \"$ac_try\"") >&5
31364   (eval $ac_try) 2>&5
31365   ac_status=$?
31366-  echo "$as_me:10996: \$? = $ac_status" >&5
31367+  echo "$as_me:11098: \$? = $ac_status" >&5
31368   (exit $ac_status); }; }; then
31369-  echo "$as_me:10998: result: yes" >&5
31370+  echo "$as_me:11100: result: yes" >&5
31371 echo "${ECHO_T}yes" >&6
31372 			 		 eval 'cf_cv_have_lib_'$cf_nculib_root'=yes'
31373 					 break
31374 else
31375   echo "$as_me: failed program was:" >&5
31376 cat conftest.$ac_ext >&5
31377-echo "$as_me:11005: result: no" >&5
31378+echo "$as_me:11107: result: no" >&5
31379 echo "${ECHO_T}no" >&6
31380 					 LIBS="$cf_save_LIBS"
31381 fi
31382@@ -11017,7 +11119,7 @@
31383 eval 'cf_found_library=$cf_cv_have_lib_'$cf_nculib_root
31384
31385 if test $cf_found_library = no ; then
31386-	{ { echo "$as_me:11020: error: Cannot link $cf_nculib_root library" >&5
31387+	{ { echo "$as_me:11122: error: Cannot link $cf_nculib_root library" >&5
31388 echo "$as_me: error: Cannot link $cf_nculib_root library" >&2;}
31389    { (exit 1); exit 1; }; }
31390 fi
31391@@ -11025,7 +11127,7 @@
31392 fi
31393
31394 if test -n "$cf_ncurses_LIBS" ; then
31395-	echo "$as_me:11028: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5
31396+	echo "$as_me:11130: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5
31397 echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS... $ECHO_C" >&6
31398 	cf_ncurses_SAVE="$LIBS"
31399 	for p in $cf_ncurses_LIBS ; do
31400@@ -11035,7 +11137,7 @@
31401 		fi
31402 	done
31403 	cat >conftest.$ac_ext <<_ACEOF
31404-#line 11038 "configure"
31405+#line 11140 "configure"
31406 #include "confdefs.h"
31407 #include <${cf_cv_ncurses_header:-curses.h}>
31408 int
31409@@ -11047,23 +11149,23 @@
31410 }
31411 _ACEOF
31412 rm -f conftest.$ac_objext conftest$ac_exeext
31413-if { (eval echo "$as_me:11050: \"$ac_link\"") >&5
31414+if { (eval echo "$as_me:11152: \"$ac_link\"") >&5
31415   (eval $ac_link) 2>&5
31416   ac_status=$?
31417-  echo "$as_me:11053: \$? = $ac_status" >&5
31418+  echo "$as_me:11155: \$? = $ac_status" >&5
31419   (exit $ac_status); } &&
31420          { ac_try='test -s conftest$ac_exeext'
31421-  { (eval echo "$as_me:11056: \"$ac_try\"") >&5
31422+  { (eval echo "$as_me:11158: \"$ac_try\"") >&5
31423   (eval $ac_try) 2>&5
31424   ac_status=$?
31425-  echo "$as_me:11059: \$? = $ac_status" >&5
31426+  echo "$as_me:11161: \$? = $ac_status" >&5
31427   (exit $ac_status); }; }; then
31428-  echo "$as_me:11061: result: yes" >&5
31429+  echo "$as_me:11163: result: yes" >&5
31430 echo "${ECHO_T}yes" >&6
31431 else
31432   echo "$as_me: failed program was:" >&5
31433 cat conftest.$ac_ext >&5
31434-echo "$as_me:11066: result: no" >&5
31435+echo "$as_me:11168: result: no" >&5
31436 echo "${ECHO_T}no" >&6
31437 		 LIBS="$cf_ncurses_SAVE"
31438 fi
31439@@ -11083,7 +11185,7 @@
31440
31441 	;;
31442 (pdcurses)
31443-	echo "$as_me:11086: checking for X" >&5
31444+	echo "$as_me:11188: checking for X" >&5
31445 echo $ECHO_N "checking for X... $ECHO_C" >&6
31446
31447 # Check whether --with-x or --without-x was given.
31448@@ -11184,17 +11286,17 @@
31449   # Guess where to find include files, by looking for Intrinsic.h.
31450   # First, try using that file with no special directory specified.
31451   cat >conftest.$ac_ext <<_ACEOF
31452-#line 11187 "configure"
31453+#line 11289 "configure"
31454 #include "confdefs.h"
31455 #include <X11/Intrinsic.h>
31456 _ACEOF
31457-if { (eval echo "$as_me:11191: \"$ac_cpp conftest.$ac_ext\"") >&5
31458+if { (eval echo "$as_me:11293: \"$ac_cpp conftest.$ac_ext\"") >&5
31459   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
31460   ac_status=$?
31461   egrep -v '^ *\+' conftest.er1 >conftest.err
31462   rm -f conftest.er1
31463   cat conftest.err >&5
31464-  echo "$as_me:11197: \$? = $ac_status" >&5
31465+  echo "$as_me:11299: \$? = $ac_status" >&5
31466   (exit $ac_status); } >/dev/null; then
31467   if test -s conftest.err; then
31468     ac_cpp_err=$ac_c_preproc_warn_flag
31469@@ -11227,7 +11329,7 @@
31470   ac_save_LIBS=$LIBS
31471   LIBS="-lXt $LIBS"
31472   cat >conftest.$ac_ext <<_ACEOF
31473-#line 11230 "configure"
31474+#line 11332 "configure"
31475 #include "confdefs.h"
31476 #include <X11/Intrinsic.h>
31477 int
31478@@ -11239,16 +11341,16 @@
31479 }
31480 _ACEOF
31481 rm -f conftest.$ac_objext conftest$ac_exeext
31482-if { (eval echo "$as_me:11242: \"$ac_link\"") >&5
31483+if { (eval echo "$as_me:11344: \"$ac_link\"") >&5
31484   (eval $ac_link) 2>&5
31485   ac_status=$?
31486-  echo "$as_me:11245: \$? = $ac_status" >&5
31487+  echo "$as_me:11347: \$? = $ac_status" >&5
31488   (exit $ac_status); } &&
31489          { ac_try='test -s conftest$ac_exeext'
31490-  { (eval echo "$as_me:11248: \"$ac_try\"") >&5
31491+  { (eval echo "$as_me:11350: \"$ac_try\"") >&5
31492   (eval $ac_try) 2>&5
31493   ac_status=$?
31494-  echo "$as_me:11251: \$? = $ac_status" >&5
31495+  echo "$as_me:11353: \$? = $ac_status" >&5
31496   (exit $ac_status); }; }; then
31497   LIBS=$ac_save_LIBS
31498 # We can link X programs with no special library path.
31499@@ -11286,7 +11388,7 @@
31500 fi # $with_x != no
31501
31502 if test "$have_x" != yes; then
31503-  echo "$as_me:11289: result: $have_x" >&5
31504+  echo "$as_me:11391: result: $have_x" >&5
31505 echo "${ECHO_T}$have_x" >&6
31506   no_x=yes
31507 else
31508@@ -11296,7 +11398,7 @@
31509   # Update the cache value to reflect the command line values.
31510   ac_cv_have_x="have_x=yes \
31511 		ac_x_includes=$x_includes ac_x_libraries=$x_libraries"
31512-  echo "$as_me:11299: result: libraries $x_libraries, headers $x_includes" >&5
31513+  echo "$as_me:11401: result: libraries $x_libraries, headers $x_includes" >&5
31514 echo "${ECHO_T}libraries $x_libraries, headers $x_includes" >&6
31515 fi
31516
31517@@ -11320,11 +11422,11 @@
31518     # others require no space.  Words are not sufficient . . . .
31519     case `(uname -sr) 2>/dev/null` in
31520     "SunOS 5"*)
31521-      echo "$as_me:11323: checking whether -R must be followed by a space" >&5
31522+      echo "$as_me:11425: checking whether -R must be followed by a space" >&5
31523 echo $ECHO_N "checking whether -R must be followed by a space... $ECHO_C" >&6
31524       ac_xsave_LIBS=$LIBS; LIBS="$LIBS -R$x_libraries"
31525       cat >conftest.$ac_ext <<_ACEOF
31526-#line 11327 "configure"
31527+#line 11429 "configure"
31528 #include "confdefs.h"
31529
31530 int
31531@@ -11336,16 +11438,16 @@
31532 }
31533 _ACEOF
31534 rm -f conftest.$ac_objext conftest$ac_exeext
31535-if { (eval echo "$as_me:11339: \"$ac_link\"") >&5
31536+if { (eval echo "$as_me:11441: \"$ac_link\"") >&5
31537   (eval $ac_link) 2>&5
31538   ac_status=$?
31539-  echo "$as_me:11342: \$? = $ac_status" >&5
31540+  echo "$as_me:11444: \$? = $ac_status" >&5
31541   (exit $ac_status); } &&
31542          { ac_try='test -s conftest$ac_exeext'
31543-  { (eval echo "$as_me:11345: \"$ac_try\"") >&5
31544+  { (eval echo "$as_me:11447: \"$ac_try\"") >&5
31545   (eval $ac_try) 2>&5
31546   ac_status=$?
31547-  echo "$as_me:11348: \$? = $ac_status" >&5
31548+  echo "$as_me:11450: \$? = $ac_status" >&5
31549   (exit $ac_status); }; }; then
31550   ac_R_nospace=yes
31551 else
31552@@ -11355,13 +11457,13 @@
31553 fi
31554 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
31555       if test $ac_R_nospace = yes; then
31556-	echo "$as_me:11358: result: no" >&5
31557+	echo "$as_me:11460: result: no" >&5
31558 echo "${ECHO_T}no" >&6
31559 	X_LIBS="$X_LIBS -R$x_libraries"
31560       else
31561 	LIBS="$ac_xsave_LIBS -R $x_libraries"
31562 	cat >conftest.$ac_ext <<_ACEOF
31563-#line 11364 "configure"
31564+#line 11466 "configure"
31565 #include "confdefs.h"
31566
31567 int
31568@@ -11373,16 +11475,16 @@
31569 }
31570 _ACEOF
31571 rm -f conftest.$ac_objext conftest$ac_exeext
31572-if { (eval echo "$as_me:11376: \"$ac_link\"") >&5
31573+if { (eval echo "$as_me:11478: \"$ac_link\"") >&5
31574   (eval $ac_link) 2>&5
31575   ac_status=$?
31576-  echo "$as_me:11379: \$? = $ac_status" >&5
31577+  echo "$as_me:11481: \$? = $ac_status" >&5
31578   (exit $ac_status); } &&
31579          { ac_try='test -s conftest$ac_exeext'
31580-  { (eval echo "$as_me:11382: \"$ac_try\"") >&5
31581+  { (eval echo "$as_me:11484: \"$ac_try\"") >&5
31582   (eval $ac_try) 2>&5
31583   ac_status=$?
31584-  echo "$as_me:11385: \$? = $ac_status" >&5
31585+  echo "$as_me:11487: \$? = $ac_status" >&5
31586   (exit $ac_status); }; }; then
31587   ac_R_space=yes
31588 else
31589@@ -11392,11 +11494,11 @@
31590 fi
31591 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
31592 	if test $ac_R_space = yes; then
31593-	  echo "$as_me:11395: result: yes" >&5
31594+	  echo "$as_me:11497: result: yes" >&5
31595 echo "${ECHO_T}yes" >&6
31596 	  X_LIBS="$X_LIBS -R $x_libraries"
31597 	else
31598-	  echo "$as_me:11399: result: neither works" >&5
31599+	  echo "$as_me:11501: result: neither works" >&5
31600 echo "${ECHO_T}neither works" >&6
31601 	fi
31602       fi
31603@@ -11416,7 +11518,7 @@
31604     # the Alpha needs dnet_stub (dnet does not exist).
31605     ac_xsave_LIBS="$LIBS"; LIBS="$LIBS $X_LIBS -lX11"
31606     cat >conftest.$ac_ext <<_ACEOF
31607-#line 11419 "configure"
31608+#line 11521 "configure"
31609 #include "confdefs.h"
31610
31611 /* Override any gcc2 internal prototype to avoid an error.  */
31612@@ -11435,22 +11537,22 @@
31613 }
31614 _ACEOF
31615 rm -f conftest.$ac_objext conftest$ac_exeext
31616-if { (eval echo "$as_me:11438: \"$ac_link\"") >&5
31617+if { (eval echo "$as_me:11540: \"$ac_link\"") >&5
31618   (eval $ac_link) 2>&5
31619   ac_status=$?
31620-  echo "$as_me:11441: \$? = $ac_status" >&5
31621+  echo "$as_me:11543: \$? = $ac_status" >&5
31622   (exit $ac_status); } &&
31623          { ac_try='test -s conftest$ac_exeext'
31624-  { (eval echo "$as_me:11444: \"$ac_try\"") >&5
31625+  { (eval echo "$as_me:11546: \"$ac_try\"") >&5
31626   (eval $ac_try) 2>&5
31627   ac_status=$?
31628-  echo "$as_me:11447: \$? = $ac_status" >&5
31629+  echo "$as_me:11549: \$? = $ac_status" >&5
31630   (exit $ac_status); }; }; then
31631   :
31632 else
31633   echo "$as_me: failed program was:" >&5
31634 cat conftest.$ac_ext >&5
31635-echo "$as_me:11453: checking for dnet_ntoa in -ldnet" >&5
31636+echo "$as_me:11555: checking for dnet_ntoa in -ldnet" >&5
31637 echo $ECHO_N "checking for dnet_ntoa in -ldnet... $ECHO_C" >&6
31638 if test "${ac_cv_lib_dnet_dnet_ntoa+set}" = set; then
31639   echo $ECHO_N "(cached) $ECHO_C" >&6
31640@@ -11458,7 +11560,7 @@
31641   ac_check_lib_save_LIBS=$LIBS
31642 LIBS="-ldnet  $LIBS"
31643 cat >conftest.$ac_ext <<_ACEOF
31644-#line 11461 "configure"
31645+#line 11563 "configure"
31646 #include "confdefs.h"
31647
31648 /* Override any gcc2 internal prototype to avoid an error.  */
31649@@ -11477,16 +11579,16 @@
31650 }
31651 _ACEOF
31652 rm -f conftest.$ac_objext conftest$ac_exeext
31653-if { (eval echo "$as_me:11480: \"$ac_link\"") >&5
31654+if { (eval echo "$as_me:11582: \"$ac_link\"") >&5
31655   (eval $ac_link) 2>&5
31656   ac_status=$?
31657-  echo "$as_me:11483: \$? = $ac_status" >&5
31658+  echo "$as_me:11585: \$? = $ac_status" >&5
31659   (exit $ac_status); } &&
31660          { ac_try='test -s conftest$ac_exeext'
31661-  { (eval echo "$as_me:11486: \"$ac_try\"") >&5
31662+  { (eval echo "$as_me:11588: \"$ac_try\"") >&5
31663   (eval $ac_try) 2>&5
31664   ac_status=$?
31665-  echo "$as_me:11489: \$? = $ac_status" >&5
31666+  echo "$as_me:11591: \$? = $ac_status" >&5
31667   (exit $ac_status); }; }; then
31668   ac_cv_lib_dnet_dnet_ntoa=yes
31669 else
31670@@ -11497,14 +11599,14 @@
31671 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
31672 LIBS=$ac_check_lib_save_LIBS
31673 fi
31674-echo "$as_me:11500: result: $ac_cv_lib_dnet_dnet_ntoa" >&5
31675+echo "$as_me:11602: result: $ac_cv_lib_dnet_dnet_ntoa" >&5
31676 echo "${ECHO_T}$ac_cv_lib_dnet_dnet_ntoa" >&6
31677 if test $ac_cv_lib_dnet_dnet_ntoa = yes; then
31678   X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet"
31679 fi
31680
31681     if test $ac_cv_lib_dnet_dnet_ntoa = no; then
31682-      echo "$as_me:11507: checking for dnet_ntoa in -ldnet_stub" >&5
31683+      echo "$as_me:11609: checking for dnet_ntoa in -ldnet_stub" >&5
31684 echo $ECHO_N "checking for dnet_ntoa in -ldnet_stub... $ECHO_C" >&6
31685 if test "${ac_cv_lib_dnet_stub_dnet_ntoa+set}" = set; then
31686   echo $ECHO_N "(cached) $ECHO_C" >&6
31687@@ -11512,7 +11614,7 @@
31688   ac_check_lib_save_LIBS=$LIBS
31689 LIBS="-ldnet_stub  $LIBS"
31690 cat >conftest.$ac_ext <<_ACEOF
31691-#line 11515 "configure"
31692+#line 11617 "configure"
31693 #include "confdefs.h"
31694
31695 /* Override any gcc2 internal prototype to avoid an error.  */
31696@@ -11531,16 +11633,16 @@
31697 }
31698 _ACEOF
31699 rm -f conftest.$ac_objext conftest$ac_exeext
31700-if { (eval echo "$as_me:11534: \"$ac_link\"") >&5
31701+if { (eval echo "$as_me:11636: \"$ac_link\"") >&5
31702   (eval $ac_link) 2>&5
31703   ac_status=$?
31704-  echo "$as_me:11537: \$? = $ac_status" >&5
31705+  echo "$as_me:11639: \$? = $ac_status" >&5
31706   (exit $ac_status); } &&
31707          { ac_try='test -s conftest$ac_exeext'
31708-  { (eval echo "$as_me:11540: \"$ac_try\"") >&5
31709+  { (eval echo "$as_me:11642: \"$ac_try\"") >&5
31710   (eval $ac_try) 2>&5
31711   ac_status=$?
31712-  echo "$as_me:11543: \$? = $ac_status" >&5
31713+  echo "$as_me:11645: \$? = $ac_status" >&5
31714   (exit $ac_status); }; }; then
31715   ac_cv_lib_dnet_stub_dnet_ntoa=yes
31716 else
31717@@ -11551,7 +11653,7 @@
31718 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
31719 LIBS=$ac_check_lib_save_LIBS
31720 fi
31721-echo "$as_me:11554: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5
31722+echo "$as_me:11656: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5
31723 echo "${ECHO_T}$ac_cv_lib_dnet_stub_dnet_ntoa" >&6
31724 if test $ac_cv_lib_dnet_stub_dnet_ntoa = yes; then
31725   X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet_stub"
31726@@ -11570,13 +11672,13 @@
31727     # on Irix 5.2, according to T.E. Dickey.
31728     # The functions gethostbyname, getservbyname, and inet_addr are
31729     # in -lbsd on LynxOS 3.0.1/i386, according to Lars Hecking.
31730-    echo "$as_me:11573: checking for gethostbyname" >&5
31731+    echo "$as_me:11675: checking for gethostbyname" >&5
31732 echo $ECHO_N "checking for gethostbyname... $ECHO_C" >&6
31733 if test "${ac_cv_func_gethostbyname+set}" = set; then
31734   echo $ECHO_N "(cached) $ECHO_C" >&6
31735 else
31736   cat >conftest.$ac_ext <<_ACEOF
31737-#line 11579 "configure"
31738+#line 11681 "configure"
31739 #include "confdefs.h"
31740 #define gethostbyname autoconf_temporary
31741 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
31742@@ -11607,16 +11709,16 @@
31743 }
31744 _ACEOF
31745 rm -f conftest.$ac_objext conftest$ac_exeext
31746-if { (eval echo "$as_me:11610: \"$ac_link\"") >&5
31747+if { (eval echo "$as_me:11712: \"$ac_link\"") >&5
31748   (eval $ac_link) 2>&5
31749   ac_status=$?
31750-  echo "$as_me:11613: \$? = $ac_status" >&5
31751+  echo "$as_me:11715: \$? = $ac_status" >&5
31752   (exit $ac_status); } &&
31753          { ac_try='test -s conftest$ac_exeext'
31754-  { (eval echo "$as_me:11616: \"$ac_try\"") >&5
31755+  { (eval echo "$as_me:11718: \"$ac_try\"") >&5
31756   (eval $ac_try) 2>&5
31757   ac_status=$?
31758-  echo "$as_me:11619: \$? = $ac_status" >&5
31759+  echo "$as_me:11721: \$? = $ac_status" >&5
31760   (exit $ac_status); }; }; then
31761   ac_cv_func_gethostbyname=yes
31762 else
31763@@ -11626,11 +11728,11 @@
31764 fi
31765 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
31766 fi
31767-echo "$as_me:11629: result: $ac_cv_func_gethostbyname" >&5
31768+echo "$as_me:11731: result: $ac_cv_func_gethostbyname" >&5
31769 echo "${ECHO_T}$ac_cv_func_gethostbyname" >&6
31770
31771     if test $ac_cv_func_gethostbyname = no; then
31772-      echo "$as_me:11633: checking for gethostbyname in -lnsl" >&5
31773+      echo "$as_me:11735: checking for gethostbyname in -lnsl" >&5
31774 echo $ECHO_N "checking for gethostbyname in -lnsl... $ECHO_C" >&6
31775 if test "${ac_cv_lib_nsl_gethostbyname+set}" = set; then
31776   echo $ECHO_N "(cached) $ECHO_C" >&6
31777@@ -11638,7 +11740,7 @@
31778   ac_check_lib_save_LIBS=$LIBS
31779 LIBS="-lnsl  $LIBS"
31780 cat >conftest.$ac_ext <<_ACEOF
31781-#line 11641 "configure"
31782+#line 11743 "configure"
31783 #include "confdefs.h"
31784
31785 /* Override any gcc2 internal prototype to avoid an error.  */
31786@@ -11657,16 +11759,16 @@
31787 }
31788 _ACEOF
31789 rm -f conftest.$ac_objext conftest$ac_exeext
31790-if { (eval echo "$as_me:11660: \"$ac_link\"") >&5
31791+if { (eval echo "$as_me:11762: \"$ac_link\"") >&5
31792   (eval $ac_link) 2>&5
31793   ac_status=$?
31794-  echo "$as_me:11663: \$? = $ac_status" >&5
31795+  echo "$as_me:11765: \$? = $ac_status" >&5
31796   (exit $ac_status); } &&
31797          { ac_try='test -s conftest$ac_exeext'
31798-  { (eval echo "$as_me:11666: \"$ac_try\"") >&5
31799+  { (eval echo "$as_me:11768: \"$ac_try\"") >&5
31800   (eval $ac_try) 2>&5
31801   ac_status=$?
31802-  echo "$as_me:11669: \$? = $ac_status" >&5
31803+  echo "$as_me:11771: \$? = $ac_status" >&5
31804   (exit $ac_status); }; }; then
31805   ac_cv_lib_nsl_gethostbyname=yes
31806 else
31807@@ -11677,14 +11779,14 @@
31808 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
31809 LIBS=$ac_check_lib_save_LIBS
31810 fi
31811-echo "$as_me:11680: result: $ac_cv_lib_nsl_gethostbyname" >&5
31812+echo "$as_me:11782: result: $ac_cv_lib_nsl_gethostbyname" >&5
31813 echo "${ECHO_T}$ac_cv_lib_nsl_gethostbyname" >&6
31814 if test $ac_cv_lib_nsl_gethostbyname = yes; then
31815   X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl"
31816 fi
31817
31818       if test $ac_cv_lib_nsl_gethostbyname = no; then
31819-        echo "$as_me:11687: checking for gethostbyname in -lbsd" >&5
31820+        echo "$as_me:11789: checking for gethostbyname in -lbsd" >&5
31821 echo $ECHO_N "checking for gethostbyname in -lbsd... $ECHO_C" >&6
31822 if test "${ac_cv_lib_bsd_gethostbyname+set}" = set; then
31823   echo $ECHO_N "(cached) $ECHO_C" >&6
31824@@ -11692,7 +11794,7 @@
31825   ac_check_lib_save_LIBS=$LIBS
31826 LIBS="-lbsd  $LIBS"
31827 cat >conftest.$ac_ext <<_ACEOF
31828-#line 11695 "configure"
31829+#line 11797 "configure"
31830 #include "confdefs.h"
31831
31832 /* Override any gcc2 internal prototype to avoid an error.  */
31833@@ -11711,16 +11813,16 @@
31834 }
31835 _ACEOF
31836 rm -f conftest.$ac_objext conftest$ac_exeext
31837-if { (eval echo "$as_me:11714: \"$ac_link\"") >&5
31838+if { (eval echo "$as_me:11816: \"$ac_link\"") >&5
31839   (eval $ac_link) 2>&5
31840   ac_status=$?
31841-  echo "$as_me:11717: \$? = $ac_status" >&5
31842+  echo "$as_me:11819: \$? = $ac_status" >&5
31843   (exit $ac_status); } &&
31844          { ac_try='test -s conftest$ac_exeext'
31845-  { (eval echo "$as_me:11720: \"$ac_try\"") >&5
31846+  { (eval echo "$as_me:11822: \"$ac_try\"") >&5
31847   (eval $ac_try) 2>&5
31848   ac_status=$?
31849-  echo "$as_me:11723: \$? = $ac_status" >&5
31850+  echo "$as_me:11825: \$? = $ac_status" >&5
31851   (exit $ac_status); }; }; then
31852   ac_cv_lib_bsd_gethostbyname=yes
31853 else
31854@@ -11731,7 +11833,7 @@
31855 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
31856 LIBS=$ac_check_lib_save_LIBS
31857 fi
31858-echo "$as_me:11734: result: $ac_cv_lib_bsd_gethostbyname" >&5
31859+echo "$as_me:11836: result: $ac_cv_lib_bsd_gethostbyname" >&5
31860 echo "${ECHO_T}$ac_cv_lib_bsd_gethostbyname" >&6
31861 if test $ac_cv_lib_bsd_gethostbyname = yes; then
31862   X_EXTRA_LIBS="$X_EXTRA_LIBS -lbsd"
31863@@ -11747,13 +11849,13 @@
31864     # variants that don't use the nameserver (or something).  -lsocket
31865     # must be given before -lnsl if both are needed.  We assume that
31866     # if connect needs -lnsl, so does gethostbyname.
31867-    echo "$as_me:11750: checking for connect" >&5
31868+    echo "$as_me:11852: checking for connect" >&5
31869 echo $ECHO_N "checking for connect... $ECHO_C" >&6
31870 if test "${ac_cv_func_connect+set}" = set; then
31871   echo $ECHO_N "(cached) $ECHO_C" >&6
31872 else
31873   cat >conftest.$ac_ext <<_ACEOF
31874-#line 11756 "configure"
31875+#line 11858 "configure"
31876 #include "confdefs.h"
31877 #define connect autoconf_temporary
31878 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
31879@@ -11784,16 +11886,16 @@
31880 }
31881 _ACEOF
31882 rm -f conftest.$ac_objext conftest$ac_exeext
31883-if { (eval echo "$as_me:11787: \"$ac_link\"") >&5
31884+if { (eval echo "$as_me:11889: \"$ac_link\"") >&5
31885   (eval $ac_link) 2>&5
31886   ac_status=$?
31887-  echo "$as_me:11790: \$? = $ac_status" >&5
31888+  echo "$as_me:11892: \$? = $ac_status" >&5
31889   (exit $ac_status); } &&
31890          { ac_try='test -s conftest$ac_exeext'
31891-  { (eval echo "$as_me:11793: \"$ac_try\"") >&5
31892+  { (eval echo "$as_me:11895: \"$ac_try\"") >&5
31893   (eval $ac_try) 2>&5
31894   ac_status=$?
31895-  echo "$as_me:11796: \$? = $ac_status" >&5
31896+  echo "$as_me:11898: \$? = $ac_status" >&5
31897   (exit $ac_status); }; }; then
31898   ac_cv_func_connect=yes
31899 else
31900@@ -11803,11 +11905,11 @@
31901 fi
31902 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
31903 fi
31904-echo "$as_me:11806: result: $ac_cv_func_connect" >&5
31905+echo "$as_me:11908: result: $ac_cv_func_connect" >&5
31906 echo "${ECHO_T}$ac_cv_func_connect" >&6
31907
31908     if test $ac_cv_func_connect = no; then
31909-      echo "$as_me:11810: checking for connect in -lsocket" >&5
31910+      echo "$as_me:11912: checking for connect in -lsocket" >&5
31911 echo $ECHO_N "checking for connect in -lsocket... $ECHO_C" >&6
31912 if test "${ac_cv_lib_socket_connect+set}" = set; then
31913   echo $ECHO_N "(cached) $ECHO_C" >&6
31914@@ -11815,7 +11917,7 @@
31915   ac_check_lib_save_LIBS=$LIBS
31916 LIBS="-lsocket $X_EXTRA_LIBS $LIBS"
31917 cat >conftest.$ac_ext <<_ACEOF
31918-#line 11818 "configure"
31919+#line 11920 "configure"
31920 #include "confdefs.h"
31921
31922 /* Override any gcc2 internal prototype to avoid an error.  */
31923@@ -11834,16 +11936,16 @@
31924 }
31925 _ACEOF
31926 rm -f conftest.$ac_objext conftest$ac_exeext
31927-if { (eval echo "$as_me:11837: \"$ac_link\"") >&5
31928+if { (eval echo "$as_me:11939: \"$ac_link\"") >&5
31929   (eval $ac_link) 2>&5
31930   ac_status=$?
31931-  echo "$as_me:11840: \$? = $ac_status" >&5
31932+  echo "$as_me:11942: \$? = $ac_status" >&5
31933   (exit $ac_status); } &&
31934          { ac_try='test -s conftest$ac_exeext'
31935-  { (eval echo "$as_me:11843: \"$ac_try\"") >&5
31936+  { (eval echo "$as_me:11945: \"$ac_try\"") >&5
31937   (eval $ac_try) 2>&5
31938   ac_status=$?
31939-  echo "$as_me:11846: \$? = $ac_status" >&5
31940+  echo "$as_me:11948: \$? = $ac_status" >&5
31941   (exit $ac_status); }; }; then
31942   ac_cv_lib_socket_connect=yes
31943 else
31944@@ -11854,7 +11956,7 @@
31945 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
31946 LIBS=$ac_check_lib_save_LIBS
31947 fi
31948-echo "$as_me:11857: result: $ac_cv_lib_socket_connect" >&5
31949+echo "$as_me:11959: result: $ac_cv_lib_socket_connect" >&5
31950 echo "${ECHO_T}$ac_cv_lib_socket_connect" >&6
31951 if test $ac_cv_lib_socket_connect = yes; then
31952   X_EXTRA_LIBS="-lsocket $X_EXTRA_LIBS"
31953@@ -11863,13 +11965,13 @@
31954     fi
31955
31956     # Guillermo Gomez says -lposix is necessary on A/UX.
31957-    echo "$as_me:11866: checking for remove" >&5
31958+    echo "$as_me:11968: checking for remove" >&5
31959 echo $ECHO_N "checking for remove... $ECHO_C" >&6
31960 if test "${ac_cv_func_remove+set}" = set; then
31961   echo $ECHO_N "(cached) $ECHO_C" >&6
31962 else
31963   cat >conftest.$ac_ext <<_ACEOF
31964-#line 11872 "configure"
31965+#line 11974 "configure"
31966 #include "confdefs.h"
31967 #define remove autoconf_temporary
31968 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
31969@@ -11900,16 +12002,16 @@
31970 }
31971 _ACEOF
31972 rm -f conftest.$ac_objext conftest$ac_exeext
31973-if { (eval echo "$as_me:11903: \"$ac_link\"") >&5
31974+if { (eval echo "$as_me:12005: \"$ac_link\"") >&5
31975   (eval $ac_link) 2>&5
31976   ac_status=$?
31977-  echo "$as_me:11906: \$? = $ac_status" >&5
31978+  echo "$as_me:12008: \$? = $ac_status" >&5
31979   (exit $ac_status); } &&
31980          { ac_try='test -s conftest$ac_exeext'
31981-  { (eval echo "$as_me:11909: \"$ac_try\"") >&5
31982+  { (eval echo "$as_me:12011: \"$ac_try\"") >&5
31983   (eval $ac_try) 2>&5
31984   ac_status=$?
31985-  echo "$as_me:11912: \$? = $ac_status" >&5
31986+  echo "$as_me:12014: \$? = $ac_status" >&5
31987   (exit $ac_status); }; }; then
31988   ac_cv_func_remove=yes
31989 else
31990@@ -11919,11 +12021,11 @@
31991 fi
31992 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
31993 fi
31994-echo "$as_me:11922: result: $ac_cv_func_remove" >&5
31995+echo "$as_me:12024: result: $ac_cv_func_remove" >&5
31996 echo "${ECHO_T}$ac_cv_func_remove" >&6
31997
31998     if test $ac_cv_func_remove = no; then
31999-      echo "$as_me:11926: checking for remove in -lposix" >&5
32000+      echo "$as_me:12028: checking for remove in -lposix" >&5
32001 echo $ECHO_N "checking for remove in -lposix... $ECHO_C" >&6
32002 if test "${ac_cv_lib_posix_remove+set}" = set; then
32003   echo $ECHO_N "(cached) $ECHO_C" >&6
32004@@ -11931,7 +12033,7 @@
32005   ac_check_lib_save_LIBS=$LIBS
32006 LIBS="-lposix  $LIBS"
32007 cat >conftest.$ac_ext <<_ACEOF
32008-#line 11934 "configure"
32009+#line 12036 "configure"
32010 #include "confdefs.h"
32011
32012 /* Override any gcc2 internal prototype to avoid an error.  */
32013@@ -11950,16 +12052,16 @@
32014 }
32015 _ACEOF
32016 rm -f conftest.$ac_objext conftest$ac_exeext
32017-if { (eval echo "$as_me:11953: \"$ac_link\"") >&5
32018+if { (eval echo "$as_me:12055: \"$ac_link\"") >&5
32019   (eval $ac_link) 2>&5
32020   ac_status=$?
32021-  echo "$as_me:11956: \$? = $ac_status" >&5
32022+  echo "$as_me:12058: \$? = $ac_status" >&5
32023   (exit $ac_status); } &&
32024          { ac_try='test -s conftest$ac_exeext'
32025-  { (eval echo "$as_me:11959: \"$ac_try\"") >&5
32026+  { (eval echo "$as_me:12061: \"$ac_try\"") >&5
32027   (eval $ac_try) 2>&5
32028   ac_status=$?
32029-  echo "$as_me:11962: \$? = $ac_status" >&5
32030+  echo "$as_me:12064: \$? = $ac_status" >&5
32031   (exit $ac_status); }; }; then
32032   ac_cv_lib_posix_remove=yes
32033 else
32034@@ -11970,7 +12072,7 @@
32035 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
32036 LIBS=$ac_check_lib_save_LIBS
32037 fi
32038-echo "$as_me:11973: result: $ac_cv_lib_posix_remove" >&5
32039+echo "$as_me:12075: result: $ac_cv_lib_posix_remove" >&5
32040 echo "${ECHO_T}$ac_cv_lib_posix_remove" >&6
32041 if test $ac_cv_lib_posix_remove = yes; then
32042   X_EXTRA_LIBS="$X_EXTRA_LIBS -lposix"
32043@@ -11979,13 +12081,13 @@
32044     fi
32045
32046     # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay.
32047-    echo "$as_me:11982: checking for shmat" >&5
32048+    echo "$as_me:12084: checking for shmat" >&5
32049 echo $ECHO_N "checking for shmat... $ECHO_C" >&6
32050 if test "${ac_cv_func_shmat+set}" = set; then
32051   echo $ECHO_N "(cached) $ECHO_C" >&6
32052 else
32053   cat >conftest.$ac_ext <<_ACEOF
32054-#line 11988 "configure"
32055+#line 12090 "configure"
32056 #include "confdefs.h"
32057 #define shmat autoconf_temporary
32058 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
32059@@ -12016,16 +12118,16 @@
32060 }
32061 _ACEOF
32062 rm -f conftest.$ac_objext conftest$ac_exeext
32063-if { (eval echo "$as_me:12019: \"$ac_link\"") >&5
32064+if { (eval echo "$as_me:12121: \"$ac_link\"") >&5
32065   (eval $ac_link) 2>&5
32066   ac_status=$?
32067-  echo "$as_me:12022: \$? = $ac_status" >&5
32068+  echo "$as_me:12124: \$? = $ac_status" >&5
32069   (exit $ac_status); } &&
32070          { ac_try='test -s conftest$ac_exeext'
32071-  { (eval echo "$as_me:12025: \"$ac_try\"") >&5
32072+  { (eval echo "$as_me:12127: \"$ac_try\"") >&5
32073   (eval $ac_try) 2>&5
32074   ac_status=$?
32075-  echo "$as_me:12028: \$? = $ac_status" >&5
32076+  echo "$as_me:12130: \$? = $ac_status" >&5
32077   (exit $ac_status); }; }; then
32078   ac_cv_func_shmat=yes
32079 else
32080@@ -12035,11 +12137,11 @@
32081 fi
32082 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
32083 fi
32084-echo "$as_me:12038: result: $ac_cv_func_shmat" >&5
32085+echo "$as_me:12140: result: $ac_cv_func_shmat" >&5
32086 echo "${ECHO_T}$ac_cv_func_shmat" >&6
32087
32088     if test $ac_cv_func_shmat = no; then
32089-      echo "$as_me:12042: checking for shmat in -lipc" >&5
32090+      echo "$as_me:12144: checking for shmat in -lipc" >&5
32091 echo $ECHO_N "checking for shmat in -lipc... $ECHO_C" >&6
32092 if test "${ac_cv_lib_ipc_shmat+set}" = set; then
32093   echo $ECHO_N "(cached) $ECHO_C" >&6
32094@@ -12047,7 +12149,7 @@
32095   ac_check_lib_save_LIBS=$LIBS
32096 LIBS="-lipc  $LIBS"
32097 cat >conftest.$ac_ext <<_ACEOF
32098-#line 12050 "configure"
32099+#line 12152 "configure"
32100 #include "confdefs.h"
32101
32102 /* Override any gcc2 internal prototype to avoid an error.  */
32103@@ -12066,16 +12168,16 @@
32104 }
32105 _ACEOF
32106 rm -f conftest.$ac_objext conftest$ac_exeext
32107-if { (eval echo "$as_me:12069: \"$ac_link\"") >&5
32108+if { (eval echo "$as_me:12171: \"$ac_link\"") >&5
32109   (eval $ac_link) 2>&5
32110   ac_status=$?
32111-  echo "$as_me:12072: \$? = $ac_status" >&5
32112+  echo "$as_me:12174: \$? = $ac_status" >&5
32113   (exit $ac_status); } &&
32114          { ac_try='test -s conftest$ac_exeext'
32115-  { (eval echo "$as_me:12075: \"$ac_try\"") >&5
32116+  { (eval echo "$as_me:12177: \"$ac_try\"") >&5
32117   (eval $ac_try) 2>&5
32118   ac_status=$?
32119-  echo "$as_me:12078: \$? = $ac_status" >&5
32120+  echo "$as_me:12180: \$? = $ac_status" >&5
32121   (exit $ac_status); }; }; then
32122   ac_cv_lib_ipc_shmat=yes
32123 else
32124@@ -12086,7 +12188,7 @@
32125 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
32126 LIBS=$ac_check_lib_save_LIBS
32127 fi
32128-echo "$as_me:12089: result: $ac_cv_lib_ipc_shmat" >&5
32129+echo "$as_me:12191: result: $ac_cv_lib_ipc_shmat" >&5
32130 echo "${ECHO_T}$ac_cv_lib_ipc_shmat" >&6
32131 if test $ac_cv_lib_ipc_shmat = yes; then
32132   X_EXTRA_LIBS="$X_EXTRA_LIBS -lipc"
32133@@ -12104,7 +12206,7 @@
32134   # These have to be linked with before -lX11, unlike the other
32135   # libraries we check for below, so use a different variable.
32136   # John Interrante, Karl Berry
32137-  echo "$as_me:12107: checking for IceConnectionNumber in -lICE" >&5
32138+  echo "$as_me:12209: checking for IceConnectionNumber in -lICE" >&5
32139 echo $ECHO_N "checking for IceConnectionNumber in -lICE... $ECHO_C" >&6
32140 if test "${ac_cv_lib_ICE_IceConnectionNumber+set}" = set; then
32141   echo $ECHO_N "(cached) $ECHO_C" >&6
32142@@ -12112,7 +12214,7 @@
32143   ac_check_lib_save_LIBS=$LIBS
32144 LIBS="-lICE $X_EXTRA_LIBS $LIBS"
32145 cat >conftest.$ac_ext <<_ACEOF
32146-#line 12115 "configure"
32147+#line 12217 "configure"
32148 #include "confdefs.h"
32149
32150 /* Override any gcc2 internal prototype to avoid an error.  */
32151@@ -12131,16 +12233,16 @@
32152 }
32153 _ACEOF
32154 rm -f conftest.$ac_objext conftest$ac_exeext
32155-if { (eval echo "$as_me:12134: \"$ac_link\"") >&5
32156+if { (eval echo "$as_me:12236: \"$ac_link\"") >&5
32157   (eval $ac_link) 2>&5
32158   ac_status=$?
32159-  echo "$as_me:12137: \$? = $ac_status" >&5
32160+  echo "$as_me:12239: \$? = $ac_status" >&5
32161   (exit $ac_status); } &&
32162          { ac_try='test -s conftest$ac_exeext'
32163-  { (eval echo "$as_me:12140: \"$ac_try\"") >&5
32164+  { (eval echo "$as_me:12242: \"$ac_try\"") >&5
32165   (eval $ac_try) 2>&5
32166   ac_status=$?
32167-  echo "$as_me:12143: \$? = $ac_status" >&5
32168+  echo "$as_me:12245: \$? = $ac_status" >&5
32169   (exit $ac_status); }; }; then
32170   ac_cv_lib_ICE_IceConnectionNumber=yes
32171 else
32172@@ -12151,7 +12253,7 @@
32173 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
32174 LIBS=$ac_check_lib_save_LIBS
32175 fi
32176-echo "$as_me:12154: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5
32177+echo "$as_me:12256: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5
32178 echo "${ECHO_T}$ac_cv_lib_ICE_IceConnectionNumber" >&6
32179 if test $ac_cv_lib_ICE_IceConnectionNumber = yes; then
32180   X_PRE_LIBS="$X_PRE_LIBS -lSM -lICE"
32181@@ -12163,7 +12265,7 @@
32182
32183 cf_x_athena=${cf_x_athena:-Xaw}
32184
32185-echo "$as_me:12166: checking if you want to link with Xaw 3d library" >&5
32186+echo "$as_me:12268: checking if you want to link with Xaw 3d library" >&5
32187 echo $ECHO_N "checking if you want to link with Xaw 3d library... $ECHO_C" >&6
32188 withval=
32189
32190@@ -12174,14 +12276,14 @@
32191 fi;
32192 if test "$withval" = yes ; then
32193 	cf_x_athena=Xaw3d
32194-	echo "$as_me:12177: result: yes" >&5
32195+	echo "$as_me:12279: result: yes" >&5
32196 echo "${ECHO_T}yes" >&6
32197 else
32198-	echo "$as_me:12180: result: no" >&5
32199+	echo "$as_me:12282: result: no" >&5
32200 echo "${ECHO_T}no" >&6
32201 fi
32202
32203-echo "$as_me:12184: checking if you want to link with Xaw 3d xft library" >&5
32204+echo "$as_me:12286: checking if you want to link with Xaw 3d xft library" >&5
32205 echo $ECHO_N "checking if you want to link with Xaw 3d xft library... $ECHO_C" >&6
32206 withval=
32207
32208@@ -12192,14 +12294,14 @@
32209 fi;
32210 if test "$withval" = yes ; then
32211 	cf_x_athena=Xaw3dxft
32212-	echo "$as_me:12195: result: yes" >&5
32213+	echo "$as_me:12297: result: yes" >&5
32214 echo "${ECHO_T}yes" >&6
32215 else
32216-	echo "$as_me:12198: result: no" >&5
32217+	echo "$as_me:12300: result: no" >&5
32218 echo "${ECHO_T}no" >&6
32219 fi
32220
32221-echo "$as_me:12202: checking if you want to link with neXT Athena library" >&5
32222+echo "$as_me:12304: checking if you want to link with neXT Athena library" >&5
32223 echo $ECHO_N "checking if you want to link with neXT Athena library... $ECHO_C" >&6
32224 withval=
32225
32226@@ -12210,14 +12312,14 @@
32227 fi;
32228 if test "$withval" = yes ; then
32229 	cf_x_athena=neXtaw
32230-	echo "$as_me:12213: result: yes" >&5
32231+	echo "$as_me:12315: result: yes" >&5
32232 echo "${ECHO_T}yes" >&6
32233 else
32234-	echo "$as_me:12216: result: no" >&5
32235+	echo "$as_me:12318: result: no" >&5
32236 echo "${ECHO_T}no" >&6
32237 fi
32238
32239-echo "$as_me:12220: checking if you want to link with Athena-Plus library" >&5
32240+echo "$as_me:12322: checking if you want to link with Athena-Plus library" >&5
32241 echo $ECHO_N "checking if you want to link with Athena-Plus library... $ECHO_C" >&6
32242 withval=
32243
32244@@ -12228,10 +12330,10 @@
32245 fi;
32246 if test "$withval" = yes ; then
32247 	cf_x_athena=XawPlus
32248-	echo "$as_me:12231: result: yes" >&5
32249+	echo "$as_me:12333: result: yes" >&5
32250 echo "${ECHO_T}yes" >&6
32251 else
32252-	echo "$as_me:12234: result: no" >&5
32253+	echo "$as_me:12336: result: no" >&5
32254 echo "${ECHO_T}no" >&6
32255 fi
32256
32257@@ -12251,17 +12353,17 @@
32258 if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists $cf_athena_pkg; then
32259 	test -n "$verbose" && echo "	found package $cf_athena_pkg" 1>&6
32260
32261-echo "${as_me:-configure}:12254: testing found package $cf_athena_pkg ..." 1>&5
32262+echo "${as_me:-configure}:12356: testing found package $cf_athena_pkg ..." 1>&5
32263
32264 	cf_pkgconfig_incs="`$PKG_CONFIG --cflags $cf_athena_pkg 2>/dev/null`"
32265 	cf_pkgconfig_libs="`$PKG_CONFIG --libs   $cf_athena_pkg 2>/dev/null`"
32266 	test -n "$verbose" && echo "	package $cf_athena_pkg CFLAGS: $cf_pkgconfig_incs" 1>&6
32267
32268-echo "${as_me:-configure}:12260: testing package $cf_athena_pkg CFLAGS: $cf_pkgconfig_incs ..." 1>&5
32269+echo "${as_me:-configure}:12362: testing package $cf_athena_pkg CFLAGS: $cf_pkgconfig_incs ..." 1>&5
32270
32271 	test -n "$verbose" && echo "	package $cf_athena_pkg LIBS: $cf_pkgconfig_libs" 1>&6
32272
32273-echo "${as_me:-configure}:12264: testing package $cf_athena_pkg LIBS: $cf_pkgconfig_libs ..." 1>&5
32274+echo "${as_me:-configure}:12366: testing package $cf_athena_pkg LIBS: $cf_pkgconfig_libs ..." 1>&5
32275
32276 cf_fix_cppflags=no
32277 cf_new_cflags=
32278@@ -12392,20 +12494,20 @@
32279 			LIBS=`echo "$LIBS " | sed -e 's/  / /g' -e 's%-l'"$cf_trim_lib"' %%' -e 's/ $//'`
32280 			test -n "$verbose" && echo "	..trimmed $LIBS" 1>&6
32281
32282-echo "${as_me:-configure}:12395: testing ..trimmed $LIBS ..." 1>&5
32283+echo "${as_me:-configure}:12497: testing ..trimmed $LIBS ..." 1>&5
32284
32285 			;;
32286 		esac
32287 	done
32288
32289-echo "$as_me:12401: checking for usable $cf_x_athena/Xmu package" >&5
32290+echo "$as_me:12503: checking for usable $cf_x_athena/Xmu package" >&5
32291 echo $ECHO_N "checking for usable $cf_x_athena/Xmu package... $ECHO_C" >&6
32292 if test "${cf_cv_xaw_compat+set}" = set; then
32293   echo $ECHO_N "(cached) $ECHO_C" >&6
32294 else
32295
32296 cat >conftest.$ac_ext <<_ACEOF
32297-#line 12408 "configure"
32298+#line 12510 "configure"
32299 #include "confdefs.h"
32300
32301 #include <X11/Xmu/CharSet.h>
32302@@ -12421,16 +12523,16 @@
32303 }
32304 _ACEOF
32305 rm -f conftest.$ac_objext conftest$ac_exeext
32306-if { (eval echo "$as_me:12424: \"$ac_link\"") >&5
32307+if { (eval echo "$as_me:12526: \"$ac_link\"") >&5
32308   (eval $ac_link) 2>&5
32309   ac_status=$?
32310-  echo "$as_me:12427: \$? = $ac_status" >&5
32311+  echo "$as_me:12529: \$? = $ac_status" >&5
32312   (exit $ac_status); } &&
32313          { ac_try='test -s conftest$ac_exeext'
32314-  { (eval echo "$as_me:12430: \"$ac_try\"") >&5
32315+  { (eval echo "$as_me:12532: \"$ac_try\"") >&5
32316   (eval $ac_try) 2>&5
32317   ac_status=$?
32318-  echo "$as_me:12433: \$? = $ac_status" >&5
32319+  echo "$as_me:12535: \$? = $ac_status" >&5
32320   (exit $ac_status); }; }; then
32321   cf_cv_xaw_compat=yes
32322 else
32323@@ -12440,7 +12542,7 @@
32324 fi
32325 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
32326 fi
32327-echo "$as_me:12443: result: $cf_cv_xaw_compat" >&5
32328+echo "$as_me:12545: result: $cf_cv_xaw_compat" >&5
32329 echo "${ECHO_T}$cf_cv_xaw_compat" >&6
32330
32331 			if test "$cf_cv_xaw_compat" = no
32332@@ -12452,7 +12554,7 @@
32333 				(*)
32334 					test -n "$verbose" && echo "	work around broken package" 1>&6
32335
32336-echo "${as_me:-configure}:12455: testing work around broken package ..." 1>&5
32337+echo "${as_me:-configure}:12557: testing work around broken package ..." 1>&5
32338
32339 					cf_save_xmu="$LIBS"
32340 					cf_first_lib=`echo "$cf_save_xmu" | sed -e 's/^  *//' -e 's/ .*//'`
32341@@ -12460,17 +12562,17 @@
32342 if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists xmu; then
32343 	test -n "$verbose" && echo "	found package xmu" 1>&6
32344
32345-echo "${as_me:-configure}:12463: testing found package xmu ..." 1>&5
32346+echo "${as_me:-configure}:12565: testing found package xmu ..." 1>&5
32347
32348 	cf_pkgconfig_incs="`$PKG_CONFIG --cflags xmu 2>/dev/null`"
32349 	cf_pkgconfig_libs="`$PKG_CONFIG --libs   xmu 2>/dev/null`"
32350 	test -n "$verbose" && echo "	package xmu CFLAGS: $cf_pkgconfig_incs" 1>&6
32351
32352-echo "${as_me:-configure}:12469: testing package xmu CFLAGS: $cf_pkgconfig_incs ..." 1>&5
32353+echo "${as_me:-configure}:12571: testing package xmu CFLAGS: $cf_pkgconfig_incs ..." 1>&5
32354
32355 	test -n "$verbose" && echo "	package xmu LIBS: $cf_pkgconfig_libs" 1>&6
32356
32357-echo "${as_me:-configure}:12473: testing package xmu LIBS: $cf_pkgconfig_libs ..." 1>&5
32358+echo "${as_me:-configure}:12575: testing package xmu LIBS: $cf_pkgconfig_libs ..." 1>&5
32359
32360 cf_fix_cppflags=no
32361 cf_new_cflags=
32362@@ -12590,12 +12692,12 @@
32363
32364 test -n "$verbose" && echo "	...before $LIBS" 1>&6
32365
32366-echo "${as_me:-configure}:12593: testing ...before $LIBS ..." 1>&5
32367+echo "${as_me:-configure}:12695: testing ...before $LIBS ..." 1>&5
32368
32369 LIBS=`echo "$LIBS" | sed -e "s/[ 	][ 	]*/ /g" -e "s%$cf_first_lib %$cf_first_lib $cf_pkgconfig_libs %" -e 's%  % %g'`
32370 test -n "$verbose" && echo "	...after  $LIBS" 1>&6
32371
32372-echo "${as_me:-configure}:12598: testing ...after  $LIBS ..." 1>&5
32373+echo "${as_me:-configure}:12700: testing ...after  $LIBS ..." 1>&5
32374
32375 else
32376 	cf_pkgconfig_incs=
32377@@ -12603,12 +12705,12 @@
32378
32379 test -n "$verbose" && echo "	...before $LIBS" 1>&6
32380
32381-echo "${as_me:-configure}:12606: testing ...before $LIBS ..." 1>&5
32382+echo "${as_me:-configure}:12708: testing ...before $LIBS ..." 1>&5
32383
32384 LIBS=`echo "$LIBS" | sed -e "s/[ 	][ 	]*/ /g" -e "s%$cf_first_lib %$cf_first_lib -lXmu %" -e 's%  % %g'`
32385 test -n "$verbose" && echo "	...after  $LIBS" 1>&6
32386
32387-echo "${as_me:-configure}:12611: testing ...after  $LIBS ..." 1>&5
32388+echo "${as_me:-configure}:12713: testing ...after  $LIBS ..." 1>&5
32389
32390 fi
32391
32392@@ -12619,7 +12721,7 @@
32393 			LIBS=`echo "$LIBS " | sed -e 's/  / /g' -e 's%-l'"$cf_trim_lib"' %%' -e 's/ $//'`
32394 			test -n "$verbose" && echo "	..trimmed $LIBS" 1>&6
32395
32396-echo "${as_me:-configure}:12622: testing ..trimmed $LIBS ..." 1>&5
32397+echo "${as_me:-configure}:12724: testing ..trimmed $LIBS ..." 1>&5
32398
32399 			;;
32400 		esac
32401@@ -12644,17 +12746,17 @@
32402 if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists Xext; then
32403 	test -n "$verbose" && echo "	found package Xext" 1>&6
32404
32405-echo "${as_me:-configure}:12647: testing found package Xext ..." 1>&5
32406+echo "${as_me:-configure}:12749: testing found package Xext ..." 1>&5
32407
32408 	cf_pkgconfig_incs="`$PKG_CONFIG --cflags Xext 2>/dev/null`"
32409 	cf_pkgconfig_libs="`$PKG_CONFIG --libs   Xext 2>/dev/null`"
32410 	test -n "$verbose" && echo "	package Xext CFLAGS: $cf_pkgconfig_incs" 1>&6
32411
32412-echo "${as_me:-configure}:12653: testing package Xext CFLAGS: $cf_pkgconfig_incs ..." 1>&5
32413+echo "${as_me:-configure}:12755: testing package Xext CFLAGS: $cf_pkgconfig_incs ..." 1>&5
32414
32415 	test -n "$verbose" && echo "	package Xext LIBS: $cf_pkgconfig_libs" 1>&6
32416
32417-echo "${as_me:-configure}:12657: testing package Xext LIBS: $cf_pkgconfig_libs ..." 1>&5
32418+echo "${as_me:-configure}:12759: testing package Xext LIBS: $cf_pkgconfig_libs ..." 1>&5
32419
32420 cf_fix_cppflags=no
32421 cf_new_cflags=
32422@@ -12775,7 +12877,7 @@
32423 	cf_pkgconfig_incs=
32424 	cf_pkgconfig_libs=
32425
32426-	echo "$as_me:12778: checking for XextCreateExtension in -lXext" >&5
32427+	echo "$as_me:12880: checking for XextCreateExtension in -lXext" >&5
32428 echo $ECHO_N "checking for XextCreateExtension in -lXext... $ECHO_C" >&6
32429 if test "${ac_cv_lib_Xext_XextCreateExtension+set}" = set; then
32430   echo $ECHO_N "(cached) $ECHO_C" >&6
32431@@ -12783,7 +12885,7 @@
32432   ac_check_lib_save_LIBS=$LIBS
32433 LIBS="-lXext  $LIBS"
32434 cat >conftest.$ac_ext <<_ACEOF
32435-#line 12786 "configure"
32436+#line 12888 "configure"
32437 #include "confdefs.h"
32438
32439 /* Override any gcc2 internal prototype to avoid an error.  */
32440@@ -12802,16 +12904,16 @@
32441 }
32442 _ACEOF
32443 rm -f conftest.$ac_objext conftest$ac_exeext
32444-if { (eval echo "$as_me:12805: \"$ac_link\"") >&5
32445+if { (eval echo "$as_me:12907: \"$ac_link\"") >&5
32446   (eval $ac_link) 2>&5
32447   ac_status=$?
32448-  echo "$as_me:12808: \$? = $ac_status" >&5
32449+  echo "$as_me:12910: \$? = $ac_status" >&5
32450   (exit $ac_status); } &&
32451          { ac_try='test -s conftest$ac_exeext'
32452-  { (eval echo "$as_me:12811: \"$ac_try\"") >&5
32453+  { (eval echo "$as_me:12913: \"$ac_try\"") >&5
32454   (eval $ac_try) 2>&5
32455   ac_status=$?
32456-  echo "$as_me:12814: \$? = $ac_status" >&5
32457+  echo "$as_me:12916: \$? = $ac_status" >&5
32458   (exit $ac_status); }; }; then
32459   ac_cv_lib_Xext_XextCreateExtension=yes
32460 else
32461@@ -12822,7 +12924,7 @@
32462 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
32463 LIBS=$ac_check_lib_save_LIBS
32464 fi
32465-echo "$as_me:12825: result: $ac_cv_lib_Xext_XextCreateExtension" >&5
32466+echo "$as_me:12927: result: $ac_cv_lib_Xext_XextCreateExtension" >&5
32467 echo "${ECHO_T}$ac_cv_lib_Xext_XextCreateExtension" >&6
32468 if test $ac_cv_lib_Xext_XextCreateExtension = yes; then
32469
32470@@ -12846,7 +12948,7 @@
32471
32472 fi
32473
32474-# OSX is schizoid about who owns /usr/X11 (old) versus /opt/X11 (new), and (and
32475+# OSX is schizoid about who owns /usr/X11 (old) versus /opt/X11 (new) (and
32476 # in some cases has installed dummy files in the former, other cases replaced
32477 # it with a link to the new location).  This complicates the configure script.
32478 # Check for that pitfall, and recover using pkg-config
32479@@ -12858,17 +12960,17 @@
32480 if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists x11; then
32481 	test -n "$verbose" && echo "	found package x11" 1>&6
32482
32483-echo "${as_me:-configure}:12861: testing found package x11 ..." 1>&5
32484+echo "${as_me:-configure}:12963: testing found package x11 ..." 1>&5
32485
32486 	cf_pkgconfig_incs="`$PKG_CONFIG --cflags x11 2>/dev/null`"
32487 	cf_pkgconfig_libs="`$PKG_CONFIG --libs   x11 2>/dev/null`"
32488 	test -n "$verbose" && echo "	package x11 CFLAGS: $cf_pkgconfig_incs" 1>&6
32489
32490-echo "${as_me:-configure}:12867: testing package x11 CFLAGS: $cf_pkgconfig_incs ..." 1>&5
32491+echo "${as_me:-configure}:12969: testing package x11 CFLAGS: $cf_pkgconfig_incs ..." 1>&5
32492
32493 	test -n "$verbose" && echo "	package x11 LIBS: $cf_pkgconfig_libs" 1>&6
32494
32495-echo "${as_me:-configure}:12871: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5
32496+echo "${as_me:-configure}:12973: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5
32497
32498 cf_fix_cppflags=no
32499 cf_new_cflags=
32500@@ -12988,24 +13090,24 @@
32501 else
32502 	cf_pkgconfig_incs=
32503 	cf_pkgconfig_libs=
32504-	{ echo "$as_me:12991: WARNING: unable to find X11 library" >&5
32505+	{ echo "$as_me:13093: WARNING: unable to find X11 library" >&5
32506 echo "$as_me: WARNING: unable to find X11 library" >&2;}
32507 fi
32508
32509 if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists ice; then
32510 	test -n "$verbose" && echo "	found package ice" 1>&6
32511
32512-echo "${as_me:-configure}:12998: testing found package ice ..." 1>&5
32513+echo "${as_me:-configure}:13100: testing found package ice ..." 1>&5
32514
32515 	cf_pkgconfig_incs="`$PKG_CONFIG --cflags ice 2>/dev/null`"
32516 	cf_pkgconfig_libs="`$PKG_CONFIG --libs   ice 2>/dev/null`"
32517 	test -n "$verbose" && echo "	package ice CFLAGS: $cf_pkgconfig_incs" 1>&6
32518
32519-echo "${as_me:-configure}:13004: testing package ice CFLAGS: $cf_pkgconfig_incs ..." 1>&5
32520+echo "${as_me:-configure}:13106: testing package ice CFLAGS: $cf_pkgconfig_incs ..." 1>&5
32521
32522 	test -n "$verbose" && echo "	package ice LIBS: $cf_pkgconfig_libs" 1>&6
32523
32524-echo "${as_me:-configure}:13008: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5
32525+echo "${as_me:-configure}:13110: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5
32526
32527 cf_fix_cppflags=no
32528 cf_new_cflags=
32529@@ -13125,24 +13227,24 @@
32530 else
32531 	cf_pkgconfig_incs=
32532 	cf_pkgconfig_libs=
32533-	{ echo "$as_me:13128: WARNING: unable to find ICE library" >&5
32534+	{ echo "$as_me:13230: WARNING: unable to find ICE library" >&5
32535 echo "$as_me: WARNING: unable to find ICE library" >&2;}
32536 fi
32537
32538 if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists sm; then
32539 	test -n "$verbose" && echo "	found package sm" 1>&6
32540
32541-echo "${as_me:-configure}:13135: testing found package sm ..." 1>&5
32542+echo "${as_me:-configure}:13237: testing found package sm ..." 1>&5
32543
32544 	cf_pkgconfig_incs="`$PKG_CONFIG --cflags sm 2>/dev/null`"
32545 	cf_pkgconfig_libs="`$PKG_CONFIG --libs   sm 2>/dev/null`"
32546 	test -n "$verbose" && echo "	package sm CFLAGS: $cf_pkgconfig_incs" 1>&6
32547
32548-echo "${as_me:-configure}:13141: testing package sm CFLAGS: $cf_pkgconfig_incs ..." 1>&5
32549+echo "${as_me:-configure}:13243: testing package sm CFLAGS: $cf_pkgconfig_incs ..." 1>&5
32550
32551 	test -n "$verbose" && echo "	package sm LIBS: $cf_pkgconfig_libs" 1>&6
32552
32553-echo "${as_me:-configure}:13145: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5
32554+echo "${as_me:-configure}:13247: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5
32555
32556 cf_fix_cppflags=no
32557 cf_new_cflags=
32558@@ -13262,24 +13364,24 @@
32559 else
32560 	cf_pkgconfig_incs=
32561 	cf_pkgconfig_libs=
32562-	{ echo "$as_me:13265: WARNING: unable to find SM library" >&5
32563+	{ echo "$as_me:13367: WARNING: unable to find SM library" >&5
32564 echo "$as_me: WARNING: unable to find SM library" >&2;}
32565 fi
32566
32567 if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists xt; then
32568 	test -n "$verbose" && echo "	found package xt" 1>&6
32569
32570-echo "${as_me:-configure}:13272: testing found package xt ..." 1>&5
32571+echo "${as_me:-configure}:13374: testing found package xt ..." 1>&5
32572
32573 	cf_pkgconfig_incs="`$PKG_CONFIG --cflags xt 2>/dev/null`"
32574 	cf_pkgconfig_libs="`$PKG_CONFIG --libs   xt 2>/dev/null`"
32575 	test -n "$verbose" && echo "	package xt CFLAGS: $cf_pkgconfig_incs" 1>&6
32576
32577-echo "${as_me:-configure}:13278: testing package xt CFLAGS: $cf_pkgconfig_incs ..." 1>&5
32578+echo "${as_me:-configure}:13380: testing package xt CFLAGS: $cf_pkgconfig_incs ..." 1>&5
32579
32580 	test -n "$verbose" && echo "	package xt LIBS: $cf_pkgconfig_libs" 1>&6
32581
32582-echo "${as_me:-configure}:13282: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5
32583+echo "${as_me:-configure}:13384: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5
32584
32585 cf_fix_cppflags=no
32586 cf_new_cflags=
32587@@ -13399,7 +13501,7 @@
32588 else
32589 	cf_pkgconfig_incs=
32590 	cf_pkgconfig_libs=
32591-	{ echo "$as_me:13402: WARNING: unable to find Xt library" >&5
32592+	{ echo "$as_me:13504: WARNING: unable to find Xt library" >&5
32593 echo "$as_me: WARNING: unable to find Xt library" >&2;}
32594 fi
32595
32596@@ -13410,17 +13512,17 @@
32597 if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists xt; then
32598 	test -n "$verbose" && echo "	found package xt" 1>&6
32599
32600-echo "${as_me:-configure}:13413: testing found package xt ..." 1>&5
32601+echo "${as_me:-configure}:13515: testing found package xt ..." 1>&5
32602
32603 	cf_pkgconfig_incs="`$PKG_CONFIG --cflags xt 2>/dev/null`"
32604 	cf_pkgconfig_libs="`$PKG_CONFIG --libs   xt 2>/dev/null`"
32605 	test -n "$verbose" && echo "	package xt CFLAGS: $cf_pkgconfig_incs" 1>&6
32606
32607-echo "${as_me:-configure}:13419: testing package xt CFLAGS: $cf_pkgconfig_incs ..." 1>&5
32608+echo "${as_me:-configure}:13521: testing package xt CFLAGS: $cf_pkgconfig_incs ..." 1>&5
32609
32610 	test -n "$verbose" && echo "	package xt LIBS: $cf_pkgconfig_libs" 1>&6
32611
32612-echo "${as_me:-configure}:13423: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5
32613+echo "${as_me:-configure}:13525: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5
32614
32615 cf_fix_cppflags=no
32616 cf_new_cflags=
32617@@ -13541,14 +13643,14 @@
32618 		;;
32619 	(*)
32620 # we have an "xt" package, but it may omit Xt's dependency on X11
32621-echo "$as_me:13544: checking for usable X dependency" >&5
32622+echo "$as_me:13646: checking for usable X dependency" >&5
32623 echo $ECHO_N "checking for usable X dependency... $ECHO_C" >&6
32624 if test "${cf_cv_xt_x11_compat+set}" = set; then
32625   echo $ECHO_N "(cached) $ECHO_C" >&6
32626 else
32627
32628 cat >conftest.$ac_ext <<_ACEOF
32629-#line 13551 "configure"
32630+#line 13653 "configure"
32631 #include "confdefs.h"
32632
32633 #include <X11/Xlib.h>
32634@@ -13567,16 +13669,16 @@
32635 }
32636 _ACEOF
32637 rm -f conftest.$ac_objext conftest$ac_exeext
32638-if { (eval echo "$as_me:13570: \"$ac_link\"") >&5
32639+if { (eval echo "$as_me:13672: \"$ac_link\"") >&5
32640   (eval $ac_link) 2>&5
32641   ac_status=$?
32642-  echo "$as_me:13573: \$? = $ac_status" >&5
32643+  echo "$as_me:13675: \$? = $ac_status" >&5
32644   (exit $ac_status); } &&
32645          { ac_try='test -s conftest$ac_exeext'
32646-  { (eval echo "$as_me:13576: \"$ac_try\"") >&5
32647+  { (eval echo "$as_me:13678: \"$ac_try\"") >&5
32648   (eval $ac_try) 2>&5
32649   ac_status=$?
32650-  echo "$as_me:13579: \$? = $ac_status" >&5
32651+  echo "$as_me:13681: \$? = $ac_status" >&5
32652   (exit $ac_status); }; }; then
32653   cf_cv_xt_x11_compat=yes
32654 else
32655@@ -13586,30 +13688,30 @@
32656 fi
32657 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
32658 fi
32659-echo "$as_me:13589: result: $cf_cv_xt_x11_compat" >&5
32660+echo "$as_me:13691: result: $cf_cv_xt_x11_compat" >&5
32661 echo "${ECHO_T}$cf_cv_xt_x11_compat" >&6
32662 		if test "$cf_cv_xt_x11_compat" = no
32663 		then
32664 			test -n "$verbose" && echo "	work around broken X11 dependency" 1>&6
32665
32666-echo "${as_me:-configure}:13595: testing work around broken X11 dependency ..." 1>&5
32667+echo "${as_me:-configure}:13697: testing work around broken X11 dependency ..." 1>&5
32668
32669 			# 2010/11/19 - good enough until a working Xt on Xcb is delivered.
32670
32671 if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists x11; then
32672 	test -n "$verbose" && echo "	found package x11" 1>&6
32673
32674-echo "${as_me:-configure}:13602: testing found package x11 ..." 1>&5
32675+echo "${as_me:-configure}:13704: testing found package x11 ..." 1>&5
32676
32677 	cf_pkgconfig_incs="`$PKG_CONFIG --cflags x11 2>/dev/null`"
32678 	cf_pkgconfig_libs="`$PKG_CONFIG --libs   x11 2>/dev/null`"
32679 	test -n "$verbose" && echo "	package x11 CFLAGS: $cf_pkgconfig_incs" 1>&6
32680
32681-echo "${as_me:-configure}:13608: testing package x11 CFLAGS: $cf_pkgconfig_incs ..." 1>&5
32682+echo "${as_me:-configure}:13710: testing package x11 CFLAGS: $cf_pkgconfig_incs ..." 1>&5
32683
32684 	test -n "$verbose" && echo "	package x11 LIBS: $cf_pkgconfig_libs" 1>&6
32685
32686-echo "${as_me:-configure}:13612: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5
32687+echo "${as_me:-configure}:13714: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5
32688
32689 cf_fix_cppflags=no
32690 cf_new_cflags=
32691@@ -13732,12 +13834,12 @@
32692
32693 test -n "$verbose" && echo "	...before $LIBS" 1>&6
32694
32695-echo "${as_me:-configure}:13735: testing ...before $LIBS ..." 1>&5
32696+echo "${as_me:-configure}:13837: testing ...before $LIBS ..." 1>&5
32697
32698 LIBS=`echo "$LIBS" | sed -e "s/[ 	][ 	]*/ /g" -e "s%-lXt %-lXt -lX11 %" -e 's%  % %g'`
32699 test -n "$verbose" && echo "	...after  $LIBS" 1>&6
32700
32701-echo "${as_me:-configure}:13740: testing ...after  $LIBS ..." 1>&5
32702+echo "${as_me:-configure}:13842: testing ...after  $LIBS ..." 1>&5
32703
32704 fi
32705
32706@@ -13745,14 +13847,14 @@
32707 		;;
32708 	esac
32709
32710-echo "$as_me:13748: checking for usable X Toolkit package" >&5
32711+echo "$as_me:13850: checking for usable X Toolkit package" >&5
32712 echo $ECHO_N "checking for usable X Toolkit package... $ECHO_C" >&6
32713 if test "${cf_cv_xt_ice_compat+set}" = set; then
32714   echo $ECHO_N "(cached) $ECHO_C" >&6
32715 else
32716
32717 cat >conftest.$ac_ext <<_ACEOF
32718-#line 13755 "configure"
32719+#line 13857 "configure"
32720 #include "confdefs.h"
32721
32722 #include <X11/Shell.h>
32723@@ -13767,16 +13869,16 @@
32724 }
32725 _ACEOF
32726 rm -f conftest.$ac_objext conftest$ac_exeext
32727-if { (eval echo "$as_me:13770: \"$ac_link\"") >&5
32728+if { (eval echo "$as_me:13872: \"$ac_link\"") >&5
32729   (eval $ac_link) 2>&5
32730   ac_status=$?
32731-  echo "$as_me:13773: \$? = $ac_status" >&5
32732+  echo "$as_me:13875: \$? = $ac_status" >&5
32733   (exit $ac_status); } &&
32734          { ac_try='test -s conftest$ac_exeext'
32735-  { (eval echo "$as_me:13776: \"$ac_try\"") >&5
32736+  { (eval echo "$as_me:13878: \"$ac_try\"") >&5
32737   (eval $ac_try) 2>&5
32738   ac_status=$?
32739-  echo "$as_me:13779: \$? = $ac_status" >&5
32740+  echo "$as_me:13881: \$? = $ac_status" >&5
32741   (exit $ac_status); }; }; then
32742   cf_cv_xt_ice_compat=yes
32743 else
32744@@ -13786,7 +13888,7 @@
32745 fi
32746 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
32747 fi
32748-echo "$as_me:13789: result: $cf_cv_xt_ice_compat" >&5
32749+echo "$as_me:13891: result: $cf_cv_xt_ice_compat" >&5
32750 echo "${ECHO_T}$cf_cv_xt_ice_compat" >&6
32751
32752 	if test "$cf_cv_xt_ice_compat" = no
32753@@ -13800,22 +13902,22 @@
32754 			(*)
32755 				test -n "$verbose" && echo "	work around broken ICE dependency" 1>&6
32756
32757-echo "${as_me:-configure}:13803: testing work around broken ICE dependency ..." 1>&5
32758+echo "${as_me:-configure}:13905: testing work around broken ICE dependency ..." 1>&5
32759
32760 if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists ice; then
32761 	test -n "$verbose" && echo "	found package ice" 1>&6
32762
32763-echo "${as_me:-configure}:13808: testing found package ice ..." 1>&5
32764+echo "${as_me:-configure}:13910: testing found package ice ..." 1>&5
32765
32766 	cf_pkgconfig_incs="`$PKG_CONFIG --cflags ice 2>/dev/null`"
32767 	cf_pkgconfig_libs="`$PKG_CONFIG --libs   ice 2>/dev/null`"
32768 	test -n "$verbose" && echo "	package ice CFLAGS: $cf_pkgconfig_incs" 1>&6
32769
32770-echo "${as_me:-configure}:13814: testing package ice CFLAGS: $cf_pkgconfig_incs ..." 1>&5
32771+echo "${as_me:-configure}:13916: testing package ice CFLAGS: $cf_pkgconfig_incs ..." 1>&5
32772
32773 	test -n "$verbose" && echo "	package ice LIBS: $cf_pkgconfig_libs" 1>&6
32774
32775-echo "${as_me:-configure}:13818: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5
32776+echo "${as_me:-configure}:13920: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5
32777
32778 cf_fix_cppflags=no
32779 cf_new_cflags=
32780@@ -13934,17 +14036,17 @@
32781 if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists sm; then
32782 	test -n "$verbose" && echo "	found package sm" 1>&6
32783
32784-echo "${as_me:-configure}:13937: testing found package sm ..." 1>&5
32785+echo "${as_me:-configure}:14039: testing found package sm ..." 1>&5
32786
32787 	cf_pkgconfig_incs="`$PKG_CONFIG --cflags sm 2>/dev/null`"
32788 	cf_pkgconfig_libs="`$PKG_CONFIG --libs   sm 2>/dev/null`"
32789 	test -n "$verbose" && echo "	package sm CFLAGS: $cf_pkgconfig_incs" 1>&6
32790
32791-echo "${as_me:-configure}:13943: testing package sm CFLAGS: $cf_pkgconfig_incs ..." 1>&5
32792+echo "${as_me:-configure}:14045: testing package sm CFLAGS: $cf_pkgconfig_incs ..." 1>&5
32793
32794 	test -n "$verbose" && echo "	package sm LIBS: $cf_pkgconfig_libs" 1>&6
32795
32796-echo "${as_me:-configure}:13947: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5
32797+echo "${as_me:-configure}:14049: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5
32798
32799 cf_fix_cppflags=no
32800 cf_new_cflags=
32801@@ -14073,12 +14175,12 @@
32802
32803 test -n "$verbose" && echo "	...before $LIBS" 1>&6
32804
32805-echo "${as_me:-configure}:14076: testing ...before $LIBS ..." 1>&5
32806+echo "${as_me:-configure}:14178: testing ...before $LIBS ..." 1>&5
32807
32808 LIBS=`echo "$LIBS" | sed -e "s/[ 	][ 	]*/ /g" -e "s%-lXt %-lXt $X_PRE_LIBS %" -e 's%  % %g'`
32809 test -n "$verbose" && echo "	...after  $LIBS" 1>&6
32810
32811-echo "${as_me:-configure}:14081: testing ...after  $LIBS ..." 1>&5
32812+echo "${as_me:-configure}:14183: testing ...after  $LIBS ..." 1>&5
32813
32814 fi
32815
32816@@ -14098,7 +14200,7 @@
32817
32818 test -n "$verbose" && echo "	checking additions to CFLAGS" 1>&6
32819
32820-echo "${as_me:-configure}:14101: testing checking additions to CFLAGS ..." 1>&5
32821+echo "${as_me:-configure}:14203: testing checking additions to CFLAGS ..." 1>&5
32822
32823 cf_check_cflags="$CFLAGS"
32824 cf_check_cppflags="$CPPFLAGS"
32825@@ -14183,7 +14285,7 @@
32826 if test -n "$cf_new_cflags" ; then
32827 	test -n "$verbose" && echo "	add to \$CFLAGS $cf_new_cflags" 1>&6
32828
32829-echo "${as_me:-configure}:14186: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5
32830+echo "${as_me:-configure}:14288: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5
32831
32832 	test -n "$CFLAGS" && CFLAGS="$CFLAGS "
32833 	CFLAGS="${CFLAGS}$cf_new_cflags"
32834@@ -14193,7 +14295,7 @@
32835 if test -n "$cf_new_cppflags" ; then
32836 	test -n "$verbose" && echo "	add to \$CPPFLAGS $cf_new_cppflags" 1>&6
32837
32838-echo "${as_me:-configure}:14196: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5
32839+echo "${as_me:-configure}:14298: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5
32840
32841 	test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS "
32842 	CPPFLAGS="${CPPFLAGS}$cf_new_cppflags"
32843@@ -14203,7 +14305,7 @@
32844 if test -n "$cf_new_extra_cppflags" ; then
32845 	test -n "$verbose" && echo "	add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags" 1>&6
32846
32847-echo "${as_me:-configure}:14206: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5
32848+echo "${as_me:-configure}:14308: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5
32849
32850 	test -n "$EXTRA_CPPFLAGS" && EXTRA_CPPFLAGS="$EXTRA_CPPFLAGS "
32851 	EXTRA_CPPFLAGS="${EXTRA_CPPFLAGS}$cf_new_extra_cppflags"
32852@@ -14212,7 +14314,7 @@
32853
32854 if test "x$cf_check_cflags" != "x$CFLAGS" ; then
32855 cat >conftest.$ac_ext <<_ACEOF
32856-#line 14215 "configure"
32857+#line 14317 "configure"
32858 #include "confdefs.h"
32859 #include <stdio.h>
32860 int
32861@@ -14224,16 +14326,16 @@
32862 }
32863 _ACEOF
32864 rm -f conftest.$ac_objext conftest$ac_exeext
32865-if { (eval echo "$as_me:14227: \"$ac_link\"") >&5
32866+if { (eval echo "$as_me:14329: \"$ac_link\"") >&5
32867   (eval $ac_link) 2>&5
32868   ac_status=$?
32869-  echo "$as_me:14230: \$? = $ac_status" >&5
32870+  echo "$as_me:14332: \$? = $ac_status" >&5
32871   (exit $ac_status); } &&
32872          { ac_try='test -s conftest$ac_exeext'
32873-  { (eval echo "$as_me:14233: \"$ac_try\"") >&5
32874+  { (eval echo "$as_me:14335: \"$ac_try\"") >&5
32875   (eval $ac_try) 2>&5
32876   ac_status=$?
32877-  echo "$as_me:14236: \$? = $ac_status" >&5
32878+  echo "$as_me:14338: \$? = $ac_status" >&5
32879   (exit $ac_status); }; }; then
32880   :
32881 else
32882@@ -14241,12 +14343,12 @@
32883 cat conftest.$ac_ext >&5
32884 test -n "$verbose" && echo "	test-compile failed.  Undoing change to \$CFLAGS" 1>&6
32885
32886-echo "${as_me:-configure}:14244: testing test-compile failed.  Undoing change to \$CFLAGS ..." 1>&5
32887+echo "${as_me:-configure}:14346: testing test-compile failed.  Undoing change to \$CFLAGS ..." 1>&5
32888
32889 	 if test "x$cf_check_cppflags" != "x$CPPFLAGS" ; then
32890 		 test -n "$verbose" && echo "	but keeping change to \$CPPFLAGS" 1>&6
32891
32892-echo "${as_me:-configure}:14249: testing but keeping change to \$CPPFLAGS ..." 1>&5
32893+echo "${as_me:-configure}:14351: testing but keeping change to \$CPPFLAGS ..." 1>&5
32894
32895 	 fi
32896 	 CFLAGS="$cf_check_flags"
32897@@ -14254,13 +14356,13 @@
32898 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
32899 fi
32900
32901-	echo "$as_me:14257: checking for XOpenDisplay" >&5
32902+	echo "$as_me:14359: checking for XOpenDisplay" >&5
32903 echo $ECHO_N "checking for XOpenDisplay... $ECHO_C" >&6
32904 if test "${ac_cv_func_XOpenDisplay+set}" = set; then
32905   echo $ECHO_N "(cached) $ECHO_C" >&6
32906 else
32907   cat >conftest.$ac_ext <<_ACEOF
32908-#line 14263 "configure"
32909+#line 14365 "configure"
32910 #include "confdefs.h"
32911 #define XOpenDisplay autoconf_temporary
32912 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
32913@@ -14291,16 +14393,16 @@
32914 }
32915 _ACEOF
32916 rm -f conftest.$ac_objext conftest$ac_exeext
32917-if { (eval echo "$as_me:14294: \"$ac_link\"") >&5
32918+if { (eval echo "$as_me:14396: \"$ac_link\"") >&5
32919   (eval $ac_link) 2>&5
32920   ac_status=$?
32921-  echo "$as_me:14297: \$? = $ac_status" >&5
32922+  echo "$as_me:14399: \$? = $ac_status" >&5
32923   (exit $ac_status); } &&
32924          { ac_try='test -s conftest$ac_exeext'
32925-  { (eval echo "$as_me:14300: \"$ac_try\"") >&5
32926+  { (eval echo "$as_me:14402: \"$ac_try\"") >&5
32927   (eval $ac_try) 2>&5
32928   ac_status=$?
32929-  echo "$as_me:14303: \$? = $ac_status" >&5
32930+  echo "$as_me:14405: \$? = $ac_status" >&5
32931   (exit $ac_status); }; }; then
32932   ac_cv_func_XOpenDisplay=yes
32933 else
32934@@ -14310,13 +14412,13 @@
32935 fi
32936 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
32937 fi
32938-echo "$as_me:14313: result: $ac_cv_func_XOpenDisplay" >&5
32939+echo "$as_me:14415: result: $ac_cv_func_XOpenDisplay" >&5
32940 echo "${ECHO_T}$ac_cv_func_XOpenDisplay" >&6
32941 if test $ac_cv_func_XOpenDisplay = yes; then
32942   :
32943 else
32944
32945-	echo "$as_me:14319: checking for XOpenDisplay in -lX11" >&5
32946+	echo "$as_me:14421: checking for XOpenDisplay in -lX11" >&5
32947 echo $ECHO_N "checking for XOpenDisplay in -lX11... $ECHO_C" >&6
32948 if test "${ac_cv_lib_X11_XOpenDisplay+set}" = set; then
32949   echo $ECHO_N "(cached) $ECHO_C" >&6
32950@@ -14324,7 +14426,7 @@
32951   ac_check_lib_save_LIBS=$LIBS
32952 LIBS="-lX11 $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS"
32953 cat >conftest.$ac_ext <<_ACEOF
32954-#line 14327 "configure"
32955+#line 14429 "configure"
32956 #include "confdefs.h"
32957
32958 /* Override any gcc2 internal prototype to avoid an error.  */
32959@@ -14343,16 +14445,16 @@
32960 }
32961 _ACEOF
32962 rm -f conftest.$ac_objext conftest$ac_exeext
32963-if { (eval echo "$as_me:14346: \"$ac_link\"") >&5
32964+if { (eval echo "$as_me:14448: \"$ac_link\"") >&5
32965   (eval $ac_link) 2>&5
32966   ac_status=$?
32967-  echo "$as_me:14349: \$? = $ac_status" >&5
32968+  echo "$as_me:14451: \$? = $ac_status" >&5
32969   (exit $ac_status); } &&
32970          { ac_try='test -s conftest$ac_exeext'
32971-  { (eval echo "$as_me:14352: \"$ac_try\"") >&5
32972+  { (eval echo "$as_me:14454: \"$ac_try\"") >&5
32973   (eval $ac_try) 2>&5
32974   ac_status=$?
32975-  echo "$as_me:14355: \$? = $ac_status" >&5
32976+  echo "$as_me:14457: \$? = $ac_status" >&5
32977   (exit $ac_status); }; }; then
32978   ac_cv_lib_X11_XOpenDisplay=yes
32979 else
32980@@ -14363,7 +14465,7 @@
32981 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
32982 LIBS=$ac_check_lib_save_LIBS
32983 fi
32984-echo "$as_me:14366: result: $ac_cv_lib_X11_XOpenDisplay" >&5
32985+echo "$as_me:14468: result: $ac_cv_lib_X11_XOpenDisplay" >&5
32986 echo "${ECHO_T}$ac_cv_lib_X11_XOpenDisplay" >&6
32987 if test $ac_cv_lib_X11_XOpenDisplay = yes; then
32988
32989@@ -14387,13 +14489,13 @@
32990
32991 fi
32992
32993-	echo "$as_me:14390: checking for XtAppInitialize" >&5
32994+	echo "$as_me:14492: checking for XtAppInitialize" >&5
32995 echo $ECHO_N "checking for XtAppInitialize... $ECHO_C" >&6
32996 if test "${ac_cv_func_XtAppInitialize+set}" = set; then
32997   echo $ECHO_N "(cached) $ECHO_C" >&6
32998 else
32999   cat >conftest.$ac_ext <<_ACEOF
33000-#line 14396 "configure"
33001+#line 14498 "configure"
33002 #include "confdefs.h"
33003 #define XtAppInitialize autoconf_temporary
33004 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
33005@@ -14424,16 +14526,16 @@
33006 }
33007 _ACEOF
33008 rm -f conftest.$ac_objext conftest$ac_exeext
33009-if { (eval echo "$as_me:14427: \"$ac_link\"") >&5
33010+if { (eval echo "$as_me:14529: \"$ac_link\"") >&5
33011   (eval $ac_link) 2>&5
33012   ac_status=$?
33013-  echo "$as_me:14430: \$? = $ac_status" >&5
33014+  echo "$as_me:14532: \$? = $ac_status" >&5
33015   (exit $ac_status); } &&
33016          { ac_try='test -s conftest$ac_exeext'
33017-  { (eval echo "$as_me:14433: \"$ac_try\"") >&5
33018+  { (eval echo "$as_me:14535: \"$ac_try\"") >&5
33019   (eval $ac_try) 2>&5
33020   ac_status=$?
33021-  echo "$as_me:14436: \$? = $ac_status" >&5
33022+  echo "$as_me:14538: \$? = $ac_status" >&5
33023   (exit $ac_status); }; }; then
33024   ac_cv_func_XtAppInitialize=yes
33025 else
33026@@ -14443,13 +14545,13 @@
33027 fi
33028 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
33029 fi
33030-echo "$as_me:14446: result: $ac_cv_func_XtAppInitialize" >&5
33031+echo "$as_me:14548: result: $ac_cv_func_XtAppInitialize" >&5
33032 echo "${ECHO_T}$ac_cv_func_XtAppInitialize" >&6
33033 if test $ac_cv_func_XtAppInitialize = yes; then
33034   :
33035 else
33036
33037-	echo "$as_me:14452: checking for XtAppInitialize in -lXt" >&5
33038+	echo "$as_me:14554: checking for XtAppInitialize in -lXt" >&5
33039 echo $ECHO_N "checking for XtAppInitialize in -lXt... $ECHO_C" >&6
33040 if test "${ac_cv_lib_Xt_XtAppInitialize+set}" = set; then
33041   echo $ECHO_N "(cached) $ECHO_C" >&6
33042@@ -14457,7 +14559,7 @@
33043   ac_check_lib_save_LIBS=$LIBS
33044 LIBS="-lXt $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS"
33045 cat >conftest.$ac_ext <<_ACEOF
33046-#line 14460 "configure"
33047+#line 14562 "configure"
33048 #include "confdefs.h"
33049
33050 /* Override any gcc2 internal prototype to avoid an error.  */
33051@@ -14476,16 +14578,16 @@
33052 }
33053 _ACEOF
33054 rm -f conftest.$ac_objext conftest$ac_exeext
33055-if { (eval echo "$as_me:14479: \"$ac_link\"") >&5
33056+if { (eval echo "$as_me:14581: \"$ac_link\"") >&5
33057   (eval $ac_link) 2>&5
33058   ac_status=$?
33059-  echo "$as_me:14482: \$? = $ac_status" >&5
33060+  echo "$as_me:14584: \$? = $ac_status" >&5
33061   (exit $ac_status); } &&
33062          { ac_try='test -s conftest$ac_exeext'
33063-  { (eval echo "$as_me:14485: \"$ac_try\"") >&5
33064+  { (eval echo "$as_me:14587: \"$ac_try\"") >&5
33065   (eval $ac_try) 2>&5
33066   ac_status=$?
33067-  echo "$as_me:14488: \$? = $ac_status" >&5
33068+  echo "$as_me:14590: \$? = $ac_status" >&5
33069   (exit $ac_status); }; }; then
33070   ac_cv_lib_Xt_XtAppInitialize=yes
33071 else
33072@@ -14496,7 +14598,7 @@
33073 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
33074 LIBS=$ac_check_lib_save_LIBS
33075 fi
33076-echo "$as_me:14499: result: $ac_cv_lib_Xt_XtAppInitialize" >&5
33077+echo "$as_me:14601: result: $ac_cv_lib_Xt_XtAppInitialize" >&5
33078 echo "${ECHO_T}$ac_cv_lib_Xt_XtAppInitialize" >&6
33079 if test $ac_cv_lib_Xt_XtAppInitialize = yes; then
33080
33081@@ -14513,7 +14615,7 @@
33082 fi
33083
33084 if test $cf_have_X_LIBS = no ; then
33085-	{ echo "$as_me:14516: WARNING: Unable to successfully link X Toolkit library (-lXt) with
33086+	{ echo "$as_me:14618: WARNING: Unable to successfully link X Toolkit library (-lXt) with
33087 test program.  You will have to check and add the proper libraries by hand
33088 to makefile." >&5
33089 echo "$as_me: WARNING: Unable to successfully link X Toolkit library (-lXt) with
33090@@ -14539,14 +14641,14 @@
33091 	test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS "
33092 	CPPFLAGS="${CPPFLAGS}-I$cf_path/include"
33093
33094-			echo "$as_me:14542: checking for $cf_test in $cf_path" >&5
33095+			echo "$as_me:14644: checking for $cf_test in $cf_path" >&5
33096 echo $ECHO_N "checking for $cf_test in $cf_path... $ECHO_C" >&6
33097 		else
33098-			echo "$as_me:14545: checking for $cf_test" >&5
33099+			echo "$as_me:14647: checking for $cf_test" >&5
33100 echo $ECHO_N "checking for $cf_test... $ECHO_C" >&6
33101 		fi
33102 		cat >conftest.$ac_ext <<_ACEOF
33103-#line 14549 "configure"
33104+#line 14651 "configure"
33105 #include "confdefs.h"
33106
33107 #include <X11/Intrinsic.h>
33108@@ -14560,16 +14662,16 @@
33109 }
33110 _ACEOF
33111 rm -f conftest.$ac_objext
33112-if { (eval echo "$as_me:14563: \"$ac_compile\"") >&5
33113+if { (eval echo "$as_me:14665: \"$ac_compile\"") >&5
33114   (eval $ac_compile) 2>&5
33115   ac_status=$?
33116-  echo "$as_me:14566: \$? = $ac_status" >&5
33117+  echo "$as_me:14668: \$? = $ac_status" >&5
33118   (exit $ac_status); } &&
33119          { ac_try='test -s conftest.$ac_objext'
33120-  { (eval echo "$as_me:14569: \"$ac_try\"") >&5
33121+  { (eval echo "$as_me:14671: \"$ac_try\"") >&5
33122   (eval $ac_try) 2>&5
33123   ac_status=$?
33124-  echo "$as_me:14572: \$? = $ac_status" >&5
33125+  echo "$as_me:14674: \$? = $ac_status" >&5
33126   (exit $ac_status); }; }; then
33127   cf_result=yes
33128 else
33129@@ -14578,7 +14680,7 @@
33130 cf_result=no
33131 fi
33132 rm -f conftest.$ac_objext conftest.$ac_ext
33133-		echo "$as_me:14581: result: $cf_result" >&5
33134+		echo "$as_me:14683: result: $cf_result" >&5
33135 echo "${ECHO_T}$cf_result" >&6
33136 		if test "$cf_result" = yes ; then
33137 			cf_x_athena_inc=$cf_path
33138@@ -14590,7 +14692,7 @@
33139 done
33140
33141 if test -z "$cf_x_athena_inc" ; then
33142-	{ echo "$as_me:14593: WARNING: Unable to successfully find Athena header files with test program" >&5
33143+	{ echo "$as_me:14695: WARNING: Unable to successfully find Athena header files with test program" >&5
33144 echo "$as_me: WARNING: Unable to successfully find Athena header files with test program" >&2;}
33145 elif test "$cf_x_athena_inc" != default ; then
33146
33147@@ -14639,7 +14741,7 @@
33148 done
33149 LIBS="$cf_add_libs"
33150
33151-				echo "$as_me:14642: checking for $cf_libs in $cf_path" >&5
33152+				echo "$as_me:14744: checking for $cf_libs in $cf_path" >&5
33153 echo $ECHO_N "checking for $cf_libs in $cf_path... $ECHO_C" >&6
33154 			else
33155
33156@@ -14659,11 +14761,11 @@
33157 done
33158 LIBS="$cf_add_libs"
33159
33160-				echo "$as_me:14662: checking for $cf_test in $cf_libs" >&5
33161+				echo "$as_me:14764: checking for $cf_test in $cf_libs" >&5
33162 echo $ECHO_N "checking for $cf_test in $cf_libs... $ECHO_C" >&6
33163 			fi
33164 			cat >conftest.$ac_ext <<_ACEOF
33165-#line 14666 "configure"
33166+#line 14768 "configure"
33167 #include "confdefs.h"
33168
33169 #include <X11/Intrinsic.h>
33170@@ -14679,16 +14781,16 @@
33171 }
33172 _ACEOF
33173 rm -f conftest.$ac_objext conftest$ac_exeext
33174-if { (eval echo "$as_me:14682: \"$ac_link\"") >&5
33175+if { (eval echo "$as_me:14784: \"$ac_link\"") >&5
33176   (eval $ac_link) 2>&5
33177   ac_status=$?
33178-  echo "$as_me:14685: \$? = $ac_status" >&5
33179+  echo "$as_me:14787: \$? = $ac_status" >&5
33180   (exit $ac_status); } &&
33181          { ac_try='test -s conftest$ac_exeext'
33182-  { (eval echo "$as_me:14688: \"$ac_try\"") >&5
33183+  { (eval echo "$as_me:14790: \"$ac_try\"") >&5
33184   (eval $ac_try) 2>&5
33185   ac_status=$?
33186-  echo "$as_me:14691: \$? = $ac_status" >&5
33187+  echo "$as_me:14793: \$? = $ac_status" >&5
33188   (exit $ac_status); }; }; then
33189   cf_result=yes
33190 else
33191@@ -14697,7 +14799,7 @@
33192 cf_result=no
33193 fi
33194 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
33195-			echo "$as_me:14700: result: $cf_result" >&5
33196+			echo "$as_me:14802: result: $cf_result" >&5
33197 echo "${ECHO_T}$cf_result" >&6
33198 			if test "$cf_result" = yes ; then
33199 				cf_x_athena_lib="$cf_libs"
33200@@ -14711,7 +14813,7 @@
33201 done
33202
33203 if test -z "$cf_x_athena_lib" ; then
33204-	{ { echo "$as_me:14714: error: Unable to successfully link Athena library (-l$cf_x_athena_root) with test program" >&5
33205+	{ { echo "$as_me:14816: error: Unable to successfully link Athena library (-l$cf_x_athena_root) with test program" >&5
33206 echo "$as_me: error: Unable to successfully link Athena library (-l$cf_x_athena_root) with test program" >&2;}
33207    { (exit 1); exit 1; }; }
33208 fi
33209@@ -14729,7 +14831,7 @@
33210   do
33211     # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
33212 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
33213-echo "$as_me:14732: checking for $ac_word" >&5
33214+echo "$as_me:14834: checking for $ac_word" >&5
33215 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
33216 if test "${ac_cv_prog_XCURSES_CONFIG+set}" = set; then
33217   echo $ECHO_N "(cached) $ECHO_C" >&6
33218@@ -14744,7 +14846,7 @@
33219   test -z "$ac_dir" && ac_dir=.
33220   $as_executable_p "$ac_dir/$ac_word" || continue
33221 ac_cv_prog_XCURSES_CONFIG="$ac_tool_prefix$ac_prog"
33222-echo "$as_me:14747: found $ac_dir/$ac_word" >&5
33223+echo "$as_me:14849: found $ac_dir/$ac_word" >&5
33224 break
33225 done
33226
33227@@ -14752,10 +14854,10 @@
33228 fi
33229 XCURSES_CONFIG=$ac_cv_prog_XCURSES_CONFIG
33230 if test -n "$XCURSES_CONFIG"; then
33231-  echo "$as_me:14755: result: $XCURSES_CONFIG" >&5
33232+  echo "$as_me:14857: result: $XCURSES_CONFIG" >&5
33233 echo "${ECHO_T}$XCURSES_CONFIG" >&6
33234 else
33235-  echo "$as_me:14758: result: no" >&5
33236+  echo "$as_me:14860: result: no" >&5
33237 echo "${ECHO_T}no" >&6
33238 fi
33239
33240@@ -14768,7 +14870,7 @@
33241 do
33242   # Extract the first word of "$ac_prog", so it can be a program name with args.
33243 set dummy $ac_prog; ac_word=$2
33244-echo "$as_me:14771: checking for $ac_word" >&5
33245+echo "$as_me:14873: checking for $ac_word" >&5
33246 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
33247 if test "${ac_cv_prog_ac_ct_XCURSES_CONFIG+set}" = set; then
33248   echo $ECHO_N "(cached) $ECHO_C" >&6
33249@@ -14783,7 +14885,7 @@
33250   test -z "$ac_dir" && ac_dir=.
33251   $as_executable_p "$ac_dir/$ac_word" || continue
33252 ac_cv_prog_ac_ct_XCURSES_CONFIG="$ac_prog"
33253-echo "$as_me:14786: found $ac_dir/$ac_word" >&5
33254+echo "$as_me:14888: found $ac_dir/$ac_word" >&5
33255 break
33256 done
33257
33258@@ -14791,10 +14893,10 @@
33259 fi
33260 ac_ct_XCURSES_CONFIG=$ac_cv_prog_ac_ct_XCURSES_CONFIG
33261 if test -n "$ac_ct_XCURSES_CONFIG"; then
33262-  echo "$as_me:14794: result: $ac_ct_XCURSES_CONFIG" >&5
33263+  echo "$as_me:14896: result: $ac_ct_XCURSES_CONFIG" >&5
33264 echo "${ECHO_T}$ac_ct_XCURSES_CONFIG" >&6
33265 else
33266-  echo "$as_me:14797: result: no" >&5
33267+  echo "$as_me:14899: result: no" >&5
33268 echo "${ECHO_T}no" >&6
33269 fi
33270
33271@@ -14929,7 +15031,7 @@
33272
33273 test -n "$verbose" && echo "	checking additions to CFLAGS" 1>&6
33274
33275-echo "${as_me:-configure}:14932: testing checking additions to CFLAGS ..." 1>&5
33276+echo "${as_me:-configure}:15034: testing checking additions to CFLAGS ..." 1>&5
33277
33278 cf_check_cflags="$CFLAGS"
33279 cf_check_cppflags="$CPPFLAGS"
33280@@ -15014,7 +15116,7 @@
33281 if test -n "$cf_new_cflags" ; then
33282 	test -n "$verbose" && echo "	add to \$CFLAGS $cf_new_cflags" 1>&6
33283
33284-echo "${as_me:-configure}:15017: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5
33285+echo "${as_me:-configure}:15119: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5
33286
33287 	test -n "$CFLAGS" && CFLAGS="$CFLAGS "
33288 	CFLAGS="${CFLAGS}$cf_new_cflags"
33289@@ -15024,7 +15126,7 @@
33290 if test -n "$cf_new_cppflags" ; then
33291 	test -n "$verbose" && echo "	add to \$CPPFLAGS $cf_new_cppflags" 1>&6
33292
33293-echo "${as_me:-configure}:15027: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5
33294+echo "${as_me:-configure}:15129: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5
33295
33296 	test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS "
33297 	CPPFLAGS="${CPPFLAGS}$cf_new_cppflags"
33298@@ -15034,7 +15136,7 @@
33299 if test -n "$cf_new_extra_cppflags" ; then
33300 	test -n "$verbose" && echo "	add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags" 1>&6
33301
33302-echo "${as_me:-configure}:15037: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5
33303+echo "${as_me:-configure}:15139: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5
33304
33305 	test -n "$EXTRA_CPPFLAGS" && EXTRA_CPPFLAGS="$EXTRA_CPPFLAGS "
33306 	EXTRA_CPPFLAGS="${EXTRA_CPPFLAGS}$cf_new_extra_cppflags"
33307@@ -15043,7 +15145,7 @@
33308
33309 if test "x$cf_check_cflags" != "x$CFLAGS" ; then
33310 cat >conftest.$ac_ext <<_ACEOF
33311-#line 15046 "configure"
33312+#line 15148 "configure"
33313 #include "confdefs.h"
33314 #include <stdio.h>
33315 int
33316@@ -15055,16 +15157,16 @@
33317 }
33318 _ACEOF
33319 rm -f conftest.$ac_objext conftest$ac_exeext
33320-if { (eval echo "$as_me:15058: \"$ac_link\"") >&5
33321+if { (eval echo "$as_me:15160: \"$ac_link\"") >&5
33322   (eval $ac_link) 2>&5
33323   ac_status=$?
33324-  echo "$as_me:15061: \$? = $ac_status" >&5
33325+  echo "$as_me:15163: \$? = $ac_status" >&5
33326   (exit $ac_status); } &&
33327          { ac_try='test -s conftest$ac_exeext'
33328-  { (eval echo "$as_me:15064: \"$ac_try\"") >&5
33329+  { (eval echo "$as_me:15166: \"$ac_try\"") >&5
33330   (eval $ac_try) 2>&5
33331   ac_status=$?
33332-  echo "$as_me:15067: \$? = $ac_status" >&5
33333+  echo "$as_me:15169: \$? = $ac_status" >&5
33334   (exit $ac_status); }; }; then
33335   :
33336 else
33337@@ -15072,12 +15174,12 @@
33338 cat conftest.$ac_ext >&5
33339 test -n "$verbose" && echo "	test-compile failed.  Undoing change to \$CFLAGS" 1>&6
33340
33341-echo "${as_me:-configure}:15075: testing test-compile failed.  Undoing change to \$CFLAGS ..." 1>&5
33342+echo "${as_me:-configure}:15177: testing test-compile failed.  Undoing change to \$CFLAGS ..." 1>&5
33343
33344 	 if test "x$cf_check_cppflags" != "x$CPPFLAGS" ; then
33345 		 test -n "$verbose" && echo "	but keeping change to \$CPPFLAGS" 1>&6
33346
33347-echo "${as_me:-configure}:15080: testing but keeping change to \$CPPFLAGS ..." 1>&5
33348+echo "${as_me:-configure}:15182: testing but keeping change to \$CPPFLAGS ..." 1>&5
33349
33350 	 fi
33351 	 CFLAGS="$cf_check_flags"
33352@@ -15085,7 +15187,7 @@
33353 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
33354 fi
33355
33356-echo "$as_me:15088: checking for XOpenDisplay in -lX11" >&5
33357+echo "$as_me:15190: checking for XOpenDisplay in -lX11" >&5
33358 echo $ECHO_N "checking for XOpenDisplay in -lX11... $ECHO_C" >&6
33359 if test "${ac_cv_lib_X11_XOpenDisplay+set}" = set; then
33360   echo $ECHO_N "(cached) $ECHO_C" >&6
33361@@ -15093,7 +15195,7 @@
33362   ac_check_lib_save_LIBS=$LIBS
33363 LIBS="-lX11 $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS"
33364 cat >conftest.$ac_ext <<_ACEOF
33365-#line 15096 "configure"
33366+#line 15198 "configure"
33367 #include "confdefs.h"
33368
33369 /* Override any gcc2 internal prototype to avoid an error.  */
33370@@ -15112,16 +15214,16 @@
33371 }
33372 _ACEOF
33373 rm -f conftest.$ac_objext conftest$ac_exeext
33374-if { (eval echo "$as_me:15115: \"$ac_link\"") >&5
33375+if { (eval echo "$as_me:15217: \"$ac_link\"") >&5
33376   (eval $ac_link) 2>&5
33377   ac_status=$?
33378-  echo "$as_me:15118: \$? = $ac_status" >&5
33379+  echo "$as_me:15220: \$? = $ac_status" >&5
33380   (exit $ac_status); } &&
33381          { ac_try='test -s conftest$ac_exeext'
33382-  { (eval echo "$as_me:15121: \"$ac_try\"") >&5
33383+  { (eval echo "$as_me:15223: \"$ac_try\"") >&5
33384   (eval $ac_try) 2>&5
33385   ac_status=$?
33386-  echo "$as_me:15124: \$? = $ac_status" >&5
33387+  echo "$as_me:15226: \$? = $ac_status" >&5
33388   (exit $ac_status); }; }; then
33389   ac_cv_lib_X11_XOpenDisplay=yes
33390 else
33391@@ -15132,7 +15234,7 @@
33392 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
33393 LIBS=$ac_check_lib_save_LIBS
33394 fi
33395-echo "$as_me:15135: result: $ac_cv_lib_X11_XOpenDisplay" >&5
33396+echo "$as_me:15237: result: $ac_cv_lib_X11_XOpenDisplay" >&5
33397 echo "${ECHO_T}$ac_cv_lib_X11_XOpenDisplay" >&6
33398 if test $ac_cv_lib_X11_XOpenDisplay = yes; then
33399
33400@@ -15154,7 +15256,7 @@
33401
33402 fi
33403
33404-echo "$as_me:15157: checking for XCurses library" >&5
33405+echo "$as_me:15259: checking for XCurses library" >&5
33406 echo $ECHO_N "checking for XCurses library... $ECHO_C" >&6
33407 if test "${cf_cv_lib_XCurses+set}" = set; then
33408   echo $ECHO_N "(cached) $ECHO_C" >&6
33409@@ -15177,7 +15279,7 @@
33410 LIBS="$cf_add_libs"
33411
33412 cat >conftest.$ac_ext <<_ACEOF
33413-#line 15180 "configure"
33414+#line 15282 "configure"
33415 #include "confdefs.h"
33416
33417 #include <xcurses.h>
33418@@ -15192,16 +15294,16 @@
33419 }
33420 _ACEOF
33421 rm -f conftest.$ac_objext conftest$ac_exeext
33422-if { (eval echo "$as_me:15195: \"$ac_link\"") >&5
33423+if { (eval echo "$as_me:15297: \"$ac_link\"") >&5
33424   (eval $ac_link) 2>&5
33425   ac_status=$?
33426-  echo "$as_me:15198: \$? = $ac_status" >&5
33427+  echo "$as_me:15300: \$? = $ac_status" >&5
33428   (exit $ac_status); } &&
33429          { ac_try='test -s conftest$ac_exeext'
33430-  { (eval echo "$as_me:15201: \"$ac_try\"") >&5
33431+  { (eval echo "$as_me:15303: \"$ac_try\"") >&5
33432   (eval $ac_try) 2>&5
33433   ac_status=$?
33434-  echo "$as_me:15204: \$? = $ac_status" >&5
33435+  echo "$as_me:15306: \$? = $ac_status" >&5
33436   (exit $ac_status); }; }; then
33437   cf_cv_lib_XCurses=yes
33438 else
33439@@ -15212,7 +15314,7 @@
33440 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
33441
33442 fi
33443-echo "$as_me:15215: result: $cf_cv_lib_XCurses" >&5
33444+echo "$as_me:15317: result: $cf_cv_lib_XCurses" >&5
33445 echo "${ECHO_T}$cf_cv_lib_XCurses" >&6
33446
33447 fi
33448@@ -15227,23 +15329,23 @@
33449 #define XCURSES 1
33450 EOF
33451
33452-	echo "$as_me:15230: checking for xcurses.h" >&5
33453+	echo "$as_me:15332: checking for xcurses.h" >&5
33454 echo $ECHO_N "checking for xcurses.h... $ECHO_C" >&6
33455 if test "${ac_cv_header_xcurses_h+set}" = set; then
33456   echo $ECHO_N "(cached) $ECHO_C" >&6
33457 else
33458   cat >conftest.$ac_ext <<_ACEOF
33459-#line 15236 "configure"
33460+#line 15338 "configure"
33461 #include "confdefs.h"
33462 #include <xcurses.h>
33463 _ACEOF
33464-if { (eval echo "$as_me:15240: \"$ac_cpp conftest.$ac_ext\"") >&5
33465+if { (eval echo "$as_me:15342: \"$ac_cpp conftest.$ac_ext\"") >&5
33466   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
33467   ac_status=$?
33468   egrep -v '^ *\+' conftest.er1 >conftest.err
33469   rm -f conftest.er1
33470   cat conftest.err >&5
33471-  echo "$as_me:15246: \$? = $ac_status" >&5
33472+  echo "$as_me:15348: \$? = $ac_status" >&5
33473   (exit $ac_status); } >/dev/null; then
33474   if test -s conftest.err; then
33475     ac_cpp_err=$ac_c_preproc_warn_flag
33476@@ -15262,7 +15364,7 @@
33477 fi
33478 rm -f conftest.err conftest.$ac_ext
33479 fi
33480-echo "$as_me:15265: result: $ac_cv_header_xcurses_h" >&5
33481+echo "$as_me:15367: result: $ac_cv_header_xcurses_h" >&5
33482 echo "${ECHO_T}$ac_cv_header_xcurses_h" >&6
33483 if test $ac_cv_header_xcurses_h = yes; then
33484
33485@@ -15273,14 +15375,14 @@
33486 fi
33487
33488 else
33489-	{ { echo "$as_me:15276: error: Cannot link with XCurses" >&5
33490+	{ { echo "$as_me:15378: error: Cannot link with XCurses" >&5
33491 echo "$as_me: error: Cannot link with XCurses" >&2;}
33492    { (exit 1); exit 1; }; }
33493 fi
33494
33495 	;;
33496 (*)
33497-	{ { echo "$as_me:15283: error: unexpected screen-value: $cf_cv_screen" >&5
33498+	{ { echo "$as_me:15385: error: unexpected screen-value: $cf_cv_screen" >&5
33499 echo "$as_me: error: unexpected screen-value: $cf_cv_screen" >&2;}
33500    { (exit 1); exit 1; }; }
33501 	;;
33502@@ -15288,7 +15390,7 @@
33503
33504 : ${cf_nculib_root:=$cf_cv_screen}
33505 as_ac_Lib=`echo "ac_cv_lib_$cf_nculib_root''__nc_init_pthreads" | $as_tr_sh`
33506-echo "$as_me:15291: checking for _nc_init_pthreads in -l$cf_nculib_root" >&5
33507+echo "$as_me:15393: checking for _nc_init_pthreads in -l$cf_nculib_root" >&5
33508 echo $ECHO_N "checking for _nc_init_pthreads in -l$cf_nculib_root... $ECHO_C" >&6
33509 if eval "test \"\${$as_ac_Lib+set}\" = set"; then
33510   echo $ECHO_N "(cached) $ECHO_C" >&6
33511@@ -15296,7 +15398,7 @@
33512   ac_check_lib_save_LIBS=$LIBS
33513 LIBS="-l$cf_nculib_root  $LIBS"
33514 cat >conftest.$ac_ext <<_ACEOF
33515-#line 15299 "configure"
33516+#line 15401 "configure"
33517 #include "confdefs.h"
33518
33519 /* Override any gcc2 internal prototype to avoid an error.  */
33520@@ -15315,16 +15417,16 @@
33521 }
33522 _ACEOF
33523 rm -f conftest.$ac_objext conftest$ac_exeext
33524-if { (eval echo "$as_me:15318: \"$ac_link\"") >&5
33525+if { (eval echo "$as_me:15420: \"$ac_link\"") >&5
33526   (eval $ac_link) 2>&5
33527   ac_status=$?
33528-  echo "$as_me:15321: \$? = $ac_status" >&5
33529+  echo "$as_me:15423: \$? = $ac_status" >&5
33530   (exit $ac_status); } &&
33531          { ac_try='test -s conftest$ac_exeext'
33532-  { (eval echo "$as_me:15324: \"$ac_try\"") >&5
33533+  { (eval echo "$as_me:15426: \"$ac_try\"") >&5
33534   (eval $ac_try) 2>&5
33535   ac_status=$?
33536-  echo "$as_me:15327: \$? = $ac_status" >&5
33537+  echo "$as_me:15429: \$? = $ac_status" >&5
33538   (exit $ac_status); }; }; then
33539   eval "$as_ac_Lib=yes"
33540 else
33541@@ -15335,7 +15437,7 @@
33542 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
33543 LIBS=$ac_check_lib_save_LIBS
33544 fi
33545-echo "$as_me:15338: result: `eval echo '${'$as_ac_Lib'}'`" >&5
33546+echo "$as_me:15440: result: `eval echo '${'$as_ac_Lib'}'`" >&5
33547 echo "${ECHO_T}`eval echo '${'$as_ac_Lib'}'`" >&6
33548 if test `eval echo '${'$as_ac_Lib'}'` = yes; then
33549   cf_cv_ncurses_pthreads=yes
33550@@ -15370,7 +15472,7 @@
33551 	;;
33552 esac
33553
33554-echo "$as_me:15373: checking for X11 rgb file" >&5
33555+echo "$as_me:15475: checking for X11 rgb file" >&5
33556 echo $ECHO_N "checking for X11 rgb file... $ECHO_C" >&6
33557
33558 # Check whether --with-x11-rgb or --without-x11-rgb was given.
33559@@ -15434,7 +15536,7 @@
33560 	cf_path=`echo $cf_path | sed -e s%NONE%$cf_path_syntax%`
33561 	;;
33562 (*)
33563-	{ { echo "$as_me:15437: error: expected a pathname, not \"$cf_path\"" >&5
33564+	{ { echo "$as_me:15539: error: expected a pathname, not \"$cf_path\"" >&5
33565 echo "$as_me: error: expected a pathname, not \"$cf_path\"" >&2;}
33566    { (exit 1); exit 1; }; }
33567 	;;
33568@@ -15442,7 +15544,7 @@
33569
33570 fi
33571
33572-echo "$as_me:15445: result: $RGB_PATH" >&5
33573+echo "$as_me:15547: result: $RGB_PATH" >&5
33574 echo "${ECHO_T}$RGB_PATH" >&6
33575
33576 cat >>confdefs.h <<EOF
33577@@ -15483,7 +15585,7 @@
33578 	;;
33579 esac
33580
33581-echo "$as_me:15486: checking if you want to check for panel functions" >&5
33582+echo "$as_me:15588: checking if you want to check for panel functions" >&5
33583 echo $ECHO_N "checking if you want to check for panel functions... $ECHO_C" >&6
33584
33585 # Check whether --enable-panel or --disable-panel was given.
33586@@ -15500,7 +15602,7 @@
33587 	cf_enable_panel=$cf_default_panel
33588
33589 fi;
33590-echo "$as_me:15503: result: $cf_enable_panel" >&5
33591+echo "$as_me:15605: result: $cf_enable_panel" >&5
33592 echo "${ECHO_T}$cf_enable_panel" >&6
33593 if test $cf_enable_panel = yes
33594 then
33595@@ -15511,13 +15613,13 @@
33596 if test "x${NCURSES_CONFIG_PKG}" = xnone; then
33597 	:
33598 elif test "x${PKG_CONFIG:=none}" != xnone; then
33599-	echo "$as_me:15514: checking pkg-config for panel$cf_cv_libtype" >&5
33600+	echo "$as_me:15616: checking pkg-config for panel$cf_cv_libtype" >&5
33601 echo $ECHO_N "checking pkg-config for panel$cf_cv_libtype... $ECHO_C" >&6
33602 	if "$PKG_CONFIG" --exists panel$cf_cv_libtype ; then
33603-		echo "$as_me:15517: result: yes" >&5
33604+		echo "$as_me:15619: result: yes" >&5
33605 echo "${ECHO_T}yes" >&6
33606
33607-		echo "$as_me:15520: checking if the panel$cf_cv_libtype package files work" >&5
33608+		echo "$as_me:15622: checking if the panel$cf_cv_libtype package files work" >&5
33609 echo $ECHO_N "checking if the panel$cf_cv_libtype package files work... $ECHO_C" >&6
33610
33611 		cf_save_CPPFLAGS="$CPPFLAGS"
33612@@ -15638,7 +15740,7 @@
33613 LIBS="$cf_add_libs"
33614
33615 		cat >conftest.$ac_ext <<_ACEOF
33616-#line 15641 "configure"
33617+#line 15743 "configure"
33618 #include "confdefs.h"
33619 #include <panel.h>
33620 int
33621@@ -15650,37 +15752,37 @@
33622 }
33623 _ACEOF
33624 rm -f conftest.$ac_objext conftest$ac_exeext
33625-if { (eval echo "$as_me:15653: \"$ac_link\"") >&5
33626+if { (eval echo "$as_me:15755: \"$ac_link\"") >&5
33627   (eval $ac_link) 2>&5
33628   ac_status=$?
33629-  echo "$as_me:15656: \$? = $ac_status" >&5
33630+  echo "$as_me:15758: \$? = $ac_status" >&5
33631   (exit $ac_status); } &&
33632          { ac_try='test -s conftest$ac_exeext'
33633-  { (eval echo "$as_me:15659: \"$ac_try\"") >&5
33634+  { (eval echo "$as_me:15761: \"$ac_try\"") >&5
33635   (eval $ac_try) 2>&5
33636   ac_status=$?
33637-  echo "$as_me:15662: \$? = $ac_status" >&5
33638+  echo "$as_me:15764: \$? = $ac_status" >&5
33639   (exit $ac_status); }; }; then
33640   if test "$cross_compiling" = yes; then
33641   cf_have_curses_lib=maybe
33642 else
33643   cat >conftest.$ac_ext <<_ACEOF
33644-#line 15668 "configure"
33645+#line 15770 "configure"
33646 #include "confdefs.h"
33647 #include <panel.h>
33648 				int main(void)
33649 				{ (void) new_panel ( 0 ); return 0; }
33650 _ACEOF
33651 rm -f conftest$ac_exeext
33652-if { (eval echo "$as_me:15675: \"$ac_link\"") >&5
33653+if { (eval echo "$as_me:15777: \"$ac_link\"") >&5
33654   (eval $ac_link) 2>&5
33655   ac_status=$?
33656-  echo "$as_me:15678: \$? = $ac_status" >&5
33657+  echo "$as_me:15780: \$? = $ac_status" >&5
33658   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
33659-  { (eval echo "$as_me:15680: \"$ac_try\"") >&5
33660+  { (eval echo "$as_me:15782: \"$ac_try\"") >&5
33661   (eval $ac_try) 2>&5
33662   ac_status=$?
33663-  echo "$as_me:15683: \$? = $ac_status" >&5
33664+  echo "$as_me:15785: \$? = $ac_status" >&5
33665   (exit $ac_status); }; }; then
33666   cf_have_curses_lib=yes
33667 else
33668@@ -15697,7 +15799,7 @@
33669 cf_have_curses_lib=no
33670 fi
33671 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
33672-		echo "$as_me:15700: result: $cf_have_curses_lib" >&5
33673+		echo "$as_me:15802: result: $cf_have_curses_lib" >&5
33674 echo "${ECHO_T}$cf_have_curses_lib" >&6
33675 		test "$cf_have_curses_lib" = maybe && cf_have_curses_lib=yes
33676 		if test "$cf_have_curses_lib" != "yes"
33677@@ -15717,7 +15819,7 @@
33678 fi
33679 if test "$cf_have_curses_lib" = no; then
33680 	as_ac_Lib=`echo "ac_cv_lib_panel$cf_cv_libtype''_new_panel" | $as_tr_sh`
33681-echo "$as_me:15720: checking for new_panel in -lpanel$cf_cv_libtype" >&5
33682+echo "$as_me:15822: checking for new_panel in -lpanel$cf_cv_libtype" >&5
33683 echo $ECHO_N "checking for new_panel in -lpanel$cf_cv_libtype... $ECHO_C" >&6
33684 if eval "test \"\${$as_ac_Lib+set}\" = set"; then
33685   echo $ECHO_N "(cached) $ECHO_C" >&6
33686@@ -15725,7 +15827,7 @@
33687   ac_check_lib_save_LIBS=$LIBS
33688 LIBS="-lpanel$cf_cv_libtype  $LIBS"
33689 cat >conftest.$ac_ext <<_ACEOF
33690-#line 15728 "configure"
33691+#line 15830 "configure"
33692 #include "confdefs.h"
33693
33694 /* Override any gcc2 internal prototype to avoid an error.  */
33695@@ -15744,16 +15846,16 @@
33696 }
33697 _ACEOF
33698 rm -f conftest.$ac_objext conftest$ac_exeext
33699-if { (eval echo "$as_me:15747: \"$ac_link\"") >&5
33700+if { (eval echo "$as_me:15849: \"$ac_link\"") >&5
33701   (eval $ac_link) 2>&5
33702   ac_status=$?
33703-  echo "$as_me:15750: \$? = $ac_status" >&5
33704+  echo "$as_me:15852: \$? = $ac_status" >&5
33705   (exit $ac_status); } &&
33706          { ac_try='test -s conftest$ac_exeext'
33707-  { (eval echo "$as_me:15753: \"$ac_try\"") >&5
33708+  { (eval echo "$as_me:15855: \"$ac_try\"") >&5
33709   (eval $ac_try) 2>&5
33710   ac_status=$?
33711-  echo "$as_me:15756: \$? = $ac_status" >&5
33712+  echo "$as_me:15858: \$? = $ac_status" >&5
33713   (exit $ac_status); }; }; then
33714   eval "$as_ac_Lib=yes"
33715 else
33716@@ -15764,7 +15866,7 @@
33717 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
33718 LIBS=$ac_check_lib_save_LIBS
33719 fi
33720-echo "$as_me:15767: result: `eval echo '${'$as_ac_Lib'}'`" >&5
33721+echo "$as_me:15869: result: `eval echo '${'$as_ac_Lib'}'`" >&5
33722 echo "${ECHO_T}`eval echo '${'$as_ac_Lib'}'`" >&6
33723 if test `eval echo '${'$as_ac_Lib'}'` = yes; then
33724
33725@@ -15797,7 +15899,7 @@
33726 	cf_curses_headers="$cf_curses_headers panel.h"
33727 fi
33728
33729-echo "$as_me:15800: checking if you want to check for menu functions" >&5
33730+echo "$as_me:15902: checking if you want to check for menu functions" >&5
33731 echo $ECHO_N "checking if you want to check for menu functions... $ECHO_C" >&6
33732
33733 # Check whether --enable-menu or --disable-menu was given.
33734@@ -15814,7 +15916,7 @@
33735 	cf_enable_menu=$cf_default_menu
33736
33737 fi;
33738-echo "$as_me:15817: result: $cf_enable_menu" >&5
33739+echo "$as_me:15919: result: $cf_enable_menu" >&5
33740 echo "${ECHO_T}$cf_enable_menu" >&6
33741 if test $cf_enable_menu = yes
33742 then
33743@@ -15823,14 +15925,14 @@
33744 		;;
33745 	(curses*)
33746
33747-echo "$as_me:15826: checking for NetBSD menu.h" >&5
33748+echo "$as_me:15928: checking for NetBSD menu.h" >&5
33749 echo $ECHO_N "checking for NetBSD menu.h... $ECHO_C" >&6
33750 if test "${cf_cv_netbsd_menu_h+set}" = set; then
33751   echo $ECHO_N "(cached) $ECHO_C" >&6
33752 else
33753
33754 cat >conftest.$ac_ext <<_ACEOF
33755-#line 15833 "configure"
33756+#line 15935 "configure"
33757 #include "confdefs.h"
33758
33759 #include <${cf_cv_ncurses_header:-curses.h}>
33760@@ -15848,16 +15950,16 @@
33761 }
33762 _ACEOF
33763 rm -f conftest.$ac_objext
33764-if { (eval echo "$as_me:15851: \"$ac_compile\"") >&5
33765+if { (eval echo "$as_me:15953: \"$ac_compile\"") >&5
33766   (eval $ac_compile) 2>&5
33767   ac_status=$?
33768-  echo "$as_me:15854: \$? = $ac_status" >&5
33769+  echo "$as_me:15956: \$? = $ac_status" >&5
33770   (exit $ac_status); } &&
33771          { ac_try='test -s conftest.$ac_objext'
33772-  { (eval echo "$as_me:15857: \"$ac_try\"") >&5
33773+  { (eval echo "$as_me:15959: \"$ac_try\"") >&5
33774   (eval $ac_try) 2>&5
33775   ac_status=$?
33776-  echo "$as_me:15860: \$? = $ac_status" >&5
33777+  echo "$as_me:15962: \$? = $ac_status" >&5
33778   (exit $ac_status); }; }; then
33779   cf_cv_netbsd_menu_h=yes
33780
33781@@ -15869,7 +15971,7 @@
33782 rm -f conftest.$ac_objext conftest.$ac_ext
33783
33784 fi
33785-echo "$as_me:15872: result: $cf_cv_netbsd_menu_h" >&5
33786+echo "$as_me:15974: result: $cf_cv_netbsd_menu_h" >&5
33787 echo "${ECHO_T}$cf_cv_netbsd_menu_h" >&6
33788
33789 test "$cf_cv_netbsd_menu_h" = yes &&
33790@@ -15886,13 +15988,13 @@
33791 if test "x${NCURSES_CONFIG_PKG}" = xnone; then
33792 	:
33793 elif test "x${PKG_CONFIG:=none}" != xnone; then
33794-	echo "$as_me:15889: checking pkg-config for menu$cf_cv_libtype" >&5
33795+	echo "$as_me:15991: checking pkg-config for menu$cf_cv_libtype" >&5
33796 echo $ECHO_N "checking pkg-config for menu$cf_cv_libtype... $ECHO_C" >&6
33797 	if "$PKG_CONFIG" --exists menu$cf_cv_libtype ; then
33798-		echo "$as_me:15892: result: yes" >&5
33799+		echo "$as_me:15994: result: yes" >&5
33800 echo "${ECHO_T}yes" >&6
33801
33802-		echo "$as_me:15895: checking if the menu$cf_cv_libtype package files work" >&5
33803+		echo "$as_me:15997: checking if the menu$cf_cv_libtype package files work" >&5
33804 echo $ECHO_N "checking if the menu$cf_cv_libtype package files work... $ECHO_C" >&6
33805
33806 		cf_save_CPPFLAGS="$CPPFLAGS"
33807@@ -16013,7 +16115,7 @@
33808 LIBS="$cf_add_libs"
33809
33810 		cat >conftest.$ac_ext <<_ACEOF
33811-#line 16016 "configure"
33812+#line 16118 "configure"
33813 #include "confdefs.h"
33814 #include <menu.h>
33815 int
33816@@ -16025,37 +16127,37 @@
33817 }
33818 _ACEOF
33819 rm -f conftest.$ac_objext conftest$ac_exeext
33820-if { (eval echo "$as_me:16028: \"$ac_link\"") >&5
33821+if { (eval echo "$as_me:16130: \"$ac_link\"") >&5
33822   (eval $ac_link) 2>&5
33823   ac_status=$?
33824-  echo "$as_me:16031: \$? = $ac_status" >&5
33825+  echo "$as_me:16133: \$? = $ac_status" >&5
33826   (exit $ac_status); } &&
33827          { ac_try='test -s conftest$ac_exeext'
33828-  { (eval echo "$as_me:16034: \"$ac_try\"") >&5
33829+  { (eval echo "$as_me:16136: \"$ac_try\"") >&5
33830   (eval $ac_try) 2>&5
33831   ac_status=$?
33832-  echo "$as_me:16037: \$? = $ac_status" >&5
33833+  echo "$as_me:16139: \$? = $ac_status" >&5
33834   (exit $ac_status); }; }; then
33835   if test "$cross_compiling" = yes; then
33836   cf_have_curses_lib=maybe
33837 else
33838   cat >conftest.$ac_ext <<_ACEOF
33839-#line 16043 "configure"
33840+#line 16145 "configure"
33841 #include "confdefs.h"
33842 #include <menu.h>
33843 				int main(void)
33844 				{ (void) menu_driver ( 0,0 ); return 0; }
33845 _ACEOF
33846 rm -f conftest$ac_exeext
33847-if { (eval echo "$as_me:16050: \"$ac_link\"") >&5
33848+if { (eval echo "$as_me:16152: \"$ac_link\"") >&5
33849   (eval $ac_link) 2>&5
33850   ac_status=$?
33851-  echo "$as_me:16053: \$? = $ac_status" >&5
33852+  echo "$as_me:16155: \$? = $ac_status" >&5
33853   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
33854-  { (eval echo "$as_me:16055: \"$ac_try\"") >&5
33855+  { (eval echo "$as_me:16157: \"$ac_try\"") >&5
33856   (eval $ac_try) 2>&5
33857   ac_status=$?
33858-  echo "$as_me:16058: \$? = $ac_status" >&5
33859+  echo "$as_me:16160: \$? = $ac_status" >&5
33860   (exit $ac_status); }; }; then
33861   cf_have_curses_lib=yes
33862 else
33863@@ -16072,7 +16174,7 @@
33864 cf_have_curses_lib=no
33865 fi
33866 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
33867-		echo "$as_me:16075: result: $cf_have_curses_lib" >&5
33868+		echo "$as_me:16177: result: $cf_have_curses_lib" >&5
33869 echo "${ECHO_T}$cf_have_curses_lib" >&6
33870 		test "$cf_have_curses_lib" = maybe && cf_have_curses_lib=yes
33871 		if test "$cf_have_curses_lib" != "yes"
33872@@ -16092,7 +16194,7 @@
33873 fi
33874 if test "$cf_have_curses_lib" = no; then
33875 	as_ac_Lib=`echo "ac_cv_lib_menu$cf_cv_libtype''_menu_driver" | $as_tr_sh`
33876-echo "$as_me:16095: checking for menu_driver in -lmenu$cf_cv_libtype" >&5
33877+echo "$as_me:16197: checking for menu_driver in -lmenu$cf_cv_libtype" >&5
33878 echo $ECHO_N "checking for menu_driver in -lmenu$cf_cv_libtype... $ECHO_C" >&6
33879 if eval "test \"\${$as_ac_Lib+set}\" = set"; then
33880   echo $ECHO_N "(cached) $ECHO_C" >&6
33881@@ -16100,7 +16202,7 @@
33882   ac_check_lib_save_LIBS=$LIBS
33883 LIBS="-lmenu$cf_cv_libtype  $LIBS"
33884 cat >conftest.$ac_ext <<_ACEOF
33885-#line 16103 "configure"
33886+#line 16205 "configure"
33887 #include "confdefs.h"
33888
33889 /* Override any gcc2 internal prototype to avoid an error.  */
33890@@ -16119,16 +16221,16 @@
33891 }
33892 _ACEOF
33893 rm -f conftest.$ac_objext conftest$ac_exeext
33894-if { (eval echo "$as_me:16122: \"$ac_link\"") >&5
33895+if { (eval echo "$as_me:16224: \"$ac_link\"") >&5
33896   (eval $ac_link) 2>&5
33897   ac_status=$?
33898-  echo "$as_me:16125: \$? = $ac_status" >&5
33899+  echo "$as_me:16227: \$? = $ac_status" >&5
33900   (exit $ac_status); } &&
33901          { ac_try='test -s conftest$ac_exeext'
33902-  { (eval echo "$as_me:16128: \"$ac_try\"") >&5
33903+  { (eval echo "$as_me:16230: \"$ac_try\"") >&5
33904   (eval $ac_try) 2>&5
33905   ac_status=$?
33906-  echo "$as_me:16131: \$? = $ac_status" >&5
33907+  echo "$as_me:16233: \$? = $ac_status" >&5
33908   (exit $ac_status); }; }; then
33909   eval "$as_ac_Lib=yes"
33910 else
33911@@ -16139,7 +16241,7 @@
33912 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
33913 LIBS=$ac_check_lib_save_LIBS
33914 fi
33915-echo "$as_me:16142: result: `eval echo '${'$as_ac_Lib'}'`" >&5
33916+echo "$as_me:16244: result: `eval echo '${'$as_ac_Lib'}'`" >&5
33917 echo "${ECHO_T}`eval echo '${'$as_ac_Lib'}'`" >&6
33918 if test `eval echo '${'$as_ac_Lib'}'` = yes; then
33919
33920@@ -16172,7 +16274,7 @@
33921 	cf_curses_headers="$cf_curses_headers menu.h"
33922 fi
33923
33924-echo "$as_me:16175: checking if you want to check for form functions" >&5
33925+echo "$as_me:16277: checking if you want to check for form functions" >&5
33926 echo $ECHO_N "checking if you want to check for form functions... $ECHO_C" >&6
33927
33928 # Check whether --enable-form or --disable-form was given.
33929@@ -16189,7 +16291,7 @@
33930 	cf_enable_form=$cf_default_form
33931
33932 fi;
33933-echo "$as_me:16192: result: $cf_enable_form" >&5
33934+echo "$as_me:16294: result: $cf_enable_form" >&5
33935 echo "${ECHO_T}$cf_enable_form" >&6
33936 if test $cf_enable_form = yes
33937 then
33938@@ -16198,14 +16300,14 @@
33939 		;;
33940 	(curses*)
33941
33942-echo "$as_me:16201: checking for NetBSD form.h" >&5
33943+echo "$as_me:16303: checking for NetBSD form.h" >&5
33944 echo $ECHO_N "checking for NetBSD form.h... $ECHO_C" >&6
33945 if test "${cf_cv_netbsd_form_h+set}" = set; then
33946   echo $ECHO_N "(cached) $ECHO_C" >&6
33947 else
33948
33949 cat >conftest.$ac_ext <<_ACEOF
33950-#line 16208 "configure"
33951+#line 16310 "configure"
33952 #include "confdefs.h"
33953
33954 #include <${cf_cv_ncurses_header:-curses.h}>
33955@@ -16224,16 +16326,16 @@
33956 }
33957 _ACEOF
33958 rm -f conftest.$ac_objext
33959-if { (eval echo "$as_me:16227: \"$ac_compile\"") >&5
33960+if { (eval echo "$as_me:16329: \"$ac_compile\"") >&5
33961   (eval $ac_compile) 2>&5
33962   ac_status=$?
33963-  echo "$as_me:16230: \$? = $ac_status" >&5
33964+  echo "$as_me:16332: \$? = $ac_status" >&5
33965   (exit $ac_status); } &&
33966          { ac_try='test -s conftest.$ac_objext'
33967-  { (eval echo "$as_me:16233: \"$ac_try\"") >&5
33968+  { (eval echo "$as_me:16335: \"$ac_try\"") >&5
33969   (eval $ac_try) 2>&5
33970   ac_status=$?
33971-  echo "$as_me:16236: \$? = $ac_status" >&5
33972+  echo "$as_me:16338: \$? = $ac_status" >&5
33973   (exit $ac_status); }; }; then
33974   cf_cv_netbsd_form_h=yes
33975
33976@@ -16245,7 +16347,7 @@
33977 rm -f conftest.$ac_objext conftest.$ac_ext
33978
33979 fi
33980-echo "$as_me:16248: result: $cf_cv_netbsd_form_h" >&5
33981+echo "$as_me:16350: result: $cf_cv_netbsd_form_h" >&5
33982 echo "${ECHO_T}$cf_cv_netbsd_form_h" >&6
33983
33984 test "$cf_cv_netbsd_form_h" = yes &&
33985@@ -16262,13 +16364,13 @@
33986 if test "x${NCURSES_CONFIG_PKG}" = xnone; then
33987 	:
33988 elif test "x${PKG_CONFIG:=none}" != xnone; then
33989-	echo "$as_me:16265: checking pkg-config for form$cf_cv_libtype" >&5
33990+	echo "$as_me:16367: checking pkg-config for form$cf_cv_libtype" >&5
33991 echo $ECHO_N "checking pkg-config for form$cf_cv_libtype... $ECHO_C" >&6
33992 	if "$PKG_CONFIG" --exists form$cf_cv_libtype ; then
33993-		echo "$as_me:16268: result: yes" >&5
33994+		echo "$as_me:16370: result: yes" >&5
33995 echo "${ECHO_T}yes" >&6
33996
33997-		echo "$as_me:16271: checking if the form$cf_cv_libtype package files work" >&5
33998+		echo "$as_me:16373: checking if the form$cf_cv_libtype package files work" >&5
33999 echo $ECHO_N "checking if the form$cf_cv_libtype package files work... $ECHO_C" >&6
34000
34001 		cf_save_CPPFLAGS="$CPPFLAGS"
34002@@ -16389,7 +16491,7 @@
34003 LIBS="$cf_add_libs"
34004
34005 		cat >conftest.$ac_ext <<_ACEOF
34006-#line 16392 "configure"
34007+#line 16494 "configure"
34008 #include "confdefs.h"
34009 #include <form.h>
34010 int
34011@@ -16401,37 +16503,37 @@
34012 }
34013 _ACEOF
34014 rm -f conftest.$ac_objext conftest$ac_exeext
34015-if { (eval echo "$as_me:16404: \"$ac_link\"") >&5
34016+if { (eval echo "$as_me:16506: \"$ac_link\"") >&5
34017   (eval $ac_link) 2>&5
34018   ac_status=$?
34019-  echo "$as_me:16407: \$? = $ac_status" >&5
34020+  echo "$as_me:16509: \$? = $ac_status" >&5
34021   (exit $ac_status); } &&
34022          { ac_try='test -s conftest$ac_exeext'
34023-  { (eval echo "$as_me:16410: \"$ac_try\"") >&5
34024+  { (eval echo "$as_me:16512: \"$ac_try\"") >&5
34025   (eval $ac_try) 2>&5
34026   ac_status=$?
34027-  echo "$as_me:16413: \$? = $ac_status" >&5
34028+  echo "$as_me:16515: \$? = $ac_status" >&5
34029   (exit $ac_status); }; }; then
34030   if test "$cross_compiling" = yes; then
34031   cf_have_curses_lib=maybe
34032 else
34033   cat >conftest.$ac_ext <<_ACEOF
34034-#line 16419 "configure"
34035+#line 16521 "configure"
34036 #include "confdefs.h"
34037 #include <form.h>
34038 				int main(void)
34039 				{ (void) form_driver ( 0,0 ); return 0; }
34040 _ACEOF
34041 rm -f conftest$ac_exeext
34042-if { (eval echo "$as_me:16426: \"$ac_link\"") >&5
34043+if { (eval echo "$as_me:16528: \"$ac_link\"") >&5
34044   (eval $ac_link) 2>&5
34045   ac_status=$?
34046-  echo "$as_me:16429: \$? = $ac_status" >&5
34047+  echo "$as_me:16531: \$? = $ac_status" >&5
34048   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
34049-  { (eval echo "$as_me:16431: \"$ac_try\"") >&5
34050+  { (eval echo "$as_me:16533: \"$ac_try\"") >&5
34051   (eval $ac_try) 2>&5
34052   ac_status=$?
34053-  echo "$as_me:16434: \$? = $ac_status" >&5
34054+  echo "$as_me:16536: \$? = $ac_status" >&5
34055   (exit $ac_status); }; }; then
34056   cf_have_curses_lib=yes
34057 else
34058@@ -16448,7 +16550,7 @@
34059 cf_have_curses_lib=no
34060 fi
34061 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
34062-		echo "$as_me:16451: result: $cf_have_curses_lib" >&5
34063+		echo "$as_me:16553: result: $cf_have_curses_lib" >&5
34064 echo "${ECHO_T}$cf_have_curses_lib" >&6
34065 		test "$cf_have_curses_lib" = maybe && cf_have_curses_lib=yes
34066 		if test "$cf_have_curses_lib" != "yes"
34067@@ -16468,7 +16570,7 @@
34068 fi
34069 if test "$cf_have_curses_lib" = no; then
34070 	as_ac_Lib=`echo "ac_cv_lib_form$cf_cv_libtype''_form_driver" | $as_tr_sh`
34071-echo "$as_me:16471: checking for form_driver in -lform$cf_cv_libtype" >&5
34072+echo "$as_me:16573: checking for form_driver in -lform$cf_cv_libtype" >&5
34073 echo $ECHO_N "checking for form_driver in -lform$cf_cv_libtype... $ECHO_C" >&6
34074 if eval "test \"\${$as_ac_Lib+set}\" = set"; then
34075   echo $ECHO_N "(cached) $ECHO_C" >&6
34076@@ -16476,7 +16578,7 @@
34077   ac_check_lib_save_LIBS=$LIBS
34078 LIBS="-lform$cf_cv_libtype  $LIBS"
34079 cat >conftest.$ac_ext <<_ACEOF
34080-#line 16479 "configure"
34081+#line 16581 "configure"
34082 #include "confdefs.h"
34083
34084 /* Override any gcc2 internal prototype to avoid an error.  */
34085@@ -16495,16 +16597,16 @@
34086 }
34087 _ACEOF
34088 rm -f conftest.$ac_objext conftest$ac_exeext
34089-if { (eval echo "$as_me:16498: \"$ac_link\"") >&5
34090+if { (eval echo "$as_me:16600: \"$ac_link\"") >&5
34091   (eval $ac_link) 2>&5
34092   ac_status=$?
34093-  echo "$as_me:16501: \$? = $ac_status" >&5
34094+  echo "$as_me:16603: \$? = $ac_status" >&5
34095   (exit $ac_status); } &&
34096          { ac_try='test -s conftest$ac_exeext'
34097-  { (eval echo "$as_me:16504: \"$ac_try\"") >&5
34098+  { (eval echo "$as_me:16606: \"$ac_try\"") >&5
34099   (eval $ac_try) 2>&5
34100   ac_status=$?
34101-  echo "$as_me:16507: \$? = $ac_status" >&5
34102+  echo "$as_me:16609: \$? = $ac_status" >&5
34103   (exit $ac_status); }; }; then
34104   eval "$as_ac_Lib=yes"
34105 else
34106@@ -16515,7 +16617,7 @@
34107 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
34108 LIBS=$ac_check_lib_save_LIBS
34109 fi
34110-echo "$as_me:16518: result: `eval echo '${'$as_ac_Lib'}'`" >&5
34111+echo "$as_me:16620: result: `eval echo '${'$as_ac_Lib'}'`" >&5
34112 echo "${ECHO_T}`eval echo '${'$as_ac_Lib'}'`" >&6
34113 if test `eval echo '${'$as_ac_Lib'}'` = yes; then
34114
34115@@ -16553,23 +16655,23 @@
34116 for ac_header in $cf_curses_headers
34117 do
34118 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
34119-echo "$as_me:16556: checking for $ac_header" >&5
34120+echo "$as_me:16658: checking for $ac_header" >&5
34121 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
34122 if eval "test \"\${$as_ac_Header+set}\" = set"; then
34123   echo $ECHO_N "(cached) $ECHO_C" >&6
34124 else
34125   cat >conftest.$ac_ext <<_ACEOF
34126-#line 16562 "configure"
34127+#line 16664 "configure"
34128 #include "confdefs.h"
34129 #include <$ac_header>
34130 _ACEOF
34131-if { (eval echo "$as_me:16566: \"$ac_cpp conftest.$ac_ext\"") >&5
34132+if { (eval echo "$as_me:16668: \"$ac_cpp conftest.$ac_ext\"") >&5
34133   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
34134   ac_status=$?
34135   egrep -v '^ *\+' conftest.er1 >conftest.err
34136   rm -f conftest.er1
34137   cat conftest.err >&5
34138-  echo "$as_me:16572: \$? = $ac_status" >&5
34139+  echo "$as_me:16674: \$? = $ac_status" >&5
34140   (exit $ac_status); } >/dev/null; then
34141   if test -s conftest.err; then
34142     ac_cpp_err=$ac_c_preproc_warn_flag
34143@@ -16588,7 +16690,7 @@
34144 fi
34145 rm -f conftest.err conftest.$ac_ext
34146 fi
34147-echo "$as_me:16591: result: `eval echo '${'$as_ac_Header'}'`" >&5
34148+echo "$as_me:16693: result: `eval echo '${'$as_ac_Header'}'`" >&5
34149 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
34150 if test `eval echo '${'$as_ac_Header'}'` = yes; then
34151   cat >>confdefs.h <<EOF
34152@@ -16598,13 +16700,13 @@
34153 fi
34154 done
34155
34156-echo "$as_me:16601: checking for ANSI C header files" >&5
34157+echo "$as_me:16703: checking for ANSI C header files" >&5
34158 echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6
34159 if test "${ac_cv_header_stdc+set}" = set; then
34160   echo $ECHO_N "(cached) $ECHO_C" >&6
34161 else
34162   cat >conftest.$ac_ext <<_ACEOF
34163-#line 16607 "configure"
34164+#line 16709 "configure"
34165 #include "confdefs.h"
34166 #include <stdlib.h>
34167 #include <stdarg.h>
34168@@ -16612,13 +16714,13 @@
34169 #include <float.h>
34170
34171 _ACEOF
34172-if { (eval echo "$as_me:16615: \"$ac_cpp conftest.$ac_ext\"") >&5
34173+if { (eval echo "$as_me:16717: \"$ac_cpp conftest.$ac_ext\"") >&5
34174   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
34175   ac_status=$?
34176   egrep -v '^ *\+' conftest.er1 >conftest.err
34177   rm -f conftest.er1
34178   cat conftest.err >&5
34179-  echo "$as_me:16621: \$? = $ac_status" >&5
34180+  echo "$as_me:16723: \$? = $ac_status" >&5
34181   (exit $ac_status); } >/dev/null; then
34182   if test -s conftest.err; then
34183     ac_cpp_err=$ac_c_preproc_warn_flag
34184@@ -16640,7 +16742,7 @@
34185 if test $ac_cv_header_stdc = yes; then
34186   # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
34187   cat >conftest.$ac_ext <<_ACEOF
34188-#line 16643 "configure"
34189+#line 16745 "configure"
34190 #include "confdefs.h"
34191 #include <string.h>
34192
34193@@ -16658,7 +16760,7 @@
34194 if test $ac_cv_header_stdc = yes; then
34195   # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
34196   cat >conftest.$ac_ext <<_ACEOF
34197-#line 16661 "configure"
34198+#line 16763 "configure"
34199 #include "confdefs.h"
34200 #include <stdlib.h>
34201
34202@@ -16679,7 +16781,7 @@
34203   :
34204 else
34205   cat >conftest.$ac_ext <<_ACEOF
34206-#line 16682 "configure"
34207+#line 16784 "configure"
34208 #include "confdefs.h"
34209 #include <ctype.h>
34210 #if ((' ' & 0x0FF) == 0x020)
34211@@ -16705,15 +16807,15 @@
34212 }
34213 _ACEOF
34214 rm -f conftest$ac_exeext
34215-if { (eval echo "$as_me:16708: \"$ac_link\"") >&5
34216+if { (eval echo "$as_me:16810: \"$ac_link\"") >&5
34217   (eval $ac_link) 2>&5
34218   ac_status=$?
34219-  echo "$as_me:16711: \$? = $ac_status" >&5
34220+  echo "$as_me:16813: \$? = $ac_status" >&5
34221   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
34222-  { (eval echo "$as_me:16713: \"$ac_try\"") >&5
34223+  { (eval echo "$as_me:16815: \"$ac_try\"") >&5
34224   (eval $ac_try) 2>&5
34225   ac_status=$?
34226-  echo "$as_me:16716: \$? = $ac_status" >&5
34227+  echo "$as_me:16818: \$? = $ac_status" >&5
34228   (exit $ac_status); }; }; then
34229   :
34230 else
34231@@ -16726,7 +16828,7 @@
34232 fi
34233 fi
34234 fi
34235-echo "$as_me:16729: result: $ac_cv_header_stdc" >&5
34236+echo "$as_me:16831: result: $ac_cv_header_stdc" >&5
34237 echo "${ECHO_T}$ac_cv_header_stdc" >&6
34238 if test $ac_cv_header_stdc = yes; then
34239
34240@@ -16736,13 +16838,13 @@
34241
34242 fi
34243
34244-echo "$as_me:16739: checking whether time.h and sys/time.h may both be included" >&5
34245+echo "$as_me:16841: checking whether time.h and sys/time.h may both be included" >&5
34246 echo $ECHO_N "checking whether time.h and sys/time.h may both be included... $ECHO_C" >&6
34247 if test "${ac_cv_header_time+set}" = set; then
34248   echo $ECHO_N "(cached) $ECHO_C" >&6
34249 else
34250   cat >conftest.$ac_ext <<_ACEOF
34251-#line 16745 "configure"
34252+#line 16847 "configure"
34253 #include "confdefs.h"
34254 #include <sys/types.h>
34255 #include <sys/time.h>
34256@@ -16758,16 +16860,16 @@
34257 }
34258 _ACEOF
34259 rm -f conftest.$ac_objext
34260-if { (eval echo "$as_me:16761: \"$ac_compile\"") >&5
34261+if { (eval echo "$as_me:16863: \"$ac_compile\"") >&5
34262   (eval $ac_compile) 2>&5
34263   ac_status=$?
34264-  echo "$as_me:16764: \$? = $ac_status" >&5
34265+  echo "$as_me:16866: \$? = $ac_status" >&5
34266   (exit $ac_status); } &&
34267          { ac_try='test -s conftest.$ac_objext'
34268-  { (eval echo "$as_me:16767: \"$ac_try\"") >&5
34269+  { (eval echo "$as_me:16869: \"$ac_try\"") >&5
34270   (eval $ac_try) 2>&5
34271   ac_status=$?
34272-  echo "$as_me:16770: \$? = $ac_status" >&5
34273+  echo "$as_me:16872: \$? = $ac_status" >&5
34274   (exit $ac_status); }; }; then
34275   ac_cv_header_time=yes
34276 else
34277@@ -16777,7 +16879,7 @@
34278 fi
34279 rm -f conftest.$ac_objext conftest.$ac_ext
34280 fi
34281-echo "$as_me:16780: result: $ac_cv_header_time" >&5
34282+echo "$as_me:16882: result: $ac_cv_header_time" >&5
34283 echo "${ECHO_T}$ac_cv_header_time" >&6
34284 if test $ac_cv_header_time = yes; then
34285
34286@@ -16801,23 +16903,23 @@
34287
34288 do
34289 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
34290-echo "$as_me:16804: checking for $ac_header" >&5
34291+echo "$as_me:16906: checking for $ac_header" >&5
34292 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
34293 if eval "test \"\${$as_ac_Header+set}\" = set"; then
34294   echo $ECHO_N "(cached) $ECHO_C" >&6
34295 else
34296   cat >conftest.$ac_ext <<_ACEOF
34297-#line 16810 "configure"
34298+#line 16912 "configure"
34299 #include "confdefs.h"
34300 #include <$ac_header>
34301 _ACEOF
34302-if { (eval echo "$as_me:16814: \"$ac_cpp conftest.$ac_ext\"") >&5
34303+if { (eval echo "$as_me:16916: \"$ac_cpp conftest.$ac_ext\"") >&5
34304   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
34305   ac_status=$?
34306   egrep -v '^ *\+' conftest.er1 >conftest.err
34307   rm -f conftest.er1
34308   cat conftest.err >&5
34309-  echo "$as_me:16820: \$? = $ac_status" >&5
34310+  echo "$as_me:16922: \$? = $ac_status" >&5
34311   (exit $ac_status); } >/dev/null; then
34312   if test -s conftest.err; then
34313     ac_cpp_err=$ac_c_preproc_warn_flag
34314@@ -16836,7 +16938,7 @@
34315 fi
34316 rm -f conftest.err conftest.$ac_ext
34317 fi
34318-echo "$as_me:16839: result: `eval echo '${'$as_ac_Header'}'`" >&5
34319+echo "$as_me:16941: result: `eval echo '${'$as_ac_Header'}'`" >&5
34320 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
34321 if test `eval echo '${'$as_ac_Header'}'` = yes; then
34322   cat >>confdefs.h <<EOF
34323@@ -16849,23 +16951,23 @@
34324 for ac_header in unistd.h getopt.h
34325 do
34326 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
34327-echo "$as_me:16852: checking for $ac_header" >&5
34328+echo "$as_me:16954: checking for $ac_header" >&5
34329 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
34330 if eval "test \"\${$as_ac_Header+set}\" = set"; then
34331   echo $ECHO_N "(cached) $ECHO_C" >&6
34332 else
34333   cat >conftest.$ac_ext <<_ACEOF
34334-#line 16858 "configure"
34335+#line 16960 "configure"
34336 #include "confdefs.h"
34337 #include <$ac_header>
34338 _ACEOF
34339-if { (eval echo "$as_me:16862: \"$ac_cpp conftest.$ac_ext\"") >&5
34340+if { (eval echo "$as_me:16964: \"$ac_cpp conftest.$ac_ext\"") >&5
34341   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
34342   ac_status=$?
34343   egrep -v '^ *\+' conftest.er1 >conftest.err
34344   rm -f conftest.er1
34345   cat conftest.err >&5
34346-  echo "$as_me:16868: \$? = $ac_status" >&5
34347+  echo "$as_me:16970: \$? = $ac_status" >&5
34348   (exit $ac_status); } >/dev/null; then
34349   if test -s conftest.err; then
34350     ac_cpp_err=$ac_c_preproc_warn_flag
34351@@ -16884,7 +16986,7 @@
34352 fi
34353 rm -f conftest.err conftest.$ac_ext
34354 fi
34355-echo "$as_me:16887: result: `eval echo '${'$as_ac_Header'}'`" >&5
34356+echo "$as_me:16989: result: `eval echo '${'$as_ac_Header'}'`" >&5
34357 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6
34358 if test `eval echo '${'$as_ac_Header'}'` = yes; then
34359   cat >>confdefs.h <<EOF
34360@@ -16894,7 +16996,7 @@
34361 fi
34362 done
34363
34364-echo "$as_me:16897: checking for header declaring getopt variables" >&5
34365+echo "$as_me:16999: checking for header declaring getopt variables" >&5
34366 echo $ECHO_N "checking for header declaring getopt variables... $ECHO_C" >&6
34367 if test "${cf_cv_getopt_header+set}" = set; then
34368   echo $ECHO_N "(cached) $ECHO_C" >&6
34369@@ -16904,7 +17006,7 @@
34370 for cf_header in stdio.h stdlib.h unistd.h getopt.h
34371 do
34372 cat >conftest.$ac_ext <<_ACEOF
34373-#line 16907 "configure"
34374+#line 17009 "configure"
34375 #include "confdefs.h"
34376
34377 #include <$cf_header>
34378@@ -16917,16 +17019,16 @@
34379 }
34380 _ACEOF
34381 rm -f conftest.$ac_objext
34382-if { (eval echo "$as_me:16920: \"$ac_compile\"") >&5
34383+if { (eval echo "$as_me:17022: \"$ac_compile\"") >&5
34384   (eval $ac_compile) 2>&5
34385   ac_status=$?
34386-  echo "$as_me:16923: \$? = $ac_status" >&5
34387+  echo "$as_me:17025: \$? = $ac_status" >&5
34388   (exit $ac_status); } &&
34389          { ac_try='test -s conftest.$ac_objext'
34390-  { (eval echo "$as_me:16926: \"$ac_try\"") >&5
34391+  { (eval echo "$as_me:17028: \"$ac_try\"") >&5
34392   (eval $ac_try) 2>&5
34393   ac_status=$?
34394-  echo "$as_me:16929: \$? = $ac_status" >&5
34395+  echo "$as_me:17031: \$? = $ac_status" >&5
34396   (exit $ac_status); }; }; then
34397   cf_cv_getopt_header=$cf_header
34398  break
34399@@ -16938,7 +17040,7 @@
34400 done
34401
34402 fi
34403-echo "$as_me:16941: result: $cf_cv_getopt_header" >&5
34404+echo "$as_me:17043: result: $cf_cv_getopt_header" >&5
34405 echo "${ECHO_T}$cf_cv_getopt_header" >&6
34406 if test $cf_cv_getopt_header != none ; then
34407
34408@@ -16963,13 +17065,13 @@
34409
34410 do
34411 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
34412-echo "$as_me:16966: checking for $ac_func" >&5
34413+echo "$as_me:17068: checking for $ac_func" >&5
34414 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
34415 if eval "test \"\${$as_ac_var+set}\" = set"; then
34416   echo $ECHO_N "(cached) $ECHO_C" >&6
34417 else
34418   cat >conftest.$ac_ext <<_ACEOF
34419-#line 16972 "configure"
34420+#line 17074 "configure"
34421 #include "confdefs.h"
34422 #define $ac_func autoconf_temporary
34423 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
34424@@ -17000,16 +17102,16 @@
34425 }
34426 _ACEOF
34427 rm -f conftest.$ac_objext conftest$ac_exeext
34428-if { (eval echo "$as_me:17003: \"$ac_link\"") >&5
34429+if { (eval echo "$as_me:17105: \"$ac_link\"") >&5
34430   (eval $ac_link) 2>&5
34431   ac_status=$?
34432-  echo "$as_me:17006: \$? = $ac_status" >&5
34433+  echo "$as_me:17108: \$? = $ac_status" >&5
34434   (exit $ac_status); } &&
34435          { ac_try='test -s conftest$ac_exeext'
34436-  { (eval echo "$as_me:17009: \"$ac_try\"") >&5
34437+  { (eval echo "$as_me:17111: \"$ac_try\"") >&5
34438   (eval $ac_try) 2>&5
34439   ac_status=$?
34440-  echo "$as_me:17012: \$? = $ac_status" >&5
34441+  echo "$as_me:17114: \$? = $ac_status" >&5
34442   (exit $ac_status); }; }; then
34443   eval "$as_ac_var=yes"
34444 else
34445@@ -17019,7 +17121,7 @@
34446 fi
34447 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
34448 fi
34449-echo "$as_me:17022: result: `eval echo '${'$as_ac_var'}'`" >&5
34450+echo "$as_me:17124: result: `eval echo '${'$as_ac_var'}'`" >&5
34451 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
34452 if test `eval echo '${'$as_ac_var'}'` = yes; then
34453   cat >>confdefs.h <<EOF
34454@@ -17030,14 +17132,14 @@
34455 done
34456
34457 # use a compile-check to work with ncurses*-config and subdirectory includes
34458-echo "$as_me:17033: checking if we can use termcap.h" >&5
34459+echo "$as_me:17135: checking if we can use termcap.h" >&5
34460 echo $ECHO_N "checking if we can use termcap.h... $ECHO_C" >&6
34461 if test "${cf_cv_have_termcap_h+set}" = set; then
34462   echo $ECHO_N "(cached) $ECHO_C" >&6
34463 else
34464
34465 	cat >conftest.$ac_ext <<_ACEOF
34466-#line 17040 "configure"
34467+#line 17142 "configure"
34468 #include "confdefs.h"
34469
34470 #include <curses.h>
34471@@ -17058,16 +17160,16 @@
34472 }
34473 _ACEOF
34474 rm -f conftest.$ac_objext
34475-if { (eval echo "$as_me:17061: \"$ac_compile\"") >&5
34476+if { (eval echo "$as_me:17163: \"$ac_compile\"") >&5
34477   (eval $ac_compile) 2>&5
34478   ac_status=$?
34479-  echo "$as_me:17064: \$? = $ac_status" >&5
34480+  echo "$as_me:17166: \$? = $ac_status" >&5
34481   (exit $ac_status); } &&
34482          { ac_try='test -s conftest.$ac_objext'
34483-  { (eval echo "$as_me:17067: \"$ac_try\"") >&5
34484+  { (eval echo "$as_me:17169: \"$ac_try\"") >&5
34485   (eval $ac_try) 2>&5
34486   ac_status=$?
34487-  echo "$as_me:17070: \$? = $ac_status" >&5
34488+  echo "$as_me:17172: \$? = $ac_status" >&5
34489   (exit $ac_status); }; }; then
34490   cf_cv_have_termcap_h=yes
34491 else
34492@@ -17077,7 +17179,7 @@
34493 fi
34494 rm -f conftest.$ac_objext conftest.$ac_ext
34495 fi
34496-echo "$as_me:17080: result: $cf_cv_have_termcap_h" >&5
34497+echo "$as_me:17182: result: $cf_cv_have_termcap_h" >&5
34498 echo "${ECHO_T}$cf_cv_have_termcap_h" >&6
34499 if test "x$cf_cv_have_termcap_h" = xyes
34500 then
34501@@ -17086,14 +17188,14 @@
34502 EOF
34503
34504 else
34505-echo "$as_me:17089: checking if we can use ncurses/termcap.h" >&5
34506+echo "$as_me:17191: checking if we can use ncurses/termcap.h" >&5
34507 echo $ECHO_N "checking if we can use ncurses/termcap.h... $ECHO_C" >&6
34508 if test "${cf_cv_have_ncurses_termcap_h+set}" = set; then
34509   echo $ECHO_N "(cached) $ECHO_C" >&6
34510 else
34511
34512 	cat >conftest.$ac_ext <<_ACEOF
34513-#line 17096 "configure"
34514+#line 17198 "configure"
34515 #include "confdefs.h"
34516
34517 #include <ncurses/curses.h>
34518@@ -17114,16 +17216,16 @@
34519 }
34520 _ACEOF
34521 rm -f conftest.$ac_objext
34522-if { (eval echo "$as_me:17117: \"$ac_compile\"") >&5
34523+if { (eval echo "$as_me:17219: \"$ac_compile\"") >&5
34524   (eval $ac_compile) 2>&5
34525   ac_status=$?
34526-  echo "$as_me:17120: \$? = $ac_status" >&5
34527+  echo "$as_me:17222: \$? = $ac_status" >&5
34528   (exit $ac_status); } &&
34529          { ac_try='test -s conftest.$ac_objext'
34530-  { (eval echo "$as_me:17123: \"$ac_try\"") >&5
34531+  { (eval echo "$as_me:17225: \"$ac_try\"") >&5
34532   (eval $ac_try) 2>&5
34533   ac_status=$?
34534-  echo "$as_me:17126: \$? = $ac_status" >&5
34535+  echo "$as_me:17228: \$? = $ac_status" >&5
34536   (exit $ac_status); }; }; then
34537   cf_cv_have_ncurses_termcap_h=yes
34538 else
34539@@ -17133,7 +17235,7 @@
34540 fi
34541 rm -f conftest.$ac_objext conftest.$ac_ext
34542 fi
34543-echo "$as_me:17136: result: $cf_cv_have_ncurses_termcap_h" >&5
34544+echo "$as_me:17238: result: $cf_cv_have_ncurses_termcap_h" >&5
34545 echo "${ECHO_T}$cf_cv_have_ncurses_termcap_h" >&6
34546 test "x$cf_cv_have_ncurses_termcap_h" = xyes && cat >>confdefs.h <<\EOF
34547 #define HAVE_NCURSES_TERMCAP_H 1
34548@@ -17142,7 +17244,7 @@
34549 fi
34550
34551 if test "x$ac_cv_func_getopt" = xno; then
34552-	{ { echo "$as_me:17145: error: getopt is required for building programs" >&5
34553+	{ { echo "$as_me:17247: error: getopt is required for building programs" >&5
34554 echo "$as_me: error: getopt is required for building programs" >&2;}
34555    { (exit 1); exit 1; }; }
34556 fi
34557@@ -17161,13 +17263,13 @@
34558
34559 do
34560 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
34561-echo "$as_me:17164: checking for $ac_func" >&5
34562+echo "$as_me:17266: checking for $ac_func" >&5
34563 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
34564 if eval "test \"\${$as_ac_var+set}\" = set"; then
34565   echo $ECHO_N "(cached) $ECHO_C" >&6
34566 else
34567   cat >conftest.$ac_ext <<_ACEOF
34568-#line 17170 "configure"
34569+#line 17272 "configure"
34570 #include "confdefs.h"
34571 #define $ac_func autoconf_temporary
34572 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
34573@@ -17198,16 +17300,16 @@
34574 }
34575 _ACEOF
34576 rm -f conftest.$ac_objext conftest$ac_exeext
34577-if { (eval echo "$as_me:17201: \"$ac_link\"") >&5
34578+if { (eval echo "$as_me:17303: \"$ac_link\"") >&5
34579   (eval $ac_link) 2>&5
34580   ac_status=$?
34581-  echo "$as_me:17204: \$? = $ac_status" >&5
34582+  echo "$as_me:17306: \$? = $ac_status" >&5
34583   (exit $ac_status); } &&
34584          { ac_try='test -s conftest$ac_exeext'
34585-  { (eval echo "$as_me:17207: \"$ac_try\"") >&5
34586+  { (eval echo "$as_me:17309: \"$ac_try\"") >&5
34587   (eval $ac_try) 2>&5
34588   ac_status=$?
34589-  echo "$as_me:17210: \$? = $ac_status" >&5
34590+  echo "$as_me:17312: \$? = $ac_status" >&5
34591   (exit $ac_status); }; }; then
34592   eval "$as_ac_var=yes"
34593 else
34594@@ -17217,7 +17319,7 @@
34595 fi
34596 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
34597 fi
34598-echo "$as_me:17220: result: `eval echo '${'$as_ac_var'}'`" >&5
34599+echo "$as_me:17322: result: `eval echo '${'$as_ac_var'}'`" >&5
34600 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6
34601 if test `eval echo '${'$as_ac_var'}'` = yes; then
34602   cat >>confdefs.h <<EOF
34603@@ -17229,7 +17331,7 @@
34604
34605 fi
34606
34607-echo "$as_me:17232: checking definition to turn on extended curses functions" >&5
34608+echo "$as_me:17334: checking definition to turn on extended curses functions" >&5
34609 echo $ECHO_N "checking definition to turn on extended curses functions... $ECHO_C" >&6
34610 if test "${cf_cv_need_xopen_extension+set}" = set; then
34611   echo $ECHO_N "(cached) $ECHO_C" >&6
34612@@ -17237,7 +17339,7 @@
34613
34614 cf_cv_need_xopen_extension=unknown
34615 cat >conftest.$ac_ext <<_ACEOF
34616-#line 17240 "configure"
34617+#line 17342 "configure"
34618 #include "confdefs.h"
34619
34620 #include <stdlib.h>
34621@@ -17263,16 +17365,16 @@
34622 }
34623 _ACEOF
34624 rm -f conftest.$ac_objext conftest$ac_exeext
34625-if { (eval echo "$as_me:17266: \"$ac_link\"") >&5
34626+if { (eval echo "$as_me:17368: \"$ac_link\"") >&5
34627   (eval $ac_link) 2>&5
34628   ac_status=$?
34629-  echo "$as_me:17269: \$? = $ac_status" >&5
34630+  echo "$as_me:17371: \$? = $ac_status" >&5
34631   (exit $ac_status); } &&
34632          { ac_try='test -s conftest$ac_exeext'
34633-  { (eval echo "$as_me:17272: \"$ac_try\"") >&5
34634+  { (eval echo "$as_me:17374: \"$ac_try\"") >&5
34635   (eval $ac_try) 2>&5
34636   ac_status=$?
34637-  echo "$as_me:17275: \$? = $ac_status" >&5
34638+  echo "$as_me:17377: \$? = $ac_status" >&5
34639   (exit $ac_status); }; }; then
34640   cf_cv_need_xopen_extension=none
34641 else
34642@@ -17282,7 +17384,7 @@
34643 	for cf_try_xopen_extension in _XOPEN_SOURCE_EXTENDED NCURSES_WIDECHAR
34644 	do
34645 		cat >conftest.$ac_ext <<_ACEOF
34646-#line 17285 "configure"
34647+#line 17387 "configure"
34648 #include "confdefs.h"
34649
34650 #define $cf_try_xopen_extension 1
34651@@ -17304,16 +17406,16 @@
34652 }
34653 _ACEOF
34654 rm -f conftest.$ac_objext conftest$ac_exeext
34655-if { (eval echo "$as_me:17307: \"$ac_link\"") >&5
34656+if { (eval echo "$as_me:17409: \"$ac_link\"") >&5
34657   (eval $ac_link) 2>&5
34658   ac_status=$?
34659-  echo "$as_me:17310: \$? = $ac_status" >&5
34660+  echo "$as_me:17412: \$? = $ac_status" >&5
34661   (exit $ac_status); } &&
34662          { ac_try='test -s conftest$ac_exeext'
34663-  { (eval echo "$as_me:17313: \"$ac_try\"") >&5
34664+  { (eval echo "$as_me:17415: \"$ac_try\"") >&5
34665   (eval $ac_try) 2>&5
34666   ac_status=$?
34667-  echo "$as_me:17316: \$? = $ac_status" >&5
34668+  echo "$as_me:17418: \$? = $ac_status" >&5
34669   (exit $ac_status); }; }; then
34670   cf_cv_need_xopen_extension=$cf_try_xopen_extension; break
34671 else
34672@@ -17327,7 +17429,7 @@
34673 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
34674
34675 fi
34676-echo "$as_me:17330: result: $cf_cv_need_xopen_extension" >&5
34677+echo "$as_me:17432: result: $cf_cv_need_xopen_extension" >&5
34678 echo "${ECHO_T}$cf_cv_need_xopen_extension" >&6
34679
34680 case $cf_cv_need_xopen_extension in
34681@@ -17339,7 +17441,7 @@
34682 	;;
34683 esac
34684
34685-echo "$as_me:17342: checking for term.h" >&5
34686+echo "$as_me:17444: checking for term.h" >&5
34687 echo $ECHO_N "checking for term.h... $ECHO_C" >&6
34688 if test "${cf_cv_term_header+set}" = set; then
34689   echo $ECHO_N "(cached) $ECHO_C" >&6
34690@@ -17360,7 +17462,7 @@
34691 for cf_header in $cf_header_list
34692 do
34693 	cat >conftest.$ac_ext <<_ACEOF
34694-#line 17363 "configure"
34695+#line 17465 "configure"
34696 #include "confdefs.h"
34697
34698 #include <${cf_cv_ncurses_header:-curses.h}>
34699@@ -17374,16 +17476,16 @@
34700 }
34701 _ACEOF
34702 rm -f conftest.$ac_objext
34703-if { (eval echo "$as_me:17377: \"$ac_compile\"") >&5
34704+if { (eval echo "$as_me:17479: \"$ac_compile\"") >&5
34705   (eval $ac_compile) 2>&5
34706   ac_status=$?
34707-  echo "$as_me:17380: \$? = $ac_status" >&5
34708+  echo "$as_me:17482: \$? = $ac_status" >&5
34709   (exit $ac_status); } &&
34710          { ac_try='test -s conftest.$ac_objext'
34711-  { (eval echo "$as_me:17383: \"$ac_try\"") >&5
34712+  { (eval echo "$as_me:17485: \"$ac_try\"") >&5
34713   (eval $ac_try) 2>&5
34714   ac_status=$?
34715-  echo "$as_me:17386: \$? = $ac_status" >&5
34716+  echo "$as_me:17488: \$? = $ac_status" >&5
34717   (exit $ac_status); }; }; then
34718   cf_cv_term_header=$cf_header
34719 	 break
34720@@ -17402,7 +17504,7 @@
34721 	for cf_header in ncurses/term.h ncursesw/term.h
34722 	do
34723 		cat >conftest.$ac_ext <<_ACEOF
34724-#line 17405 "configure"
34725+#line 17507 "configure"
34726 #include "confdefs.h"
34727
34728 #include <${cf_cv_ncurses_header:-curses.h}>
34729@@ -17420,16 +17522,16 @@
34730 }
34731 _ACEOF
34732 rm -f conftest.$ac_objext
34733-if { (eval echo "$as_me:17423: \"$ac_compile\"") >&5
34734+if { (eval echo "$as_me:17525: \"$ac_compile\"") >&5
34735   (eval $ac_compile) 2>&5
34736   ac_status=$?
34737-  echo "$as_me:17426: \$? = $ac_status" >&5
34738+  echo "$as_me:17528: \$? = $ac_status" >&5
34739   (exit $ac_status); } &&
34740          { ac_try='test -s conftest.$ac_objext'
34741-  { (eval echo "$as_me:17429: \"$ac_try\"") >&5
34742+  { (eval echo "$as_me:17531: \"$ac_try\"") >&5
34743   (eval $ac_try) 2>&5
34744   ac_status=$?
34745-  echo "$as_me:17432: \$? = $ac_status" >&5
34746+  echo "$as_me:17534: \$? = $ac_status" >&5
34747   (exit $ac_status); }; }; then
34748   cf_cv_term_header=$cf_header
34749 			 break
34750@@ -17444,7 +17546,7 @@
34751 esac
34752
34753 fi
34754-echo "$as_me:17447: result: $cf_cv_term_header" >&5
34755+echo "$as_me:17549: result: $cf_cv_term_header" >&5
34756 echo "${ECHO_T}$cf_cv_term_header" >&6
34757
34758 case $cf_cv_term_header in
34759@@ -17471,7 +17573,7 @@
34760 	;;
34761 esac
34762
34763-echo "$as_me:17474: checking for unctrl.h" >&5
34764+echo "$as_me:17576: checking for unctrl.h" >&5
34765 echo $ECHO_N "checking for unctrl.h... $ECHO_C" >&6
34766 if test "${cf_cv_unctrl_header+set}" = set; then
34767   echo $ECHO_N "(cached) $ECHO_C" >&6
34768@@ -17492,7 +17594,7 @@
34769 for cf_header in $cf_header_list
34770 do
34771 	cat >conftest.$ac_ext <<_ACEOF
34772-#line 17495 "configure"
34773+#line 17597 "configure"
34774 #include "confdefs.h"
34775
34776 #include <${cf_cv_ncurses_header:-curses.h}>
34777@@ -17506,16 +17608,16 @@
34778 }
34779 _ACEOF
34780 rm -f conftest.$ac_objext
34781-if { (eval echo "$as_me:17509: \"$ac_compile\"") >&5
34782+if { (eval echo "$as_me:17611: \"$ac_compile\"") >&5
34783   (eval $ac_compile) 2>&5
34784   ac_status=$?
34785-  echo "$as_me:17512: \$? = $ac_status" >&5
34786+  echo "$as_me:17614: \$? = $ac_status" >&5
34787   (exit $ac_status); } &&
34788          { ac_try='test -s conftest.$ac_objext'
34789-  { (eval echo "$as_me:17515: \"$ac_try\"") >&5
34790+  { (eval echo "$as_me:17617: \"$ac_try\"") >&5
34791   (eval $ac_try) 2>&5
34792   ac_status=$?
34793-  echo "$as_me:17518: \$? = $ac_status" >&5
34794+  echo "$as_me:17620: \$? = $ac_status" >&5
34795   (exit $ac_status); }; }; then
34796   cf_cv_unctrl_header=$cf_header
34797 	 break
34798@@ -17528,12 +17630,12 @@
34799 done
34800
34801 fi
34802-echo "$as_me:17531: result: $cf_cv_unctrl_header" >&5
34803+echo "$as_me:17633: result: $cf_cv_unctrl_header" >&5
34804 echo "${ECHO_T}$cf_cv_unctrl_header" >&6
34805
34806 case $cf_cv_unctrl_header in
34807 (no)
34808-	{ echo "$as_me:17536: WARNING: unctrl.h header not found" >&5
34809+	{ echo "$as_me:17638: WARNING: unctrl.h header not found" >&5
34810 echo "$as_me: WARNING: unctrl.h header not found" >&2;}
34811 	;;
34812 esac
34813@@ -17622,10 +17724,10 @@
34814
34815 cf_tr_func=`echo "$cf_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%`
34816
34817-	echo "$as_me:17625: checking for ${cf_func}" >&5
34818+	echo "$as_me:17727: checking for ${cf_func}" >&5
34819 echo $ECHO_N "checking for ${cf_func}... $ECHO_C" >&6
34820
34821-echo "${as_me:-configure}:17628: testing ${cf_func} ..." 1>&5
34822+echo "${as_me:-configure}:17730: testing ${cf_func} ..." 1>&5
34823
34824 	if eval "test \"\${cf_cv_func_$cf_func+set}\" = set"; then
34825   echo $ECHO_N "(cached) $ECHO_C" >&6
34826@@ -17634,7 +17736,7 @@
34827 		eval cf_result='$ac_cv_func_'$cf_func
34828 		if test ".$cf_result" != ".no"; then
34829 			cat >conftest.$ac_ext <<_ACEOF
34830-#line 17637 "configure"
34831+#line 17739 "configure"
34832 #include "confdefs.h"
34833
34834 #ifdef HAVE_XCURSES
34835@@ -17667,16 +17769,16 @@
34836 }
34837 _ACEOF
34838 rm -f conftest.$ac_objext conftest$ac_exeext
34839-if { (eval echo "$as_me:17670: \"$ac_link\"") >&5
34840+if { (eval echo "$as_me:17772: \"$ac_link\"") >&5
34841   (eval $ac_link) 2>&5
34842   ac_status=$?
34843-  echo "$as_me:17673: \$? = $ac_status" >&5
34844+  echo "$as_me:17775: \$? = $ac_status" >&5
34845   (exit $ac_status); } &&
34846          { ac_try='test -s conftest$ac_exeext'
34847-  { (eval echo "$as_me:17676: \"$ac_try\"") >&5
34848+  { (eval echo "$as_me:17778: \"$ac_try\"") >&5
34849   (eval $ac_try) 2>&5
34850   ac_status=$?
34851-  echo "$as_me:17679: \$? = $ac_status" >&5
34852+  echo "$as_me:17781: \$? = $ac_status" >&5
34853   (exit $ac_status); }; }; then
34854   cf_result=yes
34855 else
34856@@ -17692,7 +17794,7 @@
34857
34858 	# use the computed/retrieved cache-value:
34859 	eval 'cf_result=$cf_cv_func_'$cf_func
34860-	echo "$as_me:17695: result: $cf_result" >&5
34861+	echo "$as_me:17797: result: $cf_result" >&5
34862 echo "${ECHO_T}$cf_result" >&6
34863 	if test $cf_result != no; then
34864 		cat >>confdefs.h <<EOF
34865@@ -17707,10 +17809,10 @@
34866
34867 cf_tr_func=`echo "$cf_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%`
34868
34869-	echo "$as_me:17710: checking for ${cf_func}" >&5
34870+	echo "$as_me:17812: checking for ${cf_func}" >&5
34871 echo $ECHO_N "checking for ${cf_func}... $ECHO_C" >&6
34872
34873-echo "${as_me:-configure}:17713: testing ${cf_func} ..." 1>&5
34874+echo "${as_me:-configure}:17815: testing ${cf_func} ..." 1>&5
34875
34876 	if eval "test \"\${cf_cv_func_$cf_func+set}\" = set"; then
34877   echo $ECHO_N "(cached) $ECHO_C" >&6
34878@@ -17719,7 +17821,7 @@
34879 		eval cf_result='$ac_cv_func_'$cf_func
34880 		if test ".$cf_result" != ".no"; then
34881 			cat >conftest.$ac_ext <<_ACEOF
34882-#line 17722 "configure"
34883+#line 17824 "configure"
34884 #include "confdefs.h"
34885
34886 #ifdef HAVE_XCURSES
34887@@ -17752,16 +17854,16 @@
34888 }
34889 _ACEOF
34890 rm -f conftest.$ac_objext conftest$ac_exeext
34891-if { (eval echo "$as_me:17755: \"$ac_link\"") >&5
34892+if { (eval echo "$as_me:17857: \"$ac_link\"") >&5
34893   (eval $ac_link) 2>&5
34894   ac_status=$?
34895-  echo "$as_me:17758: \$? = $ac_status" >&5
34896+  echo "$as_me:17860: \$? = $ac_status" >&5
34897   (exit $ac_status); } &&
34898          { ac_try='test -s conftest$ac_exeext'
34899-  { (eval echo "$as_me:17761: \"$ac_try\"") >&5
34900+  { (eval echo "$as_me:17863: \"$ac_try\"") >&5
34901   (eval $ac_try) 2>&5
34902   ac_status=$?
34903-  echo "$as_me:17764: \$? = $ac_status" >&5
34904+  echo "$as_me:17866: \$? = $ac_status" >&5
34905   (exit $ac_status); }; }; then
34906   cf_result=yes
34907 else
34908@@ -17777,7 +17879,7 @@
34909
34910 	# use the computed/retrieved cache-value:
34911 	eval 'cf_result=$cf_cv_func_'$cf_func
34912-	echo "$as_me:17780: result: $cf_result" >&5
34913+	echo "$as_me:17882: result: $cf_result" >&5
34914 echo "${ECHO_T}$cf_result" >&6
34915 	if test $cf_result != no; then
34916 		cat >>confdefs.h <<EOF
34917@@ -17801,7 +17903,7 @@
34918 				cf_return="return value"
34919 			fi
34920 			cat >conftest.$ac_ext <<_ACEOF
34921-#line 17804 "configure"
34922+#line 17906 "configure"
34923 #include "confdefs.h"
34924
34925 #include <${cf_cv_ncurses_header:-curses.h}>
34926@@ -17821,21 +17923,21 @@
34927 }
34928 _ACEOF
34929 rm -f conftest.$ac_objext
34930-if { (eval echo "$as_me:17824: \"$ac_compile\"") >&5
34931+if { (eval echo "$as_me:17926: \"$ac_compile\"") >&5
34932   (eval $ac_compile) 2>&5
34933   ac_status=$?
34934-  echo "$as_me:17827: \$? = $ac_status" >&5
34935+  echo "$as_me:17929: \$? = $ac_status" >&5
34936   (exit $ac_status); } &&
34937          { ac_try='test -s conftest.$ac_objext'
34938-  { (eval echo "$as_me:17830: \"$ac_try\"") >&5
34939+  { (eval echo "$as_me:17932: \"$ac_try\"") >&5
34940   (eval $ac_try) 2>&5
34941   ac_status=$?
34942-  echo "$as_me:17833: \$? = $ac_status" >&5
34943+  echo "$as_me:17935: \$? = $ac_status" >&5
34944   (exit $ac_status); }; }; then
34945
34946 		test -n "$verbose" && echo "	prototype $cf_ret func($cf_arg value)" 1>&6
34947
34948-echo "${as_me:-configure}:17838: testing prototype $cf_ret func($cf_arg value) ..." 1>&5
34949+echo "${as_me:-configure}:17940: testing prototype $cf_ret func($cf_arg value) ..." 1>&5
34950
34951 		cat >>confdefs.h <<EOF
34952 #define TPUTS_ARG               $cf_arg
34953@@ -17855,14 +17957,14 @@
34954 	done
34955 fi
34956
34957-echo "$as_me:17858: checking for ncurses extended functions" >&5
34958+echo "$as_me:17960: checking for ncurses extended functions" >&5
34959 echo $ECHO_N "checking for ncurses extended functions... $ECHO_C" >&6
34960 if test "${cf_cv_ncurses_ext_funcs+set}" = set; then
34961   echo $ECHO_N "(cached) $ECHO_C" >&6
34962 else
34963
34964 cat >conftest.$ac_ext <<_ACEOF
34965-#line 17865 "configure"
34966+#line 17967 "configure"
34967 #include "confdefs.h"
34968
34969 #include <${cf_cv_ncurses_header:-curses.h}>
34970@@ -17877,16 +17979,16 @@
34971 }
34972 _ACEOF
34973 rm -f conftest.$ac_objext
34974-if { (eval echo "$as_me:17880: \"$ac_compile\"") >&5
34975+if { (eval echo "$as_me:17982: \"$ac_compile\"") >&5
34976   (eval $ac_compile) 2>&5
34977   ac_status=$?
34978-  echo "$as_me:17883: \$? = $ac_status" >&5
34979+  echo "$as_me:17985: \$? = $ac_status" >&5
34980   (exit $ac_status); } &&
34981          { ac_try='test -s conftest.$ac_objext'
34982-  { (eval echo "$as_me:17886: \"$ac_try\"") >&5
34983+  { (eval echo "$as_me:17988: \"$ac_try\"") >&5
34984   (eval $ac_try) 2>&5
34985   ac_status=$?
34986-  echo "$as_me:17889: \$? = $ac_status" >&5
34987+  echo "$as_me:17991: \$? = $ac_status" >&5
34988   (exit $ac_status); }; }; then
34989   cf_cv_ncurses_ext_funcs=defined
34990 else
34991@@ -17894,7 +17996,7 @@
34992 cat conftest.$ac_ext >&5
34993
34994 cat >conftest.$ac_ext <<_ACEOF
34995-#line 17897 "configure"
34996+#line 17999 "configure"
34997 #include "confdefs.h"
34998
34999 #include <${cf_cv_ncurses_header:-curses.h}>
35000@@ -17919,16 +18021,16 @@
35001 }
35002 _ACEOF
35003 rm -f conftest.$ac_objext conftest$ac_exeext
35004-if { (eval echo "$as_me:17922: \"$ac_link\"") >&5
35005+if { (eval echo "$as_me:18024: \"$ac_link\"") >&5
35006   (eval $ac_link) 2>&5
35007   ac_status=$?
35008-  echo "$as_me:17925: \$? = $ac_status" >&5
35009+  echo "$as_me:18027: \$? = $ac_status" >&5
35010   (exit $ac_status); } &&
35011          { ac_try='test -s conftest$ac_exeext'
35012-  { (eval echo "$as_me:17928: \"$ac_try\"") >&5
35013+  { (eval echo "$as_me:18030: \"$ac_try\"") >&5
35014   (eval $ac_try) 2>&5
35015   ac_status=$?
35016-  echo "$as_me:17931: \$? = $ac_status" >&5
35017+  echo "$as_me:18033: \$? = $ac_status" >&5
35018   (exit $ac_status); }; }; then
35019   cf_cv_ncurses_ext_funcs=yes
35020 else
35021@@ -17942,7 +18044,7 @@
35022 rm -f conftest.$ac_objext conftest.$ac_ext
35023
35024 fi
35025-echo "$as_me:17945: result: $cf_cv_ncurses_ext_funcs" >&5
35026+echo "$as_me:18047: result: $cf_cv_ncurses_ext_funcs" >&5
35027 echo "${ECHO_T}$cf_cv_ncurses_ext_funcs" >&6
35028 test "$cf_cv_ncurses_ext_funcs" = yes &&
35029 cat >>confdefs.h <<\EOF
35030@@ -17956,11 +18058,11 @@
35031 	if test -n "$cf_cv_ncurses_version" && test "x$cf_cv_ncurses_version" != xno
35032 	then
35033 		cf_define_xpg5=no
35034-		echo "$as_me:17959: checking if _XPG5 should be defined to enable wide-characters" >&5
35035+		echo "$as_me:18061: checking if _XPG5 should be defined to enable wide-characters" >&5
35036 echo $ECHO_N "checking if _XPG5 should be defined to enable wide-characters... $ECHO_C" >&6
35037
35038 		cat >conftest.$ac_ext <<_ACEOF
35039-#line 17963 "configure"
35040+#line 18065 "configure"
35041 #include "confdefs.h"
35042
35043 #include <${cf_cv_ncurses_header:-curses.h}>
35044@@ -17973,16 +18075,16 @@
35045 }
35046 _ACEOF
35047 rm -f conftest.$ac_objext
35048-if { (eval echo "$as_me:17976: \"$ac_compile\"") >&5
35049+if { (eval echo "$as_me:18078: \"$ac_compile\"") >&5
35050   (eval $ac_compile) 2>&5
35051   ac_status=$?
35052-  echo "$as_me:17979: \$? = $ac_status" >&5
35053+  echo "$as_me:18081: \$? = $ac_status" >&5
35054   (exit $ac_status); } &&
35055          { ac_try='test -s conftest.$ac_objext'
35056-  { (eval echo "$as_me:17982: \"$ac_try\"") >&5
35057+  { (eval echo "$as_me:18084: \"$ac_try\"") >&5
35058   (eval $ac_try) 2>&5
35059   ac_status=$?
35060-  echo "$as_me:17985: \$? = $ac_status" >&5
35061+  echo "$as_me:18087: \$? = $ac_status" >&5
35062   (exit $ac_status); }; }; then
35063   :
35064 else
35065@@ -17991,7 +18093,7 @@
35066 cf_save_cppflags="$CPPFLAGS"
35067 			 CPPFLAGS="$CPPFLAGS -D_XPG5"
35068 			 cat >conftest.$ac_ext <<_ACEOF
35069-#line 17994 "configure"
35070+#line 18096 "configure"
35071 #include "confdefs.h"
35072
35073 #include <${cf_cv_ncurses_header:-curses.h}>
35074@@ -18004,16 +18106,16 @@
35075 }
35076 _ACEOF
35077 rm -f conftest.$ac_objext
35078-if { (eval echo "$as_me:18007: \"$ac_compile\"") >&5
35079+if { (eval echo "$as_me:18109: \"$ac_compile\"") >&5
35080   (eval $ac_compile) 2>&5
35081   ac_status=$?
35082-  echo "$as_me:18010: \$? = $ac_status" >&5
35083+  echo "$as_me:18112: \$? = $ac_status" >&5
35084   (exit $ac_status); } &&
35085          { ac_try='test -s conftest.$ac_objext'
35086-  { (eval echo "$as_me:18013: \"$ac_try\"") >&5
35087+  { (eval echo "$as_me:18115: \"$ac_try\"") >&5
35088   (eval $ac_try) 2>&5
35089   ac_status=$?
35090-  echo "$as_me:18016: \$? = $ac_status" >&5
35091+  echo "$as_me:18118: \$? = $ac_status" >&5
35092   (exit $ac_status); }; }; then
35093   cf_define_xpg5=yes
35094 else
35095@@ -18024,7 +18126,7 @@
35096 			 CPPFLAGS="$cf_save_cppflags"
35097 fi
35098 rm -f conftest.$ac_objext conftest.$ac_ext
35099-		echo "$as_me:18027: result: $cf_define_xpg5" >&5
35100+		echo "$as_me:18129: result: $cf_define_xpg5" >&5
35101 echo "${ECHO_T}$cf_define_xpg5" >&6
35102
35103 		if test "$cf_define_xpg5" = yes
35104@@ -18033,14 +18135,14 @@
35105 		fi
35106 	fi
35107
35108-	echo "$as_me:18036: checking for wide-character functions" >&5
35109+	echo "$as_me:18138: checking for wide-character functions" >&5
35110 echo $ECHO_N "checking for wide-character functions... $ECHO_C" >&6
35111 if test "${cf_cv_widechar_funcs+set}" = set; then
35112   echo $ECHO_N "(cached) $ECHO_C" >&6
35113 else
35114
35115 	cat >conftest.$ac_ext <<_ACEOF
35116-#line 18043 "configure"
35117+#line 18145 "configure"
35118 #include "confdefs.h"
35119
35120 #include <${cf_cv_ncurses_header:-curses.h}>
35121@@ -18057,16 +18159,16 @@
35122 }
35123 _ACEOF
35124 rm -f conftest.$ac_objext conftest$ac_exeext
35125-if { (eval echo "$as_me:18060: \"$ac_link\"") >&5
35126+if { (eval echo "$as_me:18162: \"$ac_link\"") >&5
35127   (eval $ac_link) 2>&5
35128   ac_status=$?
35129-  echo "$as_me:18063: \$? = $ac_status" >&5
35130+  echo "$as_me:18165: \$? = $ac_status" >&5
35131   (exit $ac_status); } &&
35132          { ac_try='test -s conftest$ac_exeext'
35133-  { (eval echo "$as_me:18066: \"$ac_try\"") >&5
35134+  { (eval echo "$as_me:18168: \"$ac_try\"") >&5
35135   (eval $ac_try) 2>&5
35136   ac_status=$?
35137-  echo "$as_me:18069: \$? = $ac_status" >&5
35138+  echo "$as_me:18171: \$? = $ac_status" >&5
35139   (exit $ac_status); }; }; then
35140   cf_cv_widechar_funcs=yes
35141 else
35142@@ -18077,7 +18179,7 @@
35143 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
35144
35145 fi
35146-echo "$as_me:18080: result: $cf_cv_widechar_funcs" >&5
35147+echo "$as_me:18182: result: $cf_cv_widechar_funcs" >&5
35148 echo "${ECHO_T}$cf_cv_widechar_funcs" >&6
35149 	if test "$cf_cv_widechar_funcs" != no ; then
35150
35151@@ -18098,14 +18200,14 @@
35152
35153 fi
35154
35155-echo "$as_me:18101: checking if $cf_cv_screen library uses pthreads" >&5
35156+echo "$as_me:18203: checking if $cf_cv_screen library uses pthreads" >&5
35157 echo $ECHO_N "checking if $cf_cv_screen library uses pthreads... $ECHO_C" >&6
35158 if test "${cf_cv_use_pthreads+set}" = set; then
35159   echo $ECHO_N "(cached) $ECHO_C" >&6
35160 else
35161
35162 cat >conftest.$ac_ext <<_ACEOF
35163-#line 18108 "configure"
35164+#line 18210 "configure"
35165 #include "confdefs.h"
35166
35167 #include <${cf_cv_ncurses_header:-curses.h}>
35168@@ -18123,16 +18225,16 @@
35169 }
35170 _ACEOF
35171 rm -f conftest.$ac_objext conftest$ac_exeext
35172-if { (eval echo "$as_me:18126: \"$ac_link\"") >&5
35173+if { (eval echo "$as_me:18228: \"$ac_link\"") >&5
35174   (eval $ac_link) 2>&5
35175   ac_status=$?
35176-  echo "$as_me:18129: \$? = $ac_status" >&5
35177+  echo "$as_me:18231: \$? = $ac_status" >&5
35178   (exit $ac_status); } &&
35179          { ac_try='test -s conftest$ac_exeext'
35180-  { (eval echo "$as_me:18132: \"$ac_try\"") >&5
35181+  { (eval echo "$as_me:18234: \"$ac_try\"") >&5
35182   (eval $ac_try) 2>&5
35183   ac_status=$?
35184-  echo "$as_me:18135: \$? = $ac_status" >&5
35185+  echo "$as_me:18237: \$? = $ac_status" >&5
35186   (exit $ac_status); }; }; then
35187   cf_cv_use_pthreads=yes
35188 else
35189@@ -18143,20 +18245,20 @@
35190 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
35191
35192 fi
35193-echo "$as_me:18146: result: $cf_cv_use_pthreads" >&5
35194+echo "$as_me:18248: result: $cf_cv_use_pthreads" >&5
35195 echo "${ECHO_T}$cf_cv_use_pthreads" >&6
35196 test $cf_cv_use_pthreads = yes && cat >>confdefs.h <<\EOF
35197 #define USE_PTHREADS 1
35198 EOF
35199
35200-echo "$as_me:18152: checking if sys/time.h works with sys/select.h" >&5
35201+echo "$as_me:18254: checking if sys/time.h works with sys/select.h" >&5
35202 echo $ECHO_N "checking if sys/time.h works with sys/select.h... $ECHO_C" >&6
35203 if test "${cf_cv_sys_time_select+set}" = set; then
35204   echo $ECHO_N "(cached) $ECHO_C" >&6
35205 else
35206
35207 cat >conftest.$ac_ext <<_ACEOF
35208-#line 18159 "configure"
35209+#line 18261 "configure"
35210 #include "confdefs.h"
35211
35212 #include <sys/types.h>
35213@@ -18176,16 +18278,16 @@
35214 }
35215 _ACEOF
35216 rm -f conftest.$ac_objext
35217-if { (eval echo "$as_me:18179: \"$ac_compile\"") >&5
35218+if { (eval echo "$as_me:18281: \"$ac_compile\"") >&5
35219   (eval $ac_compile) 2>&5
35220   ac_status=$?
35221-  echo "$as_me:18182: \$? = $ac_status" >&5
35222+  echo "$as_me:18284: \$? = $ac_status" >&5
35223   (exit $ac_status); } &&
35224          { ac_try='test -s conftest.$ac_objext'
35225-  { (eval echo "$as_me:18185: \"$ac_try\"") >&5
35226+  { (eval echo "$as_me:18287: \"$ac_try\"") >&5
35227   (eval $ac_try) 2>&5
35228   ac_status=$?
35229-  echo "$as_me:18188: \$? = $ac_status" >&5
35230+  echo "$as_me:18290: \$? = $ac_status" >&5
35231   (exit $ac_status); }; }; then
35232   cf_cv_sys_time_select=yes
35233 else
35234@@ -18197,7 +18299,7 @@
35235
35236 fi
35237
35238-echo "$as_me:18200: result: $cf_cv_sys_time_select" >&5
35239+echo "$as_me:18302: result: $cf_cv_sys_time_select" >&5
35240 echo "${ECHO_T}$cf_cv_sys_time_select" >&6
35241 test "$cf_cv_sys_time_select" = yes &&
35242 cat >>confdefs.h <<\EOF
35243@@ -18206,7 +18308,7 @@
35244
35245 # special check for test/ditto.c
35246
35247-echo "$as_me:18209: checking for openpty in -lutil" >&5
35248+echo "$as_me:18311: checking for openpty in -lutil" >&5
35249 echo $ECHO_N "checking for openpty in -lutil... $ECHO_C" >&6
35250 if test "${ac_cv_lib_util_openpty+set}" = set; then
35251   echo $ECHO_N "(cached) $ECHO_C" >&6
35252@@ -18214,7 +18316,7 @@
35253   ac_check_lib_save_LIBS=$LIBS
35254 LIBS="-lutil  $LIBS"
35255 cat >conftest.$ac_ext <<_ACEOF
35256-#line 18217 "configure"
35257+#line 18319 "configure"
35258 #include "confdefs.h"
35259
35260 /* Override any gcc2 internal prototype to avoid an error.  */
35261@@ -18233,16 +18335,16 @@
35262 }
35263 _ACEOF
35264 rm -f conftest.$ac_objext conftest$ac_exeext
35265-if { (eval echo "$as_me:18236: \"$ac_link\"") >&5
35266+if { (eval echo "$as_me:18338: \"$ac_link\"") >&5
35267   (eval $ac_link) 2>&5
35268   ac_status=$?
35269-  echo "$as_me:18239: \$? = $ac_status" >&5
35270+  echo "$as_me:18341: \$? = $ac_status" >&5
35271   (exit $ac_status); } &&
35272          { ac_try='test -s conftest$ac_exeext'
35273-  { (eval echo "$as_me:18242: \"$ac_try\"") >&5
35274+  { (eval echo "$as_me:18344: \"$ac_try\"") >&5
35275   (eval $ac_try) 2>&5
35276   ac_status=$?
35277-  echo "$as_me:18245: \$? = $ac_status" >&5
35278+  echo "$as_me:18347: \$? = $ac_status" >&5
35279   (exit $ac_status); }; }; then
35280   ac_cv_lib_util_openpty=yes
35281 else
35282@@ -18253,7 +18355,7 @@
35283 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
35284 LIBS=$ac_check_lib_save_LIBS
35285 fi
35286-echo "$as_me:18256: result: $ac_cv_lib_util_openpty" >&5
35287+echo "$as_me:18358: result: $ac_cv_lib_util_openpty" >&5
35288 echo "${ECHO_T}$ac_cv_lib_util_openpty" >&6
35289 if test $ac_cv_lib_util_openpty = yes; then
35290   cf_cv_lib_util=yes
35291@@ -18261,7 +18363,7 @@
35292   cf_cv_lib_util=no
35293 fi
35294
35295-echo "$as_me:18264: checking for openpty header" >&5
35296+echo "$as_me:18366: checking for openpty header" >&5
35297 echo $ECHO_N "checking for openpty header... $ECHO_C" >&6
35298 if test "${cf_cv_func_openpty+set}" = set; then
35299   echo $ECHO_N "(cached) $ECHO_C" >&6
35300@@ -18288,7 +18390,7 @@
35301 	for cf_header in pty.h libutil.h util.h
35302 	do
35303 	cat >conftest.$ac_ext <<_ACEOF
35304-#line 18291 "configure"
35305+#line 18393 "configure"
35306 #include "confdefs.h"
35307
35308 #include <$cf_header>
35309@@ -18305,16 +18407,16 @@
35310 }
35311 _ACEOF
35312 rm -f conftest.$ac_objext conftest$ac_exeext
35313-if { (eval echo "$as_me:18308: \"$ac_link\"") >&5
35314+if { (eval echo "$as_me:18410: \"$ac_link\"") >&5
35315   (eval $ac_link) 2>&5
35316   ac_status=$?
35317-  echo "$as_me:18311: \$? = $ac_status" >&5
35318+  echo "$as_me:18413: \$? = $ac_status" >&5
35319   (exit $ac_status); } &&
35320          { ac_try='test -s conftest$ac_exeext'
35321-  { (eval echo "$as_me:18314: \"$ac_try\"") >&5
35322+  { (eval echo "$as_me:18416: \"$ac_try\"") >&5
35323   (eval $ac_try) 2>&5
35324   ac_status=$?
35325-  echo "$as_me:18317: \$? = $ac_status" >&5
35326+  echo "$as_me:18419: \$? = $ac_status" >&5
35327   (exit $ac_status); }; }; then
35328
35329 		cf_cv_func_openpty=$cf_header
35330@@ -18332,7 +18434,7 @@
35331 	LIBS="$cf_save_LIBS"
35332
35333 fi
35334-echo "$as_me:18335: result: $cf_cv_func_openpty" >&5
35335+echo "$as_me:18437: result: $cf_cv_func_openpty" >&5
35336 echo "${ECHO_T}$cf_cv_func_openpty" >&6
35337
35338 if test "$cf_cv_func_openpty" != no ; then
35339@@ -18366,7 +18468,7 @@
35340 	fi
35341 fi
35342
35343-echo "$as_me:18369: checking for function curses_version" >&5
35344+echo "$as_me:18471: checking for function curses_version" >&5
35345 echo $ECHO_N "checking for function curses_version... $ECHO_C" >&6
35346 if test "${cf_cv_func_curses_version+set}" = set; then
35347   echo $ECHO_N "(cached) $ECHO_C" >&6
35348@@ -18376,7 +18478,7 @@
35349   cf_cv_func_curses_version=unknown
35350 else
35351   cat >conftest.$ac_ext <<_ACEOF
35352-#line 18379 "configure"
35353+#line 18481 "configure"
35354 #include "confdefs.h"
35355
35356 #include <${cf_cv_ncurses_header:-curses.h}>
35357@@ -18389,15 +18491,15 @@
35358
35359 _ACEOF
35360 rm -f conftest$ac_exeext
35361-if { (eval echo "$as_me:18392: \"$ac_link\"") >&5
35362+if { (eval echo "$as_me:18494: \"$ac_link\"") >&5
35363   (eval $ac_link) 2>&5
35364   ac_status=$?
35365-  echo "$as_me:18395: \$? = $ac_status" >&5
35366+  echo "$as_me:18497: \$? = $ac_status" >&5
35367   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
35368-  { (eval echo "$as_me:18397: \"$ac_try\"") >&5
35369+  { (eval echo "$as_me:18499: \"$ac_try\"") >&5
35370   (eval $ac_try) 2>&5
35371   ac_status=$?
35372-  echo "$as_me:18400: \$? = $ac_status" >&5
35373+  echo "$as_me:18502: \$? = $ac_status" >&5
35374   (exit $ac_status); }; }; then
35375   cf_cv_func_curses_version=yes
35376
35377@@ -18412,14 +18514,14 @@
35378 fi
35379 rm -f core
35380 fi
35381-echo "$as_me:18415: result: $cf_cv_func_curses_version" >&5
35382+echo "$as_me:18517: result: $cf_cv_func_curses_version" >&5
35383 echo "${ECHO_T}$cf_cv_func_curses_version" >&6
35384 test "$cf_cv_func_curses_version" = yes &&
35385 cat >>confdefs.h <<\EOF
35386 #define HAVE_CURSES_VERSION 1
35387 EOF
35388
35389-echo "$as_me:18422: checking for alternate character set array" >&5
35390+echo "$as_me:18524: checking for alternate character set array" >&5
35391 echo $ECHO_N "checking for alternate character set array... $ECHO_C" >&6
35392 if test "${cf_cv_curses_acs_map+set}" = set; then
35393   echo $ECHO_N "(cached) $ECHO_C" >&6
35394@@ -18429,7 +18531,7 @@
35395 for name in acs_map _acs_map __acs_map ${NCURSES_WRAP_PREFIX}acs_map
35396 do
35397 cat >conftest.$ac_ext <<_ACEOF
35398-#line 18432 "configure"
35399+#line 18534 "configure"
35400 #include "confdefs.h"
35401
35402 #include <${cf_cv_ncurses_header:-curses.h}>
35403@@ -18445,16 +18547,16 @@
35404 }
35405 _ACEOF
35406 rm -f conftest.$ac_objext conftest$ac_exeext
35407-if { (eval echo "$as_me:18448: \"$ac_link\"") >&5
35408+if { (eval echo "$as_me:18550: \"$ac_link\"") >&5
35409   (eval $ac_link) 2>&5
35410   ac_status=$?
35411-  echo "$as_me:18451: \$? = $ac_status" >&5
35412+  echo "$as_me:18553: \$? = $ac_status" >&5
35413   (exit $ac_status); } &&
35414          { ac_try='test -s conftest$ac_exeext'
35415-  { (eval echo "$as_me:18454: \"$ac_try\"") >&5
35416+  { (eval echo "$as_me:18556: \"$ac_try\"") >&5
35417   (eval $ac_try) 2>&5
35418   ac_status=$?
35419-  echo "$as_me:18457: \$? = $ac_status" >&5
35420+  echo "$as_me:18559: \$? = $ac_status" >&5
35421   (exit $ac_status); }; }; then
35422   cf_cv_curses_acs_map=$name; break
35423 else
35424@@ -18465,7 +18567,7 @@
35425 done
35426
35427 fi
35428-echo "$as_me:18468: result: $cf_cv_curses_acs_map" >&5
35429+echo "$as_me:18570: result: $cf_cv_curses_acs_map" >&5
35430 echo "${ECHO_T}$cf_cv_curses_acs_map" >&6
35431
35432 test "$cf_cv_curses_acs_map" != unknown &&
35433@@ -18475,7 +18577,7 @@
35434
35435 if test "$cf_enable_widec" = yes; then
35436
35437-echo "$as_me:18478: checking for wide alternate character set array" >&5
35438+echo "$as_me:18580: checking for wide alternate character set array" >&5
35439 echo $ECHO_N "checking for wide alternate character set array... $ECHO_C" >&6
35440 if test "${cf_cv_curses_wacs_map+set}" = set; then
35441   echo $ECHO_N "(cached) $ECHO_C" >&6
35442@@ -18485,7 +18587,7 @@
35443 	for name in wacs_map _wacs_map __wacs_map _nc_wacs _wacs_char
35444 	do
35445 	cat >conftest.$ac_ext <<_ACEOF
35446-#line 18488 "configure"
35447+#line 18590 "configure"
35448 #include "confdefs.h"
35449
35450 #ifndef _XOPEN_SOURCE_EXTENDED
35451@@ -18501,16 +18603,16 @@
35452 }
35453 _ACEOF
35454 rm -f conftest.$ac_objext conftest$ac_exeext
35455-if { (eval echo "$as_me:18504: \"$ac_link\"") >&5
35456+if { (eval echo "$as_me:18606: \"$ac_link\"") >&5
35457   (eval $ac_link) 2>&5
35458   ac_status=$?
35459-  echo "$as_me:18507: \$? = $ac_status" >&5
35460+  echo "$as_me:18609: \$? = $ac_status" >&5
35461   (exit $ac_status); } &&
35462          { ac_try='test -s conftest$ac_exeext'
35463-  { (eval echo "$as_me:18510: \"$ac_try\"") >&5
35464+  { (eval echo "$as_me:18612: \"$ac_try\"") >&5
35465   (eval $ac_try) 2>&5
35466   ac_status=$?
35467-  echo "$as_me:18513: \$? = $ac_status" >&5
35468+  echo "$as_me:18615: \$? = $ac_status" >&5
35469   (exit $ac_status); }; }; then
35470   cf_cv_curses_wacs_map=$name
35471 	 break
35472@@ -18521,7 +18623,7 @@
35473 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
35474 	done
35475 fi
35476-echo "$as_me:18524: result: $cf_cv_curses_wacs_map" >&5
35477+echo "$as_me:18626: result: $cf_cv_curses_wacs_map" >&5
35478 echo "${ECHO_T}$cf_cv_curses_wacs_map" >&6
35479
35480 test "$cf_cv_curses_wacs_map" != unknown &&
35481@@ -18529,7 +18631,7 @@
35482 #define CURSES_WACS_ARRAY $cf_cv_curses_wacs_map
35483 EOF
35484
35485-echo "$as_me:18532: checking for wide alternate character constants" >&5
35486+echo "$as_me:18634: checking for wide alternate character constants" >&5
35487 echo $ECHO_N "checking for wide alternate character constants... $ECHO_C" >&6
35488 if test "${cf_cv_curses_wacs_symbols+set}" = set; then
35489   echo $ECHO_N "(cached) $ECHO_C" >&6
35490@@ -18539,7 +18641,7 @@
35491 if test "$cf_cv_curses_wacs_map" != unknown
35492 then
35493 	cat >conftest.$ac_ext <<_ACEOF
35494-#line 18542 "configure"
35495+#line 18644 "configure"
35496 #include "confdefs.h"
35497
35498 #ifndef _XOPEN_SOURCE_EXTENDED
35499@@ -18556,16 +18658,16 @@
35500 }
35501 _ACEOF
35502 rm -f conftest.$ac_objext conftest$ac_exeext
35503-if { (eval echo "$as_me:18559: \"$ac_link\"") >&5
35504+if { (eval echo "$as_me:18661: \"$ac_link\"") >&5
35505   (eval $ac_link) 2>&5
35506   ac_status=$?
35507-  echo "$as_me:18562: \$? = $ac_status" >&5
35508+  echo "$as_me:18664: \$? = $ac_status" >&5
35509   (exit $ac_status); } &&
35510          { ac_try='test -s conftest$ac_exeext'
35511-  { (eval echo "$as_me:18565: \"$ac_try\"") >&5
35512+  { (eval echo "$as_me:18667: \"$ac_try\"") >&5
35513   (eval $ac_try) 2>&5
35514   ac_status=$?
35515-  echo "$as_me:18568: \$? = $ac_status" >&5
35516+  echo "$as_me:18670: \$? = $ac_status" >&5
35517   (exit $ac_status); }; }; then
35518   cf_cv_curses_wacs_symbols=yes
35519 else
35520@@ -18575,7 +18677,7 @@
35521 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
35522 else
35523 	cat >conftest.$ac_ext <<_ACEOF
35524-#line 18578 "configure"
35525+#line 18680 "configure"
35526 #include "confdefs.h"
35527
35528 #ifndef _XOPEN_SOURCE_EXTENDED
35529@@ -18591,16 +18693,16 @@
35530 }
35531 _ACEOF
35532 rm -f conftest.$ac_objext conftest$ac_exeext
35533-if { (eval echo "$as_me:18594: \"$ac_link\"") >&5
35534+if { (eval echo "$as_me:18696: \"$ac_link\"") >&5
35535   (eval $ac_link) 2>&5
35536   ac_status=$?
35537-  echo "$as_me:18597: \$? = $ac_status" >&5
35538+  echo "$as_me:18699: \$? = $ac_status" >&5
35539   (exit $ac_status); } &&
35540          { ac_try='test -s conftest$ac_exeext'
35541-  { (eval echo "$as_me:18600: \"$ac_try\"") >&5
35542+  { (eval echo "$as_me:18702: \"$ac_try\"") >&5
35543   (eval $ac_try) 2>&5
35544   ac_status=$?
35545-  echo "$as_me:18603: \$? = $ac_status" >&5
35546+  echo "$as_me:18705: \$? = $ac_status" >&5
35547   (exit $ac_status); }; }; then
35548   cf_cv_curses_wacs_symbols=yes
35549 else
35550@@ -18611,7 +18713,7 @@
35551 fi
35552
35553 fi
35554-echo "$as_me:18614: result: $cf_cv_curses_wacs_symbols" >&5
35555+echo "$as_me:18716: result: $cf_cv_curses_wacs_symbols" >&5
35556 echo "${ECHO_T}$cf_cv_curses_wacs_symbols" >&6
35557
35558 test "$cf_cv_curses_wacs_symbols" != no &&
35559@@ -18621,10 +18723,10 @@
35560
35561 fi
35562
35563-echo "$as_me:18624: checking for type attr_t in ${cf_cv_ncurses_header:-curses.h}" >&5
35564+echo "$as_me:18726: checking for type attr_t in ${cf_cv_ncurses_header:-curses.h}" >&5
35565 echo $ECHO_N "checking for type attr_t in ${cf_cv_ncurses_header:-curses.h}... $ECHO_C" >&6
35566 cat >conftest.$ac_ext <<_ACEOF
35567-#line 18627 "configure"
35568+#line 18729 "configure"
35569 #include "confdefs.h"
35570
35571 #ifndef _XOPEN_SOURCE_EXTENDED
35572@@ -18642,16 +18744,16 @@
35573 }
35574 _ACEOF
35575 rm -f conftest.$ac_objext
35576-if { (eval echo "$as_me:18645: \"$ac_compile\"") >&5
35577+if { (eval echo "$as_me:18747: \"$ac_compile\"") >&5
35578   (eval $ac_compile) 2>&5
35579   ac_status=$?
35580-  echo "$as_me:18648: \$? = $ac_status" >&5
35581+  echo "$as_me:18750: \$? = $ac_status" >&5
35582   (exit $ac_status); } &&
35583          { ac_try='test -s conftest.$ac_objext'
35584-  { (eval echo "$as_me:18651: \"$ac_try\"") >&5
35585+  { (eval echo "$as_me:18753: \"$ac_try\"") >&5
35586   (eval $ac_try) 2>&5
35587   ac_status=$?
35588-  echo "$as_me:18654: \$? = $ac_status" >&5
35589+  echo "$as_me:18756: \$? = $ac_status" >&5
35590   (exit $ac_status); }; }; then
35591   cf_result=yes
35592 else
35593@@ -18660,7 +18762,7 @@
35594 cf_result=no
35595 fi
35596 rm -f conftest.$ac_objext conftest.$ac_ext
35597-echo "$as_me:18663: result: $cf_result" >&5
35598+echo "$as_me:18765: result: $cf_result" >&5
35599 echo "${ECHO_T}$cf_result" >&6
35600 if test $cf_result = yes ; then
35601
35602@@ -18681,14 +18783,14 @@
35603 if test "$cf_enable_widec" = yes; then
35604
35605 # This is needed on Tru64 5.0 to declare mbstate_t
35606-echo "$as_me:18684: checking if we must include wchar.h to declare mbstate_t" >&5
35607+echo "$as_me:18786: checking if we must include wchar.h to declare mbstate_t" >&5
35608 echo $ECHO_N "checking if we must include wchar.h to declare mbstate_t... $ECHO_C" >&6
35609 if test "${cf_cv_mbstate_t+set}" = set; then
35610   echo $ECHO_N "(cached) $ECHO_C" >&6
35611 else
35612
35613 cat >conftest.$ac_ext <<_ACEOF
35614-#line 18691 "configure"
35615+#line 18793 "configure"
35616 #include "confdefs.h"
35617
35618 #include <stdlib.h>
35619@@ -18706,23 +18808,23 @@
35620 }
35621 _ACEOF
35622 rm -f conftest.$ac_objext
35623-if { (eval echo "$as_me:18709: \"$ac_compile\"") >&5
35624+if { (eval echo "$as_me:18811: \"$ac_compile\"") >&5
35625   (eval $ac_compile) 2>&5
35626   ac_status=$?
35627-  echo "$as_me:18712: \$? = $ac_status" >&5
35628+  echo "$as_me:18814: \$? = $ac_status" >&5
35629   (exit $ac_status); } &&
35630          { ac_try='test -s conftest.$ac_objext'
35631-  { (eval echo "$as_me:18715: \"$ac_try\"") >&5
35632+  { (eval echo "$as_me:18817: \"$ac_try\"") >&5
35633   (eval $ac_try) 2>&5
35634   ac_status=$?
35635-  echo "$as_me:18718: \$? = $ac_status" >&5
35636+  echo "$as_me:18820: \$? = $ac_status" >&5
35637   (exit $ac_status); }; }; then
35638   cf_cv_mbstate_t=no
35639 else
35640   echo "$as_me: failed program was:" >&5
35641 cat conftest.$ac_ext >&5
35642 cat >conftest.$ac_ext <<_ACEOF
35643-#line 18725 "configure"
35644+#line 18827 "configure"
35645 #include "confdefs.h"
35646
35647 #include <stdlib.h>
35648@@ -18741,16 +18843,16 @@
35649 }
35650 _ACEOF
35651 rm -f conftest.$ac_objext
35652-if { (eval echo "$as_me:18744: \"$ac_compile\"") >&5
35653+if { (eval echo "$as_me:18846: \"$ac_compile\"") >&5
35654   (eval $ac_compile) 2>&5
35655   ac_status=$?
35656-  echo "$as_me:18747: \$? = $ac_status" >&5
35657+  echo "$as_me:18849: \$? = $ac_status" >&5
35658   (exit $ac_status); } &&
35659          { ac_try='test -s conftest.$ac_objext'
35660-  { (eval echo "$as_me:18750: \"$ac_try\"") >&5
35661+  { (eval echo "$as_me:18852: \"$ac_try\"") >&5
35662   (eval $ac_try) 2>&5
35663   ac_status=$?
35664-  echo "$as_me:18753: \$? = $ac_status" >&5
35665+  echo "$as_me:18855: \$? = $ac_status" >&5
35666   (exit $ac_status); }; }; then
35667   cf_cv_mbstate_t=yes
35668 else
35669@@ -18762,7 +18864,7 @@
35670 fi
35671 rm -f conftest.$ac_objext conftest.$ac_ext
35672 fi
35673-echo "$as_me:18765: result: $cf_cv_mbstate_t" >&5
35674+echo "$as_me:18867: result: $cf_cv_mbstate_t" >&5
35675 echo "${ECHO_T}$cf_cv_mbstate_t" >&6
35676
35677 if test "$cf_cv_mbstate_t" = yes ; then
35678@@ -18785,14 +18887,14 @@
35679 fi
35680
35681 # This is needed on Tru64 5.0 to declare wchar_t
35682-echo "$as_me:18788: checking if we must include wchar.h to declare wchar_t" >&5
35683+echo "$as_me:18890: checking if we must include wchar.h to declare wchar_t" >&5
35684 echo $ECHO_N "checking if we must include wchar.h to declare wchar_t... $ECHO_C" >&6
35685 if test "${cf_cv_wchar_t+set}" = set; then
35686   echo $ECHO_N "(cached) $ECHO_C" >&6
35687 else
35688
35689 cat >conftest.$ac_ext <<_ACEOF
35690-#line 18795 "configure"
35691+#line 18897 "configure"
35692 #include "confdefs.h"
35693
35694 #include <stdlib.h>
35695@@ -18810,23 +18912,23 @@
35696 }
35697 _ACEOF
35698 rm -f conftest.$ac_objext
35699-if { (eval echo "$as_me:18813: \"$ac_compile\"") >&5
35700+if { (eval echo "$as_me:18915: \"$ac_compile\"") >&5
35701   (eval $ac_compile) 2>&5
35702   ac_status=$?
35703-  echo "$as_me:18816: \$? = $ac_status" >&5
35704+  echo "$as_me:18918: \$? = $ac_status" >&5
35705   (exit $ac_status); } &&
35706          { ac_try='test -s conftest.$ac_objext'
35707-  { (eval echo "$as_me:18819: \"$ac_try\"") >&5
35708+  { (eval echo "$as_me:18921: \"$ac_try\"") >&5
35709   (eval $ac_try) 2>&5
35710   ac_status=$?
35711-  echo "$as_me:18822: \$? = $ac_status" >&5
35712+  echo "$as_me:18924: \$? = $ac_status" >&5
35713   (exit $ac_status); }; }; then
35714   cf_cv_wchar_t=no
35715 else
35716   echo "$as_me: failed program was:" >&5
35717 cat conftest.$ac_ext >&5
35718 cat >conftest.$ac_ext <<_ACEOF
35719-#line 18829 "configure"
35720+#line 18931 "configure"
35721 #include "confdefs.h"
35722
35723 #include <stdlib.h>
35724@@ -18845,16 +18947,16 @@
35725 }
35726 _ACEOF
35727 rm -f conftest.$ac_objext
35728-if { (eval echo "$as_me:18848: \"$ac_compile\"") >&5
35729+if { (eval echo "$as_me:18950: \"$ac_compile\"") >&5
35730   (eval $ac_compile) 2>&5
35731   ac_status=$?
35732-  echo "$as_me:18851: \$? = $ac_status" >&5
35733+  echo "$as_me:18953: \$? = $ac_status" >&5
35734   (exit $ac_status); } &&
35735          { ac_try='test -s conftest.$ac_objext'
35736-  { (eval echo "$as_me:18854: \"$ac_try\"") >&5
35737+  { (eval echo "$as_me:18956: \"$ac_try\"") >&5
35738   (eval $ac_try) 2>&5
35739   ac_status=$?
35740-  echo "$as_me:18857: \$? = $ac_status" >&5
35741+  echo "$as_me:18959: \$? = $ac_status" >&5
35742   (exit $ac_status); }; }; then
35743   cf_cv_wchar_t=yes
35744 else
35745@@ -18866,7 +18968,7 @@
35746 fi
35747 rm -f conftest.$ac_objext conftest.$ac_ext
35748 fi
35749-echo "$as_me:18869: result: $cf_cv_wchar_t" >&5
35750+echo "$as_me:18971: result: $cf_cv_wchar_t" >&5
35751 echo "${ECHO_T}$cf_cv_wchar_t" >&6
35752
35753 if test "$cf_cv_wchar_t" = yes ; then
35754@@ -18889,14 +18991,14 @@
35755 fi
35756
35757 # This is needed on Tru64 5.0 to declare wint_t
35758-echo "$as_me:18892: checking if we must include wchar.h to declare wint_t" >&5
35759+echo "$as_me:18994: checking if we must include wchar.h to declare wint_t" >&5
35760 echo $ECHO_N "checking if we must include wchar.h to declare wint_t... $ECHO_C" >&6
35761 if test "${cf_cv_wint_t+set}" = set; then
35762   echo $ECHO_N "(cached) $ECHO_C" >&6
35763 else
35764
35765 cat >conftest.$ac_ext <<_ACEOF
35766-#line 18899 "configure"
35767+#line 19001 "configure"
35768 #include "confdefs.h"
35769
35770 #include <stdlib.h>
35771@@ -18914,23 +19016,23 @@
35772 }
35773 _ACEOF
35774 rm -f conftest.$ac_objext
35775-if { (eval echo "$as_me:18917: \"$ac_compile\"") >&5
35776+if { (eval echo "$as_me:19019: \"$ac_compile\"") >&5
35777   (eval $ac_compile) 2>&5
35778   ac_status=$?
35779-  echo "$as_me:18920: \$? = $ac_status" >&5
35780+  echo "$as_me:19022: \$? = $ac_status" >&5
35781   (exit $ac_status); } &&
35782          { ac_try='test -s conftest.$ac_objext'
35783-  { (eval echo "$as_me:18923: \"$ac_try\"") >&5
35784+  { (eval echo "$as_me:19025: \"$ac_try\"") >&5
35785   (eval $ac_try) 2>&5
35786   ac_status=$?
35787-  echo "$as_me:18926: \$? = $ac_status" >&5
35788+  echo "$as_me:19028: \$? = $ac_status" >&5
35789   (exit $ac_status); }; }; then
35790   cf_cv_wint_t=no
35791 else
35792   echo "$as_me: failed program was:" >&5
35793 cat conftest.$ac_ext >&5
35794 cat >conftest.$ac_ext <<_ACEOF
35795-#line 18933 "configure"
35796+#line 19035 "configure"
35797 #include "confdefs.h"
35798
35799 #include <stdlib.h>
35800@@ -18949,16 +19051,16 @@
35801 }
35802 _ACEOF
35803 rm -f conftest.$ac_objext
35804-if { (eval echo "$as_me:18952: \"$ac_compile\"") >&5
35805+if { (eval echo "$as_me:19054: \"$ac_compile\"") >&5
35806   (eval $ac_compile) 2>&5
35807   ac_status=$?
35808-  echo "$as_me:18955: \$? = $ac_status" >&5
35809+  echo "$as_me:19057: \$? = $ac_status" >&5
35810   (exit $ac_status); } &&
35811          { ac_try='test -s conftest.$ac_objext'
35812-  { (eval echo "$as_me:18958: \"$ac_try\"") >&5
35813+  { (eval echo "$as_me:19060: \"$ac_try\"") >&5
35814   (eval $ac_try) 2>&5
35815   ac_status=$?
35816-  echo "$as_me:18961: \$? = $ac_status" >&5
35817+  echo "$as_me:19063: \$? = $ac_status" >&5
35818   (exit $ac_status); }; }; then
35819   cf_cv_wint_t=yes
35820 else
35821@@ -18970,7 +19072,7 @@
35822 fi
35823 rm -f conftest.$ac_objext conftest.$ac_ext
35824 fi
35825-echo "$as_me:18973: result: $cf_cv_wint_t" >&5
35826+echo "$as_me:19075: result: $cf_cv_wint_t" >&5
35827 echo "${ECHO_T}$cf_cv_wint_t" >&6
35828
35829 if test "$cf_cv_wint_t" = yes ; then
35830@@ -18994,10 +19096,10 @@
35831
35832 	if test "$NCURSES_OK_MBSTATE_T" = 0 ; then
35833
35834-echo "$as_me:18997: checking for type mbstate_t in ${cf_cv_ncurses_header:-curses.h}" >&5
35835+echo "$as_me:19099: checking for type mbstate_t in ${cf_cv_ncurses_header:-curses.h}" >&5
35836 echo $ECHO_N "checking for type mbstate_t in ${cf_cv_ncurses_header:-curses.h}... $ECHO_C" >&6
35837 cat >conftest.$ac_ext <<_ACEOF
35838-#line 19000 "configure"
35839+#line 19102 "configure"
35840 #include "confdefs.h"
35841
35842 #ifndef _XOPEN_SOURCE_EXTENDED
35843@@ -19015,16 +19117,16 @@
35844 }
35845 _ACEOF
35846 rm -f conftest.$ac_objext
35847-if { (eval echo "$as_me:19018: \"$ac_compile\"") >&5
35848+if { (eval echo "$as_me:19120: \"$ac_compile\"") >&5
35849   (eval $ac_compile) 2>&5
35850   ac_status=$?
35851-  echo "$as_me:19021: \$? = $ac_status" >&5
35852+  echo "$as_me:19123: \$? = $ac_status" >&5
35853   (exit $ac_status); } &&
35854          { ac_try='test -s conftest.$ac_objext'
35855-  { (eval echo "$as_me:19024: \"$ac_try\"") >&5
35856+  { (eval echo "$as_me:19126: \"$ac_try\"") >&5
35857   (eval $ac_try) 2>&5
35858   ac_status=$?
35859-  echo "$as_me:19027: \$? = $ac_status" >&5
35860+  echo "$as_me:19129: \$? = $ac_status" >&5
35861   (exit $ac_status); }; }; then
35862   cf_result=yes
35863 else
35864@@ -19033,7 +19135,7 @@
35865 cf_result=no
35866 fi
35867 rm -f conftest.$ac_objext conftest.$ac_ext
35868-echo "$as_me:19036: result: $cf_result" >&5
35869+echo "$as_me:19138: result: $cf_result" >&5
35870 echo "${ECHO_T}$cf_result" >&6
35871 if test $cf_result = yes ; then
35872
35873@@ -19055,10 +19157,10 @@
35874
35875 	if test "$NCURSES_OK_WCHAR_T" = 0 ; then
35876
35877-echo "$as_me:19058: checking for type wchar_t in ${cf_cv_ncurses_header:-curses.h}" >&5
35878+echo "$as_me:19160: checking for type wchar_t in ${cf_cv_ncurses_header:-curses.h}" >&5
35879 echo $ECHO_N "checking for type wchar_t in ${cf_cv_ncurses_header:-curses.h}... $ECHO_C" >&6
35880 cat >conftest.$ac_ext <<_ACEOF
35881-#line 19061 "configure"
35882+#line 19163 "configure"
35883 #include "confdefs.h"
35884
35885 #ifndef _XOPEN_SOURCE_EXTENDED
35886@@ -19076,16 +19178,16 @@
35887 }
35888 _ACEOF
35889 rm -f conftest.$ac_objext
35890-if { (eval echo "$as_me:19079: \"$ac_compile\"") >&5
35891+if { (eval echo "$as_me:19181: \"$ac_compile\"") >&5
35892   (eval $ac_compile) 2>&5
35893   ac_status=$?
35894-  echo "$as_me:19082: \$? = $ac_status" >&5
35895+  echo "$as_me:19184: \$? = $ac_status" >&5
35896   (exit $ac_status); } &&
35897          { ac_try='test -s conftest.$ac_objext'
35898-  { (eval echo "$as_me:19085: \"$ac_try\"") >&5
35899+  { (eval echo "$as_me:19187: \"$ac_try\"") >&5
35900   (eval $ac_try) 2>&5
35901   ac_status=$?
35902-  echo "$as_me:19088: \$? = $ac_status" >&5
35903+  echo "$as_me:19190: \$? = $ac_status" >&5
35904   (exit $ac_status); }; }; then
35905   cf_result=yes
35906 else
35907@@ -19094,7 +19196,7 @@
35908 cf_result=no
35909 fi
35910 rm -f conftest.$ac_objext conftest.$ac_ext
35911-echo "$as_me:19097: result: $cf_result" >&5
35912+echo "$as_me:19199: result: $cf_result" >&5
35913 echo "${ECHO_T}$cf_result" >&6
35914 if test $cf_result = yes ; then
35915
35916@@ -19116,10 +19218,10 @@
35917
35918 	if test "$NCURSES_OK_WINT_T" = 0 ; then
35919
35920-echo "$as_me:19119: checking for type wint_t in ${cf_cv_ncurses_header:-curses.h}" >&5
35921+echo "$as_me:19221: checking for type wint_t in ${cf_cv_ncurses_header:-curses.h}" >&5
35922 echo $ECHO_N "checking for type wint_t in ${cf_cv_ncurses_header:-curses.h}... $ECHO_C" >&6
35923 cat >conftest.$ac_ext <<_ACEOF
35924-#line 19122 "configure"
35925+#line 19224 "configure"
35926 #include "confdefs.h"
35927
35928 #ifndef _XOPEN_SOURCE_EXTENDED
35929@@ -19137,16 +19239,16 @@
35930 }
35931 _ACEOF
35932 rm -f conftest.$ac_objext
35933-if { (eval echo "$as_me:19140: \"$ac_compile\"") >&5
35934+if { (eval echo "$as_me:19242: \"$ac_compile\"") >&5
35935   (eval $ac_compile) 2>&5
35936   ac_status=$?
35937-  echo "$as_me:19143: \$? = $ac_status" >&5
35938+  echo "$as_me:19245: \$? = $ac_status" >&5
35939   (exit $ac_status); } &&
35940          { ac_try='test -s conftest.$ac_objext'
35941-  { (eval echo "$as_me:19146: \"$ac_try\"") >&5
35942+  { (eval echo "$as_me:19248: \"$ac_try\"") >&5
35943   (eval $ac_try) 2>&5
35944   ac_status=$?
35945-  echo "$as_me:19149: \$? = $ac_status" >&5
35946+  echo "$as_me:19251: \$? = $ac_status" >&5
35947   (exit $ac_status); }; }; then
35948   cf_result=yes
35949 else
35950@@ -19155,7 +19257,7 @@
35951 cf_result=no
35952 fi
35953 rm -f conftest.$ac_objext conftest.$ac_ext
35954-echo "$as_me:19158: result: $cf_result" >&5
35955+echo "$as_me:19260: result: $cf_result" >&5
35956 echo "${ECHO_T}$cf_result" >&6
35957 if test $cf_result = yes ; then
35958
35959@@ -19184,11 +19286,11 @@
35960 boolfnames \
35961 ttytype
35962 do
35963-echo "$as_me:19187: checking for data $cf_data declaration in ${cf_cv_ncurses_header:-curses.h}" >&5
35964+echo "$as_me:19289: checking for data $cf_data declaration in ${cf_cv_ncurses_header:-curses.h}" >&5
35965 echo $ECHO_N "checking for data $cf_data declaration in ${cf_cv_ncurses_header:-curses.h}... $ECHO_C" >&6
35966
35967 cat >conftest.$ac_ext <<_ACEOF
35968-#line 19191 "configure"
35969+#line 19293 "configure"
35970 #include "confdefs.h"
35971
35972 #ifdef HAVE_XCURSES
35973@@ -19216,16 +19318,16 @@
35974 }
35975 _ACEOF
35976 rm -f conftest.$ac_objext
35977-if { (eval echo "$as_me:19219: \"$ac_compile\"") >&5
35978+if { (eval echo "$as_me:19321: \"$ac_compile\"") >&5
35979   (eval $ac_compile) 2>&5
35980   ac_status=$?
35981-  echo "$as_me:19222: \$? = $ac_status" >&5
35982+  echo "$as_me:19324: \$? = $ac_status" >&5
35983   (exit $ac_status); } &&
35984          { ac_try='test -s conftest.$ac_objext'
35985-  { (eval echo "$as_me:19225: \"$ac_try\"") >&5
35986+  { (eval echo "$as_me:19327: \"$ac_try\"") >&5
35987   (eval $ac_try) 2>&5
35988   ac_status=$?
35989-  echo "$as_me:19228: \$? = $ac_status" >&5
35990+  echo "$as_me:19330: \$? = $ac_status" >&5
35991   (exit $ac_status); }; }; then
35992   cf_result=yes
35993
35994@@ -19235,7 +19337,7 @@
35995 cf_result=no
35996 fi
35997 rm -f conftest.$ac_objext conftest.$ac_ext
35998-echo "$as_me:19238: result: $cf_result" >&5
35999+echo "$as_me:19340: result: $cf_result" >&5
36000 echo "${ECHO_T}$cf_result" >&6
36001
36002 if test $cf_result = yes ; then
36003@@ -19247,14 +19349,14 @@
36004 EOF
36005
36006 else
36007-	echo "$as_me:19250: checking for data $cf_data in library" >&5
36008+	echo "$as_me:19352: checking for data $cf_data in library" >&5
36009 echo $ECHO_N "checking for data $cf_data in library... $ECHO_C" >&6
36010 	# BSD linkers insist on making weak linkage, but resolve at runtime.
36011 	if test "$cross_compiling" = yes; then
36012
36013 	# cross-compiling
36014 	cat >conftest.$ac_ext <<_ACEOF
36015-#line 19257 "configure"
36016+#line 19359 "configure"
36017 #include "confdefs.h"
36018
36019 #ifdef HAVE_XCURSES
36020@@ -19287,16 +19389,16 @@
36021 }
36022 _ACEOF
36023 rm -f conftest.$ac_objext conftest$ac_exeext
36024-if { (eval echo "$as_me:19290: \"$ac_link\"") >&5
36025+if { (eval echo "$as_me:19392: \"$ac_link\"") >&5
36026   (eval $ac_link) 2>&5
36027   ac_status=$?
36028-  echo "$as_me:19293: \$? = $ac_status" >&5
36029+  echo "$as_me:19395: \$? = $ac_status" >&5
36030   (exit $ac_status); } &&
36031          { ac_try='test -s conftest$ac_exeext'
36032-  { (eval echo "$as_me:19296: \"$ac_try\"") >&5
36033+  { (eval echo "$as_me:19398: \"$ac_try\"") >&5
36034   (eval $ac_try) 2>&5
36035   ac_status=$?
36036-  echo "$as_me:19299: \$? = $ac_status" >&5
36037+  echo "$as_me:19401: \$? = $ac_status" >&5
36038   (exit $ac_status); }; }; then
36039   cf_result=yes
36040 else
36041@@ -19308,7 +19410,7 @@
36042
36043 else
36044   cat >conftest.$ac_ext <<_ACEOF
36045-#line 19311 "configure"
36046+#line 19413 "configure"
36047 #include "confdefs.h"
36048
36049 #ifdef HAVE_XCURSES
36050@@ -19334,15 +19436,15 @@
36051 }
36052 _ACEOF
36053 rm -f conftest$ac_exeext
36054-if { (eval echo "$as_me:19337: \"$ac_link\"") >&5
36055+if { (eval echo "$as_me:19439: \"$ac_link\"") >&5
36056   (eval $ac_link) 2>&5
36057   ac_status=$?
36058-  echo "$as_me:19340: \$? = $ac_status" >&5
36059+  echo "$as_me:19442: \$? = $ac_status" >&5
36060   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
36061-  { (eval echo "$as_me:19342: \"$ac_try\"") >&5
36062+  { (eval echo "$as_me:19444: \"$ac_try\"") >&5
36063   (eval $ac_try) 2>&5
36064   ac_status=$?
36065-  echo "$as_me:19345: \$? = $ac_status" >&5
36066+  echo "$as_me:19447: \$? = $ac_status" >&5
36067   (exit $ac_status); }; }; then
36068   cf_result=yes
36069
36070@@ -19354,7 +19456,7 @@
36071 fi
36072 rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
36073 fi
36074-	echo "$as_me:19357: result: $cf_result" >&5
36075+	echo "$as_me:19459: result: $cf_result" >&5
36076 echo "${ECHO_T}$cf_result" >&6
36077 	if test $cf_result = yes ; then
36078
36079@@ -19371,7 +19473,7 @@
36080
36081 if ( test "$GCC" = yes || test "$GXX" = yes )
36082 then
36083-echo "$as_me:19374: checking if you want to turn on gcc warnings" >&5
36084+echo "$as_me:19476: checking if you want to turn on gcc warnings" >&5
36085 echo $ECHO_N "checking if you want to turn on gcc warnings... $ECHO_C" >&6
36086
36087 # Check whether --enable-warnings or --disable-warnings was given.
36088@@ -19388,7 +19490,7 @@
36089 	with_warnings=no
36090
36091 fi;
36092-echo "$as_me:19391: result: $with_warnings" >&5
36093+echo "$as_me:19493: result: $with_warnings" >&5
36094 echo "${ECHO_T}$with_warnings" >&6
36095 if test "$with_warnings" = "yes"
36096 then
36097@@ -19411,10 +19513,10 @@
36098 EOF
36099 if test "$GCC" = yes
36100 then
36101-	{ echo "$as_me:19414: checking for $CC __attribute__ directives..." >&5
36102+	{ echo "$as_me:19516: checking for $CC __attribute__ directives..." >&5
36103 echo "$as_me: checking for $CC __attribute__ directives..." >&6;}
36104 cat > conftest.$ac_ext <<EOF
36105-#line 19417 "${as_me:-configure}"
36106+#line 19519 "${as_me:-configure}"
36107 #include "confdefs.h"
36108 #include "conftest.h"
36109 #include "conftest.i"
36110@@ -19463,12 +19565,12 @@
36111 			;;
36112 		esac
36113
36114-		if { (eval echo "$as_me:19466: \"$ac_compile\"") >&5
36115+		if { (eval echo "$as_me:19568: \"$ac_compile\"") >&5
36116   (eval $ac_compile) 2>&5
36117   ac_status=$?
36118-  echo "$as_me:19469: \$? = $ac_status" >&5
36119+  echo "$as_me:19571: \$? = $ac_status" >&5
36120   (exit $ac_status); }; then
36121-			test -n "$verbose" && echo "$as_me:19471: result: ... $cf_attribute" >&5
36122+			test -n "$verbose" && echo "$as_me:19573: result: ... $cf_attribute" >&5
36123 echo "${ECHO_T}... $cf_attribute" >&6
36124 			cat conftest.h >>confdefs.h
36125 			case $cf_attribute in
36126@@ -19527,113 +19629,111 @@
36127 rm -rf conftest*
36128 fi
36129
36130-INTEL_COMPILER=no
36131-
36132-if test "$GCC" = yes ; then
36133-	case $host_os in
36134-	(linux*|gnu*)
36135-		echo "$as_me:19535: checking if this is really Intel C compiler" >&5
36136-echo $ECHO_N "checking if this is really Intel C compiler... $ECHO_C" >&6
36137-		cf_save_CFLAGS="$CFLAGS"
36138-		CFLAGS="$CFLAGS -no-gcc"
36139-		cat >conftest.$ac_ext <<_ACEOF
36140-#line 19540 "configure"
36141+if test "x$have_x" = xyes; then
36142+cat >conftest.$ac_ext <<_ACEOF
36143+#line 19634 "configure"
36144 #include "confdefs.h"
36145
36146+#include <stdlib.h>
36147+#include <X11/Intrinsic.h>
36148+
36149 int
36150 main (void)
36151 {
36152-
36153-#ifdef __INTEL_COMPILER
36154-#else
36155-make an error
36156-#endif
36157-
36158+String foo = malloc(1)
36159   ;
36160   return 0;
36161 }
36162 _ACEOF
36163 rm -f conftest.$ac_objext
36164-if { (eval echo "$as_me:19557: \"$ac_compile\"") >&5
36165+if { (eval echo "$as_me:19649: \"$ac_compile\"") >&5
36166   (eval $ac_compile) 2>&5
36167   ac_status=$?
36168-  echo "$as_me:19560: \$? = $ac_status" >&5
36169+  echo "$as_me:19652: \$? = $ac_status" >&5
36170   (exit $ac_status); } &&
36171          { ac_try='test -s conftest.$ac_objext'
36172-  { (eval echo "$as_me:19563: \"$ac_try\"") >&5
36173+  { (eval echo "$as_me:19655: \"$ac_try\"") >&5
36174   (eval $ac_try) 2>&5
36175   ac_status=$?
36176-  echo "$as_me:19566: \$? = $ac_status" >&5
36177+  echo "$as_me:19658: \$? = $ac_status" >&5
36178   (exit $ac_status); }; }; then
36179-  INTEL_COMPILER=yes
36180-cf_save_CFLAGS="$cf_save_CFLAGS -we147"
36181
36182+echo "$as_me:19661: checking for X11/Xt const-feature" >&5
36183+echo $ECHO_N "checking for X11/Xt const-feature... $ECHO_C" >&6
36184+if test "${cf_cv_const_x_string+set}" = set; then
36185+  echo $ECHO_N "(cached) $ECHO_C" >&6
36186 else
36187-  echo "$as_me: failed program was:" >&5
36188-cat conftest.$ac_ext >&5
36189-fi
36190-rm -f conftest.$ac_objext conftest.$ac_ext
36191-		CFLAGS="$cf_save_CFLAGS"
36192-		echo "$as_me:19577: result: $INTEL_COMPILER" >&5
36193-echo "${ECHO_T}$INTEL_COMPILER" >&6
36194-		;;
36195-	esac
36196-fi
36197
36198-CLANG_COMPILER=no
36199-
36200-if test "$GCC" = yes ; then
36201-	echo "$as_me:19586: checking if this is really Clang C compiler" >&5
36202-echo $ECHO_N "checking if this is really Clang C compiler... $ECHO_C" >&6
36203-	cf_save_CFLAGS="$CFLAGS"
36204-	CFLAGS="$CFLAGS -Qunused-arguments"
36205 	cat >conftest.$ac_ext <<_ACEOF
36206-#line 19591 "configure"
36207+#line 19668 "configure"
36208 #include "confdefs.h"
36209
36210+#define _CONST_X_STRING	/* X11R7.8 (perhaps) */
36211+#undef  XTSTRINGDEFINES	/* X11R5 and later */
36212+#include <stdlib.h>
36213+#include <X11/Intrinsic.h>
36214+
36215 int
36216 main (void)
36217 {
36218-
36219-#ifdef __clang__
36220-#else
36221-make an error
36222-#endif
36223-
36224+String foo = malloc(1); *foo = 0
36225   ;
36226   return 0;
36227 }
36228 _ACEOF
36229 rm -f conftest.$ac_objext
36230-if { (eval echo "$as_me:19608: \"$ac_compile\"") >&5
36231+if { (eval echo "$as_me:19685: \"$ac_compile\"") >&5
36232   (eval $ac_compile) 2>&5
36233   ac_status=$?
36234-  echo "$as_me:19611: \$? = $ac_status" >&5
36235+  echo "$as_me:19688: \$? = $ac_status" >&5
36236   (exit $ac_status); } &&
36237          { ac_try='test -s conftest.$ac_objext'
36238-  { (eval echo "$as_me:19614: \"$ac_try\"") >&5
36239+  { (eval echo "$as_me:19691: \"$ac_try\"") >&5
36240   (eval $ac_try) 2>&5
36241   ac_status=$?
36242-  echo "$as_me:19617: \$? = $ac_status" >&5
36243+  echo "$as_me:19694: \$? = $ac_status" >&5
36244   (exit $ac_status); }; }; then
36245-  CLANG_COMPILER=yes
36246-cf_save_CFLAGS="$cf_save_CFLAGS -Qunused-arguments"
36247+
36248+			cf_cv_const_x_string=no
36249
36250 else
36251   echo "$as_me: failed program was:" >&5
36252 cat conftest.$ac_ext >&5
36253+
36254+			cf_cv_const_x_string=yes
36255+
36256 fi
36257 rm -f conftest.$ac_objext conftest.$ac_ext
36258-	CFLAGS="$cf_save_CFLAGS"
36259-	echo "$as_me:19628: result: $CLANG_COMPILER" >&5
36260-echo "${ECHO_T}$CLANG_COMPILER" >&6
36261+
36262 fi
36263+echo "$as_me:19709: result: $cf_cv_const_x_string" >&5
36264+echo "${ECHO_T}$cf_cv_const_x_string" >&6
36265
36266+case $cf_cv_const_x_string in
36267+(no)
36268+
36269+	test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS "
36270+	CPPFLAGS="${CPPFLAGS}-DXTSTRINGDEFINES"
36271+
36272+	;;
36273+(*)
36274+
36275+	test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS "
36276+	CPPFLAGS="${CPPFLAGS}-D_CONST_X_STRING"
36277+
36278+	;;
36279+esac
36280+
36281+else
36282+  echo "$as_me: failed program was:" >&5
36283+cat conftest.$ac_ext >&5
36284+fi
36285+rm -f conftest.$ac_objext conftest.$ac_ext
36286+ fi
36287 cat > conftest.$ac_ext <<EOF
36288-#line 19633 "${as_me:-configure}"
36289+#line 19734 "${as_me:-configure}"
36290 int main(int argc, char *argv[]) { return (argv[argc-1] == 0) ; }
36291 EOF
36292-
36293 if test "$INTEL_COMPILER" = yes
36294 then
36295 # The "-wdXXX" options suppress warnings:
36296@@ -19647,7 +19747,7 @@
36297 # remark #981: operands are evaluated in unspecified order
36298 # warning #279: controlling expression is constant
36299
36300-	{ echo "$as_me:19650: checking for $CC warning options..." >&5
36301+	{ echo "$as_me:19750: checking for $CC warning options..." >&5
36302 echo "$as_me: checking for $CC warning options..." >&6;}
36303 	cf_save_CFLAGS="$CFLAGS"
36304 	EXTRA_CFLAGS="-Wall"
36305@@ -19663,21 +19763,20 @@
36306 		wd981
36307 	do
36308 		CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt"
36309-		if { (eval echo "$as_me:19666: \"$ac_compile\"") >&5
36310+		if { (eval echo "$as_me:19766: \"$ac_compile\"") >&5
36311   (eval $ac_compile) 2>&5
36312   ac_status=$?
36313-  echo "$as_me:19669: \$? = $ac_status" >&5
36314+  echo "$as_me:19769: \$? = $ac_status" >&5
36315   (exit $ac_status); }; then
36316-			test -n "$verbose" && echo "$as_me:19671: result: ... -$cf_opt" >&5
36317+			test -n "$verbose" && echo "$as_me:19771: result: ... -$cf_opt" >&5
36318 echo "${ECHO_T}... -$cf_opt" >&6
36319 			EXTRA_CFLAGS="$EXTRA_CFLAGS -$cf_opt"
36320 		fi
36321 	done
36322 	CFLAGS="$cf_save_CFLAGS"
36323-
36324 elif test "$GCC" = yes
36325 then
36326-	{ echo "$as_me:19680: checking for $CC warning options..." >&5
36327+	{ echo "$as_me:19779: checking for $CC warning options..." >&5
36328 echo "$as_me: checking for $CC warning options..." >&6;}
36329 	cf_save_CFLAGS="$CFLAGS"
36330 	EXTRA_CFLAGS=
36331@@ -19701,26 +19800,20 @@
36332 		Wundef $cf_gcc_warnings $cf_warn_CONST Wno-unknown-pragmas
36333 	do
36334 		CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt"
36335-		if { (eval echo "$as_me:19704: \"$ac_compile\"") >&5
36336+		if { (eval echo "$as_me:19803: \"$ac_compile\"") >&5
36337   (eval $ac_compile) 2>&5
36338   ac_status=$?
36339-  echo "$as_me:19707: \$? = $ac_status" >&5
36340+  echo "$as_me:19806: \$? = $ac_status" >&5
36341   (exit $ac_status); }; then
36342-			test -n "$verbose" && echo "$as_me:19709: result: ... -$cf_opt" >&5
36343+			test -n "$verbose" && echo "$as_me:19808: result: ... -$cf_opt" >&5
36344 echo "${ECHO_T}... -$cf_opt" >&6
36345 			case $cf_opt in
36346-			(Wcast-qual)
36347-
36348-	test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS "
36349-	CPPFLAGS="${CPPFLAGS}-DXTSTRINGDEFINES"
36350-
36351-				;;
36352 			(Winline)
36353 				case $GCC_VERSION in
36354 				([34].*)
36355 					test -n "$verbose" && echo "	feature is broken in gcc $GCC_VERSION" 1>&6
36356
36357-echo "${as_me:-configure}:19723: testing feature is broken in gcc $GCC_VERSION ..." 1>&5
36358+echo "${as_me:-configure}:19816: testing feature is broken in gcc $GCC_VERSION ..." 1>&5
36359
36360 					continue;;
36361 				esac
36362@@ -19730,7 +19823,7 @@
36363 				([12].*)
36364 					test -n "$verbose" && echo "	feature is broken in gcc $GCC_VERSION" 1>&6
36365
36366-echo "${as_me:-configure}:19733: testing feature is broken in gcc $GCC_VERSION ..." 1>&5
36367+echo "${as_me:-configure}:19826: testing feature is broken in gcc $GCC_VERSION ..." 1>&5
36368
36369 					continue;;
36370 				esac
36371@@ -19746,7 +19839,7 @@
36372 fi
36373 fi
36374
36375-echo "$as_me:19749: checking if you want to use dmalloc for testing" >&5
36376+echo "$as_me:19842: checking if you want to use dmalloc for testing" >&5
36377 echo $ECHO_N "checking if you want to use dmalloc for testing... $ECHO_C" >&6
36378
36379 # Check whether --with-dmalloc or --without-dmalloc was given.
36380@@ -19763,7 +19856,7 @@
36381 else
36382   with_dmalloc=
36383 fi;
36384-echo "$as_me:19766: result: ${with_dmalloc:-no}" >&5
36385+echo "$as_me:19859: result: ${with_dmalloc:-no}" >&5
36386 echo "${ECHO_T}${with_dmalloc:-no}" >&6
36387
36388 case .$with_cflags in
36389@@ -19877,23 +19970,23 @@
36390 esac
36391
36392 if test "$with_dmalloc" = yes ; then
36393-	echo "$as_me:19880: checking for dmalloc.h" >&5
36394+	echo "$as_me:19973: checking for dmalloc.h" >&5
36395 echo $ECHO_N "checking for dmalloc.h... $ECHO_C" >&6
36396 if test "${ac_cv_header_dmalloc_h+set}" = set; then
36397   echo $ECHO_N "(cached) $ECHO_C" >&6
36398 else
36399   cat >conftest.$ac_ext <<_ACEOF
36400-#line 19886 "configure"
36401+#line 19979 "configure"
36402 #include "confdefs.h"
36403 #include <dmalloc.h>
36404 _ACEOF
36405-if { (eval echo "$as_me:19890: \"$ac_cpp conftest.$ac_ext\"") >&5
36406+if { (eval echo "$as_me:19983: \"$ac_cpp conftest.$ac_ext\"") >&5
36407   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
36408   ac_status=$?
36409   egrep -v '^ *\+' conftest.er1 >conftest.err
36410   rm -f conftest.er1
36411   cat conftest.err >&5
36412-  echo "$as_me:19896: \$? = $ac_status" >&5
36413+  echo "$as_me:19989: \$? = $ac_status" >&5
36414   (exit $ac_status); } >/dev/null; then
36415   if test -s conftest.err; then
36416     ac_cpp_err=$ac_c_preproc_warn_flag
36417@@ -19912,11 +20005,11 @@
36418 fi
36419 rm -f conftest.err conftest.$ac_ext
36420 fi
36421-echo "$as_me:19915: result: $ac_cv_header_dmalloc_h" >&5
36422+echo "$as_me:20008: result: $ac_cv_header_dmalloc_h" >&5
36423 echo "${ECHO_T}$ac_cv_header_dmalloc_h" >&6
36424 if test $ac_cv_header_dmalloc_h = yes; then
36425
36426-echo "$as_me:19919: checking for dmalloc_debug in -ldmalloc" >&5
36427+echo "$as_me:20012: checking for dmalloc_debug in -ldmalloc" >&5
36428 echo $ECHO_N "checking for dmalloc_debug in -ldmalloc... $ECHO_C" >&6
36429 if test "${ac_cv_lib_dmalloc_dmalloc_debug+set}" = set; then
36430   echo $ECHO_N "(cached) $ECHO_C" >&6
36431@@ -19924,7 +20017,7 @@
36432   ac_check_lib_save_LIBS=$LIBS
36433 LIBS="-ldmalloc  $LIBS"
36434 cat >conftest.$ac_ext <<_ACEOF
36435-#line 19927 "configure"
36436+#line 20020 "configure"
36437 #include "confdefs.h"
36438
36439 /* Override any gcc2 internal prototype to avoid an error.  */
36440@@ -19943,16 +20036,16 @@
36441 }
36442 _ACEOF
36443 rm -f conftest.$ac_objext conftest$ac_exeext
36444-if { (eval echo "$as_me:19946: \"$ac_link\"") >&5
36445+if { (eval echo "$as_me:20039: \"$ac_link\"") >&5
36446   (eval $ac_link) 2>&5
36447   ac_status=$?
36448-  echo "$as_me:19949: \$? = $ac_status" >&5
36449+  echo "$as_me:20042: \$? = $ac_status" >&5
36450   (exit $ac_status); } &&
36451          { ac_try='test -s conftest$ac_exeext'
36452-  { (eval echo "$as_me:19952: \"$ac_try\"") >&5
36453+  { (eval echo "$as_me:20045: \"$ac_try\"") >&5
36454   (eval $ac_try) 2>&5
36455   ac_status=$?
36456-  echo "$as_me:19955: \$? = $ac_status" >&5
36457+  echo "$as_me:20048: \$? = $ac_status" >&5
36458   (exit $ac_status); }; }; then
36459   ac_cv_lib_dmalloc_dmalloc_debug=yes
36460 else
36461@@ -19963,7 +20056,7 @@
36462 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
36463 LIBS=$ac_check_lib_save_LIBS
36464 fi
36465-echo "$as_me:19966: result: $ac_cv_lib_dmalloc_dmalloc_debug" >&5
36466+echo "$as_me:20059: result: $ac_cv_lib_dmalloc_dmalloc_debug" >&5
36467 echo "${ECHO_T}$ac_cv_lib_dmalloc_dmalloc_debug" >&6
36468 if test $ac_cv_lib_dmalloc_dmalloc_debug = yes; then
36469   cat >>confdefs.h <<EOF
36470@@ -19978,7 +20071,7 @@
36471
36472 fi
36473
36474-echo "$as_me:19981: checking if you want to use dbmalloc for testing" >&5
36475+echo "$as_me:20074: checking if you want to use dbmalloc for testing" >&5
36476 echo $ECHO_N "checking if you want to use dbmalloc for testing... $ECHO_C" >&6
36477
36478 # Check whether --with-dbmalloc or --without-dbmalloc was given.
36479@@ -19995,7 +20088,7 @@
36480 else
36481   with_dbmalloc=
36482 fi;
36483-echo "$as_me:19998: result: ${with_dbmalloc:-no}" >&5
36484+echo "$as_me:20091: result: ${with_dbmalloc:-no}" >&5
36485 echo "${ECHO_T}${with_dbmalloc:-no}" >&6
36486
36487 case .$with_cflags in
36488@@ -20109,23 +20202,23 @@
36489 esac
36490
36491 if test "$with_dbmalloc" = yes ; then
36492-	echo "$as_me:20112: checking for dbmalloc.h" >&5
36493+	echo "$as_me:20205: checking for dbmalloc.h" >&5
36494 echo $ECHO_N "checking for dbmalloc.h... $ECHO_C" >&6
36495 if test "${ac_cv_header_dbmalloc_h+set}" = set; then
36496   echo $ECHO_N "(cached) $ECHO_C" >&6
36497 else
36498   cat >conftest.$ac_ext <<_ACEOF
36499-#line 20118 "configure"
36500+#line 20211 "configure"
36501 #include "confdefs.h"
36502 #include <dbmalloc.h>
36503 _ACEOF
36504-if { (eval echo "$as_me:20122: \"$ac_cpp conftest.$ac_ext\"") >&5
36505+if { (eval echo "$as_me:20215: \"$ac_cpp conftest.$ac_ext\"") >&5
36506   (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
36507   ac_status=$?
36508   egrep -v '^ *\+' conftest.er1 >conftest.err
36509   rm -f conftest.er1
36510   cat conftest.err >&5
36511-  echo "$as_me:20128: \$? = $ac_status" >&5
36512+  echo "$as_me:20221: \$? = $ac_status" >&5
36513   (exit $ac_status); } >/dev/null; then
36514   if test -s conftest.err; then
36515     ac_cpp_err=$ac_c_preproc_warn_flag
36516@@ -20144,11 +20237,11 @@
36517 fi
36518 rm -f conftest.err conftest.$ac_ext
36519 fi
36520-echo "$as_me:20147: result: $ac_cv_header_dbmalloc_h" >&5
36521+echo "$as_me:20240: result: $ac_cv_header_dbmalloc_h" >&5
36522 echo "${ECHO_T}$ac_cv_header_dbmalloc_h" >&6
36523 if test $ac_cv_header_dbmalloc_h = yes; then
36524
36525-echo "$as_me:20151: checking for debug_malloc in -ldbmalloc" >&5
36526+echo "$as_me:20244: checking for debug_malloc in -ldbmalloc" >&5
36527 echo $ECHO_N "checking for debug_malloc in -ldbmalloc... $ECHO_C" >&6
36528 if test "${ac_cv_lib_dbmalloc_debug_malloc+set}" = set; then
36529   echo $ECHO_N "(cached) $ECHO_C" >&6
36530@@ -20156,7 +20249,7 @@
36531   ac_check_lib_save_LIBS=$LIBS
36532 LIBS="-ldbmalloc  $LIBS"
36533 cat >conftest.$ac_ext <<_ACEOF
36534-#line 20159 "configure"
36535+#line 20252 "configure"
36536 #include "confdefs.h"
36537
36538 /* Override any gcc2 internal prototype to avoid an error.  */
36539@@ -20175,16 +20268,16 @@
36540 }
36541 _ACEOF
36542 rm -f conftest.$ac_objext conftest$ac_exeext
36543-if { (eval echo "$as_me:20178: \"$ac_link\"") >&5
36544+if { (eval echo "$as_me:20271: \"$ac_link\"") >&5
36545   (eval $ac_link) 2>&5
36546   ac_status=$?
36547-  echo "$as_me:20181: \$? = $ac_status" >&5
36548+  echo "$as_me:20274: \$? = $ac_status" >&5
36549   (exit $ac_status); } &&
36550          { ac_try='test -s conftest$ac_exeext'
36551-  { (eval echo "$as_me:20184: \"$ac_try\"") >&5
36552+  { (eval echo "$as_me:20277: \"$ac_try\"") >&5
36553   (eval $ac_try) 2>&5
36554   ac_status=$?
36555-  echo "$as_me:20187: \$? = $ac_status" >&5
36556+  echo "$as_me:20280: \$? = $ac_status" >&5
36557   (exit $ac_status); }; }; then
36558   ac_cv_lib_dbmalloc_debug_malloc=yes
36559 else
36560@@ -20195,7 +20288,7 @@
36561 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
36562 LIBS=$ac_check_lib_save_LIBS
36563 fi
36564-echo "$as_me:20198: result: $ac_cv_lib_dbmalloc_debug_malloc" >&5
36565+echo "$as_me:20291: result: $ac_cv_lib_dbmalloc_debug_malloc" >&5
36566 echo "${ECHO_T}$ac_cv_lib_dbmalloc_debug_malloc" >&6
36567 if test $ac_cv_lib_dbmalloc_debug_malloc = yes; then
36568   cat >>confdefs.h <<EOF
36569@@ -20210,7 +20303,7 @@
36570
36571 fi
36572
36573-echo "$as_me:20213: checking if you want to use valgrind for testing" >&5
36574+echo "$as_me:20306: checking if you want to use valgrind for testing" >&5
36575 echo $ECHO_N "checking if you want to use valgrind for testing... $ECHO_C" >&6
36576
36577 # Check whether --with-valgrind or --without-valgrind was given.
36578@@ -20227,7 +20320,7 @@
36579 else
36580   with_valgrind=
36581 fi;
36582-echo "$as_me:20230: result: ${with_valgrind:-no}" >&5
36583+echo "$as_me:20323: result: ${with_valgrind:-no}" >&5
36584 echo "${ECHO_T}${with_valgrind:-no}" >&6
36585
36586 case .$with_cflags in
36587@@ -20340,7 +20433,7 @@
36588 	;;
36589 esac
36590
36591-echo "$as_me:20343: checking if you want to perform memory-leak testing" >&5
36592+echo "$as_me:20436: checking if you want to perform memory-leak testing" >&5
36593 echo $ECHO_N "checking if you want to perform memory-leak testing... $ECHO_C" >&6
36594
36595 # Check whether --enable-leaks or --disable-leaks was given.
36596@@ -20350,7 +20443,7 @@
36597 else
36598   : ${with_no_leaks:=no}
36599 fi;
36600-echo "$as_me:20353: result: $with_no_leaks" >&5
36601+echo "$as_me:20446: result: $with_no_leaks" >&5
36602 echo "${ECHO_T}$with_no_leaks" >&6
36603
36604 if test "$with_no_leaks" = yes ; then
36605@@ -20368,7 +20461,7 @@
36606 LD_RPATH_OPT=
36607 if test "x$cf_cv_enable_rpath" != xno
36608 then
36609-	echo "$as_me:20371: checking for an rpath option" >&5
36610+	echo "$as_me:20464: checking for an rpath option" >&5
36611 echo $ECHO_N "checking for an rpath option... $ECHO_C" >&6
36612 	case $cf_cv_system_name in
36613 	(irix*)
36614@@ -20399,12 +20492,12 @@
36615 	(*)
36616 		;;
36617 	esac
36618-	echo "$as_me:20402: result: $LD_RPATH_OPT" >&5
36619+	echo "$as_me:20495: result: $LD_RPATH_OPT" >&5
36620 echo "${ECHO_T}$LD_RPATH_OPT" >&6
36621
36622 	case "x$LD_RPATH_OPT" in
36623 	(x-R*)
36624-		echo "$as_me:20407: checking if we need a space after rpath option" >&5
36625+		echo "$as_me:20500: checking if we need a space after rpath option" >&5
36626 echo $ECHO_N "checking if we need a space after rpath option... $ECHO_C" >&6
36627 		cf_save_LIBS="$LIBS"
36628
36629@@ -20425,7 +20518,7 @@
36630 LIBS="$cf_add_libs"
36631
36632 		cat >conftest.$ac_ext <<_ACEOF
36633-#line 20428 "configure"
36634+#line 20521 "configure"
36635 #include "confdefs.h"
36636
36637 int
36638@@ -20437,16 +20530,16 @@
36639 }
36640 _ACEOF
36641 rm -f conftest.$ac_objext conftest$ac_exeext
36642-if { (eval echo "$as_me:20440: \"$ac_link\"") >&5
36643+if { (eval echo "$as_me:20533: \"$ac_link\"") >&5
36644   (eval $ac_link) 2>&5
36645   ac_status=$?
36646-  echo "$as_me:20443: \$? = $ac_status" >&5
36647+  echo "$as_me:20536: \$? = $ac_status" >&5
36648   (exit $ac_status); } &&
36649          { ac_try='test -s conftest$ac_exeext'
36650-  { (eval echo "$as_me:20446: \"$ac_try\"") >&5
36651+  { (eval echo "$as_me:20539: \"$ac_try\"") >&5
36652   (eval $ac_try) 2>&5
36653   ac_status=$?
36654-  echo "$as_me:20449: \$? = $ac_status" >&5
36655+  echo "$as_me:20542: \$? = $ac_status" >&5
36656   (exit $ac_status); }; }; then
36657   cf_rpath_space=no
36658 else
36659@@ -20456,14 +20549,14 @@
36660 fi
36661 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
36662 		LIBS="$cf_save_LIBS"
36663-		echo "$as_me:20459: result: $cf_rpath_space" >&5
36664+		echo "$as_me:20552: result: $cf_rpath_space" >&5
36665 echo "${ECHO_T}$cf_rpath_space" >&6
36666 		test "$cf_rpath_space" = yes && LD_RPATH_OPT="$LD_RPATH_OPT "
36667 		;;
36668 	esac
36669 fi
36670
36671-echo "$as_me:20466: checking if rpath-hack should be disabled" >&5
36672+echo "$as_me:20559: checking if rpath-hack should be disabled" >&5
36673 echo $ECHO_N "checking if rpath-hack should be disabled... $ECHO_C" >&6
36674
36675 # Check whether --enable-rpath-hack or --disable-rpath-hack was given.
36676@@ -20480,21 +20573,21 @@
36677 	cf_disable_rpath_hack=no
36678
36679 fi;
36680-echo "$as_me:20483: result: $cf_disable_rpath_hack" >&5
36681+echo "$as_me:20576: result: $cf_disable_rpath_hack" >&5
36682 echo "${ECHO_T}$cf_disable_rpath_hack" >&6
36683 if test "$cf_disable_rpath_hack" = no ; then
36684
36685-echo "$as_me:20487: checking for updated LDFLAGS" >&5
36686+echo "$as_me:20580: checking for updated LDFLAGS" >&5
36687 echo $ECHO_N "checking for updated LDFLAGS... $ECHO_C" >&6
36688 if test -n "$LD_RPATH_OPT" ; then
36689-	echo "$as_me:20490: result: maybe" >&5
36690+	echo "$as_me:20583: result: maybe" >&5
36691 echo "${ECHO_T}maybe" >&6
36692
36693 	for ac_prog in ldd
36694 do
36695   # Extract the first word of "$ac_prog", so it can be a program name with args.
36696 set dummy $ac_prog; ac_word=$2
36697-echo "$as_me:20497: checking for $ac_word" >&5
36698+echo "$as_me:20590: checking for $ac_word" >&5
36699 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
36700 if test "${ac_cv_prog_cf_ldd_prog+set}" = set; then
36701   echo $ECHO_N "(cached) $ECHO_C" >&6
36702@@ -20509,7 +20602,7 @@
36703   test -z "$ac_dir" && ac_dir=.
36704   $as_executable_p "$ac_dir/$ac_word" || continue
36705 ac_cv_prog_cf_ldd_prog="$ac_prog"
36706-echo "$as_me:20512: found $ac_dir/$ac_word" >&5
36707+echo "$as_me:20605: found $ac_dir/$ac_word" >&5
36708 break
36709 done
36710
36711@@ -20517,10 +20610,10 @@
36712 fi
36713 cf_ldd_prog=$ac_cv_prog_cf_ldd_prog
36714 if test -n "$cf_ldd_prog"; then
36715-  echo "$as_me:20520: result: $cf_ldd_prog" >&5
36716+  echo "$as_me:20613: result: $cf_ldd_prog" >&5
36717 echo "${ECHO_T}$cf_ldd_prog" >&6
36718 else
36719-  echo "$as_me:20523: result: no" >&5
36720+  echo "$as_me:20616: result: no" >&5
36721 echo "${ECHO_T}no" >&6
36722 fi
36723
36724@@ -20534,7 +20627,7 @@
36725 		cf_rpath_oops=
36726
36727 cat >conftest.$ac_ext <<_ACEOF
36728-#line 20537 "configure"
36729+#line 20630 "configure"
36730 #include "confdefs.h"
36731 #include <stdio.h>
36732 int
36733@@ -20546,16 +20639,16 @@
36734 }
36735 _ACEOF
36736 rm -f conftest.$ac_objext conftest$ac_exeext
36737-if { (eval echo "$as_me:20549: \"$ac_link\"") >&5
36738+if { (eval echo "$as_me:20642: \"$ac_link\"") >&5
36739   (eval $ac_link) 2>&5
36740   ac_status=$?
36741-  echo "$as_me:20552: \$? = $ac_status" >&5
36742+  echo "$as_me:20645: \$? = $ac_status" >&5
36743   (exit $ac_status); } &&
36744          { ac_try='test -s conftest$ac_exeext'
36745-  { (eval echo "$as_me:20555: \"$ac_try\"") >&5
36746+  { (eval echo "$as_me:20648: \"$ac_try\"") >&5
36747   (eval $ac_try) 2>&5
36748   ac_status=$?
36749-  echo "$as_me:20558: \$? = $ac_status" >&5
36750+  echo "$as_me:20651: \$? = $ac_status" >&5
36751   (exit $ac_status); }; }; then
36752   cf_rpath_oops=`$cf_ldd_prog conftest$ac_exeext | fgrep ' not found' | sed -e 's% =>.*$%%' |sort | uniq`
36753 		 cf_rpath_list=`$cf_ldd_prog conftest$ac_exeext | fgrep / | sed -e 's%^.*[ 	]/%/%' -e 's%/[^/][^/]*$%%' |sort | uniq`
36754@@ -20583,7 +20676,7 @@
36755 					then
36756 						test -n "$verbose" && echo "	...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src" 1>&6
36757
36758-echo "${as_me:-configure}:20586: testing ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src ..." 1>&5
36759+echo "${as_me:-configure}:20679: testing ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src ..." 1>&5
36760
36761 						LDFLAGS="$LDFLAGS -L$cf_rpath_dir/lib"
36762 						break
36763@@ -20595,11 +20688,11 @@
36764
36765 	test -n "$verbose" && echo "	...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS" 1>&6
36766
36767-echo "${as_me:-configure}:20598: testing ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5
36768+echo "${as_me:-configure}:20691: testing ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5
36769
36770 test -n "$verbose" && echo "	...checking LDFLAGS $LDFLAGS" 1>&6
36771
36772-echo "${as_me:-configure}:20602: testing ...checking LDFLAGS $LDFLAGS ..." 1>&5
36773+echo "${as_me:-configure}:20695: testing ...checking LDFLAGS $LDFLAGS ..." 1>&5
36774
36775 cf_rpath_dst=
36776 for cf_rpath_src in $LDFLAGS
36777@@ -20636,7 +20729,7 @@
36778 			then
36779 				test -n "$verbose" && echo "	...Filter $cf_rpath_src ->$cf_rpath_tmp" 1>&6
36780
36781-echo "${as_me:-configure}:20639: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5
36782+echo "${as_me:-configure}:20732: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5
36783
36784 				EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS"
36785 			fi
36786@@ -20649,11 +20742,11 @@
36787
36788 test -n "$verbose" && echo "	...checked LDFLAGS $LDFLAGS" 1>&6
36789
36790-echo "${as_me:-configure}:20652: testing ...checked LDFLAGS $LDFLAGS ..." 1>&5
36791+echo "${as_me:-configure}:20745: testing ...checked LDFLAGS $LDFLAGS ..." 1>&5
36792
36793 test -n "$verbose" && echo "	...checking LIBS $LIBS" 1>&6
36794
36795-echo "${as_me:-configure}:20656: testing ...checking LIBS $LIBS ..." 1>&5
36796+echo "${as_me:-configure}:20749: testing ...checking LIBS $LIBS ..." 1>&5
36797
36798 cf_rpath_dst=
36799 for cf_rpath_src in $LIBS
36800@@ -20690,7 +20783,7 @@
36801 			then
36802 				test -n "$verbose" && echo "	...Filter $cf_rpath_src ->$cf_rpath_tmp" 1>&6
36803
36804-echo "${as_me:-configure}:20693: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5
36805+echo "${as_me:-configure}:20786: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5
36806
36807 				EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS"
36808 			fi
36809@@ -20703,14 +20796,14 @@
36810
36811 test -n "$verbose" && echo "	...checked LIBS $LIBS" 1>&6
36812
36813-echo "${as_me:-configure}:20706: testing ...checked LIBS $LIBS ..." 1>&5
36814+echo "${as_me:-configure}:20799: testing ...checked LIBS $LIBS ..." 1>&5
36815
36816 	test -n "$verbose" && echo "	...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS" 1>&6
36817
36818-echo "${as_me:-configure}:20710: testing ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5
36819+echo "${as_me:-configure}:20803: testing ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5
36820
36821 else
36822-	echo "$as_me:20713: result: no" >&5
36823+	echo "$as_me:20806: result: no" >&5
36824 echo "${ECHO_T}no" >&6
36825 fi
36826
36827@@ -20800,7 +20893,7 @@
36828 : ${CONFIG_STATUS=./config.status}
36829 ac_clean_files_save=$ac_clean_files
36830 ac_clean_files="$ac_clean_files $CONFIG_STATUS"
36831-{ echo "$as_me:20803: creating $CONFIG_STATUS" >&5
36832+{ echo "$as_me:20896: creating $CONFIG_STATUS" >&5
36833 echo "$as_me: creating $CONFIG_STATUS" >&6;}
36834 cat >$CONFIG_STATUS <<_ACEOF
36835 #! $SHELL
36836@@ -20932,7 +21025,7 @@
36837 cat >>$CONFIG_STATUS <<EOF
36838 ac_cs_version="\\
36839 config.status
36840-configured by $0, generated by GNU Autoconf 2.52.20190828,
36841+configured by $0, generated by GNU Autoconf 2.52.20190901,
36842   with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
36843
36844 Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001
36845@@ -20976,7 +21069,7 @@
36846     echo "$ac_cs_version"; exit 0 ;;
36847   --he | --h)
36848     # Conflict between --help and --header
36849-    { { echo "$as_me:20979: error: ambiguous option: $1
36850+    { { echo "$as_me:21072: error: ambiguous option: $1
36851 Try \`$0 --help' for more information." >&5
36852 echo "$as_me: error: ambiguous option: $1
36853 Try \`$0 --help' for more information." >&2;}
36854@@ -20995,7 +21088,7 @@
36855     ac_need_defaults=false;;
36856
36857   # This is an error.
36858-  -*) { { echo "$as_me:20998: error: unrecognized option: $1
36859+  -*) { { echo "$as_me:21091: error: unrecognized option: $1
36860 Try \`$0 --help' for more information." >&5
36861 echo "$as_me: error: unrecognized option: $1
36862 Try \`$0 --help' for more information." >&2;}
36863@@ -21014,7 +21107,7 @@
36864 ## Running config.status.  ##
36865 ## ----------------------- ##
36866
36867-This file was extended by $as_me 2.52.20190828, executed with
36868+This file was extended by $as_me 2.52.20190901, executed with
36869   CONFIG_FILES    = $CONFIG_FILES
36870   CONFIG_HEADERS  = $CONFIG_HEADERS
36871   CONFIG_LINKS    = $CONFIG_LINKS
36872@@ -21045,7 +21138,7 @@
36873   "Makefile" ) CONFIG_FILES="$CONFIG_FILES Makefile" ;;
36874   "default" ) CONFIG_COMMANDS="$CONFIG_COMMANDS default" ;;
36875   "ncurses_cfg.h" ) CONFIG_HEADERS="$CONFIG_HEADERS ncurses_cfg.h:ncurses_tst.hin" ;;
36876-  *) { { echo "$as_me:21048: error: invalid argument: $ac_config_target" >&5
36877+  *) { { echo "$as_me:21141: error: invalid argument: $ac_config_target" >&5
36878 echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
36879    { (exit 1); exit 1; }; };;
36880   esac
36881@@ -21341,7 +21434,7 @@
36882   esac
36883
36884   if test x"$ac_file" != x-; then
36885-    { echo "$as_me:21344: creating $ac_file" >&5
36886+    { echo "$as_me:21437: creating $ac_file" >&5
36887 echo "$as_me: creating $ac_file" >&6;}
36888     rm -f "$ac_file"
36889   fi
36890@@ -21359,7 +21452,7 @@
36891       -) echo $tmp/stdin ;;
36892       [\\/$]*)
36893          # Absolute (can't be DOS-style, as IFS=:)
36894-         test -f "$f" || { { echo "$as_me:21362: error: cannot find input file: $f" >&5
36895+         test -f "$f" || { { echo "$as_me:21455: error: cannot find input file: $f" >&5
36896 echo "$as_me: error: cannot find input file: $f" >&2;}
36897    { (exit 1); exit 1; }; }
36898          echo $f;;
36899@@ -21372,7 +21465,7 @@
36900            echo $srcdir/$f
36901          else
36902            # /dev/null tree
36903-           { { echo "$as_me:21375: error: cannot find input file: $f" >&5
36904+           { { echo "$as_me:21468: error: cannot find input file: $f" >&5
36905 echo "$as_me: error: cannot find input file: $f" >&2;}
36906    { (exit 1); exit 1; }; }
36907          fi;;
36908@@ -21388,7 +21481,7 @@
36909       if test -n "$ac_seen"; then
36910         ac_used=`grep '@datarootdir@' $ac_item`
36911         if test -z "$ac_used"; then
36912-          { echo "$as_me:21391: WARNING: datarootdir was used implicitly but not set:
36913+          { echo "$as_me:21484: WARNING: datarootdir was used implicitly but not set:
36914 $ac_seen" >&5
36915 echo "$as_me: WARNING: datarootdir was used implicitly but not set:
36916 $ac_seen" >&2;}
36917@@ -21397,7 +21490,7 @@
36918       fi
36919       ac_seen=`grep '${datarootdir}' $ac_item`
36920       if test -n "$ac_seen"; then
36921-        { echo "$as_me:21400: WARNING: datarootdir was used explicitly but not set:
36922+        { echo "$as_me:21493: WARNING: datarootdir was used explicitly but not set:
36923 $ac_seen" >&5
36924 echo "$as_me: WARNING: datarootdir was used explicitly but not set:
36925 $ac_seen" >&2;}
36926@@ -21434,7 +21527,7 @@
36927             ac_init=`egrep '[ 	]*'$ac_name'[ 	]*=' $ac_file`
36928             if test -z "$ac_init"; then
36929               ac_seen=`echo "$ac_seen" |sed -e 's,^,'$ac_file':,'`
36930-              { echo "$as_me:21437: WARNING: Variable $ac_name is used but was not set:
36931+              { echo "$as_me:21530: WARNING: Variable $ac_name is used but was not set:
36932 $ac_seen" >&5
36933 echo "$as_me: WARNING: Variable $ac_name is used but was not set:
36934 $ac_seen" >&2;}
36935@@ -21445,7 +21538,7 @@
36936     egrep -n '@[A-Z_][A-Z_0-9]+@' $ac_file >>$tmp/out
36937     if test -s $tmp/out; then
36938       ac_seen=`sed -e 's,^,'$ac_file':,' < $tmp/out`
36939-      { echo "$as_me:21448: WARNING: Some variables may not be substituted:
36940+      { echo "$as_me:21541: WARNING: Some variables may not be substituted:
36941 $ac_seen" >&5
36942 echo "$as_me: WARNING: Some variables may not be substituted:
36943 $ac_seen" >&2;}
36944@@ -21494,7 +21587,7 @@
36945   * )   ac_file_in=$ac_file.in ;;
36946   esac
36947
36948-  test x"$ac_file" != x- && { echo "$as_me:21497: creating $ac_file" >&5
36949+  test x"$ac_file" != x- && { echo "$as_me:21590: creating $ac_file" >&5
36950 echo "$as_me: creating $ac_file" >&6;}
36951
36952   # First look for the input files in the build tree, otherwise in the
36953@@ -21505,7 +21598,7 @@
36954       -) echo $tmp/stdin ;;
36955       [\\/$]*)
36956          # Absolute (can't be DOS-style, as IFS=:)
36957-         test -f "$f" || { { echo "$as_me:21508: error: cannot find input file: $f" >&5
36958+         test -f "$f" || { { echo "$as_me:21601: error: cannot find input file: $f" >&5
36959 echo "$as_me: error: cannot find input file: $f" >&2;}
36960    { (exit 1); exit 1; }; }
36961          echo $f;;
36962@@ -21518,7 +21611,7 @@
36963            echo $srcdir/$f
36964          else
36965            # /dev/null tree
36966-           { { echo "$as_me:21521: error: cannot find input file: $f" >&5
36967+           { { echo "$as_me:21614: error: cannot find input file: $f" >&5
36968 echo "$as_me: error: cannot find input file: $f" >&2;}
36969    { (exit 1); exit 1; }; }
36970          fi;;
36971@@ -21576,7 +21669,7 @@
36972   rm -f $tmp/in
36973   if test x"$ac_file" != x-; then
36974     if cmp -s $ac_file $tmp/config.h 2>/dev/null; then
36975-      { echo "$as_me:21579: $ac_file is unchanged" >&5
36976+      { echo "$as_me:21672: $ac_file is unchanged" >&5
36977 echo "$as_me: $ac_file is unchanged" >&6;}
36978     else
36979       ac_dir=`$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
36980Index: test/demo_panels.c
36981Prereq:  1.43
36982--- ncurses-6.1-20190831+/test/demo_panels.c	2019-08-31 23:24:11.000000000 +0000
36983+++ ncurses-6.1-20190907/test/demo_panels.c	2019-08-31 23:24:11.000000000 +0000
36984@@ -26,7 +26,7 @@
36985  * authorization.                                                           *
36986  ****************************************************************************/
36987 /*
36988- * $Id: demo_panels.c,v 1.43 2019/08/24 23:11:01 tom Exp $
36989+ * $Id: demo_panels.c,v 1.44 2019/08/31 23:24:11 tom Exp $
36990  *
36991  * Demonstrate a variety of functions from the panel library.
36992  */
36993Index: test/ncurses.c
36994Prereq:  1.517
36995--- ncurses-6.1-20190831+/test/ncurses.c	2019-08-31 23:22:40.000000000 +0000
36996+++ ncurses-6.1-20190907/test/ncurses.c	2019-08-31 23:22:40.000000000 +0000
36997@@ -40,7 +40,7 @@
36998    Author: Eric S. Raymond <esr@snark.thyrsus.com> 1993
36999            Thomas E. Dickey (beginning revision 1.27 in 1996).
37000
37001-$Id: ncurses.c,v 1.517 2019/08/24 23:09:03 tom Exp $
37002+$Id: ncurses.c,v 1.518 2019/08/31 23:22:40 tom Exp $
37003
37004 ***************************************************************************/
37005
37006