about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--CHANGES8
-rw-r--r--aclocal.m46
-rwxr-xr-xconfig.guess53
-rwxr-xr-xconfig.sub211
-rwxr-xr-xconfigure2645
-rw-r--r--po/ro.po3401
6 files changed, 3440 insertions, 2884 deletions
diff --git a/CHANGES b/CHANGES
index 9fa2cd9c..b39b1b79 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,9 +1,9 @@
--- $LynxId: CHANGES,v 1.1138 2023/07/30 19:11:11 tom Exp $
+-- $LynxId: CHANGES,v 1.1140 2023/10/01 10:57:43 tom Exp $
 ===============================================================================
 Changes since Lynx 2.8 release
 ===============================================================================
 
-2023-07-30 (2.9.0dev.13)
+2023-10-02 (2.9.0dev.13)
 * fix for decoding utf-8 in CDATA sections (patch by Hiltjo Posthuma)
 * treat HTTP 308 permanently redirected the same as HTTP 301 permanently moved
   (Debian #1041686).
@@ -16,7 +16,9 @@ Changes since Lynx 2.8 release
   the struct addrinfo's (Redhat #2185402) -TD
 * modify configure script to reduce implicit-function warnings -TD
 * add viewport meta-tag to documentation/test files -TD
-* update config.guess (2023-01-01), config.sub (2023-01-21)
+* update config.guess (2023-08-22), config.sub (2023-09-15)
+* update ro.po from
+    http://translationproject.org/latest/lynx
 
 2023-01-08 (2.9.0dev.12)
 * add a rewind() call before reading existing bookmark file opened for append
diff --git a/aclocal.m4 b/aclocal.m4
index 44174777..585e5f8b 100644
--- a/aclocal.m4
+++ b/aclocal.m4
@@ -1,4 +1,4 @@
-dnl $LynxId: aclocal.m4,v 1.323 2023/04/03 08:19:37 tom Exp $
+dnl $LynxId: aclocal.m4,v 1.324 2023/09/06 22:55:27 tom Exp $
 dnl Macros for auto-configure script.
 dnl by Thomas E. Dickey <dickey@invisible-island.net>
 dnl and Jim Spath <jspath@mail.bcpl.lib.md.us>
@@ -7511,7 +7511,7 @@ esac
 
 ])dnl
 dnl ---------------------------------------------------------------------------
-dnl CF_XOPEN_SOURCE version: 66 updated: 2023/04/03 04:19:37
+dnl CF_XOPEN_SOURCE version: 67 updated: 2023/09/06 18:55:27
 dnl ---------------
 dnl Try to get _XOPEN_SOURCE defined properly that we can use POSIX functions,
 dnl or adapt to the vendor's definitions to get equivalent functionality,
@@ -7571,7 +7571,7 @@ case "$host_os" in
 	cf_xopen_source="-D_SGI_SOURCE"
 	cf_XOPEN_SOURCE=
 	;;
-(linux*gnu|linux*gnuabi64|linux*gnuabin32|linux*gnueabi|linux*gnueabihf|linux*gnux32|uclinux*|gnu*|mint*|k*bsd*-gnu|cygwin|msys|mingw*)
+(linux*gnu|linux*gnuabi64|linux*gnuabin32|linux*gnueabi|linux*gnueabihf|linux*gnux32|uclinux*|gnu*|mint*|k*bsd*-gnu|cygwin|msys|mingw*|linux*uclibc)
 	CF_GNU_SOURCE($cf_XOPEN_SOURCE)
 	;;
 (minix*)
diff --git a/config.guess b/config.guess
index 69188da7..cdfc4392 100755
--- a/config.guess
+++ b/config.guess
@@ -4,7 +4,7 @@
 
 # shellcheck disable=SC2006,SC2268 # see below for rationale
 
-timestamp='2023-01-01'
+timestamp='2023-08-22'
 
 # This file is free software; you can redistribute it and/or modify it
 # under the terms of the GNU General Public License as published by
@@ -47,7 +47,7 @@ me=`echo "$0" | sed -e 's,.*/,,'`
 usage="\
 Usage: $0 [OPTION]
 
-Output the configuration name of the system \`$me' is run on.
+Output the configuration name of the system '$me' is run on.
 
 Options:
   -h, --help         print this help, then exit
@@ -66,7 +66,7 @@ This is free software; see the source for copying conditions.  There is NO
 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
 
 help="
-Try \`$me --help' for more information."
+Try '$me --help' for more information."
 
 # Parse command line
 while test $# -gt 0 ; do
@@ -102,8 +102,8 @@ GUESS=
 # temporary files to be created and, as you can see below, it is a
 # headache to deal with in a portable fashion.
 
-# Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still
-# use `HOST_CC' if defined, but it is deprecated.
+# Historically, 'CC_FOR_BUILD' used to be named 'HOST_CC'. We still
+# use 'HOST_CC' if defined, but it is deprecated.
 
 # Portable tmp directory creation inspired by the Autoconf team.
 
@@ -155,6 +155,9 @@ Linux|GNU|GNU/*)
 
 	set_cc_for_build
 	cat <<-EOF > "$dummy.c"
+	#if defined(__ANDROID__)
+	LIBC=android
+	#else
 	#include <features.h>
 	#if defined(__UCLIBC__)
 	LIBC=uclibc
@@ -169,6 +172,7 @@ Linux|GNU|GNU/*)
 	LIBC=musl
 	#endif
 	#endif
+	#endif
 	EOF
 	cc_set_libc=`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^LIBC' | sed 's, ,,g'`
 	eval "$cc_set_libc"
@@ -459,7 +463,7 @@ case $UNAME_MACHINE:$UNAME_SYSTEM:$UNAME_RELEASE:$UNAME_VERSION in
 		UNAME_RELEASE=`uname -v`
 		;;
 	esac
-	# Japanese Language versions have a version number like `4.1.3-JL'.
+	# Japanese Language versions have a version number like '4.1.3-JL'.
 	SUN_REL=`echo "$UNAME_RELEASE" | sed -e 's/-/_/'`
 	GUESS=sparc-sun-sunos$SUN_REL
 	;;
@@ -904,7 +908,7 @@ EOF
 	fi
 	;;
     *:FreeBSD:*:*)
-	UNAME_PROCESSOR=`/usr/bin/uname -p`
+	UNAME_PROCESSOR=`uname -p`
 	case $UNAME_PROCESSOR in
 	    amd64)
 		UNAME_PROCESSOR=x86_64 ;;
@@ -976,7 +980,27 @@ EOF
 	GUESS=$UNAME_MACHINE-unknown-minix
 	;;
     aarch64:Linux:*:*)
-	GUESS=$UNAME_MACHINE-unknown-linux-$LIBC
+	set_cc_for_build
+	CPU=$UNAME_MACHINE
+	LIBCABI=$LIBC
+	if test "$CC_FOR_BUILD" != no_compiler_found; then
+	    ABI=64
+	    sed 's/^	    //' << EOF > "$dummy.c"
+	    #ifdef __ARM_EABI__
+	    #ifdef __ARM_PCS_VFP
+	    ABI=eabihf
+	    #else
+	    ABI=eabi
+	    #endif
+	    #endif
+EOF
+	    cc_set_abi=`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^ABI' | sed 's, ,,g'`
+	    eval "$cc_set_abi"
+	    case $ABI in
+		eabi | eabihf) CPU=armv8l; LIBCABI=$LIBC$ABI ;;
+	    esac
+	fi
+	GUESS=$CPU-unknown-linux-$LIBCABI
 	;;
     aarch64_be:Linux:*:*)
 	UNAME_MACHINE=aarch64_be
@@ -1042,6 +1066,15 @@ EOF
     k1om:Linux:*:*)
 	GUESS=$UNAME_MACHINE-unknown-linux-$LIBC
 	;;
+    kvx:Linux:*:*)
+	GUESS=$UNAME_MACHINE-unknown-linux-$LIBC
+	;;
+    kvx:cos:*:*)
+	GUESS=$UNAME_MACHINE-unknown-cos
+	;;
+    kvx:mbr:*:*)
+	GUESS=$UNAME_MACHINE-unknown-mbr
+	;;
     loongarch32:Linux:*:* | loongarch64:Linux:*:*)
 	GUESS=$UNAME_MACHINE-unknown-linux-$LIBC
 	;;
@@ -1197,7 +1230,7 @@ EOF
 	GUESS=$UNAME_MACHINE-pc-sysv4.2uw$UNAME_VERSION
 	;;
     i*86:OS/2:*:*)
-	# If we were able to find `uname', then EMX Unix compatibility
+	# If we were able to find 'uname', then EMX Unix compatibility
 	# is probably installed.
 	GUESS=$UNAME_MACHINE-pc-os2-emx
 	;;
@@ -1338,7 +1371,7 @@ EOF
 		GUESS=ns32k-sni-sysv
 	fi
 	;;
-    PENTIUM:*:4.0*:*)	# Unisys `ClearPath HMP IX 4000' SVR4/MP effort
+    PENTIUM:*:4.0*:*)	# Unisys 'ClearPath HMP IX 4000' SVR4/MP effort
 			# says <Richard.M.Bartel@ccMail.Census.GOV>
 	GUESS=i586-unisys-sysv4
 	;;
diff --git a/config.sub b/config.sub
index de4259e4..51394d32 100755
--- a/config.sub
+++ b/config.sub
@@ -4,7 +4,7 @@
 
 # shellcheck disable=SC2006,SC2268 # see below for rationale
 
-timestamp='2023-01-21'
+timestamp='2023-09-15'
 
 # This file is free software; you can redistribute it and/or modify it
 # under the terms of the GNU General Public License as published by
@@ -82,7 +82,7 @@ This is free software; see the source for copying conditions.  There is NO
 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
 
 help="
-Try \`$me --help' for more information."
+Try '$me --help' for more information."
 
 # Parse command line
 while test $# -gt 0 ; do
@@ -130,7 +130,7 @@ IFS=$saved_IFS
 # Separate into logical components for further validation
 case $1 in
 	*-*-*-*-*)
-		echo Invalid configuration \`"$1"\': more than four components >&2
+		echo "Invalid configuration '$1': more than four components" >&2
 		exit 1
 		;;
 	*-*-*-*)
@@ -145,7 +145,8 @@ case $1 in
 			nto-qnx* | linux-* | uclinux-uclibc* \
 			| uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* \
 			| netbsd*-eabi* | kopensolaris*-gnu* | cloudabi*-eabi* \
-			| storm-chaos* | os2-emx* | rtmk-nova* | managarm-*)
+			| storm-chaos* | os2-emx* | rtmk-nova* | managarm-* \
+			| windows-* )
 				basic_machine=$field1
 				basic_os=$maybe_os
 				;;
@@ -943,7 +944,7 @@ $basic_machine
 EOF
 		IFS=$saved_IFS
 		;;
-	# We use `pc' rather than `unknown'
+	# We use 'pc' rather than 'unknown'
 	# because (1) that's what they normally are, and
 	# (2) the word "unknown" tends to confuse beginning users.
 	i*86 | x86_64)
@@ -1180,7 +1181,7 @@ case $cpu-$vendor in
 		case $cpu in
 			1750a | 580 \
 			| a29k \
-			| aarch64 | aarch64_be \
+			| aarch64 | aarch64_be | aarch64c | arm64ec \
 			| abacus \
 			| alpha | alphaev[4-8] | alphaev56 | alphaev6[78] \
 			| alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] \
@@ -1199,12 +1200,14 @@ case $cpu-$vendor in
 			| d10v | d30v | dlx | dsp16xx \
 			| e2k | elxsi | epiphany \
 			| f30[01] | f700 | fido | fr30 | frv | ft32 | fx80 \
+			| javascript \
 			| h8300 | h8500 \
 			| hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \
 			| hexagon \
 			| i370 | i*86 | i860 | i960 | ia16 | ia64 \
 			| ip2k | iq2000 \
 			| k1om \
+			| kvx \
 			| le32 | le64 \
 			| lm32 \
 			| loongarch32 | loongarch64 \
@@ -1213,31 +1216,7 @@ case $cpu-$vendor in
 			| m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x \
 			| m88110 | m88k | maxq | mb | mcore | mep | metag \
 			| microblaze | microblazeel \
-			| mips | mipsbe | mipseb | mipsel | mipsle \
-			| mips16 \
-			| mips64 | mips64eb | mips64el \
-			| mips64octeon | mips64octeonel \
-			| mips64orion | mips64orionel \
-			| mips64r5900 | mips64r5900el \
-			| mips64vr | mips64vrel \
-			| mips64vr4100 | mips64vr4100el \
-			| mips64vr4300 | mips64vr4300el \
-			| mips64vr5000 | mips64vr5000el \
-			| mips64vr5900 | mips64vr5900el \
-			| mipsisa32 | mipsisa32el \
-			| mipsisa32r2 | mipsisa32r2el \
-			| mipsisa32r3 | mipsisa32r3el \
-			| mipsisa32r5 | mipsisa32r5el \
-			| mipsisa32r6 | mipsisa32r6el \
-			| mipsisa64 | mipsisa64el \
-			| mipsisa64r2 | mipsisa64r2el \
-			| mipsisa64r3 | mipsisa64r3el \
-			| mipsisa64r5 | mipsisa64r5el \
-			| mipsisa64r6 | mipsisa64r6el \
-			| mipsisa64sb1 | mipsisa64sb1el \
-			| mipsisa64sr71k | mipsisa64sr71kel \
-			| mipsr5900 | mipsr5900el \
-			| mipstx39 | mipstx39el \
+			| mips* \
 			| mmix \
 			| mn10200 | mn10300 \
 			| moxie \
@@ -1285,7 +1264,7 @@ case $cpu-$vendor in
 				;;
 
 			*)
-				echo Invalid configuration \`"$1"\': machine \`"$cpu-$vendor"\' not recognized 1>&2
+				echo "Invalid configuration '$1': machine '$cpu-$vendor' not recognized" 1>&2
 				exit 1
 				;;
 		esac
@@ -1306,11 +1285,12 @@ esac
 
 # Decode manufacturer-specific aliases for certain operating systems.
 
-if test x$basic_os != x
+if test x"$basic_os" != x
 then
 
 # First recognize some ad-hoc cases, or perhaps split kernel-os, or else just
 # set os.
+obj=
 case $basic_os in
 	gnu/linux*)
 		kernel=linux
@@ -1510,10 +1490,16 @@ case $os in
 			os=eabi
 			;;
 		    *)
-			os=elf
+			os=
+			obj=elf
 			;;
 		esac
 		;;
+	aout* | coff* | elf* | pe*)
+		# These are machine code file formats, not OSes
+		obj=$os
+		os=
+		;;
 	*)
 		# No normalization, but not necessarily accepted, that comes below.
 		;;
@@ -1532,12 +1518,15 @@ else
 # system, and we'll never get to this point.
 
 kernel=
+obj=
 case $cpu-$vendor in
 	score-*)
-		os=elf
+		os=
+		obj=elf
 		;;
 	spu-*)
-		os=elf
+		os=
+		obj=elf
 		;;
 	*-acorn)
 		os=riscix1.2
@@ -1547,28 +1536,35 @@ case $cpu-$vendor in
 		os=gnu
 		;;
 	arm*-semi)
-		os=aout
+		os=
+		obj=aout
 		;;
 	c4x-* | tic4x-*)
-		os=coff
+		os=
+		obj=coff
 		;;
 	c8051-*)
-		os=elf
+		os=
+		obj=elf
 		;;
 	clipper-intergraph)
 		os=clix
 		;;
 	hexagon-*)
-		os=elf
+		os=
+		obj=elf
 		;;
 	tic54x-*)
-		os=coff
+		os=
+		obj=coff
 		;;
 	tic55x-*)
-		os=coff
+		os=
+		obj=coff
 		;;
 	tic6x-*)
-		os=coff
+		os=
+		obj=coff
 		;;
 	# This must come before the *-dec entry.
 	pdp10-*)
@@ -1590,19 +1586,24 @@ case $cpu-$vendor in
 		os=sunos3
 		;;
 	m68*-cisco)
-		os=aout
+		os=
+		obj=aout
 		;;
 	mep-*)
-		os=elf
+		os=
+		obj=elf
 		;;
 	mips*-cisco)
-		os=elf
+		os=
+		obj=elf
 		;;
 	mips*-*)
-		os=elf
+		os=
+		obj=elf
 		;;
 	or32-*)
-		os=coff
+		os=
+		obj=coff
 		;;
 	*-tti)	# must be before sparc entry or we get the wrong os.
 		os=sysv3
@@ -1611,7 +1612,8 @@ case $cpu-$vendor in
 		os=sunos4.1.1
 		;;
 	pru-*)
-		os=elf
+		os=
+		obj=elf
 		;;
 	*-be)
 		os=beos
@@ -1692,10 +1694,12 @@ case $cpu-$vendor in
 		os=uxpv
 		;;
 	*-rom68k)
-		os=coff
+		os=
+		obj=coff
 		;;
 	*-*bug)
-		os=coff
+		os=
+		obj=coff
 		;;
 	*-apple)
 		os=macos
@@ -1713,7 +1717,8 @@ esac
 
 fi
 
-# Now, validate our (potentially fixed-up) OS.
+# Now, validate our (potentially fixed-up) individual pieces (OS, OBJ).
+
 case $os in
 	# Sometimes we do "kernel-libc", so those need to count as OSes.
 	musl* | newlib* | relibc* | uclibc*)
@@ -1724,6 +1729,9 @@ case $os in
 	# VxWorks passes extra cpu info in the 4th filed.
 	simlinux | simwindows | spe)
 		;;
+	# See `case $cpu-$os` validation below
+	ghcjs)
+		;;
 	# Now accept the basic system types.
 	# The portable systems comes first.
 	# Each alternative MUST end in a * to match a version number.
@@ -1732,7 +1740,7 @@ case $os in
 	     | hpux* | unos* | osf* | luna* | dgux* | auroraux* | solaris* \
 	     | sym* |  plan9* | psp* | sim* | xray* | os68k* | v88r* \
 	     | hiux* | abug | nacl* | netware* | windows* \
-	     | os9* | macos* | osx* | ios* \
+	     | os9* | macos* | osx* | ios* | tvos* | watchos* \
 	     | mpw* | magic* | mmixware* | mon960* | lnews* \
 	     | amigaos* | amigados* | msdos* | newsos* | unicos* | aof* \
 	     | aos* | aros* | cloudabi* | sortix* | twizzler* \
@@ -1741,11 +1749,11 @@ case $os in
 	     | mirbsd* | netbsd* | dicos* | openedition* | ose* \
 	     | bitrig* | openbsd* | secbsd* | solidbsd* | libertybsd* | os108* \
 	     | ekkobsd* | freebsd* | riscix* | lynxos* | os400* \
-	     | bosx* | nextstep* | cxux* | aout* | elf* | oabi* \
-	     | ptx* | coff* | ecoff* | winnt* | domain* | vsta* \
+	     | bosx* | nextstep* | cxux* | oabi* \
+	     | ptx* | ecoff* | winnt* | domain* | vsta* \
 	     | udi* | lites* | ieee* | go32* | aux* | hcos* \
 	     | chorusrdb* | cegcc* | glidix* | serenity* \
-	     | cygwin* | msys* | pe* | moss* | proelf* | rtems* \
+	     | cygwin* | msys* | moss* | proelf* | rtems* \
 	     | midipix* | mingw32* | mingw64* | mint* \
 	     | uxpv* | beos* | mpeix* | udk* | moxiebox* \
 	     | interix* | uwin* | mks* | rhapsody* | darwin* \
@@ -1758,7 +1766,7 @@ case $os in
 	     | onefs* | tirtos* | phoenix* | fuchsia* | redox* | bme* \
 	     | midnightbsd* | amdhsa* | unleashed* | emscripten* | wasi* \
 	     | nsk* | powerunix* | genode* | zvmoe* | qnx* | emx* | zephyr* \
-	     | fiwix* | mlibc* )
+	     | fiwix* | mlibc* | cos* | mbr* )
 		;;
 	# This one is extra strict with allowed versions
 	sco3.2v2 | sco3.2v[4-9]* | sco5v6*)
@@ -1766,54 +1774,99 @@ case $os in
 		;;
 	none)
 		;;
-	kernel* )
+	kernel* | msvc* )
 		# Restricted further below
 		;;
+	'')
+		if test x"$obj" = x
+		then
+			echo "Invalid configuration '$1': Blank OS only allowed with explicit machine code file format" 1>&2
+		fi
+		;;
+	*)
+		echo "Invalid configuration '$1': OS '$os' not recognized" 1>&2
+		exit 1
+		;;
+esac
+
+case $obj in
+	aout* | coff* | elf* | pe*)
+		;;
+	'')
+		# empty is fine
+		;;
 	*)
-		echo Invalid configuration \`"$1"\': OS \`"$os"\' not recognized 1>&2
+		echo "Invalid configuration '$1': Machine code format '$obj' not recognized" 1>&2
+		exit 1
+		;;
+esac
+
+# Here we handle the constraint that a (synthetic) cpu and os are
+# valid only in combination with each other and nowhere else.
+case $cpu-$os in
+	# The "javascript-unknown-ghcjs" triple is used by GHC; we
+	# accept it here in order to tolerate that, but reject any
+	# variations.
+	javascript-ghcjs)
+		;;
+	javascript-* | *-ghcjs)
+		echo "Invalid configuration '$1': cpu '$cpu' is not valid with os '$os$obj'" 1>&2
 		exit 1
 		;;
 esac
 
 # As a final step for OS-related things, validate the OS-kernel combination
 # (given a valid OS), if there is a kernel.
-case $kernel-$os in
-	linux-gnu* | linux-dietlibc* | linux-android* | linux-newlib* \
-		   | linux-musl* | linux-relibc* | linux-uclibc* | linux-mlibc* )
+case $kernel-$os-$obj in
+	linux-gnu*- | linux-dietlibc*- | linux-android*- | linux-newlib*- \
+		   | linux-musl*- | linux-relibc*- | linux-uclibc*- | linux-mlibc*- )
 		;;
-	uclinux-uclibc* )
+	uclinux-uclibc*- )
 		;;
-	managarm-mlibc* | managarm-kernel* )
+	managarm-mlibc*- | managarm-kernel*- )
 		;;
-	-dietlibc* | -newlib* | -musl* | -relibc* | -uclibc* | -mlibc* )
+	windows*-gnu*- | windows*-msvc*-)
+		;;
+	-dietlibc*- | -newlib*- | -musl*- | -relibc*- | -uclibc*- | -mlibc*- )
 		# These are just libc implementations, not actual OSes, and thus
 		# require a kernel.
-		echo "Invalid configuration \`$1': libc \`$os' needs explicit kernel." 1>&2
+		echo "Invalid configuration '$1': libc '$os' needs explicit kernel." 1>&2
 		exit 1
 		;;
-	-kernel* )
-		echo "Invalid configuration \`$1': \`$os' needs explicit kernel." 1>&2
+	-kernel*- )
+		echo "Invalid configuration '$1': '$os' needs explicit kernel." 1>&2
 		exit 1
 		;;
-	*-kernel* )
-		echo "Invalid configuration \`$1': \`$kernel' does not support \`$os'." 1>&2
+	*-kernel*- )
+		echo "Invalid configuration '$1': '$kernel' does not support '$os'." 1>&2
 		exit 1
 		;;
-	kfreebsd*-gnu* | kopensolaris*-gnu*)
+	*-msvc*- )
+		echo "Invalid configuration '$1': '$os' needs 'windows'." 1>&2
+		exit 1
 		;;
-	vxworks-simlinux | vxworks-simwindows | vxworks-spe)
+	kfreebsd*-gnu*- | kopensolaris*-gnu*-)
 		;;
-	nto-qnx*)
+	vxworks-simlinux- | vxworks-simwindows- | vxworks-spe-)
 		;;
-	os2-emx)
+	nto-qnx*-)
+		;;
+	os2-emx-)
+		;;
+	*-eabi*- | *-gnueabi*-)
 		;;
-	*-eabi* | *-gnueabi*)
+	none--*)
+		# None (no kernel, i.e. freestanding / bare metal),
+		# can be paired with an machine code file format
 		;;
-	-*)
+	-*-)
 		# Blank kernel with real OS is always fine.
 		;;
-	*-*)
-		echo "Invalid configuration \`$1': Kernel \`$kernel' not known to work with OS \`$os'." 1>&2
+	--*)
+		# Blank kernel and OS with real machine code file format is always fine.
+		;;
+	*-*-*)
+		echo "Invalid configuration '$1': Kernel '$kernel' not known to work with OS '$os'." 1>&2
 		exit 1
 		;;
 esac
@@ -1896,7 +1949,7 @@ case $vendor in
 		;;
 esac
 
-echo "$cpu-$vendor-${kernel:+$kernel-}$os"
+echo "$cpu-$vendor${kernel:+-$kernel}${os:+-$os}${obj:+-$obj}"
 exit
 
 # Local variables:
diff --git a/configure b/configure
index c4e52405..a509c0bb 100755
--- a/configure
+++ b/configure
@@ -1,7 +1,7 @@
 #! /bin/sh
 # From configure.in 2.9.0dev.13.
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by Autoconf 2.52.20230114.
+# Generated by Autoconf 2.52.20230903.
 #
 # Copyright 2003-2022,2023	Thomas E. Dickey
 # Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001
@@ -898,7 +898,7 @@ This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
 It was created by $as_me, which was
-generated by GNU Autoconf 2.52.20230114.  Invocation command line was
+generated by GNU Autoconf 2.52.20230903.  Invocation command line was
 
   $ $0 $@
 
@@ -8764,12 +8764,12 @@ else
 $ac_includes_default
 /* Thanks to Mike Haertel and Jim Avera for this test.
    Here is a matrix of mmap possibilities:
-	mmap private not fixed
-	mmap private fixed at somewhere currently unmapped
-	mmap private fixed at somewhere already mapped
-	mmap shared not fixed
-	mmap shared fixed at somewhere currently unmapped
-	mmap shared fixed at somewhere already mapped
+        mmap private not fixed
+        mmap private fixed at somewhere currently unmapped
+        mmap private fixed at somewhere already mapped
+        mmap shared not fixed
+        mmap shared fixed at somewhere currently unmapped
+        mmap shared fixed at somewhere already mapped
    For private mappings, we should verify that changes cannot be read()
    back from the file, nor mmap's back from the file at a different
    address.  (There have been systems where private was not correctly
@@ -8822,7 +8822,7 @@ char *malloc ();
 #    endif /* no NBPG */
 #   endif /* no EXEC_PAGESIZE */
 #  else /* no HAVE_SYS_PARAM_H */
-#   define getpagesize() 8192	/* punt totally */
+#   define getpagesize() 8192   /* punt totally */
 #  endif /* no HAVE_SYS_PARAM_H */
 # endif /* no _SC_PAGESIZE */
 
@@ -11499,7 +11499,7 @@ case "$host_os" in
 	cf_xopen_source="-D_SGI_SOURCE"
 	cf_XOPEN_SOURCE=
 	;;
-(linux*gnu|linux*gnuabi64|linux*gnuabin32|linux*gnueabi|linux*gnueabihf|linux*gnux32|uclinux*|gnu*|mint*|k*bsd*-gnu|cygwin|msys|mingw*)
+(linux*gnu|linux*gnuabi64|linux*gnuabin32|linux*gnueabi|linux*gnueabihf|linux*gnux32|uclinux*|gnu*|mint*|k*bsd*-gnu|cygwin|msys|mingw*|linux*uclibc)
 
 cf_gnu_xopen_source=$cf_XOPEN_SOURCE
 
@@ -34180,11 +34180,7 @@ else
    static variable whose address is put into a register that is
    clobbered by the vfork.  */
 static
-#ifdef __cplusplus
 sparc_address_test (int arg)
-# else
-sparc_address_test (arg) int arg;
-#endif
 {
   static pid_t child;
   if (!child) {
@@ -34227,7 +34223,7 @@ main (void)
     /* Convince the compiler that p..p7 are live; otherwise, it might
        use the same hardware register for all 8 local variables.  */
     if (p != p1 || p != p2 || p != p3 || p != p4
-	|| p != p5 || p != p6 || p != p7)
+        || p != p5 || p != p6 || p != p7)
       _exit(1);
 
     /* On some systems (e.g. IRIX 3.3), vfork doesn't separate parent
@@ -34242,31 +34238,31 @@ main (void)
     while (wait(&status) != child)
       ;
     $ac_main_return(
-	 /* Was there some problem with vforking?  */
-	 child < 0
+         /* Was there some problem with vforking?  */
+         child < 0
 
-	 /* Did the child fail?  (This shouldn't happen.)  */
-	 || status
+         /* Did the child fail?  (This shouldn't happen.)  */
+         || status
 
-	 /* Did the vfork/compiler bug occur?  */
-	 || parent != getpid()
+         /* Did the vfork/compiler bug occur?  */
+         || parent != getpid()
 
-	 /* Did the file descriptor bug occur?  */
-	 || fstat(fileno(stdout), &st) != 0
-	 );
+         /* Did the file descriptor bug occur?  */
+         || fstat(fileno(stdout), &st) != 0
+         );
   }
 }
 _ACEOF
 rm -f "conftest$ac_exeext"
-if { (eval echo "$as_me:34261: \"$ac_link\"") >&5
+if { (eval echo "$as_me:34257: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:34264: \$? = $ac_status" >&5
+  echo "$as_me:34260: \$? = $ac_status" >&5
   (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"'
-  { (eval echo "$as_me:34266: \"$ac_try\"") >&5
+  { (eval echo "$as_me:34262: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:34269: \$? = $ac_status" >&5
+  echo "$as_me:34265: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   ac_cv_func_vfork_works=yes
 else
@@ -34278,13 +34274,13 @@ fi
 rm -f core ./core.* ./*.core "conftest$ac_exeext" "conftest.$ac_objext" "conftest.$ac_ext"
 fi
 fi
-echo "$as_me:34281: result: $ac_cv_func_vfork_works" >&5
+echo "$as_me:34277: result: $ac_cv_func_vfork_works" >&5
 echo "${ECHO_T}$ac_cv_func_vfork_works" >&6
 
 fi;
 if test "x$ac_cv_func_fork_works" = xcross; then
   ac_cv_func_vfork_works=ac_cv_func_vfork
-  { echo "$as_me:34287: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&5
+  { echo "$as_me:34283: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&5
 echo "$as_me: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&2;}
 fi
 
@@ -34309,14 +34305,14 @@ EOF
 
 fi
 
-echo "$as_me:34312: checking if we should use fcntl or ioctl" >&5
+echo "$as_me:34308: checking if we should use fcntl or ioctl" >&5
 echo $ECHO_N "checking if we should use fcntl or ioctl... $ECHO_C" >&6
 if test "${cf_cv_fionbio+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 34319 "configure"
+#line 34315 "configure"
 #include "confdefs.h"
 
 #include <sys/types.h>
@@ -34333,16 +34329,16 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:34336: \"$ac_link\"") >&5
+if { (eval echo "$as_me:34332: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:34339: \$? = $ac_status" >&5
+  echo "$as_me:34335: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:34342: \"$ac_try\"") >&5
+  { (eval echo "$as_me:34338: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:34345: \$? = $ac_status" >&5
+  echo "$as_me:34341: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_fionbio=ioctl
 else
@@ -34350,7 +34346,7 @@ else
 cat "conftest.$ac_ext" >&5
 
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 34353 "configure"
+#line 34349 "configure"
 #include "confdefs.h"
 
 #include <sys/types.h>
@@ -34372,16 +34368,16 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:34375: \"$ac_link\"") >&5
+if { (eval echo "$as_me:34371: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:34378: \$? = $ac_status" >&5
+  echo "$as_me:34374: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:34381: \"$ac_try\"") >&5
+  { (eval echo "$as_me:34377: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:34384: \$? = $ac_status" >&5
+  echo "$as_me:34380: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_fionbio=fcntl
 else
@@ -34394,21 +34390,21 @@ fi
 rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext"
 
 fi
-echo "$as_me:34397: result: $cf_cv_fionbio" >&5
+echo "$as_me:34393: result: $cf_cv_fionbio" >&5
 echo "${ECHO_T}$cf_cv_fionbio" >&6
 test "$cf_cv_fionbio" = "fcntl" &&
 cat >>confdefs.h <<\EOF
 #define USE_FCNTL 1
 EOF
 
-echo "$as_me:34404: checking for broken/missing definition of remove" >&5
+echo "$as_me:34400: checking for broken/missing definition of remove" >&5
 echo $ECHO_N "checking for broken/missing definition of remove... $ECHO_C" >&6
 if test "${cf_cv_baddef_remove+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 34411 "configure"
+#line 34407 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 int
@@ -34420,23 +34416,23 @@ remove("dummy")
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:34423: \"$ac_link\"") >&5
+if { (eval echo "$as_me:34419: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:34426: \$? = $ac_status" >&5
+  echo "$as_me:34422: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:34429: \"$ac_try\"") >&5
+  { (eval echo "$as_me:34425: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:34432: \$? = $ac_status" >&5
+  echo "$as_me:34428: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_baddef_remove=no
 else
   echo "$as_me: failed program was:" >&5
 cat "conftest.$ac_ext" >&5
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 34439 "configure"
+#line 34435 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 		int __unlink(name) { return unlink(name); }
@@ -34449,16 +34445,16 @@ remove("dummy")
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:34452: \"$ac_link\"") >&5
+if { (eval echo "$as_me:34448: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:34455: \$? = $ac_status" >&5
+  echo "$as_me:34451: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:34458: \"$ac_try\"") >&5
+  { (eval echo "$as_me:34454: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:34461: \$? = $ac_status" >&5
+  echo "$as_me:34457: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_baddef_remove=yes
 else
@@ -34473,21 +34469,21 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext"
 
 fi
 
-echo "$as_me:34476: result: $cf_cv_baddef_remove" >&5
+echo "$as_me:34472: result: $cf_cv_baddef_remove" >&5
 echo "${ECHO_T}$cf_cv_baddef_remove" >&6
 test "$cf_cv_baddef_remove" != no &&
 cat >>confdefs.h <<\EOF
 #define NEED_REMOVE 1
 EOF
 
-echo "$as_me:34483: checking for lstat" >&5
+echo "$as_me:34479: checking for lstat" >&5
 echo $ECHO_N "checking for lstat... $ECHO_C" >&6
 if test "${ac_cv_func_lstat+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 34490 "configure"
+#line 34486 "configure"
 #include "confdefs.h"
 $ac_includes_default
 int
@@ -34499,16 +34495,16 @@ struct stat sb; lstat(".", &sb); (void) sb
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:34502: \"$ac_link\"") >&5
+if { (eval echo "$as_me:34498: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:34505: \$? = $ac_status" >&5
+  echo "$as_me:34501: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:34508: \"$ac_try\"") >&5
+  { (eval echo "$as_me:34504: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:34511: \$? = $ac_status" >&5
+  echo "$as_me:34507: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   ac_cv_func_lstat=yes
 else
@@ -34520,7 +34516,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext"
 
 fi
 
-echo "$as_me:34523: result: $ac_cv_func_lstat " >&5
+echo "$as_me:34519: result: $ac_cv_func_lstat " >&5
 echo "${ECHO_T}$ac_cv_func_lstat " >&6
 if test "$ac_cv_func_lstat" = yes; then
 
@@ -34530,13 +34526,13 @@ EOF
 
 fi
 
-echo "$as_me:34533: checking for vasprintf" >&5
+echo "$as_me:34529: checking for vasprintf" >&5
 echo $ECHO_N "checking for vasprintf... $ECHO_C" >&6
 if test "${ac_cv_func_vasprintf+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >"conftest.$ac_ext" <<_ACEOF
-#line 34539 "configure"
+#line 34535 "configure"
 #include "confdefs.h"
 #define vasprintf autoconf_temporary
 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
@@ -34567,16 +34563,16 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:34570: \"$ac_link\"") >&5
+if { (eval echo "$as_me:34566: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:34573: \$? = $ac_status" >&5
+  echo "$as_me:34569: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:34576: \"$ac_try\"") >&5
+  { (eval echo "$as_me:34572: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:34579: \$? = $ac_status" >&5
+  echo "$as_me:34575: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   ac_cv_func_vasprintf=yes
 else
@@ -34586,7 +34582,7 @@ ac_cv_func_vasprintf=no
 fi
 rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext"
 fi
-echo "$as_me:34589: result: $ac_cv_func_vasprintf" >&5
+echo "$as_me:34585: result: $ac_cv_func_vasprintf" >&5
 echo "${ECHO_T}$ac_cv_func_vasprintf" >&6
 if test "$ac_cv_func_vasprintf" = yes; then
 
@@ -34594,10 +34590,10 @@ cat >>confdefs.h <<\EOF
 #define HAVE_VASPRINTF 1
 EOF
 
-	echo "$as_me:34597: checking if vasprintf requires workaround" >&5
+	echo "$as_me:34593: checking if vasprintf requires workaround" >&5
 echo $ECHO_N "checking if vasprintf requires workaround... $ECHO_C" >&6
 	cat >"conftest.$ac_ext" <<_ACEOF
-#line 34600 "configure"
+#line 34596 "configure"
 #include "confdefs.h"
 
 		#include <stdio.h>
@@ -34613,19 +34609,19 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:34616: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:34612: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:34619: \$? = $ac_status" >&5
+  echo "$as_me:34615: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:34622: \"$ac_try\"") >&5
+  { (eval echo "$as_me:34618: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:34625: \$? = $ac_status" >&5
+  echo "$as_me:34621: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
 
-		echo "$as_me:34628: result: no" >&5
+		echo "$as_me:34624: result: no" >&5
 echo "${ECHO_T}no" >&6
 
 else
@@ -34633,7 +34629,7 @@ else
 cat "conftest.$ac_ext" >&5
 
 		cat >"conftest.$ac_ext" <<_ACEOF
-#line 34636 "configure"
+#line 34632 "configure"
 #include "confdefs.h"
 
 			#ifndef _GNU_SOURCE
@@ -34652,19 +34648,19 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:34655: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:34651: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:34658: \$? = $ac_status" >&5
+  echo "$as_me:34654: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:34661: \"$ac_try\"") >&5
+  { (eval echo "$as_me:34657: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:34664: \$? = $ac_status" >&5
+  echo "$as_me:34660: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
 
-			echo "$as_me:34667: result: yes" >&5
+			echo "$as_me:34663: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 
 	test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS "
@@ -34674,7 +34670,7 @@ else
   echo "$as_me: failed program was:" >&5
 cat "conftest.$ac_ext" >&5
 
-			echo "$as_me:34677: result: unknown" >&5
+			echo "$as_me:34673: result: unknown" >&5
 echo "${ECHO_T}unknown" >&6
 
 fi
@@ -34707,13 +34703,13 @@ for ac_func in \
 
 do
 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
-echo "$as_me:34710: checking for $ac_func" >&5
+echo "$as_me:34706: checking for $ac_func" >&5
 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
 if eval "test \"\${$as_ac_var+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >"conftest.$ac_ext" <<_ACEOF
-#line 34716 "configure"
+#line 34712 "configure"
 #include "confdefs.h"
 #define $ac_func autoconf_temporary
 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
@@ -34744,16 +34740,16 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:34747: \"$ac_link\"") >&5
+if { (eval echo "$as_me:34743: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:34750: \$? = $ac_status" >&5
+  echo "$as_me:34746: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:34753: \"$ac_try\"") >&5
+  { (eval echo "$as_me:34749: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:34756: \$? = $ac_status" >&5
+  echo "$as_me:34752: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   eval "$as_ac_var=yes"
 else
@@ -34763,7 +34759,7 @@ eval "$as_ac_var=no"
 fi
 rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext"
 fi
-echo "$as_me:34766: result: `eval echo '${'"$as_ac_var"'}'`" >&5
+echo "$as_me:34762: result: `eval echo '${'"$as_ac_var"'}'`" >&5
 echo "${ECHO_T}`eval echo '${'"$as_ac_var"'}'`" >&6
 if test "`eval echo '${'"$as_ac_var"'}'`" = yes; then
   cat >>confdefs.h <<EOF
@@ -34777,13 +34773,13 @@ for ac_func in \
 	mkdtemp
 do
 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
-echo "$as_me:34780: checking for $ac_func" >&5
+echo "$as_me:34776: checking for $ac_func" >&5
 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
 if eval "test \"\${$as_ac_var+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >"conftest.$ac_ext" <<_ACEOF
-#line 34786 "configure"
+#line 34782 "configure"
 #include "confdefs.h"
 #define $ac_func autoconf_temporary
 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
@@ -34814,16 +34810,16 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:34817: \"$ac_link\"") >&5
+if { (eval echo "$as_me:34813: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:34820: \$? = $ac_status" >&5
+  echo "$as_me:34816: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:34823: \"$ac_try\"") >&5
+  { (eval echo "$as_me:34819: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:34826: \$? = $ac_status" >&5
+  echo "$as_me:34822: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   eval "$as_ac_var=yes"
 else
@@ -34833,7 +34829,7 @@ eval "$as_ac_var=no"
 fi
 rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext"
 fi
-echo "$as_me:34836: result: `eval echo '${'"$as_ac_var"'}'`" >&5
+echo "$as_me:34832: result: `eval echo '${'"$as_ac_var"'}'`" >&5
 echo "${ECHO_T}`eval echo '${'"$as_ac_var"'}'`" >&6
 if test "`eval echo '${'"$as_ac_var"'}'`" = yes; then
   cat >>confdefs.h <<EOF
@@ -34845,13 +34841,13 @@ else
 for ac_func in mktemp
 do
 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
-echo "$as_me:34848: checking for $ac_func" >&5
+echo "$as_me:34844: checking for $ac_func" >&5
 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
 if eval "test \"\${$as_ac_var+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >"conftest.$ac_ext" <<_ACEOF
-#line 34854 "configure"
+#line 34850 "configure"
 #include "confdefs.h"
 #define $ac_func autoconf_temporary
 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
@@ -34882,16 +34878,16 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:34885: \"$ac_link\"") >&5
+if { (eval echo "$as_me:34881: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:34888: \$? = $ac_status" >&5
+  echo "$as_me:34884: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:34891: \"$ac_try\"") >&5
+  { (eval echo "$as_me:34887: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:34894: \$? = $ac_status" >&5
+  echo "$as_me:34890: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   eval "$as_ac_var=yes"
 else
@@ -34901,7 +34897,7 @@ eval "$as_ac_var=no"
 fi
 rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext"
 fi
-echo "$as_me:34904: result: `eval echo '${'"$as_ac_var"'}'`" >&5
+echo "$as_me:34900: result: `eval echo '${'"$as_ac_var"'}'`" >&5
 echo "${ECHO_T}`eval echo '${'"$as_ac_var"'}'`" >&6
 if test "`eval echo '${'"$as_ac_var"'}'`" = yes; then
   cat >>confdefs.h <<EOF
@@ -34921,13 +34917,13 @@ for ac_func in \
 
 do
 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
-echo "$as_me:34924: checking for $ac_func" >&5
+echo "$as_me:34920: checking for $ac_func" >&5
 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
 if eval "test \"\${$as_ac_var+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >"conftest.$ac_ext" <<_ACEOF
-#line 34930 "configure"
+#line 34926 "configure"
 #include "confdefs.h"
 #define $ac_func autoconf_temporary
 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
@@ -34958,16 +34954,16 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:34961: \"$ac_link\"") >&5
+if { (eval echo "$as_me:34957: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:34964: \$? = $ac_status" >&5
+  echo "$as_me:34960: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:34967: \"$ac_try\"") >&5
+  { (eval echo "$as_me:34963: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:34970: \$? = $ac_status" >&5
+  echo "$as_me:34966: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   eval "$as_ac_var=yes"
 else
@@ -34977,7 +34973,7 @@ eval "$as_ac_var=no"
 fi
 rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext"
 fi
-echo "$as_me:34980: result: `eval echo '${'"$as_ac_var"'}'`" >&5
+echo "$as_me:34976: result: `eval echo '${'"$as_ac_var"'}'`" >&5
 echo "${ECHO_T}`eval echo '${'"$as_ac_var"'}'`" >&6
 if test "`eval echo '${'"$as_ac_var"'}'`" = yes; then
   cat >>confdefs.h <<EOF
@@ -34989,7 +34985,7 @@ else
 fi
 done
 
-echo "$as_me:34992: checking for random-integer functions" >&5
+echo "$as_me:34988: checking for random-integer functions" >&5
 echo $ECHO_N "checking for random-integer functions... $ECHO_C" >&6
 if test "${cf_cv_srand_func+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -35009,7 +35005,7 @@ do
 	esac
 
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 35012 "configure"
+#line 35008 "configure"
 #include "confdefs.h"
 
 $ac_includes_default
@@ -35026,16 +35022,16 @@ long seed = 1; $cf_srand_func(seed); seed = $cf_rand_func(); (void)seed
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:35029: \"$ac_link\"") >&5
+if { (eval echo "$as_me:35025: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:35032: \$? = $ac_status" >&5
+  echo "$as_me:35028: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:35035: \"$ac_try\"") >&5
+  { (eval echo "$as_me:35031: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:35038: \$? = $ac_status" >&5
+  echo "$as_me:35034: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_srand_func=$cf_func
  break
@@ -35047,10 +35043,10 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext"
 done
 
 fi
-echo "$as_me:35050: result: $cf_cv_srand_func" >&5
+echo "$as_me:35046: result: $cf_cv_srand_func" >&5
 echo "${ECHO_T}$cf_cv_srand_func" >&6
 if test "$cf_cv_srand_func" != unknown ; then
-	echo "$as_me:35053: checking for range of random-integers" >&5
+	echo "$as_me:35049: checking for range of random-integers" >&5
 echo $ECHO_N "checking for range of random-integers... $ECHO_C" >&6
 if test "${cf_cv_rand_max+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -35071,7 +35067,7 @@ else
 			;;
 		esac
 		cat >"conftest.$ac_ext" <<_ACEOF
-#line 35074 "configure"
+#line 35070 "configure"
 #include "confdefs.h"
 
 $ac_includes_default
@@ -35088,16 +35084,16 @@ long x = $cf_cv_rand_max; (void)x
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:35091: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:35087: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:35094: \$? = $ac_status" >&5
+  echo "$as_me:35090: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:35097: \"$ac_try\"") >&5
+  { (eval echo "$as_me:35093: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:35100: \$? = $ac_status" >&5
+  echo "$as_me:35096: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   :
 else
@@ -35108,15 +35104,15 @@ fi
 rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 
 fi
-echo "$as_me:35111: result: $cf_cv_rand_max" >&5
+echo "$as_me:35107: result: $cf_cv_rand_max" >&5
 echo "${ECHO_T}$cf_cv_rand_max" >&6
 
 	case "$cf_cv_srand_func" in
 	(*/arc4random)
-		echo "$as_me:35116: checking if <bsd/stdlib.h> should be included" >&5
+		echo "$as_me:35112: checking if <bsd/stdlib.h> should be included" >&5
 echo $ECHO_N "checking if <bsd/stdlib.h> should be included... $ECHO_C" >&6
 		cat >"conftest.$ac_ext" <<_ACEOF
-#line 35119 "configure"
+#line 35115 "configure"
 #include "confdefs.h"
 #include <bsd/stdlib.h>
 int
@@ -35129,23 +35125,23 @@ void *arc4random(int);
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:35132: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:35128: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:35135: \$? = $ac_status" >&5
+  echo "$as_me:35131: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:35138: \"$ac_try\"") >&5
+  { (eval echo "$as_me:35134: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:35141: \$? = $ac_status" >&5
+  echo "$as_me:35137: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_bsd_stdlib_h=no
 else
   echo "$as_me: failed program was:" >&5
 cat "conftest.$ac_ext" >&5
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 35148 "configure"
+#line 35144 "configure"
 #include "confdefs.h"
 #include <bsd/stdlib.h>
 int
@@ -35157,16 +35153,16 @@ unsigned x = arc4random(); (void)x
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:35160: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:35156: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:35163: \$? = $ac_status" >&5
+  echo "$as_me:35159: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:35166: \"$ac_try\"") >&5
+  { (eval echo "$as_me:35162: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:35169: \$? = $ac_status" >&5
+  echo "$as_me:35165: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_bsd_stdlib_h=yes
 else
@@ -35177,7 +35173,7 @@ fi
 rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 fi
 rm -f "conftest.$ac_objext" "conftest.$ac_ext"
-	    echo "$as_me:35180: result: $cf_bsd_stdlib_h" >&5
+	    echo "$as_me:35176: result: $cf_bsd_stdlib_h" >&5
 echo "${ECHO_T}$cf_bsd_stdlib_h" >&6
 		if test "$cf_bsd_stdlib_h" = yes
 		then
@@ -35187,10 +35183,10 @@ cat >>confdefs.h <<\EOF
 EOF
 
 		else
-			echo "$as_me:35190: checking if <bsd/random.h> should be included" >&5
+			echo "$as_me:35186: checking if <bsd/random.h> should be included" >&5
 echo $ECHO_N "checking if <bsd/random.h> should be included... $ECHO_C" >&6
 			cat >"conftest.$ac_ext" <<_ACEOF
-#line 35193 "configure"
+#line 35189 "configure"
 #include "confdefs.h"
 #include <bsd/random.h>
 int
@@ -35203,23 +35199,23 @@ void *arc4random(int);
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:35206: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:35202: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:35209: \$? = $ac_status" >&5
+  echo "$as_me:35205: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:35212: \"$ac_try\"") >&5
+  { (eval echo "$as_me:35208: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:35215: \$? = $ac_status" >&5
+  echo "$as_me:35211: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_bsd_random_h=no
 else
   echo "$as_me: failed program was:" >&5
 cat "conftest.$ac_ext" >&5
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 35222 "configure"
+#line 35218 "configure"
 #include "confdefs.h"
 #include <bsd/random.h>
 int
@@ -35231,16 +35227,16 @@ unsigned x = arc4random(); (void)x
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:35234: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:35230: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:35237: \$? = $ac_status" >&5
+  echo "$as_me:35233: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:35240: \"$ac_try\"") >&5
+  { (eval echo "$as_me:35236: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:35243: \$? = $ac_status" >&5
+  echo "$as_me:35239: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_bsd_random_h=yes
 else
@@ -35251,7 +35247,7 @@ fi
 rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 fi
 rm -f "conftest.$ac_objext" "conftest.$ac_ext"
-			echo "$as_me:35254: result: $cf_bsd_random_h" >&5
+			echo "$as_me:35250: result: $cf_bsd_random_h" >&5
 echo "${ECHO_T}$cf_bsd_random_h" >&6
 			if test "$cf_bsd_random_h" = yes
 			then
@@ -35261,7 +35257,7 @@ cat >>confdefs.h <<\EOF
 EOF
 
 			else
-				{ echo "$as_me:35264: WARNING: no header file found for arc4random" >&5
+				{ echo "$as_me:35260: WARNING: no header file found for arc4random" >&5
 echo "$as_me: WARNING: no header file found for arc4random" >&2;}
 			fi
 		fi
@@ -35296,13 +35292,13 @@ fi
 for ac_func in sleep
 do
 
-echo "$as_me:35299: checking for $ac_func declaration" >&5
+echo "$as_me:35295: checking for $ac_func declaration" >&5
 echo $ECHO_N "checking for $ac_func declaration... $ECHO_C" >&6
 if eval "test \"\${ac_cv_func_decl_$ac_func+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >"conftest.$ac_ext" <<_ACEOF
-#line 35305 "configure"
+#line 35301 "configure"
 #include "confdefs.h"
 
 $ac_includes_default
@@ -35325,20 +35321,20 @@ extern	int	$ac_func(void);
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:35328: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:35324: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:35331: \$? = $ac_status" >&5
+  echo "$as_me:35327: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:35334: \"$ac_try\"") >&5
+  { (eval echo "$as_me:35330: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:35337: \$? = $ac_status" >&5
+  echo "$as_me:35333: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
 
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 35341 "configure"
+#line 35337 "configure"
 #include "confdefs.h"
 
 #ifdef HAVE_STDLIB_H
@@ -35359,16 +35355,16 @@ int	(*p)(struct cf_check_funcdecl*) = $ac_func;
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:35362: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:35358: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:35365: \$? = $ac_status" >&5
+  echo "$as_me:35361: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:35368: \"$ac_try\"") >&5
+  { (eval echo "$as_me:35364: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:35371: \$? = $ac_status" >&5
+  echo "$as_me:35367: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
 
 eval "ac_cv_func_decl_$ac_func=yes"
@@ -35389,11 +35385,11 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 fi
 
 if eval "test \"`echo '$ac_cv_func_'decl_$ac_func`\" = yes"; then
-  echo "$as_me:35392: result: yes" >&5
+  echo "$as_me:35388: result: yes" >&5
 echo "${ECHO_T}yes" >&6
   :
 else
-  echo "$as_me:35396: result: no" >&5
+  echo "$as_me:35392: result: no" >&5
 echo "${ECHO_T}no" >&6
 
 ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%`
@@ -35408,13 +35404,13 @@ done
 for ac_func in strstr
 do
 
-echo "$as_me:35411: checking for $ac_func declaration" >&5
+echo "$as_me:35407: checking for $ac_func declaration" >&5
 echo $ECHO_N "checking for $ac_func declaration... $ECHO_C" >&6
 if eval "test \"\${ac_cv_func_decl_$ac_func+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >"conftest.$ac_ext" <<_ACEOF
-#line 35417 "configure"
+#line 35413 "configure"
 #include "confdefs.h"
 
 $ac_includes_default
@@ -35430,20 +35426,20 @@ extern	int	$ac_func(void);
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:35433: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:35429: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:35436: \$? = $ac_status" >&5
+  echo "$as_me:35432: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:35439: \"$ac_try\"") >&5
+  { (eval echo "$as_me:35435: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:35442: \$? = $ac_status" >&5
+  echo "$as_me:35438: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
 
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 35446 "configure"
+#line 35442 "configure"
 #include "confdefs.h"
 #include <string.h>
 int
@@ -35457,16 +35453,16 @@ int	(*p)(struct cf_check_funcdecl*) = $ac_func;
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:35460: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:35456: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:35463: \$? = $ac_status" >&5
+  echo "$as_me:35459: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:35466: \"$ac_try\"") >&5
+  { (eval echo "$as_me:35462: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:35469: \$? = $ac_status" >&5
+  echo "$as_me:35465: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
 
 eval "ac_cv_func_decl_$ac_func=yes"
@@ -35487,11 +35483,11 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 fi
 
 if eval "test \"`echo '$ac_cv_func_'decl_$ac_func`\" = yes"; then
-  echo "$as_me:35490: result: yes" >&5
+  echo "$as_me:35486: result: yes" >&5
 echo "${ECHO_T}yes" >&6
   :
 else
-  echo "$as_me:35494: result: no" >&5
+  echo "$as_me:35490: result: no" >&5
 echo "${ECHO_T}no" >&6
 
 ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%`
@@ -35506,13 +35502,13 @@ done
 for ac_func in getgrgid getgrnam
 do
 
-echo "$as_me:35509: checking for $ac_func declaration" >&5
+echo "$as_me:35505: checking for $ac_func declaration" >&5
 echo $ECHO_N "checking for $ac_func declaration... $ECHO_C" >&6
 if eval "test \"\${ac_cv_func_decl_$ac_func+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >"conftest.$ac_ext" <<_ACEOF
-#line 35515 "configure"
+#line 35511 "configure"
 #include "confdefs.h"
 
 $ac_includes_default
@@ -35530,20 +35526,20 @@ extern	int	$ac_func(void);
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:35533: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:35529: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:35536: \$? = $ac_status" >&5
+  echo "$as_me:35532: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:35539: \"$ac_try\"") >&5
+  { (eval echo "$as_me:35535: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:35542: \$? = $ac_status" >&5
+  echo "$as_me:35538: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
 
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 35546 "configure"
+#line 35542 "configure"
 #include "confdefs.h"
 
 #include <stdio.h>
@@ -35559,16 +35555,16 @@ int	(*p)(struct cf_check_funcdecl*) = $ac_func;
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:35562: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:35558: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:35565: \$? = $ac_status" >&5
+  echo "$as_me:35561: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:35568: \"$ac_try\"") >&5
+  { (eval echo "$as_me:35564: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:35571: \$? = $ac_status" >&5
+  echo "$as_me:35567: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
 
 eval "ac_cv_func_decl_$ac_func=yes"
@@ -35589,11 +35585,11 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 fi
 
 if eval "test \"`echo '$ac_cv_func_'decl_$ac_func`\" = yes"; then
-  echo "$as_me:35592: result: yes" >&5
+  echo "$as_me:35588: result: yes" >&5
 echo "${ECHO_T}yes" >&6
   :
 else
-  echo "$as_me:35596: result: no" >&5
+  echo "$as_me:35592: result: no" >&5
 echo "${ECHO_T}no" >&6
 
 ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%`
@@ -35605,14 +35601,14 @@ EOF
 fi
 done
 
-echo "$as_me:35608: checking if TRUE/FALSE are defined" >&5
+echo "$as_me:35604: checking if TRUE/FALSE are defined" >&5
 echo $ECHO_N "checking if TRUE/FALSE are defined... $ECHO_C" >&6
 if test "${cf_cv_bool_defs+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 35615 "configure"
+#line 35611 "configure"
 #include "confdefs.h"
 
 #include <${cf_cv_ncurses_header:-curses.h}>
@@ -35626,16 +35622,16 @@ int x = TRUE, y = FALSE
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:35629: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:35625: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:35632: \$? = $ac_status" >&5
+  echo "$as_me:35628: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:35635: \"$ac_try\"") >&5
+  { (eval echo "$as_me:35631: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:35638: \$? = $ac_status" >&5
+  echo "$as_me:35634: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_bool_defs=yes
 else
@@ -35646,7 +35642,7 @@ fi
 rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 fi
 
-echo "$as_me:35649: result: $cf_cv_bool_defs" >&5
+echo "$as_me:35645: result: $cf_cv_bool_defs" >&5
 echo "${ECHO_T}$cf_cv_bool_defs" >&6
 if test "$cf_cv_bool_defs" = no ; then
 
@@ -35660,14 +35656,14 @@ EOF
 
 fi
 
-echo "$as_me:35663: checking if external errno is declared" >&5
+echo "$as_me:35659: checking if external errno is declared" >&5
 echo $ECHO_N "checking if external errno is declared... $ECHO_C" >&6
 if test "${cf_cv_dcl_errno+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 	cat >"conftest.$ac_ext" <<_ACEOF
-#line 35670 "configure"
+#line 35666 "configure"
 #include "confdefs.h"
 
 $ac_includes_default
@@ -35681,16 +35677,16 @@ int x = (int) errno; (void)x
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:35684: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:35680: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:35687: \$? = $ac_status" >&5
+  echo "$as_me:35683: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:35690: \"$ac_try\"") >&5
+  { (eval echo "$as_me:35686: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:35693: \$? = $ac_status" >&5
+  echo "$as_me:35689: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_dcl_errno=yes
 else
@@ -35701,7 +35697,7 @@ fi
 rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 
 fi
-echo "$as_me:35704: result: $cf_cv_dcl_errno" >&5
+echo "$as_me:35700: result: $cf_cv_dcl_errno" >&5
 echo "${ECHO_T}$cf_cv_dcl_errno" >&6
 
 if test "$cf_cv_dcl_errno" = no ; then
@@ -35716,14 +35712,14 @@ fi
 
 # It's possible (for near-UNIX clones) that the data doesn't exist
 
-echo "$as_me:35719: checking if external errno exists" >&5
+echo "$as_me:35715: checking if external errno exists" >&5
 echo $ECHO_N "checking if external errno exists... $ECHO_C" >&6
 if test "${cf_cv_have_errno+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 	cat >"conftest.$ac_ext" <<_ACEOF
-#line 35726 "configure"
+#line 35722 "configure"
 #include "confdefs.h"
 
 #undef errno
@@ -35738,16 +35734,16 @@ errno = 2
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:35741: \"$ac_link\"") >&5
+if { (eval echo "$as_me:35737: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:35744: \$? = $ac_status" >&5
+  echo "$as_me:35740: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:35747: \"$ac_try\"") >&5
+  { (eval echo "$as_me:35743: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:35750: \$? = $ac_status" >&5
+  echo "$as_me:35746: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_have_errno=yes
 else
@@ -35758,7 +35754,7 @@ fi
 rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext"
 
 fi
-echo "$as_me:35761: result: $cf_cv_have_errno" >&5
+echo "$as_me:35757: result: $cf_cv_have_errno" >&5
 echo "${ECHO_T}$cf_cv_have_errno" >&6
 
 if test "$cf_cv_have_errno" = yes ; then
@@ -35771,7 +35767,7 @@ EOF
 
 fi
 
-echo "$as_me:35774: checking if we can set errno" >&5
+echo "$as_me:35770: checking if we can set errno" >&5
 echo $ECHO_N "checking if we can set errno... $ECHO_C" >&6
 if test "${cf_cv_set_errno+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -35779,7 +35775,7 @@ else
 
 if test "$cross_compiling" = yes; then
   cat >"conftest.$ac_ext" <<_ACEOF
-#line 35782 "configure"
+#line 35778 "configure"
 #include "confdefs.h"
 #include <errno.h>
 int
@@ -35791,16 +35787,16 @@ errno = 255
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:35794: \"$ac_link\"") >&5
+if { (eval echo "$as_me:35790: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:35797: \$? = $ac_status" >&5
+  echo "$as_me:35793: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:35800: \"$ac_try\"") >&5
+  { (eval echo "$as_me:35796: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:35803: \$? = $ac_status" >&5
+  echo "$as_me:35799: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_set_errno=maybe
 else
@@ -35811,7 +35807,7 @@ fi
 rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext"
 else
   cat >"conftest.$ac_ext" <<_ACEOF
-#line 35814 "configure"
+#line 35810 "configure"
 #include "confdefs.h"
 
 $ac_includes_default
@@ -35825,15 +35821,15 @@ int main(void)
 }
 _ACEOF
 rm -f "conftest$ac_exeext"
-if { (eval echo "$as_me:35828: \"$ac_link\"") >&5
+if { (eval echo "$as_me:35824: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:35831: \$? = $ac_status" >&5
+  echo "$as_me:35827: \$? = $ac_status" >&5
   (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"'
-  { (eval echo "$as_me:35833: \"$ac_try\"") >&5
+  { (eval echo "$as_me:35829: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:35836: \$? = $ac_status" >&5
+  echo "$as_me:35832: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_set_errno=yes
 else
@@ -35846,21 +35842,21 @@ rm -f core ./core.* ./*.core "conftest$ac_exeext" "conftest.$ac_objext" "conftes
 fi
 
 fi
-echo "$as_me:35849: result: $cf_cv_set_errno" >&5
+echo "$as_me:35845: result: $cf_cv_set_errno" >&5
 echo "${ECHO_T}$cf_cv_set_errno" >&6
 test "$cf_cv_set_errno" != no &&
 cat >>confdefs.h <<\EOF
 #define CAN_SET_ERRNO 1
 EOF
 
-echo "$as_me:35856: checking for setlocale()" >&5
+echo "$as_me:35852: checking for setlocale()" >&5
 echo $ECHO_N "checking for setlocale()... $ECHO_C" >&6
 if test "${cf_cv_locale+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 35863 "configure"
+#line 35859 "configure"
 #include "confdefs.h"
 
 $ac_includes_default
@@ -35874,16 +35870,16 @@ setlocale(LC_ALL, "")
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:35877: \"$ac_link\"") >&5
+if { (eval echo "$as_me:35873: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:35880: \$? = $ac_status" >&5
+  echo "$as_me:35876: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:35883: \"$ac_try\"") >&5
+  { (eval echo "$as_me:35879: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:35886: \$? = $ac_status" >&5
+  echo "$as_me:35882: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_locale=yes
 else
@@ -35895,7 +35891,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext"
 
 fi
 
-echo "$as_me:35898: result: $cf_cv_locale" >&5
+echo "$as_me:35894: result: $cf_cv_locale" >&5
 echo "${ECHO_T}$cf_cv_locale" >&6
 test "$cf_cv_locale" = yes && {
 cat >>confdefs.h <<\EOF
@@ -35903,14 +35899,14 @@ cat >>confdefs.h <<\EOF
 EOF
  }
 
-echo "$as_me:35906: checking if NGROUPS is defined" >&5
+echo "$as_me:35902: checking if NGROUPS is defined" >&5
 echo $ECHO_N "checking if NGROUPS is defined... $ECHO_C" >&6
 if test "${cf_cv_ngroups+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 35913 "configure"
+#line 35909 "configure"
 #include "confdefs.h"
 
 #if HAVE_SYS_PARAM_H
@@ -35929,23 +35925,23 @@ int x = NGROUPS
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:35932: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:35928: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:35935: \$? = $ac_status" >&5
+  echo "$as_me:35931: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:35938: \"$ac_try\"") >&5
+  { (eval echo "$as_me:35934: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:35941: \$? = $ac_status" >&5
+  echo "$as_me:35937: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_ngroups=yes
 else
   echo "$as_me: failed program was:" >&5
 cat "conftest.$ac_ext" >&5
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 35948 "configure"
+#line 35944 "configure"
 #include "confdefs.h"
 
 #if HAVE_SYS_PARAM_H
@@ -35964,16 +35960,16 @@ int x = NGROUPS_MAX
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:35967: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:35963: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:35970: \$? = $ac_status" >&5
+  echo "$as_me:35966: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:35973: \"$ac_try\"") >&5
+  { (eval echo "$as_me:35969: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:35976: \$? = $ac_status" >&5
+  echo "$as_me:35972: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_ngroups=NGROUPS_MAX
 else
@@ -35985,7 +35981,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 
 fi
 rm -f "conftest.$ac_objext" "conftest.$ac_ext"
-echo "$as_me:35988: result: $cf_cv_ngroups" >&5
+echo "$as_me:35984: result: $cf_cv_ngroups" >&5
 echo "${ECHO_T}$cf_cv_ngroups" >&6
 
 fi
@@ -36006,13 +36002,13 @@ fi
 for ac_func in strerror
 do
 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
-echo "$as_me:36009: checking for $ac_func" >&5
+echo "$as_me:36005: checking for $ac_func" >&5
 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
 if eval "test \"\${$as_ac_var+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >"conftest.$ac_ext" <<_ACEOF
-#line 36015 "configure"
+#line 36011 "configure"
 #include "confdefs.h"
 #define $ac_func autoconf_temporary
 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
@@ -36043,16 +36039,16 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:36046: \"$ac_link\"") >&5
+if { (eval echo "$as_me:36042: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:36049: \$? = $ac_status" >&5
+  echo "$as_me:36045: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:36052: \"$ac_try\"") >&5
+  { (eval echo "$as_me:36048: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:36055: \$? = $ac_status" >&5
+  echo "$as_me:36051: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   eval "$as_ac_var=yes"
 else
@@ -36062,7 +36058,7 @@ eval "$as_ac_var=no"
 fi
 rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext"
 fi
-echo "$as_me:36065: result: `eval echo '${'"$as_ac_var"'}'`" >&5
+echo "$as_me:36061: result: `eval echo '${'"$as_ac_var"'}'`" >&5
 echo "${ECHO_T}`eval echo '${'"$as_ac_var"'}'`" >&6
 if test "`eval echo '${'"$as_ac_var"'}'`" = yes; then
   cat >>confdefs.h <<EOF
@@ -36071,14 +36067,14 @@ EOF
 
 else
 
-echo "$as_me:36074: checking if external sys_nerr is declared" >&5
+echo "$as_me:36070: checking if external sys_nerr is declared" >&5
 echo $ECHO_N "checking if external sys_nerr is declared... $ECHO_C" >&6
 if test "${cf_cv_dcl_sys_nerr+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 	cat >"conftest.$ac_ext" <<_ACEOF
-#line 36081 "configure"
+#line 36077 "configure"
 #include "confdefs.h"
 
 $ac_includes_default
@@ -36092,16 +36088,16 @@ int x = (int) sys_nerr; (void)x
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:36095: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:36091: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:36098: \$? = $ac_status" >&5
+  echo "$as_me:36094: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:36101: \"$ac_try\"") >&5
+  { (eval echo "$as_me:36097: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:36104: \$? = $ac_status" >&5
+  echo "$as_me:36100: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_dcl_sys_nerr=yes
 else
@@ -36112,7 +36108,7 @@ fi
 rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 
 fi
-echo "$as_me:36115: result: $cf_cv_dcl_sys_nerr" >&5
+echo "$as_me:36111: result: $cf_cv_dcl_sys_nerr" >&5
 echo "${ECHO_T}$cf_cv_dcl_sys_nerr" >&6
 
 if test "$cf_cv_dcl_sys_nerr" = no ; then
@@ -36127,14 +36123,14 @@ fi
 
 # It's possible (for near-UNIX clones) that the data doesn't exist
 
-echo "$as_me:36130: checking if external sys_nerr exists" >&5
+echo "$as_me:36126: checking if external sys_nerr exists" >&5
 echo $ECHO_N "checking if external sys_nerr exists... $ECHO_C" >&6
 if test "${cf_cv_have_sys_nerr+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 	cat >"conftest.$ac_ext" <<_ACEOF
-#line 36137 "configure"
+#line 36133 "configure"
 #include "confdefs.h"
 
 #undef sys_nerr
@@ -36149,16 +36145,16 @@ sys_nerr = 2
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:36152: \"$ac_link\"") >&5
+if { (eval echo "$as_me:36148: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:36155: \$? = $ac_status" >&5
+  echo "$as_me:36151: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:36158: \"$ac_try\"") >&5
+  { (eval echo "$as_me:36154: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:36161: \$? = $ac_status" >&5
+  echo "$as_me:36157: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_have_sys_nerr=yes
 else
@@ -36169,7 +36165,7 @@ fi
 rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext"
 
 fi
-echo "$as_me:36172: result: $cf_cv_have_sys_nerr" >&5
+echo "$as_me:36168: result: $cf_cv_have_sys_nerr" >&5
 echo "${ECHO_T}$cf_cv_have_sys_nerr" >&6
 
 if test "$cf_cv_have_sys_nerr" = yes ; then
@@ -36182,14 +36178,14 @@ EOF
 
 fi
 
-echo "$as_me:36185: checking if external sys_errlist is declared" >&5
+echo "$as_me:36181: checking if external sys_errlist is declared" >&5
 echo $ECHO_N "checking if external sys_errlist is declared... $ECHO_C" >&6
 if test "${cf_cv_dcl_sys_errlist+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 	cat >"conftest.$ac_ext" <<_ACEOF
-#line 36192 "configure"
+#line 36188 "configure"
 #include "confdefs.h"
 
 $ac_includes_default
@@ -36203,16 +36199,16 @@ int x = (int) sys_errlist; (void)x
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:36206: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:36202: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:36209: \$? = $ac_status" >&5
+  echo "$as_me:36205: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:36212: \"$ac_try\"") >&5
+  { (eval echo "$as_me:36208: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:36215: \$? = $ac_status" >&5
+  echo "$as_me:36211: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_dcl_sys_errlist=yes
 else
@@ -36223,7 +36219,7 @@ fi
 rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 
 fi
-echo "$as_me:36226: result: $cf_cv_dcl_sys_errlist" >&5
+echo "$as_me:36222: result: $cf_cv_dcl_sys_errlist" >&5
 echo "${ECHO_T}$cf_cv_dcl_sys_errlist" >&6
 
 if test "$cf_cv_dcl_sys_errlist" = no ; then
@@ -36238,14 +36234,14 @@ fi
 
 # It's possible (for near-UNIX clones) that the data doesn't exist
 
-echo "$as_me:36241: checking if external sys_errlist exists" >&5
+echo "$as_me:36237: checking if external sys_errlist exists" >&5
 echo $ECHO_N "checking if external sys_errlist exists... $ECHO_C" >&6
 if test "${cf_cv_have_sys_errlist+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 	cat >"conftest.$ac_ext" <<_ACEOF
-#line 36248 "configure"
+#line 36244 "configure"
 #include "confdefs.h"
 
 #undef sys_errlist
@@ -36260,16 +36256,16 @@ sys_errlist = 2
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:36263: \"$ac_link\"") >&5
+if { (eval echo "$as_me:36259: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:36266: \$? = $ac_status" >&5
+  echo "$as_me:36262: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:36269: \"$ac_try\"") >&5
+  { (eval echo "$as_me:36265: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:36272: \$? = $ac_status" >&5
+  echo "$as_me:36268: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_have_sys_errlist=yes
 else
@@ -36280,7 +36276,7 @@ fi
 rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext"
 
 fi
-echo "$as_me:36283: result: $cf_cv_have_sys_errlist" >&5
+echo "$as_me:36279: result: $cf_cv_have_sys_errlist" >&5
 echo "${ECHO_T}$cf_cv_have_sys_errlist" >&6
 
 if test "$cf_cv_have_sys_errlist" = yes ; then
@@ -36299,23 +36295,23 @@ done
 for ac_header in lastlog.h paths.h
 do
 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:36302: checking for $ac_header" >&5
+echo "$as_me:36298: checking for $ac_header" >&5
 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
 if eval "test \"\${$as_ac_Header+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >"conftest.$ac_ext" <<_ACEOF
-#line 36308 "configure"
+#line 36304 "configure"
 #include "confdefs.h"
 #include <$ac_header>
 _ACEOF
-if { (eval echo "$as_me:36312: \"$ac_cpp "conftest.$ac_ext"\"") >&5
+if { (eval echo "$as_me:36308: \"$ac_cpp "conftest.$ac_ext"\"") >&5
   (eval $ac_cpp "conftest.$ac_ext") 2>conftest.er1
   ac_status=$?
   $EGREP -v '^ *\+' conftest.er1 >conftest.err
   rm -f conftest.er1
   cat conftest.err >&5
-  echo "$as_me:36318: \$? = $ac_status" >&5
+  echo "$as_me:36314: \$? = $ac_status" >&5
   (exit "$ac_status"); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -36334,7 +36330,7 @@ else
 fi
 rm -f conftest.err "conftest.$ac_ext"
 fi
-echo "$as_me:36337: result: `eval echo '${'"$as_ac_Header"'}'`" >&5
+echo "$as_me:36333: result: `eval echo '${'"$as_ac_Header"'}'`" >&5
 echo "${ECHO_T}`eval echo '${'"$as_ac_Header"'}'`" >&6
 if test "`eval echo '${'"$as_ac_Header"'}'`" = yes; then
   cat >>confdefs.h <<EOF
@@ -36344,14 +36340,14 @@ EOF
 fi
 done
 
-echo "$as_me:36347: checking for lastlog path" >&5
+echo "$as_me:36343: checking for lastlog path" >&5
 echo $ECHO_N "checking for lastlog path... $ECHO_C" >&6
 if test "${cf_cv_path_lastlog+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 36354 "configure"
+#line 36350 "configure"
 #include "confdefs.h"
 
 #include <sys/types.h>
@@ -36371,16 +36367,16 @@ char *path = _PATH_LASTLOG; (void)path
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:36374: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:36370: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:36377: \$? = $ac_status" >&5
+  echo "$as_me:36373: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:36380: \"$ac_try\"") >&5
+  { (eval echo "$as_me:36376: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:36383: \$? = $ac_status" >&5
+  echo "$as_me:36379: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_path_lastlog="_PATH_LASTLOG"
 else
@@ -36395,14 +36391,14 @@ fi
 rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 
 fi
-echo "$as_me:36398: result: $cf_cv_path_lastlog" >&5
+echo "$as_me:36394: result: $cf_cv_path_lastlog" >&5
 echo "${ECHO_T}$cf_cv_path_lastlog" >&6
 test "$cf_cv_path_lastlog" != no &&
 cat >>confdefs.h <<\EOF
 #define USE_LASTLOG 1
 EOF
 
-echo "$as_me:36405: checking for utmp implementation" >&5
+echo "$as_me:36401: checking for utmp implementation" >&5
 echo $ECHO_N "checking for utmp implementation... $ECHO_C" >&6
 if test "${cf_cv_have_utmp+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -36419,7 +36415,7 @@ cf_utmp_includes="
 #endif
 "
 	cat >"conftest.$ac_ext" <<_ACEOF
-#line 36422 "configure"
+#line 36418 "configure"
 #include "confdefs.h"
 $cf_utmp_includes
 int
@@ -36435,16 +36431,16 @@ struct $cf_header x;
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:36438: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:36434: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:36441: \$? = $ac_status" >&5
+  echo "$as_me:36437: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:36444: \"$ac_try\"") >&5
+  { (eval echo "$as_me:36440: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:36447: \$? = $ac_status" >&5
+  echo "$as_me:36443: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_have_utmp=$cf_header
 	 break
@@ -36453,7 +36449,7 @@ else
 cat "conftest.$ac_ext" >&5
 
 	cat >"conftest.$ac_ext" <<_ACEOF
-#line 36456 "configure"
+#line 36452 "configure"
 #include "confdefs.h"
 $cf_utmp_includes
 int
@@ -36469,16 +36465,16 @@ struct $cf_header x;
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:36472: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:36468: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:36475: \$? = $ac_status" >&5
+  echo "$as_me:36471: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:36478: \"$ac_try\"") >&5
+  { (eval echo "$as_me:36474: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:36481: \$? = $ac_status" >&5
+  echo "$as_me:36477: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_have_utmp=$cf_header
 	 break
@@ -36493,7 +36489,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 done
 
 fi
-echo "$as_me:36496: result: $cf_cv_have_utmp" >&5
+echo "$as_me:36492: result: $cf_cv_have_utmp" >&5
 echo "${ECHO_T}$cf_cv_have_utmp" >&6
 
 if test "$cf_cv_have_utmp" != no ; then
@@ -36508,14 +36504,14 @@ cat >>confdefs.h <<\EOF
 EOF
 
 if test "$cf_cv_have_utmp" != no ; then
-echo "$as_me:36511: checking if ${cf_cv_have_utmp}.ut_host is declared" >&5
+echo "$as_me:36507: checking if ${cf_cv_have_utmp}.ut_host is declared" >&5
 echo $ECHO_N "checking if ${cf_cv_have_utmp}.ut_host is declared... $ECHO_C" >&6
 if test "${cf_cv_have_utmp_ut_host+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 	cat >"conftest.$ac_ext" <<_ACEOF
-#line 36518 "configure"
+#line 36514 "configure"
 #include "confdefs.h"
 
 #include <sys/types.h>
@@ -36532,16 +36528,16 @@ struct $cf_cv_have_utmp x;
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:36535: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:36531: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:36538: \$? = $ac_status" >&5
+  echo "$as_me:36534: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:36541: \"$ac_try\"") >&5
+  { (eval echo "$as_me:36537: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:36544: \$? = $ac_status" >&5
+  echo "$as_me:36540: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_have_utmp_ut_host=yes
 else
@@ -36553,7 +36549,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 
 fi
 
-echo "$as_me:36556: result: $cf_cv_have_utmp_ut_host" >&5
+echo "$as_me:36552: result: $cf_cv_have_utmp_ut_host" >&5
 echo "${ECHO_T}$cf_cv_have_utmp_ut_host" >&6
 test "$cf_cv_have_utmp_ut_host" != no &&
 cat >>confdefs.h <<\EOF
@@ -36563,14 +36559,14 @@ EOF
 fi
 
 if test "$cf_cv_have_utmp" != no ; then
-echo "$as_me:36566: checking if ${cf_cv_have_utmp}.ut_syslen is declared" >&5
+echo "$as_me:36562: checking if ${cf_cv_have_utmp}.ut_syslen is declared" >&5
 echo $ECHO_N "checking if ${cf_cv_have_utmp}.ut_syslen is declared... $ECHO_C" >&6
 if test "${cf_cv_have_utmp_ut_syslen+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 	cat >"conftest.$ac_ext" <<_ACEOF
-#line 36573 "configure"
+#line 36569 "configure"
 #include "confdefs.h"
 
 #include <sys/types.h>
@@ -36587,16 +36583,16 @@ struct $cf_cv_have_utmp x;
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:36590: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:36586: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:36593: \$? = $ac_status" >&5
+  echo "$as_me:36589: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:36596: \"$ac_try\"") >&5
+  { (eval echo "$as_me:36592: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:36599: \$? = $ac_status" >&5
+  echo "$as_me:36595: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_have_utmp_ut_syslen=yes
 else
@@ -36608,7 +36604,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 
 fi
 
-echo "$as_me:36611: result: $cf_cv_have_utmp_ut_syslen" >&5
+echo "$as_me:36607: result: $cf_cv_have_utmp_ut_syslen" >&5
 echo "${ECHO_T}$cf_cv_have_utmp_ut_syslen" >&6
 test "$cf_cv_have_utmp_ut_syslen" != no &&
 cat >>confdefs.h <<\EOF
@@ -36618,7 +36614,7 @@ EOF
 fi
 
 if test "$cf_cv_have_utmp" != no ; then
-echo "$as_me:36621: checking if ${cf_cv_have_utmp}.ut_name is declared" >&5
+echo "$as_me:36617: checking if ${cf_cv_have_utmp}.ut_name is declared" >&5
 echo $ECHO_N "checking if ${cf_cv_have_utmp}.ut_name is declared... $ECHO_C" >&6
 if test "${cf_cv_have_utmp_ut_name+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -36635,7 +36631,7 @@ cf_utmp_includes="
 "
 for cf_header in ut_name ut_user ; do
 	cat >"conftest.$ac_ext" <<_ACEOF
-#line 36638 "configure"
+#line 36634 "configure"
 #include "confdefs.h"
 $cf_utmp_includes
 int
@@ -36651,16 +36647,16 @@ struct $cf_cv_have_utmp x;
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:36654: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:36650: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:36657: \$? = $ac_status" >&5
+  echo "$as_me:36653: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:36660: \"$ac_try\"") >&5
+  { (eval echo "$as_me:36656: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:36663: \$? = $ac_status" >&5
+  echo "$as_me:36659: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_have_utmp_ut_name=$cf_header
 	 break
@@ -36672,12 +36668,12 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 done
 
 fi
-echo "$as_me:36675: result: $cf_cv_have_utmp_ut_name" >&5
+echo "$as_me:36671: result: $cf_cv_have_utmp_ut_name" >&5
 echo "${ECHO_T}$cf_cv_have_utmp_ut_name" >&6
 
 case "$cf_cv_have_utmp_ut_name" in
 (no)
-	{ { echo "$as_me:36680: error: Cannot find declaration for ut.ut_name" >&5
+	{ { echo "$as_me:36676: error: Cannot find declaration for ut.ut_name" >&5
 echo "$as_me: error: Cannot find declaration for ut.ut_name" >&2;}
    { (exit 1); exit 1; }; }
 	;;
@@ -36692,7 +36688,7 @@ esac
 fi
 
 if test "$cf_cv_have_utmp" != no ; then
-echo "$as_me:36695: checking for exit-status in $cf_cv_have_utmp" >&5
+echo "$as_me:36691: checking for exit-status in $cf_cv_have_utmp" >&5
 echo $ECHO_N "checking for exit-status in $cf_cv_have_utmp... $ECHO_C" >&6
 if test "${cf_cv_have_utmp_ut_xstatus+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -36705,7 +36701,7 @@ for cf_result in \
 	ut_exit.ut_exit
 do
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 36708 "configure"
+#line 36704 "configure"
 #include "confdefs.h"
 
 #include <sys/types.h>
@@ -36722,16 +36718,16 @@ struct $cf_cv_have_utmp x;
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:36725: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:36721: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:36728: \$? = $ac_status" >&5
+  echo "$as_me:36724: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:36731: \"$ac_try\"") >&5
+  { (eval echo "$as_me:36727: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:36734: \$? = $ac_status" >&5
+  echo "$as_me:36730: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_have_utmp_ut_xstatus=$cf_result
 	 break
@@ -36744,7 +36740,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 done
 
 fi
-echo "$as_me:36747: result: $cf_cv_have_utmp_ut_xstatus" >&5
+echo "$as_me:36743: result: $cf_cv_have_utmp_ut_xstatus" >&5
 echo "${ECHO_T}$cf_cv_have_utmp_ut_xstatus" >&6
 if test "$cf_cv_have_utmp_ut_xstatus" != no ; then
 
@@ -36760,14 +36756,14 @@ fi
 fi
 
 if test "$cf_cv_have_utmp" != no ; then
-echo "$as_me:36763: checking if ${cf_cv_have_utmp}.ut_xtime is declared" >&5
+echo "$as_me:36759: checking if ${cf_cv_have_utmp}.ut_xtime is declared" >&5
 echo $ECHO_N "checking if ${cf_cv_have_utmp}.ut_xtime is declared... $ECHO_C" >&6
 if test "${cf_cv_have_utmp_ut_xtime+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 	cat >"conftest.$ac_ext" <<_ACEOF
-#line 36770 "configure"
+#line 36766 "configure"
 #include "confdefs.h"
 
 #include <sys/types.h>
@@ -36784,23 +36780,23 @@ struct $cf_cv_have_utmp x;
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:36787: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:36783: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:36790: \$? = $ac_status" >&5
+  echo "$as_me:36786: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:36793: \"$ac_try\"") >&5
+  { (eval echo "$as_me:36789: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:36796: \$? = $ac_status" >&5
+  echo "$as_me:36792: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_have_utmp_ut_xtime=yes
 else
   echo "$as_me: failed program was:" >&5
 cat "conftest.$ac_ext" >&5
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 36803 "configure"
+#line 36799 "configure"
 #include "confdefs.h"
 
 #include <sys/types.h>
@@ -36817,16 +36813,16 @@ struct $cf_cv_have_utmp x;
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:36820: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:36816: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:36823: \$? = $ac_status" >&5
+  echo "$as_me:36819: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:36826: \"$ac_try\"") >&5
+  { (eval echo "$as_me:36822: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:36829: \$? = $ac_status" >&5
+  echo "$as_me:36825: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_have_utmp_ut_xtime=define
 else
@@ -36840,7 +36836,7 @@ fi
 rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 
 fi
-echo "$as_me:36843: result: $cf_cv_have_utmp_ut_xtime" >&5
+echo "$as_me:36839: result: $cf_cv_have_utmp_ut_xtime" >&5
 echo "${ECHO_T}$cf_cv_have_utmp_ut_xtime" >&6
 if test "$cf_cv_have_utmp_ut_xtime" != no ; then
 
@@ -36859,14 +36855,14 @@ fi
 fi
 
 if test "$cf_cv_have_utmp" != no ; then
-echo "$as_me:36862: checking if ${cf_cv_have_utmp}.ut_session is declared" >&5
+echo "$as_me:36858: checking if ${cf_cv_have_utmp}.ut_session is declared" >&5
 echo $ECHO_N "checking if ${cf_cv_have_utmp}.ut_session is declared... $ECHO_C" >&6
 if test "${cf_cv_have_utmp_ut_session+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 	cat >"conftest.$ac_ext" <<_ACEOF
-#line 36869 "configure"
+#line 36865 "configure"
 #include "confdefs.h"
 
 #include <sys/types.h>
@@ -36883,16 +36879,16 @@ static struct $cf_cv_have_utmp x;
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:36886: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:36882: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:36889: \$? = $ac_status" >&5
+  echo "$as_me:36885: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:36892: \"$ac_try\"") >&5
+  { (eval echo "$as_me:36888: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:36895: \$? = $ac_status" >&5
+  echo "$as_me:36891: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_have_utmp_ut_session=yes
 else
@@ -36903,7 +36899,7 @@ fi
 rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 
 fi
-echo "$as_me:36906: result: $cf_cv_have_utmp_ut_session" >&5
+echo "$as_me:36902: result: $cf_cv_have_utmp_ut_session" >&5
 echo "${ECHO_T}$cf_cv_have_utmp_ut_session" >&6
 if test "$cf_cv_have_utmp_ut_session" != no ; then
 
@@ -36914,7 +36910,7 @@ EOF
 fi
 fi
 
-echo "$as_me:36917: checking if $cf_cv_have_utmp is SYSV flavor" >&5
+echo "$as_me:36913: checking if $cf_cv_have_utmp is SYSV flavor" >&5
 echo $ECHO_N "checking if $cf_cv_have_utmp is SYSV flavor... $ECHO_C" >&6
 if test "${cf_cv_sysv_utmp+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -36922,7 +36918,7 @@ else
 
 test "$cf_cv_have_utmp" = "utmp" && cf_prefix="ut" || cf_prefix="utx"
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 36925 "configure"
+#line 36921 "configure"
 #include "confdefs.h"
 
 #include <sys/types.h>
@@ -36941,16 +36937,16 @@ struct $cf_cv_have_utmp x;
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:36944: \"$ac_link\"") >&5
+if { (eval echo "$as_me:36940: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:36947: \$? = $ac_status" >&5
+  echo "$as_me:36943: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:36950: \"$ac_try\"") >&5
+  { (eval echo "$as_me:36946: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:36953: \$? = $ac_status" >&5
+  echo "$as_me:36949: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_sysv_utmp=yes
 else
@@ -36961,7 +36957,7 @@ fi
 rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext"
 
 fi
-echo "$as_me:36964: result: $cf_cv_sysv_utmp" >&5
+echo "$as_me:36960: result: $cf_cv_sysv_utmp" >&5
 echo "${ECHO_T}$cf_cv_sysv_utmp" >&6
 test "$cf_cv_sysv_utmp" = yes &&
 cat >>confdefs.h <<\EOF
@@ -36970,14 +36966,14 @@ EOF
 
 fi
 
-echo "$as_me:36973: checking if external h_errno exists" >&5
+echo "$as_me:36969: checking if external h_errno exists" >&5
 echo $ECHO_N "checking if external h_errno exists... $ECHO_C" >&6
 if test "${cf_cv_have_h_errno+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 	cat >"conftest.$ac_ext" <<_ACEOF
-#line 36980 "configure"
+#line 36976 "configure"
 #include "confdefs.h"
 
 #undef h_errno
@@ -36992,16 +36988,16 @@ h_errno = 2
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:36995: \"$ac_link\"") >&5
+if { (eval echo "$as_me:36991: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:36998: \$? = $ac_status" >&5
+  echo "$as_me:36994: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:37001: \"$ac_try\"") >&5
+  { (eval echo "$as_me:36997: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:37004: \$? = $ac_status" >&5
+  echo "$as_me:37000: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_have_h_errno=yes
 else
@@ -37012,7 +37008,7 @@ fi
 rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext"
 
 fi
-echo "$as_me:37015: result: $cf_cv_have_h_errno" >&5
+echo "$as_me:37011: result: $cf_cv_have_h_errno" >&5
 echo "${ECHO_T}$cf_cv_have_h_errno" >&6
 
 if test "$cf_cv_have_h_errno" = yes ; then
@@ -37025,7 +37021,7 @@ EOF
 
 fi
 
-echo "$as_me:37028: checking if bibp: URLs should be supported" >&5
+echo "$as_me:37024: checking if bibp: URLs should be supported" >&5
 echo $ECHO_N "checking if bibp: URLs should be supported... $ECHO_C" >&6
 
 # Check whether --enable-bibp-urls or --disable-bibp-urls was given.
@@ -37042,14 +37038,14 @@ else
 	use_bibp_urls=yes
 
 fi;
-echo "$as_me:37045: result: $use_bibp_urls" >&5
+echo "$as_me:37041: result: $use_bibp_urls" >&5
 echo "${ECHO_T}$use_bibp_urls" >&6
 test "$use_bibp_urls" = no &&
 cat >>confdefs.h <<\EOF
 #define DISABLE_BIBP 1
 EOF
 
-echo "$as_me:37052: checking if configuration info should be browsable" >&5
+echo "$as_me:37048: checking if configuration info should be browsable" >&5
 echo $ECHO_N "checking if configuration info should be browsable... $ECHO_C" >&6
 
 # Check whether --enable-config-info or --disable-config-info was given.
@@ -37066,14 +37062,14 @@ else
 	use_config_info=yes
 
 fi;
-echo "$as_me:37069: result: $use_config_info" >&5
+echo "$as_me:37065: result: $use_config_info" >&5
 echo "${ECHO_T}$use_config_info" >&6
 test "$use_config_info" = no &&
 cat >>confdefs.h <<\EOF
 #define NO_CONFIG_INFO 1
 EOF
 
-echo "$as_me:37076: checking if new-style forms-based options screen should be used" >&5
+echo "$as_me:37072: checking if new-style forms-based options screen should be used" >&5
 echo $ECHO_N "checking if new-style forms-based options screen should be used... $ECHO_C" >&6
 
 # Check whether --enable-forms-options or --disable-forms-options was given.
@@ -37090,14 +37086,14 @@ else
 	use_forms_options=yes
 
 fi;
-echo "$as_me:37093: result: $use_forms_options" >&5
+echo "$as_me:37089: result: $use_forms_options" >&5
 echo "${ECHO_T}$use_forms_options" >&6
 test "$use_forms_options" = no &&
 cat >>confdefs.h <<\EOF
 #define NO_OPTION_FORMS 1
 EOF
 
-echo "$as_me:37100: checking if old-style options menu should be used" >&5
+echo "$as_me:37096: checking if old-style options menu should be used" >&5
 echo $ECHO_N "checking if old-style options menu should be used... $ECHO_C" >&6
 
 # Check whether --enable-menu-options or --disable-menu-options was given.
@@ -37114,14 +37110,14 @@ else
 	use_menu_options=yes
 
 fi;
-echo "$as_me:37117: result: $use_menu_options" >&5
+echo "$as_me:37113: result: $use_menu_options" >&5
 echo "${ECHO_T}$use_menu_options" >&6
 test "$use_menu_options" = no &&
 cat >>confdefs.h <<\EOF
 #define NO_OPTION_MENU 1
 EOF
 
-echo "$as_me:37124: checking if sessions code should be used" >&5
+echo "$as_me:37120: checking if sessions code should be used" >&5
 echo $ECHO_N "checking if sessions code should be used... $ECHO_C" >&6
 
 # Check whether --enable-sessions or --disable-sessions was given.
@@ -37138,7 +37134,7 @@ else
 	use_sessions=yes
 
 fi;
-echo "$as_me:37141: result: $use_sessions" >&5
+echo "$as_me:37137: result: $use_sessions" >&5
 echo "${ECHO_T}$use_sessions" >&6
 if test "$use_sessions" != no ; then
 
@@ -37149,7 +37145,7 @@ EOF
 	EXTRA_OBJS="$EXTRA_OBJS LYSession\$o"
 fi
 
-echo "$as_me:37152: checking if session-caching code should be used" >&5
+echo "$as_me:37148: checking if session-caching code should be used" >&5
 echo $ECHO_N "checking if session-caching code should be used... $ECHO_C" >&6
 
 # Check whether --enable-session-cache or --disable-session-cache was given.
@@ -37166,7 +37162,7 @@ else
 	use_session_cache=yes
 
 fi;
-echo "$as_me:37169: result: $use_session_cache" >&5
+echo "$as_me:37165: result: $use_session_cache" >&5
 echo "${ECHO_T}$use_session_cache" >&6
 if test "$use_session_cache" != no ; then
 
@@ -37176,7 +37172,7 @@ EOF
 
 fi
 
-echo "$as_me:37179: checking if address-list page should be used" >&5
+echo "$as_me:37175: checking if address-list page should be used" >&5
 echo $ECHO_N "checking if address-list page should be used... $ECHO_C" >&6
 
 # Check whether --enable-addrlist-page or --disable-addrlist-page was given.
@@ -37193,14 +37189,14 @@ else
 	use_addrlist_page=yes
 
 fi;
-echo "$as_me:37196: result: $use_addrlist_page" >&5
+echo "$as_me:37192: result: $use_addrlist_page" >&5
 echo "${ECHO_T}$use_addrlist_page" >&6
 test "$use_addrlist_page" != no &&
 cat >>confdefs.h <<\EOF
 #define USE_ADDRLIST_PAGE 1
 EOF
 
-echo "$as_me:37203: checking if support for CJK should be used" >&5
+echo "$as_me:37199: checking if support for CJK should be used" >&5
 echo $ECHO_N "checking if support for CJK should be used... $ECHO_C" >&6
 
 # Check whether --enable-cjk or --disable-cjk was given.
@@ -37217,7 +37213,7 @@ else
 	use_cjk=yes
 
 fi;
-echo "$as_me:37220: result: $use_cjk" >&5
+echo "$as_me:37216: result: $use_cjk" >&5
 echo "${ECHO_T}$use_cjk" >&6
 test "$use_cjk" != no &&
 cat >>confdefs.h <<\EOF
@@ -37267,7 +37263,7 @@ if test -n "$cf_searchpath/include" ; then
 	CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir"
 
 			  cat >"conftest.$ac_ext" <<_ACEOF
-#line 37270 "configure"
+#line 37266 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 int
@@ -37279,16 +37275,16 @@ printf("Hello")
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:37282: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:37278: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:37285: \$? = $ac_status" >&5
+  echo "$as_me:37281: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:37288: \"$ac_try\"") >&5
+  { (eval echo "$as_me:37284: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:37291: \$? = $ac_status" >&5
+  echo "$as_me:37287: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   :
 else
@@ -37305,7 +37301,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 		if test "$cf_have_incdir" = no ; then
 		  test -n "$verbose" && echo "	adding $cf_add_incdir to include-path" 1>&6
 
-echo "${as_me:-configure}:37308: testing adding $cf_add_incdir to include-path ..." 1>&5
+echo "${as_me:-configure}:37304: testing adding $cf_add_incdir to include-path ..." 1>&5
 
 		  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
 
@@ -37351,7 +37347,7 @@ if test -n "$cf_searchpath/../include" ; then
 	CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir"
 
 			  cat >"conftest.$ac_ext" <<_ACEOF
-#line 37354 "configure"
+#line 37350 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 int
@@ -37363,16 +37359,16 @@ printf("Hello")
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:37366: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:37362: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:37369: \$? = $ac_status" >&5
+  echo "$as_me:37365: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:37372: \"$ac_try\"") >&5
+  { (eval echo "$as_me:37368: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:37375: \$? = $ac_status" >&5
+  echo "$as_me:37371: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   :
 else
@@ -37389,7 +37385,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 		if test "$cf_have_incdir" = no ; then
 		  test -n "$verbose" && echo "	adding $cf_add_incdir to include-path" 1>&6
 
-echo "${as_me:-configure}:37392: testing adding $cf_add_incdir to include-path ..." 1>&5
+echo "${as_me:-configure}:37388: testing adding $cf_add_incdir to include-path ..." 1>&5
 
 		  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
 
@@ -37407,7 +37403,7 @@ echo "${as_me:-configure}:37392: testing adding $cf_add_incdir to include-path .
 fi
 
 	else
-{ { echo "$as_me:37410: error: cannot find libiconv under $withval" >&5
+{ { echo "$as_me:37406: error: cannot find libiconv under $withval" >&5
 echo "$as_me: error: cannot find libiconv under $withval" >&2;}
    { (exit 1); exit 1; }; }
 	fi
@@ -37432,7 +37428,7 @@ if test -n "$cf_searchpath/lib" ; then
 			if test "$cf_have_libdir" = no ; then
 				test -n "$verbose" && echo "	adding $cf_add_libdir to library-path" 1>&6
 
-echo "${as_me:-configure}:37435: testing adding $cf_add_libdir to library-path ..." 1>&5
+echo "${as_me:-configure}:37431: testing adding $cf_add_libdir to library-path ..." 1>&5
 
 				LDFLAGS="-L$cf_add_libdir $LDFLAGS"
 			fi
@@ -37461,7 +37457,7 @@ if test -n "$cf_searchpath" ; then
 			if test "$cf_have_libdir" = no ; then
 				test -n "$verbose" && echo "	adding $cf_add_libdir to library-path" 1>&6
 
-echo "${as_me:-configure}:37464: testing adding $cf_add_libdir to library-path ..." 1>&5
+echo "${as_me:-configure}:37460: testing adding $cf_add_libdir to library-path ..." 1>&5
 
 				LDFLAGS="-L$cf_add_libdir $LDFLAGS"
 			fi
@@ -37470,7 +37466,7 @@ echo "${as_me:-configure}:37464: testing adding $cf_add_libdir to library-path .
 fi
 
 	else
-{ { echo "$as_me:37473: error: cannot find libiconv under $withval" >&5
+{ { echo "$as_me:37469: error: cannot find libiconv under $withval" >&5
 echo "$as_me: error: cannot find libiconv under $withval" >&2;}
    { (exit 1); exit 1; }; }
 	fi
@@ -37481,7 +37477,7 @@ esac
 
 fi;
 
-  echo "$as_me:37484: checking for iconv" >&5
+  echo "$as_me:37480: checking for iconv" >&5
 echo $ECHO_N "checking for iconv... $ECHO_C" >&6
 if test "${am_cv_func_iconv+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -37492,12 +37488,12 @@ else
 cf_cv_header_path_iconv=
 cf_cv_library_path_iconv=
 
-echo "${as_me:-configure}:37495: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5
+echo "${as_me:-configure}:37491: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5
 
 cf_save_LIBS="$LIBS"
 
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 37500 "configure"
+#line 37496 "configure"
 #include "confdefs.h"
 
 #include <stdlib.h>
@@ -37516,16 +37512,16 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:37519: \"$ac_link\"") >&5
+if { (eval echo "$as_me:37515: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:37522: \$? = $ac_status" >&5
+  echo "$as_me:37518: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:37525: \"$ac_try\"") >&5
+  { (eval echo "$as_me:37521: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:37528: \$? = $ac_status" >&5
+  echo "$as_me:37524: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
 
 	cf_cv_find_linkage_iconv=yes
@@ -37539,7 +37535,7 @@ cat "conftest.$ac_ext" >&5
 LIBS="-liconv  $cf_save_LIBS"
 
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 37542 "configure"
+#line 37538 "configure"
 #include "confdefs.h"
 
 #include <stdlib.h>
@@ -37558,16 +37554,16 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:37561: \"$ac_link\"") >&5
+if { (eval echo "$as_me:37557: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:37564: \$? = $ac_status" >&5
+  echo "$as_me:37560: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:37567: \"$ac_try\"") >&5
+  { (eval echo "$as_me:37563: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:37570: \$? = $ac_status" >&5
+  echo "$as_me:37566: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
 
 	cf_cv_find_linkage_iconv=yes
@@ -37584,9 +37580,9 @@ cat "conftest.$ac_ext" >&5
 
 	test -n "$verbose" && echo "	find linkage for iconv library" 1>&6
 
-echo "${as_me:-configure}:37587: testing find linkage for iconv library ..." 1>&5
+echo "${as_me:-configure}:37583: testing find linkage for iconv library ..." 1>&5
 
-echo "${as_me:-configure}:37589: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5
+echo "${as_me:-configure}:37585: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5
 
 	cf_save_CPPFLAGS="$CPPFLAGS"
 	cf_test_CPPFLAGS="$CPPFLAGS"
@@ -37677,7 +37673,7 @@ cf_search="$cf_search $cf_header_path_list"
 		if test -d "$cf_cv_header_path_iconv" ; then
 			test -n "$verbose" && echo "	... testing $cf_cv_header_path_iconv" 1>&6
 
-echo "${as_me:-configure}:37680: testing ... testing $cf_cv_header_path_iconv ..." 1>&5
+echo "${as_me:-configure}:37676: testing ... testing $cf_cv_header_path_iconv ..." 1>&5
 
 			CPPFLAGS="$cf_save_CPPFLAGS"
 
@@ -37685,7 +37681,7 @@ echo "${as_me:-configure}:37680: testing ... testing $cf_cv_header_path_iconv ..
 	CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_iconv"
 
 			cat >"conftest.$ac_ext" <<_ACEOF
-#line 37688 "configure"
+#line 37684 "configure"
 #include "confdefs.h"
 
 #include <stdlib.h>
@@ -37704,21 +37700,21 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:37707: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:37703: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:37710: \$? = $ac_status" >&5
+  echo "$as_me:37706: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:37713: \"$ac_try\"") >&5
+  { (eval echo "$as_me:37709: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:37716: \$? = $ac_status" >&5
+  echo "$as_me:37712: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
 
 				test -n "$verbose" && echo "	... found iconv headers in $cf_cv_header_path_iconv" 1>&6
 
-echo "${as_me:-configure}:37721: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5
+echo "${as_me:-configure}:37717: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5
 
 				cf_cv_find_linkage_iconv=maybe
 				cf_test_CPPFLAGS="$CPPFLAGS"
@@ -37736,7 +37732,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 
 	if test "$cf_cv_find_linkage_iconv" = maybe ; then
 
-echo "${as_me:-configure}:37739: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5
+echo "${as_me:-configure}:37735: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5
 
 		cf_save_LIBS="$LIBS"
 		cf_save_LDFLAGS="$LDFLAGS"
@@ -37811,13 +37807,13 @@ cf_search="$cf_library_path_list $cf_search"
 				if test -d "$cf_cv_library_path_iconv" ; then
 					test -n "$verbose" && echo "	... testing $cf_cv_library_path_iconv" 1>&6
 
-echo "${as_me:-configure}:37814: testing ... testing $cf_cv_library_path_iconv ..." 1>&5
+echo "${as_me:-configure}:37810: testing ... testing $cf_cv_library_path_iconv ..." 1>&5
 
 					CPPFLAGS="$cf_test_CPPFLAGS"
 					LIBS="-liconv  $cf_save_LIBS"
 					LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_iconv"
 					cat >"conftest.$ac_ext" <<_ACEOF
-#line 37820 "configure"
+#line 37816 "configure"
 #include "confdefs.h"
 
 #include <stdlib.h>
@@ -37836,21 +37832,21 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:37839: \"$ac_link\"") >&5
+if { (eval echo "$as_me:37835: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:37842: \$? = $ac_status" >&5
+  echo "$as_me:37838: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:37845: \"$ac_try\"") >&5
+  { (eval echo "$as_me:37841: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:37848: \$? = $ac_status" >&5
+  echo "$as_me:37844: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
 
 					test -n "$verbose" && echo "	... found iconv library in $cf_cv_library_path_iconv" 1>&6
 
-echo "${as_me:-configure}:37853: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5
+echo "${as_me:-configure}:37849: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5
 
 					cf_cv_find_linkage_iconv=yes
 					cf_cv_library_file_iconv="-liconv"
@@ -37890,7 +37886,7 @@ am_cv_func_iconv="no, consider installing GNU libiconv"
 fi
 
 fi
-echo "$as_me:37893: result: $am_cv_func_iconv" >&5
+echo "$as_me:37889: result: $am_cv_func_iconv" >&5
 echo "${ECHO_T}$am_cv_func_iconv" >&6
 
   if test "$am_cv_func_iconv" = yes; then
@@ -37899,14 +37895,14 @@ cat >>confdefs.h <<\EOF
 #define HAVE_ICONV 1
 EOF
 
-    echo "$as_me:37902: checking if the declaration of iconv() needs const." >&5
+    echo "$as_me:37898: checking if the declaration of iconv() needs const." >&5
 echo $ECHO_N "checking if the declaration of iconv() needs const.... $ECHO_C" >&6
 if test "${am_cv_proto_iconv_const+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
       cat >"conftest.$ac_ext" <<_ACEOF
-#line 37909 "configure"
+#line 37905 "configure"
 #include "confdefs.h"
 
 #include <stdlib.h>
@@ -37931,16 +37927,16 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:37934: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:37930: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:37937: \$? = $ac_status" >&5
+  echo "$as_me:37933: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:37940: \"$ac_try\"") >&5
+  { (eval echo "$as_me:37936: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:37943: \$? = $ac_status" >&5
+  echo "$as_me:37939: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   am_cv_proto_iconv_const=no
 else
@@ -37950,7 +37946,7 @@ am_cv_proto_iconv_const=yes
 fi
 rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 fi
-echo "$as_me:37953: result: $am_cv_proto_iconv_const" >&5
+echo "$as_me:37949: result: $am_cv_proto_iconv_const" >&5
 echo "${ECHO_T}$am_cv_proto_iconv_const" >&6
 
     if test "$am_cv_proto_iconv_const" = yes ; then
@@ -37995,7 +37991,7 @@ if test -n "$cf_cv_header_path_iconv" ; then
 	CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir"
 
 			  cat >"conftest.$ac_ext" <<_ACEOF
-#line 37998 "configure"
+#line 37994 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 int
@@ -38007,16 +38003,16 @@ printf("Hello")
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:38010: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:38006: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:38013: \$? = $ac_status" >&5
+  echo "$as_me:38009: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:38016: \"$ac_try\"") >&5
+  { (eval echo "$as_me:38012: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:38019: \$? = $ac_status" >&5
+  echo "$as_me:38015: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   :
 else
@@ -38033,7 +38029,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 		if test "$cf_have_incdir" = no ; then
 		  test -n "$verbose" && echo "	adding $cf_add_incdir to include-path" 1>&6
 
-echo "${as_me:-configure}:38036: testing adding $cf_add_incdir to include-path ..." 1>&5
+echo "${as_me:-configure}:38032: testing adding $cf_add_incdir to include-path ..." 1>&5
 
 		  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
 
@@ -38072,7 +38068,7 @@ if test -n "$cf_cv_library_path_iconv" ; then
 			if test "$cf_have_libdir" = no ; then
 				test -n "$verbose" && echo "	adding $cf_add_libdir to library-path" 1>&6
 
-echo "${as_me:-configure}:38075: testing adding $cf_add_libdir to library-path ..." 1>&5
+echo "${as_me:-configure}:38071: testing adding $cf_add_libdir to library-path ..." 1>&5
 
 				LDFLAGS="-L$cf_add_libdir $LDFLAGS"
 			fi
@@ -38086,7 +38082,7 @@ fi
 if test "x$am_cv_func_iconv" = "xyes"
 then
 
-echo "$as_me:38089: checking if experimental support for Chinese UTF-8 should be used" >&5
+echo "$as_me:38085: checking if experimental support for Chinese UTF-8 should be used" >&5
 echo $ECHO_N "checking if experimental support for Chinese UTF-8 should be used... $ECHO_C" >&6
 
 # Check whether --enable-chinese-utf8 or --disable-chinese-utf8 was given.
@@ -38103,7 +38099,7 @@ else
 	use_cn_utf8=yes
 
 fi;
-echo "$as_me:38106: result: $use_cn_utf8" >&5
+echo "$as_me:38102: result: $use_cn_utf8" >&5
 echo "${ECHO_T}$use_cn_utf8" >&6
 if test "$use_cn_utf8" != no ; then
 
@@ -38114,7 +38110,7 @@ EOF
 	use_cjk_utf8=yes
 fi
 
-echo "$as_me:38117: checking if support for Japanese UTF-8 should be used" >&5
+echo "$as_me:38113: checking if support for Japanese UTF-8 should be used" >&5
 echo $ECHO_N "checking if support for Japanese UTF-8 should be used... $ECHO_C" >&6
 
 # Check whether --enable-japanese-utf8 or --disable-japanese-utf8 was given.
@@ -38131,7 +38127,7 @@ else
 	use_ja_utf8=yes
 
 fi;
-echo "$as_me:38134: result: $use_ja_utf8" >&5
+echo "$as_me:38130: result: $use_ja_utf8" >&5
 echo "${ECHO_T}$use_ja_utf8" >&6
 if test "$use_ja_utf8" != no ; then
 
@@ -38152,11 +38148,11 @@ fi
 else
 	test -n "$verbose" && echo "	skipping CJK features which depend on iconv" 1>&6
 
-echo "${as_me:-configure}:38155: testing skipping CJK features which depend on iconv ..." 1>&5
+echo "${as_me:-configure}:38151: testing skipping CJK features which depend on iconv ..." 1>&5
 
 fi
 
-echo "$as_me:38159: checking if experimental wcwidth/UTF-8 logic should be used" >&5
+echo "$as_me:38155: checking if experimental wcwidth/UTF-8 logic should be used" >&5
 echo $ECHO_N "checking if experimental wcwidth/UTF-8 logic should be used... $ECHO_C" >&6
 
 # Check whether --enable-wcwidth-support or --disable-wcwidth-support was given.
@@ -38173,7 +38169,7 @@ else
 	use_wcwidth=no
 
 fi;
-echo "$as_me:38176: result: $use_wcwidth" >&5
+echo "$as_me:38172: result: $use_wcwidth" >&5
 echo "${ECHO_T}$use_wcwidth" >&6
 test "$use_wcwidth" != no &&
 cat >>confdefs.h <<\EOF
@@ -38188,7 +38184,7 @@ case "$cf_cv_screen" in
 esac
 
 if test "$use_dft_colors" != no ; then
-echo "$as_me:38191: checking if you want to use default-colors" >&5
+echo "$as_me:38187: checking if you want to use default-colors" >&5
 echo $ECHO_N "checking if you want to use default-colors... $ECHO_C" >&6
 
 # Check whether --enable-default-colors or --disable-default-colors was given.
@@ -38205,7 +38201,7 @@ else
 	use_dft_colors=no
 
 fi;
-echo "$as_me:38208: result: $use_dft_colors" >&5
+echo "$as_me:38204: result: $use_dft_colors" >&5
 echo "${ECHO_T}$use_dft_colors" >&6
 test "$use_dft_colors" = "yes" &&
 cat >>confdefs.h <<\EOF
@@ -38214,7 +38210,7 @@ EOF
 
 fi
 
-echo "$as_me:38217: checking if experimental keyboard-layout logic should be used" >&5
+echo "$as_me:38213: checking if experimental keyboard-layout logic should be used" >&5
 echo $ECHO_N "checking if experimental keyboard-layout logic should be used... $ECHO_C" >&6
 
 # Check whether --enable-kbd-layout or --disable-kbd-layout was given.
@@ -38231,14 +38227,14 @@ else
 	use_kbd_layout=no
 
 fi;
-echo "$as_me:38234: result: $use_kbd_layout" >&5
+echo "$as_me:38230: result: $use_kbd_layout" >&5
 echo "${ECHO_T}$use_kbd_layout" >&6
 test "$use_kbd_layout" != no &&
 cat >>confdefs.h <<\EOF
 #define EXP_KEYBOARD_LAYOUT 1
 EOF
 
-echo "$as_me:38241: checking if experimental nested-table logic should be used" >&5
+echo "$as_me:38237: checking if experimental nested-table logic should be used" >&5
 echo $ECHO_N "checking if experimental nested-table logic should be used... $ECHO_C" >&6
 
 # Check whether --enable-nested-tables or --disable-nested-tables was given.
@@ -38255,14 +38251,14 @@ else
 	use_nested_tables=no
 
 fi;
-echo "$as_me:38258: result: $use_nested_tables" >&5
+echo "$as_me:38254: result: $use_nested_tables" >&5
 echo "${ECHO_T}$use_nested_tables" >&6
 test "$use_nested_tables" != no &&
 cat >>confdefs.h <<\EOF
 #define EXP_NESTED_TABLES 1
 EOF
 
-echo "$as_me:38265: checking if alternative line-edit bindings should be used" >&5
+echo "$as_me:38261: checking if alternative line-edit bindings should be used" >&5
 echo $ECHO_N "checking if alternative line-edit bindings should be used... $ECHO_C" >&6
 
 # Check whether --enable-alt-bindings or --disable-alt-bindings was given.
@@ -38279,14 +38275,14 @@ else
 	use_alt_bindings=yes
 
 fi;
-echo "$as_me:38282: result: $use_alt_bindings" >&5
+echo "$as_me:38278: result: $use_alt_bindings" >&5
 echo "${ECHO_T}$use_alt_bindings" >&6
 test "$use_alt_bindings" != no &&
 cat >>confdefs.h <<\EOF
 #define USE_ALT_BINDINGS 1
 EOF
 
-echo "$as_me:38289: checking if ascii case-conversion should be used" >&5
+echo "$as_me:38285: checking if ascii case-conversion should be used" >&5
 echo $ECHO_N "checking if ascii case-conversion should be used... $ECHO_C" >&6
 
 # Check whether --enable-ascii-ctypes or --disable-ascii-ctypes was given.
@@ -38303,14 +38299,14 @@ else
 	use_ascii_ctypes=yes
 
 fi;
-echo "$as_me:38306: result: $use_ascii_ctypes" >&5
+echo "$as_me:38302: result: $use_ascii_ctypes" >&5
 echo "${ECHO_T}$use_ascii_ctypes" >&6
 test "$use_ascii_ctypes" != no &&
 cat >>confdefs.h <<\EOF
 #define USE_ASCII_CTYPES 1
 EOF
 
-echo "$as_me:38313: checking if you want to use extended HTML DTD logic" >&5
+echo "$as_me:38309: checking if you want to use extended HTML DTD logic" >&5
 echo $ECHO_N "checking if you want to use extended HTML DTD logic... $ECHO_C" >&6
 
 # Check whether --enable-extended-dtd or --disable-extended-dtd was given.
@@ -38327,14 +38323,14 @@ else
 	use_ext_htmldtd=yes
 
 fi;
-echo "$as_me:38330: result: $use_ext_htmldtd" >&5
+echo "$as_me:38326: result: $use_ext_htmldtd" >&5
 echo "${ECHO_T}$use_ext_htmldtd" >&6
 test "$use_ext_htmldtd" = "no" &&
 cat >>confdefs.h <<\EOF
 #define NO_EXTENDED_HTMLDTD 1
 EOF
 
-echo "$as_me:38337: checking if file-upload logic should be used" >&5
+echo "$as_me:38333: checking if file-upload logic should be used" >&5
 echo $ECHO_N "checking if file-upload logic should be used... $ECHO_C" >&6
 
 # Check whether --enable-file-upload or --disable-file-upload was given.
@@ -38351,14 +38347,14 @@ else
 	use_file_upload=yes
 
 fi;
-echo "$as_me:38354: result: $use_file_upload" >&5
+echo "$as_me:38350: result: $use_file_upload" >&5
 echo "${ECHO_T}$use_file_upload" >&6
 test "$use_file_upload" != no &&
 cat >>confdefs.h <<\EOF
 #define USE_FILE_UPLOAD 1
 EOF
 
-echo "$as_me:38361: checking if IDNA support should be used" >&5
+echo "$as_me:38357: checking if IDNA support should be used" >&5
 echo $ECHO_N "checking if IDNA support should be used... $ECHO_C" >&6
 
 # Check whether --enable-idna or --disable-idna was given.
@@ -38375,7 +38371,7 @@ else
 	use_idna=yes
 
 fi;
-echo "$as_me:38378: result: $use_idna" >&5
+echo "$as_me:38374: result: $use_idna" >&5
 echo "${ECHO_T}$use_idna" >&6
 
 if test "$use_idna" = yes ; then
@@ -38417,7 +38413,7 @@ if test -n "$cf_searchpath/include" ; then
 	CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir"
 
 			  cat >"conftest.$ac_ext" <<_ACEOF
-#line 38420 "configure"
+#line 38416 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 int
@@ -38429,16 +38425,16 @@ printf("Hello")
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:38432: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:38428: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:38435: \$? = $ac_status" >&5
+  echo "$as_me:38431: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:38438: \"$ac_try\"") >&5
+  { (eval echo "$as_me:38434: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:38441: \$? = $ac_status" >&5
+  echo "$as_me:38437: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   :
 else
@@ -38455,7 +38451,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 		if test "$cf_have_incdir" = no ; then
 		  test -n "$verbose" && echo "	adding $cf_add_incdir to include-path" 1>&6
 
-echo "${as_me:-configure}:38458: testing adding $cf_add_incdir to include-path ..." 1>&5
+echo "${as_me:-configure}:38454: testing adding $cf_add_incdir to include-path ..." 1>&5
 
 		  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
 
@@ -38501,7 +38497,7 @@ if test -n "$cf_searchpath/../include" ; then
 	CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir"
 
 			  cat >"conftest.$ac_ext" <<_ACEOF
-#line 38504 "configure"
+#line 38500 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 int
@@ -38513,16 +38509,16 @@ printf("Hello")
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:38516: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:38512: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:38519: \$? = $ac_status" >&5
+  echo "$as_me:38515: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:38522: \"$ac_try\"") >&5
+  { (eval echo "$as_me:38518: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:38525: \$? = $ac_status" >&5
+  echo "$as_me:38521: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   :
 else
@@ -38539,7 +38535,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 		if test "$cf_have_incdir" = no ; then
 		  test -n "$verbose" && echo "	adding $cf_add_incdir to include-path" 1>&6
 
-echo "${as_me:-configure}:38542: testing adding $cf_add_incdir to include-path ..." 1>&5
+echo "${as_me:-configure}:38538: testing adding $cf_add_incdir to include-path ..." 1>&5
 
 		  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
 
@@ -38557,7 +38553,7 @@ echo "${as_me:-configure}:38542: testing adding $cf_add_incdir to include-path .
 fi
 
 	else
-{ { echo "$as_me:38560: error: cannot find  under $use_idna" >&5
+{ { echo "$as_me:38556: error: cannot find  under $use_idna" >&5
 echo "$as_me: error: cannot find  under $use_idna" >&2;}
    { (exit 1); exit 1; }; }
 	fi
@@ -38582,7 +38578,7 @@ if test -n "$cf_searchpath/lib" ; then
 			if test "$cf_have_libdir" = no ; then
 				test -n "$verbose" && echo "	adding $cf_add_libdir to library-path" 1>&6
 
-echo "${as_me:-configure}:38585: testing adding $cf_add_libdir to library-path ..." 1>&5
+echo "${as_me:-configure}:38581: testing adding $cf_add_libdir to library-path ..." 1>&5
 
 				LDFLAGS="-L$cf_add_libdir $LDFLAGS"
 			fi
@@ -38611,7 +38607,7 @@ if test -n "$cf_searchpath" ; then
 			if test "$cf_have_libdir" = no ; then
 				test -n "$verbose" && echo "	adding $cf_add_libdir to library-path" 1>&6
 
-echo "${as_me:-configure}:38614: testing adding $cf_add_libdir to library-path ..." 1>&5
+echo "${as_me:-configure}:38610: testing adding $cf_add_libdir to library-path ..." 1>&5
 
 				LDFLAGS="-L$cf_add_libdir $LDFLAGS"
 			fi
@@ -38620,7 +38616,7 @@ echo "${as_me:-configure}:38614: testing adding $cf_add_libdir to library-path .
 fi
 
 	else
-{ { echo "$as_me:38623: error: cannot find  under $use_idna" >&5
+{ { echo "$as_me:38619: error: cannot find  under $use_idna" >&5
 echo "$as_me: error: cannot find  under $use_idna" >&2;}
    { (exit 1); exit 1; }; }
 	fi
@@ -38634,12 +38630,12 @@ esac
 cf_cv_header_path_idn2=
 cf_cv_library_path_idn2=
 
-echo "${as_me:-configure}:38637: testing Starting FIND_LINKAGE(idn2,) ..." 1>&5
+echo "${as_me:-configure}:38633: testing Starting FIND_LINKAGE(idn2,) ..." 1>&5
 
 cf_save_LIBS="$LIBS"
 
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 38642 "configure"
+#line 38638 "configure"
 #include "confdefs.h"
 
 #include <stdio.h>
@@ -38658,16 +38654,16 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:38661: \"$ac_link\"") >&5
+if { (eval echo "$as_me:38657: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:38664: \$? = $ac_status" >&5
+  echo "$as_me:38660: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:38667: \"$ac_try\"") >&5
+  { (eval echo "$as_me:38663: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:38670: \$? = $ac_status" >&5
+  echo "$as_me:38666: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
 
 	cf_cv_find_linkage_idn2=yes
@@ -38681,7 +38677,7 @@ cat "conftest.$ac_ext" >&5
 LIBS="-lidn2 $LIBICONV $cf_save_LIBS"
 
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 38684 "configure"
+#line 38680 "configure"
 #include "confdefs.h"
 
 #include <stdio.h>
@@ -38700,16 +38696,16 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:38703: \"$ac_link\"") >&5
+if { (eval echo "$as_me:38699: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:38706: \$? = $ac_status" >&5
+  echo "$as_me:38702: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:38709: \"$ac_try\"") >&5
+  { (eval echo "$as_me:38705: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:38712: \$? = $ac_status" >&5
+  echo "$as_me:38708: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
 
 	cf_cv_find_linkage_idn2=yes
@@ -38726,9 +38722,9 @@ cat "conftest.$ac_ext" >&5
 
 	test -n "$verbose" && echo "	find linkage for idn2 library" 1>&6
 
-echo "${as_me:-configure}:38729: testing find linkage for idn2 library ..." 1>&5
+echo "${as_me:-configure}:38725: testing find linkage for idn2 library ..." 1>&5
 
-echo "${as_me:-configure}:38731: testing Searching for headers in FIND_LINKAGE(idn2,) ..." 1>&5
+echo "${as_me:-configure}:38727: testing Searching for headers in FIND_LINKAGE(idn2,) ..." 1>&5
 
 	cf_save_CPPFLAGS="$CPPFLAGS"
 	cf_test_CPPFLAGS="$CPPFLAGS"
@@ -38819,7 +38815,7 @@ cf_search="$cf_search $cf_header_path_list"
 		if test -d "$cf_cv_header_path_idn2" ; then
 			test -n "$verbose" && echo "	... testing $cf_cv_header_path_idn2" 1>&6
 
-echo "${as_me:-configure}:38822: testing ... testing $cf_cv_header_path_idn2 ..." 1>&5
+echo "${as_me:-configure}:38818: testing ... testing $cf_cv_header_path_idn2 ..." 1>&5
 
 			CPPFLAGS="$cf_save_CPPFLAGS"
 
@@ -38827,7 +38823,7 @@ echo "${as_me:-configure}:38822: testing ... testing $cf_cv_header_path_idn2 ...
 	CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_idn2"
 
 			cat >"conftest.$ac_ext" <<_ACEOF
-#line 38830 "configure"
+#line 38826 "configure"
 #include "confdefs.h"
 
 #include <stdio.h>
@@ -38846,21 +38842,21 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:38849: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:38845: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:38852: \$? = $ac_status" >&5
+  echo "$as_me:38848: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:38855: \"$ac_try\"") >&5
+  { (eval echo "$as_me:38851: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:38858: \$? = $ac_status" >&5
+  echo "$as_me:38854: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
 
 				test -n "$verbose" && echo "	... found idn2 headers in $cf_cv_header_path_idn2" 1>&6
 
-echo "${as_me:-configure}:38863: testing ... found idn2 headers in $cf_cv_header_path_idn2 ..." 1>&5
+echo "${as_me:-configure}:38859: testing ... found idn2 headers in $cf_cv_header_path_idn2 ..." 1>&5
 
 				cf_cv_find_linkage_idn2=maybe
 				cf_test_CPPFLAGS="$CPPFLAGS"
@@ -38878,7 +38874,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 
 	if test "$cf_cv_find_linkage_idn2" = maybe ; then
 
-echo "${as_me:-configure}:38881: testing Searching for idn2 library in FIND_LINKAGE(idn2,) ..." 1>&5
+echo "${as_me:-configure}:38877: testing Searching for idn2 library in FIND_LINKAGE(idn2,) ..." 1>&5
 
 		cf_save_LIBS="$LIBS"
 		cf_save_LDFLAGS="$LDFLAGS"
@@ -38953,13 +38949,13 @@ cf_search="$cf_library_path_list $cf_search"
 				if test -d "$cf_cv_library_path_idn2" ; then
 					test -n "$verbose" && echo "	... testing $cf_cv_library_path_idn2" 1>&6
 
-echo "${as_me:-configure}:38956: testing ... testing $cf_cv_library_path_idn2 ..." 1>&5
+echo "${as_me:-configure}:38952: testing ... testing $cf_cv_library_path_idn2 ..." 1>&5
 
 					CPPFLAGS="$cf_test_CPPFLAGS"
 					LIBS="-lidn2 $LIBICONV $cf_save_LIBS"
 					LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_idn2"
 					cat >"conftest.$ac_ext" <<_ACEOF
-#line 38962 "configure"
+#line 38958 "configure"
 #include "confdefs.h"
 
 #include <stdio.h>
@@ -38978,21 +38974,21 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:38981: \"$ac_link\"") >&5
+if { (eval echo "$as_me:38977: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:38984: \$? = $ac_status" >&5
+  echo "$as_me:38980: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:38987: \"$ac_try\"") >&5
+  { (eval echo "$as_me:38983: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:38990: \$? = $ac_status" >&5
+  echo "$as_me:38986: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
 
 					test -n "$verbose" && echo "	... found idn2 library in $cf_cv_library_path_idn2" 1>&6
 
-echo "${as_me:-configure}:38995: testing ... found idn2 library in $cf_cv_library_path_idn2 ..." 1>&5
+echo "${as_me:-configure}:38991: testing ... found idn2 library in $cf_cv_library_path_idn2 ..." 1>&5
 
 					cf_cv_find_linkage_idn2=yes
 					cf_cv_library_file_idn2="-lidn2"
@@ -39054,7 +39050,7 @@ if test -n "$cf_cv_header_path_idn2" ; then
 	CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir"
 
 			  cat >"conftest.$ac_ext" <<_ACEOF
-#line 39057 "configure"
+#line 39053 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 int
@@ -39066,16 +39062,16 @@ printf("Hello")
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:39069: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:39065: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:39072: \$? = $ac_status" >&5
+  echo "$as_me:39068: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:39075: \"$ac_try\"") >&5
+  { (eval echo "$as_me:39071: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:39078: \$? = $ac_status" >&5
+  echo "$as_me:39074: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   :
 else
@@ -39092,7 +39088,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 		if test "$cf_have_incdir" = no ; then
 		  test -n "$verbose" && echo "	adding $cf_add_incdir to include-path" 1>&6
 
-echo "${as_me:-configure}:39095: testing adding $cf_add_incdir to include-path ..." 1>&5
+echo "${as_me:-configure}:39091: testing adding $cf_add_incdir to include-path ..." 1>&5
 
 		  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
 
@@ -39128,7 +39124,7 @@ if test -n "$cf_cv_library_path_idn2" ; then
 			if test "$cf_have_libdir" = no ; then
 				test -n "$verbose" && echo "	adding $cf_add_libdir to library-path" 1>&6
 
-echo "${as_me:-configure}:39131: testing adding $cf_add_libdir to library-path ..." 1>&5
+echo "${as_me:-configure}:39127: testing adding $cf_add_libdir to library-path ..." 1>&5
 
 				LDFLAGS="-L$cf_add_libdir $LDFLAGS"
 			fi
@@ -39155,14 +39151,14 @@ LIBS="$cf_add_libs"
 else
 test -n "$verbose" && echo "	unsuccessful, will try idn (older)" 1>&6
 
-echo "${as_me:-configure}:39158: testing unsuccessful, will try idn (older) ..." 1>&5
+echo "${as_me:-configure}:39154: testing unsuccessful, will try idn (older) ..." 1>&5
 
 fi
 
 if test "x$cf_cv_find_linkage_idn2" = xyes ; then
 	test -n "$verbose" && echo "	found idn2 library" 1>&6
 
-echo "${as_me:-configure}:39165: testing found idn2 library ..." 1>&5
+echo "${as_me:-configure}:39161: testing found idn2 library ..." 1>&5
 
 cat >>confdefs.h <<\EOF
 #define USE_IDN2 1
@@ -39175,12 +39171,12 @@ else
 cf_cv_header_path_idn=
 cf_cv_library_path_idn=
 
-echo "${as_me:-configure}:39178: testing Starting FIND_LINKAGE(idn,) ..." 1>&5
+echo "${as_me:-configure}:39174: testing Starting FIND_LINKAGE(idn,) ..." 1>&5
 
 cf_save_LIBS="$LIBS"
 
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 39183 "configure"
+#line 39179 "configure"
 #include "confdefs.h"
 
 #include <stdio.h>
@@ -39199,16 +39195,16 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:39202: \"$ac_link\"") >&5
+if { (eval echo "$as_me:39198: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:39205: \$? = $ac_status" >&5
+  echo "$as_me:39201: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:39208: \"$ac_try\"") >&5
+  { (eval echo "$as_me:39204: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:39211: \$? = $ac_status" >&5
+  echo "$as_me:39207: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
 
 	cf_cv_find_linkage_idn=yes
@@ -39222,7 +39218,7 @@ cat "conftest.$ac_ext" >&5
 LIBS="-lidn $LIBICONV $cf_save_LIBS"
 
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 39225 "configure"
+#line 39221 "configure"
 #include "confdefs.h"
 
 #include <stdio.h>
@@ -39241,16 +39237,16 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:39244: \"$ac_link\"") >&5
+if { (eval echo "$as_me:39240: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:39247: \$? = $ac_status" >&5
+  echo "$as_me:39243: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:39250: \"$ac_try\"") >&5
+  { (eval echo "$as_me:39246: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:39253: \$? = $ac_status" >&5
+  echo "$as_me:39249: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
 
 	cf_cv_find_linkage_idn=yes
@@ -39267,9 +39263,9 @@ cat "conftest.$ac_ext" >&5
 
 	test -n "$verbose" && echo "	find linkage for idn library" 1>&6
 
-echo "${as_me:-configure}:39270: testing find linkage for idn library ..." 1>&5
+echo "${as_me:-configure}:39266: testing find linkage for idn library ..." 1>&5
 
-echo "${as_me:-configure}:39272: testing Searching for headers in FIND_LINKAGE(idn,) ..." 1>&5
+echo "${as_me:-configure}:39268: testing Searching for headers in FIND_LINKAGE(idn,) ..." 1>&5
 
 	cf_save_CPPFLAGS="$CPPFLAGS"
 	cf_test_CPPFLAGS="$CPPFLAGS"
@@ -39360,7 +39356,7 @@ cf_search="$cf_search $cf_header_path_list"
 		if test -d "$cf_cv_header_path_idn" ; then
 			test -n "$verbose" && echo "	... testing $cf_cv_header_path_idn" 1>&6
 
-echo "${as_me:-configure}:39363: testing ... testing $cf_cv_header_path_idn ..." 1>&5
+echo "${as_me:-configure}:39359: testing ... testing $cf_cv_header_path_idn ..." 1>&5
 
 			CPPFLAGS="$cf_save_CPPFLAGS"
 
@@ -39368,7 +39364,7 @@ echo "${as_me:-configure}:39363: testing ... testing $cf_cv_header_path_idn ..."
 	CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_idn"
 
 			cat >"conftest.$ac_ext" <<_ACEOF
-#line 39371 "configure"
+#line 39367 "configure"
 #include "confdefs.h"
 
 #include <stdio.h>
@@ -39387,21 +39383,21 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:39390: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:39386: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:39393: \$? = $ac_status" >&5
+  echo "$as_me:39389: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:39396: \"$ac_try\"") >&5
+  { (eval echo "$as_me:39392: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:39399: \$? = $ac_status" >&5
+  echo "$as_me:39395: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
 
 				test -n "$verbose" && echo "	... found idn headers in $cf_cv_header_path_idn" 1>&6
 
-echo "${as_me:-configure}:39404: testing ... found idn headers in $cf_cv_header_path_idn ..." 1>&5
+echo "${as_me:-configure}:39400: testing ... found idn headers in $cf_cv_header_path_idn ..." 1>&5
 
 				cf_cv_find_linkage_idn=maybe
 				cf_test_CPPFLAGS="$CPPFLAGS"
@@ -39419,7 +39415,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 
 	if test "$cf_cv_find_linkage_idn" = maybe ; then
 
-echo "${as_me:-configure}:39422: testing Searching for idn library in FIND_LINKAGE(idn,) ..." 1>&5
+echo "${as_me:-configure}:39418: testing Searching for idn library in FIND_LINKAGE(idn,) ..." 1>&5
 
 		cf_save_LIBS="$LIBS"
 		cf_save_LDFLAGS="$LDFLAGS"
@@ -39494,13 +39490,13 @@ cf_search="$cf_library_path_list $cf_search"
 				if test -d "$cf_cv_library_path_idn" ; then
 					test -n "$verbose" && echo "	... testing $cf_cv_library_path_idn" 1>&6
 
-echo "${as_me:-configure}:39497: testing ... testing $cf_cv_library_path_idn ..." 1>&5
+echo "${as_me:-configure}:39493: testing ... testing $cf_cv_library_path_idn ..." 1>&5
 
 					CPPFLAGS="$cf_test_CPPFLAGS"
 					LIBS="-lidn $LIBICONV $cf_save_LIBS"
 					LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_idn"
 					cat >"conftest.$ac_ext" <<_ACEOF
-#line 39503 "configure"
+#line 39499 "configure"
 #include "confdefs.h"
 
 #include <stdio.h>
@@ -39519,21 +39515,21 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:39522: \"$ac_link\"") >&5
+if { (eval echo "$as_me:39518: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:39525: \$? = $ac_status" >&5
+  echo "$as_me:39521: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:39528: \"$ac_try\"") >&5
+  { (eval echo "$as_me:39524: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:39531: \$? = $ac_status" >&5
+  echo "$as_me:39527: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
 
 					test -n "$verbose" && echo "	... found idn library in $cf_cv_library_path_idn" 1>&6
 
-echo "${as_me:-configure}:39536: testing ... found idn library in $cf_cv_library_path_idn ..." 1>&5
+echo "${as_me:-configure}:39532: testing ... found idn library in $cf_cv_library_path_idn ..." 1>&5
 
 					cf_cv_find_linkage_idn=yes
 					cf_cv_library_file_idn="-lidn"
@@ -39595,7 +39591,7 @@ if test -n "$cf_cv_header_path_idn" ; then
 	CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir"
 
 			  cat >"conftest.$ac_ext" <<_ACEOF
-#line 39598 "configure"
+#line 39594 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 int
@@ -39607,16 +39603,16 @@ printf("Hello")
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:39610: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:39606: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:39613: \$? = $ac_status" >&5
+  echo "$as_me:39609: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:39616: \"$ac_try\"") >&5
+  { (eval echo "$as_me:39612: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:39619: \$? = $ac_status" >&5
+  echo "$as_me:39615: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   :
 else
@@ -39633,7 +39629,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 		if test "$cf_have_incdir" = no ; then
 		  test -n "$verbose" && echo "	adding $cf_add_incdir to include-path" 1>&6
 
-echo "${as_me:-configure}:39636: testing adding $cf_add_incdir to include-path ..." 1>&5
+echo "${as_me:-configure}:39632: testing adding $cf_add_incdir to include-path ..." 1>&5
 
 		  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
 
@@ -39669,7 +39665,7 @@ if test -n "$cf_cv_library_path_idn" ; then
 			if test "$cf_have_libdir" = no ; then
 				test -n "$verbose" && echo "	adding $cf_add_libdir to library-path" 1>&6
 
-echo "${as_me:-configure}:39672: testing adding $cf_add_libdir to library-path ..." 1>&5
+echo "${as_me:-configure}:39668: testing adding $cf_add_libdir to library-path ..." 1>&5
 
 				LDFLAGS="-L$cf_add_libdir $LDFLAGS"
 			fi
@@ -39694,14 +39690,14 @@ done
 LIBS="$cf_add_libs"
 
 else
-{ echo "$as_me:39697: WARNING: Cannot find idn library" >&5
+{ echo "$as_me:39693: WARNING: Cannot find idn library" >&5
 echo "$as_me: WARNING: Cannot find idn library" >&2;}
 fi
 
 if test "x$cf_cv_find_linkage_idn" = xyes ; then
 	test -n "$verbose" && echo "	found idn library" 1>&6
 
-echo "${as_me:-configure}:39704: testing found idn library ..." 1>&5
+echo "${as_me:-configure}:39700: testing found idn library ..." 1>&5
 
 cat >>confdefs.h <<\EOF
 #define USE_IDNA 1
@@ -39712,7 +39708,7 @@ fi
 
 fi
 
-echo "$as_me:39715: checking if element-justification logic should be used" >&5
+echo "$as_me:39711: checking if element-justification logic should be used" >&5
 echo $ECHO_N "checking if element-justification logic should be used... $ECHO_C" >&6
 
 # Check whether --enable-justify-elts or --disable-justify-elts was given.
@@ -39729,14 +39725,14 @@ else
 	use_justify_elts=yes
 
 fi;
-echo "$as_me:39732: result: $use_justify_elts" >&5
+echo "$as_me:39728: result: $use_justify_elts" >&5
 echo "${ECHO_T}$use_justify_elts" >&6
 test "$use_justify_elts" != no &&
 cat >>confdefs.h <<\EOF
 #define USE_JUSTIFY_ELTS 1
 EOF
 
-echo "$as_me:39739: checking if partial-display should be used" >&5
+echo "$as_me:39735: checking if partial-display should be used" >&5
 echo $ECHO_N "checking if partial-display should be used... $ECHO_C" >&6
 
 # Check whether --enable-partial or --disable-partial was given.
@@ -39753,14 +39749,14 @@ else
 	use_partial_display=yes
 
 fi;
-echo "$as_me:39756: result: $use_partial_display" >&5
+echo "$as_me:39752: result: $use_partial_display" >&5
 echo "${ECHO_T}$use_partial_display" >&6
 test "$use_partial_display" != no &&
 cat >>confdefs.h <<\EOF
 #define DISP_PARTIAL 1
 EOF
 
-echo "$as_me:39763: checking if persistent-cookie logic should be used" >&5
+echo "$as_me:39759: checking if persistent-cookie logic should be used" >&5
 echo $ECHO_N "checking if persistent-cookie logic should be used... $ECHO_C" >&6
 
 # Check whether --enable-persistent-cookies or --disable-persistent-cookies was given.
@@ -39777,14 +39773,14 @@ else
 	use_filed_cookies=yes
 
 fi;
-echo "$as_me:39780: result: $use_filed_cookies" >&5
+echo "$as_me:39776: result: $use_filed_cookies" >&5
 echo "${ECHO_T}$use_filed_cookies" >&6
 test "$use_filed_cookies" != no &&
 cat >>confdefs.h <<\EOF
 #define USE_PERSISTENT_COOKIES 1
 EOF
 
-echo "$as_me:39787: checking if html source should be colorized" >&5
+echo "$as_me:39783: checking if html source should be colorized" >&5
 echo $ECHO_N "checking if html source should be colorized... $ECHO_C" >&6
 
 # Check whether --enable-prettysrc or --disable-prettysrc was given.
@@ -39801,14 +39797,14 @@ else
 	use_prettysrc=yes
 
 fi;
-echo "$as_me:39804: result: $use_prettysrc" >&5
+echo "$as_me:39800: result: $use_prettysrc" >&5
 echo "${ECHO_T}$use_prettysrc" >&6
 test "$use_prettysrc" != no &&
 cat >>confdefs.h <<\EOF
 #define USE_PRETTYSRC 1
 EOF
 
-echo "$as_me:39811: checking if progress-bar code should be used" >&5
+echo "$as_me:39807: checking if progress-bar code should be used" >&5
 echo $ECHO_N "checking if progress-bar code should be used... $ECHO_C" >&6
 
 # Check whether --enable-progressbar or --disable-progressbar was given.
@@ -39825,14 +39821,14 @@ else
 	use_progressbar=yes
 
 fi;
-echo "$as_me:39828: result: $use_progressbar" >&5
+echo "$as_me:39824: result: $use_progressbar" >&5
 echo "${ECHO_T}$use_progressbar" >&6
 test "$use_progressbar" != no &&
 cat >>confdefs.h <<\EOF
 #define USE_PROGRESSBAR 1
 EOF
 
-echo "$as_me:39835: checking if read-progress message should show ETA" >&5
+echo "$as_me:39831: checking if read-progress message should show ETA" >&5
 echo $ECHO_N "checking if read-progress message should show ETA... $ECHO_C" >&6
 
 # Check whether --enable-read-eta or --disable-read-eta was given.
@@ -39849,14 +39845,14 @@ else
 	use_read_eta=yes
 
 fi;
-echo "$as_me:39852: result: $use_read_eta" >&5
+echo "$as_me:39848: result: $use_read_eta" >&5
 echo "${ECHO_T}$use_read_eta" >&6
 test "$use_read_eta" != no &&
 cat >>confdefs.h <<\EOF
 #define USE_READPROGRESS 1
 EOF
 
-echo "$as_me:39859: checking if source caching should be used" >&5
+echo "$as_me:39855: checking if source caching should be used" >&5
 echo $ECHO_N "checking if source caching should be used... $ECHO_C" >&6
 
 # Check whether --enable-source-cache or --disable-source-cache was given.
@@ -39873,14 +39869,14 @@ else
 	use_source_cache=yes
 
 fi;
-echo "$as_me:39876: result: $use_source_cache" >&5
+echo "$as_me:39872: result: $use_source_cache" >&5
 echo "${ECHO_T}$use_source_cache" >&6
 test "$use_source_cache" != no &&
 cat >>confdefs.h <<\EOF
 #define USE_SOURCE_CACHE 1
 EOF
 
-echo "$as_me:39883: checking if scrollbar code should be used" >&5
+echo "$as_me:39879: checking if scrollbar code should be used" >&5
 echo $ECHO_N "checking if scrollbar code should be used... $ECHO_C" >&6
 
 # Check whether --enable-scrollbar or --disable-scrollbar was given.
@@ -39897,10 +39893,10 @@ else
 	use_scrollbar=yes
 
 fi;
-echo "$as_me:39900: result: $use_scrollbar" >&5
+echo "$as_me:39896: result: $use_scrollbar" >&5
 echo "${ECHO_T}$use_scrollbar" >&6
 
-echo "$as_me:39903: checking if charset-selection logic should be used" >&5
+echo "$as_me:39899: checking if charset-selection logic should be used" >&5
 echo $ECHO_N "checking if charset-selection logic should be used... $ECHO_C" >&6
 
 # Check whether --enable-charset-choice or --disable-charset-choice was given.
@@ -39917,14 +39913,14 @@ else
 	use_charset_choice=no
 
 fi;
-echo "$as_me:39920: result: $use_charset_choice" >&5
+echo "$as_me:39916: result: $use_charset_choice" >&5
 echo "${ECHO_T}$use_charset_choice" >&6
 test "$use_charset_choice" != no &&
 cat >>confdefs.h <<\EOF
 #define USE_CHARSET_CHOICE 1
 EOF
 
-echo "$as_me:39927: checking if you want to use external commands" >&5
+echo "$as_me:39923: checking if you want to use external commands" >&5
 echo $ECHO_N "checking if you want to use external commands... $ECHO_C" >&6
 
 # Check whether --enable-externs or --disable-externs was given.
@@ -39941,7 +39937,7 @@ else
 	use_externs=no
 
 fi;
-echo "$as_me:39944: result: $use_externs" >&5
+echo "$as_me:39940: result: $use_externs" >&5
 echo "${ECHO_T}$use_externs" >&6
 if test "$use_externs" != "no" ; then
 
@@ -39952,7 +39948,7 @@ EOF
 	EXTRA_OBJS="$EXTRA_OBJS LYExtern\$o"
 fi
 
-echo "$as_me:39955: checking if you want to use setfont support" >&5
+echo "$as_me:39951: checking if you want to use setfont support" >&5
 echo $ECHO_N "checking if you want to use setfont support... $ECHO_C" >&6
 
 # Check whether --enable-font-switch or --disable-font-switch was given.
@@ -39969,7 +39965,7 @@ else
 	use_setfont=no
 
 fi;
-echo "$as_me:39972: result: $use_setfont" >&5
+echo "$as_me:39968: result: $use_setfont" >&5
 echo "${ECHO_T}$use_setfont" >&6
 if test "$use_setfont" = yes ; then
 	case "$host_os" in
@@ -39980,7 +39976,7 @@ for ac_prog in $SETFONT consolechars setfont
 do
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
-echo "$as_me:39983: checking for $ac_word" >&5
+echo "$as_me:39979: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_path_SETFONT+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -39997,7 +39993,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   if $as_executable_p "$ac_dir/$ac_word"; then
    ac_cv_path_SETFONT="$ac_dir/$ac_word"
-   echo "$as_me:40000: found $ac_dir/$ac_word" >&5
+   echo "$as_me:39996: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -40008,10 +40004,10 @@ fi
 SETFONT=$ac_cv_path_SETFONT
 
 if test -n "$SETFONT"; then
-  echo "$as_me:40011: result: $SETFONT" >&5
+  echo "$as_me:40007: result: $SETFONT" >&5
 echo "${ECHO_T}$SETFONT" >&6
 else
-  echo "$as_me:40014: result: no" >&5
+  echo "$as_me:40010: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -40070,7 +40066,7 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "${as_me:-configure}:40073: testing defining path for ${cf_path_prog} ..." 1>&5
+echo "${as_me:-configure}:40069: testing defining path for ${cf_path_prog} ..." 1>&5
 
 cat >>confdefs.h <<EOF
 #define SETFONT_PATH "$cf_path_prog"
@@ -40088,19 +40084,19 @@ fi
 		SETFONT=built-in
 		test -n "$verbose" && echo "	Assume $host_os has font-switching" 1>&6
 
-echo "${as_me:-configure}:40091: testing Assume $host_os has font-switching ..." 1>&5
+echo "${as_me:-configure}:40087: testing Assume $host_os has font-switching ..." 1>&5
 
 		;;
 	(*)
 		SETFONT=unknown
 		test -n "$verbose" && echo "	Assume $host_os has no font-switching" 1>&6
 
-echo "${as_me:-configure}:40098: testing Assume $host_os has no font-switching ..." 1>&5
+echo "${as_me:-configure}:40094: testing Assume $host_os has no font-switching ..." 1>&5
 
 		;;
 	esac
 	if test -z "$SETFONT" ; then
-		{ echo "$as_me:40103: WARNING: Cannot find a font-setting program" >&5
+		{ echo "$as_me:40099: WARNING: Cannot find a font-setting program" >&5
 echo "$as_me: WARNING: Cannot find a font-setting program" >&2;}
 	elif test "$SETFONT" != unknown ; then
 
@@ -40111,7 +40107,7 @@ EOF
 	fi
 fi
 
-echo "$as_me:40114: checking if you want cgi-link support" >&5
+echo "$as_me:40110: checking if you want cgi-link support" >&5
 echo $ECHO_N "checking if you want cgi-link support... $ECHO_C" >&6
 
 # Check whether --enable-cgi-links or --disable-cgi-links was given.
@@ -40128,10 +40124,10 @@ EOF
 else
   enableval=no
 fi;
-echo "$as_me:40131: result: $enableval" >&5
+echo "$as_me:40127: result: $enableval" >&5
 echo "${ECHO_T}$enableval" >&6
 
-echo "$as_me:40134: checking if you want change-exec support" >&5
+echo "$as_me:40130: checking if you want change-exec support" >&5
 echo $ECHO_N "checking if you want change-exec support... $ECHO_C" >&6
 
 # Check whether --enable-change-exec or --disable-change-exec was given.
@@ -40148,14 +40144,14 @@ else
 	use_change_exec=no
 
 fi;
-echo "$as_me:40151: result: $use_change_exec" >&5
+echo "$as_me:40147: result: $use_change_exec" >&5
 echo "${ECHO_T}$use_change_exec" >&6
 test "$use_change_exec" = yes &&
 cat >>confdefs.h <<\EOF
 #define ENABLE_OPTS_CHANGE_EXEC 1
 EOF
 
-echo "$as_me:40158: checking if you want exec-links support" >&5
+echo "$as_me:40154: checking if you want exec-links support" >&5
 echo $ECHO_N "checking if you want exec-links support... $ECHO_C" >&6
 
 # Check whether --enable-exec-links or --disable-exec-links was given.
@@ -40172,14 +40168,14 @@ else
 	use_exec_links=$enableval
 
 fi;
-echo "$as_me:40175: result: $use_exec_links" >&5
+echo "$as_me:40171: result: $use_exec_links" >&5
 echo "${ECHO_T}$use_exec_links" >&6
 test "$use_exec_links" = yes &&
 cat >>confdefs.h <<\EOF
 #define EXEC_LINKS 1
 EOF
 
-echo "$as_me:40182: checking if you want exec-scripts support" >&5
+echo "$as_me:40178: checking if you want exec-scripts support" >&5
 echo $ECHO_N "checking if you want exec-scripts support... $ECHO_C" >&6
 
 # Check whether --enable-exec-scripts or --disable-exec-scripts was given.
@@ -40196,14 +40192,14 @@ else
 	use_exec_scripts=$enableval
 
 fi;
-echo "$as_me:40199: result: $use_exec_scripts" >&5
+echo "$as_me:40195: result: $use_exec_scripts" >&5
 echo "${ECHO_T}$use_exec_scripts" >&6
 test "$use_exec_scripts" = yes &&
 cat >>confdefs.h <<\EOF
 #define EXEC_SCRIPTS 1
 EOF
 
-echo "$as_me:40206: checking if you want internal-links feature" >&5
+echo "$as_me:40202: checking if you want internal-links feature" >&5
 echo $ECHO_N "checking if you want internal-links feature... $ECHO_C" >&6
 
 # Check whether --enable-internal-links or --disable-internal-links was given.
@@ -40220,14 +40216,14 @@ else
 	use_internal_links=no
 
 fi;
-echo "$as_me:40223: result: $use_internal_links" >&5
+echo "$as_me:40219: result: $use_internal_links" >&5
 echo "${ECHO_T}$use_internal_links" >&6
 test "$use_internal_links" = yes &&
 cat >>confdefs.h <<\EOF
 #define TRACK_INTERNAL_LINKS 1
 EOF
 
-echo "$as_me:40230: checking if you want to fork NSL requests" >&5
+echo "$as_me:40226: checking if you want to fork NSL requests" >&5
 echo $ECHO_N "checking if you want to fork NSL requests... $ECHO_C" >&6
 
 # Check whether --enable-nsl-fork or --disable-nsl-fork was given.
@@ -40244,7 +40240,7 @@ else
 	use_nsl_fork=no
 
 fi;
-echo "$as_me:40247: result: $use_nsl_fork" >&5
+echo "$as_me:40243: result: $use_nsl_fork" >&5
 echo "${ECHO_T}$use_nsl_fork" >&6
 if test "$use_nsl_fork" = yes ; then
 	case "$host_os" in
@@ -40265,7 +40261,7 @@ EOF
 	esac
 fi
 
-echo "$as_me:40268: checking if you want to log URL requests via syslog" >&5
+echo "$as_me:40264: checking if you want to log URL requests via syslog" >&5
 echo $ECHO_N "checking if you want to log URL requests via syslog... $ECHO_C" >&6
 
 # Check whether --enable-syslog or --disable-syslog was given.
@@ -40282,14 +40278,14 @@ else
 	use_syslog=no
 
 fi;
-echo "$as_me:40285: result: $use_syslog" >&5
+echo "$as_me:40281: result: $use_syslog" >&5
 echo "${ECHO_T}$use_syslog" >&6
 test "$use_syslog" = yes &&
 cat >>confdefs.h <<\EOF
 #define SYSLOG_REQUESTED_URLS 1
 EOF
 
-echo "$as_me:40292: checking if you want to underline links" >&5
+echo "$as_me:40288: checking if you want to underline links" >&5
 echo $ECHO_N "checking if you want to underline links... $ECHO_C" >&6
 
 # Check whether --enable-underlines or --disable-underlines was given.
@@ -40306,7 +40302,7 @@ else
 	use_underline=no
 
 fi;
-echo "$as_me:40309: result: $use_underline" >&5
+echo "$as_me:40305: result: $use_underline" >&5
 echo "${ECHO_T}$use_underline" >&6
 test "$use_underline" = yes &&
 cat >>confdefs.h <<\EOF
@@ -40318,7 +40314,7 @@ cat >>confdefs.h <<\EOF
 #define UNDERLINE_LINKS 0
 EOF
 
-echo "$as_me:40321: checking if help files should be gzip'ed" >&5
+echo "$as_me:40317: checking if help files should be gzip'ed" >&5
 echo $ECHO_N "checking if help files should be gzip'ed... $ECHO_C" >&6
 
 # Check whether --enable-gzip-help or --disable-gzip-help was given.
@@ -40335,10 +40331,10 @@ else
 	use_gzip_help=no
 
 fi;
-echo "$as_me:40338: result: $use_gzip_help" >&5
+echo "$as_me:40334: result: $use_gzip_help" >&5
 echo "${ECHO_T}$use_gzip_help" >&6
 
-echo "$as_me:40341: checking if you want to use libbz2 for decompression of some bzip2 files" >&5
+echo "$as_me:40337: checking if you want to use libbz2 for decompression of some bzip2 files" >&5
 echo $ECHO_N "checking if you want to use libbz2 for decompression of some bzip2 files... $ECHO_C" >&6
 
 # Check whether --with-bzlib or --without-bzlib was given.
@@ -40348,7 +40344,7 @@ if test "${with_bzlib+set}" = set; then
 else
   use_bzlib=yes
 fi;
-echo "$as_me:40351: result: $use_bzlib" >&5
+echo "$as_me:40347: result: $use_bzlib" >&5
 echo "${ECHO_T}$use_bzlib" >&6
 
 if test ".$use_bzlib" != ".no" ; then
@@ -40390,7 +40386,7 @@ if test -n "$cf_searchpath/include" ; then
 	CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir"
 
 			  cat >"conftest.$ac_ext" <<_ACEOF
-#line 40393 "configure"
+#line 40389 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 int
@@ -40402,16 +40398,16 @@ printf("Hello")
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:40405: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:40401: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:40408: \$? = $ac_status" >&5
+  echo "$as_me:40404: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:40411: \"$ac_try\"") >&5
+  { (eval echo "$as_me:40407: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:40414: \$? = $ac_status" >&5
+  echo "$as_me:40410: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   :
 else
@@ -40428,7 +40424,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 		if test "$cf_have_incdir" = no ; then
 		  test -n "$verbose" && echo "	adding $cf_add_incdir to include-path" 1>&6
 
-echo "${as_me:-configure}:40431: testing adding $cf_add_incdir to include-path ..." 1>&5
+echo "${as_me:-configure}:40427: testing adding $cf_add_incdir to include-path ..." 1>&5
 
 		  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
 
@@ -40474,7 +40470,7 @@ if test -n "$cf_searchpath/../include" ; then
 	CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir"
 
 			  cat >"conftest.$ac_ext" <<_ACEOF
-#line 40477 "configure"
+#line 40473 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 int
@@ -40486,16 +40482,16 @@ printf("Hello")
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:40489: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:40485: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:40492: \$? = $ac_status" >&5
+  echo "$as_me:40488: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:40495: \"$ac_try\"") >&5
+  { (eval echo "$as_me:40491: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:40498: \$? = $ac_status" >&5
+  echo "$as_me:40494: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   :
 else
@@ -40512,7 +40508,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 		if test "$cf_have_incdir" = no ; then
 		  test -n "$verbose" && echo "	adding $cf_add_incdir to include-path" 1>&6
 
-echo "${as_me:-configure}:40515: testing adding $cf_add_incdir to include-path ..." 1>&5
+echo "${as_me:-configure}:40511: testing adding $cf_add_incdir to include-path ..." 1>&5
 
 		  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
 
@@ -40530,7 +40526,7 @@ echo "${as_me:-configure}:40515: testing adding $cf_add_incdir to include-path .
 fi
 
 	else
-{ { echo "$as_me:40533: error: cannot find  under $use_bzlib" >&5
+{ { echo "$as_me:40529: error: cannot find  under $use_bzlib" >&5
 echo "$as_me: error: cannot find  under $use_bzlib" >&2;}
    { (exit 1); exit 1; }; }
 	fi
@@ -40555,7 +40551,7 @@ if test -n "$cf_searchpath/lib" ; then
 			if test "$cf_have_libdir" = no ; then
 				test -n "$verbose" && echo "	adding $cf_add_libdir to library-path" 1>&6
 
-echo "${as_me:-configure}:40558: testing adding $cf_add_libdir to library-path ..." 1>&5
+echo "${as_me:-configure}:40554: testing adding $cf_add_libdir to library-path ..." 1>&5
 
 				LDFLAGS="-L$cf_add_libdir $LDFLAGS"
 			fi
@@ -40584,7 +40580,7 @@ if test -n "$cf_searchpath" ; then
 			if test "$cf_have_libdir" = no ; then
 				test -n "$verbose" && echo "	adding $cf_add_libdir to library-path" 1>&6
 
-echo "${as_me:-configure}:40587: testing adding $cf_add_libdir to library-path ..." 1>&5
+echo "${as_me:-configure}:40583: testing adding $cf_add_libdir to library-path ..." 1>&5
 
 				LDFLAGS="-L$cf_add_libdir $LDFLAGS"
 			fi
@@ -40593,7 +40589,7 @@ echo "${as_me:-configure}:40587: testing adding $cf_add_libdir to library-path .
 fi
 
 	else
-{ { echo "$as_me:40596: error: cannot find  under $use_bzlib" >&5
+{ { echo "$as_me:40592: error: cannot find  under $use_bzlib" >&5
 echo "$as_me: error: cannot find  under $use_bzlib" >&2;}
    { (exit 1); exit 1; }; }
 	fi
@@ -40607,12 +40603,12 @@ esac
 cf_cv_header_path_bz2=
 cf_cv_library_path_bz2=
 
-echo "${as_me:-configure}:40610: testing Starting FIND_LINKAGE(bz2,bzlib) ..." 1>&5
+echo "${as_me:-configure}:40606: testing Starting FIND_LINKAGE(bz2,bzlib) ..." 1>&5
 
 cf_save_LIBS="$LIBS"
 
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 40615 "configure"
+#line 40611 "configure"
 #include "confdefs.h"
 
 #include <stdio.h>
@@ -40629,16 +40625,16 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:40632: \"$ac_link\"") >&5
+if { (eval echo "$as_me:40628: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:40635: \$? = $ac_status" >&5
+  echo "$as_me:40631: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:40638: \"$ac_try\"") >&5
+  { (eval echo "$as_me:40634: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:40641: \$? = $ac_status" >&5
+  echo "$as_me:40637: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
 
 	cf_cv_find_linkage_bz2=yes
@@ -40652,7 +40648,7 @@ cat "conftest.$ac_ext" >&5
 LIBS="-lbz2  $cf_save_LIBS"
 
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 40655 "configure"
+#line 40651 "configure"
 #include "confdefs.h"
 
 #include <stdio.h>
@@ -40669,16 +40665,16 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:40672: \"$ac_link\"") >&5
+if { (eval echo "$as_me:40668: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:40675: \$? = $ac_status" >&5
+  echo "$as_me:40671: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:40678: \"$ac_try\"") >&5
+  { (eval echo "$as_me:40674: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:40681: \$? = $ac_status" >&5
+  echo "$as_me:40677: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
 
 	cf_cv_find_linkage_bz2=yes
@@ -40695,9 +40691,9 @@ cat "conftest.$ac_ext" >&5
 
 	test -n "$verbose" && echo "	find linkage for bz2 library" 1>&6
 
-echo "${as_me:-configure}:40698: testing find linkage for bz2 library ..." 1>&5
+echo "${as_me:-configure}:40694: testing find linkage for bz2 library ..." 1>&5
 
-echo "${as_me:-configure}:40700: testing Searching for headers in FIND_LINKAGE(bz2,bzlib) ..." 1>&5
+echo "${as_me:-configure}:40696: testing Searching for headers in FIND_LINKAGE(bz2,bzlib) ..." 1>&5
 
 	cf_save_CPPFLAGS="$CPPFLAGS"
 	cf_test_CPPFLAGS="$CPPFLAGS"
@@ -40788,7 +40784,7 @@ cf_search="$cf_search $cf_header_path_list"
 		if test -d "$cf_cv_header_path_bz2" ; then
 			test -n "$verbose" && echo "	... testing $cf_cv_header_path_bz2" 1>&6
 
-echo "${as_me:-configure}:40791: testing ... testing $cf_cv_header_path_bz2 ..." 1>&5
+echo "${as_me:-configure}:40787: testing ... testing $cf_cv_header_path_bz2 ..." 1>&5
 
 			CPPFLAGS="$cf_save_CPPFLAGS"
 
@@ -40796,7 +40792,7 @@ echo "${as_me:-configure}:40791: testing ... testing $cf_cv_header_path_bz2 ..."
 	CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_bz2"
 
 			cat >"conftest.$ac_ext" <<_ACEOF
-#line 40799 "configure"
+#line 40795 "configure"
 #include "confdefs.h"
 
 #include <stdio.h>
@@ -40813,21 +40809,21 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:40816: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:40812: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:40819: \$? = $ac_status" >&5
+  echo "$as_me:40815: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:40822: \"$ac_try\"") >&5
+  { (eval echo "$as_me:40818: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:40825: \$? = $ac_status" >&5
+  echo "$as_me:40821: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
 
 				test -n "$verbose" && echo "	... found bz2 headers in $cf_cv_header_path_bz2" 1>&6
 
-echo "${as_me:-configure}:40830: testing ... found bz2 headers in $cf_cv_header_path_bz2 ..." 1>&5
+echo "${as_me:-configure}:40826: testing ... found bz2 headers in $cf_cv_header_path_bz2 ..." 1>&5
 
 				cf_cv_find_linkage_bz2=maybe
 				cf_test_CPPFLAGS="$CPPFLAGS"
@@ -40845,7 +40841,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 
 	if test "$cf_cv_find_linkage_bz2" = maybe ; then
 
-echo "${as_me:-configure}:40848: testing Searching for bz2 library in FIND_LINKAGE(bz2,bzlib) ..." 1>&5
+echo "${as_me:-configure}:40844: testing Searching for bz2 library in FIND_LINKAGE(bz2,bzlib) ..." 1>&5
 
 		cf_save_LIBS="$LIBS"
 		cf_save_LDFLAGS="$LDFLAGS"
@@ -40853,7 +40849,7 @@ echo "${as_me:-configure}:40848: testing Searching for bz2 library in FIND_LINKA
 		CPPFLAGS="$cf_test_CPPFLAGS"
 		LIBS="-lbz2  $cf_save_LIBS"
 		cat >"conftest.$ac_ext" <<_ACEOF
-#line 40856 "configure"
+#line 40852 "configure"
 #include "confdefs.h"
 
 #include <stdio.h>
@@ -40870,21 +40866,21 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:40873: \"$ac_link\"") >&5
+if { (eval echo "$as_me:40869: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:40876: \$? = $ac_status" >&5
+  echo "$as_me:40872: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:40879: \"$ac_try\"") >&5
+  { (eval echo "$as_me:40875: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:40882: \$? = $ac_status" >&5
+  echo "$as_me:40878: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
 
 			test -n "$verbose" && echo "	... found bz2 library in system" 1>&6
 
-echo "${as_me:-configure}:40887: testing ... found bz2 library in system ..." 1>&5
+echo "${as_me:-configure}:40883: testing ... found bz2 library in system ..." 1>&5
 
 			cf_cv_find_linkage_bz2=yes
 else
@@ -40965,13 +40961,13 @@ cf_search="$cf_library_path_list $cf_search"
 				if test -d "$cf_cv_library_path_bz2" ; then
 					test -n "$verbose" && echo "	... testing $cf_cv_library_path_bz2" 1>&6
 
-echo "${as_me:-configure}:40968: testing ... testing $cf_cv_library_path_bz2 ..." 1>&5
+echo "${as_me:-configure}:40964: testing ... testing $cf_cv_library_path_bz2 ..." 1>&5
 
 					CPPFLAGS="$cf_test_CPPFLAGS"
 					LIBS="-lbz2  $cf_save_LIBS"
 					LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_bz2"
 					cat >"conftest.$ac_ext" <<_ACEOF
-#line 40974 "configure"
+#line 40970 "configure"
 #include "confdefs.h"
 
 #include <stdio.h>
@@ -40988,21 +40984,21 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:40991: \"$ac_link\"") >&5
+if { (eval echo "$as_me:40987: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:40994: \$? = $ac_status" >&5
+  echo "$as_me:40990: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:40997: \"$ac_try\"") >&5
+  { (eval echo "$as_me:40993: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:41000: \$? = $ac_status" >&5
+  echo "$as_me:40996: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
 
 					test -n "$verbose" && echo "	... found bz2 library in $cf_cv_library_path_bz2" 1>&6
 
-echo "${as_me:-configure}:41005: testing ... found bz2 library in $cf_cv_library_path_bz2 ..." 1>&5
+echo "${as_me:-configure}:41001: testing ... found bz2 library in $cf_cv_library_path_bz2 ..." 1>&5
 
 					cf_cv_find_linkage_bz2=yes
 					cf_cv_library_file_bz2="-lbz2"
@@ -41064,7 +41060,7 @@ if test -n "$cf_cv_header_path_bz2" ; then
 	CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir"
 
 			  cat >"conftest.$ac_ext" <<_ACEOF
-#line 41067 "configure"
+#line 41063 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 int
@@ -41076,16 +41072,16 @@ printf("Hello")
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:41079: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:41075: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:41082: \$? = $ac_status" >&5
+  echo "$as_me:41078: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:41085: \"$ac_try\"") >&5
+  { (eval echo "$as_me:41081: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:41088: \$? = $ac_status" >&5
+  echo "$as_me:41084: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   :
 else
@@ -41102,7 +41098,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 		if test "$cf_have_incdir" = no ; then
 		  test -n "$verbose" && echo "	adding $cf_add_incdir to include-path" 1>&6
 
-echo "${as_me:-configure}:41105: testing adding $cf_add_incdir to include-path ..." 1>&5
+echo "${as_me:-configure}:41101: testing adding $cf_add_incdir to include-path ..." 1>&5
 
 		  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
 
@@ -41138,7 +41134,7 @@ if test -n "$cf_cv_library_path_bz2" ; then
 			if test "$cf_have_libdir" = no ; then
 				test -n "$verbose" && echo "	adding $cf_add_libdir to library-path" 1>&6
 
-echo "${as_me:-configure}:41141: testing adding $cf_add_libdir to library-path ..." 1>&5
+echo "${as_me:-configure}:41137: testing adding $cf_add_libdir to library-path ..." 1>&5
 
 				LDFLAGS="-L$cf_add_libdir $LDFLAGS"
 			fi
@@ -41163,7 +41159,7 @@ done
 LIBS="$cf_add_libs"
 
 else
-{ echo "$as_me:41166: WARNING: Cannot find bz2 library" >&5
+{ echo "$as_me:41162: WARNING: Cannot find bz2 library" >&5
 echo "$as_me: WARNING: Cannot find bz2 library" >&2;}
 fi
 
@@ -41174,7 +41170,7 @@ EOF
 
 fi
 
-echo "$as_me:41177: checking if you want to use zlib for decompression of some gzip files" >&5
+echo "$as_me:41173: checking if you want to use zlib for decompression of some gzip files" >&5
 echo $ECHO_N "checking if you want to use zlib for decompression of some gzip files... $ECHO_C" >&6
 
 # Check whether --with-zlib or --without-zlib was given.
@@ -41184,7 +41180,7 @@ if test "${with_zlib+set}" = set; then
 else
   use_zlib=yes
 fi;
-echo "$as_me:41187: result: $use_zlib" >&5
+echo "$as_me:41183: result: $use_zlib" >&5
 echo "${ECHO_T}$use_zlib" >&6
 
 if test ".$use_zlib" != ".no" ; then
@@ -41226,7 +41222,7 @@ if test -n "$cf_searchpath/include" ; then
 	CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir"
 
 			  cat >"conftest.$ac_ext" <<_ACEOF
-#line 41229 "configure"
+#line 41225 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 int
@@ -41238,16 +41234,16 @@ printf("Hello")
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:41241: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:41237: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:41244: \$? = $ac_status" >&5
+  echo "$as_me:41240: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:41247: \"$ac_try\"") >&5
+  { (eval echo "$as_me:41243: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:41250: \$? = $ac_status" >&5
+  echo "$as_me:41246: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   :
 else
@@ -41264,7 +41260,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 		if test "$cf_have_incdir" = no ; then
 		  test -n "$verbose" && echo "	adding $cf_add_incdir to include-path" 1>&6
 
-echo "${as_me:-configure}:41267: testing adding $cf_add_incdir to include-path ..." 1>&5
+echo "${as_me:-configure}:41263: testing adding $cf_add_incdir to include-path ..." 1>&5
 
 		  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
 
@@ -41310,7 +41306,7 @@ if test -n "$cf_searchpath/../include" ; then
 	CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir"
 
 			  cat >"conftest.$ac_ext" <<_ACEOF
-#line 41313 "configure"
+#line 41309 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 int
@@ -41322,16 +41318,16 @@ printf("Hello")
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:41325: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:41321: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:41328: \$? = $ac_status" >&5
+  echo "$as_me:41324: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:41331: \"$ac_try\"") >&5
+  { (eval echo "$as_me:41327: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:41334: \$? = $ac_status" >&5
+  echo "$as_me:41330: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   :
 else
@@ -41348,7 +41344,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 		if test "$cf_have_incdir" = no ; then
 		  test -n "$verbose" && echo "	adding $cf_add_incdir to include-path" 1>&6
 
-echo "${as_me:-configure}:41351: testing adding $cf_add_incdir to include-path ..." 1>&5
+echo "${as_me:-configure}:41347: testing adding $cf_add_incdir to include-path ..." 1>&5
 
 		  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
 
@@ -41366,7 +41362,7 @@ echo "${as_me:-configure}:41351: testing adding $cf_add_incdir to include-path .
 fi
 
 	else
-{ { echo "$as_me:41369: error: cannot find  under $use_zlib" >&5
+{ { echo "$as_me:41365: error: cannot find  under $use_zlib" >&5
 echo "$as_me: error: cannot find  under $use_zlib" >&2;}
    { (exit 1); exit 1; }; }
 	fi
@@ -41391,7 +41387,7 @@ if test -n "$cf_searchpath/lib" ; then
 			if test "$cf_have_libdir" = no ; then
 				test -n "$verbose" && echo "	adding $cf_add_libdir to library-path" 1>&6
 
-echo "${as_me:-configure}:41394: testing adding $cf_add_libdir to library-path ..." 1>&5
+echo "${as_me:-configure}:41390: testing adding $cf_add_libdir to library-path ..." 1>&5
 
 				LDFLAGS="-L$cf_add_libdir $LDFLAGS"
 			fi
@@ -41420,7 +41416,7 @@ if test -n "$cf_searchpath" ; then
 			if test "$cf_have_libdir" = no ; then
 				test -n "$verbose" && echo "	adding $cf_add_libdir to library-path" 1>&6
 
-echo "${as_me:-configure}:41423: testing adding $cf_add_libdir to library-path ..." 1>&5
+echo "${as_me:-configure}:41419: testing adding $cf_add_libdir to library-path ..." 1>&5
 
 				LDFLAGS="-L$cf_add_libdir $LDFLAGS"
 			fi
@@ -41429,7 +41425,7 @@ echo "${as_me:-configure}:41423: testing adding $cf_add_libdir to library-path .
 fi
 
 	else
-{ { echo "$as_me:41432: error: cannot find  under $use_zlib" >&5
+{ { echo "$as_me:41428: error: cannot find  under $use_zlib" >&5
 echo "$as_me: error: cannot find  under $use_zlib" >&2;}
    { (exit 1); exit 1; }; }
 	fi
@@ -41443,12 +41439,12 @@ esac
 cf_cv_header_path_z=
 cf_cv_library_path_z=
 
-echo "${as_me:-configure}:41446: testing Starting FIND_LINKAGE(z,zlib) ..." 1>&5
+echo "${as_me:-configure}:41442: testing Starting FIND_LINKAGE(z,zlib) ..." 1>&5
 
 cf_save_LIBS="$LIBS"
 
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 41451 "configure"
+#line 41447 "configure"
 #include "confdefs.h"
 
 #include <zlib.h>
@@ -41464,16 +41460,16 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:41467: \"$ac_link\"") >&5
+if { (eval echo "$as_me:41463: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:41470: \$? = $ac_status" >&5
+  echo "$as_me:41466: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:41473: \"$ac_try\"") >&5
+  { (eval echo "$as_me:41469: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:41476: \$? = $ac_status" >&5
+  echo "$as_me:41472: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
 
 	cf_cv_find_linkage_z=yes
@@ -41487,7 +41483,7 @@ cat "conftest.$ac_ext" >&5
 LIBS="-lz  $cf_save_LIBS"
 
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 41490 "configure"
+#line 41486 "configure"
 #include "confdefs.h"
 
 #include <zlib.h>
@@ -41503,16 +41499,16 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:41506: \"$ac_link\"") >&5
+if { (eval echo "$as_me:41502: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:41509: \$? = $ac_status" >&5
+  echo "$as_me:41505: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:41512: \"$ac_try\"") >&5
+  { (eval echo "$as_me:41508: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:41515: \$? = $ac_status" >&5
+  echo "$as_me:41511: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
 
 	cf_cv_find_linkage_z=yes
@@ -41529,9 +41525,9 @@ cat "conftest.$ac_ext" >&5
 
 	test -n "$verbose" && echo "	find linkage for z library" 1>&6
 
-echo "${as_me:-configure}:41532: testing find linkage for z library ..." 1>&5
+echo "${as_me:-configure}:41528: testing find linkage for z library ..." 1>&5
 
-echo "${as_me:-configure}:41534: testing Searching for headers in FIND_LINKAGE(z,zlib) ..." 1>&5
+echo "${as_me:-configure}:41530: testing Searching for headers in FIND_LINKAGE(z,zlib) ..." 1>&5
 
 	cf_save_CPPFLAGS="$CPPFLAGS"
 	cf_test_CPPFLAGS="$CPPFLAGS"
@@ -41622,7 +41618,7 @@ cf_search="$cf_search $cf_header_path_list"
 		if test -d "$cf_cv_header_path_z" ; then
 			test -n "$verbose" && echo "	... testing $cf_cv_header_path_z" 1>&6
 
-echo "${as_me:-configure}:41625: testing ... testing $cf_cv_header_path_z ..." 1>&5
+echo "${as_me:-configure}:41621: testing ... testing $cf_cv_header_path_z ..." 1>&5
 
 			CPPFLAGS="$cf_save_CPPFLAGS"
 
@@ -41630,7 +41626,7 @@ echo "${as_me:-configure}:41625: testing ... testing $cf_cv_header_path_z ..." 1
 	CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_z"
 
 			cat >"conftest.$ac_ext" <<_ACEOF
-#line 41633 "configure"
+#line 41629 "configure"
 #include "confdefs.h"
 
 #include <zlib.h>
@@ -41646,21 +41642,21 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:41649: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:41645: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:41652: \$? = $ac_status" >&5
+  echo "$as_me:41648: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:41655: \"$ac_try\"") >&5
+  { (eval echo "$as_me:41651: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:41658: \$? = $ac_status" >&5
+  echo "$as_me:41654: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
 
 				test -n "$verbose" && echo "	... found z headers in $cf_cv_header_path_z" 1>&6
 
-echo "${as_me:-configure}:41663: testing ... found z headers in $cf_cv_header_path_z ..." 1>&5
+echo "${as_me:-configure}:41659: testing ... found z headers in $cf_cv_header_path_z ..." 1>&5
 
 				cf_cv_find_linkage_z=maybe
 				cf_test_CPPFLAGS="$CPPFLAGS"
@@ -41678,7 +41674,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 
 	if test "$cf_cv_find_linkage_z" = maybe ; then
 
-echo "${as_me:-configure}:41681: testing Searching for z library in FIND_LINKAGE(z,zlib) ..." 1>&5
+echo "${as_me:-configure}:41677: testing Searching for z library in FIND_LINKAGE(z,zlib) ..." 1>&5
 
 		cf_save_LIBS="$LIBS"
 		cf_save_LDFLAGS="$LDFLAGS"
@@ -41686,7 +41682,7 @@ echo "${as_me:-configure}:41681: testing Searching for z library in FIND_LINKAGE
 		CPPFLAGS="$cf_test_CPPFLAGS"
 		LIBS="-lz  $cf_save_LIBS"
 		cat >"conftest.$ac_ext" <<_ACEOF
-#line 41689 "configure"
+#line 41685 "configure"
 #include "confdefs.h"
 
 #include <zlib.h>
@@ -41702,21 +41698,21 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:41705: \"$ac_link\"") >&5
+if { (eval echo "$as_me:41701: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:41708: \$? = $ac_status" >&5
+  echo "$as_me:41704: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:41711: \"$ac_try\"") >&5
+  { (eval echo "$as_me:41707: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:41714: \$? = $ac_status" >&5
+  echo "$as_me:41710: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
 
 			test -n "$verbose" && echo "	... found z library in system" 1>&6
 
-echo "${as_me:-configure}:41719: testing ... found z library in system ..." 1>&5
+echo "${as_me:-configure}:41715: testing ... found z library in system ..." 1>&5
 
 			cf_cv_find_linkage_z=yes
 else
@@ -41797,13 +41793,13 @@ cf_search="$cf_library_path_list $cf_search"
 				if test -d "$cf_cv_library_path_z" ; then
 					test -n "$verbose" && echo "	... testing $cf_cv_library_path_z" 1>&6
 
-echo "${as_me:-configure}:41800: testing ... testing $cf_cv_library_path_z ..." 1>&5
+echo "${as_me:-configure}:41796: testing ... testing $cf_cv_library_path_z ..." 1>&5
 
 					CPPFLAGS="$cf_test_CPPFLAGS"
 					LIBS="-lz  $cf_save_LIBS"
 					LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_z"
 					cat >"conftest.$ac_ext" <<_ACEOF
-#line 41806 "configure"
+#line 41802 "configure"
 #include "confdefs.h"
 
 #include <zlib.h>
@@ -41819,21 +41815,21 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:41822: \"$ac_link\"") >&5
+if { (eval echo "$as_me:41818: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:41825: \$? = $ac_status" >&5
+  echo "$as_me:41821: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:41828: \"$ac_try\"") >&5
+  { (eval echo "$as_me:41824: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:41831: \$? = $ac_status" >&5
+  echo "$as_me:41827: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
 
 					test -n "$verbose" && echo "	... found z library in $cf_cv_library_path_z" 1>&6
 
-echo "${as_me:-configure}:41836: testing ... found z library in $cf_cv_library_path_z ..." 1>&5
+echo "${as_me:-configure}:41832: testing ... found z library in $cf_cv_library_path_z ..." 1>&5
 
 					cf_cv_find_linkage_z=yes
 					cf_cv_library_file_z="-lz"
@@ -41895,7 +41891,7 @@ if test -n "$cf_cv_header_path_z" ; then
 	CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir"
 
 			  cat >"conftest.$ac_ext" <<_ACEOF
-#line 41898 "configure"
+#line 41894 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 int
@@ -41907,16 +41903,16 @@ printf("Hello")
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:41910: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:41906: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:41913: \$? = $ac_status" >&5
+  echo "$as_me:41909: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:41916: \"$ac_try\"") >&5
+  { (eval echo "$as_me:41912: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:41919: \$? = $ac_status" >&5
+  echo "$as_me:41915: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   :
 else
@@ -41933,7 +41929,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 		if test "$cf_have_incdir" = no ; then
 		  test -n "$verbose" && echo "	adding $cf_add_incdir to include-path" 1>&6
 
-echo "${as_me:-configure}:41936: testing adding $cf_add_incdir to include-path ..." 1>&5
+echo "${as_me:-configure}:41932: testing adding $cf_add_incdir to include-path ..." 1>&5
 
 		  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
 
@@ -41969,7 +41965,7 @@ if test -n "$cf_cv_library_path_z" ; then
 			if test "$cf_have_libdir" = no ; then
 				test -n "$verbose" && echo "	adding $cf_add_libdir to library-path" 1>&6
 
-echo "${as_me:-configure}:41972: testing adding $cf_add_libdir to library-path ..." 1>&5
+echo "${as_me:-configure}:41968: testing adding $cf_add_libdir to library-path ..." 1>&5
 
 				LDFLAGS="-L$cf_add_libdir $LDFLAGS"
 			fi
@@ -41994,7 +41990,7 @@ done
 LIBS="$cf_add_libs"
 
 else
-{ echo "$as_me:41997: WARNING: Cannot find z library" >&5
+{ echo "$as_me:41993: WARNING: Cannot find z library" >&5
 echo "$as_me: WARNING: Cannot find z library" >&2;}
 fi
 
@@ -42003,13 +41999,13 @@ for ac_func in \
 
 do
 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
-echo "$as_me:42006: checking for $ac_func" >&5
+echo "$as_me:42002: checking for $ac_func" >&5
 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
 if eval "test \"\${$as_ac_var+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >"conftest.$ac_ext" <<_ACEOF
-#line 42012 "configure"
+#line 42008 "configure"
 #include "confdefs.h"
 #define $ac_func autoconf_temporary
 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
@@ -42040,16 +42036,16 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:42043: \"$ac_link\"") >&5
+if { (eval echo "$as_me:42039: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:42046: \$? = $ac_status" >&5
+  echo "$as_me:42042: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:42049: \"$ac_try\"") >&5
+  { (eval echo "$as_me:42045: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:42052: \$? = $ac_status" >&5
+  echo "$as_me:42048: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   eval "$as_ac_var=yes"
 else
@@ -42059,7 +42055,7 @@ eval "$as_ac_var=no"
 fi
 rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext"
 fi
-echo "$as_me:42062: result: `eval echo '${'"$as_ac_var"'}'`" >&5
+echo "$as_me:42058: result: `eval echo '${'"$as_ac_var"'}'`" >&5
 echo "${ECHO_T}`eval echo '${'"$as_ac_var"'}'`" >&6
 if test "`eval echo '${'"$as_ac_var"'}'`" = yes; then
   cat >>confdefs.h <<EOF
@@ -42076,7 +42072,7 @@ EOF
 
 fi
 
-echo "$as_me:42079: checking if you want to use brotli decompression" >&5
+echo "$as_me:42075: checking if you want to use brotli decompression" >&5
 echo $ECHO_N "checking if you want to use brotli decompression... $ECHO_C" >&6
 
 # Check whether --with-brotli or --without-brotli was given.
@@ -42086,7 +42082,7 @@ if test "${with_brotli+set}" = set; then
 else
   use_brotli=yes
 fi;
-echo "$as_me:42089: result: $use_brotli" >&5
+echo "$as_me:42085: result: $use_brotli" >&5
 echo "${ECHO_T}$use_brotli" >&6
 
 if test ".$use_brotli" != ".no" ; then
@@ -42128,7 +42124,7 @@ if test -n "$cf_searchpath/include" ; then
 	CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir"
 
 			  cat >"conftest.$ac_ext" <<_ACEOF
-#line 42131 "configure"
+#line 42127 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 int
@@ -42140,16 +42136,16 @@ printf("Hello")
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:42143: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:42139: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:42146: \$? = $ac_status" >&5
+  echo "$as_me:42142: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:42149: \"$ac_try\"") >&5
+  { (eval echo "$as_me:42145: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:42152: \$? = $ac_status" >&5
+  echo "$as_me:42148: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   :
 else
@@ -42166,7 +42162,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 		if test "$cf_have_incdir" = no ; then
 		  test -n "$verbose" && echo "	adding $cf_add_incdir to include-path" 1>&6
 
-echo "${as_me:-configure}:42169: testing adding $cf_add_incdir to include-path ..." 1>&5
+echo "${as_me:-configure}:42165: testing adding $cf_add_incdir to include-path ..." 1>&5
 
 		  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
 
@@ -42212,7 +42208,7 @@ if test -n "$cf_searchpath/../include" ; then
 	CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir"
 
 			  cat >"conftest.$ac_ext" <<_ACEOF
-#line 42215 "configure"
+#line 42211 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 int
@@ -42224,16 +42220,16 @@ printf("Hello")
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:42227: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:42223: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:42230: \$? = $ac_status" >&5
+  echo "$as_me:42226: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:42233: \"$ac_try\"") >&5
+  { (eval echo "$as_me:42229: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:42236: \$? = $ac_status" >&5
+  echo "$as_me:42232: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   :
 else
@@ -42250,7 +42246,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 		if test "$cf_have_incdir" = no ; then
 		  test -n "$verbose" && echo "	adding $cf_add_incdir to include-path" 1>&6
 
-echo "${as_me:-configure}:42253: testing adding $cf_add_incdir to include-path ..." 1>&5
+echo "${as_me:-configure}:42249: testing adding $cf_add_incdir to include-path ..." 1>&5
 
 		  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
 
@@ -42268,7 +42264,7 @@ echo "${as_me:-configure}:42253: testing adding $cf_add_incdir to include-path .
 fi
 
 	else
-{ { echo "$as_me:42271: error: cannot find  under $use_brotli" >&5
+{ { echo "$as_me:42267: error: cannot find  under $use_brotli" >&5
 echo "$as_me: error: cannot find  under $use_brotli" >&2;}
    { (exit 1); exit 1; }; }
 	fi
@@ -42293,7 +42289,7 @@ if test -n "$cf_searchpath/lib" ; then
 			if test "$cf_have_libdir" = no ; then
 				test -n "$verbose" && echo "	adding $cf_add_libdir to library-path" 1>&6
 
-echo "${as_me:-configure}:42296: testing adding $cf_add_libdir to library-path ..." 1>&5
+echo "${as_me:-configure}:42292: testing adding $cf_add_libdir to library-path ..." 1>&5
 
 				LDFLAGS="-L$cf_add_libdir $LDFLAGS"
 			fi
@@ -42322,7 +42318,7 @@ if test -n "$cf_searchpath" ; then
 			if test "$cf_have_libdir" = no ; then
 				test -n "$verbose" && echo "	adding $cf_add_libdir to library-path" 1>&6
 
-echo "${as_me:-configure}:42325: testing adding $cf_add_libdir to library-path ..." 1>&5
+echo "${as_me:-configure}:42321: testing adding $cf_add_libdir to library-path ..." 1>&5
 
 				LDFLAGS="-L$cf_add_libdir $LDFLAGS"
 			fi
@@ -42331,7 +42327,7 @@ echo "${as_me:-configure}:42325: testing adding $cf_add_libdir to library-path .
 fi
 
 	else
-{ { echo "$as_me:42334: error: cannot find  under $use_brotli" >&5
+{ { echo "$as_me:42330: error: cannot find  under $use_brotli" >&5
 echo "$as_me: error: cannot find  under $use_brotli" >&2;}
    { (exit 1); exit 1; }; }
 	fi
@@ -42345,12 +42341,12 @@ esac
 cf_cv_header_path_brotlidec=
 cf_cv_library_path_brotlidec=
 
-echo "${as_me:-configure}:42348: testing Starting FIND_LINKAGE(brotlidec,brotlilib) ..." 1>&5
+echo "${as_me:-configure}:42344: testing Starting FIND_LINKAGE(brotlidec,brotlilib) ..." 1>&5
 
 cf_save_LIBS="$LIBS"
 
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 42353 "configure"
+#line 42349 "configure"
 #include "confdefs.h"
 
 #include <brotli/decode.h>
@@ -42373,16 +42369,16 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:42376: \"$ac_link\"") >&5
+if { (eval echo "$as_me:42372: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:42379: \$? = $ac_status" >&5
+  echo "$as_me:42375: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:42382: \"$ac_try\"") >&5
+  { (eval echo "$as_me:42378: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:42385: \$? = $ac_status" >&5
+  echo "$as_me:42381: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
 
 	cf_cv_find_linkage_brotlidec=yes
@@ -42396,7 +42392,7 @@ cat "conftest.$ac_ext" >&5
 LIBS="-lbrotlidec  $cf_save_LIBS"
 
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 42399 "configure"
+#line 42395 "configure"
 #include "confdefs.h"
 
 #include <brotli/decode.h>
@@ -42419,16 +42415,16 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:42422: \"$ac_link\"") >&5
+if { (eval echo "$as_me:42418: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:42425: \$? = $ac_status" >&5
+  echo "$as_me:42421: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:42428: \"$ac_try\"") >&5
+  { (eval echo "$as_me:42424: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:42431: \$? = $ac_status" >&5
+  echo "$as_me:42427: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
 
 	cf_cv_find_linkage_brotlidec=yes
@@ -42445,9 +42441,9 @@ cat "conftest.$ac_ext" >&5
 
 	test -n "$verbose" && echo "	find linkage for brotlidec library" 1>&6
 
-echo "${as_me:-configure}:42448: testing find linkage for brotlidec library ..." 1>&5
+echo "${as_me:-configure}:42444: testing find linkage for brotlidec library ..." 1>&5
 
-echo "${as_me:-configure}:42450: testing Searching for headers in FIND_LINKAGE(brotlidec,brotlilib) ..." 1>&5
+echo "${as_me:-configure}:42446: testing Searching for headers in FIND_LINKAGE(brotlidec,brotlilib) ..." 1>&5
 
 	cf_save_CPPFLAGS="$CPPFLAGS"
 	cf_test_CPPFLAGS="$CPPFLAGS"
@@ -42538,7 +42534,7 @@ cf_search="$cf_search $cf_header_path_list"
 		if test -d "$cf_cv_header_path_brotlidec" ; then
 			test -n "$verbose" && echo "	... testing $cf_cv_header_path_brotlidec" 1>&6
 
-echo "${as_me:-configure}:42541: testing ... testing $cf_cv_header_path_brotlidec ..." 1>&5
+echo "${as_me:-configure}:42537: testing ... testing $cf_cv_header_path_brotlidec ..." 1>&5
 
 			CPPFLAGS="$cf_save_CPPFLAGS"
 
@@ -42546,7 +42542,7 @@ echo "${as_me:-configure}:42541: testing ... testing $cf_cv_header_path_brotlide
 	CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_brotlidec"
 
 			cat >"conftest.$ac_ext" <<_ACEOF
-#line 42549 "configure"
+#line 42545 "configure"
 #include "confdefs.h"
 
 #include <brotli/decode.h>
@@ -42569,21 +42565,21 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:42572: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:42568: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:42575: \$? = $ac_status" >&5
+  echo "$as_me:42571: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:42578: \"$ac_try\"") >&5
+  { (eval echo "$as_me:42574: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:42581: \$? = $ac_status" >&5
+  echo "$as_me:42577: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
 
 				test -n "$verbose" && echo "	... found brotlidec headers in $cf_cv_header_path_brotlidec" 1>&6
 
-echo "${as_me:-configure}:42586: testing ... found brotlidec headers in $cf_cv_header_path_brotlidec ..." 1>&5
+echo "${as_me:-configure}:42582: testing ... found brotlidec headers in $cf_cv_header_path_brotlidec ..." 1>&5
 
 				cf_cv_find_linkage_brotlidec=maybe
 				cf_test_CPPFLAGS="$CPPFLAGS"
@@ -42601,7 +42597,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 
 	if test "$cf_cv_find_linkage_brotlidec" = maybe ; then
 
-echo "${as_me:-configure}:42604: testing Searching for brotlidec library in FIND_LINKAGE(brotlidec,brotlilib) ..." 1>&5
+echo "${as_me:-configure}:42600: testing Searching for brotlidec library in FIND_LINKAGE(brotlidec,brotlilib) ..." 1>&5
 
 		cf_save_LIBS="$LIBS"
 		cf_save_LDFLAGS="$LDFLAGS"
@@ -42609,7 +42605,7 @@ echo "${as_me:-configure}:42604: testing Searching for brotlidec library in FIND
 		CPPFLAGS="$cf_test_CPPFLAGS"
 		LIBS="-lbrotlidec  $cf_save_LIBS"
 		cat >"conftest.$ac_ext" <<_ACEOF
-#line 42612 "configure"
+#line 42608 "configure"
 #include "confdefs.h"
 
 #include <brotli/decode.h>
@@ -42632,21 +42628,21 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:42635: \"$ac_link\"") >&5
+if { (eval echo "$as_me:42631: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:42638: \$? = $ac_status" >&5
+  echo "$as_me:42634: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:42641: \"$ac_try\"") >&5
+  { (eval echo "$as_me:42637: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:42644: \$? = $ac_status" >&5
+  echo "$as_me:42640: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
 
 			test -n "$verbose" && echo "	... found brotlidec library in system" 1>&6
 
-echo "${as_me:-configure}:42649: testing ... found brotlidec library in system ..." 1>&5
+echo "${as_me:-configure}:42645: testing ... found brotlidec library in system ..." 1>&5
 
 			cf_cv_find_linkage_brotlidec=yes
 else
@@ -42727,13 +42723,13 @@ cf_search="$cf_library_path_list $cf_search"
 				if test -d "$cf_cv_library_path_brotlidec" ; then
 					test -n "$verbose" && echo "	... testing $cf_cv_library_path_brotlidec" 1>&6
 
-echo "${as_me:-configure}:42730: testing ... testing $cf_cv_library_path_brotlidec ..." 1>&5
+echo "${as_me:-configure}:42726: testing ... testing $cf_cv_library_path_brotlidec ..." 1>&5
 
 					CPPFLAGS="$cf_test_CPPFLAGS"
 					LIBS="-lbrotlidec  $cf_save_LIBS"
 					LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_brotlidec"
 					cat >"conftest.$ac_ext" <<_ACEOF
-#line 42736 "configure"
+#line 42732 "configure"
 #include "confdefs.h"
 
 #include <brotli/decode.h>
@@ -42756,21 +42752,21 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:42759: \"$ac_link\"") >&5
+if { (eval echo "$as_me:42755: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:42762: \$? = $ac_status" >&5
+  echo "$as_me:42758: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:42765: \"$ac_try\"") >&5
+  { (eval echo "$as_me:42761: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:42768: \$? = $ac_status" >&5
+  echo "$as_me:42764: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
 
 					test -n "$verbose" && echo "	... found brotlidec library in $cf_cv_library_path_brotlidec" 1>&6
 
-echo "${as_me:-configure}:42773: testing ... found brotlidec library in $cf_cv_library_path_brotlidec ..." 1>&5
+echo "${as_me:-configure}:42769: testing ... found brotlidec library in $cf_cv_library_path_brotlidec ..." 1>&5
 
 					cf_cv_find_linkage_brotlidec=yes
 					cf_cv_library_file_brotlidec="-lbrotlidec"
@@ -42832,7 +42828,7 @@ if test -n "$cf_cv_header_path_brotlidec" ; then
 	CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir"
 
 			  cat >"conftest.$ac_ext" <<_ACEOF
-#line 42835 "configure"
+#line 42831 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 int
@@ -42844,16 +42840,16 @@ printf("Hello")
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:42847: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:42843: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:42850: \$? = $ac_status" >&5
+  echo "$as_me:42846: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:42853: \"$ac_try\"") >&5
+  { (eval echo "$as_me:42849: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:42856: \$? = $ac_status" >&5
+  echo "$as_me:42852: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   :
 else
@@ -42870,7 +42866,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 		if test "$cf_have_incdir" = no ; then
 		  test -n "$verbose" && echo "	adding $cf_add_incdir to include-path" 1>&6
 
-echo "${as_me:-configure}:42873: testing adding $cf_add_incdir to include-path ..." 1>&5
+echo "${as_me:-configure}:42869: testing adding $cf_add_incdir to include-path ..." 1>&5
 
 		  CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
 
@@ -42906,7 +42902,7 @@ if test -n "$cf_cv_library_path_brotlidec" ; then
 			if test "$cf_have_libdir" = no ; then
 				test -n "$verbose" && echo "	adding $cf_add_libdir to library-path" 1>&6
 
-echo "${as_me:-configure}:42909: testing adding $cf_add_libdir to library-path ..." 1>&5
+echo "${as_me:-configure}:42905: testing adding $cf_add_libdir to library-path ..." 1>&5
 
 				LDFLAGS="-L$cf_add_libdir $LDFLAGS"
 			fi
@@ -42931,7 +42927,7 @@ done
 LIBS="$cf_add_libs"
 
 else
-{ echo "$as_me:42934: WARNING: Cannot find brotlidec library" >&5
+{ echo "$as_me:42930: WARNING: Cannot find brotlidec library" >&5
 echo "$as_me: WARNING: Cannot find brotlidec library" >&2;}
 fi
 
@@ -42942,7 +42938,7 @@ EOF
 
 fi
 
-echo "$as_me:42945: checking if you want to exclude FINGER code" >&5
+echo "$as_me:42941: checking if you want to exclude FINGER code" >&5
 echo $ECHO_N "checking if you want to exclude FINGER code... $ECHO_C" >&6
 
 # Check whether --enable-finger or --disable-finger was given.
@@ -42959,14 +42955,14 @@ else
 	use_finger=no
 
 fi;
-echo "$as_me:42962: result: $use_finger" >&5
+echo "$as_me:42958: result: $use_finger" >&5
 echo "${ECHO_T}$use_finger" >&6
 test "$use_finger" != "no" &&
 cat >>confdefs.h <<\EOF
 #define DISABLE_FINGER 1
 EOF
 
-echo "$as_me:42969: checking if you want to exclude GOPHER code" >&5
+echo "$as_me:42965: checking if you want to exclude GOPHER code" >&5
 echo $ECHO_N "checking if you want to exclude GOPHER code... $ECHO_C" >&6
 
 # Check whether --enable-gopher or --disable-gopher was given.
@@ -42983,14 +42979,14 @@ else
 	use_gopher=no
 
 fi;
-echo "$as_me:42986: result: $use_gopher" >&5
+echo "$as_me:42982: result: $use_gopher" >&5
 echo "${ECHO_T}$use_gopher" >&6
 test "$use_gopher" != "no" &&
 cat >>confdefs.h <<\EOF
 #define DISABLE_GOPHER 1
 EOF
 
-echo "$as_me:42993: checking if you want to exclude NEWS code" >&5
+echo "$as_me:42989: checking if you want to exclude NEWS code" >&5
 echo $ECHO_N "checking if you want to exclude NEWS code... $ECHO_C" >&6
 
 # Check whether --enable-news or --disable-news was given.
@@ -43007,14 +43003,14 @@ else
 	use_news=no
 
 fi;
-echo "$as_me:43010: result: $use_news" >&5
+echo "$as_me:43006: result: $use_news" >&5
 echo "${ECHO_T}$use_news" >&6
 test "$use_news" != "no" &&
 cat >>confdefs.h <<\EOF
 #define DISABLE_NEWS 1
 EOF
 
-echo "$as_me:43017: checking if you want to exclude FTP code" >&5
+echo "$as_me:43013: checking if you want to exclude FTP code" >&5
 echo $ECHO_N "checking if you want to exclude FTP code... $ECHO_C" >&6
 
 # Check whether --enable-ftp or --disable-ftp was given.
@@ -43031,14 +43027,14 @@ else
 	use_ftp=no
 
 fi;
-echo "$as_me:43034: result: $use_ftp" >&5
+echo "$as_me:43030: result: $use_ftp" >&5
 echo "${ECHO_T}$use_ftp" >&6
 test "$use_ftp" != "no" &&
 cat >>confdefs.h <<\EOF
 #define DISABLE_FTP 1
 EOF
 
-echo "$as_me:43041: checking if you want to include WAIS code" >&5
+echo "$as_me:43037: checking if you want to include WAIS code" >&5
 echo $ECHO_N "checking if you want to include WAIS code... $ECHO_C" >&6
 
 # Check whether --enable-wais or --disable-wais was given.
@@ -43055,13 +43051,13 @@ else
 	use_wais=no
 
 fi;
-echo "$as_me:43058: result: $use_wais" >&5
+echo "$as_me:43054: result: $use_wais" >&5
 echo "${ECHO_T}$use_wais" >&6
 
 MAKE_WAIS="#"
 if test "$use_wais" != "no"
 then
-	echo "$as_me:43064: checking for fs_free in -lwais" >&5
+	echo "$as_me:43060: checking for fs_free in -lwais" >&5
 echo $ECHO_N "checking for fs_free in -lwais... $ECHO_C" >&6
 if test "${ac_cv_lib_wais_fs_free+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -43069,7 +43065,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lwais  $LIBS"
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 43072 "configure"
+#line 43068 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -43088,16 +43084,16 @@ fs_free ();
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:43091: \"$ac_link\"") >&5
+if { (eval echo "$as_me:43087: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:43094: \$? = $ac_status" >&5
+  echo "$as_me:43090: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:43097: \"$ac_try\"") >&5
+  { (eval echo "$as_me:43093: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:43100: \$? = $ac_status" >&5
+  echo "$as_me:43096: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   ac_cv_lib_wais_fs_free=yes
 else
@@ -43108,18 +43104,18 @@ fi
 rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext"
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:43111: result: $ac_cv_lib_wais_fs_free" >&5
+echo "$as_me:43107: result: $ac_cv_lib_wais_fs_free" >&5
 echo "${ECHO_T}$ac_cv_lib_wais_fs_free" >&6
 if test "$ac_cv_lib_wais_fs_free" = yes; then
 
-echo "$as_me:43115: checking if -lm needed for math functions" >&5
+echo "$as_me:43111: checking if -lm needed for math functions" >&5
 echo $ECHO_N "checking if -lm needed for math functions... $ECHO_C" >&6
 if test "${cf_cv_need_libm+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 	cat >"conftest.$ac_ext" <<_ACEOF
-#line 43122 "configure"
+#line 43118 "configure"
 #include "confdefs.h"
 
 		#include <stdio.h>
@@ -43135,16 +43131,16 @@ double x = rand(); printf("result = %g\\n", sin(x))
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:43138: \"$ac_link\"") >&5
+if { (eval echo "$as_me:43134: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:43141: \$? = $ac_status" >&5
+  echo "$as_me:43137: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:43144: \"$ac_try\"") >&5
+  { (eval echo "$as_me:43140: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:43147: \$? = $ac_status" >&5
+  echo "$as_me:43143: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_need_libm=no
 else
@@ -43154,7 +43150,7 @@ cf_cv_need_libm=yes
 fi
 rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext"
 fi
-echo "$as_me:43157: result: $cf_cv_need_libm" >&5
+echo "$as_me:43153: result: $cf_cv_need_libm" >&5
 echo "${ECHO_T}$cf_cv_need_libm" >&6
 
 if test "$cf_cv_need_libm" = yes
@@ -43162,14 +43158,14 @@ then
 
 	cf_save_LIBS="$LIBS"
 	LIBS="$LIBS -lm"
-	echo "$as_me:43165: checking if -lm is available for math functions" >&5
+	echo "$as_me:43161: checking if -lm is available for math functions" >&5
 echo $ECHO_N "checking if -lm is available for math functions... $ECHO_C" >&6
 if test "${cf_cv_have_libm+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 	cat >"conftest.$ac_ext" <<_ACEOF
-#line 43172 "configure"
+#line 43168 "configure"
 #include "confdefs.h"
 
 		#include <stdio.h>
@@ -43185,16 +43181,16 @@ double x = rand(); printf("result = %g\\n", sin(x))
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:43188: \"$ac_link\"") >&5
+if { (eval echo "$as_me:43184: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:43191: \$? = $ac_status" >&5
+  echo "$as_me:43187: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:43194: \"$ac_try\"") >&5
+  { (eval echo "$as_me:43190: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:43197: \$? = $ac_status" >&5
+  echo "$as_me:43193: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_have_libm=yes
 else
@@ -43204,7 +43200,7 @@ cf_cv_have_libm=no
 fi
 rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext"
 fi
-echo "$as_me:43207: result: $cf_cv_have_libm" >&5
+echo "$as_me:43203: result: $cf_cv_have_libm" >&5
 echo "${ECHO_T}$cf_cv_have_libm" >&6
 	LIBS="$cf_save_LIBS"
 
@@ -43260,23 +43256,23 @@ LIBS="$cf_add_libs"
 for ac_header in wais.h
 do
 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:43263: checking for $ac_header" >&5
+echo "$as_me:43259: checking for $ac_header" >&5
 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
 if eval "test \"\${$as_ac_Header+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >"conftest.$ac_ext" <<_ACEOF
-#line 43269 "configure"
+#line 43265 "configure"
 #include "confdefs.h"
 #include <$ac_header>
 _ACEOF
-if { (eval echo "$as_me:43273: \"$ac_cpp "conftest.$ac_ext"\"") >&5
+if { (eval echo "$as_me:43269: \"$ac_cpp "conftest.$ac_ext"\"") >&5
   (eval $ac_cpp "conftest.$ac_ext") 2>conftest.er1
   ac_status=$?
   $EGREP -v '^ *\+' conftest.er1 >conftest.err
   rm -f conftest.er1
   cat conftest.err >&5
-  echo "$as_me:43279: \$? = $ac_status" >&5
+  echo "$as_me:43275: \$? = $ac_status" >&5
   (exit "$ac_status"); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -43295,7 +43291,7 @@ else
 fi
 rm -f conftest.err "conftest.$ac_ext"
 fi
-echo "$as_me:43298: result: `eval echo '${'"$as_ac_Header"'}'`" >&5
+echo "$as_me:43294: result: `eval echo '${'"$as_ac_Header"'}'`" >&5
 echo "${ECHO_T}`eval echo '${'"$as_ac_Header"'}'`" >&6
 if test "`eval echo '${'"$as_ac_Header"'}'`" = yes; then
   cat >>confdefs.h <<EOF
@@ -43308,7 +43304,7 @@ done
 		MAKE_WAIS=
 
 else
-  { echo "$as_me:43311: WARNING: could not find WAIS library" >&5
+  { echo "$as_me:43307: WARNING: could not find WAIS library" >&5
 echo "$as_me: WARNING: could not find WAIS library" >&2;}
 fi
 
@@ -43316,7 +43312,7 @@ fi
 
 # All DirEd functions that were enabled on compilation can be disabled
 # or modified at run time via DIRED_MENU symbols in lynx.cfg.
-echo "$as_me:43319: checking if directory-editor code should be used" >&5
+echo "$as_me:43315: checking if directory-editor code should be used" >&5
 echo $ECHO_N "checking if directory-editor code should be used... $ECHO_C" >&6
 
 # Check whether --enable-dired or --disable-dired was given.
@@ -43333,7 +43329,7 @@ else
 	use_dired=yes
 
 fi;
-echo "$as_me:43336: result: $use_dired" >&5
+echo "$as_me:43332: result: $use_dired" >&5
 echo "${ECHO_T}$use_dired" >&6
 
 if test ".$use_dired" != ".no" ; then
@@ -43343,7 +43339,7 @@ cat >>confdefs.h <<\EOF
 #define DIRED_SUPPORT 1
 EOF
 
-	echo "$as_me:43346: checking if you wish to allow extracting from archives via DirEd" >&5
+	echo "$as_me:43342: checking if you wish to allow extracting from archives via DirEd" >&5
 echo $ECHO_N "checking if you wish to allow extracting from archives via DirEd... $ECHO_C" >&6
 
 # Check whether --enable-dired-dearchive or --disable-dired-dearchive was given.
@@ -43360,10 +43356,10 @@ EOF
 else
   enableval=yes
 fi;
-	echo "$as_me:43363: result: $enableval" >&5
+	echo "$as_me:43359: result: $enableval" >&5
 echo "${ECHO_T}$enableval" >&6
 
-	echo "$as_me:43366: checking if DirEd mode should override keys" >&5
+	echo "$as_me:43362: checking if DirEd mode should override keys" >&5
 echo $ECHO_N "checking if DirEd mode should override keys... $ECHO_C" >&6
 
 # Check whether --enable-dired-override or --disable-dired-override was given.
@@ -43387,10 +43383,10 @@ cat >>confdefs.h <<\EOF
 EOF
 
 fi;
-	echo "$as_me:43390: result: $enableval" >&5
+	echo "$as_me:43386: result: $enableval" >&5
 echo "${ECHO_T}$enableval" >&6
 
-	echo "$as_me:43393: checking if you wish to allow permissions commands via DirEd" >&5
+	echo "$as_me:43389: checking if you wish to allow permissions commands via DirEd" >&5
 echo $ECHO_N "checking if you wish to allow permissions commands via DirEd... $ECHO_C" >&6
 
 # Check whether --enable-dired-permit or --disable-dired-permit was given.
@@ -43414,10 +43410,10 @@ cat >>confdefs.h <<\EOF
 EOF
 
 fi;
-	echo "$as_me:43417: result: $enableval" >&5
+	echo "$as_me:43413: result: $enableval" >&5
 echo "${ECHO_T}$enableval" >&6
 
-	echo "$as_me:43420: checking if you wish to allow executable-permission commands via DirEd" >&5
+	echo "$as_me:43416: checking if you wish to allow executable-permission commands via DirEd" >&5
 echo $ECHO_N "checking if you wish to allow executable-permission commands via DirEd... $ECHO_C" >&6
 
 # Check whether --enable-dired-xpermit or --disable-dired-xpermit was given.
@@ -43434,10 +43430,10 @@ EOF
 else
   enableval=yes
 fi;
-	echo "$as_me:43437: result: $enableval" >&5
+	echo "$as_me:43433: result: $enableval" >&5
 echo "${ECHO_T}$enableval" >&6
 
-	echo "$as_me:43440: checking if you wish to allow \"tar\" commands from DirEd" >&5
+	echo "$as_me:43436: checking if you wish to allow \"tar\" commands from DirEd" >&5
 echo $ECHO_N "checking if you wish to allow \"tar\" commands from DirEd... $ECHO_C" >&6
 
 # Check whether --enable-dired-tar or --disable-dired-tar was given.
@@ -43461,10 +43457,10 @@ cat >>confdefs.h <<\EOF
 EOF
 
 fi;
-	echo "$as_me:43464: result: $enableval" >&5
+	echo "$as_me:43460: result: $enableval" >&5
 echo "${ECHO_T}$enableval" >&6
 
-	echo "$as_me:43467: checking if you wish to allow \"uudecode\" commands from DirEd" >&5
+	echo "$as_me:43463: checking if you wish to allow \"uudecode\" commands from DirEd" >&5
 echo $ECHO_N "checking if you wish to allow \"uudecode\" commands from DirEd... $ECHO_C" >&6
 
 # Check whether --enable-dired-uudecode or --disable-dired-uudecode was given.
@@ -43488,10 +43484,10 @@ cat >>confdefs.h <<\EOF
 EOF
 
 fi;
-	echo "$as_me:43491: result: $enableval" >&5
+	echo "$as_me:43487: result: $enableval" >&5
 echo "${ECHO_T}$enableval" >&6
 
-	echo "$as_me:43494: checking if you wish to allow \"zip\" and \"unzip\" commands from DirEd" >&5
+	echo "$as_me:43490: checking if you wish to allow \"zip\" and \"unzip\" commands from DirEd" >&5
 echo $ECHO_N "checking if you wish to allow \"zip\" and \"unzip\" commands from DirEd... $ECHO_C" >&6
 
 # Check whether --enable-dired-zip or --disable-dired-zip was given.
@@ -43515,10 +43511,10 @@ cat >>confdefs.h <<\EOF
 EOF
 
 fi;
-	echo "$as_me:43518: result: $enableval" >&5
+	echo "$as_me:43514: result: $enableval" >&5
 echo "${ECHO_T}$enableval" >&6
 
-	echo "$as_me:43521: checking if you wish to allow \"gzip\" and \"gunzip\" commands from DirEd" >&5
+	echo "$as_me:43517: checking if you wish to allow \"gzip\" and \"gunzip\" commands from DirEd" >&5
 echo $ECHO_N "checking if you wish to allow \"gzip\" and \"gunzip\" commands from DirEd... $ECHO_C" >&6
 
 # Check whether --enable-dired-gzip or --disable-dired-gzip was given.
@@ -43542,11 +43538,11 @@ cat >>confdefs.h <<\EOF
 EOF
 
 fi;
-	echo "$as_me:43545: result: $enableval" >&5
+	echo "$as_me:43541: result: $enableval" >&5
 echo "${ECHO_T}$enableval" >&6
 fi
 
-echo "$as_me:43549: checking if you want long-directory listings" >&5
+echo "$as_me:43545: checking if you want long-directory listings" >&5
 echo $ECHO_N "checking if you want long-directory listings... $ECHO_C" >&6
 
 # Check whether --enable-long-list or --disable-long-list was given.
@@ -43570,10 +43566,10 @@ cat >>confdefs.h <<\EOF
 EOF
 
 fi;
-echo "$as_me:43573: result: $enableval" >&5
+echo "$as_me:43569: result: $enableval" >&5
 echo "${ECHO_T}$enableval" >&6
 
-echo "$as_me:43576: checking if parent-directory references are permitted" >&5
+echo "$as_me:43572: checking if parent-directory references are permitted" >&5
 echo $ECHO_N "checking if parent-directory references are permitted... $ECHO_C" >&6
 
 # Check whether --enable-parent-dir-refs or --disable-parent-dir-refs was given.
@@ -43590,7 +43586,7 @@ EOF
 else
   enableval=yes
 fi;
-echo "$as_me:43593: result: $enableval" >&5
+echo "$as_me:43589: result: $enableval" >&5
 echo "${ECHO_T}$enableval" >&6
 
 test -z "$TELNET" && TELNET="telnet"
@@ -43598,7 +43594,7 @@ for ac_prog in $TELNET telnet
 do
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
-echo "$as_me:43601: checking for $ac_word" >&5
+echo "$as_me:43597: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_path_TELNET+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -43615,7 +43611,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   if $as_executable_p "$ac_dir/$ac_word"; then
    ac_cv_path_TELNET="$ac_dir/$ac_word"
-   echo "$as_me:43618: found $ac_dir/$ac_word" >&5
+   echo "$as_me:43614: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -43626,10 +43622,10 @@ fi
 TELNET=$ac_cv_path_TELNET
 
 if test -n "$TELNET"; then
-  echo "$as_me:43629: result: $TELNET" >&5
+  echo "$as_me:43625: result: $TELNET" >&5
 echo "${ECHO_T}$TELNET" >&6
 else
-  echo "$as_me:43632: result: no" >&5
+  echo "$as_me:43628: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -43688,7 +43684,7 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "${as_me:-configure}:43691: testing defining path for ${cf_path_prog} ..." 1>&5
+echo "${as_me:-configure}:43687: testing defining path for ${cf_path_prog} ..." 1>&5
 
 cat >>confdefs.h <<EOF
 #define TELNET_PATH "$cf_path_prog"
@@ -43706,7 +43702,7 @@ for ac_prog in $TN3270 tn3270
 do
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
-echo "$as_me:43709: checking for $ac_word" >&5
+echo "$as_me:43705: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_path_TN3270+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -43723,7 +43719,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   if $as_executable_p "$ac_dir/$ac_word"; then
    ac_cv_path_TN3270="$ac_dir/$ac_word"
-   echo "$as_me:43726: found $ac_dir/$ac_word" >&5
+   echo "$as_me:43722: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -43734,10 +43730,10 @@ fi
 TN3270=$ac_cv_path_TN3270
 
 if test -n "$TN3270"; then
-  echo "$as_me:43737: result: $TN3270" >&5
+  echo "$as_me:43733: result: $TN3270" >&5
 echo "${ECHO_T}$TN3270" >&6
 else
-  echo "$as_me:43740: result: no" >&5
+  echo "$as_me:43736: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -43796,7 +43792,7 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "${as_me:-configure}:43799: testing defining path for ${cf_path_prog} ..." 1>&5
+echo "${as_me:-configure}:43795: testing defining path for ${cf_path_prog} ..." 1>&5
 
 cat >>confdefs.h <<EOF
 #define TN3270_PATH "$cf_path_prog"
@@ -43814,7 +43810,7 @@ for ac_prog in $RLOGIN rlogin
 do
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
-echo "$as_me:43817: checking for $ac_word" >&5
+echo "$as_me:43813: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_path_RLOGIN+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -43831,7 +43827,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   if $as_executable_p "$ac_dir/$ac_word"; then
    ac_cv_path_RLOGIN="$ac_dir/$ac_word"
-   echo "$as_me:43834: found $ac_dir/$ac_word" >&5
+   echo "$as_me:43830: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -43842,10 +43838,10 @@ fi
 RLOGIN=$ac_cv_path_RLOGIN
 
 if test -n "$RLOGIN"; then
-  echo "$as_me:43845: result: $RLOGIN" >&5
+  echo "$as_me:43841: result: $RLOGIN" >&5
 echo "${ECHO_T}$RLOGIN" >&6
 else
-  echo "$as_me:43848: result: no" >&5
+  echo "$as_me:43844: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -43904,7 +43900,7 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "${as_me:-configure}:43907: testing defining path for ${cf_path_prog} ..." 1>&5
+echo "${as_me:-configure}:43903: testing defining path for ${cf_path_prog} ..." 1>&5
 
 cat >>confdefs.h <<EOF
 #define RLOGIN_PATH "$cf_path_prog"
@@ -43922,7 +43918,7 @@ for ac_prog in $MV mv
 do
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
-echo "$as_me:43925: checking for $ac_word" >&5
+echo "$as_me:43921: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_path_MV+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -43939,7 +43935,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   if $as_executable_p "$ac_dir/$ac_word"; then
    ac_cv_path_MV="$ac_dir/$ac_word"
-   echo "$as_me:43942: found $ac_dir/$ac_word" >&5
+   echo "$as_me:43938: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -43950,10 +43946,10 @@ fi
 MV=$ac_cv_path_MV
 
 if test -n "$MV"; then
-  echo "$as_me:43953: result: $MV" >&5
+  echo "$as_me:43949: result: $MV" >&5
 echo "${ECHO_T}$MV" >&6
 else
-  echo "$as_me:43956: result: no" >&5
+  echo "$as_me:43952: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -44012,7 +44008,7 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "${as_me:-configure}:44015: testing defining path for ${cf_path_prog} ..." 1>&5
+echo "${as_me:-configure}:44011: testing defining path for ${cf_path_prog} ..." 1>&5
 
 cat >>confdefs.h <<EOF
 #define MV_PATH "$cf_path_prog"
@@ -44030,7 +44026,7 @@ for ac_prog in $GZIP gzip
 do
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
-echo "$as_me:44033: checking for $ac_word" >&5
+echo "$as_me:44029: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_path_GZIP+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -44047,7 +44043,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   if $as_executable_p "$ac_dir/$ac_word"; then
    ac_cv_path_GZIP="$ac_dir/$ac_word"
-   echo "$as_me:44050: found $ac_dir/$ac_word" >&5
+   echo "$as_me:44046: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -44058,10 +44054,10 @@ fi
 GZIP=$ac_cv_path_GZIP
 
 if test -n "$GZIP"; then
-  echo "$as_me:44061: result: $GZIP" >&5
+  echo "$as_me:44057: result: $GZIP" >&5
 echo "${ECHO_T}$GZIP" >&6
 else
-  echo "$as_me:44064: result: no" >&5
+  echo "$as_me:44060: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -44120,7 +44116,7 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "${as_me:-configure}:44123: testing defining path for ${cf_path_prog} ..." 1>&5
+echo "${as_me:-configure}:44119: testing defining path for ${cf_path_prog} ..." 1>&5
 
 cat >>confdefs.h <<EOF
 #define GZIP_PATH "$cf_path_prog"
@@ -44138,7 +44134,7 @@ for ac_prog in $UNCOMPRESS gunzip
 do
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
-echo "$as_me:44141: checking for $ac_word" >&5
+echo "$as_me:44137: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_path_UNCOMPRESS+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -44155,7 +44151,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   if $as_executable_p "$ac_dir/$ac_word"; then
    ac_cv_path_UNCOMPRESS="$ac_dir/$ac_word"
-   echo "$as_me:44158: found $ac_dir/$ac_word" >&5
+   echo "$as_me:44154: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -44166,10 +44162,10 @@ fi
 UNCOMPRESS=$ac_cv_path_UNCOMPRESS
 
 if test -n "$UNCOMPRESS"; then
-  echo "$as_me:44169: result: $UNCOMPRESS" >&5
+  echo "$as_me:44165: result: $UNCOMPRESS" >&5
 echo "${ECHO_T}$UNCOMPRESS" >&6
 else
-  echo "$as_me:44172: result: no" >&5
+  echo "$as_me:44168: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -44228,7 +44224,7 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "${as_me:-configure}:44231: testing defining path for ${cf_path_prog} ..." 1>&5
+echo "${as_me:-configure}:44227: testing defining path for ${cf_path_prog} ..." 1>&5
 
 cat >>confdefs.h <<EOF
 #define UNCOMPRESS_PATH "$cf_path_prog"
@@ -44246,7 +44242,7 @@ for ac_prog in $UNZIP unzip
 do
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
-echo "$as_me:44249: checking for $ac_word" >&5
+echo "$as_me:44245: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_path_UNZIP+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -44263,7 +44259,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   if $as_executable_p "$ac_dir/$ac_word"; then
    ac_cv_path_UNZIP="$ac_dir/$ac_word"
-   echo "$as_me:44266: found $ac_dir/$ac_word" >&5
+   echo "$as_me:44262: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -44274,10 +44270,10 @@ fi
 UNZIP=$ac_cv_path_UNZIP
 
 if test -n "$UNZIP"; then
-  echo "$as_me:44277: result: $UNZIP" >&5
+  echo "$as_me:44273: result: $UNZIP" >&5
 echo "${ECHO_T}$UNZIP" >&6
 else
-  echo "$as_me:44280: result: no" >&5
+  echo "$as_me:44276: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -44336,7 +44332,7 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "${as_me:-configure}:44339: testing defining path for ${cf_path_prog} ..." 1>&5
+echo "${as_me:-configure}:44335: testing defining path for ${cf_path_prog} ..." 1>&5
 
 cat >>confdefs.h <<EOF
 #define UNZIP_PATH "$cf_path_prog"
@@ -44354,7 +44350,7 @@ for ac_prog in $BZIP2 bzip2
 do
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
-echo "$as_me:44357: checking for $ac_word" >&5
+echo "$as_me:44353: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_path_BZIP2+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -44371,7 +44367,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   if $as_executable_p "$ac_dir/$ac_word"; then
    ac_cv_path_BZIP2="$ac_dir/$ac_word"
-   echo "$as_me:44374: found $ac_dir/$ac_word" >&5
+   echo "$as_me:44370: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -44382,10 +44378,10 @@ fi
 BZIP2=$ac_cv_path_BZIP2
 
 if test -n "$BZIP2"; then
-  echo "$as_me:44385: result: $BZIP2" >&5
+  echo "$as_me:44381: result: $BZIP2" >&5
 echo "${ECHO_T}$BZIP2" >&6
 else
-  echo "$as_me:44388: result: no" >&5
+  echo "$as_me:44384: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -44444,7 +44440,7 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "${as_me:-configure}:44447: testing defining path for ${cf_path_prog} ..." 1>&5
+echo "${as_me:-configure}:44443: testing defining path for ${cf_path_prog} ..." 1>&5
 
 cat >>confdefs.h <<EOF
 #define BZIP2_PATH "$cf_path_prog"
@@ -44462,7 +44458,7 @@ for ac_prog in $BROTLI brotli
 do
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
-echo "$as_me:44465: checking for $ac_word" >&5
+echo "$as_me:44461: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_path_BROTLI+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -44479,7 +44475,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   if $as_executable_p "$ac_dir/$ac_word"; then
    ac_cv_path_BROTLI="$ac_dir/$ac_word"
-   echo "$as_me:44482: found $ac_dir/$ac_word" >&5
+   echo "$as_me:44478: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -44490,10 +44486,10 @@ fi
 BROTLI=$ac_cv_path_BROTLI
 
 if test -n "$BROTLI"; then
-  echo "$as_me:44493: result: $BROTLI" >&5
+  echo "$as_me:44489: result: $BROTLI" >&5
 echo "${ECHO_T}$BROTLI" >&6
 else
-  echo "$as_me:44496: result: no" >&5
+  echo "$as_me:44492: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -44552,7 +44548,7 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "${as_me:-configure}:44555: testing defining path for ${cf_path_prog} ..." 1>&5
+echo "${as_me:-configure}:44551: testing defining path for ${cf_path_prog} ..." 1>&5
 
 cat >>confdefs.h <<EOF
 #define BROTLI_PATH "$cf_path_prog"
@@ -44570,7 +44566,7 @@ for ac_prog in $TAR tar pax gtar gnutar bsdtar star
 do
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
-echo "$as_me:44573: checking for $ac_word" >&5
+echo "$as_me:44569: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_path_TAR+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -44587,7 +44583,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   if $as_executable_p "$ac_dir/$ac_word"; then
    ac_cv_path_TAR="$ac_dir/$ac_word"
-   echo "$as_me:44590: found $ac_dir/$ac_word" >&5
+   echo "$as_me:44586: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -44598,10 +44594,10 @@ fi
 TAR=$ac_cv_path_TAR
 
 if test -n "$TAR"; then
-  echo "$as_me:44601: result: $TAR" >&5
+  echo "$as_me:44597: result: $TAR" >&5
 echo "${ECHO_T}$TAR" >&6
 else
-  echo "$as_me:44604: result: no" >&5
+  echo "$as_me:44600: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -44660,7 +44656,7 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "${as_me:-configure}:44663: testing defining path for ${cf_path_prog} ..." 1>&5
+echo "${as_me:-configure}:44659: testing defining path for ${cf_path_prog} ..." 1>&5
 
 cat >>confdefs.h <<EOF
 #define TAR_PATH "$cf_path_prog"
@@ -44718,7 +44714,7 @@ for ac_prog in $COMPRESS compress
 do
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
-echo "$as_me:44721: checking for $ac_word" >&5
+echo "$as_me:44717: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_path_COMPRESS+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -44735,7 +44731,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   if $as_executable_p "$ac_dir/$ac_word"; then
    ac_cv_path_COMPRESS="$ac_dir/$ac_word"
-   echo "$as_me:44738: found $ac_dir/$ac_word" >&5
+   echo "$as_me:44734: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -44746,10 +44742,10 @@ fi
 COMPRESS=$ac_cv_path_COMPRESS
 
 if test -n "$COMPRESS"; then
-  echo "$as_me:44749: result: $COMPRESS" >&5
+  echo "$as_me:44745: result: $COMPRESS" >&5
 echo "${ECHO_T}$COMPRESS" >&6
 else
-  echo "$as_me:44752: result: no" >&5
+  echo "$as_me:44748: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -44808,7 +44804,7 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "${as_me:-configure}:44811: testing defining path for ${cf_path_prog} ..." 1>&5
+echo "${as_me:-configure}:44807: testing defining path for ${cf_path_prog} ..." 1>&5
 
 cat >>confdefs.h <<EOF
 #define COMPRESS_PATH "$cf_path_prog"
@@ -44826,7 +44822,7 @@ for ac_prog in $RM rm
 do
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
-echo "$as_me:44829: checking for $ac_word" >&5
+echo "$as_me:44825: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_path_RM+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -44843,7 +44839,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   if $as_executable_p "$ac_dir/$ac_word"; then
    ac_cv_path_RM="$ac_dir/$ac_word"
-   echo "$as_me:44846: found $ac_dir/$ac_word" >&5
+   echo "$as_me:44842: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -44854,10 +44850,10 @@ fi
 RM=$ac_cv_path_RM
 
 if test -n "$RM"; then
-  echo "$as_me:44857: result: $RM" >&5
+  echo "$as_me:44853: result: $RM" >&5
 echo "${ECHO_T}$RM" >&6
 else
-  echo "$as_me:44860: result: no" >&5
+  echo "$as_me:44856: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -44916,7 +44912,7 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "${as_me:-configure}:44919: testing defining path for ${cf_path_prog} ..." 1>&5
+echo "${as_me:-configure}:44915: testing defining path for ${cf_path_prog} ..." 1>&5
 
 cat >>confdefs.h <<EOF
 #define RM_PATH "$cf_path_prog"
@@ -44934,7 +44930,7 @@ for ac_prog in $UUDECODE uudecode
 do
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
-echo "$as_me:44937: checking for $ac_word" >&5
+echo "$as_me:44933: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_path_UUDECODE+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -44951,7 +44947,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   if $as_executable_p "$ac_dir/$ac_word"; then
    ac_cv_path_UUDECODE="$ac_dir/$ac_word"
-   echo "$as_me:44954: found $ac_dir/$ac_word" >&5
+   echo "$as_me:44950: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -44962,10 +44958,10 @@ fi
 UUDECODE=$ac_cv_path_UUDECODE
 
 if test -n "$UUDECODE"; then
-  echo "$as_me:44965: result: $UUDECODE" >&5
+  echo "$as_me:44961: result: $UUDECODE" >&5
 echo "${ECHO_T}$UUDECODE" >&6
 else
-  echo "$as_me:44968: result: no" >&5
+  echo "$as_me:44964: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -45024,7 +45020,7 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "${as_me:-configure}:45027: testing defining path for ${cf_path_prog} ..." 1>&5
+echo "${as_me:-configure}:45023: testing defining path for ${cf_path_prog} ..." 1>&5
 
 cat >>confdefs.h <<EOF
 #define UUDECODE_PATH "$cf_path_prog"
@@ -45042,7 +45038,7 @@ for ac_prog in $ZCAT zcat
 do
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
-echo "$as_me:45045: checking for $ac_word" >&5
+echo "$as_me:45041: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_path_ZCAT+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -45059,7 +45055,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   if $as_executable_p "$ac_dir/$ac_word"; then
    ac_cv_path_ZCAT="$ac_dir/$ac_word"
-   echo "$as_me:45062: found $ac_dir/$ac_word" >&5
+   echo "$as_me:45058: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -45070,10 +45066,10 @@ fi
 ZCAT=$ac_cv_path_ZCAT
 
 if test -n "$ZCAT"; then
-  echo "$as_me:45073: result: $ZCAT" >&5
+  echo "$as_me:45069: result: $ZCAT" >&5
 echo "${ECHO_T}$ZCAT" >&6
 else
-  echo "$as_me:45076: result: no" >&5
+  echo "$as_me:45072: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -45132,7 +45128,7 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "${as_me:-configure}:45135: testing defining path for ${cf_path_prog} ..." 1>&5
+echo "${as_me:-configure}:45131: testing defining path for ${cf_path_prog} ..." 1>&5
 
 cat >>confdefs.h <<EOF
 #define ZCAT_PATH "$cf_path_prog"
@@ -45150,7 +45146,7 @@ for ac_prog in $ZIP zip
 do
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
-echo "$as_me:45153: checking for $ac_word" >&5
+echo "$as_me:45149: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_path_ZIP+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -45167,7 +45163,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   if $as_executable_p "$ac_dir/$ac_word"; then
    ac_cv_path_ZIP="$ac_dir/$ac_word"
-   echo "$as_me:45170: found $ac_dir/$ac_word" >&5
+   echo "$as_me:45166: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -45178,10 +45174,10 @@ fi
 ZIP=$ac_cv_path_ZIP
 
 if test -n "$ZIP"; then
-  echo "$as_me:45181: result: $ZIP" >&5
+  echo "$as_me:45177: result: $ZIP" >&5
 echo "${ECHO_T}$ZIP" >&6
 else
-  echo "$as_me:45184: result: no" >&5
+  echo "$as_me:45180: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -45240,7 +45236,7 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "${as_me:-configure}:45243: testing defining path for ${cf_path_prog} ..." 1>&5
+echo "${as_me:-configure}:45239: testing defining path for ${cf_path_prog} ..." 1>&5
 
 cat >>confdefs.h <<EOF
 #define ZIP_PATH "$cf_path_prog"
@@ -45268,7 +45264,7 @@ for ac_prog in $INSTALL install
 do
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
-echo "$as_me:45271: checking for $ac_word" >&5
+echo "$as_me:45267: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_path_INSTALL+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -45285,7 +45281,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   if $as_executable_p "$ac_dir/$ac_word"; then
    ac_cv_path_INSTALL="$ac_dir/$ac_word"
-   echo "$as_me:45288: found $ac_dir/$ac_word" >&5
+   echo "$as_me:45284: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -45296,10 +45292,10 @@ fi
 INSTALL=$ac_cv_path_INSTALL
 
 if test -n "$INSTALL"; then
-  echo "$as_me:45299: result: $INSTALL" >&5
+  echo "$as_me:45295: result: $INSTALL" >&5
 echo "${ECHO_T}$INSTALL" >&6
 else
-  echo "$as_me:45302: result: no" >&5
+  echo "$as_me:45298: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -45358,7 +45354,7 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "${as_me:-configure}:45361: testing defining path for ${cf_path_prog} ..." 1>&5
+echo "${as_me:-configure}:45357: testing defining path for ${cf_path_prog} ..." 1>&5
 
 cat >>confdefs.h <<EOF
 #define INSTALL_PATH "$cf_path_prog"
@@ -45388,7 +45384,7 @@ if test "$cf_cv_screen" = pdcurses ; then
 	case "$host_os" in
 	(mingw*)
 
-echo "$as_me:45391: checking for initscr in -lpdcurses" >&5
+echo "$as_me:45387: checking for initscr in -lpdcurses" >&5
 echo $ECHO_N "checking for initscr in -lpdcurses... $ECHO_C" >&6
 if test "${ac_cv_lib_pdcurses_initscr+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -45396,7 +45392,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lpdcurses  $LIBS"
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 45399 "configure"
+#line 45395 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -45415,16 +45411,16 @@ initscr ();
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:45418: \"$ac_link\"") >&5
+if { (eval echo "$as_me:45414: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:45421: \$? = $ac_status" >&5
+  echo "$as_me:45417: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:45424: \"$ac_try\"") >&5
+  { (eval echo "$as_me:45420: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:45427: \$? = $ac_status" >&5
+  echo "$as_me:45423: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   ac_cv_lib_pdcurses_initscr=yes
 else
@@ -45435,7 +45431,7 @@ fi
 rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext"
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:45438: result: $ac_cv_lib_pdcurses_initscr" >&5
+echo "$as_me:45434: result: $ac_cv_lib_pdcurses_initscr" >&5
 echo "${ECHO_T}$ac_cv_lib_pdcurses_initscr" >&6
 if test "$ac_cv_lib_pdcurses_initscr" = yes; then
 
@@ -45457,13 +45453,13 @@ LIBS="$cf_add_libs"
 
 	cf_cv_term_header=no
 	cf_cv_unctrl_header=no
-	echo "$as_me:45460: checking for winwstr" >&5
+	echo "$as_me:45456: checking for winwstr" >&5
 echo $ECHO_N "checking for winwstr... $ECHO_C" >&6
 if test "${ac_cv_func_winwstr+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >"conftest.$ac_ext" <<_ACEOF
-#line 45466 "configure"
+#line 45462 "configure"
 #include "confdefs.h"
 #define winwstr autoconf_temporary
 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
@@ -45494,16 +45490,16 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:45497: \"$ac_link\"") >&5
+if { (eval echo "$as_me:45493: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:45500: \$? = $ac_status" >&5
+  echo "$as_me:45496: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:45503: \"$ac_try\"") >&5
+  { (eval echo "$as_me:45499: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:45506: \$? = $ac_status" >&5
+  echo "$as_me:45502: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   ac_cv_func_winwstr=yes
 else
@@ -45513,7 +45509,7 @@ ac_cv_func_winwstr=no
 fi
 rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext"
 fi
-echo "$as_me:45516: result: $ac_cv_func_winwstr" >&5
+echo "$as_me:45512: result: $ac_cv_func_winwstr" >&5
 echo "${ECHO_T}$ac_cv_func_winwstr" >&6
 if test "$ac_cv_func_winwstr" = yes; then
 
@@ -45523,13 +45519,13 @@ EOF
 
 fi
 
-	echo "$as_me:45526: checking for pdcurses_dll_iname" >&5
+	echo "$as_me:45522: checking for pdcurses_dll_iname" >&5
 echo $ECHO_N "checking for pdcurses_dll_iname... $ECHO_C" >&6
 if test "${ac_cv_func_pdcurses_dll_iname+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >"conftest.$ac_ext" <<_ACEOF
-#line 45532 "configure"
+#line 45528 "configure"
 #include "confdefs.h"
 #define pdcurses_dll_iname autoconf_temporary
 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
@@ -45560,16 +45556,16 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:45563: \"$ac_link\"") >&5
+if { (eval echo "$as_me:45559: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:45566: \$? = $ac_status" >&5
+  echo "$as_me:45562: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:45569: \"$ac_try\"") >&5
+  { (eval echo "$as_me:45565: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:45572: \$? = $ac_status" >&5
+  echo "$as_me:45568: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   ac_cv_func_pdcurses_dll_iname=yes
 else
@@ -45579,7 +45575,7 @@ ac_cv_func_pdcurses_dll_iname=no
 fi
 rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext"
 fi
-echo "$as_me:45582: result: $ac_cv_func_pdcurses_dll_iname" >&5
+echo "$as_me:45578: result: $ac_cv_func_pdcurses_dll_iname" >&5
 echo "${ECHO_T}$ac_cv_func_pdcurses_dll_iname" >&6
 if test "$ac_cv_func_pdcurses_dll_iname" = yes; then
 
@@ -45596,7 +45592,7 @@ fi
 
 cf_x_athena=${cf_x_athena:-Xaw}
 
-echo "$as_me:45599: checking if you want to link with Xaw 3d library" >&5
+echo "$as_me:45595: checking if you want to link with Xaw 3d library" >&5
 echo $ECHO_N "checking if you want to link with Xaw 3d library... $ECHO_C" >&6
 withval=
 
@@ -45607,14 +45603,14 @@ if test "${with_Xaw3d+set}" = set; then
 fi;
 if test "$withval" = yes ; then
 	cf_x_athena=Xaw3d
-	echo "$as_me:45610: result: yes" >&5
+	echo "$as_me:45606: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 else
-	echo "$as_me:45613: result: no" >&5
+	echo "$as_me:45609: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
-echo "$as_me:45617: checking if you want to link with Xaw 3d xft library" >&5
+echo "$as_me:45613: checking if you want to link with Xaw 3d xft library" >&5
 echo $ECHO_N "checking if you want to link with Xaw 3d xft library... $ECHO_C" >&6
 withval=
 
@@ -45625,14 +45621,14 @@ if test "${with_Xaw3dxft+set}" = set; then
 fi;
 if test "$withval" = yes ; then
 	cf_x_athena=Xaw3dxft
-	echo "$as_me:45628: result: yes" >&5
+	echo "$as_me:45624: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 else
-	echo "$as_me:45631: result: no" >&5
+	echo "$as_me:45627: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
-echo "$as_me:45635: checking if you want to link with neXT Athena library" >&5
+echo "$as_me:45631: checking if you want to link with neXT Athena library" >&5
 echo $ECHO_N "checking if you want to link with neXT Athena library... $ECHO_C" >&6
 withval=
 
@@ -45643,14 +45639,14 @@ if test "${with_neXtaw+set}" = set; then
 fi;
 if test "$withval" = yes ; then
 	cf_x_athena=neXtaw
-	echo "$as_me:45646: result: yes" >&5
+	echo "$as_me:45642: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 else
-	echo "$as_me:45649: result: no" >&5
+	echo "$as_me:45645: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
-echo "$as_me:45653: checking if you want to link with Athena-Plus library" >&5
+echo "$as_me:45649: checking if you want to link with Athena-Plus library" >&5
 echo $ECHO_N "checking if you want to link with Athena-Plus library... $ECHO_C" >&6
 withval=
 
@@ -45661,10 +45657,10 @@ if test "${with_XawPlus+set}" = set; then
 fi;
 if test "$withval" = yes ; then
 	cf_x_athena=XawPlus
-	echo "$as_me:45664: result: yes" >&5
+	echo "$as_me:45660: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 else
-	echo "$as_me:45667: result: no" >&5
+	echo "$as_me:45663: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -45684,17 +45680,17 @@ if test "$PKG_CONFIG" != none ; then
 if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists "$cf_athena_pkg"; then
 	test -n "$verbose" && echo "	found package $cf_athena_pkg" 1>&6
 
-echo "${as_me:-configure}:45687: testing found package $cf_athena_pkg ..." 1>&5
+echo "${as_me:-configure}:45683: testing found package $cf_athena_pkg ..." 1>&5
 
 	cf_pkgconfig_incs="`$PKG_CONFIG --cflags "$cf_athena_pkg" 2>/dev/null`"
 	cf_pkgconfig_libs="`$PKG_CONFIG --libs   "$cf_athena_pkg" 2>/dev/null`"
 	test -n "$verbose" && echo "	package $cf_athena_pkg CFLAGS: $cf_pkgconfig_incs" 1>&6
 
-echo "${as_me:-configure}:45693: testing package $cf_athena_pkg CFLAGS: $cf_pkgconfig_incs ..." 1>&5
+echo "${as_me:-configure}:45689: testing package $cf_athena_pkg CFLAGS: $cf_pkgconfig_incs ..." 1>&5
 
 	test -n "$verbose" && echo "	package $cf_athena_pkg LIBS: $cf_pkgconfig_libs" 1>&6
 
-echo "${as_me:-configure}:45697: testing package $cf_athena_pkg LIBS: $cf_pkgconfig_libs ..." 1>&5
+echo "${as_me:-configure}:45693: testing package $cf_athena_pkg LIBS: $cf_pkgconfig_libs ..." 1>&5
 
 cf_fix_cppflags=no
 cf_new_cflags=
@@ -45825,20 +45821,20 @@ EOF
 			LIBS=`echo "$LIBS " | sed -e 's/  / /g' -e 's%-l'"$cf_trim_lib"' %%' -e 's/ $//'`
 			test -n "$verbose" && echo "	..trimmed $LIBS" 1>&6
 
-echo "${as_me:-configure}:45828: testing ..trimmed $LIBS ..." 1>&5
+echo "${as_me:-configure}:45824: testing ..trimmed $LIBS ..." 1>&5
 
 			;;
 		esac
 	done
 
-echo "$as_me:45834: checking for usable $cf_x_athena/Xmu package" >&5
+echo "$as_me:45830: checking for usable $cf_x_athena/Xmu package" >&5
 echo $ECHO_N "checking for usable $cf_x_athena/Xmu package... $ECHO_C" >&6
 if test "${cf_cv_xaw_compat+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 45841 "configure"
+#line 45837 "configure"
 #include "confdefs.h"
 
 $ac_includes_default
@@ -45856,16 +45852,16 @@ int check = XmuCompareISOLatin1("big", "small");
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:45859: \"$ac_link\"") >&5
+if { (eval echo "$as_me:45855: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:45862: \$? = $ac_status" >&5
+  echo "$as_me:45858: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:45865: \"$ac_try\"") >&5
+  { (eval echo "$as_me:45861: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:45868: \$? = $ac_status" >&5
+  echo "$as_me:45864: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_xaw_compat=yes
 else
@@ -45875,7 +45871,7 @@ cf_cv_xaw_compat=no
 fi
 rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext"
 fi
-echo "$as_me:45878: result: $cf_cv_xaw_compat" >&5
+echo "$as_me:45874: result: $cf_cv_xaw_compat" >&5
 echo "${ECHO_T}$cf_cv_xaw_compat" >&6
 
 			if test "$cf_cv_xaw_compat" = no
@@ -45887,7 +45883,7 @@ echo "${ECHO_T}$cf_cv_xaw_compat" >&6
 				(*)
 					test -n "$verbose" && echo "	work around broken package" 1>&6
 
-echo "${as_me:-configure}:45890: testing work around broken package ..." 1>&5
+echo "${as_me:-configure}:45886: testing work around broken package ..." 1>&5
 
 					cf_save_xmu="$LIBS"
 					cf_first_lib=`echo "$cf_save_xmu" | sed -e 's/^  *//' -e 's/ .*//'`
@@ -45895,17 +45891,17 @@ echo "${as_me:-configure}:45890: testing work around broken package ..." 1>&5
 if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists "xmu"; then
 	test -n "$verbose" && echo "	found package xmu" 1>&6
 
-echo "${as_me:-configure}:45898: testing found package xmu ..." 1>&5
+echo "${as_me:-configure}:45894: testing found package xmu ..." 1>&5
 
 	cf_pkgconfig_incs="`$PKG_CONFIG --cflags "xmu" 2>/dev/null`"
 	cf_pkgconfig_libs="`$PKG_CONFIG --libs   "xmu" 2>/dev/null`"
 	test -n "$verbose" && echo "	package xmu CFLAGS: $cf_pkgconfig_incs" 1>&6
 
-echo "${as_me:-configure}:45904: testing package xmu CFLAGS: $cf_pkgconfig_incs ..." 1>&5
+echo "${as_me:-configure}:45900: testing package xmu CFLAGS: $cf_pkgconfig_incs ..." 1>&5
 
 	test -n "$verbose" && echo "	package xmu LIBS: $cf_pkgconfig_libs" 1>&6
 
-echo "${as_me:-configure}:45908: testing package xmu LIBS: $cf_pkgconfig_libs ..." 1>&5
+echo "${as_me:-configure}:45904: testing package xmu LIBS: $cf_pkgconfig_libs ..." 1>&5
 
 cf_fix_cppflags=no
 cf_new_cflags=
@@ -46025,12 +46021,12 @@ LIBS="$cf_add_libs"
 
 test -n "$verbose" && echo "	...before $LIBS" 1>&6
 
-echo "${as_me:-configure}:46028: testing ...before $LIBS ..." 1>&5
+echo "${as_me:-configure}:46024: testing ...before $LIBS ..." 1>&5
 
 LIBS=`echo "$LIBS" | sed -e "s/[ 	][ 	]*/ /g" -e "s%$cf_first_lib %$cf_first_lib $cf_pkgconfig_libs %" -e 's%  % %g'`
 test -n "$verbose" && echo "	...after  $LIBS" 1>&6
 
-echo "${as_me:-configure}:46033: testing ...after  $LIBS ..." 1>&5
+echo "${as_me:-configure}:46029: testing ...after  $LIBS ..." 1>&5
 
 else
 	cf_pkgconfig_incs=
@@ -46038,12 +46034,12 @@ else
 
 test -n "$verbose" && echo "	...before $LIBS" 1>&6
 
-echo "${as_me:-configure}:46041: testing ...before $LIBS ..." 1>&5
+echo "${as_me:-configure}:46037: testing ...before $LIBS ..." 1>&5
 
 LIBS=`echo "$LIBS" | sed -e "s/[ 	][ 	]*/ /g" -e "s%$cf_first_lib %$cf_first_lib -lXmu %" -e 's%  % %g'`
 test -n "$verbose" && echo "	...after  $LIBS" 1>&6
 
-echo "${as_me:-configure}:46046: testing ...after  $LIBS ..." 1>&5
+echo "${as_me:-configure}:46042: testing ...after  $LIBS ..." 1>&5
 
 fi
 
@@ -46054,7 +46050,7 @@ fi
 			LIBS=`echo "$LIBS " | sed -e 's/  / /g' -e 's%-l'"$cf_trim_lib"' %%' -e 's/ $//'`
 			test -n "$verbose" && echo "	..trimmed $LIBS" 1>&6
 
-echo "${as_me:-configure}:46057: testing ..trimmed $LIBS ..." 1>&5
+echo "${as_me:-configure}:46053: testing ..trimmed $LIBS ..." 1>&5
 
 			;;
 		esac
@@ -46079,17 +46075,17 @@ if test -z "$cf_x_athena_lib" ; then
 if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists "Xext"; then
 	test -n "$verbose" && echo "	found package Xext" 1>&6
 
-echo "${as_me:-configure}:46082: testing found package Xext ..." 1>&5
+echo "${as_me:-configure}:46078: testing found package Xext ..." 1>&5
 
 	cf_pkgconfig_incs="`$PKG_CONFIG --cflags "Xext" 2>/dev/null`"
 	cf_pkgconfig_libs="`$PKG_CONFIG --libs   "Xext" 2>/dev/null`"
 	test -n "$verbose" && echo "	package Xext CFLAGS: $cf_pkgconfig_incs" 1>&6
 
-echo "${as_me:-configure}:46088: testing package Xext CFLAGS: $cf_pkgconfig_incs ..." 1>&5
+echo "${as_me:-configure}:46084: testing package Xext CFLAGS: $cf_pkgconfig_incs ..." 1>&5
 
 	test -n "$verbose" && echo "	package Xext LIBS: $cf_pkgconfig_libs" 1>&6
 
-echo "${as_me:-configure}:46092: testing package Xext LIBS: $cf_pkgconfig_libs ..." 1>&5
+echo "${as_me:-configure}:46088: testing package Xext LIBS: $cf_pkgconfig_libs ..." 1>&5
 
 cf_fix_cppflags=no
 cf_new_cflags=
@@ -46210,7 +46206,7 @@ else
 	cf_pkgconfig_incs=
 	cf_pkgconfig_libs=
 
-	echo "$as_me:46213: checking for XextCreateExtension in -lXext" >&5
+	echo "$as_me:46209: checking for XextCreateExtension in -lXext" >&5
 echo $ECHO_N "checking for XextCreateExtension in -lXext... $ECHO_C" >&6
 if test "${ac_cv_lib_Xext_XextCreateExtension+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -46218,7 +46214,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lXext  $LIBS"
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 46221 "configure"
+#line 46217 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -46237,16 +46233,16 @@ XextCreateExtension ();
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:46240: \"$ac_link\"") >&5
+if { (eval echo "$as_me:46236: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:46243: \$? = $ac_status" >&5
+  echo "$as_me:46239: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:46246: \"$ac_try\"") >&5
+  { (eval echo "$as_me:46242: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:46249: \$? = $ac_status" >&5
+  echo "$as_me:46245: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   ac_cv_lib_Xext_XextCreateExtension=yes
 else
@@ -46257,7 +46253,7 @@ fi
 rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext"
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:46260: result: $ac_cv_lib_Xext_XextCreateExtension" >&5
+echo "$as_me:46256: result: $ac_cv_lib_Xext_XextCreateExtension" >&5
 echo "${ECHO_T}$ac_cv_lib_Xext_XextCreateExtension" >&6
 if test "$ac_cv_lib_Xext_XextCreateExtension" = yes; then
 
@@ -46293,17 +46289,17 @@ then
 if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists "x11"; then
 	test -n "$verbose" && echo "	found package x11" 1>&6
 
-echo "${as_me:-configure}:46296: testing found package x11 ..." 1>&5
+echo "${as_me:-configure}:46292: testing found package x11 ..." 1>&5
 
 	cf_pkgconfig_incs="`$PKG_CONFIG --cflags "x11" 2>/dev/null`"
 	cf_pkgconfig_libs="`$PKG_CONFIG --libs   "x11" 2>/dev/null`"
 	test -n "$verbose" && echo "	package x11 CFLAGS: $cf_pkgconfig_incs" 1>&6
 
-echo "${as_me:-configure}:46302: testing package x11 CFLAGS: $cf_pkgconfig_incs ..." 1>&5
+echo "${as_me:-configure}:46298: testing package x11 CFLAGS: $cf_pkgconfig_incs ..." 1>&5
 
 	test -n "$verbose" && echo "	package x11 LIBS: $cf_pkgconfig_libs" 1>&6
 
-echo "${as_me:-configure}:46306: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5
+echo "${as_me:-configure}:46302: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5
 
 cf_fix_cppflags=no
 cf_new_cflags=
@@ -46423,24 +46419,24 @@ LIBS="$cf_add_libs"
 else
 	cf_pkgconfig_incs=
 	cf_pkgconfig_libs=
-	{ echo "$as_me:46426: WARNING: unable to find X11 library" >&5
+	{ echo "$as_me:46422: WARNING: unable to find X11 library" >&5
 echo "$as_me: WARNING: unable to find X11 library" >&2;}
 fi
 
 if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists "ice"; then
 	test -n "$verbose" && echo "	found package ice" 1>&6
 
-echo "${as_me:-configure}:46433: testing found package ice ..." 1>&5
+echo "${as_me:-configure}:46429: testing found package ice ..." 1>&5
 
 	cf_pkgconfig_incs="`$PKG_CONFIG --cflags "ice" 2>/dev/null`"
 	cf_pkgconfig_libs="`$PKG_CONFIG --libs   "ice" 2>/dev/null`"
 	test -n "$verbose" && echo "	package ice CFLAGS: $cf_pkgconfig_incs" 1>&6
 
-echo "${as_me:-configure}:46439: testing package ice CFLAGS: $cf_pkgconfig_incs ..." 1>&5
+echo "${as_me:-configure}:46435: testing package ice CFLAGS: $cf_pkgconfig_incs ..." 1>&5
 
 	test -n "$verbose" && echo "	package ice LIBS: $cf_pkgconfig_libs" 1>&6
 
-echo "${as_me:-configure}:46443: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5
+echo "${as_me:-configure}:46439: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5
 
 cf_fix_cppflags=no
 cf_new_cflags=
@@ -46560,24 +46556,24 @@ LIBS="$cf_add_libs"
 else
 	cf_pkgconfig_incs=
 	cf_pkgconfig_libs=
-	{ echo "$as_me:46563: WARNING: unable to find ICE library" >&5
+	{ echo "$as_me:46559: WARNING: unable to find ICE library" >&5
 echo "$as_me: WARNING: unable to find ICE library" >&2;}
 fi
 
 if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists "sm"; then
 	test -n "$verbose" && echo "	found package sm" 1>&6
 
-echo "${as_me:-configure}:46570: testing found package sm ..." 1>&5
+echo "${as_me:-configure}:46566: testing found package sm ..." 1>&5
 
 	cf_pkgconfig_incs="`$PKG_CONFIG --cflags "sm" 2>/dev/null`"
 	cf_pkgconfig_libs="`$PKG_CONFIG --libs   "sm" 2>/dev/null`"
 	test -n "$verbose" && echo "	package sm CFLAGS: $cf_pkgconfig_incs" 1>&6
 
-echo "${as_me:-configure}:46576: testing package sm CFLAGS: $cf_pkgconfig_incs ..." 1>&5
+echo "${as_me:-configure}:46572: testing package sm CFLAGS: $cf_pkgconfig_incs ..." 1>&5
 
 	test -n "$verbose" && echo "	package sm LIBS: $cf_pkgconfig_libs" 1>&6
 
-echo "${as_me:-configure}:46580: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5
+echo "${as_me:-configure}:46576: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5
 
 cf_fix_cppflags=no
 cf_new_cflags=
@@ -46697,24 +46693,24 @@ LIBS="$cf_add_libs"
 else
 	cf_pkgconfig_incs=
 	cf_pkgconfig_libs=
-	{ echo "$as_me:46700: WARNING: unable to find SM library" >&5
+	{ echo "$as_me:46696: WARNING: unable to find SM library" >&5
 echo "$as_me: WARNING: unable to find SM library" >&2;}
 fi
 
 if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists "xt"; then
 	test -n "$verbose" && echo "	found package xt" 1>&6
 
-echo "${as_me:-configure}:46707: testing found package xt ..." 1>&5
+echo "${as_me:-configure}:46703: testing found package xt ..." 1>&5
 
 	cf_pkgconfig_incs="`$PKG_CONFIG --cflags "xt" 2>/dev/null`"
 	cf_pkgconfig_libs="`$PKG_CONFIG --libs   "xt" 2>/dev/null`"
 	test -n "$verbose" && echo "	package xt CFLAGS: $cf_pkgconfig_incs" 1>&6
 
-echo "${as_me:-configure}:46713: testing package xt CFLAGS: $cf_pkgconfig_incs ..." 1>&5
+echo "${as_me:-configure}:46709: testing package xt CFLAGS: $cf_pkgconfig_incs ..." 1>&5
 
 	test -n "$verbose" && echo "	package xt LIBS: $cf_pkgconfig_libs" 1>&6
 
-echo "${as_me:-configure}:46717: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5
+echo "${as_me:-configure}:46713: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5
 
 cf_fix_cppflags=no
 cf_new_cflags=
@@ -46834,7 +46830,7 @@ LIBS="$cf_add_libs"
 else
 	cf_pkgconfig_incs=
 	cf_pkgconfig_libs=
-	{ echo "$as_me:46837: WARNING: unable to find Xt library" >&5
+	{ echo "$as_me:46833: WARNING: unable to find Xt library" >&5
 echo "$as_me: WARNING: unable to find Xt library" >&2;}
 fi
 
@@ -46847,17 +46843,17 @@ cf_have_X_LIBS=no
 if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists "xt"; then
 	test -n "$verbose" && echo "	found package xt" 1>&6
 
-echo "${as_me:-configure}:46850: testing found package xt ..." 1>&5
+echo "${as_me:-configure}:46846: testing found package xt ..." 1>&5
 
 	cf_pkgconfig_incs="`$PKG_CONFIG --cflags "xt" 2>/dev/null`"
 	cf_pkgconfig_libs="`$PKG_CONFIG --libs   "xt" 2>/dev/null`"
 	test -n "$verbose" && echo "	package xt CFLAGS: $cf_pkgconfig_incs" 1>&6
 
-echo "${as_me:-configure}:46856: testing package xt CFLAGS: $cf_pkgconfig_incs ..." 1>&5
+echo "${as_me:-configure}:46852: testing package xt CFLAGS: $cf_pkgconfig_incs ..." 1>&5
 
 	test -n "$verbose" && echo "	package xt LIBS: $cf_pkgconfig_libs" 1>&6
 
-echo "${as_me:-configure}:46860: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5
+echo "${as_me:-configure}:46856: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5
 
 cf_fix_cppflags=no
 cf_new_cflags=
@@ -46978,14 +46974,14 @@ LIBS="$cf_add_libs"
 		;;
 	(*)
 # we have an "xt" package, but it may omit Xt's dependency on X11
-echo "$as_me:46981: checking for usable X dependency" >&5
+echo "$as_me:46977: checking for usable X dependency" >&5
 echo $ECHO_N "checking for usable X dependency... $ECHO_C" >&6
 if test "${cf_cv_xt_x11_compat+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 46988 "configure"
+#line 46984 "configure"
 #include "confdefs.h"
 
 $ac_includes_default
@@ -47005,16 +47001,16 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:47008: \"$ac_link\"") >&5
+if { (eval echo "$as_me:47004: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:47011: \$? = $ac_status" >&5
+  echo "$as_me:47007: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:47014: \"$ac_try\"") >&5
+  { (eval echo "$as_me:47010: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:47017: \$? = $ac_status" >&5
+  echo "$as_me:47013: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_xt_x11_compat=yes
 else
@@ -47024,30 +47020,30 @@ cf_cv_xt_x11_compat=no
 fi
 rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext"
 fi
-echo "$as_me:47027: result: $cf_cv_xt_x11_compat" >&5
+echo "$as_me:47023: result: $cf_cv_xt_x11_compat" >&5
 echo "${ECHO_T}$cf_cv_xt_x11_compat" >&6
 		if test "$cf_cv_xt_x11_compat" = no
 		then
 			test -n "$verbose" && echo "	work around broken X11 dependency" 1>&6
 
-echo "${as_me:-configure}:47033: testing work around broken X11 dependency ..." 1>&5
+echo "${as_me:-configure}:47029: testing work around broken X11 dependency ..." 1>&5
 
 			# 2010/11/19 - good enough until a working Xt on Xcb is delivered.
 
 if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists "x11"; then
 	test -n "$verbose" && echo "	found package x11" 1>&6
 
-echo "${as_me:-configure}:47040: testing found package x11 ..." 1>&5
+echo "${as_me:-configure}:47036: testing found package x11 ..." 1>&5
 
 	cf_pkgconfig_incs="`$PKG_CONFIG --cflags "x11" 2>/dev/null`"
 	cf_pkgconfig_libs="`$PKG_CONFIG --libs   "x11" 2>/dev/null`"
 	test -n "$verbose" && echo "	package x11 CFLAGS: $cf_pkgconfig_incs" 1>&6
 
-echo "${as_me:-configure}:47046: testing package x11 CFLAGS: $cf_pkgconfig_incs ..." 1>&5
+echo "${as_me:-configure}:47042: testing package x11 CFLAGS: $cf_pkgconfig_incs ..." 1>&5
 
 	test -n "$verbose" && echo "	package x11 LIBS: $cf_pkgconfig_libs" 1>&6
 
-echo "${as_me:-configure}:47050: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5
+echo "${as_me:-configure}:47046: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5
 
 cf_fix_cppflags=no
 cf_new_cflags=
@@ -47170,12 +47166,12 @@ else
 
 test -n "$verbose" && echo "	...before $LIBS" 1>&6
 
-echo "${as_me:-configure}:47173: testing ...before $LIBS ..." 1>&5
+echo "${as_me:-configure}:47169: testing ...before $LIBS ..." 1>&5
 
 LIBS=`echo "$LIBS" | sed -e "s/[ 	][ 	]*/ /g" -e "s%-lXt %-lXt -lX11 %" -e 's%  % %g'`
 test -n "$verbose" && echo "	...after  $LIBS" 1>&6
 
-echo "${as_me:-configure}:47178: testing ...after  $LIBS ..." 1>&5
+echo "${as_me:-configure}:47174: testing ...after  $LIBS ..." 1>&5
 
 fi
 
@@ -47183,14 +47179,14 @@ fi
 		;;
 	esac
 
-echo "$as_me:47186: checking for usable X Toolkit package" >&5
+echo "$as_me:47182: checking for usable X Toolkit package" >&5
 echo $ECHO_N "checking for usable X Toolkit package... $ECHO_C" >&6
 if test "${cf_cv_xt_ice_compat+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 47193 "configure"
+#line 47189 "configure"
 #include "confdefs.h"
 
 $ac_includes_default
@@ -47206,16 +47202,16 @@ int num = IceConnectionNumber(0); (void) num
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:47209: \"$ac_link\"") >&5
+if { (eval echo "$as_me:47205: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:47212: \$? = $ac_status" >&5
+  echo "$as_me:47208: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:47215: \"$ac_try\"") >&5
+  { (eval echo "$as_me:47211: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:47218: \$? = $ac_status" >&5
+  echo "$as_me:47214: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_xt_ice_compat=yes
 else
@@ -47225,7 +47221,7 @@ cf_cv_xt_ice_compat=no
 fi
 rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext"
 fi
-echo "$as_me:47228: result: $cf_cv_xt_ice_compat" >&5
+echo "$as_me:47224: result: $cf_cv_xt_ice_compat" >&5
 echo "${ECHO_T}$cf_cv_xt_ice_compat" >&6
 
 	if test "$cf_cv_xt_ice_compat" = no
@@ -47239,22 +47235,22 @@ echo "${ECHO_T}$cf_cv_xt_ice_compat" >&6
 			(*)
 				test -n "$verbose" && echo "	work around broken ICE dependency" 1>&6
 
-echo "${as_me:-configure}:47242: testing work around broken ICE dependency ..." 1>&5
+echo "${as_me:-configure}:47238: testing work around broken ICE dependency ..." 1>&5
 
 if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists "ice"; then
 	test -n "$verbose" && echo "	found package ice" 1>&6
 
-echo "${as_me:-configure}:47247: testing found package ice ..." 1>&5
+echo "${as_me:-configure}:47243: testing found package ice ..." 1>&5
 
 	cf_pkgconfig_incs="`$PKG_CONFIG --cflags "ice" 2>/dev/null`"
 	cf_pkgconfig_libs="`$PKG_CONFIG --libs   "ice" 2>/dev/null`"
 	test -n "$verbose" && echo "	package ice CFLAGS: $cf_pkgconfig_incs" 1>&6
 
-echo "${as_me:-configure}:47253: testing package ice CFLAGS: $cf_pkgconfig_incs ..." 1>&5
+echo "${as_me:-configure}:47249: testing package ice CFLAGS: $cf_pkgconfig_incs ..." 1>&5
 
 	test -n "$verbose" && echo "	package ice LIBS: $cf_pkgconfig_libs" 1>&6
 
-echo "${as_me:-configure}:47257: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5
+echo "${as_me:-configure}:47253: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5
 
 cf_fix_cppflags=no
 cf_new_cflags=
@@ -47373,17 +47369,17 @@ LIBS="$cf_add_libs"
 if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists "sm"; then
 	test -n "$verbose" && echo "	found package sm" 1>&6
 
-echo "${as_me:-configure}:47376: testing found package sm ..." 1>&5
+echo "${as_me:-configure}:47372: testing found package sm ..." 1>&5
 
 	cf_pkgconfig_incs="`$PKG_CONFIG --cflags "sm" 2>/dev/null`"
 	cf_pkgconfig_libs="`$PKG_CONFIG --libs   "sm" 2>/dev/null`"
 	test -n "$verbose" && echo "	package sm CFLAGS: $cf_pkgconfig_incs" 1>&6
 
-echo "${as_me:-configure}:47382: testing package sm CFLAGS: $cf_pkgconfig_incs ..." 1>&5
+echo "${as_me:-configure}:47378: testing package sm CFLAGS: $cf_pkgconfig_incs ..." 1>&5
 
 	test -n "$verbose" && echo "	package sm LIBS: $cf_pkgconfig_libs" 1>&6
 
-echo "${as_me:-configure}:47386: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5
+echo "${as_me:-configure}:47382: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5
 
 cf_fix_cppflags=no
 cf_new_cflags=
@@ -47512,12 +47508,12 @@ else
 
 test -n "$verbose" && echo "	...before $LIBS" 1>&6
 
-echo "${as_me:-configure}:47515: testing ...before $LIBS ..." 1>&5
+echo "${as_me:-configure}:47511: testing ...before $LIBS ..." 1>&5
 
 LIBS=`echo "$LIBS" | sed -e "s/[ 	][ 	]*/ /g" -e "s%-lXt %-lXt $X_PRE_LIBS %" -e 's%  % %g'`
 test -n "$verbose" && echo "	...after  $LIBS" 1>&6
 
-echo "${as_me:-configure}:47520: testing ...after  $LIBS ..." 1>&5
+echo "${as_me:-configure}:47516: testing ...after  $LIBS ..." 1>&5
 
 fi
 
@@ -47537,7 +47533,7 @@ else
 
 test -n "$verbose" && echo "	checking additions to CFLAGS" 1>&6
 
-echo "${as_me:-configure}:47540: testing checking additions to CFLAGS ..." 1>&5
+echo "${as_me:-configure}:47536: testing checking additions to CFLAGS ..." 1>&5
 
 cf_check_cflags="$CFLAGS"
 cf_check_cppflags="$CPPFLAGS"
@@ -47622,7 +47618,7 @@ done
 if test -n "$cf_new_cflags" ; then
 	test -n "$verbose" && echo "	add to \$CFLAGS $cf_new_cflags" 1>&6
 
-echo "${as_me:-configure}:47625: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5
+echo "${as_me:-configure}:47621: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5
 
 	test -n "$CFLAGS" && CFLAGS="$CFLAGS "
 	CFLAGS="${CFLAGS}$cf_new_cflags"
@@ -47632,7 +47628,7 @@ fi
 if test -n "$cf_new_cppflags" ; then
 	test -n "$verbose" && echo "	add to \$CPPFLAGS $cf_new_cppflags" 1>&6
 
-echo "${as_me:-configure}:47635: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5
+echo "${as_me:-configure}:47631: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5
 
 	test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS "
 	CPPFLAGS="${CPPFLAGS}$cf_new_cppflags"
@@ -47642,7 +47638,7 @@ fi
 if test -n "$cf_new_extra_cppflags" ; then
 	test -n "$verbose" && echo "	add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags" 1>&6
 
-echo "${as_me:-configure}:47645: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5
+echo "${as_me:-configure}:47641: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5
 
 	test -n "$EXTRA_CPPFLAGS" && EXTRA_CPPFLAGS="$EXTRA_CPPFLAGS "
 	EXTRA_CPPFLAGS="${EXTRA_CPPFLAGS}$cf_new_extra_cppflags"
@@ -47651,7 +47647,7 @@ fi
 
 if test "x$cf_check_cflags" != "x$CFLAGS" ; then
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 47654 "configure"
+#line 47650 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 int
@@ -47663,16 +47659,16 @@ printf("Hello world");
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:47666: \"$ac_link\"") >&5
+if { (eval echo "$as_me:47662: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:47669: \$? = $ac_status" >&5
+  echo "$as_me:47665: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:47672: \"$ac_try\"") >&5
+  { (eval echo "$as_me:47668: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:47675: \$? = $ac_status" >&5
+  echo "$as_me:47671: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   :
 else
@@ -47680,12 +47676,12 @@ else
 cat "conftest.$ac_ext" >&5
 test -n "$verbose" && echo "	test-compile failed.  Undoing change to \$CFLAGS" 1>&6
 
-echo "${as_me:-configure}:47683: testing test-compile failed.  Undoing change to \$CFLAGS ..." 1>&5
+echo "${as_me:-configure}:47679: testing test-compile failed.  Undoing change to \$CFLAGS ..." 1>&5
 
 	 if test "x$cf_check_cppflags" != "x$CPPFLAGS" ; then
 		 test -n "$verbose" && echo "	but keeping change to \$CPPFLAGS" 1>&6
 
-echo "${as_me:-configure}:47688: testing but keeping change to \$CPPFLAGS ..." 1>&5
+echo "${as_me:-configure}:47684: testing but keeping change to \$CPPFLAGS ..." 1>&5
 
 	 fi
 	 CFLAGS="$cf_check_cflags"
@@ -47693,13 +47689,13 @@ fi
 rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext"
 fi
 
-	echo "$as_me:47696: checking for XOpenDisplay" >&5
+	echo "$as_me:47692: checking for XOpenDisplay" >&5
 echo $ECHO_N "checking for XOpenDisplay... $ECHO_C" >&6
 if test "${ac_cv_func_XOpenDisplay+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >"conftest.$ac_ext" <<_ACEOF
-#line 47702 "configure"
+#line 47698 "configure"
 #include "confdefs.h"
 #define XOpenDisplay autoconf_temporary
 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
@@ -47730,16 +47726,16 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:47733: \"$ac_link\"") >&5
+if { (eval echo "$as_me:47729: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:47736: \$? = $ac_status" >&5
+  echo "$as_me:47732: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:47739: \"$ac_try\"") >&5
+  { (eval echo "$as_me:47735: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:47742: \$? = $ac_status" >&5
+  echo "$as_me:47738: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   ac_cv_func_XOpenDisplay=yes
 else
@@ -47749,13 +47745,13 @@ ac_cv_func_XOpenDisplay=no
 fi
 rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext"
 fi
-echo "$as_me:47752: result: $ac_cv_func_XOpenDisplay" >&5
+echo "$as_me:47748: result: $ac_cv_func_XOpenDisplay" >&5
 echo "${ECHO_T}$ac_cv_func_XOpenDisplay" >&6
 if test "$ac_cv_func_XOpenDisplay" = yes; then
   :
 else
 
-	echo "$as_me:47758: checking for XOpenDisplay in -lX11" >&5
+	echo "$as_me:47754: checking for XOpenDisplay in -lX11" >&5
 echo $ECHO_N "checking for XOpenDisplay in -lX11... $ECHO_C" >&6
 if test "${ac_cv_lib_X11_XOpenDisplay+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -47763,7 +47759,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lX11  $LIBS"
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 47766 "configure"
+#line 47762 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -47782,16 +47778,16 @@ XOpenDisplay ();
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:47785: \"$ac_link\"") >&5
+if { (eval echo "$as_me:47781: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:47788: \$? = $ac_status" >&5
+  echo "$as_me:47784: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:47791: \"$ac_try\"") >&5
+  { (eval echo "$as_me:47787: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:47794: \$? = $ac_status" >&5
+  echo "$as_me:47790: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   ac_cv_lib_X11_XOpenDisplay=yes
 else
@@ -47802,7 +47798,7 @@ fi
 rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext"
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:47805: result: $ac_cv_lib_X11_XOpenDisplay" >&5
+echo "$as_me:47801: result: $ac_cv_lib_X11_XOpenDisplay" >&5
 echo "${ECHO_T}$ac_cv_lib_X11_XOpenDisplay" >&6
 if test "$ac_cv_lib_X11_XOpenDisplay" = yes; then
 
@@ -47826,13 +47822,13 @@ fi
 
 fi
 
-	echo "$as_me:47829: checking for XtAppInitialize" >&5
+	echo "$as_me:47825: checking for XtAppInitialize" >&5
 echo $ECHO_N "checking for XtAppInitialize... $ECHO_C" >&6
 if test "${ac_cv_func_XtAppInitialize+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >"conftest.$ac_ext" <<_ACEOF
-#line 47835 "configure"
+#line 47831 "configure"
 #include "confdefs.h"
 #define XtAppInitialize autoconf_temporary
 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
@@ -47863,16 +47859,16 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:47866: \"$ac_link\"") >&5
+if { (eval echo "$as_me:47862: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:47869: \$? = $ac_status" >&5
+  echo "$as_me:47865: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:47872: \"$ac_try\"") >&5
+  { (eval echo "$as_me:47868: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:47875: \$? = $ac_status" >&5
+  echo "$as_me:47871: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   ac_cv_func_XtAppInitialize=yes
 else
@@ -47882,13 +47878,13 @@ ac_cv_func_XtAppInitialize=no
 fi
 rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext"
 fi
-echo "$as_me:47885: result: $ac_cv_func_XtAppInitialize" >&5
+echo "$as_me:47881: result: $ac_cv_func_XtAppInitialize" >&5
 echo "${ECHO_T}$ac_cv_func_XtAppInitialize" >&6
 if test "$ac_cv_func_XtAppInitialize" = yes; then
   :
 else
 
-	echo "$as_me:47891: checking for XtAppInitialize in -lXt" >&5
+	echo "$as_me:47887: checking for XtAppInitialize in -lXt" >&5
 echo $ECHO_N "checking for XtAppInitialize in -lXt... $ECHO_C" >&6
 if test "${ac_cv_lib_Xt_XtAppInitialize+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -47896,7 +47892,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lXt  $LIBS"
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 47899 "configure"
+#line 47895 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -47915,16 +47911,16 @@ XtAppInitialize ();
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:47918: \"$ac_link\"") >&5
+if { (eval echo "$as_me:47914: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:47921: \$? = $ac_status" >&5
+  echo "$as_me:47917: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:47924: \"$ac_try\"") >&5
+  { (eval echo "$as_me:47920: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:47927: \$? = $ac_status" >&5
+  echo "$as_me:47923: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   ac_cv_lib_Xt_XtAppInitialize=yes
 else
@@ -47935,7 +47931,7 @@ fi
 rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext"
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:47938: result: $ac_cv_lib_Xt_XtAppInitialize" >&5
+echo "$as_me:47934: result: $ac_cv_lib_Xt_XtAppInitialize" >&5
 echo "${ECHO_T}$ac_cv_lib_Xt_XtAppInitialize" >&6
 if test "$ac_cv_lib_Xt_XtAppInitialize" = yes; then
 
@@ -47952,7 +47948,7 @@ fi
 fi
 
 if test "$cf_have_X_LIBS" = no ; then
-	{ echo "$as_me:47955: WARNING: Unable to successfully link X Toolkit library (-lXt) with
+	{ echo "$as_me:47951: WARNING: Unable to successfully link X Toolkit library (-lXt) with
 test program.  You will have to check and add the proper libraries by hand
 to makefile." >&5
 echo "$as_me: WARNING: Unable to successfully link X Toolkit library (-lXt) with
@@ -47993,14 +47989,14 @@ done
 	test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS "
 	CPPFLAGS="${CPPFLAGS}-I$cf_path/include"
 
-			echo "$as_me:47996: checking for $cf_test in $cf_path" >&5
+			echo "$as_me:47992: checking for $cf_test in $cf_path" >&5
 echo $ECHO_N "checking for $cf_test in $cf_path... $ECHO_C" >&6
 		else
-			echo "$as_me:47999: checking for $cf_test" >&5
+			echo "$as_me:47995: checking for $cf_test" >&5
 echo $ECHO_N "checking for $cf_test... $ECHO_C" >&6
 		fi
 		cat >"conftest.$ac_ext" <<_ACEOF
-#line 48003 "configure"
+#line 47999 "configure"
 #include "confdefs.h"
 
 #include <X11/Intrinsic.h>
@@ -48014,16 +48010,16 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:48017: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:48013: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:48020: \$? = $ac_status" >&5
+  echo "$as_me:48016: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:48023: \"$ac_try\"") >&5
+  { (eval echo "$as_me:48019: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:48026: \$? = $ac_status" >&5
+  echo "$as_me:48022: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_result=yes
 else
@@ -48032,7 +48028,7 @@ cat "conftest.$ac_ext" >&5
 cf_result=no
 fi
 rm -f "conftest.$ac_objext" "conftest.$ac_ext"
-		echo "$as_me:48035: result: $cf_result" >&5
+		echo "$as_me:48031: result: $cf_result" >&5
 echo "${ECHO_T}$cf_result" >&6
 
 LIBS="$cf_save_LIBS_CF_X_ATHENA_CPPFLAGS"
@@ -48048,7 +48044,7 @@ CPPFLAGS="$cf_save_CPPFLAGS_CF_X_ATHENA_CPPFLAGS"
 done
 
 if test -z "$cf_x_athena_inc" ; then
-	{ echo "$as_me:48051: WARNING: Unable to find Athena header files" >&5
+	{ echo "$as_me:48047: WARNING: Unable to find Athena header files" >&5
 echo "$as_me: WARNING: Unable to find Athena header files" >&2;}
 elif test "$cf_x_athena_inc" != default ; then
 
@@ -48113,10 +48109,10 @@ for cf_add_1lib in $cf_add_0lib; do
 done
 LIBS="$cf_add_libs"
 
-		echo "$as_me:48116: checking for $cf_test in $cf_libs" >&5
+		echo "$as_me:48112: checking for $cf_test in $cf_libs" >&5
 echo $ECHO_N "checking for $cf_test in $cf_libs... $ECHO_C" >&6
 		cat >"conftest.$ac_ext" <<_ACEOF
-#line 48119 "configure"
+#line 48115 "configure"
 #include "confdefs.h"
 
 $ac_includes_default
@@ -48133,16 +48129,16 @@ $cf_test((XtAppContext) 0)
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:48136: \"$ac_link\"") >&5
+if { (eval echo "$as_me:48132: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:48139: \$? = $ac_status" >&5
+  echo "$as_me:48135: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:48142: \"$ac_try\"") >&5
+  { (eval echo "$as_me:48138: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:48145: \$? = $ac_status" >&5
+  echo "$as_me:48141: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_result=yes
 else
@@ -48151,7 +48147,7 @@ cat "conftest.$ac_ext" >&5
 cf_result=no
 fi
 rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext"
-		echo "$as_me:48154: result: $cf_result" >&5
+		echo "$as_me:48150: result: $cf_result" >&5
 echo "${ECHO_T}$cf_result" >&6
 
 LIBS="$cf_save_LIBS_CF_X_ATHENA_LIBS"
@@ -48168,7 +48164,7 @@ CPPFLAGS="$cf_save_CPPFLAGS_CF_X_ATHENA_LIBS"
 done
 
 if test -z "$cf_x_athena_lib" ; then
-	{ { echo "$as_me:48171: error: Unable to successfully link Athena library (-l$cf_x_athena_root) with test program" >&5
+	{ { echo "$as_me:48167: error: Unable to successfully link Athena library (-l$cf_x_athena_root) with test program" >&5
 echo "$as_me: error: Unable to successfully link Athena library (-l$cf_x_athena_root) with test program" >&2;}
    { (exit 1); exit 1; }; }
 fi
@@ -48202,7 +48198,7 @@ if test -n "$ac_tool_prefix"; then
   do
     # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args.
 set dummy $ac_tool_prefix$ac_prog; ac_word=$2
-echo "$as_me:48205: checking for $ac_word" >&5
+echo "$as_me:48201: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_prog_XCURSES_CONFIG+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -48217,7 +48213,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   $as_executable_p "$ac_dir/$ac_word" || continue
 ac_cv_prog_XCURSES_CONFIG="$ac_tool_prefix$ac_prog"
-echo "$as_me:48220: found $ac_dir/$ac_word" >&5
+echo "$as_me:48216: found $ac_dir/$ac_word" >&5
 break
 done
 
@@ -48225,10 +48221,10 @@ fi
 fi
 XCURSES_CONFIG=$ac_cv_prog_XCURSES_CONFIG
 if test -n "$XCURSES_CONFIG"; then
-  echo "$as_me:48228: result: $XCURSES_CONFIG" >&5
+  echo "$as_me:48224: result: $XCURSES_CONFIG" >&5
 echo "${ECHO_T}$XCURSES_CONFIG" >&6
 else
-  echo "$as_me:48231: result: no" >&5
+  echo "$as_me:48227: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -48241,7 +48237,7 @@ if test -z "$XCURSES_CONFIG"; then
 do
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
-echo "$as_me:48244: checking for $ac_word" >&5
+echo "$as_me:48240: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_prog_ac_ct_XCURSES_CONFIG+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -48256,7 +48252,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   $as_executable_p "$ac_dir/$ac_word" || continue
 ac_cv_prog_ac_ct_XCURSES_CONFIG="$ac_prog"
-echo "$as_me:48259: found $ac_dir/$ac_word" >&5
+echo "$as_me:48255: found $ac_dir/$ac_word" >&5
 break
 done
 
@@ -48264,10 +48260,10 @@ fi
 fi
 ac_ct_XCURSES_CONFIG=$ac_cv_prog_ac_ct_XCURSES_CONFIG
 if test -n "$ac_ct_XCURSES_CONFIG"; then
-  echo "$as_me:48267: result: $ac_ct_XCURSES_CONFIG" >&5
+  echo "$as_me:48263: result: $ac_ct_XCURSES_CONFIG" >&5
 echo "${ECHO_T}$ac_ct_XCURSES_CONFIG" >&6
 else
-  echo "$as_me:48270: result: no" >&5
+  echo "$as_me:48266: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -48402,7 +48398,7 @@ LDFLAGS="$LDFLAGS $X_LIBS"
 
 test -n "$verbose" && echo "	checking additions to CFLAGS" 1>&6
 
-echo "${as_me:-configure}:48405: testing checking additions to CFLAGS ..." 1>&5
+echo "${as_me:-configure}:48401: testing checking additions to CFLAGS ..." 1>&5
 
 cf_check_cflags="$CFLAGS"
 cf_check_cppflags="$CPPFLAGS"
@@ -48487,7 +48483,7 @@ done
 if test -n "$cf_new_cflags" ; then
 	test -n "$verbose" && echo "	add to \$CFLAGS $cf_new_cflags" 1>&6
 
-echo "${as_me:-configure}:48490: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5
+echo "${as_me:-configure}:48486: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5
 
 	test -n "$CFLAGS" && CFLAGS="$CFLAGS "
 	CFLAGS="${CFLAGS}$cf_new_cflags"
@@ -48497,7 +48493,7 @@ fi
 if test -n "$cf_new_cppflags" ; then
 	test -n "$verbose" && echo "	add to \$CPPFLAGS $cf_new_cppflags" 1>&6
 
-echo "${as_me:-configure}:48500: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5
+echo "${as_me:-configure}:48496: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5
 
 	test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS "
 	CPPFLAGS="${CPPFLAGS}$cf_new_cppflags"
@@ -48507,7 +48503,7 @@ fi
 if test -n "$cf_new_extra_cppflags" ; then
 	test -n "$verbose" && echo "	add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags" 1>&6
 
-echo "${as_me:-configure}:48510: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5
+echo "${as_me:-configure}:48506: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5
 
 	test -n "$EXTRA_CPPFLAGS" && EXTRA_CPPFLAGS="$EXTRA_CPPFLAGS "
 	EXTRA_CPPFLAGS="${EXTRA_CPPFLAGS}$cf_new_extra_cppflags"
@@ -48516,7 +48512,7 @@ fi
 
 if test "x$cf_check_cflags" != "x$CFLAGS" ; then
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 48519 "configure"
+#line 48515 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 int
@@ -48528,16 +48524,16 @@ printf("Hello world");
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:48531: \"$ac_link\"") >&5
+if { (eval echo "$as_me:48527: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:48534: \$? = $ac_status" >&5
+  echo "$as_me:48530: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:48537: \"$ac_try\"") >&5
+  { (eval echo "$as_me:48533: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:48540: \$? = $ac_status" >&5
+  echo "$as_me:48536: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   :
 else
@@ -48545,12 +48541,12 @@ else
 cat "conftest.$ac_ext" >&5
 test -n "$verbose" && echo "	test-compile failed.  Undoing change to \$CFLAGS" 1>&6
 
-echo "${as_me:-configure}:48548: testing test-compile failed.  Undoing change to \$CFLAGS ..." 1>&5
+echo "${as_me:-configure}:48544: testing test-compile failed.  Undoing change to \$CFLAGS ..." 1>&5
 
 	 if test "x$cf_check_cppflags" != "x$CPPFLAGS" ; then
 		 test -n "$verbose" && echo "	but keeping change to \$CPPFLAGS" 1>&6
 
-echo "${as_me:-configure}:48553: testing but keeping change to \$CPPFLAGS ..." 1>&5
+echo "${as_me:-configure}:48549: testing but keeping change to \$CPPFLAGS ..." 1>&5
 
 	 fi
 	 CFLAGS="$cf_check_cflags"
@@ -48558,7 +48554,7 @@ fi
 rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext"
 fi
 
-echo "$as_me:48561: checking for XOpenDisplay in -lX11" >&5
+echo "$as_me:48557: checking for XOpenDisplay in -lX11" >&5
 echo $ECHO_N "checking for XOpenDisplay in -lX11... $ECHO_C" >&6
 if test "${ac_cv_lib_X11_XOpenDisplay+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -48566,7 +48562,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lX11 $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS"
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 48569 "configure"
+#line 48565 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -48585,16 +48581,16 @@ XOpenDisplay ();
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:48588: \"$ac_link\"") >&5
+if { (eval echo "$as_me:48584: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:48591: \$? = $ac_status" >&5
+  echo "$as_me:48587: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:48594: \"$ac_try\"") >&5
+  { (eval echo "$as_me:48590: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:48597: \$? = $ac_status" >&5
+  echo "$as_me:48593: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   ac_cv_lib_X11_XOpenDisplay=yes
 else
@@ -48605,7 +48601,7 @@ fi
 rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext"
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:48608: result: $ac_cv_lib_X11_XOpenDisplay" >&5
+echo "$as_me:48604: result: $ac_cv_lib_X11_XOpenDisplay" >&5
 echo "${ECHO_T}$ac_cv_lib_X11_XOpenDisplay" >&6
 if test "$ac_cv_lib_X11_XOpenDisplay" = yes; then
 
@@ -48627,7 +48623,7 @@ LIBS="$cf_add_libs"
 
 fi
 
-echo "$as_me:48630: checking for XCurses library" >&5
+echo "$as_me:48626: checking for XCurses library" >&5
 echo $ECHO_N "checking for XCurses library... $ECHO_C" >&6
 if test "${cf_cv_lib_XCurses+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -48650,7 +48646,7 @@ done
 LIBS="$cf_add_libs"
 
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 48653 "configure"
+#line 48649 "configure"
 #include "confdefs.h"
 
 #include <xcurses.h>
@@ -48665,16 +48661,16 @@ XCursesExit();
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:48668: \"$ac_link\"") >&5
+if { (eval echo "$as_me:48664: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:48671: \$? = $ac_status" >&5
+  echo "$as_me:48667: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:48674: \"$ac_try\"") >&5
+  { (eval echo "$as_me:48670: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:48677: \$? = $ac_status" >&5
+  echo "$as_me:48673: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_lib_XCurses=yes
 else
@@ -48685,7 +48681,7 @@ fi
 rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext"
 
 fi
-echo "$as_me:48688: result: $cf_cv_lib_XCurses" >&5
+echo "$as_me:48684: result: $cf_cv_lib_XCurses" >&5
 echo "${ECHO_T}$cf_cv_lib_XCurses" >&6
 
 fi
@@ -48700,23 +48696,23 @@ cat >>confdefs.h <<\EOF
 #define XCURSES 1
 EOF
 
-	echo "$as_me:48703: checking for xcurses.h" >&5
+	echo "$as_me:48699: checking for xcurses.h" >&5
 echo $ECHO_N "checking for xcurses.h... $ECHO_C" >&6
 if test "${ac_cv_header_xcurses_h+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >"conftest.$ac_ext" <<_ACEOF
-#line 48709 "configure"
+#line 48705 "configure"
 #include "confdefs.h"
 #include <xcurses.h>
 _ACEOF
-if { (eval echo "$as_me:48713: \"$ac_cpp "conftest.$ac_ext"\"") >&5
+if { (eval echo "$as_me:48709: \"$ac_cpp "conftest.$ac_ext"\"") >&5
   (eval $ac_cpp "conftest.$ac_ext") 2>conftest.er1
   ac_status=$?
   $EGREP -v '^ *\+' conftest.er1 >conftest.err
   rm -f conftest.er1
   cat conftest.err >&5
-  echo "$as_me:48719: \$? = $ac_status" >&5
+  echo "$as_me:48715: \$? = $ac_status" >&5
   (exit "$ac_status"); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -48735,7 +48731,7 @@ else
 fi
 rm -f conftest.err "conftest.$ac_ext"
 fi
-echo "$as_me:48738: result: $ac_cv_header_xcurses_h" >&5
+echo "$as_me:48734: result: $ac_cv_header_xcurses_h" >&5
 echo "${ECHO_T}$ac_cv_header_xcurses_h" >&6
 if test "$ac_cv_header_xcurses_h" = yes; then
 
@@ -48746,7 +48742,7 @@ EOF
 fi
 
 else
-	{ { echo "$as_me:48749: error: Cannot link with XCurses" >&5
+	{ { echo "$as_me:48745: error: Cannot link with XCurses" >&5
 echo "$as_me: error: Cannot link with XCurses" >&2;}
    { (exit 1); exit 1; }; }
 fi
@@ -48755,7 +48751,7 @@ fi
 	esac
 else
 
-echo "$as_me:48758: checking if we can include termio.h with curses" >&5
+echo "$as_me:48754: checking if we can include termio.h with curses" >&5
 echo $ECHO_N "checking if we can include termio.h with curses... $ECHO_C" >&6
 if test "${cf_cv_termio_and_curses+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -48765,7 +48761,7 @@ else
     CPPFLAGS="$CPPFLAGS -DHAVE_CONFIG_H -I. -I${srcdir:-.} -I${srcdir:-.}/src -I${srcdir:-.}/WWW/Library/Implementation"
     touch lynx_cfg.h
     cat >"conftest.$ac_ext" <<_ACEOF
-#line 48768 "configure"
+#line 48764 "configure"
 #include "confdefs.h"
 
 #include <LYCurses.h>
@@ -48779,16 +48775,16 @@ putchar(0x0a)
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:48782: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:48778: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:48785: \$? = $ac_status" >&5
+  echo "$as_me:48781: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:48788: \"$ac_try\"") >&5
+  { (eval echo "$as_me:48784: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:48791: \$? = $ac_status" >&5
+  echo "$as_me:48787: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_termio_and_curses=yes
 else
@@ -48801,7 +48797,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext"
     rm -f lynx_cfg.h
 
 fi
-echo "$as_me:48804: result: $cf_cv_termio_and_curses" >&5
+echo "$as_me:48800: result: $cf_cv_termio_and_curses" >&5
 echo "${ECHO_T}$cf_cv_termio_and_curses" >&6
 
 test "$cf_cv_termio_and_curses" = yes &&
@@ -48818,23 +48814,23 @@ if test "$cf_cv_screen" != slang ; then
 for ac_header in $cf_cv_screen/term.h term.h
 do
 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:48821: checking for $ac_header" >&5
+echo "$as_me:48817: checking for $ac_header" >&5
 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
 if eval "test \"\${$as_ac_Header+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >"conftest.$ac_ext" <<_ACEOF
-#line 48827 "configure"
+#line 48823 "configure"
 #include "confdefs.h"
 #include <$ac_header>
 _ACEOF
-if { (eval echo "$as_me:48831: \"$ac_cpp "conftest.$ac_ext"\"") >&5
+if { (eval echo "$as_me:48827: \"$ac_cpp "conftest.$ac_ext"\"") >&5
   (eval $ac_cpp "conftest.$ac_ext") 2>conftest.er1
   ac_status=$?
   $EGREP -v '^ *\+' conftest.er1 >conftest.err
   rm -f conftest.er1
   cat conftest.err >&5
-  echo "$as_me:48837: \$? = $ac_status" >&5
+  echo "$as_me:48833: \$? = $ac_status" >&5
   (exit "$ac_status"); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -48853,7 +48849,7 @@ else
 fi
 rm -f conftest.err "conftest.$ac_ext"
 fi
-echo "$as_me:48856: result: `eval echo '${'"$as_ac_Header"'}'`" >&5
+echo "$as_me:48852: result: `eval echo '${'"$as_ac_Header"'}'`" >&5
 echo "${ECHO_T}`eval echo '${'"$as_ac_Header"'}'`" >&6
 if test "`eval echo '${'"$as_ac_Header"'}'`" = yes; then
   cat >>confdefs.h <<EOF
@@ -48865,7 +48861,7 @@ done
 
 	fi
 
-echo "$as_me:48868: checking if curses supports alternate-character set" >&5
+echo "$as_me:48864: checking if curses supports alternate-character set" >&5
 echo $ECHO_N "checking if curses supports alternate-character set... $ECHO_C" >&6
 if test "${cf_cv_alt_char_set+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -48874,7 +48870,7 @@ else
 for mapname in acs_map _acs_map
 do
 	cat >"conftest.$ac_ext" <<_ACEOF
-#line 48877 "configure"
+#line 48873 "configure"
 #include "confdefs.h"
 
 #include <${cf_cv_ncurses_header:-curses.h}>
@@ -48888,16 +48884,16 @@ chtype x = ${mapname}['l']; ${mapname}['m'] = 0; (void)x
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:48891: \"$ac_link\"") >&5
+if { (eval echo "$as_me:48887: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:48894: \$? = $ac_status" >&5
+  echo "$as_me:48890: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:48897: \"$ac_try\"") >&5
+  { (eval echo "$as_me:48893: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:48900: \$? = $ac_status" >&5
+  echo "$as_me:48896: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_alt_char_set=$mapname
 	 break
@@ -48911,21 +48907,21 @@ done
 
 fi
 
-echo "$as_me:48914: result: $cf_cv_alt_char_set" >&5
+echo "$as_me:48910: result: $cf_cv_alt_char_set" >&5
 echo "${ECHO_T}$cf_cv_alt_char_set" >&6
 test "$cf_cv_alt_char_set" != no &&
 cat >>confdefs.h <<EOF
 #define ALT_CHAR_SET $cf_cv_alt_char_set
 EOF
 
-echo "$as_me:48921: checking if curses supports fancy attributes" >&5
+echo "$as_me:48917: checking if curses supports fancy attributes" >&5
 echo $ECHO_N "checking if curses supports fancy attributes... $ECHO_C" >&6
 if test "${cf_cv_fancy_curses+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 	cat >"conftest.$ac_ext" <<_ACEOF
-#line 48928 "configure"
+#line 48924 "configure"
 #include "confdefs.h"
 
 #include <${cf_cv_ncurses_header:-curses.h}>
@@ -48943,16 +48939,16 @@ attrset(A_UNDERLINE|A_BOLD|A_REVERSE);
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:48946: \"$ac_link\"") >&5
+if { (eval echo "$as_me:48942: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:48949: \$? = $ac_status" >&5
+  echo "$as_me:48945: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:48952: \"$ac_try\"") >&5
+  { (eval echo "$as_me:48948: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:48955: \$? = $ac_status" >&5
+  echo "$as_me:48951: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_fancy_curses=yes
 else
@@ -48964,14 +48960,14 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext"
 
 fi
 
-echo "$as_me:48967: result: $cf_cv_fancy_curses" >&5
+echo "$as_me:48963: result: $cf_cv_fancy_curses" >&5
 echo "${ECHO_T}$cf_cv_fancy_curses" >&6
 test "$cf_cv_fancy_curses" = yes &&
 cat >>confdefs.h <<\EOF
 #define FANCY_CURSES 1
 EOF
 
-echo "$as_me:48974: checking for function curses_version" >&5
+echo "$as_me:48970: checking for function curses_version" >&5
 echo $ECHO_N "checking for function curses_version... $ECHO_C" >&6
 if test "${cf_cv_func_curses_version+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -48981,7 +48977,7 @@ if test "$cross_compiling" = yes; then
   cf_cv_func_curses_version=unknown
 else
   cat >"conftest.$ac_ext" <<_ACEOF
-#line 48984 "configure"
+#line 48980 "configure"
 #include "confdefs.h"
 
 $ac_includes_default
@@ -48997,15 +48993,15 @@ int main(void)
 
 _ACEOF
 rm -f "conftest$ac_exeext"
-if { (eval echo "$as_me:49000: \"$ac_link\"") >&5
+if { (eval echo "$as_me:48996: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:49003: \$? = $ac_status" >&5
+  echo "$as_me:48999: \$? = $ac_status" >&5
   (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"'
-  { (eval echo "$as_me:49005: \"$ac_try\"") >&5
+  { (eval echo "$as_me:49001: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:49008: \$? = $ac_status" >&5
+  echo "$as_me:49004: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_func_curses_version=yes
 
@@ -49020,7 +49016,7 @@ rm -f core ./core.* ./*.core "conftest$ac_exeext" "conftest.$ac_objext" "conftes
 fi
 rm -f core
 fi
-echo "$as_me:49023: result: $cf_cv_func_curses_version" >&5
+echo "$as_me:49019: result: $cf_cv_func_curses_version" >&5
 echo "${ECHO_T}$cf_cv_func_curses_version" >&6
 test "$cf_cv_func_curses_version" = yes &&
 cat >>confdefs.h <<\EOF
@@ -49028,14 +49024,14 @@ cat >>confdefs.h <<\EOF
 EOF
 
 if test "$cf_cv_ncurses_version" != no ; then
-echo "$as_me:49031: checking for obsolete/broken version of ncurses" >&5
+echo "$as_me:49027: checking for obsolete/broken version of ncurses" >&5
 echo $ECHO_N "checking for obsolete/broken version of ncurses... $ECHO_C" >&6
 if test "${cf_cv_ncurses_broken+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 49038 "configure"
+#line 49034 "configure"
 #include "confdefs.h"
 
 #include <${cf_cv_ncurses_header:-curses.h}>
@@ -49054,16 +49050,16 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:49057: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:49053: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:49060: \$? = $ac_status" >&5
+  echo "$as_me:49056: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:49063: \"$ac_try\"") >&5
+  { (eval echo "$as_me:49059: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:49066: \$? = $ac_status" >&5
+  echo "$as_me:49062: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_ncurses_broken=no
 else
@@ -49075,10 +49071,10 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 
 fi
 
-echo "$as_me:49078: result: $cf_cv_ncurses_broken" >&5
+echo "$as_me:49074: result: $cf_cv_ncurses_broken" >&5
 echo "${ECHO_T}$cf_cv_ncurses_broken" >&6
 if test "$cf_cv_ncurses_broken" = yes ; then
-	{ echo "$as_me:49081: WARNING: hmm... you should get an up-to-date version of ncurses" >&5
+	{ echo "$as_me:49077: WARNING: hmm... you should get an up-to-date version of ncurses" >&5
 echo "$as_me: WARNING: hmm... you should get an up-to-date version of ncurses" >&2;}
 
 cat >>confdefs.h <<\EOF
@@ -49088,14 +49084,14 @@ EOF
 fi
 fi
 
-echo "$as_me:49091: checking if curses supports color attributes" >&5
+echo "$as_me:49087: checking if curses supports color attributes" >&5
 echo $ECHO_N "checking if curses supports color attributes... $ECHO_C" >&6
 if test "${cf_cv_color_curses+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 	cat >"conftest.$ac_ext" <<_ACEOF
-#line 49098 "configure"
+#line 49094 "configure"
 #include "confdefs.h"
 
 #include <${cf_cv_ncurses_header:-curses.h}>
@@ -49115,16 +49111,16 @@ chtype x = COLOR_BLUE;
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:49118: \"$ac_link\"") >&5
+if { (eval echo "$as_me:49114: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:49121: \$? = $ac_status" >&5
+  echo "$as_me:49117: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:49124: \"$ac_try\"") >&5
+  { (eval echo "$as_me:49120: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:49127: \$? = $ac_status" >&5
+  echo "$as_me:49123: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_color_curses=yes
 else
@@ -49136,7 +49132,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext"
 
 fi
 
-echo "$as_me:49139: result: $cf_cv_color_curses" >&5
+echo "$as_me:49135: result: $cf_cv_color_curses" >&5
 echo "${ECHO_T}$cf_cv_color_curses" >&6
 if test "$cf_cv_color_curses" = yes ; then
 
@@ -49160,23 +49156,23 @@ sys/termio.h \
 
 do
 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:49163: checking for $ac_header" >&5
+echo "$as_me:49159: checking for $ac_header" >&5
 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
 if eval "test \"\${$as_ac_Header+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >"conftest.$ac_ext" <<_ACEOF
-#line 49169 "configure"
+#line 49165 "configure"
 #include "confdefs.h"
 #include <$ac_header>
 _ACEOF
-if { (eval echo "$as_me:49173: \"$ac_cpp "conftest.$ac_ext"\"") >&5
+if { (eval echo "$as_me:49169: \"$ac_cpp "conftest.$ac_ext"\"") >&5
   (eval $ac_cpp "conftest.$ac_ext") 2>conftest.er1
   ac_status=$?
   $EGREP -v '^ *\+' conftest.er1 >conftest.err
   rm -f conftest.er1
   cat conftest.err >&5
-  echo "$as_me:49179: \$? = $ac_status" >&5
+  echo "$as_me:49175: \$? = $ac_status" >&5
   (exit "$ac_status"); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -49195,7 +49191,7 @@ else
 fi
 rm -f conftest.err "conftest.$ac_ext"
 fi
-echo "$as_me:49198: result: `eval echo '${'"$as_ac_Header"'}'`" >&5
+echo "$as_me:49194: result: `eval echo '${'"$as_ac_Header"'}'`" >&5
 echo "${ECHO_T}`eval echo '${'"$as_ac_Header"'}'`" >&6
 if test "`eval echo '${'"$as_ac_Header"'}'`" = yes; then
   cat >>confdefs.h <<EOF
@@ -49212,10 +49208,10 @@ if test "$ac_cv_header_termios_h" = yes ; then
 	(*)	termios_bad=maybe ;;
 	esac
 	if test "$termios_bad" = maybe ; then
-	echo "$as_me:49215: checking whether termios.h needs _POSIX_SOURCE" >&5
+	echo "$as_me:49211: checking whether termios.h needs _POSIX_SOURCE" >&5
 echo $ECHO_N "checking whether termios.h needs _POSIX_SOURCE... $ECHO_C" >&6
 	cat >"conftest.$ac_ext" <<_ACEOF
-#line 49218 "configure"
+#line 49214 "configure"
 #include "confdefs.h"
 #include <termios.h>
 int
@@ -49227,16 +49223,16 @@ struct termios foo; int x = foo.c_iflag = 1; (void)x
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:49230: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:49226: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:49233: \$? = $ac_status" >&5
+  echo "$as_me:49229: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:49236: \"$ac_try\"") >&5
+  { (eval echo "$as_me:49232: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:49239: \$? = $ac_status" >&5
+  echo "$as_me:49235: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   termios_bad=no
 else
@@ -49244,7 +49240,7 @@ else
 cat "conftest.$ac_ext" >&5
 
 		cat >"conftest.$ac_ext" <<_ACEOF
-#line 49247 "configure"
+#line 49243 "configure"
 #include "confdefs.h"
 
 #define _POSIX_SOURCE
@@ -49258,16 +49254,16 @@ struct termios foo; int x = foo.c_iflag = 2; (void)x
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:49261: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:49257: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:49264: \$? = $ac_status" >&5
+  echo "$as_me:49260: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:49267: \"$ac_try\"") >&5
+  { (eval echo "$as_me:49263: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:49270: \$? = $ac_status" >&5
+  echo "$as_me:49266: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   termios_bad=unknown
 else
@@ -49283,12 +49279,12 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 
 fi
 rm -f "conftest.$ac_objext" "conftest.$ac_ext"
-	echo "$as_me:49286: result: $termios_bad" >&5
+	echo "$as_me:49282: result: $termios_bad" >&5
 echo "${ECHO_T}$termios_bad" >&6
 	fi
 fi
 
-echo "$as_me:49291: checking declaration of size-change" >&5
+echo "$as_me:49287: checking declaration of size-change" >&5
 echo $ECHO_N "checking declaration of size-change... $ECHO_C" >&6
 if test "${cf_cv_sizechange+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -49309,7 +49305,7 @@ do
 
 	fi
 	cat >"conftest.$ac_ext" <<_ACEOF
-#line 49312 "configure"
+#line 49308 "configure"
 #include "confdefs.h"
 #include <sys/types.h>
 #ifdef HAVE_TERMIOS_H
@@ -49359,16 +49355,16 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:49362: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:49358: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:49365: \$? = $ac_status" >&5
+  echo "$as_me:49361: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:49368: \"$ac_try\"") >&5
+  { (eval echo "$as_me:49364: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:49371: \$? = $ac_status" >&5
+  echo "$as_me:49367: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_sizechange=yes
 else
@@ -49387,7 +49383,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 done
 
 fi
-echo "$as_me:49390: result: $cf_cv_sizechange" >&5
+echo "$as_me:49386: result: $cf_cv_sizechange" >&5
 echo "${ECHO_T}$cf_cv_sizechange" >&6
 if test "$cf_cv_sizechange" != no ; then
 
@@ -49405,14 +49401,14 @@ EOF
 	esac
 fi
 
-echo "$as_me:49408: checking if ttytype is declared in curses library" >&5
+echo "$as_me:49404: checking if ttytype is declared in curses library" >&5
 echo $ECHO_N "checking if ttytype is declared in curses library... $ECHO_C" >&6
 if test "${cf_cv_have_ttytype+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 	cat >"conftest.$ac_ext" <<_ACEOF
-#line 49415 "configure"
+#line 49411 "configure"
 #include "confdefs.h"
 #include <${cf_cv_ncurses_header:-curses.h}>
 int
@@ -49424,16 +49420,16 @@ char *x = &ttytype[1]; *x = 1
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:49427: \"$ac_link\"") >&5
+if { (eval echo "$as_me:49423: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:49430: \$? = $ac_status" >&5
+  echo "$as_me:49426: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:49433: \"$ac_try\"") >&5
+  { (eval echo "$as_me:49429: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:49436: \$? = $ac_status" >&5
+  echo "$as_me:49432: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_have_ttytype=yes
 else
@@ -49445,7 +49441,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext"
 
 fi
 
-echo "$as_me:49448: result: $cf_cv_have_ttytype" >&5
+echo "$as_me:49444: result: $cf_cv_have_ttytype" >&5
 echo "${ECHO_T}$cf_cv_have_ttytype" >&6
 test "$cf_cv_have_ttytype" = yes &&
 cat >>confdefs.h <<\EOF
@@ -49454,14 +49450,14 @@ EOF
 
 	if test "$use_wide_curses" = yes ; then
 
-echo "$as_me:49457: checking if curses supports wide characters" >&5
+echo "$as_me:49453: checking if curses supports wide characters" >&5
 echo $ECHO_N "checking if curses supports wide characters... $ECHO_C" >&6
 if test "${cf_cv_widec_curses+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 49464 "configure"
+#line 49460 "configure"
 #include "confdefs.h"
 
 #include <stdlib.h>
@@ -49480,16 +49476,16 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:49483: \"$ac_link\"") >&5
+if { (eval echo "$as_me:49479: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:49486: \$? = $ac_status" >&5
+  echo "$as_me:49482: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:49489: \"$ac_try\"") >&5
+  { (eval echo "$as_me:49485: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:49492: \$? = $ac_status" >&5
+  echo "$as_me:49488: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_widec_curses=yes
 else
@@ -49500,7 +49496,7 @@ fi
 rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext"
 
 fi
-echo "$as_me:49503: result: $cf_cv_widec_curses" >&5
+echo "$as_me:49499: result: $cf_cv_widec_curses" >&5
 echo "${ECHO_T}$cf_cv_widec_curses" >&6
 
 if test "$cf_cv_widec_curses" = yes ; then
@@ -49510,14 +49506,14 @@ cat >>confdefs.h <<\EOF
 EOF
 
 	# This is needed on Tru64 5.0 to declare mbstate_t
-	echo "$as_me:49513: checking if we must include wchar.h to declare mbstate_t" >&5
+	echo "$as_me:49509: checking if we must include wchar.h to declare mbstate_t" >&5
 echo $ECHO_N "checking if we must include wchar.h to declare mbstate_t... $ECHO_C" >&6
 if test "${cf_cv_widec_mbstate+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 	cat >"conftest.$ac_ext" <<_ACEOF
-#line 49520 "configure"
+#line 49516 "configure"
 #include "confdefs.h"
 
 #include <stdlib.h>
@@ -49531,23 +49527,23 @@ mbstate_t state; (void)state
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:49534: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:49530: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:49537: \$? = $ac_status" >&5
+  echo "$as_me:49533: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:49540: \"$ac_try\"") >&5
+  { (eval echo "$as_me:49536: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:49543: \$? = $ac_status" >&5
+  echo "$as_me:49539: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_widec_mbstate=no
 else
   echo "$as_me: failed program was:" >&5
 cat "conftest.$ac_ext" >&5
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 49550 "configure"
+#line 49546 "configure"
 #include "confdefs.h"
 
 #include <stdlib.h>
@@ -49562,16 +49558,16 @@ mbstate_t state; (void)state
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:49565: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:49561: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:49568: \$? = $ac_status" >&5
+  echo "$as_me:49564: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:49571: \"$ac_try\"") >&5
+  { (eval echo "$as_me:49567: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:49574: \$? = $ac_status" >&5
+  echo "$as_me:49570: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_widec_mbstate=yes
 else
@@ -49583,7 +49579,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 fi
 rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 fi
-echo "$as_me:49586: result: $cf_cv_widec_mbstate" >&5
+echo "$as_me:49582: result: $cf_cv_widec_mbstate" >&5
 echo "${ECHO_T}$cf_cv_widec_mbstate" >&6
 
 if test "$cf_cv_widec_mbstate" = yes ; then
@@ -49606,7 +49602,7 @@ fi
 
 	fi
 
-echo "$as_me:49609: checking definition to turn on extended curses functions" >&5
+echo "$as_me:49605: checking definition to turn on extended curses functions" >&5
 echo $ECHO_N "checking definition to turn on extended curses functions... $ECHO_C" >&6
 if test "${cf_cv_need_xopen_extension+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -49614,7 +49610,7 @@ else
 
 cf_cv_need_xopen_extension=unknown
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 49617 "configure"
+#line 49613 "configure"
 #include "confdefs.h"
 
 $ac_includes_default
@@ -49646,16 +49642,16 @@ make an error	/* prefer to fall-through on the second checks */
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:49649: \"$ac_link\"") >&5
+if { (eval echo "$as_me:49645: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:49652: \$? = $ac_status" >&5
+  echo "$as_me:49648: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:49655: \"$ac_try\"") >&5
+  { (eval echo "$as_me:49651: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:49658: \$? = $ac_status" >&5
+  echo "$as_me:49654: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_need_xopen_extension=none
 else
@@ -49665,7 +49661,7 @@ cat "conftest.$ac_ext" >&5
 	for cf_try_xopen_extension in _XOPEN_SOURCE_EXTENDED NCURSES_WIDECHAR
 	do
 		cat >"conftest.$ac_ext" <<_ACEOF
-#line 49668 "configure"
+#line 49664 "configure"
 #include "confdefs.h"
 
 #define $cf_try_xopen_extension 1
@@ -49690,16 +49686,16 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:49693: \"$ac_link\"") >&5
+if { (eval echo "$as_me:49689: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:49696: \$? = $ac_status" >&5
+  echo "$as_me:49692: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:49699: \"$ac_try\"") >&5
+  { (eval echo "$as_me:49695: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:49702: \$? = $ac_status" >&5
+  echo "$as_me:49698: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_need_xopen_extension=$cf_try_xopen_extension; break
 else
@@ -49713,7 +49709,7 @@ fi
 rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext"
 
 fi
-echo "$as_me:49716: result: $cf_cv_need_xopen_extension" >&5
+echo "$as_me:49712: result: $cf_cv_need_xopen_extension" >&5
 echo "${ECHO_T}$cf_cv_need_xopen_extension" >&6
 
 case "$cf_cv_need_xopen_extension" in
@@ -49725,7 +49721,7 @@ case "$cf_cv_need_xopen_extension" in
 	;;
 esac
 
-echo "$as_me:49728: checking for term.h" >&5
+echo "$as_me:49724: checking for term.h" >&5
 echo $ECHO_N "checking for term.h... $ECHO_C" >&6
 if test "${cf_cv_term_header+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -49746,7 +49742,7 @@ esac
 for cf_header in $cf_header_list
 do
 	cat >"conftest.$ac_ext" <<_ACEOF
-#line 49749 "configure"
+#line 49745 "configure"
 #include "confdefs.h"
 
 #include <${cf_cv_ncurses_header:-curses.h}>
@@ -49760,16 +49756,16 @@ WINDOW *x; (void)x
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:49763: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:49759: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:49766: \$? = $ac_status" >&5
+  echo "$as_me:49762: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:49769: \"$ac_try\"") >&5
+  { (eval echo "$as_me:49765: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:49772: \$? = $ac_status" >&5
+  echo "$as_me:49768: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_term_header=$cf_header
 	 break
@@ -49788,7 +49784,7 @@ case "$cf_cv_term_header" in
 	for cf_header in ncurses/term.h ncursesw/term.h
 	do
 		cat >"conftest.$ac_ext" <<_ACEOF
-#line 49791 "configure"
+#line 49787 "configure"
 #include "confdefs.h"
 
 #include <${cf_cv_ncurses_header:-curses.h}>
@@ -49806,16 +49802,16 @@ WINDOW *x; (void)x
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:49809: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:49805: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:49812: \$? = $ac_status" >&5
+  echo "$as_me:49808: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:49815: \"$ac_try\"") >&5
+  { (eval echo "$as_me:49811: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:49818: \$? = $ac_status" >&5
+  echo "$as_me:49814: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_term_header=$cf_header
 			 break
@@ -49830,7 +49826,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 esac
 
 fi
-echo "$as_me:49833: result: $cf_cv_term_header" >&5
+echo "$as_me:49829: result: $cf_cv_term_header" >&5
 echo "${ECHO_T}$cf_cv_term_header" >&6
 
 case "$cf_cv_term_header" in
@@ -49857,7 +49853,7 @@ EOF
 	;;
 esac
 
-echo "$as_me:49860: checking for unctrl.h" >&5
+echo "$as_me:49856: checking for unctrl.h" >&5
 echo $ECHO_N "checking for unctrl.h... $ECHO_C" >&6
 if test "${cf_cv_unctrl_header+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -49878,7 +49874,7 @@ esac
 for cf_header in $cf_header_list
 do
 	cat >"conftest.$ac_ext" <<_ACEOF
-#line 49881 "configure"
+#line 49877 "configure"
 #include "confdefs.h"
 
 #include <${cf_cv_ncurses_header:-curses.h}>
@@ -49892,16 +49888,16 @@ WINDOW *x; (void)x
 }
 _ACEOF
 rm -f "conftest.$ac_objext"
-if { (eval echo "$as_me:49895: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:49891: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:49898: \$? = $ac_status" >&5
+  echo "$as_me:49894: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest.$ac_objext"'
-  { (eval echo "$as_me:49901: \"$ac_try\"") >&5
+  { (eval echo "$as_me:49897: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:49904: \$? = $ac_status" >&5
+  echo "$as_me:49900: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_cv_unctrl_header=$cf_header
 	 break
@@ -49914,12 +49910,12 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext"
 done
 
 fi
-echo "$as_me:49917: result: $cf_cv_unctrl_header" >&5
+echo "$as_me:49913: result: $cf_cv_unctrl_header" >&5
 echo "${ECHO_T}$cf_cv_unctrl_header" >&6
 
 case "$cf_cv_unctrl_header" in
 (no)
-	{ echo "$as_me:49922: WARNING: unctrl.h header not found" >&5
+	{ echo "$as_me:49918: WARNING: unctrl.h header not found" >&5
 echo "$as_me: WARNING: unctrl.h header not found" >&2;}
 	;;
 esac
@@ -49975,10 +49971,10 @@ do
 
 cf_tr_func=`echo "$cf_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%`
 
-	echo "$as_me:49978: checking for ${cf_func}" >&5
+	echo "$as_me:49974: checking for ${cf_func}" >&5
 echo $ECHO_N "checking for ${cf_func}... $ECHO_C" >&6
 
-echo "${as_me:-configure}:49981: testing ${cf_func} ..." 1>&5
+echo "${as_me:-configure}:49977: testing ${cf_func} ..." 1>&5
 
 	if eval "test \"\${cf_cv_func_$cf_func+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -49987,7 +49983,7 @@ else
 		eval cf_result='$ac_cv_func_'$cf_func
 		if test ".$cf_result" != ".no"; then
 			cat >"conftest.$ac_ext" <<_ACEOF
-#line 49990 "configure"
+#line 49986 "configure"
 #include "confdefs.h"
 
 #ifdef HAVE_XCURSES
@@ -50020,16 +50016,16 @@ if (foo + 1234L > 5678L)
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:50023: \"$ac_link\"") >&5
+if { (eval echo "$as_me:50019: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:50026: \$? = $ac_status" >&5
+  echo "$as_me:50022: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:50029: \"$ac_try\"") >&5
+  { (eval echo "$as_me:50025: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:50032: \$? = $ac_status" >&5
+  echo "$as_me:50028: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_result=yes
 else
@@ -50045,7 +50041,7 @@ fi
 
 	# use the computed/retrieved cache-value:
 	eval 'cf_result=$cf_cv_func_'$cf_func
-	echo "$as_me:50048: result: $cf_result" >&5
+	echo "$as_me:50044: result: $cf_result" >&5
 echo "${ECHO_T}$cf_result" >&6
 	if test "$cf_result" != no; then
 		cat >>confdefs.h <<EOF
@@ -50062,13 +50058,13 @@ for ac_func in \
 
 do
 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
-echo "$as_me:50065: checking for $ac_func" >&5
+echo "$as_me:50061: checking for $ac_func" >&5
 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6
 if eval "test \"\${$as_ac_var+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >"conftest.$ac_ext" <<_ACEOF
-#line 50071 "configure"
+#line 50067 "configure"
 #include "confdefs.h"
 #define $ac_func autoconf_temporary
 #include <limits.h>	/* least-intrusive standard header which defines gcc2 __stub macros */
@@ -50099,16 +50095,16 @@ main (void)
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:50102: \"$ac_link\"") >&5
+if { (eval echo "$as_me:50098: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:50105: \$? = $ac_status" >&5
+  echo "$as_me:50101: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:50108: \"$ac_try\"") >&5
+  { (eval echo "$as_me:50104: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:50111: \$? = $ac_status" >&5
+  echo "$as_me:50107: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   eval "$as_ac_var=yes"
 else
@@ -50118,7 +50114,7 @@ eval "$as_ac_var=no"
 fi
 rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext"
 fi
-echo "$as_me:50121: result: `eval echo '${'"$as_ac_var"'}'`" >&5
+echo "$as_me:50117: result: `eval echo '${'"$as_ac_var"'}'`" >&5
 echo "${ECHO_T}`eval echo '${'"$as_ac_var"'}'`" >&6
 if test "`eval echo '${'"$as_ac_var"'}'`" = yes; then
   cat >>confdefs.h <<EOF
@@ -50132,12 +50128,12 @@ fi
 
 if test "$use_color_style" != no ; then
 	if test .$cf_cv_color_curses != .yes ; then
-		{ { echo "$as_me:50135: error: Configuration does not support color-styles" >&5
+		{ { echo "$as_me:50131: error: Configuration does not support color-styles" >&5
 echo "$as_me: error: Configuration does not support color-styles" >&2;}
    { (exit 1); exit 1; }; }
 	fi
 	if test "$cf_cv_screen" = slang ; then
-		{ { echo "$as_me:50140: error: Configuration does not support color-styles" >&5
+		{ { echo "$as_me:50136: error: Configuration does not support color-styles" >&5
 echo "$as_me: error: Configuration does not support color-styles" >&2;}
    { (exit 1); exit 1; }; }
 	fi
@@ -50145,7 +50141,7 @@ fi
 
 if test "$use_scrollbar" != no ; then
 	if test .$cf_cv_fancy_curses != .yes ; then
-		{ echo "$as_me:50148: WARNING: Configuration does not support ACS_xxx definitions" >&5
+		{ echo "$as_me:50144: WARNING: Configuration does not support ACS_xxx definitions" >&5
 echo "$as_me: WARNING: Configuration does not support ACS_xxx definitions" >&2;}
 	else
 
@@ -50158,7 +50154,7 @@ fi
 
 # use rpath for libraries in unusual places
 
-echo "$as_me:50161: checking if rpath-hack should be disabled" >&5
+echo "$as_me:50157: checking if rpath-hack should be disabled" >&5
 echo $ECHO_N "checking if rpath-hack should be disabled... $ECHO_C" >&6
 
 # Check whether --enable-rpath-hack or --disable-rpath-hack was given.
@@ -50176,22 +50172,22 @@ else
 
 fi;
 if test "x$enable_rpath_hack" = xno; then cf_disable_rpath_hack=yes; else cf_disable_rpath_hack=no; fi
-echo "$as_me:50179: result: $cf_disable_rpath_hack" >&5
+echo "$as_me:50175: result: $cf_disable_rpath_hack" >&5
 echo "${ECHO_T}$cf_disable_rpath_hack" >&6
 
 if test "$enable_rpath_hack" = yes ; then
 
-echo "$as_me:50184: checking for updated LDFLAGS" >&5
+echo "$as_me:50180: checking for updated LDFLAGS" >&5
 echo $ECHO_N "checking for updated LDFLAGS... $ECHO_C" >&6
 if test -n "$LD_RPATH_OPT" ; then
-	echo "$as_me:50187: result: maybe" >&5
+	echo "$as_me:50183: result: maybe" >&5
 echo "${ECHO_T}maybe" >&6
 
 	for ac_prog in ldd
 do
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
-echo "$as_me:50194: checking for $ac_word" >&5
+echo "$as_me:50190: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_prog_cf_ldd_prog+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -50206,7 +50202,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   $as_executable_p "$ac_dir/$ac_word" || continue
 ac_cv_prog_cf_ldd_prog="$ac_prog"
-echo "$as_me:50209: found $ac_dir/$ac_word" >&5
+echo "$as_me:50205: found $ac_dir/$ac_word" >&5
 break
 done
 
@@ -50214,10 +50210,10 @@ fi
 fi
 cf_ldd_prog=$ac_cv_prog_cf_ldd_prog
 if test -n "$cf_ldd_prog"; then
-  echo "$as_me:50217: result: $cf_ldd_prog" >&5
+  echo "$as_me:50213: result: $cf_ldd_prog" >&5
 echo "${ECHO_T}$cf_ldd_prog" >&6
 else
-  echo "$as_me:50220: result: no" >&5
+  echo "$as_me:50216: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -50231,7 +50227,7 @@ test -n "$cf_ldd_prog" || cf_ldd_prog="no"
 		cf_rpath_oops=
 
 cat >"conftest.$ac_ext" <<_ACEOF
-#line 50234 "configure"
+#line 50230 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 int
@@ -50243,16 +50239,16 @@ printf("Hello");
 }
 _ACEOF
 rm -f "conftest.$ac_objext" "conftest$ac_exeext"
-if { (eval echo "$as_me:50246: \"$ac_link\"") >&5
+if { (eval echo "$as_me:50242: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:50249: \$? = $ac_status" >&5
+  echo "$as_me:50245: \$? = $ac_status" >&5
   (exit "$ac_status"); } &&
          { ac_try='test -s "conftest$ac_exeext"'
-  { (eval echo "$as_me:50252: \"$ac_try\"") >&5
+  { (eval echo "$as_me:50248: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:50255: \$? = $ac_status" >&5
+  echo "$as_me:50251: \$? = $ac_status" >&5
   (exit "$ac_status"); }; }; then
   cf_rpath_oops=`"$cf_ldd_prog" "conftest$ac_exeext" | ${FGREP-fgrep} ' not found' | sed -e 's% =>.*$%%' |sort | uniq`
 		 cf_rpath_list=`"$cf_ldd_prog" "conftest$ac_exeext" | ${FGREP-fgrep} / | sed -e 's%^.*[ 	]/%/%' -e 's%/[^/][^/]*$%%' |sort | uniq`
@@ -50280,7 +50276,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext"
 					then
 						test -n "$verbose" && echo "	...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src" 1>&6
 
-echo "${as_me:-configure}:50283: testing ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src ..." 1>&5
+echo "${as_me:-configure}:50279: testing ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src ..." 1>&5
 
 						LDFLAGS="$LDFLAGS -L$cf_rpath_dir/lib"
 						break
@@ -50292,11 +50288,11 @@ echo "${as_me:-configure}:50283: testing ...adding -L$cf_rpath_dir/lib to LDFLAG
 
 	test -n "$verbose" && echo "	...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS" 1>&6
 
-echo "${as_me:-configure}:50295: testing ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5
+echo "${as_me:-configure}:50291: testing ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5
 
 test -n "$verbose" && echo "	...checking LDFLAGS $LDFLAGS" 1>&6
 
-echo "${as_me:-configure}:50299: testing ...checking LDFLAGS $LDFLAGS ..." 1>&5
+echo "${as_me:-configure}:50295: testing ...checking LDFLAGS $LDFLAGS ..." 1>&5
 
 cf_rpath_dst=
 for cf_rpath_src in $LDFLAGS
@@ -50333,7 +50329,7 @@ do
 			then
 				test -n "$verbose" && echo "	...Filter $cf_rpath_src ->$cf_rpath_tmp" 1>&6
 
-echo "${as_me:-configure}:50336: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5
+echo "${as_me:-configure}:50332: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5
 
 				EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS"
 			fi
@@ -50346,11 +50342,11 @@ LDFLAGS=$cf_rpath_dst
 
 test -n "$verbose" && echo "	...checked LDFLAGS $LDFLAGS" 1>&6
 
-echo "${as_me:-configure}:50349: testing ...checked LDFLAGS $LDFLAGS ..." 1>&5
+echo "${as_me:-configure}:50345: testing ...checked LDFLAGS $LDFLAGS ..." 1>&5
 
 test -n "$verbose" && echo "	...checking LIBS $LIBS" 1>&6
 
-echo "${as_me:-configure}:50353: testing ...checking LIBS $LIBS ..." 1>&5
+echo "${as_me:-configure}:50349: testing ...checking LIBS $LIBS ..." 1>&5
 
 cf_rpath_dst=
 for cf_rpath_src in $LIBS
@@ -50387,7 +50383,7 @@ do
 			then
 				test -n "$verbose" && echo "	...Filter $cf_rpath_src ->$cf_rpath_tmp" 1>&6
 
-echo "${as_me:-configure}:50390: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5
+echo "${as_me:-configure}:50386: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5
 
 				EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS"
 			fi
@@ -50400,14 +50396,14 @@ LIBS=$cf_rpath_dst
 
 test -n "$verbose" && echo "	...checked LIBS $LIBS" 1>&6
 
-echo "${as_me:-configure}:50403: testing ...checked LIBS $LIBS ..." 1>&5
+echo "${as_me:-configure}:50399: testing ...checked LIBS $LIBS ..." 1>&5
 
 	test -n "$verbose" && echo "	...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS" 1>&6
 
-echo "${as_me:-configure}:50407: testing ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5
+echo "${as_me:-configure}:50403: testing ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5
 
 else
-	echo "$as_me:50410: result: no" >&5
+	echo "$as_me:50406: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -50522,7 +50518,7 @@ DEFS=-DHAVE_CONFIG_H
 : "${CONFIG_STATUS=./config.status}"
 ac_clean_files_save=$ac_clean_files
 ac_clean_files="$ac_clean_files $CONFIG_STATUS"
-{ echo "$as_me:50525: creating $CONFIG_STATUS" >&5
+{ echo "$as_me:50521: creating $CONFIG_STATUS" >&5
 echo "$as_me: creating $CONFIG_STATUS" >&6;}
 cat >"$CONFIG_STATUS" <<_ACEOF
 #! $SHELL
@@ -50658,7 +50654,7 @@ EOF
 cat >>"$CONFIG_STATUS" <<EOF
 ac_cs_version="\\
 config.status
-configured by $0, generated by GNU Autoconf 2.52.20230114,
+configured by $0, generated by GNU Autoconf 2.52.20230903,
   with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
 
 Copyright 2003-2022,2023	Thomas E. Dickey
@@ -50703,7 +50699,7 @@ cat >>"$CONFIG_STATUS" <<\EOF
     echo "$ac_cs_version"; exit 0 ;;
   --he | --h)
     # Conflict between --help and --header
-    { { echo "$as_me:50706: error: ambiguous option: $1
+    { { echo "$as_me:50702: error: ambiguous option: $1
 Try \`$0 --help' for more information." >&5
 echo "$as_me: error: ambiguous option: $1
 Try \`$0 --help' for more information." >&2;}
@@ -50722,7 +50718,7 @@ Try \`$0 --help' for more information." >&2;}
     ac_need_defaults=false;;
 
   # This is an error.
-  -*) { { echo "$as_me:50725: error: unrecognized option: $1
+  -*) { { echo "$as_me:50721: error: unrecognized option: $1
 Try \`$0 --help' for more information." >&5
 echo "$as_me: error: unrecognized option: $1
 Try \`$0 --help' for more information." >&2;}
@@ -50741,7 +50737,7 @@ cat >&5 << _ACEOF
 ## Running config.status.  ##
 ## ----------------------- ##
 
-This file was extended by $as_me 2.52.20230114, executed with
+This file was extended by $as_me 2.52.20230903, executed with
   CONFIG_FILES    = $CONFIG_FILES
   CONFIG_HEADERS  = $CONFIG_HEADERS
   CONFIG_LINKS    = $CONFIG_LINKS
@@ -50775,7 +50771,7 @@ do
   "default-1" ) CONFIG_COMMANDS="$CONFIG_COMMANDS default-1" ;;
   "default" ) CONFIG_COMMANDS="$CONFIG_COMMANDS default" ;;
   "$CONFIG_H" ) CONFIG_HEADERS="$CONFIG_HEADERS $CONFIG_H:config.hin" ;;
-  *) { { echo "$as_me:50778: error: invalid argument: $ac_config_target" >&5
+  *) { { echo "$as_me:50774: error: invalid argument: $ac_config_target" >&5
 echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
    { (exit 1); exit 1; }; };;
   esac
@@ -51139,7 +51135,7 @@ done; }
   esac
 
   if test x"$ac_file" != x-; then
-    { echo "$as_me:51142: creating $ac_file" >&5
+    { echo "$as_me:51138: creating $ac_file" >&5
 echo "$as_me: creating $ac_file" >&6;}
     rm -f "$ac_file"
   fi
@@ -51157,7 +51153,7 @@ echo "$as_me: creating $ac_file" >&6;}
       -) echo "$tmp"/stdin ;;
       [\\/$]*)
          # Absolute (can't be DOS-style, as IFS=:)
-         test -f "$f" || { { echo "$as_me:51160: error: cannot find input file: $f" >&5
+         test -f "$f" || { { echo "$as_me:51156: error: cannot find input file: $f" >&5
 echo "$as_me: error: cannot find input file: $f" >&2;}
    { (exit 1); exit 1; }; }
          echo "$f";;
@@ -51170,7 +51166,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;}
            echo "$srcdir/$f"
          else
            # /dev/null tree
-           { { echo "$as_me:51173: error: cannot find input file: $f" >&5
+           { { echo "$as_me:51169: error: cannot find input file: $f" >&5
 echo "$as_me: error: cannot find input file: $f" >&2;}
    { (exit 1); exit 1; }; }
          fi;;
@@ -51186,7 +51182,7 @@ cat >>"$CONFIG_STATUS" <<\EOF
       if test -n "$ac_seen"; then
         ac_used=`grep '@datarootdir@' "$ac_item"`
         if test -z "$ac_used"; then
-          { echo "$as_me:51189: WARNING: datarootdir was used implicitly but not set:
+          { echo "$as_me:51185: WARNING: datarootdir was used implicitly but not set:
 $ac_seen" >&5
 echo "$as_me: WARNING: datarootdir was used implicitly but not set:
 $ac_seen" >&2;}
@@ -51195,7 +51191,7 @@ $ac_seen" >&2;}
       fi
       ac_seen=`grep '${datarootdir}' "$ac_item"`
       if test -n "$ac_seen"; then
-        { echo "$as_me:51198: WARNING: datarootdir was used explicitly but not set:
+        { echo "$as_me:51194: WARNING: datarootdir was used explicitly but not set:
 $ac_seen" >&5
 echo "$as_me: WARNING: datarootdir was used explicitly but not set:
 $ac_seen" >&2;}
@@ -51223,11 +51219,11 @@ s,@INSTALL@,$ac_INSTALL,;t t
 " $ac_file_inputs | (eval "$ac_sed_cmds") >"$tmp"/out
   rm -f "$tmp"/stdin
 EOF
-: "${FGREP:=grep -F}"
-: "${EGREP:=grep -E}"
+test -n "${FGREP}" || FGREP="grep -F"
+test -n "${EGREP}" || EGREP="grep -E"
 cat >>"$CONFIG_STATUS" <<EOF
-  : "\${FGREP:=$FGREP}"
-  : "\${EGREP:=$EGREP}"
+  test -n "\${FGREP}" || FGREP="$FGREP"
+  test -n "\${EGREP}" || EGREP="$EGREP"
 EOF
 cat >>"$CONFIG_STATUS" <<\EOF
   if test x"$ac_file" != x-; then
@@ -51240,7 +51236,7 @@ cat >>"$CONFIG_STATUS" <<\EOF
             ac_init=`$EGREP '[ 	]*'$ac_name'[ 	]*=' "$ac_file"`
             if test -z "$ac_init"; then
               ac_seen=`echo "$ac_seen" |sed -e 's,^,'"$ac_file"':,'`
-              { echo "$as_me:51243: WARNING: Variable $ac_name is used but was not set:
+              { echo "$as_me:51239: WARNING: Variable $ac_name is used but was not set:
 $ac_seen" >&5
 echo "$as_me: WARNING: Variable $ac_name is used but was not set:
 $ac_seen" >&2;}
@@ -51251,7 +51247,7 @@ $ac_seen" >&2;}
     $EGREP -n '@[A-Z_][A-Z_0-9]+@' "$ac_file" >>"$tmp"/out
     if test -s "$tmp"/out; then
       ac_seen=`sed -e 's,^,'"$ac_file"':,' < "$tmp"/out`
-      { echo "$as_me:51254: WARNING: Some variables may not be substituted:
+      { echo "$as_me:51250: WARNING: Some variables may not be substituted:
 $ac_seen" >&5
 echo "$as_me: WARNING: Some variables may not be substituted:
 $ac_seen" >&2;}
@@ -51300,7 +51296,7 @@ for ac_file in : $CONFIG_HEADERS; do test "x$ac_file" = x: && continue
   * )   ac_file_in=$ac_file.in ;;
   esac
 
-  test x"$ac_file" != x- && { echo "$as_me:51303: creating $ac_file" >&5
+  test x"$ac_file" != x- && { echo "$as_me:51299: creating $ac_file" >&5
 echo "$as_me: creating $ac_file" >&6;}
 
   # First look for the input files in the build tree, otherwise in the
@@ -51311,7 +51307,7 @@ echo "$as_me: creating $ac_file" >&6;}
       -) echo "$tmp"/stdin ;;
       [\\/$]*)
          # Absolute (can't be DOS-style, as IFS=:)
-         test -f "$f" || { { echo "$as_me:51314: error: cannot find input file: $f" >&5
+         test -f "$f" || { { echo "$as_me:51310: error: cannot find input file: $f" >&5
 echo "$as_me: error: cannot find input file: $f" >&2;}
    { (exit 1); exit 1; }; }
          echo $f;;
@@ -51324,7 +51320,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;}
            echo "$srcdir/$f"
          else
            # /dev/null tree
-           { { echo "$as_me:51327: error: cannot find input file: $f" >&5
+           { { echo "$as_me:51323: error: cannot find input file: $f" >&5
 echo "$as_me: error: cannot find input file: $f" >&2;}
    { (exit 1); exit 1; }; }
          fi;;
@@ -51377,7 +51373,8 @@ EOF
 # Break up conftest.defines because some shells have a limit on the size
 # of here documents, and old seds have small limits too (100 cmds).
 echo '  # Handle all the #define templates only if necessary.' >>"$CONFIG_STATUS"
-echo '  if ${EGREP-grep -E} "^[ 	]*#[ 	]*define" "$tmp"/in >/dev/null; then' >>"$CONFIG_STATUS"
+echo '  test -n "${EGREP}" || EGREP="grep -E"' >>"$CONFIG_STATUS"
+echo '  if ${EGREP} "^[ 	]*#[ 	]*define" "$tmp"/in >/dev/null; then' >>"$CONFIG_STATUS"
 echo '  # If there are no defines, we may have an empty if/fi' >>"$CONFIG_STATUS"
 echo '  :' >>"$CONFIG_STATUS"
 rm -f conftest.tail
@@ -51442,7 +51439,7 @@ cat >>"$CONFIG_STATUS" <<\EOF
   rm -f "$tmp"/in
   if test x"$ac_file" != x-; then
     if cmp -s "$ac_file" "$tmp/config.h" 2>/dev/null; then
-      { echo "$as_me:51445: $ac_file is unchanged" >&5
+      { echo "$as_me:51442: $ac_file is unchanged" >&5
 echo "$as_me: $ac_file is unchanged" >&6;}
     else
       ac_dir=`$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
diff --git a/po/ro.po b/po/ro.po
index 89492263..a980a3f8 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -1,23 +1,31 @@
-# Mesajele în limba română pentru pachetul lynx
-# Copyright (C) 2019 Free Software Foundation, Inc.
+# Romanian translation for lynx.
+# Mesajele în limba română pentru pachetul lynx.
+# Copyright © 2019 - 2023 Free Software Foundation, Inc.
 # This file is distributed under the same license as the lynx package.
+#
 # Daniel Șerbănescu <daniel@serbanescu.dk>, 2019.
+# Remus-Gabriel Chelu <remusgabriel.chelu@disroot.org>, 2023.
+#
+# Cronologia traducerii fișierului „lynx”:
+# Traducerea inițială, făcută de DȘ, pentru versiunea lynx 2.9.0-dev3 (1,05% - tradus), aug-2019.
+# Actualizare a traducerii pentru versiunea 2.9.0-dev8, făcută de R-GC (100% - tradus), sep-2023.
+# Actualizare a traducerii pentru versiunea Y, făcută de X, Z(luna-anul).
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: lynx 2.9.0-dev3\n"
+"Project-Id-Version: lynx 2.9.0-dev8\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-08-23 19:59-0400\n"
-"PO-Revision-Date: 2019-08-26 19:18+0200\n"
-"Last-Translator: Daniel Șerbănescu <daniel@serbanescu.dk>\n"
+"POT-Creation-Date: 2021-07-31 10:04-0400\n"
+"PO-Revision-Date: 2023-09-30 14:20+0200\n"
+"Last-Translator: Remus-Gabriel Chelu <remusgabriel.chelu@disroot.org>\n"
 "Language-Team: Romanian <translation-team-ro@lists.sourceforge.net>\n"
 "Language: ro\n"
-"X-Bugs: Report translation errors to the Language-Team address.\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Poedit 2.2.3\n"
 "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n==0 || (n!=1 && n%100>=1 && n%100<=19) ? 1 : 2);\n"
+"X-Bugs: Report translation errors to the Language-Team address.\n"
+"X-Generator: Poedit 3.2.2\n"
 
 #. ******************************************************************
 #. * The following definitions are for status line prompts, messages, or
@@ -52,65 +60,65 @@ msgstr "Ieșiți din Lynx?"
 
 #: LYMessages.c:34
 msgid "Connection interrupted."
-msgstr ""
+msgstr "Conexiune întreruptă."
 
 #: LYMessages.c:35
 msgid "Data transfer interrupted."
-msgstr ""
+msgstr "Transfer de date întrerupt."
 
 #: LYMessages.c:36
 msgid "Cancelled!!!"
-msgstr ""
+msgstr "Anulat!"
 
 #: LYMessages.c:37
 msgid "Cancelling!"
-msgstr ""
+msgstr "Se anulează!"
 
 #: LYMessages.c:38
 msgid "Excellent!!!"
-msgstr ""
+msgstr "Excelent!!!"
 
 #: LYMessages.c:39
 msgid "OK"
-msgstr "v"
+msgstr "Ok"
 
 #: LYMessages.c:40
 msgid "Done!"
-msgstr ""
+msgstr "Gata!"
 
 #: LYMessages.c:41
 msgid "Bad request!"
-msgstr ""
+msgstr "Cerere eronată!"
 
 #: LYMessages.c:42
 msgid "previous"
-msgstr ""
+msgstr "anterior"
 
 #: LYMessages.c:43
 msgid "next screen"
-msgstr ""
+msgstr "ecranul următor"
 
 #: LYMessages.c:44
 msgid "HELP!"
-msgstr ""
+msgstr "AJUTOR!"
 
 #: LYMessages.c:45
 msgid ", help on "
-msgstr ""
+msgstr ", ajutor pentru "
 
 #. #define HELP
 #: LYMessages.c:47
 msgid "Commands: Use arrow keys to move, '?' for help, 'q' to quit, '<-' to go back."
-msgstr "Comenzi: Utilizați săgețile pentru navigare, „?” pentru ajutor, „q” pentru ieșire, „<-” pentru navigare înapoi."
+msgstr "Comenzi: Utilizați tastele săgeți pentru navigare, „?” pentru ajutor, „q” pentru ieșire, „⟵” pentru navigare înapoi."
 
 #. #define MOREHELP
 #: LYMessages.c:49
 msgid "-- press space for more, use arrow keys to move, '?' for help, 'q' to quit."
-msgstr "-- apăsați spațiu pentru mai mult, utilizați săgețile pentru navigare, „?” pentru ajutor, „q” pentru ieșire."
+msgstr "-- apăsați bara de spațiu pentru mai mult, utilizați săgețile pentru navigare, „?” pentru ajutor, „q” pentru ieșire."
 
 #: LYMessages.c:50
 msgid "-- press space for next page --"
-msgstr "-- apăsați spațiu pentru pagina următoare --"
+msgstr "-- apăsați bara de spațiu pentru pagina următoare --"
 
 #: LYMessages.c:51
 msgid "URL too long"
@@ -121,866 +129,866 @@ msgstr "URL prea lung"
 #: LYMessages.c:57
 #, c-format
 msgid "(Textfield \"%s\"); Inactive.  Press <return> to activate."
-msgstr ""
+msgstr "(Câmp text „%s”); Inactiv.  Apăsați <Enter> pentru a-l activa."
 
 #. #define FORM_LINK_TEXT_MESSAGE_INA
 #: LYMessages.c:59
 msgid "(Text entry field) Inactive.  Press <return> to activate."
-msgstr ""
+msgstr "(Câmp de introducere text) Inactiv.  Apăsați <Enter> pentru a-l activa."
 
 #. #define FORM_LINK_TEXTAREA_ADV_MSG_INA
 #: LYMessages.c:61
 #, c-format
 msgid "(Textarea \"%s\"); Inactive.  Press <return> to activate."
-msgstr ""
+msgstr "(Zona de text „%s”); Inactivă.  Apăsați <Enter> pentru a o activa."
 
 #. #define FORM_LINK_TEXTAREA_MESSAGE_INA
 #: LYMessages.c:63
 msgid "(Textarea) Inactive.  Press <return> to activate."
-msgstr ""
+msgstr "(Zonă de text); Inactivă.  Apăsați <Enter> pentru a o activa."
 
 #. #define FORM_LINK_TEXTAREA_ADV_MSG_INA_E
 #: LYMessages.c:65
 #, c-format
 msgid "(Textarea \"%s\"); Inactive.  Press <return> to activate (%s for editor)."
-msgstr ""
+msgstr "(Zona de text „%s”); Inactivă.  Apăsați <Enter> pentru a o activa (%s pentru editor)."
 
 #. #define FORM_LINK_TEXTAREA_MESSAGE_INA_E
 #: LYMessages.c:67
 #, c-format
 msgid "(Textarea) Inactive.  Press <return> to activate (%s for editor)."
-msgstr ""
+msgstr "(Zonă de text); Inactivă.  Apăsați <Enter> pentru a o activa (%s pentru editor)."
 
 #. #define FORM_LINK_TEXT_SUBMIT_MESSAGE_INA
 #: LYMessages.c:69
 msgid "(Form field) Inactive.  Use <return> to edit."
-msgstr ""
+msgstr "(Câmp formular) Inactiv.  Utilizați <Enter> pentru a edita."
 
 #. #define FORM_TEXT_SUBMIT_MESSAGE_INA_X
 #: LYMessages.c:71
 #, c-format
 msgid "(Form field) Inactive.  Use <return> to edit (%s to submit with no cache)."
-msgstr ""
+msgstr "(Câmp formular) Inactiv.  Utilizați <Enter> pentru a edita (%s pentru a trimite fără a utiliza spațiul de prestocare)."
 
 #. #define FORM_TEXT_RESUBMIT_MESSAGE_INA
 #: LYMessages.c:73
 msgid "(Form field) Inactive. Press <return> to edit, press <return> twice to submit."
-msgstr ""
+msgstr "(Câmp formular) Inactiv.  Apăsați <Enter> pentru a edita, pulsați <Enter> de două ori pentru a trimite."
 
 #. #define FORM_TEXT_SUBMIT_MAILTO_MSG_INA
 #: LYMessages.c:75
 msgid "(mailto form field) Inactive.  Press <return> to change."
-msgstr ""
+msgstr "(câmp formular e-mail) Inactiv.  Apăsați <Enter> pentru a modifica."
 
 #. #define FORM_LINK_PASSWORD_MESSAGE_INA
 #: LYMessages.c:77
 msgid "(Password entry field) Inactive.  Press <return> to activate."
-msgstr ""
+msgstr "(Câmp de introducere a parolei) Inactiv.  Apăsați <Enter> pentru a-l activa."
 
 #. #define FORM_LINK_FILE_UNM_MSG
 #: LYMessages.c:80
 msgid "UNMODIFIABLE file entry field.  Use UP or DOWN arrows or tab to move off."
-msgstr ""
+msgstr "Câmp de introducere fișier NEMODIFICABIL.  Folosiți săgețile SUS sau JOS sau tabulatorul pentru a vă deplasa."
 
 #. #define FORM_LINK_FILE_MESSAGE
 #: LYMessages.c:82
 msgid "(File entry field) Enter filename.  Use UP or DOWN arrows or tab to move off."
-msgstr ""
+msgstr "(Câmp de introducere fișier) Introduceți numele fișierului.  Folosiți săgețile SUS sau JOS sau tabulatorul pentru a vă deplasa."
 
 #. #define FORM_LINK_TEXT_ADV_MSG
 #. #define FORM_LINK_TEXT_MESSAGE
 #: LYMessages.c:84 LYMessages.c:86
 #, c-format
 msgid "(Textfield \"%s\"); Enter text.  Use UP or DOWN arrows or tab to move off."
-msgstr ""
+msgstr "(Câmp text „%s”); Introduceți textul.  Folosiți săgețile SUS sau JOS sau tabulatorul pentru a vă deplasa."
 
 #. #define FORM_LINK_TEXTAREA_ADV_MSG
 #: LYMessages.c:88
 #, c-format
 msgid "(Textarea \"%s\"); Enter text. Use UP/DOWN arrows or TAB to move off."
-msgstr ""
+msgstr "(Zona de text „%s”); Introduceți textul.  Folosiți săgețile SUS/JOS sau tabulatorul pentru a vă deplasa."
 
 #. #define FORM_LINK_TEXTAREA_MESSAGE
 #: LYMessages.c:90
 msgid "(Textarea) Enter text. Use UP/DOWN arrows or TAB to move off."
-msgstr ""
+msgstr "(Zonă de text) Introduceți textul.  Folosiți săgețile SUS/JOS sau tabulatorul pentru a vă deplasa."
 
 #. #define FORM_LINK_TEXTAREA_ADV_MSG_E
 #: LYMessages.c:92
 #, c-format
 msgid "(Textarea \"%s\"); Enter text. Use UP/DOWN arrows or TAB to move off (%s for editor)."
-msgstr ""
+msgstr "(Zona de text „%s”); Introduceți textul.  Folosiți săgețile SUS/JOS sau tabulatorul pentru a vă deplasa (%s pentru editor)."
 
 #. #define FORM_LINK_TEXTAREA_MESSAGE_E
 #: LYMessages.c:94
 #, c-format
 msgid "(Textarea) Enter text. Use UP/DOWN arrows or TAB to move off (%s for editor)."
-msgstr ""
+msgstr "(Zonă de text) Introduceți textul.  Folosiți săgețile SUS/JOS sau tabulatorul pentru a vă deplasa (%s pentru editor)."
 
 #. #define FORM_LINK_TEXT_UNM_MSG
 #: LYMessages.c:96
 msgid "UNMODIFIABLE form text field.  Use UP or DOWN arrows or tab to move off."
-msgstr ""
+msgstr "Câmpul de text al formularului este NEMODIFICABIL.  Folosiți săgețile SUS sau JOS sau tabulatorul pentru a vă deplasa."
 
 #. #define FORM_LINK_TEXT_SUBMIT_MESSAGE
 #: LYMessages.c:98
 msgid "(Form field) Enter text.  Use <return> to submit."
-msgstr ""
+msgstr "(Câmp formular) Introduceți text  Utilizați <Enter> pentru a trimite."
 
 #. #define FORM_LINK_TEXT_SUBMIT_MESSAGE_X
 #: LYMessages.c:100
 #, c-format
 msgid "(Form field) Enter text.  Use <return> to submit (%s for no cache)."
-msgstr ""
+msgstr "(Câmp formular) Introduceți text  Utilizați <Enter> pentru a trimite (%s pentru a trimite fără a utiliza spațiul de prestocare)."
 
 #. #define FORM_LINK_TEXT_RESUBMIT_MESSAGE
 #: LYMessages.c:102
 msgid "(Form field) Enter text.  Use <return> to submit, arrows or tab to move off."
-msgstr ""
+msgstr "(Câmp formular) Introduceți textul.  Folosiți <Enter> pentru a trimite, săgețile sau tabulatorul pentru a vă deplasa."
 
 #. #define FORM_LINK_TEXT_SUBMIT_UNM_MSG
 #: LYMessages.c:104
 msgid "UNMODIFIABLE form field.  Use UP or DOWN arrows or tab to move off."
-msgstr ""
+msgstr "Câmpul formularului este NEMODIFICABIL.  Folosiți săgețile SUS sau JOS sau tabulatorul pentru a vă deplasa."
 
 #. #define FORM_LINK_TEXT_SUBMIT_MAILTO_MSG
 #: LYMessages.c:106
 msgid "(mailto form field) Enter text.  Use <return> to submit, arrows to move off."
-msgstr ""
+msgstr "(Câmp de formular de e-mail) Introduceți textul.  Folosiți <Enter> pentru a trimite, săgețile pentru a vă deplasa."
 
 #. #define FORM_LINK_TEXT_SUBMIT_MAILTO_DIS_MSG
 #: LYMessages.c:108
 msgid "(mailto form field) Mail is disallowed so you cannot submit."
-msgstr ""
+msgstr "(Câmp de formular de e-mail) Serviciul de poștă electronică nu este disponibil, deci nu puteți trimite."
 
 #. #define FORM_LINK_PASSWORD_MESSAGE
 #: LYMessages.c:110
 msgid "(Password entry field) Enter text.  Use UP or DOWN arrows or tab to move off."
-msgstr ""
+msgstr "(Câmp de introducere a parolei) Introduceți textul.  Utilizați săgețile SUS sau JOS sau tabulatorul pentru a vă deplasa."
 
 #. #define FORM_LINK_PASSWORD_UNM_MSG
 #: LYMessages.c:112
 msgid "UNMODIFIABLE form password.  Use UP or DOWN arrows or tab to move off."
-msgstr ""
+msgstr "Parola formularului NEMODIFICABILĂ.  Utilizați săgețile SUS sau JOS sau tabulatorul pentru a vă deplasa."
 
 #. #define FORM_LINK_CHECKBOX_ADV_MSG
 #: LYMessages.c:114
 #, c-format
 msgid "(Checkbox \"%s\");   Use right-arrow or <return> to toggle."
-msgstr ""
+msgstr "(Căsuța de selectare \"%s\"); Folosiți săgeata-dreapta sau <Enter> pentru a o marca/demarca."
 
 #. #define FORM_LINK_CHECKBOX_MESSAGE
 #: LYMessages.c:116
 msgid "(Checkbox Field)   Use right-arrow or <return> to toggle."
-msgstr ""
+msgstr "(Căsuță de selectare) Folosiți săgeata-dreapta sau <Enter> pentru a o marca/demarca."
 
 #. #define FORM_LINK_CHECKBOX_UNM_MSG
 #: LYMessages.c:118
 msgid "UNMODIFIABLE form checkbox.  Use UP or DOWN arrows or tab to move off."
-msgstr ""
+msgstr "Căsuța de selectare a formularului este NEMODIFICABILĂ.  Folosiți săgețile SUS sau JOS sau tabulatorul pentru a vă deplasa."
 
 #. #define FORM_LINK_RADIO_ADV_MSG
 #: LYMessages.c:120
 #, c-format
 msgid "(Radio Button \"%s\");   Use right-arrow or <return> to toggle."
-msgstr ""
+msgstr "(Butonul radio \"%s\"); Folosiți săgeata spre dreapta sau <Enter> pentru a-l selecționa."
 
 #. #define FORM_LINK_RADIO_MESSAGE
 #: LYMessages.c:122
 msgid "(Radio Button)   Use right-arrow or <return> to toggle."
-msgstr ""
+msgstr "(Buton radio) Folosiți săgeata spre dreapta sau <Enter> pentru a-l selecționa."
 
 #. #define FORM_LINK_RADIO_UNM_MSG
 #: LYMessages.c:124
 msgid "UNMODIFIABLE form radio button.  Use UP or DOWN arrows or tab to move off."
-msgstr ""
+msgstr "Buton de selectare al formularului NEMODIFICABIL.  Folosiți săgețile SUS sau JOS sau tabulatorul pentru a vă deplasa."
 
 #. #define FORM_LINK_SUBMIT_PREFIX
 #: LYMessages.c:126
 msgid "Submit ('x' for no cache) to "
-msgstr ""
+msgstr "Trimiteți („x” pentru a nu utiliza spațiul de prestocare) la "
 
 #. #define FORM_LINK_RESUBMIT_PREFIX
 #: LYMessages.c:128
 msgid "Submit to "
-msgstr ""
+msgstr "Trimiteți la "
 
 #. #define FORM_LINK_SUBMIT_MESSAGE
 #: LYMessages.c:130
 msgid "(Form submit button) Use right-arrow or <return> to submit ('x' for no cache)."
-msgstr ""
+msgstr "(Buton de trimitere al formularului) Folosiți săgeata-dreapta sau <Enter> pentru a trimite („x” pentru a nu utiliza spațiul de prestocare)."
 
 #. #define FORM_LINK_RESUBMIT_MESSAGE
 #: LYMessages.c:132
 msgid "(Form submit button) Use right-arrow or <return> to submit."
-msgstr ""
+msgstr "(Buton de trimitere al formularului) Folosiți săgeata-dreapta sau <Enter> pentru a trimite."
 
 #. #define FORM_LINK_SUBMIT_DIS_MSG
 #: LYMessages.c:134
 msgid "DISABLED form submit button.  Use UP or DOWN arrows or tab to move off."
-msgstr ""
+msgstr "Butonul de trimitere a formularului este DEZACTIVAT.  Folosiți săgețile SUS sau JOS sau tabulatorul pentru a vă deplasa."
 
 #. #define FORM_LINK_SUBMIT_MAILTO_PREFIX
 #: LYMessages.c:136
 msgid "Submit mailto form to "
-msgstr ""
+msgstr "Trimiteți formularul de e-mail la "
 
 #. #define FORM_LINK_SUBMIT_MAILTO_MSG
 #: LYMessages.c:138
 msgid "(mailto form submit button) Use right-arrow or <return> to submit."
-msgstr ""
+msgstr "(Buton de trimitere a formularului de e-mail) Utilizați săgeata-dreapta sau <Enter> pentru a trimite."
 
 #. #define FORM_LINK_SUBMIT_MAILTO_DIS_MSG
 #: LYMessages.c:140
 msgid "(mailto form submit button) Mail is disallowed so you cannot submit."
-msgstr ""
+msgstr "(Buton de trimitere al formularului de e-mail) Serviciul de poștă electronică nu este disponibil, deci nu puteți trimite."
 
 #. #define FORM_LINK_RESET_MESSAGE
 #: LYMessages.c:142
 msgid "(Form reset button)   Use right-arrow or <return> to reset form to defaults."
-msgstr ""
+msgstr "(Buton de reinițializare a formularului) Utilizați săgeata-dreapta sau <Enter> pentru a restaura formularul la valorile implicite."
 
 #. #define FORM_LINK_RESET_DIS_MSG
 #: LYMessages.c:144
 msgid "DISABLED form reset button.  Use UP or DOWN arrows or tab to move off."
-msgstr ""
+msgstr "Butonul de restaurare a formularului este DEZACTIVAT.  Utilizați săgețile SUS sau JOS sau tabulatorul pentru a vă deplasa."
 
 #. #define FORM_LINK_BUTTON_MESSAGE
 #: LYMessages.c:146
 msgid "(Script button)   Use UP or DOWN arrows or tab to move off."
-msgstr ""
+msgstr "(Buton de Script) Utilizați săgețile SUS sau JOS sau tabulatorul pentru a vă deplasa."
 
 #. #define FORM_LINK_BUTTON_ADV_MSG
 #: LYMessages.c:148
 #, c-format
 msgid "(Script button \"%s\");   Use UP or DOWN arrows or tab to move off."
-msgstr ""
+msgstr "(Butonul de Script „%s”) Utilizați săgețile SUS sau JOS sau tabulatorul pentru a vă deplasa."
 
 #. #define FORM_LINK_BUTTON_DIS_MSG
 #: LYMessages.c:150
 msgid "DISABLED Script button.  Use UP or DOWN arrows or tab to move off."
-msgstr ""
+msgstr "Buton de Script DEZACTIVAT.  Folosiți săgețile SUS sau JOS sau tabulatorul pentru a vă deplasa."
 
 #. #define FORM_LINK_OPTION_LIST_ADV_MSG
 #: LYMessages.c:152
 #, c-format
 msgid "(Option list \"%s\"); Hit return to select option."
-msgstr ""
+msgstr "(Lista de opțiuni \"%s\"); Apăsați <Enter> pentru a selecta opțiunea."
 
 #. #define FORM_LINK_OPTION_LIST_MESSAGE
 #: LYMessages.c:154
 msgid "(Option list) Hit return and use arrow keys and return to select option."
-msgstr ""
+msgstr "(Listă de opțiuni) Apăsați <Enter> și utilizați tastele săgeată pentru a vă deplasa și <Enter> pentru a selecta opțiunea."
 
 #. #define CHOICE_LIST_ADV_MSG
 #: LYMessages.c:156
 #, c-format
 msgid "(Choice entry \"%s\"); Use arrow keys and return to select option."
-msgstr ""
+msgstr "(Element de alegere „%s”); utilizați tastele săgeată și tasta <Enter> pentru a selecta opțiunea."
 
 #. #define CHOICE_LIST_MESSAGE
 #: LYMessages.c:158
 msgid "(Choice list) Hit return and use arrow keys and return to select option."
-msgstr ""
+msgstr "(Lista de opțiuni) Apăsați <Enter> și utilizați tastele săgeată pentru a vă deplasa și <Enter> pentru a selecta opțiunea."
 
 #. #define MOUSE_CHOICE_MESSAGE
 #: LYMessages.c:160
 msgid "Left mouse button or return to select, arrow keys to scroll."
-msgstr ""
+msgstr "Butonul stâng al mouse-ului sau <Enter> pentru a selecta, tastele săgeată pentru a derula."
 
 #. #define FORM_LINK_OPTION_LIST_UNM_MSG
 #: LYMessages.c:162
 msgid "UNMODIFIABLE option list.  Use return or arrow keys to review or leave."
-msgstr ""
+msgstr "Lista de opțiuni NEMODIFICABILE.  Utilizați tastele de revenire sau săgețile pentru a revizui sau a părăsi."
 
 #. #define CHOICE_LIST_UNM_MSG
 #: LYMessages.c:164
 msgid "UNMODIFIABLE choice list.  Use return or arrow keys to review or leave."
-msgstr ""
+msgstr "Listă de opțiuni NEMODIFICABILĂ.  Utilizați tastele de revenire sau săgețile pentru a revizui sau a părăsi."
 
 #: LYMessages.c:165
 msgid "Submitting form..."
-msgstr ""
+msgstr "Se trimite formularul..."
 
 #: LYMessages.c:166
 msgid "Resetting form..."
-msgstr ""
+msgstr "Se restabilesc valorile inițiale ale formularului..."
 
 #. #define RELOADING_FORM
 #: LYMessages.c:168
 msgid "Reloading document.  Any form entries will be lost!"
-msgstr ""
+msgstr "Se reîncarcă documentul.  Orice înregistrări în formular vor fi pierdute!"
 
 #. #define LINK_NOT_IN_FORM
 #: LYMessages.c:170
 msgid "The current link is not in a FORM"
-msgstr ""
+msgstr "Legătura curentă nu se află într-un FORMULAR"
 
 #: LYMessages.c:171
 #, c-format
 msgid "Warning: Cannot transcode form data to charset %s!"
-msgstr ""
+msgstr "Avertisment: Nu se pot converti datele formularului în setul de caractere %s!"
 
 #. #define NORMAL_LINK_MESSAGE
 #: LYMessages.c:174
 msgid "(NORMAL LINK)   Use right-arrow or <return> to activate."
-msgstr ""
+msgstr "(LEGĂTURĂ NORMALĂ)   Folosiți săgeata-dreapta sau <Enter> pentru a o activa."
 
 #: LYMessages.c:175
 msgid "The resource requested is not available at this time."
-msgstr ""
+msgstr "Resursa solicitată nu este disponibilă în acest moment."
 
 #: LYMessages.c:176
 msgid "Enter Lynx keystroke command: "
-msgstr ""
+msgstr "Introduceți comanda Lynx prin tastare: "
 
 #: LYMessages.c:177
 msgid "Looking up "
-msgstr ""
+msgstr "Se caută "
 
 #: LYMessages.c:178
 #, c-format
 msgid "Getting %s"
-msgstr ""
+msgstr "Se obține %s"
 
 #: LYMessages.c:179
 #, c-format
 msgid "Skipping %s"
-msgstr ""
+msgstr "Se omite %s"
 
 #: LYMessages.c:180
 #, c-format
 msgid "Using %s"
-msgstr ""
+msgstr "Se utilizează %s"
 
 #: LYMessages.c:181
 #, c-format
 msgid "Illegal URL: %s"
-msgstr "URL nelegal: %s"
+msgstr "Adresă URL ilegală: %s"
 
 #: LYMessages.c:182
 #, c-format
 msgid "Badly formed address %s"
-msgstr ""
+msgstr "Adresă formată greșit %s"
 
 #: LYMessages.c:183
 #, c-format
 msgid "URL: %s"
-msgstr "URL: %s"
+msgstr "Adresa URL: %s"
 
 #: LYMessages.c:184
 msgid "Unable to access WWW file!!!"
-msgstr ""
+msgstr "Nu se poate accesa fișierul WWW!!!"
 
 #: LYMessages.c:185
 #, c-format
 msgid "This is a searchable index.  Use %s to search."
-msgstr ""
+msgstr "Acesta este un index în care se pot face căutări.  Utilizați %s pentru a căuta."
 
 #. #define WWW_INDEX_MORE_MESSAGE
 #: LYMessages.c:187
 #, c-format
 msgid "--More--  This is a searchable index.  Use %s to search."
-msgstr ""
+msgstr "--Mai mult--  Acesta este un index în care se pot face căutări.  Utilizați %s pentru a căuta."
 
 #: LYMessages.c:188
 msgid "You have entered an invalid link number."
-msgstr ""
+msgstr "Ați introdus un număr de legătură nevalid."
 
 #. #define SOURCE_HELP
 #: LYMessages.c:190
 msgid "Currently viewing document source.  Press '\\' to return to rendered version."
-msgstr ""
+msgstr "În prezent se vizualizează sursa documentului.  Apăsați „\\” pentru a reveni la versiunea procesată."
 
 #. #define NOVICE_LINE_ONE
 #: LYMessages.c:192
 msgid "  Arrow keys: Up and Down to move.  Right to follow a link; Left to go back.  \n"
-msgstr "  Tastele săgeți: Sus și Jos pentru navigare.  Dreapta pentru a urma o legătură; Stânga pentru a naviga înapoi.  \n"
+msgstr "  Tastele săgeți: Sus și Jos pentru deplasare.  Dreapta pentru a urma o legătură; Stânga pentru a naviga înapoi.  \n"
 
 #. #define NOVICE_LINE_TWO
 #: LYMessages.c:194
 msgid " H)elp O)ptions P)rint G)o M)ain screen Q)uit /=search [delete]=history list \n"
-msgstr " Ajutor(H) O)pțiuni Ti(P)ărește Navi(G)hează Ecranul principal(M) Ieșire(Q) /=căutare [delete]=lista istoricului \n"
+msgstr " Ajutor(H) O)pțiuni Im(P)rimă Navi(G)ați Ecranul-principal(M) Ieșire(Q) /=căutare [delete]=lista istoricului \n"
 
 #. #define NOVICE_LINE_TWO_A
 #: LYMessages.c:196
 msgid "  O)ther cmds  H)elp  K)eymap  G)oto  P)rint  M)ain screen  o)ptions  Q)uit  \n"
-msgstr ""
+msgstr "  Alte c(O)menzi  Ajutor(H)  Tastatura(K)  Navi(G)ați  Im(P)rimare  Ecranul-principal(M)  o)pțiuni  Ieșire(Q)  \n"
 
 #. #define NOVICE_LINE_TWO_B
 #: LYMessages.c:198
 msgid "  O)ther cmds  B)ack  E)dit  D)ownload ^R)eload ^W)ipe screen  search doc: / \n"
-msgstr ""
+msgstr "  Alte c(O)menzi  Înapoi(B)  E)ditare  D)escarcă Ctrl-R)eîncarcă Curăță ecranul(^W)  caută doc: / \n"
 
 #. #define NOVICE_LINE_TWO_C
 #: LYMessages.c:200
 msgid "O)ther cmds  C)omment  History: <backspace>  Bookmarks: V)iew, A)dd, R)emove \n"
-msgstr ""
+msgstr "Alte c(O)menzi  C)omentariu  Istoric: <backspace>  Marcaje: V)izualizare, A)dăugare, Elimina(R)e \n"
 
 #. #define FORM_NOVICELINE_ONE
 #: LYMessages.c:202
 msgid "            Enter text into the field by typing on the keyboard              "
-msgstr ""
+msgstr "             Introduceți textul în câmp prin intermediul tastaturii              "
 
 #. #define FORM_NOVICELINE_TWO
 #: LYMessages.c:204
 msgid "    Ctrl-U to delete all text in field, [Backspace] to delete a character    "
-msgstr ""
+msgstr "    Ctrl-U pentru a șterge tot textul din câmp, [Backspace] pentru a șterge un caracter    "
 
 #. #define FORM_NOVICELINE_TWO_DELBL
 #: LYMessages.c:206
 msgid "      Ctrl-U to delete text in field, [Backspace] to delete a character    "
-msgstr ""
+msgstr "      Ctrl-U pentru a șterge text din câmp, [Backspace] pentru a șterge un caracter    "
 
 #. #define FORM_NOVICELINE_TWO_VAR
 #: LYMessages.c:208
 #, c-format
 msgid "    %s to delete all text in field, [Backspace] to delete a character    "
-msgstr ""
+msgstr "    %s pentru a șterge tot textul din câmp, [Backspace] pentru a șterge un caracter   "
 
 #. #define FORM_NOVICELINE_TWO_DELBL_VAR
 #: LYMessages.c:210
 #, c-format
 msgid "      %s to delete text in field, [Backspace] to delete a character    "
-msgstr ""
+msgstr "      %s pentru a șterge text din câmp, [Backspace] pentru a șterge un caracter    "
 
 #. mailto
 #: LYMessages.c:213
 msgid "Malformed mailto form submission!  Cancelled!"
-msgstr ""
+msgstr "Formular de trimitere a mesajului „mailto” incorect!  Anulat!"
 
 #: LYMessages.c:214
 msgid "Warning!  Control codes in mail address replaced by ?"
-msgstr ""
+msgstr "Atenție!  Codurile de control din adresa de e-mail au fost înlocuite cu „?”"
 
 #: LYMessages.c:215
 msgid "Mail disallowed!  Cannot submit."
-msgstr ""
+msgstr "Serviciul de poștă electronică este dezactivat!  Nu se poate trimite."
 
 #: LYMessages.c:216
 msgid "Mailto form submission failed!"
-msgstr ""
+msgstr "Trimiterea formularului prin serviciul de poștă electronică a eșuat!"
 
 #: LYMessages.c:217
 msgid "Mailto form submission Cancelled!!!"
-msgstr ""
+msgstr "Trimiterea formularului prin serviciul de poștă electronică A fost anulată!!!"
 
 #: LYMessages.c:218
 msgid "Sending form content..."
-msgstr ""
+msgstr "Se trimite conținutul formularului..."
 
 #: LYMessages.c:219
 msgid "No email address is present in mailto URL!"
-msgstr ""
+msgstr "Nici o adresă de e-mail nu este prezentă în URL-ul destinatarului „mailto”!"
 
 #. #define MAILTO_URL_TEMPOPEN_FAILED
 #: LYMessages.c:221
 msgid "Unable to open temporary file for mailto URL!"
-msgstr ""
+msgstr "Nu se poate deschide fișierul temporar pentru URL-ul mailto!"
 
 #. #define INC_ORIG_MSG_PROMPT
 #: LYMessages.c:223
 msgid "Do you wish to include the original message?"
-msgstr ""
+msgstr "Doriți să includeți mesajul original?"
 
 #. #define INC_PREPARSED_MSG_PROMPT
 #: LYMessages.c:225
 msgid "Do you wish to include the preparsed source?"
-msgstr ""
+msgstr "Doriți să includeți textul sursă pre-procesat?"
 
 #. #define SPAWNING_EDITOR_FOR_MAIL
 #: LYMessages.c:227
 msgid "Spawning your selected editor to edit mail message"
-msgstr ""
+msgstr "Se lansează editorul selectat pentru a edita mesajul de poștă electronică"
 
 #. #define ERROR_SPAWNING_EDITOR
 #: LYMessages.c:229
 msgid "Error spawning editor, check your editor definition in the options menu"
-msgstr ""
+msgstr "Eroare la lansarea editorului, verificați definiția editorului din meniul de opțiuni."
 
 #: LYMessages.c:230
 msgid "Send this comment?"
-msgstr ""
+msgstr "Trimiteți acest comentariu?"
 
 #: LYMessages.c:231
 msgid "Send this message?"
-msgstr ""
+msgstr "Trimiteți acest mesaj?"
 
 #: LYMessages.c:232
 msgid "Sending your message..."
-msgstr ""
+msgstr "Se trimite mesajul dvs...."
 
 #: LYMessages.c:233
 msgid "Sending your comment:"
-msgstr ""
+msgstr "Se trimite comentariul dvs.:"
 
 #. textarea
 #: LYMessages.c:236
 msgid "Not in a TEXTAREA; cannot use external editor."
-msgstr ""
+msgstr "Nu se află într-o ZONĂ DE TEXT; nu se poate utiliza un editor extern."
 
 #: LYMessages.c:237
 msgid "Not in a TEXTAREA; cannot use command."
-msgstr ""
+msgstr "Nu se află într-o ZONĂ DE TEXT; nu se poate utiliza comanda."
 
 #: LYMessages.c:239
 msgid "file: ACTIONs are disallowed!"
-msgstr ""
+msgstr "fișier: ACȚIUNILE nu sunt permise!"
 
 #. #define FILE_SERVED_LINKS_DISALLOWED
 #: LYMessages.c:241
 msgid "file: URLs via served links are disallowed!"
-msgstr ""
+msgstr "fișier: URL-urile prin intermediul legăturilor furnizate nu sunt permise!"
 
 #: LYMessages.c:242
 msgid "Access to local files denied."
-msgstr ""
+msgstr "Accesul la fișierele locale este refuzat."
 
 #: LYMessages.c:243
 msgid "file: URLs via bookmarks are disallowed!"
-msgstr ""
+msgstr "fișier: URL-urile prin intermediul marcajelor-pagini-favorite nu sunt permise!"
 
 #. #define SPECIAL_VIA_EXTERNAL_DISALLOWED
 #: LYMessages.c:245
 msgid "This special URL is not allowed in external documents!"
-msgstr ""
+msgstr "Această adresă URL specială nu este permisă în documentele externe!"
 
 #: LYMessages.c:246
 msgid "Press <return> to return to Lynx."
-msgstr ""
+msgstr "Apăsați <Enter> pentru a reveni la Lynx."
 
 #. #define SPAWNING_MSG
 #: LYMessages.c:249
 msgid "Spawning DCL subprocess.  Use 'logout' to return to Lynx.\n"
-msgstr ""
+msgstr "Se creează un subproces DCL.  Folosiți „logout” pentru a reveni la Lynx.\n"
 
 #. #define SPAWNING_MSG
 #: LYMessages.c:253
 msgid "Type EXIT to return to Lynx.\n"
-msgstr ""
+msgstr "Tastați «exit» pentru a reveni la Lynx.\n"
 
 #. #define SPAWNING_MSG
 #: LYMessages.c:256
 msgid "Spawning your default shell.  Use 'exit' to return to Lynx.\n"
-msgstr ""
+msgstr "Se lansează shell-ul implicit.  Folosiți «exit» pentru a reveni la Lynx.\n"
 
 #: LYMessages.c:259
 msgid "Spawning is currently disabled."
-msgstr ""
+msgstr "Lansarea programelor externe este dezactivată."
 
 #: LYMessages.c:260
 msgid "The 'd'ownload command is currently disabled."
-msgstr ""
+msgstr "Comanda „d”escarcă este în prezent dezactivată."
 
 #: LYMessages.c:261
 msgid "You cannot download an input field."
-msgstr ""
+msgstr "Nu puteți descărca un câmp de intrare."
 
 #: LYMessages.c:262
 msgid "Form has a mailto action!  Cannot download."
-msgstr ""
+msgstr "Formularul are o acțiune „mailto”!  Nu se poate descărca."
 
 #: LYMessages.c:263
 msgid "You cannot download a mailto: link."
-msgstr ""
+msgstr "Nu puteți descărca o legătură „mailto:”."
 
 #: LYMessages.c:264
 msgid "You cannot download cookies."
-msgstr ""
+msgstr "Nu puteți descărca cookie-urile."
 
 #: LYMessages.c:265
 msgid "You cannot download a printing option."
-msgstr ""
+msgstr "Nu puteți descărca o opțiune de imprimare."
 
 #: LYMessages.c:266
 msgid "You cannot download an upload option."
-msgstr ""
+msgstr "Nu puteți descărca o opțiune de încărcare."
 
 #: LYMessages.c:267
 msgid "You cannot download an permit option."
-msgstr ""
+msgstr "Nu puteți descărca o opțiune de permisiune."
 
 #: LYMessages.c:268
 msgid "This special URL cannot be downloaded!"
-msgstr ""
+msgstr "Această adresă URL specială nu poate fi descărcată!"
 
 #: LYMessages.c:269
 msgid "Nothing to download."
-msgstr ""
+msgstr "Nu este nimic de descărcat."
 
 #: LYMessages.c:270
 msgid "Trace ON!"
-msgstr ""
+msgstr "Urmărirea ACTIVATĂ!"
 
 #: LYMessages.c:271
 msgid "Trace OFF!"
-msgstr ""
+msgstr "Urmărirea DEZACTIVATĂ!"
 
 #. #define CLICKABLE_IMAGES_ON
 #: LYMessages.c:273
 msgid "Links will be included for all images!  Reloading..."
-msgstr ""
+msgstr "Legăturile vor fi incluse pentru toate imaginile!  Se reîncarcă..."
 
 #. #define CLICKABLE_IMAGES_OFF
 #: LYMessages.c:275
 msgid "Standard image handling restored!  Reloading..."
-msgstr ""
+msgstr "Gestionarea standard a imaginii restaurată!  Se reîncarcă..."
 
 #. #define PSEUDO_INLINE_ALTS_ON
 #: LYMessages.c:277
 msgid "Pseudo_ALTs will be inserted for inlines without ALT strings!  Reloading..."
-msgstr ""
+msgstr "Pseudo_ALT-urile vor fi inserate pentru imagini fără șiruri ALT (descrierea imaginii)!  Se reîncarcă..."
 
 #. #define PSEUDO_INLINE_ALTS_OFF
 #: LYMessages.c:279
 msgid "Inlines without an ALT string specified will be ignored!  Reloading..."
-msgstr ""
+msgstr "Imaginile fără un șir ALT (de descriere a imaginii) specificat vor fi ignorate!  Se reîncarcă..."
 
 #: LYMessages.c:280
 msgid "Raw 8-bit or CJK mode toggled OFF!  Reloading..."
-msgstr ""
+msgstr "Modul brut pe 8 biți sau CJK a fost dezactivat!  Se reîncarcă..."
 
 #: LYMessages.c:281
 msgid "Raw 8-bit or CJK mode toggled ON!  Reloading..."
-msgstr ""
+msgstr "Modul brut pe 8 biți sau CJK a fost activat!  Se reîncarcă..."
 
 #. #define HEAD_D_L_OR_CANCEL
 #: LYMessages.c:283
 msgid "Send HEAD request for D)ocument or L)ink, or C)ancel? (d,l,c): "
-msgstr ""
+msgstr "Trimiteți o cerere HEAD pentru D)ocument sau L)egătură, sau C) Anulați acțiunea? (d,l,c): "
 
 #. #define HEAD_D_OR_CANCEL
 #: LYMessages.c:285
 msgid "Send HEAD request for D)ocument, or C)ancel? (d,c): "
-msgstr ""
+msgstr "Trimiteți o cerere HEAD pentru D)ocument sau C) Anulați acțiunea? (d,c): "
 
 #: LYMessages.c:286
 msgid "Sorry, the document is not an http URL."
-msgstr ""
+msgstr "Scuze, documentul nu este o adresă URL http."
 
 #: LYMessages.c:287
 msgid "Sorry, the link is not an http URL."
-msgstr ""
+msgstr "Scuze, legătura nu este o adresă URL http."
 
 #: LYMessages.c:288
 msgid "Sorry, the ACTION for this form is disabled."
-msgstr ""
+msgstr "Scuze, ACȚIUNEA pentru acest formular este dezactivată."
 
 #. #define FORM_ACTION_NOT_HTTP_URL
 #: LYMessages.c:290
 msgid "Sorry, the ACTION for this form is not an http URL."
-msgstr ""
+msgstr "Scuze, ACȚIUNEA pentru acest formular nu este o adresă URL http."
 
 #: LYMessages.c:291
 msgid "Not an http URL or form ACTION!"
-msgstr ""
+msgstr "Nu este o adresă URL http sau un formular ACȚIUNE!"
 
 #: LYMessages.c:292
 msgid "This special URL cannot be a form ACTION!"
-msgstr ""
+msgstr "Această adresă URL specială nu poate fi un formular ACȚIUNE!"
 
 #: LYMessages.c:293
 msgid "URL is not in starting realm!"
-msgstr ""
+msgstr "Adresa URL nu este în domeniul inițial!"
 
 #: LYMessages.c:294
 msgid "News posting is disabled!"
-msgstr ""
+msgstr "Publicarea știrilor este dezactivată!"
 
 #: LYMessages.c:295
 msgid "File management support is disabled!"
-msgstr ""
+msgstr "Suportul pentru gestionarea fișierelor este dezactivat!"
 
 #: LYMessages.c:296
 msgid "No jump file is currently available."
-msgstr ""
+msgstr "În prezent nu este disponibil niciun fișier de comenzi rapide."
 
 #: LYMessages.c:297
 msgid "Jump to (use '?' for list): "
-msgstr ""
+msgstr "Salt la (utilizați „?” pentru listă): "
 
 #: LYMessages.c:298
 msgid "Jumping to a shortcut URL is disallowed!"
-msgstr ""
+msgstr "Accesul la o comandă rapidă URL este dezactivat!"
 
 #: LYMessages.c:299
 msgid "Random URL is disallowed!  Use a shortcut."
-msgstr ""
+msgstr "Accesul aleator la un URL este dezactivat!  Utilizați o comandă rapidă."
 
 #: LYMessages.c:300
 msgid "No random URLs have been used thus far."
-msgstr ""
+msgstr "Până în prezent, nu au fost folosite URL-uri aleatorii."
 
 #: LYMessages.c:301
 msgid "Bookmark features are currently disabled."
-msgstr ""
+msgstr "Caracteristicile de marcare-pagini-favorite sunt în prezent dezactivate."
 
 #: LYMessages.c:302
 msgid "Execution via bookmarks is disabled."
-msgstr ""
+msgstr "Executarea prin intermediul marcajelor de pagini-favorite este dezactivată."
 
 #. #define BOOKMARK_FILE_NOT_DEFINED
 #: LYMessages.c:304
 #, c-format
 msgid "Bookmark file is not defined. Use %s to see options."
-msgstr ""
+msgstr "Fișierul de marcaje nu este definit. Utilizați %s pentru a vedea opțiunile."
 
 #. #define NO_TEMP_FOR_HOTLIST
 #: LYMessages.c:306
 msgid "Unable to open tempfile for X Mosaic hotlist conversion."
-msgstr ""
+msgstr "Nu se poate deschide fișierul temporar pentru conversia listei de pagini favorite a X Mosaic."
 
 #: LYMessages.c:307
 msgid "ERROR - unable to open bookmark file."
-msgstr ""
+msgstr "EROARE - nu se poate deschide fișierul de marcaje."
 
 #. #define BOOKMARK_OPEN_FAILED_FOR_DEL
 #: LYMessages.c:309
 msgid "Unable to open bookmark file for deletion of link."
-msgstr ""
+msgstr "Nu se poate deschide fișierul de marcaje pentru ștergerea legăturii."
 
 #. #define BOOKSCRA_OPEN_FAILED_FOR_DEL
 #: LYMessages.c:311
 msgid "Unable to open scratch file for deletion of link."
-msgstr ""
+msgstr "Nu se poate deschide fișierul de lucru pentru a elimina o legătură."
 
 #: LYMessages.c:313
 msgid "Error renaming scratch file."
-msgstr ""
+msgstr "Eroare la redenumirea fișierului de lucru."
 
 #: LYMessages.c:315
 msgid "Error renaming temporary file."
-msgstr ""
+msgstr "Eroare la redenumirea fișierului temporar."
 
 #. #define BOOKTEMP_COPY_FAIL
 #: LYMessages.c:317
 msgid "Unable to copy temporary file for deletion of link."
-msgstr ""
+msgstr "Nu se poate copia fișierul temporar pentru ștergerea legăturii."
 
 #. #define BOOKTEMP_REOPEN_FAIL_FOR_DEL
 #: LYMessages.c:319
 msgid "Unable to reopen temporary file for deletion of link."
-msgstr ""
+msgstr "Nu se poate redeschide fișierul temporar pentru ștergerea legăturii."
 
 #. #define BOOKMARK_LINK_NOT_ONE_LINE
 #: LYMessages.c:322
 msgid "Link is not by itself all on one line in bookmark file."
-msgstr ""
+msgstr "Legătura nu se află singură pe o singură linie în fișierul de marcaje."
 
 #: LYMessages.c:323
 msgid "Bookmark deletion failed."
-msgstr ""
+msgstr "Ștergerea marcajului a eșuat."
 
 #. #define BOOKMARKS_NOT_TRAVERSED
 #: LYMessages.c:325
 msgid "Bookmark files cannot be traversed (only http URLs)."
-msgstr ""
+msgstr "Fișierele de marcaje nu pot fi parcurse (doar adresele URL http)."
 
 #. #define BOOKMARKS_NOT_OPEN
 #: LYMessages.c:327
 msgid "Unable to open bookmark file, use 'a' to save a link first"
-msgstr ""
+msgstr "Nu se poate deschide fișierul de marcaje, utilizați „a” pentru a salva mai întâi o legătură"
 
 #: LYMessages.c:328
 msgid "There are no links in this bookmark file!"
-msgstr ""
+msgstr "Nu există legături în acest fișier de marcaje!"
 
 #. #define CACHE_D_OR_CANCEL
 #: LYMessages.c:330
 msgid "D)elete cached document or C)ancel? (d,c): "
-msgstr ""
+msgstr "Ștergeți(D) documentul din zona de prestocare a memoriei sau C) Anulați acțiunea? (d,c): "
 
 #. #define BOOK_D_L_OR_CANCEL
 #: LYMessages.c:332
 msgid "Save D)ocument or L)ink to bookmark file or C)ancel? (d,l,c): "
-msgstr ""
+msgstr "Salvați D)ocumentul sau L)egătura în fișierul de marcaje sau C) Anulați acțiunea? (d,l,c): "
 
 #: LYMessages.c:333
 msgid "Save D)ocument to bookmark file or C)ancel? (d,c): "
-msgstr ""
+msgstr "Salvați D)ocumentul în fișierul de marcaje sau C) Anulați acțiunea? (d,c): "
 
 #: LYMessages.c:334
 msgid "Save L)ink to bookmark file or C)ancel? (l,c): "
-msgstr ""
+msgstr "Salvați L)egătura în fișierul de marcaje sau C) Anulați acțiunea? (l,c): "
 
 #. #define NOBOOK_POST_FORM
 #: LYMessages.c:336
 msgid "Documents from forms with POST content cannot be saved as bookmarks."
-msgstr ""
+msgstr "Documentele din formulare cu conținut POST nu pot fi salvate ca marcaje."
 
 #: LYMessages.c:337
 msgid "Cannot save form fields/links"
-msgstr ""
+msgstr "Nu se pot salva câmpurile/legăturile din formular"
 
 #. #define NOBOOK_HSML
 #: LYMessages.c:339
 msgid "History, showinfo, menu and list files cannot be saved as bookmarks."
-msgstr ""
+msgstr "Istoricul, informațiile afișate, meniul și lista de fișiere; nu pot fi salvate ca marcaje."
 
 #. #define CONFIRM_BOOKMARK_DELETE
 #: LYMessages.c:341
 msgid "Do you really want to delete this link from your bookmark file?"
-msgstr ""
+msgstr "Doriți cu adevărat să ștergeți această legătură din fișierul dvs. de marcaje?"
 
 #: LYMessages.c:342
 msgid "Malformed address."
-msgstr ""
+msgstr "Adresă nevalidă."
 
 #. #define HISTORICAL_ON_MINIMAL_OFF
 #: LYMessages.c:344
 msgid "Historical comment parsing ON (Minimal is overridden)!"
-msgstr ""
+msgstr "Analizarea istoricului comentariilor este ACTIVATĂ (analiza minimală este suprascrisă)!"
 
 #. #define HISTORICAL_OFF_MINIMAL_ON
 #: LYMessages.c:346
 msgid "Historical comment parsing OFF (Minimal is in effect)!"
-msgstr ""
+msgstr "Analizarea istoricului comentariilor este DEZACTIVATĂ (analiza minimală este în vigoare)!"
 
 #. #define HISTORICAL_ON_VALID_OFF
 #: LYMessages.c:348
 msgid "Historical comment parsing ON (Valid is overridden)!"
-msgstr ""
+msgstr "Analizarea istoricului comentariilor este ACTIVATĂ (analiza de validare este suprascrisă)!"
 
 #. #define HISTORICAL_OFF_VALID_ON
 #: LYMessages.c:350
 msgid "Historical comment parsing OFF (Valid is in effect)!"
-msgstr ""
+msgstr "Analizarea istoricului comentariilor este DEZACTIVATĂ (analiza de validare este în vigoareă)!"
 
 #. #define MINIMAL_ON_IN_EFFECT
 #: LYMessages.c:352
 msgid "Minimal comment parsing ON (and in effect)!"
-msgstr ""
+msgstr "Analizarea minimală a comentariilor este ACTIVATĂ (și în vigoare)!"
 
 #. #define MINIMAL_OFF_VALID_ON
 #: LYMessages.c:354
 msgid "Minimal comment parsing OFF (Valid is in effect)!"
-msgstr ""
+msgstr "Analizarea minimală a comentariilor este DEZACTIVATĂ (analiza de validare este în vigoare)!"
 
 #. #define MINIMAL_ON_BUT_HISTORICAL
 #: LYMessages.c:356
 msgid "Minimal comment parsing ON (but Historical is in effect)!"
-msgstr ""
+msgstr "Analizarea minimală a comentariilor este ACTIVATĂ (dar analiza istoricului este în vigoare)!"
 
 #. #define MINIMAL_OFF_HISTORICAL_ON
 #: LYMessages.c:358
 msgid "Minimal comment parsing OFF (Historical is in effect)!"
-msgstr ""
+msgstr "Analizarea minimală a comentariilor este DEZACTIVATĂ (analiza istoricului este în vigoare)!"
 
 #: LYMessages.c:359
 msgid "Soft double-quote parsing ON!"
-msgstr ""
+msgstr "Analizarea simplă a ghilimelelor duble este ACTIVATĂ!"
 
 #: LYMessages.c:360
 msgid "Soft double-quote parsing OFF!"
-msgstr ""
+msgstr "Analizarea simplă a ghilimelelor duble este DEZACTIVATĂ!"
 
 #: LYMessages.c:361
 msgid "Now using TagSoup parsing of HTML."
-msgstr ""
+msgstr "Se utilizează metoda „TagSoup” de analizare a HTML."
 
 #: LYMessages.c:362
 msgid "Now using SortaSGML parsing of HTML!"
-msgstr ""
+msgstr "Se utilizează metoda „SortaSGML” de analizare a HTML!"
 
 #: LYMessages.c:363
 msgid "You are already at the end of this document."
@@ -993,1121 +1001,1121 @@ msgstr "Sunteți deja la începutul acestui document."
 #: LYMessages.c:365
 #, c-format
 msgid "You are already at page %d of this document."
-msgstr ""
+msgstr "Sunteți deja la pagina %d din acest document."
 
 #: LYMessages.c:366
 #, c-format
 msgid "Link number %d already is current."
-msgstr ""
+msgstr "Legătura numărul %d este deja legătura activă."
 
 #: LYMessages.c:367
 msgid "You are already at the first document"
-msgstr ""
+msgstr "Sunteți deja la primul document"
 
 #: LYMessages.c:368
 msgid "There are no links above this line of the document."
-msgstr ""
+msgstr "Nu există nicio legătură deasupra acestei linii a documentului."
 
 #: LYMessages.c:369
 msgid "There are no links below this line of the document."
-msgstr ""
+msgstr "Nu există nicio legătură sub această linie a documentului."
 
 #. #define MAXLEN_REACHED_DEL_OR_MOV
 #: LYMessages.c:371
 msgid "Maximum length reached!  Delete text or move off field."
-msgstr ""
+msgstr "Lungimea maximă a fost atinsă!  Ștergeți textul sau mutați-l în afara câmpului."
 
 #. #define NOT_ON_SUBMIT_OR_LINK
 #: LYMessages.c:373
 msgid "You are not on a form submission button or normal link."
-msgstr ""
+msgstr "Nu sunteți pe un buton de trimitere a unui formular sau pe o legătură normală."
 
 #. #define NEED_CHECKED_RADIO_BUTTON
 #: LYMessages.c:375
 msgid "One radio button must be checked at all times!"
-msgstr ""
+msgstr "Un singur buton radio trebuie să fie marcat în permanență!"
 
 #: LYMessages.c:376
 msgid "No submit button for this form, submit single text field?"
-msgstr ""
+msgstr "Nu există buton de trimitere pentru acest formular, trimiteți un singur câmp de text?"
 
 #: LYMessages.c:377
 msgid "Do you want to go back to the previous document?"
-msgstr ""
+msgstr "Doriți să vă întoarceți la documentul anterior?"
 
 #: LYMessages.c:378
 msgid "Use arrows or tab to move off of field."
-msgstr ""
+msgstr "Folosiți săgețile sau tabulatorul pentru a vă deplasa în afara câmpului."
 
 #. #define ENTER_TEXT_ARROWS_OR_TAB
 #: LYMessages.c:380
 msgid "Enter text.  Use arrows or tab to move off of field."
-msgstr ""
+msgstr "Introduceți textul.  Folosiți săgețile sau tabulatorul pentru a vă deplasa în afara câmpului."
 
 #: LYMessages.c:381
 msgid "** Bad HTML!!  No form action defined. **"
-msgstr ""
+msgstr "** Cod HTML incorect!  Nu este definită nicio acțiune de formular. **"
 
 #: LYMessages.c:382
 msgid "Bad HTML!!  Unable to create popup window!"
-msgstr ""
+msgstr "Cod HTML incorect!  Nu se poate crea fereastra emergentă!"
 
 #: LYMessages.c:383
 msgid "Unable to create popup window!"
-msgstr ""
+msgstr "Nu se poate crea fereastra emergentă!"
 
 #: LYMessages.c:384
 msgid "Goto a random URL is disallowed!"
-msgstr ""
+msgstr "Accesarea unei adrese URL aleatorii este interzisă!"
 
 #: LYMessages.c:385
 msgid "Goto a non-http URL is disallowed!"
-msgstr ""
+msgstr "Accesarea unei adrese URL ce nu este http, este interzisă!"
 
 #: LYMessages.c:386
 #, c-format
 msgid "You are not allowed to goto \"%s\" URLs"
-msgstr ""
+msgstr "Nu aveți voie să accesați adresele URL „%s”."
 
 #: LYMessages.c:387
 msgid "URL to open: "
-msgstr ""
+msgstr "Adresa URL de deschis: "
 
 #: LYMessages.c:388
 msgid "Edit the current Goto URL: "
-msgstr ""
+msgstr "Editați adresa URL „Du-te la” curentă: "
 
 #: LYMessages.c:389
 msgid "Edit the previous Goto URL: "
-msgstr ""
+msgstr "Editați adresa URL „Du-te la” anterioară: "
 
 #: LYMessages.c:390
 msgid "Edit a previous Goto URL: "
-msgstr ""
+msgstr "Editați o adresă URL „Du-te la” anterioară: "
 
 #: LYMessages.c:391
 msgid "Current document has POST data."
-msgstr ""
+msgstr "Documentul curent conține date POST."
 
 #: LYMessages.c:392
 msgid "Edit this document's URL: "
-msgstr ""
+msgstr "Editați adresa URL a acestui document: "
 
 #: LYMessages.c:393
 msgid "Edit the current link's URL: "
-msgstr ""
+msgstr "Editați adresa URL a legăturii curente: "
 
 #: LYMessages.c:394
 msgid "Edit the form's submit-URL: "
-msgstr ""
+msgstr "Editați adresa de trimitere a formularului: "
 
 #: LYMessages.c:395
 msgid "You cannot edit File Management URLs"
-msgstr ""
+msgstr "Nu puteți edita adresele URL de gestionare a fișierelor"
 
 #: LYMessages.c:396
 msgid "Enter a database query: "
-msgstr ""
+msgstr "Introduceți o consultare a bazei de date: "
 
 #: LYMessages.c:397
 msgid "Enter a whereis query: "
-msgstr ""
+msgstr "Introduceți o consultare de căutare: "
 
 #: LYMessages.c:398
 msgid "Edit the current query: "
-msgstr ""
+msgstr "Editați consultarea curentă: "
 
 #: LYMessages.c:399
 msgid "Edit the previous query: "
-msgstr ""
+msgstr "Editați consultarea precedentă: "
 
 #: LYMessages.c:400
 msgid "Edit a previous query: "
-msgstr ""
+msgstr "Editați o consultare precedentă: "
 
 #. #define USE_C_R_TO_RESUB_CUR_QUERY
 #: LYMessages.c:402
 msgid "Use Control-R to resubmit the current query."
-msgstr ""
+msgstr "Utilizați «Control-R» pentru a retrimite consultarea curentă."
 
 #: LYMessages.c:403
 msgid "Edit the current shortcut: "
-msgstr ""
+msgstr "Editați comanda rapidă curentă: "
 
 #: LYMessages.c:404
 msgid "Edit the previous shortcut: "
-msgstr ""
+msgstr "Editați comanda rapidă precedentă: "
 
 #: LYMessages.c:405
 msgid "Edit a previous shortcut: "
-msgstr ""
+msgstr "Editați o comandă rapidă precedentă: "
 
 #: LYMessages.c:406
 #, c-format
 msgid "Key '%c' is not mapped to a jump file!"
-msgstr ""
+msgstr "Tasta „%c” nu este atribuită unui fișier de comenzi rapide!"
 
 #: LYMessages.c:407
 msgid "Cannot locate jump file!"
-msgstr ""
+msgstr "Nu se poate localiza fișierul de comenzi rapide!"
 
 #: LYMessages.c:408
 msgid "Cannot open jump file!"
-msgstr ""
+msgstr "Nu se poate deschide fișierul de comenzi rapide!"
 
 #: LYMessages.c:409
 msgid "Error reading jump file!"
-msgstr ""
+msgstr "Eroare la citirea fișierului de comenzi rapide!"
 
 #: LYMessages.c:410
 msgid "Out of memory reading jump file!"
-msgstr ""
+msgstr "Memorie insuficientă pentru citirea fișierului de comenzi rapide!"
 
 #: LYMessages.c:411
 msgid "Out of memory reading jump table!"
-msgstr ""
+msgstr "Memorie insuficientă pentru citirea tabelului de comenzi rapide!"
 
 #: LYMessages.c:412
 msgid "No index is currently available."
-msgstr ""
+msgstr "În prezent nu este disponibil niciun index."
 
 #. #define CONFIRM_MAIN_SCREEN
 #: LYMessages.c:414
 msgid "Do you really want to go to the Main screen?"
-msgstr ""
+msgstr "Chiar doriți să treceți la ecranul principal?"
 
 #: LYMessages.c:415
 msgid "You are already at main screen!"
-msgstr ""
+msgstr "Sunteți deja la ecranul principal!"
 
 #. #define NOT_ISINDEX
 #: LYMessages.c:417
 msgid "Not a searchable indexed document -- press '/' to search for a text string"
-msgstr ""
+msgstr "Nu este un document indexat pentru căutare -- apăsați „/” pentru a căuta un șir de text"
 
 #. #define NO_OWNER
 #: LYMessages.c:419
 msgid "No owner is defined for this file so you cannot send a comment"
-msgstr ""
+msgstr "Nu este definit niciun proprietar pentru acest fișier, deci nu puteți trimite un comentariu"
 
 #: LYMessages.c:420
 #, c-format
 msgid "No owner is defined. Use %s?"
-msgstr ""
+msgstr "Nu este definit niciun proprietar. Folosiți %s?"
 
 #: LYMessages.c:421
 msgid "Do you wish to send a comment?"
-msgstr ""
+msgstr "Doriți să trimiteți un comentariu?"
 
 #: LYMessages.c:422
 msgid "Mail is disallowed so you cannot send a comment"
-msgstr ""
+msgstr "Serviciul de poștă electronică nu este disponibil, deci nu puteți trimite un comentariu"
 
 #: LYMessages.c:423
 msgid "The 'e'dit command is currently disabled."
-msgstr ""
+msgstr "Comanda „e”ditare este în prezent dezactivată."
 
 #: LYMessages.c:424
 msgid "External editing is currently disabled."
-msgstr ""
+msgstr "Editarea externă este în prezent dezactivată."
 
 #: LYMessages.c:425
 msgid "System error - failure to get status."
-msgstr ""
+msgstr "Eroare de sistem - eșec la obținerea stării."
 
 #: LYMessages.c:426
 msgid "No editor is defined!"
-msgstr ""
+msgstr "Nu este definit niciun editor!"
 
 #: LYMessages.c:427
 msgid "The 'p'rint command is currently disabled."
-msgstr ""
+msgstr "Comanda de im„p”rimare este în prezent dezactivată."
 
 #: LYMessages.c:428
 msgid "Document has no Toolbar links or Banner."
-msgstr ""
+msgstr "Documentul nu are legături în bara de instrumente sau antet."
 
 #: LYMessages.c:429
 msgid "Unable to open traversal file."
-msgstr ""
+msgstr "Nu se poate deschide fișierul de adrese URL vizitate."
 
 #: LYMessages.c:430
 msgid "Unable to open traversal found file."
-msgstr ""
+msgstr "Nu se poate deschide fișierul găsit de adrese URL vizitate."
 
 #: LYMessages.c:431
 msgid "Unable to open reject file."
-msgstr ""
+msgstr "Nu se poate deschide fișierul de adrese URL respinse."
 
 #: LYMessages.c:432
 msgid "Unable to open traversal errors output file"
-msgstr ""
+msgstr "Nu se poate deschide fișierul cu erorile de accesare a adreselor URL."
 
 #: LYMessages.c:433
 msgid "TRAVERSAL WAS INTERRUPTED"
-msgstr ""
+msgstr "PARCURGEREA ADRESELOR URL A FOST ÎNTRERUPTĂ"
 
 #: LYMessages.c:434
 msgid "Follow link (or goto link or page) number: "
-msgstr ""
+msgstr "Urmăriți legătura (sau accesați legătura sau pagina) cu numărul: "
 
 #: LYMessages.c:435
 msgid "Select option (or page) number: "
-msgstr ""
+msgstr "Selectați opțiunea (sau pagina) cu numărul: "
 
 #: LYMessages.c:436
 #, c-format
 msgid "Option number %d already is current."
-msgstr ""
+msgstr "Opțiunea numărul %d este deja cea curentă."
 
 #. #define ALREADY_AT_OPTION_END
 #: LYMessages.c:438
 msgid "You are already at the end of this option list."
-msgstr ""
+msgstr "Sunteți deja la sfârșitul acestei liste de opțiuni."
 
 #. #define ALREADY_AT_OPTION_BEGIN
 #: LYMessages.c:440
 msgid "You are already at the beginning of this option list."
-msgstr ""
+msgstr "Sunteți deja la începutul acestei liste de opțiuni."
 
 #. #define ALREADY_AT_OPTION_PAGE
 #: LYMessages.c:442
 #, c-format
 msgid "You are already at page %d of this option list."
-msgstr ""
+msgstr "Sunteți deja la pagina %d din această listă de opțiuni."
 
 #: LYMessages.c:443
 msgid "You have entered an invalid option number."
-msgstr ""
+msgstr "Ați introdus un număr de opțiune nevalid."
 
 #: LYMessages.c:444
 msgid "** Bad HTML!!  Use -trace to diagnose. **"
-msgstr ""
+msgstr "** Cod HTML incorect!  Utilizați opțiunea „-trace” pentru diagnosticare. **"
 
 #: LYMessages.c:445
 msgid "Give name of file to save in"
-msgstr ""
+msgstr "Dați numele fișierului în care se salvează"
 
 #: LYMessages.c:446
 msgid "Can't save data to file -- please run WWW locally"
-msgstr ""
+msgstr "Nu se pot salva datele în fișier -- rulați WWW local"
 
 #: LYMessages.c:447
 msgid "Can't open temporary file!"
-msgstr ""
+msgstr "Nu se poate deschide fișierul temporar!"
 
 #: LYMessages.c:448
 msgid "Can't open output file!  Cancelling!"
-msgstr ""
+msgstr "Nu se poate deschide fișierul de ieșire!  Se renunță!"
 
 #: LYMessages.c:449
 msgid "Execution is disabled."
-msgstr ""
+msgstr "Executarea este dezactivată."
 
 #. #define EXECUTION_DISABLED_FOR_FILE
 #: LYMessages.c:451
 #, c-format
 msgid "Execution is not enabled for this file.  See the Options menu (use %s)."
-msgstr ""
+msgstr "Executarea nu este activată pentru acest fișier.  Consultați meniul Opțiuni (utilizați %s)."
 
 #. #define EXECUTION_NOT_COMPILED
 #: LYMessages.c:453
 msgid "Execution capabilities are not compiled into this version."
-msgstr ""
+msgstr "Capacitățile de execuție nu sunt compilate în această versiune."
 
 #: LYMessages.c:454
 msgid "This file cannot be displayed on this terminal."
-msgstr ""
+msgstr "Acest fișier nu poate fi afișat în acest terminal."
 
 #. #define CANNOT_DISPLAY_FILE_D_OR_C
 #: LYMessages.c:456
 msgid "This file cannot be displayed on this terminal:  D)ownload, or C)ancel"
-msgstr ""
+msgstr "Acest fișier nu poate fi afișat în acest terminal:  îl D)escărcați, sau C) Anulați acțiunea"
 
 #: LYMessages.c:457
 #, c-format
 msgid "%s  D)ownload, or C)ancel"
-msgstr ""
+msgstr "%s  D)escărcați, sau C) Anulați acțiunea"
 
 #: LYMessages.c:458
 msgid "Cancelling file."
-msgstr ""
+msgstr "Se anulează..."
 
 #: LYMessages.c:459
 msgid "Retrieving file.  - PLEASE WAIT -"
-msgstr ""
+msgstr "Se descarcă fișierul.  - VĂ RUGĂM SĂ AȘTEPTAȚI -"
 
 #: LYMessages.c:460
 msgid "Enter a filename: "
-msgstr ""
+msgstr "Introduceți un nume de fișier: "
 
 #: LYMessages.c:461
 msgid "Edit the previous filename: "
-msgstr ""
+msgstr "Editați numele de fișier anterior: "
 
 #: LYMessages.c:462
 msgid "Edit a previous filename: "
-msgstr ""
+msgstr "Editați numele unui fișier anterior: "
 
 #: LYMessages.c:463
 msgid "Enter a new filename: "
-msgstr ""
+msgstr "Introduceți un nou nume de fișier: "
 
 #: LYMessages.c:464
 msgid "File name may not begin with a dot."
-msgstr ""
+msgstr "Numele fișierului nu poate începe cu un punct."
 
 #: LYMessages.c:466
 msgid "File exists.  Create higher version?"
-msgstr ""
+msgstr "Fișierul există.  Creați o nouă versiune a acestuia?"
 
 #: LYMessages.c:468
 msgid "File exists.  Overwrite?"
-msgstr ""
+msgstr "Fișierul există.  Se suprascrie?"
 
 #: LYMessages.c:470
 msgid "Cannot write to file."
-msgstr ""
+msgstr "Nu se poate scrie în fișier."
 
 #: LYMessages.c:471
 msgid "ERROR! - download command is misconfigured."
-msgstr ""
+msgstr "EROARE! - comanda de descărcare este configurată greșit."
 
 #: LYMessages.c:472
 msgid "Unable to download file."
-msgstr ""
+msgstr "Nu se poate descărca fișierul."
 
 #: LYMessages.c:473
 msgid "Reading directory..."
-msgstr ""
+msgstr "Se citește directorul..."
 
 #: LYMessages.c:474
 msgid "Building directory listing..."
-msgstr ""
+msgstr "Se construiește lista cu fișierele directorului..."
 
 #: LYMessages.c:475
 msgid "Saving..."
-msgstr ""
+msgstr "Se salvează..."
 
 #: LYMessages.c:476
 #, c-format
 msgid "Could not edit file '%s'."
-msgstr ""
+msgstr "Nu s-a putut edita fișierul „%s”."
 
 #: LYMessages.c:477
 msgid "Unable to access document!"
-msgstr ""
+msgstr "Nu se poate accesa documentul!"
 
 #: LYMessages.c:478
 msgid "Could not access file."
-msgstr ""
+msgstr "Nu s-a putut accesa fișierul."
 
 #: LYMessages.c:479
 msgid "Could not access directory."
-msgstr ""
+msgstr "Nu s-a putut accesa directorul."
 
 #: LYMessages.c:480
 msgid "Could not load data."
-msgstr ""
+msgstr "Nu s-au putut încărca datele."
 
 #. #define CANNOT_EDIT_REMOTE_FILES
 #: LYMessages.c:482
 msgid "Lynx cannot currently (e)dit remote WWW files."
-msgstr ""
+msgstr "În prezent, Lynx nu poate să (e)diteze fișiere WWW la distanță."
 
 #. #define CANNOT_EDIT_FIELD
 #: LYMessages.c:484
 msgid "This field cannot be (e)dited with an external editor."
-msgstr ""
+msgstr "Acest câmp nu poate fi (e)ditat cu un editor extern."
 
 #: LYMessages.c:485
 msgid "Bad rule"
-msgstr ""
+msgstr "Regulă incorectă"
 
 #: LYMessages.c:486
 msgid "Insufficient operands:"
-msgstr ""
+msgstr "Operanzi insuficienți:"
 
 #: LYMessages.c:487
 msgid "You are not authorized to edit this file."
-msgstr ""
+msgstr "Nu sunteți autorizat să editați acest fișier."
 
 #: LYMessages.c:488
 msgid "Title: "
-msgstr ""
+msgstr "Titlu: "
 
 #: LYMessages.c:489
 msgid "Subject: "
-msgstr ""
+msgstr "Subiect: "
 
 #: LYMessages.c:490
 msgid "Username: "
-msgstr ""
+msgstr "Numele utilizatorului: "
 
 #: LYMessages.c:491
 msgid "Password: "
-msgstr ""
+msgstr "Parola: "
 
 #: LYMessages.c:492
 msgid "lynx: Username and Password required!!!"
-msgstr ""
+msgstr "lynx: Numele de utilizator și parola sunt necesare!!!"
 
 #: LYMessages.c:493
 msgid "lynx: Password required!!!"
-msgstr ""
+msgstr "lynx: Parola este necesară!!!"
 
 #: LYMessages.c:494
 msgid "Clear all authorization info for this session?"
-msgstr ""
+msgstr "Ștergeți toate informațiile de autorizare pentru această sesiune?"
 
 #: LYMessages.c:495
 msgid "Authorization info cleared."
-msgstr ""
+msgstr "Informațiile de autorizare au fost șterse."
 
 #: LYMessages.c:496
 msgid "Authorization failed.  Retry?"
-msgstr ""
+msgstr "Autorizarea a eșuat.  Reîncercați?"
 
 #: LYMessages.c:497
 msgid "cgi support has been disabled."
-msgstr ""
+msgstr "suportul pentru CGI a fost dezactivat."
 
 #. #define CGI_NOT_COMPILED
 #: LYMessages.c:499
 msgid "Lynxcgi capabilities are not compiled into this version."
-msgstr ""
+msgstr "Capacitățile CGI-Lynx nu sunt compilate în această versiune."
 
 #: LYMessages.c:500
 #, c-format
 msgid "Sorry, no known way of converting %s to %s."
-msgstr ""
+msgstr "Scuze, nu există nicio modalitate cunoscută de a converti %s în %s."
 
 #: LYMessages.c:501
 msgid "Unable to set up connection."
-msgstr ""
+msgstr "Nu se poate stabili conexiunea."
 
 #: LYMessages.c:502
 msgid "Unable to make connection"
-msgstr ""
+msgstr "Nu se poate realiza conexiunea"
 
 #. #define MALFORMED_EXEC_REQUEST
 #: LYMessages.c:504
 msgid "Executable link rejected due to malformed request."
-msgstr ""
+msgstr "Legătura executabilă a fost respinsă din cauza unei solicitări incorecte."
 
 #. #define BADCHAR_IN_EXEC_LINK
 #: LYMessages.c:506
 #, c-format
 msgid "Executable link rejected due to `%c' character."
-msgstr ""
+msgstr "Legătura executabilă a fost respinsă din cauza caracterului „%c”."
 
 #. #define RELPATH_IN_EXEC_LINK
 #: LYMessages.c:508
 msgid "Executable link rejected due to relative path string ('../')."
-msgstr ""
+msgstr "Legătura executabilă a fost respinsă din cauza șirului de rută relativă („../”)."
 
 #. #define BADLOCPATH_IN_EXEC_LINK
 #: LYMessages.c:510
 msgid "Executable link rejected due to location or path."
-msgstr ""
+msgstr "Legătura executabilă a fost respinsă din cauza locației sau a rutei."
 
 #: LYMessages.c:511
 msgid "Mail access is disabled!"
-msgstr ""
+msgstr "Accesul la serviciul de poștă electronică este dezactivat!"
 
 #. #define ACCESS_ONLY_LOCALHOST
 #: LYMessages.c:513
 msgid "Only files and servers on the local host can be accessed."
-msgstr ""
+msgstr "Numai fișierele și serverele de la gazda locală pot fi accesate."
 
 #: LYMessages.c:514
 msgid "Telnet access is disabled!"
-msgstr ""
+msgstr "Accesul Telnet este dezactivat!"
 
 #. #define TELNET_PORT_SPECS_DISABLED
 #: LYMessages.c:516
 msgid "Telnet port specifications are disabled."
-msgstr ""
+msgstr "Specificațiile portului Telnet sunt dezactivate."
 
 #: LYMessages.c:517
 msgid "USENET news access is disabled!"
-msgstr ""
+msgstr "Accesul la știrile USENET este dezactivat!"
 
 #: LYMessages.c:518
 msgid "Rlogin access is disabled!"
-msgstr ""
+msgstr "Accesul Rlogin este dezactivat!"
 
 #: LYMessages.c:519
 msgid "Ftp access is disabled!"
-msgstr ""
+msgstr "Accesul FTP este dezactivat!"
 
 #: LYMessages.c:520
 msgid "There are no references from this document."
-msgstr ""
+msgstr "Nu există referințe în acest document."
 
 #: LYMessages.c:521
 msgid "There are only hidden links from this document."
-msgstr ""
+msgstr "Există doar legături ascunse în acest document."
 
 #: LYMessages.c:523
 msgid "Unable to open command file."
-msgstr ""
+msgstr "Nu se poate deschide fișierul de comandă."
 
 #: LYMessages.c:525
 msgid "News Post Cancelled!!!"
-msgstr ""
+msgstr "Publicarea de știri a fost anulată!!!"
 
 #. #define SPAWNING_EDITOR_FOR_NEWS
 #: LYMessages.c:527
 msgid "Spawning your selected editor to edit news message"
-msgstr ""
+msgstr "Se lansează editorul selectat pentru a edita mesajul de știri"
 
 #: LYMessages.c:528
 msgid "Post this message?"
-msgstr ""
+msgstr "Publicați acest mesaj?"
 
 #: LYMessages.c:529
 #, c-format
 msgid "Append '%s'?"
-msgstr ""
+msgstr "Adăugați „%s”?"
 
 #: LYMessages.c:530
 msgid "Posting to newsgroup(s)..."
-msgstr ""
+msgstr "Se publică în grupurile de știri..."
 
 #: LYMessages.c:532
 msgid "*** You have unread mail. ***"
-msgstr ""
+msgstr "*** Aveți mesaje necitite. ***"
 
 #: LYMessages.c:534
 msgid "*** You have mail. ***"
-msgstr ""
+msgstr "*** Aveți mesaje. ***"
 
 #: LYMessages.c:536
 msgid "*** You have new mail. ***"
-msgstr ""
+msgstr "*** Aveți un mesaj nou. ***"
 
 #: LYMessages.c:537
 msgid "File insert cancelled!!!"
-msgstr ""
+msgstr "Inserarea fișierului a fost anulată!!!"
 
 #: LYMessages.c:538
 msgid "Not enough memory for file!"
-msgstr ""
+msgstr "Nu este suficientă memorie pentru fișier!"
 
 #: LYMessages.c:539
 msgid "Can't open file for reading."
-msgstr ""
+msgstr "Nu se poate deschide fișierul pentru citire."
 
 #: LYMessages.c:540
 msgid "File does not exist."
-msgstr ""
+msgstr "Fișierul nu există."
 
 #: LYMessages.c:541
 msgid "File does not exist - reenter or cancel:"
-msgstr ""
+msgstr "Fișierul nu există - reintroduceți sau anulați:"
 
 #: LYMessages.c:542
 msgid "File is not readable."
-msgstr ""
+msgstr "Fișierul nu se poate citi."
 
 #: LYMessages.c:543
 msgid "File is not readable - reenter or cancel:"
-msgstr ""
+msgstr "Fișierul nu se poate citi - reintroduceți sau anulați:"
 
 #: LYMessages.c:544
 msgid "Nothing to insert - file is 0-length."
-msgstr ""
+msgstr "Nimic de inserat - fișierul are lungimea 0."
 
 #: LYMessages.c:545
 msgid "Save request cancelled!!!"
-msgstr ""
+msgstr "Cererea de salvare a fost anulată!!!"
 
 #: LYMessages.c:546
 msgid "Mail request cancelled!!!"
-msgstr ""
+msgstr "Cererea de corespondență a fost anulată!!!"
 
 #. #define CONFIRM_MAIL_SOURCE_PREPARSED
 #: LYMessages.c:548
 msgid "Viewing preparsed source.  Are you sure you want to mail it?"
-msgstr ""
+msgstr "Este afișat textul sursă pre-procesat.  Sunteți sigur că doriți să îl trimiteți prin poșta electronică?"
 
 #: LYMessages.c:549
 msgid "Please wait..."
-msgstr ""
+msgstr "Vă rugăm, așteptați..."
 
 #: LYMessages.c:550
 msgid "Mailing file.  Please wait..."
-msgstr ""
+msgstr "Se trimite fișierul.  Vă rugăm să așteptați..."
 
 #: LYMessages.c:551
 msgid "ERROR - Unable to mail file"
-msgstr ""
+msgstr "EROARE - Nu se poate trimite fișierul"
 
 #. #define CONFIRM_LONG_SCREEN_PRINT
 #: LYMessages.c:553
 #, c-format
 msgid "File is %d screens long.  Are you sure you want to print?"
-msgstr ""
+msgstr "Fișierul are o lungime de %d ecrane.  Sunteți sigur că doriți să-l imprimați?"
 
 #: LYMessages.c:554
 msgid "Print request cancelled!!!"
-msgstr ""
+msgstr "Cererea de imprimare a fost anulată!!!"
 
 #: LYMessages.c:555
 msgid "Press <return> to begin: "
-msgstr ""
+msgstr "Apăsați <Enter> pentru a începe: "
 
 #: LYMessages.c:556
 msgid "Press <return> to finish: "
-msgstr ""
+msgstr "Apăsați <Enter> pentru a termina: "
 
 #. #define CONFIRM_LONG_PAGE_PRINT
 #: LYMessages.c:558
 #, c-format
 msgid "File is %d pages long.  Are you sure you want to print?"
-msgstr ""
+msgstr "Fișierul are o lungime de %d pagini.  Sunteți sigur că doriți să-l imprimați?"
 
 #. #define CHECK_PRINTER
 #: LYMessages.c:560
 msgid "Be sure your printer is on-line.  Press <return> to start printing:"
-msgstr ""
+msgstr "Asigurați-vă că imprimanta este conectată.  Apăsați <Enter> pentru a începe imprimarea:"
 
 #: LYMessages.c:561
 msgid "ERROR - Unable to allocate file space!!!"
-msgstr ""
+msgstr "EROARE - Nu se poate aloca spațiu pentru fișier!!!"
 
 #: LYMessages.c:562
 msgid "Unable to open tempfile"
-msgstr ""
+msgstr "Nu se poate deschide fișierul temporar"
 
 #: LYMessages.c:563
 msgid "Unable to open print options file"
-msgstr ""
+msgstr "Nu se poate deschide fișierul cu opțiunile de imprimare"
 
 #: LYMessages.c:564
 msgid "Printing file.  Please wait..."
-msgstr ""
+msgstr "Se imprimă fișierul.  Așteptați..."
 
 #: LYMessages.c:565
 msgid "Please enter a valid internet mail address: "
-msgstr ""
+msgstr "Introduceți o adresă de poștă electronică validă: "
 
 #: LYMessages.c:566
 msgid "ERROR! - printer is misconfigured!"
-msgstr ""
+msgstr "EROARE! - imprimanta este configurată greșit!"
 
 #: LYMessages.c:567
 msgid "Image map from POST response not available!"
-msgstr ""
+msgstr "Harta imaginii din răspunsul POST nu este disponibilă!"
 
 #: LYMessages.c:568
 msgid "Misdirected client-side image MAP request!"
-msgstr ""
+msgstr "Cerere de hartă de imagine din partea clientului direcționată greșit!"
 
 #: LYMessages.c:569
 msgid "Client-side image MAP is not accessible!"
-msgstr ""
+msgstr "Harta de imagine din partea clientului MAP nu este accesibilă!"
 
 #: LYMessages.c:570
 msgid "No client-side image MAPs are available!"
-msgstr ""
+msgstr "Nu sunt disponibile hărți de imagine în partea clientului!"
 
 #: LYMessages.c:571
 msgid "Client-side image MAP is not available!"
-msgstr ""
+msgstr "Harta de imagine din partea clientului MAP nu este disponibilă!"
 
 #. #define OPTION_SCREEN_NEEDS_24
 #: LYMessages.c:574
 msgid "Screen height must be at least 24 lines for the Options menu!"
-msgstr ""
+msgstr "Înălțimea ecranului trebuie să fie de cel puțin 24 de linii pentru meniul Opțiuni!"
 
 #. #define OPTION_SCREEN_NEEDS_23
 #: LYMessages.c:576
 msgid "Screen height must be at least 23 lines for the Options menu!"
-msgstr ""
+msgstr "Înălțimea ecranului trebuie să fie de cel puțin 23 de linii pentru meniul Opțiuni!"
 
 #. #define OPTION_SCREEN_NEEDS_22
 #: LYMessages.c:578
 msgid "Screen height must be at least 22 lines for the Options menu!"
-msgstr ""
+msgstr "Înălțimea ecranului trebuie să fie de cel puțin 22 de linii pentru meniul Opțiuni!"
 
 #: LYMessages.c:580
 msgid "That key requires Advanced User mode."
-msgstr ""
+msgstr "Această tastă necesită modul Utilizator avansat."
 
 #: LYMessages.c:581
 #, c-format
 msgid "Content-type: %s"
-msgstr ""
+msgstr "Tipul de conținut: %s"
 
 #: LYMessages.c:582
 msgid "Command: "
-msgstr ""
+msgstr "Comanda: "
 
 #: LYMessages.c:583
 msgid "Unknown or ambiguous command"
-msgstr ""
+msgstr "Comandă necunoscută sau ambiguă"
 
 #: LYMessages.c:584
 msgid " Version "
-msgstr ""
+msgstr " Versiunea "
 
 #: LYMessages.c:585
 msgid " first"
-msgstr ""
+msgstr " primul"
 
 #: LYMessages.c:586
 msgid ", guessing..."
-msgstr ""
+msgstr ", presupunând..."
 
 #: LYMessages.c:587
 msgid "Permissions for "
-msgstr ""
+msgstr "Permisiuni pentru "
 
 #: LYMessages.c:588
 msgid "Select "
-msgstr ""
+msgstr "Selectați "
 
 #: LYMessages.c:589
 msgid "capital letter"
-msgstr ""
+msgstr "litera majusculă"
 
 #: LYMessages.c:590
 msgid " of option line,"
-msgstr ""
+msgstr " din linia de opțiuni,"
 
 #: LYMessages.c:591
 msgid " to save,"
-msgstr ""
+msgstr " pentru a salva,"
 
 #: LYMessages.c:592
 msgid " to "
-msgstr ""
+msgstr " la "
 
 #: LYMessages.c:593
 msgid " or "
-msgstr ""
+msgstr " sau "
 
 #: LYMessages.c:594
 msgid " index"
-msgstr ""
+msgstr " index"
 
 #: LYMessages.c:595
 msgid " to return to Lynx."
-msgstr ""
+msgstr " pentru a reveni la Lynx."
 
 #: LYMessages.c:596
 msgid "Accept Changes"
-msgstr ""
+msgstr "Acceptați modificările"
 
 #: LYMessages.c:597
 msgid "Reset Changes"
-msgstr ""
+msgstr "Anulați modificările"
 
 #: LYMessages.c:598
 msgid "Left Arrow cancels changes"
-msgstr ""
+msgstr "Săgeata-stânga anulează modificările"
 
 #: LYMessages.c:599
 msgid "Save options to disk"
-msgstr ""
+msgstr "Salvați opțiunile pe disc"
 
 #: LYMessages.c:600
 msgid "Hit RETURN to accept entered data."
-msgstr ""
+msgstr "Apăsați <Enter> pentru a confirma datele introduse."
 
 #. #define ACCEPT_DATA_OR_DEFAULT
 #: LYMessages.c:602
 msgid "Hit RETURN to accept entered data.  Delete data to invoke the default."
-msgstr ""
+msgstr "Apăsați <Enter> pentru a confirma datele introduse.  Ștergeți datele pentru a invoca valoarea implicită."
 
 #: LYMessages.c:603
 msgid "Value accepted!"
-msgstr ""
+msgstr "Valoare acceptată!"
 
 #. #define VALUE_ACCEPTED_WARNING_X
 #: LYMessages.c:605
 msgid "Value accepted! -- WARNING: Lynx is configured for XWINDOWS!"
-msgstr ""
+msgstr "Valoare acceptată! -- AVERTISMENT: Lynx este configurat pentru X Windows!"
 
 #. #define VALUE_ACCEPTED_WARNING_NONX
 #: LYMessages.c:607
 msgid "Value accepted! -- WARNING: Lynx is NOT configured for XWINDOWS!"
-msgstr ""
+msgstr "Valoare acceptată! -- AVERTISMENT: Lynx NU este configurat pentru X Windows!"
 
 #: LYMessages.c:608
 msgid "You are not allowed to change which editor to use!"
-msgstr ""
+msgstr "Nu vă este permis să schimbați ce editor să folosiți!"
 
 #: LYMessages.c:609
 msgid "Failed to set DISPLAY variable!"
-msgstr ""
+msgstr "Nu s-a reușit configurarea variabilei DISPLAY!"
 
 #: LYMessages.c:610
 msgid "Failed to clear DISPLAY variable!"
-msgstr ""
+msgstr "Nu s-a reușit ștergerea valorii variabilei DISPLAY!"
 
 #. #define BOOKMARK_CHANGE_DISALLOWED
 #: LYMessages.c:612
 msgid "You are not allowed to change the bookmark file!"
-msgstr ""
+msgstr "Nu aveți voie să modificați fișierul de marcaje!"
 
 #: LYMessages.c:613
 msgid "Terminal does not support color"
-msgstr ""
+msgstr "Terminalul nu acceptă culori"
 
 #: LYMessages.c:614
 #, c-format
 msgid "Your '%s' terminal does not support color."
-msgstr ""
+msgstr "Terminalul dvs. „%s” nu acceptă culorile."
 
 #: LYMessages.c:615
 msgid "Access to dot files is disabled!"
-msgstr ""
+msgstr "Accesul la fișierele punct („.”, „.*”, „..”) este dezactivat!"
 
 #. #define UA_NO_LYNX_WARNING
 #: LYMessages.c:617
 msgid "User-Agent string does not contain \"Lynx\" or \"L_y_n_x\""
-msgstr ""
+msgstr "Șirul User-Agent nu conține „Lynx” sau „L_y_n_x”"
 
 #. #define UA_PLEASE_USE_LYNX
 #: LYMessages.c:619
 msgid "Use \"L_y_n_x\" or \"Lynx\" in User-Agent, or it looks like intentional deception!"
-msgstr ""
+msgstr "Folosiți „L_y_n_x” sau „Lynx” în User-Agent, sau va arăta ca o înșelăciune intenționată!"
 
 #. #define UA_CHANGE_DISABLED
 #: LYMessages.c:621
 msgid "Changing of the User-Agent string is disabled!"
-msgstr ""
+msgstr "Modificarea șirului User-Agent este dezactivată!"
 
 #. #define CHANGE_OF_SETTING_DISALLOWED
 #: LYMessages.c:623
 msgid "You are not allowed to change this setting."
-msgstr ""
+msgstr "Nu aveți voie să modificați acest parametru."
 
 #: LYMessages.c:624
 msgid "Saving Options..."
-msgstr ""
+msgstr "Se salvează opțiunile..."
 
 #: LYMessages.c:625
 msgid "Options saved!"
-msgstr ""
+msgstr "Opțiuni salvate!"
 
 #: LYMessages.c:626
 msgid "Unable to save Options!"
-msgstr ""
+msgstr "Nu se pot salva opțiunile!"
 
 #: LYMessages.c:627
 msgid " 'r' to return to Lynx "
-msgstr ""
+msgstr " „r” pentru a reveni la Lynx "
 
 #: LYMessages.c:628
 msgid " '>' to save, or 'r' to return to Lynx "
-msgstr ""
+msgstr " „>” pentru a salva sau „r” pentru a reveni la Lynx "
 
 #. #define ANY_KEY_CHANGE_RET_ACCEPT
 #: LYMessages.c:630
 msgid "Hit any key to change value; RETURN to accept."
-msgstr ""
+msgstr "Apăsați orice tastă pentru a modifica valoarea; «Enter» pentru a accepta."
 
 #: LYMessages.c:631
 msgid "Error uncompressing temporary file!"
-msgstr ""
+msgstr "Eroare la decomprimarea fișierului temporar!"
 
 #: LYMessages.c:632
 msgid "Unsupported URL scheme!"
-msgstr ""
+msgstr "Schemă URL neacceptată!"
 
 #: LYMessages.c:633
 msgid "Unsupported data: URL!  Use SHOWINFO, for now."
-msgstr ""
+msgstr "Date neacceptate: URL!  Utilizați SHOWINFO, de moment."
 
 #: LYMessages.c:634
 #, c-format
 msgid "Redirection limit of %d URL's reached."
-msgstr ""
+msgstr "A fost atinsă limita de redirecționare de %d URL-uri."
 
 #: LYMessages.c:635
 msgid "Illegal redirection URL received from server!"
-msgstr ""
+msgstr "URL ilegal de redirecționare primit de la server!"
 
 #. #define SERVER_ASKED_FOR_REDIRECTION
 #: LYMessages.c:637
 #, c-format
 msgid "Server asked for %d redirection of POST content to"
-msgstr ""
+msgstr "Serverul a solicitat %d redirecționare a conținutului POST către"
 
 #: LYMessages.c:640
 msgid "P)roceed, use G)ET or C)ancel "
-msgstr ""
+msgstr "Continuați(P), utilizați Obținere(G) sau C) Anulați acțiunea "
 
 #: LYMessages.c:641
 msgid "P)roceed, or C)ancel "
-msgstr ""
+msgstr "Continuați(P) sau C) Anulați acțiunea "
 
 #. #define ADVANCED_POST_GET_REDIRECT
 #: LYMessages.c:643
 msgid "Redirection of POST content.  P)roceed, see U)RL, use G)ET or C)ancel"
-msgstr ""
+msgstr "Redirecționarea conținutului POST.  P)Continuați, consultați U)RL, utilizați G)Obținere sau C) Anulați acțiunea"
 
 #. #define ADVANCED_POST_REDIRECT
 #: LYMessages.c:645
 msgid "Redirection of POST content.  P)roceed, see U)RL, or C)ancel"
-msgstr ""
+msgstr "Redirecționarea conținutului POST.  P)Continuați, consultați U)RL, sau C) Anulați acțiunea"
 
 #. #define CONFIRM_POST_RESUBMISSION
 #: LYMessages.c:647
 msgid "Document from Form with POST content.  Resubmit?"
-msgstr ""
+msgstr "Document din formular cu conținut POST.  Retrimiteți?"
 
 #. #define CONFIRM_POST_RESUBMISSION_TO
 #: LYMessages.c:649
 #, c-format
 msgid "Resubmit POST content to %s ?"
-msgstr ""
+msgstr "Retrimiteți conținutul POST către %s ?"
 
 #. #define CONFIRM_POST_LIST_RELOAD
 #: LYMessages.c:651
 #, c-format
 msgid "List from document with POST data.  Reload %s ?"
-msgstr ""
+msgstr "Listă de documente cu informații POST.  Reîncărcați %s?"
 
 #. #define CONFIRM_POST_DOC_HEAD
 #: LYMessages.c:653
 msgid "Document from POST action, HEAD may not be understood.  Proceed?"
-msgstr ""
+msgstr "Documentul din acțiunea POST, HEAD poate să nu fie înțeles.  Continuați?"
 
 #. #define CONFIRM_POST_LINK_HEAD
 #: LYMessages.c:655
 msgid "Form submit action is POST, HEAD may not be understood.  Proceed?"
-msgstr ""
+msgstr "Acțiunea de trimitere a formularului este POST, este posibil ca HEAD să nu fie înțeles.  Continuați?"
 
 #: LYMessages.c:656
 msgid "Proceed without a username and password?"
-msgstr ""
+msgstr "Continuați fără un nume de utilizator și o parolă?"
 
 #: LYMessages.c:657
 #, c-format
 msgid "Proceed (%s)?"
-msgstr ""
+msgstr "Continuați (%s)?"
 
 #: LYMessages.c:658
 msgid "Cannot POST to this host."
-msgstr ""
+msgstr "Nu se poate efectua POST la această gazdă."
 
 #: LYMessages.c:659
 msgid "POST not supported for this URL - ignoring POST data!"
-msgstr ""
+msgstr "acțiunea POST nu este acceptată pentru acest URL - se ignoră datele POST!"
 
 #: LYMessages.c:660
 msgid "Discarding POST data..."
-msgstr ""
+msgstr "Se înlătură datele POST..."
 
 #: LYMessages.c:661
 msgid "Document will not be reloaded!"
-msgstr ""
+msgstr "Documentul nu poate să fie reîncărcat!"
 
 #: LYMessages.c:662
 msgid "Location: "
-msgstr ""
+msgstr "Locația: "
 
 #: LYMessages.c:663
 #, c-format
 msgid "'%s' not found!"
-msgstr ""
+msgstr "„%s” nu a fost găsit!"
 
 #: LYMessages.c:664
 msgid "Default Bookmark File"
-msgstr ""
+msgstr "Fișierul de marcaje implicit"
 
 #: LYMessages.c:665
 msgid "Screen too small! (8x35 min)"
-msgstr ""
+msgstr "Ecranul este prea mic! (minim este 8x35)"
 
 #: LYMessages.c:666
 msgid "Select destination or ^G to Cancel: "
-msgstr ""
+msgstr "Selecționați destinația sau pulsați „Ctrl-G” pentru a anula acțiunea: "
 
 #. #define MULTIBOOKMARKS_SELECT
 #: LYMessages.c:668
 msgid "Select subbookmark, '=' for menu, or ^G to cancel: "
-msgstr ""
+msgstr "Selectare sub-marcaj, „=” pentru meniu sau „Ctrl-G” pentru a anula: "
 
 #. #define MULTIBOOKMARKS_SELF
 #: LYMessages.c:670
 msgid "Reproduce L)ink in this bookmark file or C)ancel? (l,c): "
-msgstr ""
+msgstr "Copiați L)egătura în acest fișier de marcaj sau C) Anulați acțiunea? (l,c): "
 
 #: LYMessages.c:671
 msgid "Multiple bookmark support is not available."
-msgstr ""
+msgstr "Suportul pentru marcaje multiple nu este disponibil."
 
 #: LYMessages.c:672
 #, c-format
 msgid " Select Bookmark (screen %d of %d)"
-msgstr ""
+msgstr " Selectați marcajul (ecranul %d din %d)"
 
 #: LYMessages.c:673
 msgid "       Select Bookmark"
-msgstr ""
+msgstr "       Selectați marcajul"
 
 #. #define MULTIBOOKMARKS_EHEAD_MASK
 #: LYMessages.c:675
 #, c-format
 msgid "Editing Bookmark DESCRIPTION and FILEPATH (%d of 2)"
-msgstr ""
+msgstr "Editarea marcajului: DESCRIERE și RUTĂ-FIȘIER (%d din 2)"
 
 #. #define MULTIBOOKMARKS_EHEAD
 #: LYMessages.c:677
 msgid "         Editing Bookmark DESCRIPTION and FILEPATH"
-msgstr ""
+msgstr "         Editarea marcajului: DESCRIERE și RUTĂ-FIȘIER"
 
 #: LYMessages.c:678
 msgid "Letter: "
-msgstr ""
+msgstr "Litera: "
 
 #. #define USE_PATH_OFF_HOME
 #: LYMessages.c:681
 msgid "Use a filepath off your login directory in SHELL syntax!"
-msgstr ""
+msgstr "Utilizați o rută de fișier dinafara directorului de conectare în sintaxa SHELL!"
 
 #: LYMessages.c:683
 msgid "Use a filepath off your home directory!"
-msgstr ""
+msgstr "Utilizați o rută de fișier dinafara directorului dvs. personal!"
 
 #. #define MAXLINKS_REACHED
 #: LYMessages.c:686
 msgid "Maximum links per page exceeded!  Use half-page or two-line scrolling."
-msgstr ""
+msgstr "Numărul maxim de legături pe pagină a fost depășit!  Utilizați derularea pe jumătate de pagină sau pe două rânduri."
 
 #: LYMessages.c:687
 msgid "No previously visited links available!"
-msgstr ""
+msgstr "Nu sunt disponibile legături vizitate cu anterioritate!"
 
 #: LYMessages.c:688
 msgid "Memory exhausted!  Program aborted!"
-msgstr ""
+msgstr "Memorie epuizată!  Se întrerupe programul!"
 
 #: LYMessages.c:689
 msgid "Memory exhausted!  Aborting..."
-msgstr ""
+msgstr "Memorie epuizată!  Se anulează..."
 
 #: LYMessages.c:690
 msgid "Not enough memory!"
-msgstr ""
+msgstr "Memorie insuficientă!"
 
 #: LYMessages.c:691
 msgid "Directory/File Manager not available"
-msgstr ""
+msgstr "Administratorul de directoare/fișiere nu este disponibil"
 
 #: LYMessages.c:692
 msgid "Location URL is not absolute."
-msgstr ""
+msgstr "Locația URL nu este absolută."
 
 #: LYMessages.c:693
 msgid "Refresh URL is not absolute."
-msgstr ""
+msgstr "Adresa URL de reîmprospătare nu este absolută."
 
 #. #define SENDING_MESSAGE_WITH_BODY_TO
 #: LYMessages.c:695
@@ -2115,12 +2123,16 @@ msgid ""
 "You are sending a message with body to:\n"
 "  "
 msgstr ""
+"Trimiteți un mesaj cu corpul către:\n"
+"  "
 
 #: LYMessages.c:696
 msgid ""
 "You are sending a comment to:\n"
 "  "
 msgstr ""
+"Trimiteți un comentariu către:\n"
+"  "
 
 #: LYMessages.c:697
 msgid ""
@@ -2128,6 +2140,9 @@ msgid ""
 " With copy to:\n"
 "  "
 msgstr ""
+"\n"
+"Cu copie la:\n"
+"  "
 
 #: LYMessages.c:698
 msgid ""
@@ -2135,6 +2150,9 @@ msgid ""
 " With copies to:\n"
 "  "
 msgstr ""
+"\n"
+"Cu copii la:\n"
+"  "
 
 #. #define CTRL_G_TO_CANCEL_SEND
 #: LYMessages.c:700
@@ -2143,6 +2161,9 @@ msgid ""
 "\n"
 "Use Ctrl-G to cancel if you do not want to send a message\n"
 msgstr ""
+"\n"
+"\n"
+"Utilizați „Ctrl-G” pentru a anula dacă nu doriți să trimiteți un mesaj.\n"
 
 #. #define ENTER_NAME_OR_BLANK
 #: LYMessages.c:702
@@ -2150,6 +2171,8 @@ msgid ""
 "\n"
 " Please enter your name, or leave it blank to remain anonymous\n"
 msgstr ""
+"\n"
+" Introduceți numele dvs. sau lăsați-l în alb pentru a rămâne anonim\n"
 
 #. #define ENTER_MAIL_ADDRESS_OR_OTHER
 #: LYMessages.c:704
@@ -2157,17 +2180,21 @@ msgid ""
 "\n"
 " Please enter a mail address or some other\n"
 msgstr ""
+"\n"
+"Introduceți o adresă de poștă electronică sau orice altă\n"
 
 #. #define MEANS_TO_CONTACT_FOR_RESPONSE
 #: LYMessages.c:706
 msgid " means to contact you, if you desire a response.\n"
-msgstr ""
+msgstr " modalitate de a vă contacta, în cazul în care doriți un răspuns.\n"
 
 #: LYMessages.c:707
 msgid ""
 "\n"
 " Please enter a subject line.\n"
 msgstr ""
+"\n"
+" Introduceți o linie de subiect.\n"
 
 #. #define ENTER_ADDRESS_FOR_CC
 #: LYMessages.c:709
@@ -2175,10 +2202,12 @@ msgid ""
 "\n"
 " Enter a mail address for a CC of your message.\n"
 msgstr ""
+"\n"
+"Introduceți o adresă de poștă electronică pentru o confirmare de primire a mesajului dvs.\n"
 
 #: LYMessages.c:710
 msgid " (Leave blank if you don't want a copy.)\n"
-msgstr ""
+msgstr " (lăsați-l în alb dacă nu doriți o copie).\n"
 
 #: LYMessages.c:711
 msgid ""
@@ -2186,28 +2215,37 @@ msgid ""
 " Please review the message body:\n"
 "\n"
 msgstr ""
+"\n"
+" Revizuiți corpul mesajului:\n"
+"\n"
 
 #: LYMessages.c:712
 msgid ""
 "\n"
 "Press RETURN to continue: "
 msgstr ""
+"\n"
+"Apăsați <Enter> pentru a continua: "
 
 #: LYMessages.c:713
 msgid ""
 "\n"
 "Press RETURN to clean up: "
 msgstr ""
+"\n"
+"Apăsați <Enter> pentru a șterge: "
 
 #: LYMessages.c:714
 msgid " Use Control-U to erase the default.\n"
-msgstr ""
+msgstr " Utilizați „Ctrl-U” pentru a șterge valoarea implicită.\n"
 
 #: LYMessages.c:715
 msgid ""
 "\n"
 " Please enter your message below."
 msgstr ""
+"\n"
+" Introduceți mesajul dvs. mai jos."
 
 #. #define ENTER_PERIOD_WHEN_DONE_A
 #: LYMessages.c:717 src/LYNews.c:360
@@ -2215,6 +2253,8 @@ msgid ""
 "\n"
 " When you are done, press enter and put a single period (.)"
 msgstr ""
+"\n"
+" Când ați terminat, apăsați <Enter> și puneți un singur punct (.)"
 
 #. #define ENTER_PERIOD_WHEN_DONE_B
 #: LYMessages.c:719 src/LYNews.c:361
@@ -2222,522 +2262,537 @@ msgid ""
 "\n"
 " on a line and press enter again."
 msgstr ""
+"\n"
+" pe o linie și apăsați din nou tasta <Enter>."
 
+# R-GC, scrie:
+# am tradus mesajul acesta, copiind
+# echipa franceză  -;)
 #. Cookies messages
 #. #define ADVANCED_COOKIE_CONFIRMATION
 #: LYMessages.c:723
 #, c-format
 msgid "%s cookie: %.*s=%.*s  Allow? (Y/N/Always/neVer)"
-msgstr ""
+msgstr "%s cookie: %.*s=%.*s  Permiteți? (D/N/Întotdedeauna/niciOdată)"
 
 #. #define INVALID_COOKIE_DOMAIN_CONFIRMATION
 #: LYMessages.c:725
 #, c-format
 msgid "Accept invalid cookie domain=%s for '%s'?"
-msgstr ""
+msgstr "Acceptați cookie-ul nevalid domeniu=%s pentru „%s”?"
 
 #. #define INVALID_COOKIE_PATH_CONFIRMATION
 #: LYMessages.c:727
 #, c-format
 msgid "Accept invalid cookie path=%s as a prefix of '%s'?"
-msgstr ""
+msgstr "Acceptați cookie-ul nevalid rută=%s ca prefix pentru „%s”?"
 
 #: LYMessages.c:728
 msgid "Allowing this cookie."
-msgstr ""
+msgstr "Se permite acest cookie."
 
 #: LYMessages.c:729
 msgid "Rejecting this cookie."
-msgstr ""
+msgstr "Se respinge acest cookie."
 
 #: LYMessages.c:730
 msgid "The Cookie Jar is empty."
-msgstr ""
+msgstr "Borcanul de cookies este gol."
 
 #: LYMessages.c:731
 msgid "The Cache Jar is empty."
-msgstr ""
+msgstr "Borcanul zonei de prestocare este gol."
 
 #. #define ACTIVATE_TO_GOBBLE
 #: LYMessages.c:733
 msgid "Activate links to gobble up cookies or entire domains,"
-msgstr ""
+msgstr "Activați legăturile pentru a îngloba cookie-uri sau domenii întregi,"
 
 #: LYMessages.c:734
 msgid "or to change a domain's 'allow' setting."
-msgstr ""
+msgstr "sau pentru a modifica parametrul „permisiune” al unui domeniu."
 
 #: LYMessages.c:735
 msgid "(Cookies never allowed.)"
-msgstr ""
+msgstr "(cookie-urile nu sunt permise niciodată)"
 
 #: LYMessages.c:736
 msgid "(Cookies always allowed.)"
-msgstr ""
+msgstr "(cookie-urile sunt permise întotdeauna)"
 
 #: LYMessages.c:737
 msgid "(Cookies allowed via prompt.)"
-msgstr ""
+msgstr "(cookie-urile sunt permise la cerere)"
 
 #: LYMessages.c:738
 msgid "(Persistent Cookies.)"
-msgstr ""
+msgstr "(cookie-uri persistente)"
 
 #: LYMessages.c:739
 msgid "(No title.)"
-msgstr ""
+msgstr "(fără titlu)"
 
 #: LYMessages.c:740
 msgid "(No name.)"
-msgstr ""
+msgstr "(fără nume)"
 
 #: LYMessages.c:741
 msgid "(No value.)"
-msgstr ""
+msgstr "(fără valoare)"
 
-#: LYMessages.c:742 src/LYOptions.c:2470
+#: LYMessages.c:742 src/LYOptions.c:2482
 msgid "None"
-msgstr ""
+msgstr "Niciuna/niciunul"
 
 #: LYMessages.c:743
 msgid "(End of session.)"
-msgstr ""
+msgstr "(sfârșit de sesiune)"
 
 #: LYMessages.c:744
 msgid "Delete this cookie?"
-msgstr ""
+msgstr "Ștergeți acest cookie?"
 
 #: LYMessages.c:745
 msgid "The cookie has been eaten!"
-msgstr ""
+msgstr "Cookie-ul a fost înghițit!"
 
 #: LYMessages.c:746
 msgid "Delete this empty domain?"
-msgstr ""
+msgstr "Ștergeți acest domeniu gol?"
 
 #: LYMessages.c:747
 msgid "The domain has been eaten!"
-msgstr ""
+msgstr "Domeniul a fost înghițit!"
 
 #. #define DELETE_COOKIES_SET_ALLOW_OR_CANCEL
 #: LYMessages.c:749
 msgid "D)elete domain's cookies, set allow A)lways/P)rompt/neV)er, or C)ancel? "
-msgstr ""
+msgstr "D)Șterge cookie-urile domeniului, configurați permisiunea A)Întotdeuna / P)rompt / V)Niciodată, sau C) Anulați acțiunea? "
 
 #. #define DELETE_DOMAIN_SET_ALLOW_OR_CANCEL
 #: LYMessages.c:751
 msgid "D)elete domain, set allow A)lways/P)rompt/neV)er, or C)ancel? "
-msgstr ""
+msgstr "D)Șterge domeniul, configurați permisiunea A)Întotdeuna / P)rompt / V)Niciodată, sau C) Anulați acțiunea? "
 
 #: LYMessages.c:752
 msgid "All cookies in the domain have been eaten!"
-msgstr ""
+msgstr "Toate cookie-urile din domeniu au fost înghițite!"
 
 #: LYMessages.c:753
 #, c-format
 msgid "'A'lways allowing from domain '%s'."
-msgstr ""
+msgstr "(A) Întotdeauna permite cookie-urile din domeniul „%s”."
 
 #: LYMessages.c:754
 #, c-format
 msgid "ne'V'er allowing from domain '%s'."
-msgstr ""
+msgstr "(V) Niciodată nu permite cookie-urile din domeniul „%s”."
 
 #: LYMessages.c:755
 #, c-format
 msgid "'P'rompting to allow from domain '%s'."
-msgstr ""
+msgstr "(P) Cere permisiunea de a permite cookie-urile din domeniul „%s”."
 
 #: LYMessages.c:756
 msgid "Delete all cookies in this domain?"
-msgstr ""
+msgstr "Ștergeți toate cookie-urile din acest domeniu?"
 
 #: LYMessages.c:757
 msgid "All of the cookies in the jar have been eaten!"
-msgstr ""
+msgstr "Toate cookie-urile din borcan au fost înghițite!"
 
 #: LYMessages.c:759
 msgid "Port 19 not permitted in URLs."
-msgstr ""
+msgstr "Portul 19 nu este permis în adresele URL."
 
 #: LYMessages.c:760
 msgid "Port 25 not permitted in URLs."
-msgstr ""
+msgstr "Portul 25 nu este permis în adresele URL."
 
 #: LYMessages.c:761
 #, c-format
 msgid "Port %lu not permitted in URLs."
-msgstr ""
+msgstr "Portul %lu nu este permis în adresele URL."
 
 #: LYMessages.c:762
 msgid "URL has a bad port field."
-msgstr ""
+msgstr "Adresa URL are câmpul de port incorect."
 
 #: LYMessages.c:763
 msgid "Maximum nesting of HTML elements exceeded."
-msgstr ""
+msgstr "Numărul maxim de elemente HTML a fost depășit."
 
 #: LYMessages.c:764
 msgid "Bad partial reference!  Stripping lead dots."
-msgstr ""
+msgstr "Referință parțială greșită!  Punctele inițiale sunt îndepărtate."
 
 #: LYMessages.c:765
 msgid "Trace Log open failed.  Trace off!"
-msgstr ""
+msgstr "Deschiderea jurnalului de urmărire a eșuat.  Urmărirea este dezactivată!"
 
 #: LYMessages.c:766
 msgid "Lynx Trace Log"
-msgstr ""
+msgstr "Jurnalul de urmărire Lynx"
 
 #: LYMessages.c:767
 msgid "No trace log has been started for this session."
-msgstr ""
+msgstr "Nu a fost inițiat niciun jurnal de urmărire pentru această sesiune."
 
 #. #define MAX_TEMPCOUNT_REACHED
 #: LYMessages.c:769
 msgid "The maximum temporary file count has been reached!"
-msgstr ""
+msgstr "Numărul maxim de fișiere temporare a fost atins!"
 
 #. #define FORM_VALUE_TOO_LONG
 #: LYMessages.c:771
 msgid "Form field value exceeds buffer length!  Trim the tail."
-msgstr ""
+msgstr "Valoarea câmpului de formular depășește lungimea memoriei tampon!  Tăiați partea finală."
 
 #. #define FORM_TAIL_COMBINED_WITH_HEAD
 #: LYMessages.c:773
 msgid "Modified tail combined with head of form field value."
-msgstr ""
+msgstr "Partea finală modificată combinată cu partea de început a valorii câmpului de formular."
 
 #. HTFile.c
 #: LYMessages.c:776
 msgid "Directory"
-msgstr ""
+msgstr "Director"
 
 #: LYMessages.c:777
 msgid "Directory browsing is not allowed."
-msgstr ""
+msgstr "Nu este permisă navigarea în directoare."
 
 #: LYMessages.c:778
 msgid "Selective access is not enabled for this directory"
-msgstr ""
+msgstr "Accesul selectiv nu este activat pentru acest director"
 
 #: LYMessages.c:779
 msgid "Multiformat: directory scan failed."
-msgstr ""
+msgstr "Multiformat: scanarea directorului a eșuat."
 
 #: LYMessages.c:780
 msgid "This directory is not readable."
-msgstr ""
+msgstr "Acest director nu poate fi citit (fără permisiune de citire)."
 
 #: LYMessages.c:781
 msgid "Can't access requested file."
-msgstr ""
+msgstr "Nu se poate accesa fișierul solicitat."
 
 #: LYMessages.c:782
 msgid "Could not find suitable representation for transmission."
-msgstr ""
+msgstr "Nu s-a putut găsi o reprezentare adecvată pentru transmisie."
 
 #: LYMessages.c:783
 msgid "Could not open file for decompression!"
-msgstr ""
+msgstr "Nu s-a putut deschide fișierul pentru decomprimare!"
 
 #: LYMessages.c:784
 msgid "Files:"
-msgstr ""
+msgstr "Fișiere:"
 
 #: LYMessages.c:785
 msgid "Subdirectories:"
-msgstr ""
+msgstr "Subdirectoare:"
 
 #: LYMessages.c:786
 msgid " directory"
-msgstr ""
+msgstr " director"
 
 #: LYMessages.c:787
 msgid "Up to "
-msgstr ""
+msgstr "Până la "
 
 #: LYMessages.c:788
 msgid "Current directory is "
-msgstr ""
+msgstr "Directorul curent este "
 
 #. HTFTP.c
 #: LYMessages.c:791
 msgid "Symbolic Link"
-msgstr ""
+msgstr "Legătură simbolică"
 
 #. HTGopher.c
 #: LYMessages.c:794
 msgid "No response from server!"
-msgstr ""
+msgstr "Niciun răspuns de la server!"
 
 #: LYMessages.c:795
 msgid "CSO index"
-msgstr ""
+msgstr "Index CSO"
 
 #: LYMessages.c:796
 msgid ""
 "\n"
 "This is a searchable index of a CSO database.\n"
 msgstr ""
+"\n"
+"Acesta este un index în care se pot face căutări al unei baze de date CSO.\n"
 
 #: LYMessages.c:797
 msgid "CSO Search Results"
-msgstr ""
+msgstr "Rezultate căutare CSO"
 
 #: LYMessages.c:798
 #, c-format
 msgid "Seek fail on %s\n"
-msgstr ""
+msgstr "Căutarea a eșuat în %s\n"
 
 #: LYMessages.c:799
 msgid ""
 "\n"
 "Press the 's' key and enter search keywords.\n"
 msgstr ""
+"\n"
+"Apăsați tasta «s» și introduceți cuvintele-cheie de căutare.\n"
 
 #: LYMessages.c:800
 msgid ""
 "\n"
 "This is a searchable Gopher index.\n"
 msgstr ""
+"\n"
+"Acesta este un index Gopher în care se pot face căutări.\n"
 
 #: LYMessages.c:801
 msgid "Gopher index"
-msgstr ""
+msgstr "Index Gopher"
 
 #: LYMessages.c:802
 msgid "Gopher Menu"
-msgstr ""
+msgstr "Meniu Gopher"
 
 #: LYMessages.c:803
 msgid " Search Results"
-msgstr ""
+msgstr " Rezultate căutare"
 
 #: LYMessages.c:804
 msgid "Sending CSO/PH request."
-msgstr ""
+msgstr "Se trimite cererea CSO/PH."
 
 #: LYMessages.c:805
 msgid "Sending Gopher request."
-msgstr ""
+msgstr "Se trimite cererea Gopher."
 
 #: LYMessages.c:806
 msgid "CSO/PH request sent; waiting for response."
-msgstr ""
+msgstr "Cererea CSO/PH a fost trimisă; se așteaptă răspunsul."
 
 #: LYMessages.c:807
 msgid "Gopher request sent; waiting for response."
-msgstr ""
+msgstr "Cererea Gopher a fost trimisă; se așteaptă răspunsul."
 
 #: LYMessages.c:808
 msgid ""
 "\n"
 "Please enter search keywords.\n"
 msgstr ""
+"\n"
+"Introduceți cuvintele cheie de căutare.\n"
 
 #: LYMessages.c:809
 msgid ""
 "\n"
 "The keywords that you enter will allow you to search on a"
 msgstr ""
+"\n"
+"Cuvintele cheie pe care le introduceți vă vor permite să căutați"
 
 #: LYMessages.c:810
 msgid " person's name in the database.\n"
-msgstr ""
+msgstr " numele unei persoane în baza de date.\n"
 
 #. HTNews.c
 #: LYMessages.c:813
 msgid "Connection closed ???"
-msgstr ""
+msgstr "Conexiune închisă ????"
 
 #: LYMessages.c:814
 msgid "Cannot open temporary file for news POST."
-msgstr ""
+msgstr "Nu se poate deschide fișierul temporar pentru publica știrile."
 
 #: LYMessages.c:815
 msgid "This client does not contain support for posting to news with SSL."
-msgstr ""
+msgstr "Acest client nu oferă suport pentru publicarea de știri cu SSL."
 
 #. HTStyle.c
 #: LYMessages.c:818
 #, c-format
 msgid "Style %d `%s' SGML:%s.  Font %s %.1f point.\n"
-msgstr ""
+msgstr "Stilul %d „%s” SGML:%s. Font %s %.1f puncte.\n"
 
 #: LYMessages.c:820
 #, c-format
 msgid "\tAlign=%d, %d tabs. (%.0f before, %.0f after)\n"
-msgstr ""
+msgstr "\tAliniere=%d, %d tabulatoare (%.0f înainte, %.0f după)\n"
 
 #: LYMessages.c:821
 #, c-format
 msgid "\t\tTab kind=%d at %.0f\n"
-msgstr ""
+msgstr "\t\tTip de tabulare = %d la %.0f\n"
 
 #. HTTP.c
 #: LYMessages.c:824
 msgid "Can't proceed without a username and password."
-msgstr ""
+msgstr "Nu se poate continua fără un nume de utilizator și o parolă."
 
 #: LYMessages.c:825
 msgid "Can't retry with authorization!  Contact the server's WebMaster."
-msgstr ""
+msgstr "Nu se poate reîncerca cu autorizație!  Contactați administratorul serverului Web."
 
 #: LYMessages.c:826
 msgid "Can't retry with proxy authorization!  Contact the server's WebMaster."
-msgstr ""
+msgstr "Nu se poate reîncerca cu autorizație proxy!  Contactați administratorul serverului Web."
 
 #: LYMessages.c:827
 msgid "Retrying with proxy authorization information."
-msgstr ""
+msgstr "Se reîncearcă cu informații de autorizare proxy."
 
 #: LYMessages.c:828
 #, c-format
 msgid "SSL error:%s-Continue?"
-msgstr ""
+msgstr "Eroare SSL:%s-Continuați?"
 
 #. HTWAIS.c
 #: LYMessages.c:831
 msgid "HTWAIS: Return message too large."
-msgstr ""
+msgstr "HTWAIS: Mesajul returnat este prea mare."
 
 #: LYMessages.c:832
 msgid "Enter WAIS query: "
-msgstr ""
+msgstr "Introduceți interogarea WAIS: "
 
 #. Miscellaneous status
 #: LYMessages.c:835
 msgid "Retrying as HTTP0 request."
-msgstr ""
+msgstr "Se reîncearcă ca solicitare HTTP0."
 
 #: LYMessages.c:836
 #, c-format
 msgid "Transferred %d bytes"
-msgstr ""
+msgstr "Transferați %d octeți"
 
 #: LYMessages.c:837
 msgid "Data transfer complete"
-msgstr ""
+msgstr "Transfer de date finalizat"
 
 #: LYMessages.c:838
 #, c-format
 msgid "Error processing line %d of %s\n"
-msgstr ""
+msgstr "Eroare la procesarea liniei %d din %s\n"
 
 #. Lynx internal page titles
 #: LYMessages.c:841
 msgid "Address List Page"
-msgstr ""
+msgstr "Pagina cu lista de adrese"
 
 #: LYMessages.c:842
 msgid "Bookmark file"
-msgstr ""
+msgstr "Fișier de marcaje"
 
 #: LYMessages.c:843
 msgid "Configuration Definitions"
-msgstr ""
+msgstr "Definiții de configurare"
 
 #: LYMessages.c:844
 msgid "Cookie Jar"
-msgstr ""
+msgstr "Borcan de cookie-uri"
 
 #: LYMessages.c:845
 msgid "Current Edit-Key Map"
-msgstr ""
+msgstr "Dispunerea actuală a tastelor de editare"
 
 #: LYMessages.c:846
 msgid "Current Key Map"
-msgstr ""
+msgstr "Dispunerea actuală a tastelor"
 
 #: LYMessages.c:847
 msgid "File Management Options"
-msgstr ""
+msgstr "Opțiuni de gestionare a fișierelor"
 
 #: LYMessages.c:848
 msgid "Download Options"
-msgstr ""
+msgstr "Opțiuni de descărcare"
 
 #: LYMessages.c:849
 msgid "History Page"
-msgstr ""
+msgstr "Pagina de istoric"
 
 #: LYMessages.c:850
 msgid "Cache Jar"
-msgstr ""
+msgstr "Borcanul zonei de prestocare"
 
 #: LYMessages.c:851
 msgid "List Page"
-msgstr ""
+msgstr "Pagina de listare"
 
 #: LYMessages.c:852
 msgid "Lynx.cfg Information"
-msgstr ""
+msgstr "Informații despre Lynx.cfg"
 
 #: LYMessages.c:853
 msgid "Converted Mosaic Hotlist"
-msgstr ""
+msgstr "Lista de pagini favorite a Mosaic convertită"
 
 #: LYMessages.c:854
 msgid "Options Menu"
-msgstr ""
+msgstr "Meniul de opțiuni"
 
 #: LYMessages.c:855
 msgid "File Permission Options"
-msgstr ""
+msgstr "Opțiuni de permisiune pentru fișiere"
 
 #: LYMessages.c:856
 msgid "Printing Options"
-msgstr ""
+msgstr "Opțiuni de imprimare"
 
 #: LYMessages.c:857
 msgid "Information about the current document"
-msgstr ""
+msgstr "Informații despre documentul curent"
 
 #: LYMessages.c:858
 msgid "Your recent statusline messages"
-msgstr ""
+msgstr "Mesajele dvs. recente din linia de stare"
 
 #: LYMessages.c:859
 msgid "Upload Options"
-msgstr ""
+msgstr "Opțiuni de încărcare"
 
 #: LYMessages.c:860
 msgid "Visited Links Page"
-msgstr ""
+msgstr "Pagina de legături vizitate"
 
 #. CONFIG_DEF_TITLE subtitles
 #: LYMessages.c:863
 msgid "See also"
-msgstr ""
+msgstr "Vedeți de asemenea"
 
 #: LYMessages.c:864
 msgid "your"
-msgstr ""
+msgstr "propriile dvs."
 
 #: LYMessages.c:865
 msgid "for runtime options"
-msgstr ""
+msgstr "pentru opțiunile în timpul execuției"
 
 #: LYMessages.c:866
 msgid "compile time options"
-msgstr ""
+msgstr "opțiunile la compilare"
 
 #: LYMessages.c:867
 msgid "color-style configuration"
-msgstr ""
+msgstr "configurația stilului de culoare"
 
 #: LYMessages.c:868
 msgid "latest release"
-msgstr ""
+msgstr "ultima versiune"
 
 #: LYMessages.c:869
 msgid "pre-release version"
-msgstr ""
+msgstr "versiunea preliminară"
 
 #: LYMessages.c:870
 msgid "development version"
-msgstr ""
+msgstr "versiunea de dezvoltare"
 
 #. #define AUTOCONF_CONFIG_CACHE
 #: LYMessages.c:872
@@ -2746,6 +2801,9 @@ msgid ""
 "process of this copy of Lynx.  When reporting a bug, please include a copy\n"
 "of this page."
 msgstr ""
+"Următoarele date au fost obținute în timpul procesului automat de\n"
+"configurare/construcție a acestei copii de Lynx.  Atunci când raportați\n"
+"o eroare, vă rugăm să includeți o copie a acestei pagini."
 
 #. #define AUTOCONF_LYNXCFG_H
 #: LYMessages.c:876
@@ -2753,125 +2811,127 @@ msgid ""
 "The following data were used as automatically-configured compile-time\n"
 "definitions when this copy of Lynx was built."
 msgstr ""
+"Următoarele date au fost utilizate ca definiții configurate automat\n"
+"la compilare atunci când a fost construită această copie a Lynx."
 
 #. #define DIRED_NOVICELINE
 #: LYMessages.c:881
 msgid "  C)reate  D)ownload  E)dit  F)ull menu  M)odify  R)emove  T)ag  U)pload     \n"
-msgstr ""
+msgstr "  C)reare  D)escărcare  E)ditare  F)Meniu-complet  M)odificare  R)Eliminare  T)Marcare  U)Încărcare     \n"
 
 #: LYMessages.c:882
 msgid "Failed to obtain status of current link!"
-msgstr ""
+msgstr "Nu s-a reușit să se obțină starea legăturii curente!"
 
 #. #define INVALID_PERMIT_URL
 #: LYMessages.c:885
 msgid "Special URL only valid from current File Permission menu!"
-msgstr ""
+msgstr "URL-ul special este valabil numai în meniul actual de „Permisiuni pentru fișiere”!"
 
 #: LYMessages.c:889
 msgid "External support is currently disabled."
-msgstr ""
+msgstr "Suportul extern este în prezent dezactivat."
 
 #. new with 2.8.4dev.21
 #: LYMessages.c:893
 msgid "Changing working-directory is currently disabled."
-msgstr ""
+msgstr "Schimbarea directorului de lucru este în prezent dezactivată."
 
 #: LYMessages.c:894
 msgid "Linewrap OFF!"
-msgstr ""
+msgstr "Plierea liniilor este DEZACTIVATĂ!"
 
 #: LYMessages.c:895
 msgid "Linewrap ON!"
-msgstr ""
+msgstr "Plierea liniilor este ACTIVATĂ!"
 
 #: LYMessages.c:896
 msgid "Parsing nested-tables toggled OFF!  Reloading..."
-msgstr ""
+msgstr "Analizarea tabelelor imbricate a fost DEZACTIVATĂ!  Se reîncarcă..."
 
 #: LYMessages.c:897
 msgid "Parsing nested-tables toggled ON!  Reloading..."
-msgstr ""
+msgstr "Analizarea tabelelor imbricate a fost ACTIVATĂ!  Se reîncarcă..."
 
 #: LYMessages.c:898
 msgid "Shifting is disabled while line-wrap is in effect"
-msgstr ""
+msgstr "Derularea este dezactivată în timp ce este în vigoare plierea liniilor."
 
 #: LYMessages.c:899
 msgid "Trace not supported"
-msgstr ""
+msgstr "Urmărirea nu este posibilă"
 
 #: LYMessages.c:819
 #, c-format
 msgid "\tIndents: first=%.0f others=%.0f, Height=%.1f Desc=%.1f\n"
-msgstr ""
+msgstr "\tIndentări: prima=%.0f altele=%.0f, Înălțime=%.1f Descriere=%.1f\n"
 
 #: WWW/Library/Implementation/HTAABrow.c:575
 #, c-format
 msgid "username for realm %s changed from %s to %s"
-msgstr ""
+msgstr "numele de utilizator pentru domeniul %s s-a schimbat din %s în %s"
 
 #: WWW/Library/Implementation/HTAABrow.c:591
 #, c-format
 msgid "password for realm %s user %s changed"
-msgstr ""
+msgstr "parola pentru domeniul %s utilizator %s s-a schimbat"
 
 #: WWW/Library/Implementation/HTAABrow.c:703
 #, c-format
 msgid "Username for '%s' at %s '%s%s':"
-msgstr ""
+msgstr "Nume de utilizator pentru „%s” la %s „%s%s”:"
 
 #: WWW/Library/Implementation/HTAABrow.c:976
 msgid "This client doesn't know how to compose proxy authorization information for scheme"
-msgstr ""
+msgstr "Acest client nu știe cum să compună informațiile de autorizare proxy pentru schemă"
 
 #: WWW/Library/Implementation/HTAABrow.c:1053
 msgid "This client doesn't know how to compose authorization information for scheme"
-msgstr ""
+msgstr "Acest client nu știe cum să compună informațiile de autorizare pentru schemă"
 
 #: WWW/Library/Implementation/HTAABrow.c:1162
 #, c-format
 msgid "Invalid header '%s%s%s%s%s'"
-msgstr ""
+msgstr "Antet nevalid „%s%s%s%s%s”"
 
 #: WWW/Library/Implementation/HTAABrow.c:1266
 msgid "Proxy authorization required -- retrying"
-msgstr ""
+msgstr "Autorizația proxy este necesară -- se încearcă din nou"
 
 #: WWW/Library/Implementation/HTAABrow.c:1322
 msgid "Access without authorization denied -- retrying"
-msgstr ""
+msgstr "Accesul fără autorizație este refuzat -- se încearcă din nou"
 
 #: WWW/Library/Implementation/HTAccess.c:698
 msgid "Access forbidden by rule"
-msgstr ""
+msgstr "Accesul interzis de regulă"
 
 #: WWW/Library/Implementation/HTAccess.c:800
 msgid "Document with POST content not found in cache.  Resubmit?"
-msgstr ""
+msgstr "Documentul cu conținut POST nu a fost găsit în zona de prestocare.  Retrimiteți?"
 
 #: WWW/Library/Implementation/HTAccess.c:953
 msgid "Loading failed, use a previous copy."
-msgstr ""
+msgstr "Încărcarea a eșuat, se folosește o copie anterioară."
 
-#: WWW/Library/Implementation/HTAccess.c:1062 src/GridText.c:8928
+#: WWW/Library/Implementation/HTAccess.c:1062 src/GridText.c:8939
 msgid "Loading incomplete."
-msgstr ""
+msgstr "Încărcarea este incompletă."
 
 #: WWW/Library/Implementation/HTAccess.c:1093
 #, c-format
 msgid "**** HTAccess: socket or file number returned by obsolete load routine!\n"
-msgstr ""
+msgstr "**** HTAccess: numărul soclului sau al fișierului returnat de o rutină de încărcare învechită!\n"
 
 #: WWW/Library/Implementation/HTAccess.c:1095
 #, c-format
 msgid "**** HTAccess: Internal software error.  Please mail lynx-dev@nongnu.org!\n"
-msgstr ""
+msgstr "**** HTAccess: Eroare internă de software.  Trimiteți un raport de eroare la adresa lynx-dev@nongnu.org!\n"
 
 #: WWW/Library/Implementation/HTAccess.c:1096
 #, c-format
 msgid "**** HTAccess: Status returned was: %d\n"
-msgstr ""
+msgstr "**** HTAccess: Starea returnată a fost: %d\n"
 
 #.
 #. * hack: if we fail in HTAccess.c
@@ -2879,104 +2939,108 @@ msgstr ""
 #.
 #: WWW/Library/Implementation/HTAccess.c:1102 src/LYMainLoop.c:8076
 msgid "Can't Access"
-msgstr ""
+msgstr "Nu se poate accesa"
 
 #: WWW/Library/Implementation/HTAccess.c:1110
 msgid "Unable to access document."
-msgstr ""
+msgstr "Nu se poate accesa documentul."
 
 #: WWW/Library/Implementation/HTFTP.c:870
 #, c-format
 msgid "Enter password for user %s@%s:"
-msgstr ""
+msgstr "Introduceți parola pentru utilizatorul %s@%s:"
 
 #: WWW/Library/Implementation/HTFTP.c:898
 msgid "Unable to connect to FTP host."
-msgstr ""
+msgstr "Nu se poate realiza conectarea la gazda FTP."
 
 #: WWW/Library/Implementation/HTFTP.c:1137
 msgid "close master socket"
-msgstr ""
+msgstr "închide soclul principal"
 
-#: WWW/Library/Implementation/HTFTP.c:1194
+#: WWW/Library/Implementation/HTFTP.c:1195
 msgid "socket for master socket"
-msgstr ""
+msgstr "soclu pentru soclul principal"
 
-#: WWW/Library/Implementation/HTFTP.c:2922
+#: WWW/Library/Implementation/HTFTP.c:2925
 msgid "Receiving FTP directory."
-msgstr ""
+msgstr "Se primește directorul FTP."
 
-#: WWW/Library/Implementation/HTFTP.c:3060
+#: WWW/Library/Implementation/HTFTP.c:3063
 #, c-format
 msgid "Transferred %d bytes (%5d)"
-msgstr ""
+msgstr "Transferați %d octeți (%5d)"
 
-#: WWW/Library/Implementation/HTFTP.c:3417
+#: WWW/Library/Implementation/HTFTP.c:3421
 msgid "connect for data"
-msgstr ""
+msgstr "conectare pentru date"
 
-#: WWW/Library/Implementation/HTFTP.c:4094
+#: WWW/Library/Implementation/HTFTP.c:4098
 msgid "Receiving FTP file."
-msgstr ""
+msgstr "Se primește fișierul FTP."
 
 #: WWW/Library/Implementation/HTFinger.c:274
 msgid "Could not set up finger connection."
-msgstr ""
+msgstr "Nu s-a putut stabili conexiunea finger."
 
 #: WWW/Library/Implementation/HTFinger.c:321
 msgid "Could not load data (no sitename in finger URL)"
-msgstr ""
+msgstr "Nu s-au putut încărca datele (nu există un nume de sit în URL-ul finger)"
 
 #: WWW/Library/Implementation/HTFinger.c:325
 msgid "Invalid port number - will only use port 79!"
-msgstr ""
+msgstr "Număr de port nevalid - se va folosi doar portul 79!"
 
 #: WWW/Library/Implementation/HTFinger.c:391
 msgid "Could not access finger host."
-msgstr ""
+msgstr "Nu a putut fi accesată gazda finger."
 
 #: WWW/Library/Implementation/HTFinger.c:399
 msgid "No response from finger server."
-msgstr ""
+msgstr "Nici un răspuns de la serverul finger."
 
 #: WWW/Library/Implementation/HTNews.c:439
 #, c-format
 msgid "Username for news host '%s':"
-msgstr ""
+msgstr "Nume de utilizator pentru gazda de știri „%s”:"
 
 #: WWW/Library/Implementation/HTNews.c:492
 msgid "Change username?"
-msgstr ""
+msgstr "Schimbați numele de utilizator?"
 
 #: WWW/Library/Implementation/HTNews.c:496
 msgid "Username:"
-msgstr ""
+msgstr "Numele utilizatorului:"
 
 #: WWW/Library/Implementation/HTNews.c:521
 #, c-format
 msgid "Password for news host '%s':"
-msgstr ""
+msgstr "Parola pentru gazda de știri „%s”:"
 
 #: WWW/Library/Implementation/HTNews.c:604
 msgid "Change password?"
-msgstr ""
+msgstr "Schimbați parola?"
 
 #: WWW/Library/Implementation/HTNews.c:1725
 #, c-format
 msgid "No matches for: %s"
-msgstr ""
+msgstr "Nicio potrivire pentru: %s"
 
 #: WWW/Library/Implementation/HTNews.c:1775
 msgid ""
 "\n"
 "No articles in this group.\n"
 msgstr ""
+"\n"
+"Nu există articole în acest grup.\n"
 
 #: WWW/Library/Implementation/HTNews.c:1787
 msgid ""
 "\n"
 "No articles in this range.\n"
 msgstr ""
+"\n"
+"Nu există articole în acest interval.\n"
 
 #.
 #. * Set window title.
@@ -2984,11 +3048,11 @@ msgstr ""
 #: WWW/Library/Implementation/HTNews.c:1800
 #, c-format
 msgid "%s,  Articles %d-%d"
-msgstr ""
+msgstr "%s,  Articole %d-%d"
 
 #: WWW/Library/Implementation/HTNews.c:1823
 msgid "Earlier articles"
-msgstr ""
+msgstr "Articole vechi"
 
 #: WWW/Library/Implementation/HTNews.c:1836
 #, c-format
@@ -2997,228 +3061,290 @@ msgid ""
 "There are about %d articles currently available in %s, IDs as follows:\n"
 "\n"
 msgstr ""
+"\n"
+"Există aproximativ %d articole disponibile în prezent în %s, ID-uri după cum urmează:\n"
+"\n"
 
 #: WWW/Library/Implementation/HTNews.c:1898
 msgid "All available articles in "
-msgstr ""
+msgstr "Toate articolele disponibile în "
 
 #: WWW/Library/Implementation/HTNews.c:2112
 msgid "Later articles"
-msgstr ""
+msgstr "Articole ulterioare"
 
 #: WWW/Library/Implementation/HTNews.c:2135
 msgid "Post to "
-msgstr ""
+msgstr "Publicați la "
 
 #: WWW/Library/Implementation/HTNews.c:2356
 msgid "This client does not contain support for SNEWS URLs."
-msgstr ""
+msgstr "Acest client nu oferă suport pentru URL-urile SNEWS."
 
-#: WWW/Library/Implementation/HTNews.c:2563
+#: WWW/Library/Implementation/HTNews.c:2565
 msgid "No target for raw text!"
-msgstr ""
+msgstr "Nicio țintă pentru textul brut!"
 
-#: WWW/Library/Implementation/HTNews.c:2593
+#: WWW/Library/Implementation/HTNews.c:2595
 msgid "Connecting to NewsHost ..."
-msgstr ""
+msgstr "Conectare la gazda de știri ..."
 
-#: WWW/Library/Implementation/HTNews.c:2645
+#: WWW/Library/Implementation/HTNews.c:2647
 #, c-format
 msgid "Could not access %s."
-msgstr ""
+msgstr "Nu s-a putut accesa %s."
 
-#: WWW/Library/Implementation/HTNews.c:2751
+#: WWW/Library/Implementation/HTNews.c:2753
 #, c-format
 msgid "Can't read news info.  News host %.20s responded: %.200s"
-msgstr ""
+msgstr "Nu se pot citi știrile.  Gazda de știri %.20s a răspuns: %.200s"
 
-#: WWW/Library/Implementation/HTNews.c:2755
+#: WWW/Library/Implementation/HTNews.c:2757
 #, c-format
 msgid "Can't read news info, empty response from host %s"
-msgstr ""
+msgstr "Nu se pot citi informațiile despre știri, răspuns gol de la gazdă %s"
 
 #.
 #. * List available newsgroups.  - FM
 #.
-#: WWW/Library/Implementation/HTNews.c:2959
+#: WWW/Library/Implementation/HTNews.c:2961
 msgid "Reading list of available newsgroups."
-msgstr ""
+msgstr "Se citește lista grupurilor de știri disponibile."
 
-#: WWW/Library/Implementation/HTNews.c:2980
+#: WWW/Library/Implementation/HTNews.c:2982
 msgid "Reading list of articles in newsgroup."
-msgstr ""
+msgstr "Se citește lista de articole din grupul de știri."
 
 #.
 #. * Get an article from a news group.  - FM
 #.
-#: WWW/Library/Implementation/HTNews.c:2986
+#: WWW/Library/Implementation/HTNews.c:2988
 msgid "Reading news article."
-msgstr ""
+msgstr "Se citește articolul de știri."
 
-#: WWW/Library/Implementation/HTNews.c:3016
+#: WWW/Library/Implementation/HTNews.c:3018
 msgid "Sorry, could not load requested news."
-msgstr ""
+msgstr "Scuze, nu s-a putut încărca știrile solicitate."
 
 #: WWW/Library/Implementation/HTTCP.c:1339
 msgid "Address has invalid port"
-msgstr ""
+msgstr "Adresa are un port nevalid"
 
 #: WWW/Library/Implementation/HTTCP.c:1410
 msgid "Address length looks invalid"
-msgstr ""
+msgstr "Lungimea adresei pare a fi nevalidă"
+
+#: WWW/Library/Implementation/HTTCP.c:1868
+msgid "SOCKS5: no hostname found."
+msgstr "SOCKS5: nu s-a găsit niciun nume de gazdă."
+
+#: WWW/Library/Implementation/HTTCP.c:1874
+msgid "SOCKS5: hostname too long."
+msgstr "SOCKS5: nume de gazdă prea lung."
+
+#: WWW/Library/Implementation/HTTCP.c:1892
+#, c-format
+msgid "(for %s at %s) SOCKS5"
+msgstr "(pentru %s la %s) SOCKS5"
 
-#: WWW/Library/Implementation/HTTCP.c:1862
-#: WWW/Library/Implementation/HTTCP.c:1880
+#: WWW/Library/Implementation/HTTCP.c:1919
+#: WWW/Library/Implementation/HTTCP.c:1936
 #, c-format
 msgid "Unable to locate remote host %s."
-msgstr ""
+msgstr "Nu se poate localiza gazda de la distanță %s."
 
 #. Not HTProgress, so warning won't be overwritten immediately;
 #. * but not HTAlert, because typically there will be other
 #. * alerts from the callers.  - kw
 #.
-#: WWW/Library/Implementation/HTTCP.c:1877
+#: WWW/Library/Implementation/HTTCP.c:1933
 #: WWW/Library/Implementation/HTTelnet.c:115
 #, c-format
 msgid "Invalid hostname %s"
-msgstr ""
+msgstr "Nume de gazdă nevalid %s"
 
-#: WWW/Library/Implementation/HTTCP.c:1891
+#: WWW/Library/Implementation/HTTCP.c:1945
 #, c-format
 msgid "Making %s connection to %s"
-msgstr ""
+msgstr "Efectuarea conexiunii %s cu %s"
 
-#: WWW/Library/Implementation/HTTCP.c:1902
+#: WWW/Library/Implementation/HTTCP.c:1955
 msgid "socket failed."
-msgstr ""
+msgstr "soclul a eșuat."
 
-#: WWW/Library/Implementation/HTTCP.c:1916
+#: WWW/Library/Implementation/HTTCP.c:1969
 #, c-format
 msgid "socket failed: family %d addr %s port %s."
-msgstr ""
+msgstr "soclu a eșuat: familia %d adresa %s portul %s."
 
-#: WWW/Library/Implementation/HTTCP.c:1940
+#: WWW/Library/Implementation/HTTCP.c:1992
 msgid "Could not make connection non-blocking."
-msgstr ""
+msgstr "Nu se poate face conexiunea fără blocare."
 
-#: WWW/Library/Implementation/HTTCP.c:2006
+#: WWW/Library/Implementation/HTTCP.c:2058
 msgid "Connection failed (too many retries)."
-msgstr ""
+msgstr "Conexiunea a eșuat (prea multe încercări)."
 
-#: WWW/Library/Implementation/HTTCP.c:2201
+#: WWW/Library/Implementation/HTTCP.c:2253
 msgid "Could not restore socket to blocking."
-msgstr ""
+msgstr "Nu s-a putut restabili soclul la blocare."
+
+#. RFC 1928: CONNECT request
+#: WWW/Library/Implementation/HTTCP.c:2285
+#, c-format
+msgid "SOCKS5: connecting to %s"
+msgstr "SOCKS5: conectare la %s"
+
+#: WWW/Library/Implementation/HTTCP.c:2314
+msgid "SOCKS server failure"
+msgstr "Eșec al serverului SOCKS"
+
+#: WWW/Library/Implementation/HTTCP.c:2317
+msgid "connection not allowed by ruleset"
+msgstr "conexiune nepermisă de setul de reguli"
+
+#: WWW/Library/Implementation/HTTCP.c:2320
+msgid "network unreachable"
+msgstr "rețea inaccesibilă"
+
+#: WWW/Library/Implementation/HTTCP.c:2323
+msgid "host unreachable"
+msgstr "gazdă inaccesibilă"
+
+#: WWW/Library/Implementation/HTTCP.c:2326
+msgid "connection refused"
+msgstr "conexiune refuzată"
 
-#: WWW/Library/Implementation/HTTCP.c:2271
+#: WWW/Library/Implementation/HTTCP.c:2329
+msgid "TTL expired"
+msgstr "TTL expirat"
+
+#: WWW/Library/Implementation/HTTCP.c:2332
+msgid "command not supported"
+msgstr "comandă neacceptată"
+
+#: WWW/Library/Implementation/HTTCP.c:2335
+msgid "address type not supported"
+msgstr "tipul de adresă nu este acceptat"
+
+#: WWW/Library/Implementation/HTTCP.c:2338
+msgid "unknown SOCKS error code"
+msgstr "cod de eroare SOCKS necunoscut"
+
+#: WWW/Library/Implementation/HTTCP.c:2383
+msgid "unexpected reply\n"
+msgstr "răspuns neașteptat\n"
+
+#: WWW/Library/Implementation/HTTCP.c:2460
 msgid "Socket read failed (too many tries)."
-msgstr ""
+msgstr "Citirea soclului a eșuat (prea multe încercări)."
 
 #: WWW/Library/Implementation/HTTP.c:165
 #, c-format
 msgid "SSL callback:%s, preverify_ok=%d, ssl_okay=%d"
-msgstr ""
+msgstr "returnare de apel SSL:%s, preverify_ok=%d, ssl_okay=%d"
 
 #: WWW/Library/Implementation/HTTP.c:668
 #, c-format
 msgid "User/password contains only punctuation: %s"
-msgstr ""
+msgstr "Numele utilizatorului/parola conține doar semne de punctuație: %s"
 
 #: WWW/Library/Implementation/HTTP.c:672
 #, c-format
 msgid "User/password may be confused with hostname: '%s' (e.g, '%s')"
-msgstr ""
+msgstr "Numele utilizatorului/parola poate fi confundată cu numele gazdei: „%s” (de exemplu, „%s”)"
 
 #: WWW/Library/Implementation/HTTP.c:733
 #, c-format
 msgid "Certificate issued by: %s"
-msgstr ""
+msgstr "Certificat emis de: %s"
 
-#: WWW/Library/Implementation/HTTP.c:920
+#: WWW/Library/Implementation/HTTP.c:922
 msgid "This client does not contain support for HTTPS URLs."
-msgstr ""
+msgstr "Acest client nu oferă suport pentru URL-uri HTTPS."
 
-#: WWW/Library/Implementation/HTTP.c:945
+#: WWW/Library/Implementation/HTTP.c:947
 msgid "Unable to connect to remote host."
-msgstr ""
+msgstr "Nu se poate conecta la gazda de la distanță."
 
-#: WWW/Library/Implementation/HTTP.c:988
+#: WWW/Library/Implementation/HTTP.c:990
 msgid "Retrying connection without TLS."
-msgstr ""
+msgstr "Se reîncearcă conectarea fără TLS."
 
-#: WWW/Library/Implementation/HTTP.c:1040
+#: WWW/Library/Implementation/HTTP.c:1042
 msgid "GnuTLS error when trying to verify certificate."
-msgstr ""
+msgstr "Eroare GnuTLS la încercarea de a verifica certificatul."
 
-#: WWW/Library/Implementation/HTTP.c:1053
+#: WWW/Library/Implementation/HTTP.c:1055
 msgid "the certificate has no known issuer"
-msgstr ""
+msgstr "certificatul nu are un emitent cunoscut"
 
-#: WWW/Library/Implementation/HTTP.c:1055
+#: WWW/Library/Implementation/HTTP.c:1057
 msgid "no issuer was found"
-msgstr ""
+msgstr "emitentul nu a fost găsit"
 
-#: WWW/Library/Implementation/HTTP.c:1057
+#: WWW/Library/Implementation/HTTP.c:1059
 msgid "issuer is not a CA"
-msgstr ""
+msgstr "emitentul nu este o Autoritate de certificare"
 
-#: WWW/Library/Implementation/HTTP.c:1059
+#: WWW/Library/Implementation/HTTP.c:1061
 msgid "the certificate has been revoked"
-msgstr ""
+msgstr "certificatul a fost revocat"
 
-#: WWW/Library/Implementation/HTTP.c:1061
+#: WWW/Library/Implementation/HTTP.c:1063
 msgid "the certificate is not trusted"
-msgstr ""
+msgstr "certificatul nu este de încredere"
 
-#: WWW/Library/Implementation/HTTP.c:1136
+#: WWW/Library/Implementation/HTTP.c:1138
 #, c-format
 msgid "Verified connection to %s (cert=%s)"
-msgstr ""
+msgstr "Conexiune verificată la %s (certificat=%s)"
 
-#: WWW/Library/Implementation/HTTP.c:1186
-#: WWW/Library/Implementation/HTTP.c:1228
+#: WWW/Library/Implementation/HTTP.c:1188
+#: WWW/Library/Implementation/HTTP.c:1230
 #, c-format
 msgid "Verified connection to %s (subj=%s)"
-msgstr ""
+msgstr "Conexiune verificată la %s (subiect=%s)"
 
-#: WWW/Library/Implementation/HTTP.c:1258
+#: WWW/Library/Implementation/HTTP.c:1260
 msgid "Can't find common name in certificate"
-msgstr ""
+msgstr "Nu se poate găsi numele comun în certificat"
 
-#: WWW/Library/Implementation/HTTP.c:1261
+#: WWW/Library/Implementation/HTTP.c:1263
 #, c-format
 msgid "SSL error:host(%s)!=cert(%s)-Continue?"
-msgstr ""
+msgstr "eroare SSL:gazda(%s)!=certificat(%s)-Continuați?"
 
-#: WWW/Library/Implementation/HTTP.c:1268
+#: WWW/Library/Implementation/HTTP.c:1270
 msgid "SSL error"
-msgstr ""
+msgstr "eroare SSL"
 
-#: WWW/Library/Implementation/HTTP.c:1276
+#: WWW/Library/Implementation/HTTP.c:1278
 #, c-format
 msgid "UNVERIFIED connection to %s (cert=%s)"
-msgstr ""
+msgstr "Conexiune NEVERIFICATĂ la %s (certificat=%s)"
 
-#: WWW/Library/Implementation/HTTP.c:1285
+#: WWW/Library/Implementation/HTTP.c:1287
 #, c-format
 msgid "Secure %d-bit %s (%s) HTTP connection"
-msgstr ""
+msgstr "Conexiune HTTP securizată pe %d-biți %s (%s)"
 
-#: WWW/Library/Implementation/HTTP.c:1755
+#: WWW/Library/Implementation/HTTP.c:1757
 msgid "Sending HTTP request."
-msgstr ""
+msgstr "Se trimite cererea HTTP."
 
-#: WWW/Library/Implementation/HTTP.c:1797
+#: WWW/Library/Implementation/HTTP.c:1799
 msgid "Unexpected network write error; connection aborted."
-msgstr ""
+msgstr "Eroare neașteptată de scriere în rețea; conexiunea a fost întreruptă."
 
-#: WWW/Library/Implementation/HTTP.c:1803
+#: WWW/Library/Implementation/HTTP.c:1805
 msgid "HTTP request sent; waiting for response."
-msgstr ""
+msgstr "Cererea HTTP a fost trimisă; se așteaptă răspunsul."
 
-#: WWW/Library/Implementation/HTTP.c:1876
-#: WWW/Library/Implementation/HTTP.c:1886
+#: WWW/Library/Implementation/HTTP.c:1878
+#: WWW/Library/Implementation/HTTP.c:1888
 msgid "Unexpected network read error; connection aborted."
-msgstr ""
+msgstr "Eroare neașteptată de citire în rețea; conexiunea a fost întreruptă."
 
 #.
 #. * HTTP/1.1 Informational statuses.
@@ -3229,9 +3355,9 @@ msgstr ""
 #. * line and possibly other headers, so we'll deal with them by
 #. * showing the full header to the user as text/plain.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:2089
+#: WWW/Library/Implementation/HTTP.c:2091
 msgid "Got unexpected Informational Status."
-msgstr ""
+msgstr "S-a primit o stare informațională neașteptată."
 
 #.
 #. * Reset Content.  The server has fulfilled the request but
@@ -3239,9 +3365,9 @@ msgstr ""
 #. * content.  We'll instruct the user to do that, and
 #. * restore the current document.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:2123
+#: WWW/Library/Implementation/HTTP.c:2125
 msgid "Request fulfilled.  Reset Content."
-msgstr ""
+msgstr "Cererea a fost finalizată. Se restaurează conținutul."
 
 #. Not Modified
 #.
@@ -3249,328 +3375,338 @@ msgstr ""
 #. * status is inappropriate.  We'll deal with it by showing
 #. * the full header to the user as text/plain.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:2240
+#: WWW/Library/Implementation/HTTP.c:2242
 msgid "Got unexpected 304 Not Modified status."
-msgstr ""
+msgstr "S-a primit eroarea neașteptată: 304, starea nu este modificată."
 
-#: WWW/Library/Implementation/HTTP.c:2303
+#: WWW/Library/Implementation/HTTP.c:2305
 msgid "Redirection of POST content requires user approval."
-msgstr ""
+msgstr "Redirecționarea conținutului POST necesită aprobarea utilizatorului."
 
-#: WWW/Library/Implementation/HTTP.c:2318
+#: WWW/Library/Implementation/HTTP.c:2320
 msgid "Have POST content.  Treating Permanent Redirection as Temporary.\n"
-msgstr ""
+msgstr "Aveți conținut POST.  Se consideră că redirecționarea permanentă este temporară.\n"
 
-#: WWW/Library/Implementation/HTTP.c:2364
+#: WWW/Library/Implementation/HTTP.c:2366
 msgid "Retrying with access authorization information."
-msgstr ""
+msgstr "Se reîncearcă cu informații de autorizare a accesului."
 
-#: WWW/Library/Implementation/HTTP.c:2376
+#: WWW/Library/Implementation/HTTP.c:2378
 msgid "Show the 401 message body?"
-msgstr ""
+msgstr "Se afișează corpul mesajului 401?"
 
-#: WWW/Library/Implementation/HTTP.c:2420
+#: WWW/Library/Implementation/HTTP.c:2422
 msgid "Show the 407 message body?"
-msgstr ""
+msgstr "Se afișează corpul mesajului 407?"
 
 #.
 #. * Bad or unknown server_status number.  Take a chance and hope
 #. * there is something to display.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:2520
+#: WWW/Library/Implementation/HTTP.c:2522
 msgid "Unknown status reply from server!"
-msgstr ""
+msgstr "Răspuns de stare necunoscut de la server!"
 
 #: WWW/Library/Implementation/HTTelnet.c:113
 #, c-format
 msgid "remote %s session:"
-msgstr ""
+msgstr "sesiunea de la distanță %s:"
 
 #: WWW/Library/Implementation/HTWAIS.c:163
 msgid "Could not connect to WAIS server."
-msgstr ""
+msgstr "Nu a fost posibilă conectarea la serverul WAIS."
 
 #: WWW/Library/Implementation/HTWAIS.c:171
 msgid "Could not open WAIS connection for reading."
-msgstr ""
+msgstr "Nu s-a putut deschide conexiunea WAIS pentru citire."
 
 #: WWW/Library/Implementation/HTWAIS.c:193
 msgid "Diagnostic code is "
-msgstr ""
+msgstr "Codul de diagnostic este "
 
 #: WWW/Library/Implementation/HTWAIS.c:460
 msgid "Index "
-msgstr ""
+msgstr "Indexul "
 
 #: WWW/Library/Implementation/HTWAIS.c:464
 #, c-format
 msgid " contains the following %d item%s relevant to \""
-msgstr ""
+msgstr " conține următoarele %d elemente%s relevante pentru \""
 
 #: WWW/Library/Implementation/HTWAIS.c:472
 msgid "The first figure after each entry is its relative score, "
-msgstr ""
+msgstr "Primul număr după fiecare intrare este punctajul său relativ, "
 
 #: WWW/Library/Implementation/HTWAIS.c:473
 msgid "the second is the number of lines in the item."
-msgstr ""
+msgstr "al doilea este numărul de linii din articol."
 
 #: WWW/Library/Implementation/HTWAIS.c:515
 msgid " (bad file name)"
-msgstr ""
+msgstr " (nume de fișier incorect)"
 
 #: WWW/Library/Implementation/HTWAIS.c:541
 msgid "(bad doc id)"
-msgstr ""
+msgstr "(id de document eronat)"
 
 #: WWW/Library/Implementation/HTWAIS.c:557
 msgid "(Short Header record, can't display)"
-msgstr ""
+msgstr "(înregistrare cu antet scurt, nu se poate afișa)"
 
 #: WWW/Library/Implementation/HTWAIS.c:564
 msgid ""
 "\n"
 "Long Header record, can't display\n"
 msgstr ""
+"\n"
+"Înregistrare lungă a antetului, nu se poate afișa\n"
 
 #: WWW/Library/Implementation/HTWAIS.c:571
 msgid ""
 "\n"
 "Text record\n"
 msgstr ""
+"\n"
+"Înregistrare de text\n"
 
 #: WWW/Library/Implementation/HTWAIS.c:580
 msgid ""
 "\n"
 "Headline record, can't display\n"
 msgstr ""
+"\n"
+"Înregistrarea titlului, nu se poate afișa\n"
 
 #: WWW/Library/Implementation/HTWAIS.c:588
 msgid ""
 "\n"
 "Code record, can't display\n"
 msgstr ""
+"\n"
+"Înregistrare de cod, nu se poate afișa\n"
 
 #: WWW/Library/Implementation/HTWAIS.c:692
 msgid "Syntax error in WAIS URL"
-msgstr ""
+msgstr "Eroare de sintaxă în adresa URL WAIS"
 
 #: WWW/Library/Implementation/HTWAIS.c:764
 msgid " (WAIS Index)"
-msgstr ""
+msgstr " (indexul WAIS)"
 
 #: WWW/Library/Implementation/HTWAIS.c:771
 msgid "WAIS Index: "
-msgstr ""
+msgstr "Index WAIS: "
 
 #: WWW/Library/Implementation/HTWAIS.c:777
 msgid "This is a link for searching the "
-msgstr ""
+msgstr "Aceasta este o legătură pentru căutarea în "
 
 #: WWW/Library/Implementation/HTWAIS.c:781
 msgid " WAIS Index.\n"
-msgstr ""
+msgstr " indexul WAIS.\n"
 
 #: WWW/Library/Implementation/HTWAIS.c:810
 msgid ""
 "\n"
 "Enter the 's'earch command and then specify search words.\n"
 msgstr ""
+"\n"
+"Introduceți comanda „s” caută și apoi specificați cuvintele de căutare.\n"
 
 #: WWW/Library/Implementation/HTWAIS.c:832
 msgid " (in "
-msgstr ""
+msgstr " (în "
 
 #: WWW/Library/Implementation/HTWAIS.c:841
 msgid "WAIS Search of \""
-msgstr ""
+msgstr "Căutare WAIS de \""
 
 #: WWW/Library/Implementation/HTWAIS.c:845
 msgid "\" in: "
-msgstr ""
+msgstr "\" în: "
 
 #: WWW/Library/Implementation/HTWAIS.c:860
 msgid "HTWAIS: Request too large."
-msgstr ""
+msgstr "HTWAIS: Cererea este prea mare."
 
 #: WWW/Library/Implementation/HTWAIS.c:869
 msgid "Searching WAIS database..."
-msgstr ""
+msgstr "Căutând în baza de date WAIS..."
 
 #: WWW/Library/Implementation/HTWAIS.c:879
 msgid "Search interrupted."
-msgstr ""
+msgstr "Căutarea a fost întreruptă."
 
 #: WWW/Library/Implementation/HTWAIS.c:930
 msgid "Can't convert format of WAIS document"
-msgstr ""
+msgstr "Nu se poate converti formatul documentului WAIS"
 
 #: WWW/Library/Implementation/HTWAIS.c:974
 msgid "HTWAIS: Request too long."
-msgstr ""
+msgstr "HTWAIS: Cererea este prea lungă."
 
 #.
 #. * Actually do the transaction given by request_message.
 #.
 #: WWW/Library/Implementation/HTWAIS.c:988
 msgid "Fetching WAIS document..."
-msgstr ""
+msgstr "Se obține documentul WAIS..."
 
 #. display_search_response(target, retrieval_response,
 #. wais_database, keywords);
 #: WWW/Library/Implementation/HTWAIS.c:1027
 msgid "No text was returned!\n"
-msgstr ""
+msgstr "Nici un text nu a fost returnat!\n"
 
 #: WWW/Library/Implementation/HTWSRC.c:302
 msgid " NOT GIVEN in source file; "
-msgstr ""
+msgstr " NU ESTE DAT în fișierul sursă; "
 
 #: WWW/Library/Implementation/HTWSRC.c:325
 msgid " WAIS source file"
-msgstr ""
+msgstr " fișier sursă WAIS"
 
 #: WWW/Library/Implementation/HTWSRC.c:332
 msgid " description"
-msgstr ""
+msgstr " descriere"
 
 #: WWW/Library/Implementation/HTWSRC.c:342
 msgid "Access links"
-msgstr ""
+msgstr "Acces legături"
 
 #: WWW/Library/Implementation/HTWSRC.c:363
 msgid "Direct access"
-msgstr ""
+msgstr "Acces direct"
 
 #. * Proxy will be used if defined, so let user know that - FM *
 #: WWW/Library/Implementation/HTWSRC.c:366
 msgid " (or via proxy server, if defined)"
-msgstr ""
+msgstr " (sau prin server proxy, dacă este definit)"
 
 #: WWW/Library/Implementation/HTWSRC.c:381
 msgid "Maintainer"
-msgstr ""
+msgstr "Administrator"
 
 #: WWW/Library/Implementation/HTWSRC.c:389
 msgid "Host"
-msgstr ""
+msgstr "Gazda"
 
 #: src/GridText.c:723
 msgid "Memory exhausted, display interrupted!"
-msgstr ""
+msgstr "Memorie epuizată, afișare întreruptă!"
 
 #: src/GridText.c:728
 msgid "Memory exhausted, will interrupt transfer!"
-msgstr ""
+msgstr "Memorie epuizată, transferul va fi întrerupt!"
 
 #: src/GridText.c:1719
 #, c-format
 msgid " (l%d of %d)"
-msgstr ""
+msgstr " (l%d din %d)"
 
 #: src/GridText.c:1728
 #, c-format
 msgid " (p%d of %d)"
-msgstr ""
+msgstr " (p%d din %d)"
 
-#: src/GridText.c:3713
+#: src/GridText.c:3720
 msgid " *** MEMORY EXHAUSTED ***"
-msgstr ""
+msgstr " *** MEMORIE EPUIZATĂ ***"
 
-#: src/GridText.c:6211
+#: src/GridText.c:6220
 msgid "text entry field"
-msgstr ""
+msgstr "câmp de introducere a textului"
 
-#: src/GridText.c:6214
+#: src/GridText.c:6223
 msgid "password entry field"
-msgstr ""
+msgstr "câmp de introducere a parolei"
 
-#: src/GridText.c:6217
+#: src/GridText.c:6226
 msgid "checkbox"
-msgstr ""
+msgstr "căsuță de verificare"
 
-#: src/GridText.c:6220
+#: src/GridText.c:6229
 msgid "radio button"
-msgstr ""
+msgstr "buton radio"
 
-#: src/GridText.c:6223
+#: src/GridText.c:6232
 msgid "submit button"
-msgstr ""
+msgstr "buton de trimitere"
 
-#: src/GridText.c:6226
+#: src/GridText.c:6235
 msgid "reset button"
-msgstr ""
+msgstr "buton de reinițiere"
 
-#: src/GridText.c:6229
+#: src/GridText.c:6238
 msgid "script button"
-msgstr ""
+msgstr "buton de script"
 
-#: src/GridText.c:6232
+#: src/GridText.c:6241
 msgid "popup menu"
-msgstr ""
+msgstr "meniu emergent"
 
-#: src/GridText.c:6235
+#: src/GridText.c:6244
 msgid "hidden form field"
-msgstr ""
+msgstr "câmp de formular ascuns"
 
-#: src/GridText.c:6238
+#: src/GridText.c:6247
 msgid "text entry area"
-msgstr ""
+msgstr "zonă de introducere a textului"
 
-#: src/GridText.c:6241
+#: src/GridText.c:6250
 msgid "range entry field"
-msgstr ""
+msgstr "câmp de introducere a unui interval"
 
-#: src/GridText.c:6244
+#: src/GridText.c:6253
 msgid "file entry field"
-msgstr ""
+msgstr "câmp de introducere a numelui de fișier"
 
-#: src/GridText.c:6247
+#: src/GridText.c:6256
 msgid "text-submit field"
-msgstr ""
+msgstr "câmp de trimitere text"
 
-#: src/GridText.c:6250
+#: src/GridText.c:6259
 msgid "image-submit button"
-msgstr ""
+msgstr "buton de trimitere imagine"
 
-#: src/GridText.c:6253
+#: src/GridText.c:6262
 msgid "keygen field"
-msgstr ""
+msgstr "câmp de generare a cheilor"
 
-#: src/GridText.c:6256
+#: src/GridText.c:6265
 msgid "unknown form field"
-msgstr ""
+msgstr "câmp de formular necunoscut"
 
-#: src/GridText.c:6276 src/GridText.c:6283 src/LYList.c:249
+#: src/GridText.c:6285 src/GridText.c:6292 src/LYList.c:249
 msgid "unknown field or link"
-msgstr ""
+msgstr "câmp sau legătură necunoscută"
 
-#: src/GridText.c:10711
+#: src/GridText.c:10722
 msgid "Can't open file for uploading"
-msgstr ""
+msgstr "Nu se poate deschide fișierul pentru încărcare"
 
-#: src/GridText.c:11899
+#: src/GridText.c:11910
 #, c-format
 msgid "Submitting %s"
-msgstr ""
+msgstr "Se trimite %s"
 
 #. ugliness has happened; inform user and do the best we can
-#: src/GridText.c:12969
+#: src/GridText.c:12980
 msgid "Hang Detect: TextAnchor struct corrupted - suggest aborting!"
-msgstr ""
+msgstr "Problemă detectată: structura TextAnchor coruptă - se sugerează întreruperea!"
 
 #. don't show previous state
-#: src/GridText.c:13128
+#: src/GridText.c:13139
 msgid "Wrap lines to fit displayed area?"
-msgstr ""
+msgstr "Se pliază liniile pentru a se potrivi zonei afișate?"
 
-#: src/GridText.c:13758
+#: src/GridText.c:13772
 msgid "Very long lines have been truncated!"
-msgstr ""
+msgstr "Liniile foarte lungi au fost trunchiate!"
 
 #: src/HTAlert.c:164 src/LYShowInfo.c:389 src/LYShowInfo.c:393
 msgid "bytes"
-msgstr ""
+msgstr "octeți"
 
 #.
 #. * If we know the total size of the file, we can compute
@@ -3579,31 +3715,31 @@ msgstr ""
 #: src/HTAlert.c:328 src/HTAlert.c:354
 #, c-format
 msgid "Read %s of data"
-msgstr ""
+msgstr "%s de date citite"
 
 #: src/HTAlert.c:351
 #, c-format
 msgid "Read %s of %s of data"
-msgstr ""
+msgstr "%s din %s de date citite"
 
 #: src/HTAlert.c:360
 #, c-format
 msgid ", %s/sec"
-msgstr ""
+msgstr ", %s/s"
 
 #: src/HTAlert.c:374
 #, c-format
 msgid " (stalled for %s)"
-msgstr ""
+msgstr " (blocat pentru %s)"
 
 #: src/HTAlert.c:378
 #, c-format
 msgid ", ETA %s"
-msgstr ""
+msgstr ", timp estimat %s"
 
 #: src/HTAlert.c:400
 msgid " (Press 'z' to abort)"
-msgstr ""
+msgstr " (Apăsați „z” pentru a întrerupe)"
 
 #. Meta-note: don't move the following note from its place right
 #. in front of the first gettext().  As it is now, it should
@@ -3632,11 +3768,11 @@ msgstr ""
 #.
 #: src/HTAlert.c:438 src/HTAlert.c:486
 msgid "yes"
-msgstr ""
+msgstr "da"
 
 #: src/HTAlert.c:441 src/HTAlert.c:487
 msgid "no"
-msgstr ""
+msgstr "nu"
 
 #.
 #. * Special-purpose workaround for gettext support (we should do
@@ -3656,35 +3792,35 @@ msgstr ""
 #.
 #: src/HTAlert.c:938
 msgid "Y/N/A/V"
-msgstr ""
+msgstr "D/N/Întotdeauna/niciOdată"
 
-#: src/HTML.c:5767
+#: src/HTML.c:5769
 msgid "Description:"
-msgstr ""
+msgstr "Descriere:"
 
-#: src/HTML.c:5772
+#: src/HTML.c:5774
 msgid "(none)"
-msgstr ""
+msgstr "(niciunul)"
 
-#: src/HTML.c:5776
+#: src/HTML.c:5778
 msgid "Filepath:"
-msgstr ""
+msgstr "Ruta la fișier:"
 
-#: src/HTML.c:5782
+#: src/HTML.c:5784
 msgid "(unknown)"
-msgstr ""
+msgstr "(necunoscut)"
 
-#: src/HTML.c:7220
+#: src/HTML.c:7224
 msgid "Document has only hidden links.  Use the 'l'ist command."
-msgstr ""
+msgstr "Documentul are doar legături ascunse.  Utilizați comanda „l”istare."
 
-#: src/HTML.c:7721
+#: src/HTML.c:7725
 msgid "Source cache error - disk full?"
-msgstr ""
+msgstr "Eroare a zonei de prestocare a sursei - disc plin?"
 
-#: src/HTML.c:7734
+#: src/HTML.c:7738
 msgid "Source cache error - not enough memory!"
-msgstr ""
+msgstr "Eroare a zonei de prestocare a sursei - nu este suficientă memorie!"
 
 #: src/LYBookmark.c:167
 msgid ""
@@ -3693,6 +3829,12 @@ msgid ""
 "     remove bookmark command, it is usually the 'R' key but may have\n"
 "     been remapped by you or your system administrator."
 msgstr ""
+"     Acest fișier este o reprezentare HTML a fișierului cu lista de pagini\n"
+"     favorite a X Mosaic.\n"
+"     Legăturile neactualizate sau nevalide pot fi eliminate prin utilizarea\n"
+"     comenzii de eliminare a marcajelor, care este de obicei tasta „R”, dar\n"
+"     care poate fi modificată de către dvs. sau de către administratorul de\n"
+"     sistem."
 
 #: src/LYBookmark.c:380
 #, c-format
@@ -3700,6 +3842,8 @@ msgid ""
 "     You can delete links by the 'R' key<br>\n"
 "<ol>\n"
 msgstr ""
+"     Puteți șterge legăturile cu ajutorul tastei „R”.<br>\n"
+"<ol>\n"
 
 #: src/LYBookmark.c:383
 msgid ""
@@ -3707,12 +3851,18 @@ msgid ""
 "     the 'R' key but may have been remapped by you or your system\n"
 "     administrator."
 msgstr ""
+"     Puteți șterge legăturile folosind comanda de eliminare a marcajelor.\n"
+"     Aceasta este de obicei tasta \"R\", dar este posibil ca dvs. sau\n"
+"     administratorul de sistem să o fi reconfigurat."
 
 #: src/LYBookmark.c:387
 msgid ""
 "     This file also may be edited with a standard text editor to delete\n"
 "     outdated or invalid links, or to change their order."
 msgstr ""
+"     De asemenea, acest fișier poate fi editat cu un editor de text standard\n"
+"     pentru a șterge legăturile învechite sau nevalide sau pentru a le schimba\n"
+"     ordinea."
 
 #: src/LYBookmark.c:390
 msgid ""
@@ -3721,16 +3871,20 @@ msgid ""
 "      or add other HTML markup.\n"
 "      Make sure any bookmark link is saved as a single line."
 msgstr ""
+"Notă: dacă editați manual acest fișier, nu trebuie să modificați formatul\n"
+"      din interiorul rândurilor sau să adăugați alte marcaje HTML.\n"
+"      Asigurați-vă că orice legătură de marcaj a unei pagini favorite este\n"
+"      salvată ca un singur rând."
 
 #: src/LYBookmark.c:686
 #, c-format
 msgid "File may be recoverable from %s during this session"
-msgstr ""
+msgstr "Este posibil ca fișierul să poată fi recuperat de la %s în timpul acestei sesiuni"
 
 #: src/LYCgi.c:161
 #, c-format
 msgid "Do you want to execute \"%s\"?"
-msgstr ""
+msgstr "Doriți să executați «%s»?"
 
 #.
 #. * Neither the path as given nor any components examined by backing up
@@ -3738,80 +3892,82 @@ msgstr ""
 #.
 #: src/LYCgi.c:276
 msgid "Unable to access cgi script"
-msgstr ""
+msgstr "Nu se poate accesa scriptul cgi"
 
 #: src/LYCgi.c:709 src/LYCgi.c:712
 msgid "Good Advice"
-msgstr ""
+msgstr "Sfat bun"
 
 #: src/LYCgi.c:716
 msgid "An excellent http server for VMS is available via"
-msgstr ""
+msgstr "Un server http excelent pentru VMS este disponibil prin intermediul"
 
 #: src/LYCgi.c:723
 msgid "this link"
-msgstr ""
+msgstr "acestei legături"
 
 #: src/LYCgi.c:727
 msgid "It provides state of the art CGI script support.\n"
-msgstr ""
+msgstr "Acesta oferă suport de ultimă generație pentru scripturi CGI.\n"
 
 #: src/LYClean.c:115
 msgid "Exiting via interrupt:"
-msgstr ""
+msgstr "Ieșire prin întrerupere:"
 
 #: src/LYCookie.c:2651
 msgid "(from a previous session)"
-msgstr ""
+msgstr "(de la o sesiune anterioară)"
 
 #: src/LYCookie.c:2712
 msgid "Maximum Gobble Date:"
-msgstr ""
+msgstr "Data limită de expirare:"
 
 #: src/LYCookie.c:2751
 msgid "Internal"
-msgstr ""
+msgstr "Intern"
 
 #: src/LYCookie.c:2752
 msgid "cookie_domain_flag_set error, aborting program"
-msgstr ""
+msgstr "eroare cookie_domain_flag_flag_set, se întrerupe programul"
 
-#: src/LYCurses.c:1127
+#: src/LYCurses.c:1136
 msgid "Terminal reinitialisation failed - unknown terminal type?"
-msgstr ""
+msgstr "Reinițializarea terminalului a eșuat - tip de terminal necunoscut?"
 
-#: src/LYCurses.c:1334
+#: src/LYCurses.c:1343
 msgid "Terminal initialisation failed - unknown terminal type?"
-msgstr ""
+msgstr "Inițializarea terminalului a eșuat - tip de terminal necunoscut?"
 
-#: src/LYCurses.c:1828
+#: src/LYCurses.c:1837
 msgid "Terminal ="
-msgstr ""
+msgstr "Terminal ="
 
-#: src/LYCurses.c:1832
+#: src/LYCurses.c:1841
 msgid "You must use a vt100, 200, etc. terminal with this program."
-msgstr ""
+msgstr "Trebuie să utilizați un terminal vt100, 200, etc. cu acest program."
 
-#: src/LYCurses.c:1881
+#: src/LYCurses.c:1890
 msgid "Your Terminal type is unknown!"
-msgstr ""
+msgstr "Tipul terminalului dvs. este necunoscut!"
 
-#: src/LYCurses.c:1882
+#: src/LYCurses.c:1891
 msgid "Enter a terminal type:"
-msgstr ""
+msgstr "Introduceți un tip de terminal:"
 
-#: src/LYCurses.c:1896
+#: src/LYCurses.c:1905
 msgid "TERMINAL TYPE IS SET TO"
-msgstr ""
+msgstr "TIPUL DE TERMINAL ESTE FIXAT LA"
 
-#: src/LYCurses.c:2455
+#: src/LYCurses.c:2464
 #, c-format
 msgid ""
 "\n"
 "A Fatal error has occurred in %s Ver. %s\n"
 msgstr ""
+"\n"
+"S-a produs o eroare fatală în %s Ver. %s\n"
 
-#: src/LYCurses.c:2458
+#: src/LYCurses.c:2467
 #, c-format
 msgid ""
 "\n"
@@ -3821,662 +3977,676 @@ msgid ""
 "operating system name with version number, the TCPIP implementation, the\n"
 "TRACEBACK if it can be captured, and any other relevant information.\n"
 msgstr ""
+"\n"
+"Anunțați administratorul de sistem pentru a confirma o hibă și, dacă\n"
+"se confirmă, pentru a anunța lista de discuții lynx-dev.  Rapoartele\n"
+"de erori trebuie să conțină descrieri concise ale comenzii și/sau ale\n"
+"adresei URl care cauzează problema, numele sistemului de operare cu\n"
+"numărul versiunii, implementarea TCP/IP, TRACEBACK-ul (traseul de\n"
+"urmărire a execuției), dacă poate fi capturat, și orice alte informații\n"
+"ce se consideră relevante.\n"
 
 #: src/LYEdit.c:272
 #, c-format
 msgid "Error starting editor, %s"
-msgstr ""
+msgstr "Eroare la pornirea editorului, %s"
 
 #: src/LYEdit.c:275
 msgid "Editor killed by signal"
-msgstr ""
+msgstr "Editor omorât de semnal"
 
 #: src/LYEdit.c:280
 #, c-format
 msgid "Editor returned with error status %s"
-msgstr ""
+msgstr "Editorul a returnat starea de eroare %s"
 
 #: src/LYDownload.c:511
 msgid "Downloaded link:"
-msgstr ""
+msgstr "Legătură de descărcare:"
 
 #: src/LYDownload.c:516
 msgid "Suggested file name:"
-msgstr ""
+msgstr "Nume de fișier sugerat:"
 
 #: src/LYDownload.c:521
 msgid "Standard download options:"
-msgstr ""
+msgstr "Opțiuni de descărcare standard:"
 
 #: src/LYDownload.c:522
 msgid "Download options:"
-msgstr ""
+msgstr "Opțiuni de descărcare:"
 
 #: src/LYDownload.c:538
 msgid "Save to disk"
-msgstr ""
+msgstr "Salvează pe disc"
 
 #: src/LYDownload.c:552
 msgid "View temporary file"
-msgstr ""
+msgstr "Vizualizați fișierul temporar"
 
 #: src/LYDownload.c:559
 msgid "Save to disk disabled."
-msgstr ""
+msgstr "Salvarea pe disc este dezactivată."
 
 #: src/LYDownload.c:563 src/LYPrint.c:1331
 msgid "Local additions:"
-msgstr ""
+msgstr "Adăugări locale:"
 
 #: src/LYDownload.c:574 src/LYUpload.c:206
 msgid "No Name Given"
-msgstr ""
+msgstr "Nici un nume dat"
 
-#: src/LYHistory.c:676
+#: src/LYHistory.c:673
 msgid "You selected:"
-msgstr ""
+msgstr "Ați selectat:"
 
-#: src/LYHistory.c:700 src/LYHistory.c:929
+#: src/LYHistory.c:697 src/LYHistory.c:926
 msgid "(no address)"
-msgstr ""
+msgstr "(fără adresă)"
 
-#: src/LYHistory.c:704
+#: src/LYHistory.c:701
 msgid " (internal)"
-msgstr ""
+msgstr " (intern)"
 
-#: src/LYHistory.c:706
+#: src/LYHistory.c:703
 msgid " (was internal)"
-msgstr ""
+msgstr " (a fost intern)"
 
-#: src/LYHistory.c:804
+#: src/LYHistory.c:801
 msgid " (From History)"
-msgstr ""
+msgstr " (din istoric)"
 
-#: src/LYHistory.c:849
+#: src/LYHistory.c:846
 msgid "You visited (POSTs, bookmark, menu and list files excluded):"
-msgstr ""
+msgstr "Ați vizitat (POST-uri, marcaje, meniu și listă de fișiere; excluse):"
 
-#: src/LYHistory.c:1151
+#: src/LYHistory.c:1148
 msgid "(No messages yet)"
-msgstr ""
+msgstr "(Nici un mesaj încă)"
 
 #: src/LYLeaks.c:222
 msgid "Invalid pointer detected."
-msgstr ""
+msgstr "A fost detectat un indicator nevalid."
 
 #: src/LYLeaks.c:224 src/LYLeaks.c:262
 msgid "Sequence:"
-msgstr ""
+msgstr "Secvență:"
 
 #: src/LYLeaks.c:227 src/LYLeaks.c:265
 msgid "Pointer:"
-msgstr ""
+msgstr "Indicator:"
 
 #: src/LYLeaks.c:236 src/LYLeaks.c:243 src/LYLeaks.c:284
 msgid "FileName:"
-msgstr ""
+msgstr "Numele fișierului:"
 
 #: src/LYLeaks.c:239 src/LYLeaks.c:246 src/LYLeaks.c:287 src/LYLeaks.c:298
 msgid "LineCount:"
-msgstr ""
+msgstr "Numărul de linii:"
 
 #: src/LYLeaks.c:260
 msgid "Memory leak detected."
-msgstr ""
+msgstr "A fost detectată o pierdere de memorie."
 
 #: src/LYLeaks.c:268
 msgid "Contains:"
-msgstr ""
+msgstr "Conține:"
 
 #: src/LYLeaks.c:281
 msgid "ByteSize:"
-msgstr ""
+msgstr "Dimensiunea în octeți:"
 
 #: src/LYLeaks.c:295
 msgid "realloced:"
-msgstr ""
+msgstr "realocat(e):"
 
 #: src/LYLeaks.c:316
 msgid "Total memory leakage this run:"
-msgstr ""
+msgstr "Pierderi totale de memorie în această rulare:"
 
 #: src/LYLeaks.c:320
 msgid "Peak allocation"
-msgstr ""
+msgstr "Alocare pentru vârfurile de consum de memorie"
 
 #: src/LYLeaks.c:322
 msgid "Bytes allocated"
-msgstr ""
+msgstr "Octeți alocați"
 
 #: src/LYLeaks.c:324
 msgid "Total mallocs"
-msgstr ""
+msgstr "Numărul total de alocări"
 
 #: src/LYLeaks.c:326
 msgid "Total frees"
-msgstr ""
+msgstr "Numărul total de liberări"
 
 #: src/LYList.c:89
 msgid "References in "
-msgstr ""
+msgstr "Referințe în "
 
 #: src/LYList.c:92
 msgid "this document:"
-msgstr ""
+msgstr "acest document:"
 
-#: src/LYList.c:98 src/LYList.c:362
+#: src/LYList.c:98 src/LYList.c:363
 msgid "Visible links:"
-msgstr ""
+msgstr "Legături vizibile:"
 
-#: src/LYList.c:202 src/LYList.c:321
+#: src/LYList.c:202 src/LYList.c:322
 msgid "Hidden links:"
-msgstr ""
+msgstr "Legături ascunse:"
 
-#: src/LYList.c:358
+#: src/LYList.c:359
 msgid "References"
-msgstr ""
+msgstr "Referințe"
 
 #: src/LYLocal.c:289
 #, c-format
 msgid "Unable to get status of '%s'."
-msgstr ""
+msgstr "Nu se poate obține starea lui „%s”."
 
 #: src/LYLocal.c:354
 msgid "The selected item is not a file or a directory!  Request ignored."
-msgstr ""
+msgstr "Elementul selectat nu este un fișier sau un director!  Cerere ignorată."
 
 #: src/LYLocal.c:456
 #, c-format
 msgid "Unable to %s due to system error!"
-msgstr ""
+msgstr "%s a eșuat din cauza unei erori de sistem!"
 
 #: src/LYLocal.c:490
 #, c-format
 msgid "Probable failure to %s due to system error!"
-msgstr ""
+msgstr "Este posibil ca %s să fi eșuat din cauza unei erori de sistem!"
 
 #: src/LYLocal.c:555 src/LYLocal.c:578
 #, c-format
 msgid "remove %s"
-msgstr ""
+msgstr "elimină %s"
 
 #: src/LYLocal.c:598
 #, c-format
 msgid "touch %s"
-msgstr ""
+msgstr "modifică data ultimei modificări a fișierului %s cu cea de astăzi"
 
 #: src/LYLocal.c:628
 #, c-format
 msgid "move %s to %s"
-msgstr ""
+msgstr "mută %s în %s"
 
 #: src/LYLocal.c:676
 msgid "There is already a directory with that name!  Request ignored."
-msgstr ""
+msgstr "Există deja un director cu acest nume!  Cerere ignorată."
 
 #: src/LYLocal.c:678
 msgid "There is already a file with that name!  Request ignored."
-msgstr ""
+msgstr "Există deja un fișier cu acest nume!  Cerere ignorată."
 
 #: src/LYLocal.c:680
 msgid "The specified name is already in use!  Request ignored."
-msgstr ""
+msgstr "Numele specificat este deja utilizat!  Cerere ignorată."
 
 #: src/LYLocal.c:692
 msgid "Destination has different owner!  Request denied."
-msgstr ""
+msgstr "Destinația are alt proprietar!  Cerere refuzată."
 
 #: src/LYLocal.c:695
 msgid "Destination is not a valid directory!  Request denied."
-msgstr ""
+msgstr "Destinația nu este un director valid!  Cerere refuzată."
 
 #: src/LYLocal.c:711
 msgid "Source and destination are the same location!  Request ignored!"
-msgstr ""
+msgstr "Sursa și destinația sunt în aceeași locație!  Cerere ignorată!"
 
 #: src/LYLocal.c:735
 msgid "Remove all tagged files and directories?"
-msgstr ""
+msgstr "Eliminați toate fișierele și directoarele marcate?"
 
 #: src/LYLocal.c:808
 msgid "Enter new location for tagged items: "
-msgstr ""
+msgstr "Introduceți o nouă locație pentru elementele marcate: "
 
 #: src/LYLocal.c:906
 msgid "Enter new name for directory: "
-msgstr ""
+msgstr "Introduceți noul nume pentru director: "
 
 #: src/LYLocal.c:908
 msgid "Enter new name for file: "
-msgstr ""
+msgstr "Introduceți noul nume pentru fișier: "
 
 #: src/LYLocal.c:920
 msgid "Illegal character (path-separator) found! Request ignored."
-msgstr ""
+msgstr "Caracter ilegal (separator de rută) găsit! Cerere ignorată."
 
 #: src/LYLocal.c:970
 msgid "Enter new location for directory: "
-msgstr ""
+msgstr "Introduceți noua locație pentru director: "
 
 #: src/LYLocal.c:972
 msgid "Enter new location for file: "
-msgstr ""
+msgstr "Introduceți noua locație pentru fișier: "
 
 #: src/LYLocal.c:999
 msgid "Unexpected failure - unable to find trailing path separator"
-msgstr ""
+msgstr "Eșec neașteptat - nu se poate găsi separatorul de rută final"
 
 #: src/LYLocal.c:1061
 msgid "Modify name, location, or permission (n, l, or p): "
-msgstr ""
+msgstr "Modificați numele, locația sau permisiunile (n, l sau p): "
 
 #: src/LYLocal.c:1063
 msgid "Modify name or location (n or l): "
-msgstr ""
+msgstr "Modificați numele sau locația (n sau l): "
 
 #.
 #. * Code for changing ownership needed here.
 #.
 #: src/LYLocal.c:1092
 msgid "This feature not yet implemented!"
-msgstr ""
+msgstr "Această caracteristică nu este încă implementată!"
 
 #: src/LYLocal.c:1113
 msgid "Enter name of file to create: "
-msgstr ""
+msgstr "Introduceți numele fișierului care urmează să fie creat: "
 
 #: src/LYLocal.c:1116 src/LYLocal.c:1153
 msgid "Illegal redirection \"//\" found! Request ignored."
-msgstr ""
+msgstr "Redirecționare ilegală „//” găsită! Cerere ignorată."
 
 #: src/LYLocal.c:1150
 msgid "Enter name for new directory: "
-msgstr ""
+msgstr "Introduceți numele pentru noul director: "
 
 #: src/LYLocal.c:1191
 msgid "Create file or directory (f or d): "
-msgstr ""
+msgstr "Creați un fișier sau un director (f sau d): "
 
 #: src/LYLocal.c:1233
 #, c-format
 msgid "Remove directory '%s'?"
-msgstr ""
+msgstr "Eliminați directorul „%s”?"
 
 #: src/LYLocal.c:1236
 msgid "Remove directory?"
-msgstr ""
+msgstr "Eliminați directorul?"
 
 #: src/LYLocal.c:1241
 #, c-format
 msgid "Remove file '%s'?"
-msgstr ""
+msgstr "Eliminați fișierul „%s”?"
 
 #: src/LYLocal.c:1243
 msgid "Remove file?"
-msgstr ""
+msgstr "Eliminați fișierul?"
 
 #: src/LYLocal.c:1248
 #, c-format
 msgid "Remove symbolic link '%s'?"
-msgstr ""
+msgstr "Eliminați legătura simbolică „%s”?"
 
 #: src/LYLocal.c:1250
 msgid "Remove symbolic link?"
-msgstr ""
+msgstr "Eliminați legătura simbolică?"
 
 #: src/LYLocal.c:1348
 msgid "Sorry, don't know how to permit non-UNIX files yet."
-msgstr ""
+msgstr "Scuze, nu se știe încă cum să se permită fișiere non-UNIX."
 
 #: src/LYLocal.c:1377
 msgid "Unable to open permit options file"
-msgstr ""
+msgstr "Nu se poate deschide fișierul cu opțiunile de permisiuni"
 
 #: src/LYLocal.c:1405
 msgid "Specify permissions below:"
-msgstr ""
+msgstr "Specificați permisiunile de mai jos:"
 
 #: src/LYLocal.c:1406 src/LYShowInfo.c:291
 msgid "Owner:"
-msgstr ""
+msgstr "Proprietar:"
 
 #: src/LYLocal.c:1422
 msgid "Group"
-msgstr ""
+msgstr "Grup:"
 
 #: src/LYLocal.c:1438
 msgid "Others:"
-msgstr ""
+msgstr "Alții:"
 
 #: src/LYLocal.c:1456
 msgid "form to permit"
-msgstr ""
+msgstr "formular de permisiuni"
 
 #: src/LYLocal.c:1552
 msgid "Invalid mode format."
-msgstr ""
+msgstr "Format incorect pentru mod."
 
 #: src/LYLocal.c:1556
 msgid "Invalid syntax format."
-msgstr ""
+msgstr "Format de sintaxă nevalid."
 
 #: src/LYLocal.c:1743
 msgid "Warning!  UUDecoded file will exist in the directory you started Lynx."
-msgstr ""
+msgstr "Atenție!  Fișierul UUDecoded va exista în directorul din care ați pornit Lynx."
 
 #: src/LYLocal.c:1933
 msgid "NULL URL pointer"
-msgstr ""
+msgstr "Indicator de adresă URL NULL"
 
 #: src/LYLocal.c:2015
 #, c-format
 msgid "Executing %s "
-msgstr ""
+msgstr "Se execută %s "
 
 #: src/LYLocal.c:2018
 msgid "Executing system command. This might take a while."
-msgstr ""
+msgstr "Se execută comanda de sistem. Acest lucru poate dura ceva timp."
 
 #: src/LYLocal.c:2092
 msgid "Current directory:"
-msgstr ""
+msgstr "Directorul actual:"
 
 #: src/LYLocal.c:2095 src/LYLocal.c:2113
 msgid "Current selection:"
-msgstr ""
+msgstr "Selecția curentă:"
 
 #: src/LYLocal.c:2099
 msgid "Nothing currently selected."
-msgstr ""
+msgstr "Nu este selectat nimic în prezent."
 
 #: src/LYLocal.c:2115
 msgid "tagged item:"
-msgstr ""
+msgstr "element marcat:"
 
 #: src/LYLocal.c:2116
 msgid "tagged items:"
-msgstr ""
+msgstr "elemente marcate:"
 
 #: src/LYLocal.c:2216 src/LYLocal.c:2225
 msgid "Illegal filename; request ignored."
-msgstr ""
+msgstr "Nume de fișier ilegal; cerere ignorată."
 
 #. directory not writable
 #: src/LYLocal.c:2323 src/LYLocal.c:2382
 msgid "Install in the selected directory not permitted."
-msgstr ""
+msgstr "Instalarea în directorul selectat nu este permisă."
 
 #: src/LYLocal.c:2378
 msgid "The selected item is not a directory!  Request ignored."
-msgstr ""
+msgstr "Elementul selectat nu este un director!  Cerere ignorată."
 
 #: src/LYLocal.c:2387
 msgid "Just a moment, ..."
-msgstr ""
+msgstr "Doar o secundă, ..."
 
 #: src/LYLocal.c:2404
 msgid "Error building install args"
-msgstr ""
+msgstr "Eroare la construirea argumentelor de instalare"
 
 #: src/LYLocal.c:2419 src/LYLocal.c:2450
 #, c-format
 msgid "Source and target are the same: %s"
-msgstr ""
+msgstr "Sursa și destinația sunt identice: %s"
 
 #: src/LYLocal.c:2426 src/LYLocal.c:2457
 #, c-format
 msgid "Already in target directory: %s"
-msgstr ""
+msgstr "Deja în directorul de destinație: %s"
 
 #: src/LYLocal.c:2475
 msgid "Installation complete"
-msgstr ""
+msgstr "Instalare finalizată"
 
 #: src/LYLocal.c:2678
 msgid "Temporary URL or list would be too long."
-msgstr ""
+msgstr "Adresa URL sau lista temporară ar fi prea lungi."
 
 #: src/LYMail.c:566
 msgid "Sending"
-msgstr ""
+msgstr "Se trimite"
 
 #: src/LYMail.c:1050
 #, c-format
 msgid "The link   %s :?: %s \n"
-msgstr ""
+msgstr "Legătura   %s :?: %s \n"
 
 #: src/LYMail.c:1052
 #, c-format
 msgid "called \"%s\"\n"
-msgstr ""
+msgstr "numită „%s”\n"
 
 #: src/LYMail.c:1053
 #, c-format
 msgid "in the file \"%s\" called \"%s\"\n"
-msgstr ""
+msgstr "în fișierul „%s” numit „%s”\n"
 
 #: src/LYMail.c:1054
 msgid "was requested but was not available."
-msgstr ""
+msgstr "a fost solicitată, dar nu era disponibilă."
 
 #: src/LYMail.c:1055
 msgid "Thought you might want to know."
-msgstr ""
+msgstr "Probabil că este util să cunoașteți acest lucru."
 
 #: src/LYMail.c:1057
 msgid "This message was automatically generated by"
-msgstr ""
+msgstr "Acest mesaj a fost generat automat de"
 
 #: src/LYMail.c:1770
 msgid "No system mailer configured"
-msgstr ""
+msgstr "Nu este configurat niciun agent de poștă electronică în sistem"
 
-#: src/LYMain.c:1088
+#: src/LYMain.c:1095
 msgid "No Winsock found, sorry."
-msgstr ""
+msgstr "Nu s-a găsit Winsock, scuze."
 
-#: src/LYMain.c:1278
+#: src/LYMain.c:1285
 msgid "You MUST define a valid TMP or TEMP area!"
-msgstr ""
+msgstr "TREBUIE să definiți o zonă TMP sau TEMP validă!"
 
-#: src/LYMain.c:1331 src/LYMainLoop.c:5285
+#: src/LYMain.c:1338 src/LYMainLoop.c:5285
 msgid "No such directory"
-msgstr ""
+msgstr "Nu există un asemenea director"
 
-#: src/LYMain.c:1525
+#: src/LYMain.c:1532
 #, c-format
 msgid ""
 "\n"
 "Configuration file \"%s\" is not available.\n"
 "\n"
 msgstr ""
+"\n"
+"Fișierul de configurare „%s” nu este disponibil.\n"
+"\n"
 
-#: src/LYMain.c:1535
+#: src/LYMain.c:1542
 #, c-format
 msgid ""
 "\n"
 "Lynx character sets not declared.\n"
 "\n"
 msgstr ""
+"\n"
+"Seturile de caractere Lynx nu sunt declarate.\n"
+"\n"
 
-#: src/LYMain.c:1691
+#: src/LYMain.c:1698
 #, c-format
 msgid "Ignored %d characters from standard input.\n"
-msgstr ""
+msgstr "S-au ignorat %d caractere de la intrarea standard.\n"
 
-#: src/LYMain.c:1693
+#: src/LYMain.c:1700
 #, c-format
 msgid "Use \"-stdin\" or \"-\" to tell how to handle piped input.\n"
-msgstr ""
+msgstr "Utilizați „-stdin” sau „-” pentru a indica modul de gestionare a intrărilor prin conducte.\n"
 
-#: src/LYMain.c:1851
+#: src/LYMain.c:1858
 msgid "Warning:"
-msgstr ""
+msgstr "Avertisment:"
 
-#: src/LYMain.c:2419
+#: src/LYMain.c:2426
 msgid "persistent cookies state will be changed in next session only."
-msgstr ""
+msgstr "starea cookie-urilor persistente va fi schimbată numai în sesiunea următoare."
 
-#: src/LYMain.c:2654 src/LYMain.c:2698
+#: src/LYMain.c:2661 src/LYMain.c:2705
 #, c-format
 msgid "Lynx: ignoring unrecognized charset=%s\n"
-msgstr ""
+msgstr "Lynx: se ignoră setul de caractere nerecunoscut=%s\n"
 
-#: src/LYMain.c:3215
+#: src/LYMain.c:3222
 #, c-format
 msgid "%s Version %s (%s)"
-msgstr ""
+msgstr "%s versiunea %s (%s)"
 
-#: src/LYMain.c:3256
+#: src/LYMain.c:3263
 #, c-format
 msgid "Built on %s%s.\n"
-msgstr ""
+msgstr "Construit pe %s%s.\n"
 
-#: src/LYMain.c:3270
+#: src/LYMain.c:3277
 msgid "Copyrights held by the Lynx Developers Group,"
-msgstr ""
+msgstr "Drepturile de autor sunt deținute de Lynx Developers Group,"
 
-#: src/LYMain.c:3271
+#: src/LYMain.c:3278
 msgid "the University of Kansas, CERN, and other contributors."
-msgstr ""
+msgstr "Universitatea din Kansas, CERN și alți colaboratori."
 
-#: src/LYMain.c:3272
+#: src/LYMain.c:3279
 msgid "Distributed under the GNU General Public License (Version 2)."
-msgstr ""
+msgstr "Distribuit în conformitate cu Licența publică generală GNU (versiunea 2)."
 
-#: src/LYMain.c:3273
+#: src/LYMain.c:3280
 msgid "See https://lynx.invisible-island.net/ and the online help for more information."
-msgstr ""
+msgstr "Consultați https://lynx.invisible-island.net/ și ajutorul disponibil în Internet pentru mai multe informații."
 
-#: src/LYMain.c:4120
+#: src/LYMain.c:4139
 #, c-format
 msgid "USAGE: %s [options] [file]\n"
-msgstr ""
+msgstr "Utilizare: %s [opțiuni] [fișier]\n"
 
-#: src/LYMain.c:4121
+#: src/LYMain.c:4140
 #, c-format
 msgid "Options are:\n"
-msgstr ""
+msgstr "Opțiunile sunt:\n"
 
-#: src/LYMain.c:4424
+#: src/LYMain.c:4443
 #, c-format
 msgid "%s: Invalid Option: %s\n"
-msgstr ""
+msgstr "%s: Opțiune nevalidă: %s\n"
 
 #: src/LYMainLoop.c:572
 #, c-format
 msgid "Internal error: Invalid mouse link %d!"
-msgstr ""
+msgstr "Eroare internă: Legătura mouse-ului nu este validă %d!"
 
 #: src/LYMainLoop.c:693 src/LYMainLoop.c:5307
 msgid "A URL specified by the user"
-msgstr ""
+msgstr "O adresă URL specificată de utilizator"
 
 #: src/LYMainLoop.c:1142
 msgid "Enctype multipart/form-data not yet supported!  Cannot submit."
-msgstr ""
+msgstr "Tipul de codificare „multipart/form-data” nu este încă acceptat!  Nu se poate trimite."
 
 #.
 #. * Make a name for this help file.
 #.
 #: src/LYMainLoop.c:3197
 msgid "Help Screen"
-msgstr ""
+msgstr "Ecran de ajutor"
 
 #: src/LYMainLoop.c:3328
 msgid "System Index"
-msgstr ""
+msgstr "Indexul sistemului"
 
 #: src/LYMainLoop.c:3577
 #, c-format
 msgid "Query parameter %d: "
-msgstr ""
+msgstr "Parametru de căutare %d: "
 
 #: src/LYMainLoop.c:3806 src/LYMainLoop.c:5583
 msgid "Entry into main screen"
-msgstr ""
+msgstr "Intrarea în ecranul principal"
 
 #: src/LYMainLoop.c:4064
 msgid "No next document present"
-msgstr ""
+msgstr "Nu există documentul următor"
 
 #: src/LYMainLoop.c:4359
 msgid "charset for this document specified explicitly, sorry..."
-msgstr ""
+msgstr "setul de caractere pentru acest document este specificat explicit, scuze..."
 
 #: src/LYMainLoop.c:5265
 msgid "cd to:"
-msgstr ""
+msgstr "schimbă la directorul:"
 
 #: src/LYMainLoop.c:5288
 msgid "A component of path is not a directory"
-msgstr ""
+msgstr "O componentă a rutei nu este un director"
 
 #: src/LYMainLoop.c:5291
 msgid "failed to change directory"
-msgstr ""
+msgstr "nu s-a putut schimba directorul"
 
 #: src/LYMainLoop.c:6517
 msgid "Reparsing document under current settings..."
-msgstr ""
+msgstr "Se reanalizează documentul cu opțiunile actuale..."
 
 #: src/LYMainLoop.c:6811
 #, c-format
 msgid "Fatal error - could not open output file %s\n"
-msgstr ""
+msgstr "Eroare fatală - nu s-a putut deschide fișierul de ieșire %s\n"
 
 #: src/LYMainLoop.c:7153
 msgid "TABLE center enable."
-msgstr ""
+msgstr "Centrarea TABELULUI activată."
 
 #: src/LYMainLoop.c:7156
 msgid "TABLE center disable."
-msgstr ""
+msgstr "Centrarea TABELULUI dezactivată."
 
 #: src/LYMainLoop.c:7236
 msgid "Current URL is empty."
-msgstr ""
+msgstr "Adresa URL curentă este goală."
 
 #: src/LYMainLoop.c:7238 src/LYUtils.c:1909
 msgid "Copy to clipboard failed."
-msgstr ""
+msgstr "Copierea în clipboard a eșuat."
 
 #: src/LYMainLoop.c:7240
 msgid "Document URL put to clipboard."
-msgstr ""
+msgstr "Adresa URL a documentului este pusă în clipboard."
 
 #: src/LYMainLoop.c:7242
 msgid "Link URL put to clipboard."
-msgstr ""
+msgstr "Adresa URL a legăturii pusă în clipboard."
 
 #: src/LYMainLoop.c:7269
 msgid "No URL in the clipboard."
-msgstr ""
+msgstr "Nu există nicio adresă URL în clipboard."
 
 #: src/LYMainLoop.c:7962 src/LYMainLoop.c:8133
 msgid "-index-"
-msgstr ""
+msgstr "-index-"
 
 #: src/LYMainLoop.c:8071
 msgid "lynx: Can't access startfile"
-msgstr ""
+msgstr "lynx: Nu se poate accesa fișierul de deschidere"
 
 #: src/LYMainLoop.c:8083
 msgid "lynx: Start file could not be found or is not text/html or text/plain"
-msgstr ""
+msgstr "lynx: Fișierul de deschidere nu a putut fi găsit sau nu este text/html sau text/plain"
 
 #: src/LYMainLoop.c:8084
 msgid "      Exiting..."
-msgstr ""
+msgstr "      Ieșind..."
 
 #: src/LYMainLoop.c:8127
 msgid "-more-"
-msgstr ""
+msgstr "--mai mult--"
 
 #. Enable scrolling.
 #: src/LYNews.c:186
 msgid "You will be posting to:"
-msgstr ""
+msgstr "Veți fi publicat la:"
 
 #.
 #. * Get the mail address for the From header, offering personal_mail_address
@@ -4488,6 +4658,9 @@ msgid ""
 "\n"
 " Please provide your mail address for the From: header\n"
 msgstr ""
+"\n"
+"\n"
+"Introduceți adresa dvs. de e-mail pentru antetul „From:” De la:\n"
 
 #.
 #. * Get the Subject header, offering the current document's title as the
@@ -4499,6 +4672,9 @@ msgid ""
 "\n"
 " Please provide or edit the Subject: header\n"
 msgstr ""
+"\n"
+"\n"
+" Introduceți sau editați antetul „Subject:” Subiect:\n"
 
 #: src/LYNews.c:302
 msgid ""
@@ -4506,6 +4682,9 @@ msgid ""
 "\n"
 " Please provide or edit the Organization: header\n"
 msgstr ""
+"\n"
+"\n"
+" Introduceți sau editați antetul „Organization:” Organizația:\n"
 
 #.
 #. * Use the built in line editior.
@@ -4516,22 +4695,25 @@ msgid ""
 "\n"
 " Please enter your message below."
 msgstr ""
+"\n"
+"\n"
+" Introduceți mesajul dumneavoastră mai jos."
 
 #: src/LYNews.c:405
 msgid "Message has no original text!"
-msgstr ""
+msgstr "Mesajul nu conține textul original!"
 
 #: src/LYOptions.c:774
 msgid "review/edit B)ookmarks files"
-msgstr ""
+msgstr "revizuirea/modificarea fișierelor de marcaje(B)"
 
 #: src/LYOptions.c:776
 msgid "B)ookmark file: "
-msgstr ""
+msgstr "Fișierul de marcaje(B): "
 
 #: src/LYOptions.c:2131 src/LYOptions.c:2138
 msgid "ON"
-msgstr ""
+msgstr "ACTIVAT"
 
 #. verbose_img variable
 #. LYCollapseBRs variable
@@ -4539,694 +4721,714 @@ msgstr ""
 #: src/LYOptions.c:2132 src/LYOptions.c:2137 src/LYOptions.c:2321
 #: src/LYOptions.c:2330 src/LYOptions.c:2339 src/LYOptions.c:2350
 msgid "OFF"
-msgstr ""
+msgstr "DEZACTIVAT"
 
 #: src/LYOptions.c:2133
 msgid "NEVER"
-msgstr ""
+msgstr "NICIODATĂ"
 
 #: src/LYOptions.c:2134
 msgid "ALWAYS"
-msgstr ""
+msgstr "ÎNTOTDEAUNA"
 
 #: src/LYOptions.c:2150 src/LYOptions.c:2313
 msgid "ignore"
-msgstr ""
+msgstr "ignoră"
 
 #: src/LYOptions.c:2151
 msgid "ask user"
-msgstr ""
+msgstr "întreabă utilizatorul"
 
 #: src/LYOptions.c:2152
 msgid "accept all"
-msgstr ""
+msgstr "acceptă toate"
 
 #: src/LYOptions.c:2164
 msgid "ALWAYS OFF"
-msgstr ""
+msgstr "ÎNTOTDEAUNA DEZACTIVAT"
 
 #: src/LYOptions.c:2165
 msgid "FOR LOCAL FILES ONLY"
-msgstr ""
+msgstr "NUMAI PENTRU FIȘIERE LOCALE"
 
 #: src/LYOptions.c:2167
 msgid "ALWAYS ON"
-msgstr ""
+msgstr "ÎNTOTDEAUNA ACTIVAT"
 
 #: src/LYOptions.c:2179
 msgid "Numbers act as arrows"
-msgstr ""
+msgstr "Numerele acționează ca săgeți"
 
 #: src/LYOptions.c:2181
 msgid "Links are numbered"
-msgstr ""
+msgstr "Legăturile sunt numerotate"
 
 #: src/LYOptions.c:2184
 msgid "Links and form fields are numbered"
-msgstr ""
+msgstr "Legăturile și câmpurile de formular sunt numerotate"
 
 #: src/LYOptions.c:2187
 msgid "Form fields are numbered"
-msgstr ""
+msgstr "Câmpurile de formular sunt numerotate"
 
 #: src/LYOptions.c:2202
 msgid "Case insensitive"
-msgstr ""
+msgstr "Ignoră diferența dintre majuscule/minuscule"
 
 #: src/LYOptions.c:2203
 msgid "Case sensitive"
-msgstr ""
+msgstr "Respectă diferența majuscule/minuscule"
 
 #: src/LYOptions.c:2237
 msgid "prompt normally"
-msgstr ""
+msgstr "prompt normal"
 
 #: src/LYOptions.c:2238
 msgid "force yes-response"
-msgstr ""
+msgstr "forțează „da” ca răspuns"
 
 #: src/LYOptions.c:2239
 msgid "force no-response"
-msgstr ""
+msgstr "forțează „nu” ca răspuns"
 
 #: src/LYOptions.c:2249
 msgid "RFC 2109"
-msgstr ""
+msgstr "RFC 2109"
 
 #: src/LYOptions.c:2250
 msgid "RFC 2965"
-msgstr ""
+msgstr "RFC 2965"
 
 #: src/LYOptions.c:2251
 msgid "RFC 6265"
-msgstr ""
+msgstr "RFC 6265"
 
 #: src/LYOptions.c:2268
 msgid "Novice"
-msgstr ""
+msgstr "Novice"
 
 #: src/LYOptions.c:2269
 msgid "Intermediate"
-msgstr ""
+msgstr "Intermediar"
 
 #: src/LYOptions.c:2270
 msgid "Advanced"
-msgstr ""
+msgstr "Avansat"
 
 #: src/LYOptions.c:2279
 msgid "By First Visit"
-msgstr ""
+msgstr "Prima vizită"
 
 #: src/LYOptions.c:2281
 msgid "By First Visit Reversed"
-msgstr ""
+msgstr "Prima vizită (inversată)"
 
 #: src/LYOptions.c:2282
 msgid "As Visit Tree"
-msgstr ""
+msgstr "Arbore de vizite"
 
 #: src/LYOptions.c:2283
 msgid "By Last Visit"
-msgstr ""
+msgstr "Ultima vizită"
 
 #: src/LYOptions.c:2285
 msgid "By Last Visit Reversed"
-msgstr ""
+msgstr "Ultima vizită (inversată)"
 
 #. Old_DTD variable
 #: src/LYOptions.c:2296
 msgid "relaxed (TagSoup mode)"
-msgstr ""
+msgstr "relaxat (modul „TagSoup”)"
 
 #: src/LYOptions.c:2297
 msgid "strict (SortaSGML mode)"
-msgstr ""
+msgstr "strict (modul „SortaSGML”)"
 
 #: src/LYOptions.c:2304
 msgid "Ignore"
-msgstr ""
+msgstr "Ignoră"
 
 #: src/LYOptions.c:2305
 msgid "Add to trace-file"
-msgstr ""
+msgstr "Adaugă la fișierul de urmărire"
 
 #: src/LYOptions.c:2306
 msgid "Add to LYNXMESSAGES"
-msgstr ""
+msgstr "Adaugă la LYNXMESSAGES"
 
 #: src/LYOptions.c:2307
 msgid "Warn, point to trace-file"
-msgstr ""
+msgstr "Avertisment, se referă la fișierul de urmărire"
 
 #: src/LYOptions.c:2314
 msgid "as labels"
-msgstr ""
+msgstr "ca etichete"
 
 #: src/LYOptions.c:2315
 msgid "as links"
-msgstr ""
+msgstr "ca legături"
 
 #: src/LYOptions.c:2322
 msgid "show filename"
-msgstr ""
+msgstr "afișează numele fișierului"
 
 #: src/LYOptions.c:2331
 msgid "collapse"
-msgstr ""
+msgstr "comprima"
 
 #: src/LYOptions.c:2340
 msgid "trim-lines"
-msgstr ""
+msgstr "suprimă liniile goale"
 
 #: src/LYOptions.c:2351
 msgid "STANDARD"
-msgstr ""
+msgstr "STANDARD"
 
 #: src/LYOptions.c:2352
 msgid "ADVANCED"
-msgstr ""
+msgstr "AVANSAT"
 
-#: src/LYOptions.c:2386
+#: src/LYOptions.c:2374
+msgid "IDNA 2003"
+msgstr "IDNA 2003"
+
+#: src/LYOptions.c:2375
+msgid "IDNA 2008"
+msgstr "IDNA 2008"
+
+#: src/LYOptions.c:2376
+msgid "IDNA TR46"
+msgstr "IDNA TR46"
+
+#: src/LYOptions.c:2377
+msgid "IDNA Compatible"
+msgstr "Compatibil cu IDNA"
+
+#: src/LYOptions.c:2398
 msgid "Directories first"
-msgstr ""
+msgstr "Mai întâi directoarele"
 
-#: src/LYOptions.c:2387
+#: src/LYOptions.c:2399
 msgid "Files first"
-msgstr ""
+msgstr "Mai întâi fișierele"
 
-#: src/LYOptions.c:2388
+#: src/LYOptions.c:2400
 msgid "Mixed style"
-msgstr ""
+msgstr "Stil mixt"
 
-#: src/LYOptions.c:2396 src/LYOptions.c:2416
+#: src/LYOptions.c:2408 src/LYOptions.c:2428
 msgid "By Name"
-msgstr ""
+msgstr "După nume"
 
-#: src/LYOptions.c:2397 src/LYOptions.c:2417
+#: src/LYOptions.c:2409 src/LYOptions.c:2429
 msgid "By Type"
-msgstr ""
+msgstr "După tip"
 
-#: src/LYOptions.c:2398 src/LYOptions.c:2418
+#: src/LYOptions.c:2410 src/LYOptions.c:2430
 msgid "By Size"
-msgstr ""
+msgstr "După dimensiune"
 
-#: src/LYOptions.c:2399 src/LYOptions.c:2419
+#: src/LYOptions.c:2411 src/LYOptions.c:2431
 msgid "By Date"
-msgstr ""
+msgstr "După dată"
 
-#: src/LYOptions.c:2400
+#: src/LYOptions.c:2412
 msgid "By Mode"
-msgstr ""
+msgstr "După mod"
 
-#: src/LYOptions.c:2402
+#: src/LYOptions.c:2414
 msgid "By User"
-msgstr ""
+msgstr "După utilizator"
 
-#: src/LYOptions.c:2403
+#: src/LYOptions.c:2415
 msgid "By Group"
-msgstr ""
+msgstr "După grup"
 
-#: src/LYOptions.c:2428
+#: src/LYOptions.c:2440
 msgid "Do not show rate"
-msgstr ""
+msgstr "Nu afișează rata"
 
-#: src/LYOptions.c:2429 src/LYOptions.c:2430
+#: src/LYOptions.c:2441 src/LYOptions.c:2442
 #, c-format
 msgid "Show %s/sec rate"
-msgstr ""
+msgstr "Afișează %s/sec rata"
 
-#: src/LYOptions.c:2432 src/LYOptions.c:2433
+#: src/LYOptions.c:2444 src/LYOptions.c:2445
 #, c-format
 msgid "Show %s/sec, ETA"
-msgstr ""
+msgstr "Afișează %s/sec, timp estimat(ETA)"
 
-#: src/LYOptions.c:2434 src/LYOptions.c:2435
+#: src/LYOptions.c:2446 src/LYOptions.c:2447
 #, c-format
 msgid "Show %s/sec (2-digits), ETA"
-msgstr ""
+msgstr "Afișează %s/sec (2 cifre), timp estimat(ETA)"
 
-#: src/LYOptions.c:2438
+#: src/LYOptions.c:2450
 msgid "Show progressbar"
-msgstr ""
+msgstr "Afișează bara de progres"
 
-#: src/LYOptions.c:2459
+#: src/LYOptions.c:2471
 msgid "Accept lynx's internal types"
-msgstr ""
+msgstr "Acceptă tipurile interne ale lynx-ului"
 
-#: src/LYOptions.c:2460
+#: src/LYOptions.c:2472
 msgid "Also accept lynx.cfg's types"
-msgstr ""
+msgstr "Acceptă, de asemenea, tipurile din lynx.cfg"
 
-#: src/LYOptions.c:2461
+#: src/LYOptions.c:2473
 msgid "Also accept user's types"
-msgstr ""
+msgstr "Acceptă, de asemenea, tipurile utilizatorilor"
 
-#: src/LYOptions.c:2462
+#: src/LYOptions.c:2474
 msgid "Also accept system's types"
-msgstr ""
+msgstr "Acceptă, de asemenea, tipurile sistemului"
 
-#: src/LYOptions.c:2463
+#: src/LYOptions.c:2475
 msgid "Accept all types"
-msgstr ""
+msgstr "Acceptă toate tipurile"
 
-#: src/LYOptions.c:2472
+#: src/LYOptions.c:2484
 msgid "gzip"
-msgstr ""
+msgstr "gzip"
 
-#: src/LYOptions.c:2473
+#: src/LYOptions.c:2485
 msgid "deflate"
-msgstr ""
+msgstr "dezarhivare"
 
-#: src/LYOptions.c:2476
+#: src/LYOptions.c:2488
 msgid "compress"
-msgstr ""
+msgstr "comprimare"
 
-#: src/LYOptions.c:2479
+#: src/LYOptions.c:2491
 msgid "bzip2"
-msgstr ""
+msgstr "bzip2"
 
-#: src/LYOptions.c:2481
+#: src/LYOptions.c:2493
 msgid "All"
-msgstr ""
+msgstr "Toate"
 
-#: src/LYOptions.c:2491
+#: src/LYOptions.c:2503
 msgid "HTTP 1.0"
-msgstr ""
+msgstr "HTTP 1.0"
 
-#: src/LYOptions.c:2492
+#: src/LYOptions.c:2504
 msgid "HTTP 1.1"
-msgstr ""
+msgstr "HTTP 1.1"
 
-#: src/LYOptions.c:2851 src/LYOptions.c:2880
+#: src/LYOptions.c:2863 src/LYOptions.c:2892
 #, c-format
 msgid "Use %s to invoke the Options menu!"
-msgstr ""
+msgstr "Utilizați %s pentru a apela meniul Opțiuni!"
 
-#: src/LYOptions.c:3772
+#: src/LYOptions.c:3789
 msgid "(options marked with (!) will not be saved)"
-msgstr ""
+msgstr "(opțiunile marcate cu (!) nu vor fi salvate)"
 
-#: src/LYOptions.c:3780
+#: src/LYOptions.c:3797
 msgid "General Preferences"
-msgstr ""
+msgstr "Preferințe generale"
 
 #. ***************************************************************
 #. User Mode: SELECT
-#: src/LYOptions.c:3784
+#: src/LYOptions.c:3801
 msgid "User mode"
-msgstr ""
+msgstr "Modul utilizator"
 
 #. Editor: INPUT
-#: src/LYOptions.c:3790
+#: src/LYOptions.c:3807
 msgid "Editor"
-msgstr ""
+msgstr "Editor"
 
 #. Search Type: SELECT
-#: src/LYOptions.c:3795
+#: src/LYOptions.c:3812
 msgid "Type of Search"
-msgstr ""
+msgstr "Tipul de căutare"
 
-#: src/LYOptions.c:3800
+#: src/LYOptions.c:3817
 msgid "Security and Privacy"
-msgstr ""
+msgstr "Securitate și confidențialitate"
 
 #. ***************************************************************
 #. Cookies: SELECT
-#: src/LYOptions.c:3804
+#: src/LYOptions.c:3821
 msgid "Cookies"
-msgstr ""
+msgstr "Cookies"
 
 #. Cookie Version: SELECT
-#: src/LYOptions.c:3818
+#: src/LYOptions.c:3835
 msgid "Cookie RFC-version"
-msgstr ""
+msgstr "Cookie RFC-versiune"
 
 #. Cookie Prompting: SELECT
-#: src/LYOptions.c:3824
+#: src/LYOptions.c:3841
 msgid "Invalid-Cookie Prompting"
-msgstr ""
+msgstr "Dialog pentru cookie-uri nevalid"
 
 #. SSL Prompting: SELECT
-#: src/LYOptions.c:3831
+#: src/LYOptions.c:3848
 msgid "SSL Prompting"
-msgstr ""
+msgstr "Dialog SSL"
 
-#: src/LYOptions.c:3836
+#: src/LYOptions.c:3853
 msgid "SSL client certificate file"
-msgstr ""
+msgstr "Fișier de certificat de client SSL"
 
-#: src/LYOptions.c:3840
+#: src/LYOptions.c:3857
 msgid "SSL client key file"
-msgstr ""
+msgstr "Fișier cu cheia de client SSL"
 
-#: src/LYOptions.c:3846
+#: src/LYOptions.c:3863
 msgid "Keyboard Input"
-msgstr ""
+msgstr "Introducere de la tastatură"
 
 #. ***************************************************************
 #. Keypad Mode: SELECT
-#: src/LYOptions.c:3850
+#: src/LYOptions.c:3867
 msgid "Keypad mode"
-msgstr ""
+msgstr "Modul tastatură numerică"
 
 #. Emacs keys: ON/OFF
-#: src/LYOptions.c:3856
+#: src/LYOptions.c:3873
 msgid "Emacs keys"
-msgstr ""
+msgstr "Taste Emacs"
 
 #. VI Keys: ON/OFF
-#: src/LYOptions.c:3862
+#: src/LYOptions.c:3879
 msgid "VI keys"
-msgstr ""
+msgstr "Taste VI"
 
 #. Line edit style: SELECT
 #. well, at least 2 line edit styles available
-#: src/LYOptions.c:3869
+#: src/LYOptions.c:3886
 msgid "Line edit style"
-msgstr ""
+msgstr "Stil de editare a liniei"
 
 #. Keyboard layout: SELECT
-#: src/LYOptions.c:3881
+#: src/LYOptions.c:3898
 msgid "Keyboard layout"
-msgstr ""
+msgstr "Aranjamentul tastaturii"
 
 #.
 #. * Display and Character Set
 #.
-#: src/LYOptions.c:3895
+#: src/LYOptions.c:3912
 msgid "Display and Character Set"
-msgstr ""
+msgstr "Afișare și set de caractere"
 
 #. Use locale-based character set: ON/OFF
-#: src/LYOptions.c:3900
+#: src/LYOptions.c:3917
 msgid "Use locale-based character set"
-msgstr ""
+msgstr "Se utilizează setul de caractere bazat pe configurarea regională"
 
-#: src/LYOptions.c:3907
+#: src/LYOptions.c:3924
 msgid "Use HTML5 charset replacements"
-msgstr ""
+msgstr "Se utilizează substituiri de seturi de caractere HTML5"
 
 #. Display Character Set: SELECT
-#: src/LYOptions.c:3913
+#: src/LYOptions.c:3930
 msgid "Display character set"
-msgstr ""
+msgstr "Afișează setul de caractere"
 
-#: src/LYOptions.c:3944
+#: src/LYOptions.c:3961
 msgid "Assumed document character set"
-msgstr ""
+msgstr "Setul de caractere presupus al documentului"
+
+#: src/LYOptions.c:3977
+msgid "Internationalized domain names"
+msgstr "Nume de domeniu internaționalizate"
 
 #.
 #. * Since CJK people hardly mixed with other world
 #. * we split the header to make it more readable:
 #. * "CJK mode" for CJK display charsets, and "Raw 8-bit" for others.
 #.
-#: src/LYOptions.c:3964
+#: src/LYOptions.c:3995
 msgid "CJK mode"
-msgstr ""
+msgstr "Modul CJK"
 
-#: src/LYOptions.c:3966
+#: src/LYOptions.c:3997
 msgid "Raw 8-bit"
-msgstr ""
+msgstr "Modul brut pe 8 biți"
 
 #. X Display: INPUT
-#: src/LYOptions.c:3974
+#: src/LYOptions.c:4005
 msgid "X Display"
-msgstr ""
+msgstr "X Display"
 
 #.
 #. * Document Appearance
 #.
-#: src/LYOptions.c:3980
+#: src/LYOptions.c:4011
 msgid "Document Appearance"
-msgstr ""
+msgstr "Aspectul documentului"
 
-#: src/LYOptions.c:3986
+#: src/LYOptions.c:4017
 msgid "Show color"
-msgstr ""
+msgstr "Afișează culoarea"
 
-#: src/LYOptions.c:4012
+#: src/LYOptions.c:4043
 msgid "Color style"
-msgstr ""
+msgstr "Stil de culoare"
 
-#: src/LYOptions.c:4022
+#: src/LYOptions.c:4053
 msgid "Default colors"
-msgstr ""
+msgstr "Culori implicite"
 
 #. Show cursor: ON/OFF
-#: src/LYOptions.c:4030
+#: src/LYOptions.c:4061
 msgid "Show cursor"
-msgstr ""
+msgstr "Afișare cursor"
 
 #. Underline links: ON/OFF
-#: src/LYOptions.c:4036
+#: src/LYOptions.c:4067
 msgid "Underline links"
-msgstr ""
+msgstr "Subliniere legături"
 
 #. Show scrollbar: ON/OFF
-#: src/LYOptions.c:4043
+#: src/LYOptions.c:4074
 msgid "Show scrollbar"
-msgstr ""
+msgstr "Afișare bară de derulare"
 
 #. Select Popups: ON/OFF
-#: src/LYOptions.c:4050
+#: src/LYOptions.c:4081
 msgid "Popups for select fields"
-msgstr ""
+msgstr "Mesaje emergente pentru câmpurile selectate"
 
 #. HTML error recovery: SELECT
-#: src/LYOptions.c:4056
+#: src/LYOptions.c:4087
 msgid "HTML error recovery"
-msgstr ""
+msgstr "Recuperare erori HTML"
 
 #. Bad HTML messages: SELECT
-#: src/LYOptions.c:4062
+#: src/LYOptions.c:4093
 msgid "Bad HTML messages"
-msgstr ""
+msgstr "Mesaje HTML incorecte"
 
 #. Show Images: SELECT
-#: src/LYOptions.c:4068
+#: src/LYOptions.c:4099
 msgid "Show images"
-msgstr ""
+msgstr "Afișează imagini"
 
 #. Verbose Images: ON/OFF
-#: src/LYOptions.c:4082
+#: src/LYOptions.c:4113
 msgid "Verbose images"
-msgstr ""
+msgstr "Detalii despre imagini"
 
 #. Collapse BR Tags: ON/OFF
-#: src/LYOptions.c:4088
+#: src/LYOptions.c:4119
 msgid "Collapse BR tags"
-msgstr ""
+msgstr "Compactează etichetele BR"
 
 #. Trim blank lines: ON/OFF
-#: src/LYOptions.c:4094
+#: src/LYOptions.c:4125
 msgid "Trim blank lines"
-msgstr ""
+msgstr "Suprimă liniile goale"
 
 #.
 #. * Headers Transferred to Remote Servers
 #.
-#: src/LYOptions.c:4102
+#: src/LYOptions.c:4133
 msgid "Headers Transferred to Remote Servers"
-msgstr ""
+msgstr "Antetele transferate către serverele de la distanță"
 
 #. ***************************************************************
 #. Mail Address: INPUT
-#: src/LYOptions.c:4106
+#: src/LYOptions.c:4137
 msgid "Personal mail address"
-msgstr ""
+msgstr "Adresa de e-mail personală"
 
-#: src/LYOptions.c:4111
+#: src/LYOptions.c:4142
 msgid "Personal name for mail"
-msgstr ""
+msgstr "Numele personal pentru e-mail"
 
-#: src/LYOptions.c:4118
+#: src/LYOptions.c:4149
 msgid "Password for anonymous ftp"
-msgstr ""
+msgstr "Parola pentru FTP anonim"
 
 #. Preferred content type: SELECT
-#: src/LYOptions.c:4124
+#: src/LYOptions.c:4155
 msgid "Preferred content type"
-msgstr ""
+msgstr "Tipul de conținut preferat"
 
 #. Preferred media type: SELECT
-#: src/LYOptions.c:4130
+#: src/LYOptions.c:4161
 msgid "Preferred media type"
-msgstr ""
+msgstr "Tipul de suport media preferat"
 
 #. Preferred encoding: SELECT
-#: src/LYOptions.c:4136
+#: src/LYOptions.c:4167
 msgid "Preferred encoding"
-msgstr ""
+msgstr "Codificarea preferată"
 
 #. Preferred Document Character Set: INPUT
-#: src/LYOptions.c:4142
+#: src/LYOptions.c:4173
 msgid "Preferred document character set"
-msgstr ""
+msgstr "Setul de caractere preferat pentru document"
 
 #. Preferred Document Language: INPUT
-#: src/LYOptions.c:4147
+#: src/LYOptions.c:4178
 msgid "Preferred document language"
-msgstr ""
+msgstr "Limba preferată pentru document"
 
 #. HTTP protocol SELECT
-#: src/LYOptions.c:4152
+#: src/LYOptions.c:4183
 msgid "HTTP protocol"
-msgstr ""
+msgstr "protocol HTTP"
 
-#: src/LYOptions.c:4159
+#: src/LYOptions.c:4190
 msgid "Send User-Agent header"
-msgstr ""
+msgstr "Trimite antetul User-Agent"
 
-#: src/LYOptions.c:4161
+#: src/LYOptions.c:4192
 msgid "User-Agent header"
-msgstr ""
+msgstr "Antetul User-Agent"
 
 #.
 #. * Listing and Accessing Files
 #.
-#: src/LYOptions.c:4169
+#: src/LYOptions.c:4200
 msgid "Listing and Accessing Files"
-msgstr ""
+msgstr "Listarea și accesarea fișierelor"
 
 #. FTP sort: SELECT
-#: src/LYOptions.c:4174
+#: src/LYOptions.c:4205
 msgid "Use Passive FTP"
-msgstr ""
+msgstr "Utilizează FTP pasiv"
 
 #. FTP sort: SELECT
-#: src/LYOptions.c:4180
+#: src/LYOptions.c:4211
 msgid "FTP sort criteria"
-msgstr ""
+msgstr "Criterii de sortare FTP"
 
 #. Local Directory Sort: SELECT
-#: src/LYOptions.c:4188
+#: src/LYOptions.c:4219
 msgid "Local directory sort criteria"
-msgstr ""
+msgstr "Criterii de sortare a directoarelor locale"
 
 #. Local Directory Order: SELECT
-#: src/LYOptions.c:4194
+#: src/LYOptions.c:4225
 msgid "Local directory sort order"
-msgstr ""
+msgstr "Ordinea de sortare a directoarelor locale"
 
-#: src/LYOptions.c:4203
+#: src/LYOptions.c:4234
 msgid "Show dot files"
-msgstr ""
+msgstr "Afișează fișierele cu punct (ascunse)"
 
-#: src/LYOptions.c:4211
+#: src/LYOptions.c:4242
 msgid "Execution links"
-msgstr ""
+msgstr "Legături de executare a programelor"
 
-#: src/LYOptions.c:4229
+#: src/LYOptions.c:4260
 msgid "Pause when showing message"
-msgstr ""
+msgstr "Pause when showing message"
 
 #. Show transfer rate: SELECT
-#: src/LYOptions.c:4236
+#: src/LYOptions.c:4267
 msgid "Show transfer rate"
-msgstr ""
+msgstr "Afișează rata de transfer"
 
 #.
 #. * Special Files and Screens
 #.
-#: src/LYOptions.c:4256
+#: src/LYOptions.c:4287
 msgid "Special Files and Screens"
-msgstr ""
+msgstr "Fișiere și ecrane speciale"
 
-#: src/LYOptions.c:4261
+#: src/LYOptions.c:4292
 msgid "Multi-bookmarks"
-msgstr ""
+msgstr "Marcaje-pagini-favorite multiple"
 
-#: src/LYOptions.c:4269
+#: src/LYOptions.c:4300
 msgid "Review/edit Bookmarks files"
-msgstr ""
+msgstr "Revizuirea/editarea fișierelor de marcaje"
 
-#: src/LYOptions.c:4272
+#: src/LYOptions.c:4303
 msgid "Goto multi-bookmark menu"
-msgstr ""
+msgstr "Treceți la meniul cu marcaje multiple"
 
-#: src/LYOptions.c:4274
+#: src/LYOptions.c:4305
 msgid "Bookmarks file"
-msgstr ""
+msgstr "Fișier de marcaje"
 
 #. Auto Session: ON/OFF
-#: src/LYOptions.c:4281
+#: src/LYOptions.c:4312
 msgid "Auto Session"
-msgstr ""
+msgstr "Sesiune automată"
 
 #. Session File Menu: INPUT
-#: src/LYOptions.c:4287
+#: src/LYOptions.c:4318
 msgid "Session file"
-msgstr ""
+msgstr "Fișier de sesiune"
 
 #. Visited Pages: SELECT
-#: src/LYOptions.c:4293
+#: src/LYOptions.c:4324
 msgid "Visited Pages"
-msgstr ""
+msgstr "Pagini vizitate"
 
-#: src/LYOptions.c:4298
+#: src/LYOptions.c:4329
 msgid "View the file "
-msgstr ""
+msgstr "Vizualizează fișierul "
 
 #: src/LYPrint.c:956
 #, c-format
 msgid " Print job complete.\n"
-msgstr ""
+msgstr " Lucrare de imprimare finalizată.\n"
 
 #: src/LYPrint.c:1283
 msgid "Document:"
-msgstr ""
+msgstr "Document:"
 
 #: src/LYPrint.c:1284
 msgid "Number of lines:"
-msgstr ""
+msgstr "Numărul de linii:"
 
 #: src/LYPrint.c:1285
 msgid "Number of pages:"
-msgstr ""
+msgstr "Numărul de pagini:"
 
 #: src/LYPrint.c:1286
 msgid "pages"
-msgstr ""
+msgstr "pagini"
 
 #: src/LYPrint.c:1286
 msgid "page"
-msgstr ""
+msgstr "pagină"
 
 #: src/LYPrint.c:1287
 msgid "(approximately)"
-msgstr ""
+msgstr "(aproximativ)"
 
 #: src/LYPrint.c:1294
 msgid "Some print functions have been disabled!"
-msgstr ""
+msgstr "Unele funcții de imprimare au fost dezactivate!"
 
 #: src/LYPrint.c:1298
 msgid "Standard print options:"
-msgstr ""
+msgstr "Opțiuni de imprimare standard:"
 
 #: src/LYPrint.c:1299
 msgid "Print options:"
-msgstr ""
+msgstr "Opțiuni de imprimare:"
 
 #: src/LYPrint.c:1306
 msgid "Save to a local file"
-msgstr ""
+msgstr "Salvează într-un fișier local"
 
 #: src/LYPrint.c:1308
 msgid "Save to disk disabled"
-msgstr ""
+msgstr "Salvarea pe disc este dezactivată"
 
 #: src/LYPrint.c:1315
 msgid "Mail the file"
-msgstr ""
+msgstr "Trimite fișierul prin poșta electronică"
 
 #: src/LYPrint.c:1322
 msgid "Print to the screen"
-msgstr ""
+msgstr "Imprimă pe ecran"
 
 #: src/LYPrint.c:1327
 msgid "Print out on a printer attached to your vt100 terminal"
-msgstr ""
+msgstr "Imprimă pe o imprimantă atașată la terminalul vt100"
 
 #: src/LYReadCFG.c:437
 #, c-format
@@ -5238,294 +5440,300 @@ msgid ""
 "Here FOREGROUND and BACKGROUND must be one of:\n"
 "The special strings 'nocolor' or 'default', or\n"
 msgstr ""
+"Eroare de sintaxă la analizarea CULORII în fișierul de configurare:\n"
+"Linia trebuie să fie de forma:\n"
+"CULOARE:NUMĂR-ÎNTREG:PRIM-PLAN:FUNDAL\n"
+"\n"
+"Aici PRIM-PLAN și FUNDAL trebuie să fie unul dintre:\n"
+"Șirurile speciale \"nocolor\" sau \"default\", sau\n"
 
 #: src/LYReadCFG.c:450
 msgid "Offending line:"
-msgstr ""
+msgstr "Linia incorectă:"
 
 #: src/LYReadCFG.c:764
 #, c-format
 msgid "key remapping of %s to %s for %s failed\n"
-msgstr ""
+msgstr "reconfigurarea tastei de la %s la %s pentru %s a eșuat\n"
 
 #: src/LYReadCFG.c:771
 #, c-format
 msgid "key remapping of %s to %s failed\n"
-msgstr ""
+msgstr "reconfigurarea tastei de la %s la %s a eșuat\n"
 
 #: src/LYReadCFG.c:792
 #, c-format
 msgid "invalid line-editor selection %s for key %s, selecting all\n"
-msgstr ""
+msgstr "selecție nevalidă a editorului %s pentru tasta %s, se selectează toate\n"
 
-#: src/LYReadCFG.c:817 src/LYReadCFG.c:829
+#: src/LYReadCFG.c:817 src/LYReadCFG.c:832
 #, c-format
 msgid "setting of line-editor binding for key %s (0x%x) to 0x%x for %s failed\n"
-msgstr ""
+msgstr "configurarea asocierii editorului pentru tasta %s (0x%x) la 0x%x pentru %s a eșuat\n"
 
-#: src/LYReadCFG.c:833
+#: src/LYReadCFG.c:839
 #, c-format
 msgid "setting of line-editor binding for key %s (0x%x) for %s failed\n"
-msgstr ""
+msgstr "configurarea asocierii editorului de linii pentru tasta %s (0x%x) pentru %s a eșuat\n"
 
-#: src/LYReadCFG.c:929
+#: src/LYReadCFG.c:937
 #, c-format
 msgid "Lynx: cannot start, CERN rules file %s is not available\n"
-msgstr ""
+msgstr "Lynx: nu poate porni, fișierul de reguli CERN %s nu este disponibil\n"
 
-#: src/LYReadCFG.c:930
+#: src/LYReadCFG.c:938
 msgid "(no name)"
-msgstr ""
+msgstr "(fără nume)"
 
-#: src/LYReadCFG.c:2076
+#: src/LYReadCFG.c:2086
 #, c-format
 msgid "More than %d nested lynx.cfg includes -- perhaps there is a loop?!?\n"
-msgstr ""
+msgstr "Mai mult de %d includeri lynx.cfg imbricate -- poate că există o buclă?!?\n"
 
-#: src/LYReadCFG.c:2078
+#: src/LYReadCFG.c:2088
 #, c-format
 msgid "Last attempted include was '%s',\n"
-msgstr ""
+msgstr "Ultima încercare de includere a fost „%s”,\n"
 
-#: src/LYReadCFG.c:2079
+#: src/LYReadCFG.c:2089
 #, c-format
 msgid "included from '%s'.\n"
-msgstr ""
+msgstr "inclusă din „%s”.\n"
 
-#: src/LYReadCFG.c:2490 src/LYReadCFG.c:2503 src/LYReadCFG.c:2561
+#: src/LYReadCFG.c:2500 src/LYReadCFG.c:2513 src/LYReadCFG.c:2571
 msgid "The following is read from your lynx.cfg file."
-msgstr ""
+msgstr "Următoarele informații sunt citite din fișierul lynx.cfg."
 
-#: src/LYReadCFG.c:2491 src/LYReadCFG.c:2504
+#: src/LYReadCFG.c:2501 src/LYReadCFG.c:2514
 msgid "Please read the distribution"
-msgstr ""
+msgstr "Vă rugăm să citiți distribuția"
 
-#: src/LYReadCFG.c:2497 src/LYReadCFG.c:2507
+#: src/LYReadCFG.c:2507 src/LYReadCFG.c:2517
 msgid "for more comments."
-msgstr ""
+msgstr "pentru mai multe detalii."
 
-#: src/LYReadCFG.c:2543
+#: src/LYReadCFG.c:2553
 msgid "RELOAD THE CHANGES"
-msgstr ""
+msgstr "REÎNCARCĂ MODIFICĂRILE"
 
-#: src/LYReadCFG.c:2551
+#: src/LYReadCFG.c:2561
 msgid "Your primary configuration"
-msgstr ""
+msgstr "Configurația dvs. principală"
 
 #: src/LYShowInfo.c:116
 msgid "URL:"
-msgstr ""
+msgstr "URL:"
 
 #: src/LYShowInfo.c:200
 msgid "Directory that you are currently viewing"
-msgstr ""
+msgstr "Directorul pe care îl vizualizați în prezent"
 
 #: src/LYShowInfo.c:203
 msgid "Name:"
-msgstr ""
+msgstr "Nume:"
 
 #: src/LYShowInfo.c:220
 msgid "Directory that you have currently selected"
-msgstr ""
+msgstr "Directorul pe care l-ați selectat în prezent"
 
 #: src/LYShowInfo.c:222
 msgid "File that you have currently selected"
-msgstr ""
+msgstr "Fișierul pe care l-ați selectat în prezent"
 
 #: src/LYShowInfo.c:225
 msgid "Symbolic link that you have currently selected"
-msgstr ""
+msgstr "Legătura simbolică pe care ați selectat-o în prezent"
 
 #: src/LYShowInfo.c:228
 msgid "Item that you have currently selected"
-msgstr ""
+msgstr "Elementul pe care l-ați selectat în prezent"
 
 #: src/LYShowInfo.c:230
 msgid "Full name:"
-msgstr ""
+msgstr "Numele complet:"
 
 #: src/LYShowInfo.c:243
 msgid "Unable to follow link"
-msgstr ""
+msgstr "Nu se poate urmări legătura"
 
 #: src/LYShowInfo.c:245
 msgid "Points to file:"
-msgstr ""
+msgstr "Arată către fișierul:"
 
 #: src/LYShowInfo.c:250
 msgid "Name of owner:"
-msgstr ""
+msgstr "Numele proprietarului:"
 
 #: src/LYShowInfo.c:253
 msgid "Group name:"
-msgstr ""
+msgstr "Numele grupului:"
 
 #: src/LYShowInfo.c:255
 msgid "File size:"
-msgstr ""
+msgstr "Dimensiunea fișierului:"
 
 #: src/LYShowInfo.c:257
 msgid "(bytes)"
-msgstr ""
+msgstr "(octeți)"
 
 #.
 #. * Include date and time information.
 #.
 #: src/LYShowInfo.c:262
 msgid "Creation date:"
-msgstr ""
+msgstr "Data creării:"
 
 #: src/LYShowInfo.c:265
 msgid "Last modified:"
-msgstr ""
+msgstr "Modificat ultima dată:"
 
 #: src/LYShowInfo.c:268
 msgid "Last accessed:"
-msgstr ""
+msgstr "Accesat ultima dată:"
 
 #: src/LYShowInfo.c:274
 msgid "Access Permissions"
-msgstr ""
+msgstr "Permisiuni de acces"
 
 #: src/LYShowInfo.c:309
 msgid "Group:"
-msgstr ""
+msgstr "Grup:"
 
 #: src/LYShowInfo.c:329
 msgid "World:"
-msgstr ""
+msgstr "Alții:"
 
 #: src/LYShowInfo.c:336
 msgid "File that you are currently viewing"
-msgstr ""
+msgstr "Fișierul pe care îl vizualizați în prezent"
 
 #: src/LYShowInfo.c:344 src/LYShowInfo.c:444
 msgid "Linkname:"
-msgstr ""
+msgstr "Numele legăturii:"
 
 #: src/LYShowInfo.c:350 src/LYShowInfo.c:365
 msgid "Charset:"
-msgstr ""
+msgstr "Set de caractere:"
 
 #: src/LYShowInfo.c:364
 msgid "(assumed)"
-msgstr ""
+msgstr "(presupus)"
 
 #: src/LYShowInfo.c:371
 msgid "Server:"
-msgstr ""
+msgstr "Server:"
 
 #: src/LYShowInfo.c:374
 msgid "Date:"
-msgstr ""
+msgstr "Data:"
 
 #: src/LYShowInfo.c:377
 msgid "Last Mod:"
-msgstr ""
+msgstr "Ultima modificare:"
 
 #: src/LYShowInfo.c:381
 msgid "Expires:"
-msgstr ""
+msgstr "Expiră:"
 
 #: src/LYShowInfo.c:384
 msgid "Cache-Control:"
-msgstr ""
+msgstr "Control al zonei de prestocare:"
 
 #: src/LYShowInfo.c:387
 msgid "Content-Length:"
-msgstr ""
+msgstr "Lungimea conținutului:"
 
 #: src/LYShowInfo.c:391
 msgid "Length:"
-msgstr ""
+msgstr "Lungime:"
 
 #: src/LYShowInfo.c:396
 msgid "Language:"
-msgstr ""
+msgstr "Limba:"
 
 #: src/LYShowInfo.c:402
 msgid "Post Data:"
-msgstr ""
+msgstr "Post Data:"
 
 #: src/LYShowInfo.c:405
 msgid "Post Content Type:"
-msgstr ""
+msgstr "Tipul de conținut al mesajului(POST):"
 
 #: src/LYShowInfo.c:408
 msgid "Owner(s):"
-msgstr ""
+msgstr "Proprietar:"
 
 #: src/LYShowInfo.c:413
 msgid "size:"
-msgstr ""
+msgstr "dimensiune:"
 
 #: src/LYShowInfo.c:415
 msgid "lines"
-msgstr ""
+msgstr "linii"
 
 #: src/LYShowInfo.c:419
 msgid "forms mode"
-msgstr ""
+msgstr "modul formular"
 
 #: src/LYShowInfo.c:421
 msgid "source"
-msgstr ""
+msgstr "sursa"
 
 #: src/LYShowInfo.c:422
 msgid "normal"
-msgstr ""
+msgstr "normal"
 
 #: src/LYShowInfo.c:424
 msgid ", safe"
-msgstr ""
+msgstr ", sigur"
 
 #: src/LYShowInfo.c:426
 msgid ", via internal link"
-msgstr ""
+msgstr ", prin legătură internă"
 
 #: src/LYShowInfo.c:430
 msgid ", no-cache"
-msgstr ""
+msgstr ", fără zonă de prestocare"
 
 #: src/LYShowInfo.c:432
 msgid ", ISMAP script"
-msgstr ""
+msgstr ", script ISMAP"
 
 #: src/LYShowInfo.c:434
 msgid ", bookmark file"
-msgstr ""
+msgstr ", fișier de marcaje"
 
 #: src/LYShowInfo.c:437
 msgid "mode:"
-msgstr ""
+msgstr "mod:"
 
 #: src/LYShowInfo.c:443
 msgid "Link that you currently have selected"
-msgstr ""
+msgstr "Legătura pe care ați selectat-o în prezent"
 
 #: src/LYShowInfo.c:452
 msgid "Method:"
-msgstr ""
+msgstr "Metoda:"
 
 #: src/LYShowInfo.c:456
 msgid "Enctype:"
-msgstr ""
+msgstr "Tipul de codificare:"
 
 #: src/LYShowInfo.c:462
 msgid "Action:"
-msgstr ""
+msgstr "Acțiune:"
 
 #: src/LYShowInfo.c:468
 msgid "(Form field)"
-msgstr ""
+msgstr "(câmp de formular)"
 
 #: src/LYShowInfo.c:478
 msgid "No Links on the current page"
-msgstr ""
+msgstr "Nu există legături pe pagina curentă"
 
 #: src/LYShowInfo.c:483
 msgid "Server Headers:"
-msgstr ""
+msgstr "Antetele serverului:"
 
 #: src/LYStyle.c:332
 #, c-format
@@ -5537,112 +5745,137 @@ msgid ""
 "where OBJECT is one of EM,STRONG,B,I,U,BLINK etc.\n"
 "\n"
 msgstr ""
+"Eroare de sintaxă la analizarea stilului în fișierul lss:\n"
+"[%s]\n"
+"Linia trebuie să fie de forma:\n"
+"OBIECT:MONO:CULOARE (de exemplu em:bold:brightblue:white)\n"
+"unde OBIECT este unul dintre EM, STRONG, B, I, U, BLINK etc.\n"
 
-#: src/LYStyle.c:939
+#: src/LYStyle.c:941
 #, c-format
 msgid ""
 "\n"
 "Lynx file \"%s\" is not available.\n"
 "\n"
 msgstr ""
+"\n"
+"Fișierul Lynx „%s” nu este disponibil.\n"
+"\n"
 
 #: src/LYTraversal.c:111
 msgid "here is a list of the history stack so that you may rebuild"
-msgstr ""
+msgstr "aici este o listă cu istoricul stivei, astfel încât să puteți reconstrui"
 
 #: src/LYUpload.c:77
 msgid "ERROR! - upload command is misconfigured"
-msgstr ""
+msgstr "EROARE! - comanda de încărcare este configurată greșit."
 
 #: src/LYUpload.c:98
 msgid "Illegal redirection \"../\" found! Request ignored."
-msgstr ""
+msgstr "Redirecționare ilegală „../” găsită! Cerere ignorată."
 
 #: src/LYUpload.c:101
 msgid "Illegal character \"/\" found! Request ignored."
-msgstr ""
+msgstr "Caracter ilegal „/” găsit! Cerere ignorată."
 
 #: src/LYUpload.c:104
 msgid "Illegal redirection using \"~\" found! Request ignored."
-msgstr ""
+msgstr "Redirecționare ilegală folosind „~”, găsită! Solicitare ignorată."
 
 #: src/LYUpload.c:157
 msgid "Unable to upload file."
-msgstr ""
+msgstr "Nu se poate încărca fișierul."
 
 #: src/LYUpload.c:196
 msgid "Upload To:"
-msgstr ""
+msgstr "Încărcare în:"
 
 #: src/LYUpload.c:197
 msgid "Upload options:"
-msgstr ""
+msgstr "Opțiuni de încărcare:"
 
 #: src/LYUtils.c:1911
 msgid "Download document URL put to clipboard."
-msgstr ""
+msgstr "Descarcă URL-ul documentului și-l pune în clipboard."
 
 #: src/LYUtils.c:2658
 msgid "Unexpected access protocol for this URL scheme."
-msgstr ""
+msgstr "Protocol de acces neașteptat pentru această schemă URL."
 
 #: src/LYUtils.c:3571
 msgid "Too many tempfiles"
-msgstr ""
+msgstr "Prea multe fișiere temporare"
 
 #: src/LYUtils.c:3871
 msgid "unknown restriction"
-msgstr ""
+msgstr "restricție necunoscută"
 
 #: src/LYUtils.c:3902
 #, c-format
 msgid "No restrictions set.\n"
-msgstr ""
+msgstr "Nu sunt stabilite restricții.\n"
 
 #: src/LYUtils.c:3905
 #, c-format
 msgid "Restrictions set:\n"
-msgstr ""
+msgstr "Restricții stabilite:\n"
 
 #: src/LYUtils.c:5202
 msgid "Cannot find HOME directory"
-msgstr ""
+msgstr "Nu se poate găsi directorul HOME"
 
 #: src/LYrcFile.c:16
 msgid "Normally disabled.  See ENABLE_LYNXRC in lynx.cfg\n"
-msgstr ""
+msgstr "În mod normal, este dezactivat.  A se vedea ENABLE_LYNXRC în lynx.cfg.\n"
 
-#: src/LYrcFile.c:363
+#: src/LYrcFile.c:373
 msgid ""
 "accept_all_cookies allows the user to tell Lynx to automatically\n"
 "accept all cookies if desired.  The default is \"FALSE\" which will\n"
 "prompt for each cookie.  Set accept_all_cookies to \"TRUE\" to accept\n"
 "all cookies.\n"
 msgstr ""
+"accept_all_cookies permite utilizatorului să îi ceară lui Lynx să\n"
+"accepte automat toate cookie-urile, dacă dorește.  Valoarea implicită\n"
+"este „FALSE”, care va solicita intervenția utilizatorului pentru fiecare\n"
+"cookie.  Definiți accept_all_cookies la „TRUE” pentru a accepta toate\n"
+"cookie-urile.\n"
 
-#: src/LYrcFile.c:371
+#: src/LYrcFile.c:381
 msgid ""
 "anonftp_password allows the user to tell Lynx to use the personal\n"
 "email address as the password for anonymous ftp.  If no value is given,\n"
 "Lynx will use the personal email address.  Set anonftp_password\n"
 "to a different value if you choose.\n"
 msgstr ""
+"anonftp_password permite utilizatorului să îi indice lui Lynx să\n"
+"folosească adresa de e-mail personală ca parolă pentru ftp anonim.\n"
+"Dacă nu se dă nicio valoare, Lynx va utiliza adresa de e-mail\n"
+"personală.  Definiți anonftp_password la o valoare diferită dacă\n"
+"este necesar.\n"
 
-#: src/LYrcFile.c:380
+#: src/LYrcFile.c:390
 msgid ""
 "bookmark_file specifies the name and location of the default bookmark\n"
 "file into which the user can paste links for easy access at a later\n"
 "date.\n"
 msgstr ""
+"bookmark_file specifică numele și locația fișierului implicit de marcaje\n"
+"în care utilizatorul poate introduce legături pentru a le accesa cu ușurință\n"
+"la o dată ulterioară.\n"
 
-#: src/LYrcFile.c:385
+#: src/LYrcFile.c:395
 msgid ""
 "If case_sensitive_searching is \"on\" then when the user invokes a search\n"
 "using the 's' or '/' keys, the search performed will be case sensitive\n"
 "instead of case INsensitive.  The default is usually \"off\".\n"
 msgstr ""
+"Dacă opțiunea case_sensitive_searching este „on”, atunci când utilizatorul\n"
+"invocă o căutare folosind tastele „s” sau „/”, căutarea efectuată va fi\n"
+"sensibilă la majuscule și minuscule, în loc de INsensibilă la majuscule.\n"
+"Valoarea implicită este, de regulă, „off”.\n"
 
-#: src/LYrcFile.c:390
+#: src/LYrcFile.c:400
 msgid ""
 "The character_set definition controls the representation of 8 bit\n"
 "characters for your terminal.  If 8 bit characters do not show up\n"
@@ -5650,8 +5883,13 @@ msgid ""
 "set or using the 7 bit character approximations.\n"
 "Current valid characters sets are:\n"
 msgstr ""
+"Definiția setului de caractere controlează reprezentarea caracterelor pe\n"
+"8 biți pentru terminalul dumneavoastră.  Dacă caracterele pe 8 biți nu apar\n"
+"corect pe ecran, puteți încerca să treceți la un alt set pe 8 biți sau să\n"
+"folosiți aproximările caracterelor pe 7 biți. Seturile actuale de caractere\n"
+"valabile sunt:\n"
 
-#: src/LYrcFile.c:398
+#: src/LYrcFile.c:408
 msgid ""
 "cookie_accept_domains and cookie_reject_domains are comma-delimited\n"
 "lists of domains from which Lynx should automatically accept or reject\n"
@@ -5659,14 +5897,21 @@ msgid ""
 "take precedence.  The accept_all_cookies parameter will override any\n"
 "settings made here.\n"
 msgstr ""
+"cookie_accept_domains și cookie_reject_domains sunt liste delimitate prin\n"
+"virgule de domenii de la care Lynx ar trebui să accepte sau să respingă\n"
+"automat toate cookie-urile.  În cazul în care un domeniu este specificat\n"
+"în ambele opțiuni, respingerea va avea prioritate.  Parametrul\n"
+"accept_all_cookies va prevala asupra oricăror configurații efectuate aici.\n"
 
-#: src/LYrcFile.c:406
+#: src/LYrcFile.c:416
 msgid ""
 "cookie_file specifies the file from which to read persistent cookies.\n"
 "The default is ~/"
 msgstr ""
+"cookie_file specifică fișierul din care se citesc cookie-urile persistente.\n"
+"Valoarea implicită este ~/"
 
-#: src/LYrcFile.c:411
+#: src/LYrcFile.c:421
 msgid ""
 "cookie_loose_invalid_domains, cookie_strict_invalid_domains, and\n"
 "cookie_query_invalid_domains are comma-delimited lists of which domains\n"
@@ -5676,38 +5921,63 @@ msgid ""
 "with an invalid path or domain attribute.  All domains will default to\n"
 "querying the user for an invalid path or domain.\n"
 msgstr ""
+"cookie_loose_invalid_domains, cookie_strict_invalid_domains și\n"
+"cookie_query_invalid_domains sunt liste delimitate prin virgule care indică\n"
+"domeniile care ar trebui să fie supuse unor grade diferite de verificare a\n"
+"validității.  În cazul în care un domeniu este fixat la verificarea strictă,\n"
+"se va aplica conformitatea strictă cu RFC2109.  Un domeniu cu o verificare\n"
+"slabă va putea defini cookie-uri cu o rută sau un atribut de domeniu nevalid.\n"
+"Toate domeniile vor solicita în mod implicit utilizatorului o rută sau un\n"
+"domeniu nevalid.\n"
 
-#: src/LYrcFile.c:425
+#: src/LYrcFile.c:435
 msgid ""
 "dir_list_order specifies the directory list order under DIRED_SUPPORT\n"
 "(if implemented).  The default is \"ORDER_BY_NAME\"\n"
 msgstr ""
+"dir_list_order specifică ordinea listei de directoare sub DIRED_SUPPORT\n"
+"(dacă este implementată).  Valoarea implicită este „ORDER_BY_NAME„.\n"
 
-#: src/LYrcFile.c:430
+#: src/LYrcFile.c:440
 msgid ""
 "dir_list_styles specifies the directory list style under DIRED_SUPPORT\n"
 "(if implemented).  The default is \"MIXED_STYLE\", which sorts both\n"
 "files and directories together.  \"FILES_FIRST\" lists files first and\n"
 "\"DIRECTORIES_FIRST\" lists directories first.\n"
 msgstr ""
+"dir_list_styles specifică stilul de listă de directoare sub DIRED_SUPPORT\n"
+"(dacă este implementată).  Valoarea implicită este „MIXED_STYLE”, care\n"
+"sortează atât fișierele, cât și directoarele împreună.  „FILES_FIRST”\n"
+"listează mai întâi fișierele, iar „DIRECTORIES_FIRST” listează mai întâi\n"
+"directoarele.\n"
 
-#: src/LYrcFile.c:438
+#: src/LYrcFile.c:448
 msgid ""
 "If emacs_keys is to \"on\" then the normal EMACS movement keys:\n"
 "  ^N = down    ^P = up\n"
 "  ^B = left    ^F = right\n"
 "will be enabled.\n"
 msgstr ""
+"Dacă emacs_keys este fixată la „on”, atunci sunt folosite tastele normale\n"
+"de deplasare EMACS:\n"
+"  Ctrl-N = jos     Ctrl-P = sus\n"
+"  Ctrl-B = stânga  Ctrl-F = dreapta\n"
+"vor fi activate.\n"
 
-#: src/LYrcFile.c:444
+#: src/LYrcFile.c:454
 msgid ""
 "file_editor specifies the editor to be invoked when editing local files\n"
 "or sending mail.  If no editor is specified, then file editing is disabled\n"
 "unless it is activated from the command line, and the built-in line editor\n"
 "will be used for sending mail.\n"
 msgstr ""
+"file_editor specifică editorul care va fi invocat la editarea fișierelor\n"
+"locale sau la trimiterea de mesaje.  Dacă nu este specificat niciun editor,\n"
+"editarea fișierelor este dezactivată, cu excepția cazului în care este\n"
+"activată din linia de comandă, iar pentru trimiterea de e-mail se va utiliza\n"
+"editorul încorporat.\n"
 
-#: src/LYrcFile.c:451
+#: src/LYrcFile.c:461
 msgid ""
 "The file_sorting_method specifies which value to sort on when viewing\n"
 "file lists such as FTP directories.  The options are:\n"
@@ -5716,8 +5986,15 @@ msgid ""
 "   BY_SIZE     -- sorts on the size of the file\n"
 "   BY_DATE     -- sorts on the date of the file\n"
 msgstr ""
+"file_sorting_method specifică valoarea pe baza căreia se face sortarea\n"
+"la vizualizarea listelor de fișiere, cum ar fi directoarele FTP.\n"
+"Opțiunile sunt următoarele:\n"
+"   BY_FILENAME -- sortează pe baza numelui fișierului\n"
+"   BY_TYPE     -- sortează pe baza tipului de fișier\n"
+"   BY_SIZE     -- sortează pe baza dimensiunii fișierului\n"
+"   BY_DATE     -- sortează pe baza datei fișierului\n"
 
-#: src/LYrcFile.c:478
+#: src/LYrcFile.c:492
 msgid ""
 "lineedit_mode specifies the key binding used for inputting strings in\n"
 "prompts and forms.  If lineedit_mode is set to \"Default Binding\" then\n"
@@ -5731,16 +6008,34 @@ msgid ""
 "\n"
 "Current lineedit modes are:\n"
 msgstr ""
+"lineedit_mode specifică legătura de taste utilizată pentru introducerea\n"
+"de șiruri de caractere în prompt-uri și formulare.  Dacă lineedit_mode\n"
+"este fixată la „Default Binding”, atunci se utilizează următoarele\n"
+"caractere de control pentru mutare și ștergere:\n"
+"\n"
+"                Precedent  Următor      Enter    = Acceptă datele de intrare\n"
+"   Mută caract:    ⟵        ⟶         Ctrl-G   = Anulează datele de intrare\n"
+"   Mută cuvânt:   Ctrl-P    Ctrl-N      Ctrl-U   = Șterge linia\n"
+" Șterge caract:   Ctrl-H    Ctrl-R      Ctrl-A   = Început de linie\n"
+" Șterge cuvânt:   Ctrl-B    Ctrl-F      Ctrl-E   = Sfârșit de linie\n"
+"\n"
+"Modurile actuale de editare a liniilor sunt:\n"
 
-#: src/LYrcFile.c:496
+#: src/LYrcFile.c:510
 msgid ""
 "The following allow you to define sub-bookmark files and descriptions.\n"
 "The format is multi_bookmark<capital_letter>=<filename>,<description>\n"
 "Up to 26 bookmark files (for the English capital letters) are allowed.\n"
 "We start with \"multi_bookmarkB\" since 'A' is the default (see above).\n"
 msgstr ""
+"Următoarele vă permit să definiți fișiere și descrieri ale sub-marcajelor.\n"
+"Formatul este multi_bookmark<literă-majusculă>=<nume-fișier>,<descriere>.\n"
+"Sunt permise până la 26 de fișiere de marcaje (pentru literele majuscule\n"
+"din limba engleză).\n"
+"Se începe cu „multi_bookmarkB”, deoarece „A” este valoarea implicită\n"
+"(a se vedea mai sus).\n"
 
-#: src/LYrcFile.c:502
+#: src/LYrcFile.c:516
 msgid ""
 "personal_mail_address specifies your personal mail address.  The\n"
 "address will be sent during HTTP file transfers for authorization and\n"
@@ -5750,8 +6045,15 @@ msgid ""
 "could leave this field blank, but then you won't have it included in\n"
 "your mailed comments.\n"
 msgstr ""
+"personal_mail_address specifică adresa de e-mail personală.  Adresa va fi\n"
+"trimisă în timpul transferurilor de fișiere HTTP în scopul autorizării și\n"
+"al înregistrării, precum și pentru comentarii trimise prin poștă.\n"
+"Dacă nu doriți ca aceste informații să fie transmise, fixați NO_FROM_HEADER\n"
+"la „TRUE” în lynx.cfg sau utilizați opțiunea de linie de comandă „-nofrom”.\n"
+"De asemenea, ați putea lăsa acest câmp gol, dar atunci nu va fi inclus în\n"
+"comentariile trimise prin poștă.\n"
 
-#: src/LYrcFile.c:511
+#: src/LYrcFile.c:525
 msgid ""
 "personal_mail_name specifies your personal name, for mail.  The\n"
 "name is sent for mailed comments.  Lynx will prompt for this,\n"
@@ -5762,8 +6064,17 @@ msgid ""
 "of sending email.  To update the default value, you must use the options\n"
 "menu, or modify this file directly.\n"
 msgstr ""
-
-#: src/LYrcFile.c:521
+"personal_mail_name specifică numele dvs. personal, pentru e-mail.  Acest\n"
+"nume este trimis pentru comentariile trimise prin poștă.  Lynx va solicita\n"
+"acest lucru, afișând valoarea configurată ca valoare implicită la trimiterea\n"
+"de mesaje electronice.\n"
+"Acest nume nu este neapărat același cu numele furnizat ca parte a adresei\n"
+"personale de e-mail (personal_mail_address).\n"
+"Lynx nu salvează modificările aduse acestei valori implicite ca efect secundar\n"
+"al trimiterii de e-mail.  Pentru a actualiza valoarea implicită, trebuie să\n"
+"utilizați meniul de opțiuni sau să modificați direct acest fișier.\n"
+
+#: src/LYrcFile.c:535
 msgid ""
 "preferred_charset specifies the character set in MIME notation (e.g.,\n"
 "ISO-8859-2, ISO-8859-5) which Lynx will indicate you prefer in requests\n"
@@ -5778,8 +6089,19 @@ msgid ""
 "an error response, though the sending of an unacceptable response\n"
 "is also allowed.\n"
 msgstr ""
-
-#: src/LYrcFile.c:539
+"preferred_charset specifică setul de caractere în notație MIME (de exemplu,\n"
+"ISO-8859-2, ISO-8859-5) pe care Lynx va indica că îl preferați în cererile\n"
+"către serverele http care utilizează un antet Accept-Charset.  Valoarea NU\n"
+"trebuie să includă ISO-8859-1 sau US-ASCII, deoarece aceste valori sunt\n"
+"întotdeauna asumate în mod implicit.  Poate fi o listă despărțită prin virgule.\n"
+"Dacă este disponibil un fișier în acel set de caractere, serverul îl va trimite.\n"
+"Dacă nu este prezent niciun antet Accept-Charset, se acceptă orice set de\n"
+"caractere în mod implicit.  În cazul în care există un antet Accept-Charset\n"
+"și dacă serverul nu poate trimite un răspuns acceptabil în conformitate cu\n"
+"antetul Accept-Charset, atunci serverul TREBUIE să trimită un răspuns de\n"
+"eroare, deși este permisă și trimiterea unui răspuns inacceptabil.\n"
+
+#: src/LYrcFile.c:553
 msgid ""
 "preferred_language specifies the language in MIME notation (e.g., en,\n"
 "fr, may be a comma-separated list in decreasing preference)\n"
@@ -5787,8 +6109,15 @@ msgid ""
 "If a file in that language is available, the server will send it.\n"
 "Otherwise, the server will send the file in its default language.\n"
 msgstr ""
+"preferred_language specifică limba în notație MIME (de exemplu, en, fr,\n"
+"poate fi o listă separată prin virgule în preferință descrescătoare) pe\n"
+"care Lynx va indica că o preferați în cererile către serverele http.\n"
+"În cazul în care este disponibil un fișier în limba respectivă, serverul\n"
+"îl va trimite.\n"
+"În caz contrar, serverul va trimite fișierul în mod implicit, în limba\n"
+"în care este redactat.\n"
 
-#: src/LYrcFile.c:550
+#: src/LYrcFile.c:564
 msgid ""
 "If run_all_execution_links is set \"on\" then all local execution links\n"
 "will be executed when they are selected.\n"
@@ -5800,8 +6129,18 @@ msgid ""
 "          or compromise security.  This should only be set to \"on\" if\n"
 "          you are viewing trusted source information.\n"
 msgstr ""
-
-#: src/LYrcFile.c:561
+"Dacă run_all_execution_links este fixată la „on”, atunci toate legăturile\n"
+"de execuție locale vor fi executate atunci când sunt selectate.\n"
+"\n"
+"AVERTISMENT - Acest lucru este potențial foarte periculos.  Deoarece este\n"
+"            posibil să vizualizați informații scrise de surse necunoscute\n"
+"            și de neîncredere, există posibilitatea să fie scrise legături\n"
+"            de tip cal troian.  Legăturile de tip cal troian ar putea fi\n"
+"            scrise pentru a șterge fișiere sau pentru a compromite\n"
+"            securitatea.  Această opțiune ar trebui să fie setată la „on”\n"
+"            numai dacă vizualizați informații din surse de încredere.\n"
+
+#: src/LYrcFile.c:575
 msgid ""
 "If run_execution_links_on_local_files is set \"on\" then all local\n"
 "execution links that are found in LOCAL files will be executed when they\n"
@@ -5816,8 +6155,21 @@ msgid ""
 "          or compromise security.  This should only be set to \"on\" if\n"
 "          you are viewing trusted source information.\n"
 msgstr ""
-
-#: src/LYrcFile.c:579
+"Dacă run_execution_links_on_local_files este fixată la „on”, atunci toate\n"
+"legăturile de execuție locală care se găsesc în fișierele LOCALE vor fi\n"
+"executate atunci când sunt selectate.  Acest lucru este diferit de\n"
+"run_all_execution_links în sensul că numai fișierele care se află în\n"
+"sistemul local vor avea permisiuni pentru executarea legăturilor.\n"
+"\n"
+"AVERTISMENT - Acest lucru este potențial foarte periculos.  Deoarece este\n"
+"            posibil să vizualizați informații scrise de surse necunoscute\n"
+"            și de neîncredere, există posibilitatea să fie scrise legături\n"
+"            de tip cal troian.  Legăturile de tip cal troian ar putea fi\n"
+"            scrise pentru a șterge fișiere sau pentru a compromite\n"
+"            securitatea.  Această opțiune ar trebui să fie setată la „on”\n"
+"            numai dacă vizualizați informații din surse de încredere.\n"
+
+#: src/LYrcFile.c:593
 msgid ""
 "select_popups specifies whether the OPTIONs in a SELECT block which\n"
 "lacks a MULTIPLE attribute are presented as a vertical list of radio\n"
@@ -5827,8 +6179,18 @@ msgid ""
 "as the default while a value of \"off\" will set use of radio boxes.\n"
 "The default can be overridden via the -popup command line toggle.\n"
 msgstr ""
-
-#: src/LYrcFile.c:590
+"select_popups specifică dacă OPȚIUNILE dintr-un bloc SELECT căruia îi\n"
+"lipsește atributul MULTIPLE sunt prezentate ca o listă verticală de\n"
+"butoane radio sau prin intermediul unui meniu emergent.  Rețineți că,\n"
+"dacă atributul MULTIPLE este prezent la începutul etichetei SELECT,\n"
+"Lynx va crea întotdeauna o listă verticală de căsuțe de selectare\n"
+"pentru OPȚIUNI.  O valoare de „on” va stabili meniurile emergente ca\n"
+"fiind cele implicite, în timp ce o valoare de „off” va stabili utilizarea\n"
+"căsuțelor radio.\n"
+"Valoarea implicită poate fi înlocuită prin intermediul opțiunii „-popup”\n"
+"din linia de comandă.\n"
+
+#: src/LYrcFile.c:604
 msgid ""
 "show_color specifies how to set the color mode at startup.  A value of\n"
 "\"never\" will force color mode off (treat the terminal as monochrome)\n"
@@ -5846,8 +6208,27 @@ msgid ""
 "the 'o'ptions menu.  If the option settings are saved, the \"on\" and\n"
 "\"off\" \"show color\" settings will be treated as \"default\".\n"
 msgstr ""
-
-#: src/LYrcFile.c:607
+"show_color specifică cum să se configureze modul de culoare la pornire.  O\n"
+"valoare de „never” (niciodată) va forța dezactivarea modului de culoare\n"
+"(tratarea terminalului ca fiind monocrom) la pornire, chiar dacă terminalul\n"
+"pare a fi capabil de a folosi culori.  O valoare de „always” (întotdeauna)\n"
+"va forța activarea modului color chiar dacă terminalul pare a fi monocrom,\n"
+"în cazul în care acest lucru este acceptat de biblioteca utilizată pentru\n"
+"a construi lynx.\n"
+"O valoare de „default” va avea ca rezultat un terminal monocrom, cu excepția\n"
+"cazului în care capacitatea de culoare este dedusă la pornire pe baza tipului\n"
+"de terminal, dacă nu este utilizată opțiunea de linie de comandă „-color” sau\n"
+"dacă nu este definită variabila de mediu COLORTERM.  Comportamentul implicit\n"
+"este întotdeauna utilizat în conturile anonime sau dacă este activată\n"
+"restricția „option_save”.\n"
+"Efectul valorii salvate poate fi anulat prin intermediul opțiunilor „-color”\n"
+"și „-nocolor” din linia de comandă.\n"
+"Modul stabilit la pornire poate fi modificat prin intermediul opțiunii\n"
+"„Afișează culoarea” din meniul „O\"pțiuni”.  Dacă valorile opțiunii sunt salvate,\n"
+"valorile „on\" și „off\" ale opțiunii „Afișează culoarea” vor fi tratate ca fiind\n"
+"„default”.\n"
+
+#: src/LYrcFile.c:621
 msgid ""
 "show_cursor specifies whether to 'hide' the cursor to the right (and\n"
 "bottom, if possible) of the screen, or to place it to the left of the\n"
@@ -5859,8 +6240,18 @@ msgid ""
 "default while a value of \"off\" will set 'hiding' of the cursor.\n"
 "The default can be overridden via the -show_cursor command line toggle.\n"
 msgstr ""
-
-#: src/LYrcFile.c:618
+"show_cursor specifică dacă se „ascunde” cursorul în dreapta (și în partea de\n"
+"jos, dacă este posibil) a ecranului sau dacă se plasează în stânga legăturii\n"
+"curente în documente sau a opțiunii curente în ferestrele emergente selectate.\n"
+"Poziționarea cursorului în stânga legăturii sau a opțiunii curente este utilă\n"
+"pentru interfețele de vorbire sau braille și atunci când terminalul nu distinge\n"
+"legătura curentă pe baza evidențierii sau a culorii.  O valoare de „on” va\n"
+"stabili poziționarea în stânga ca fiind cea implicită, în timp ce o valoare\n"
+"de „off” va stabili „ascunderea” cursorului.\n"
+"Valoarea implicită poate fi înlocuită prin intermediul opțiunii „-show_cursor”\n"
+"din linia de comandă.\n"
+
+#: src/LYrcFile.c:632
 msgid ""
 "show_dotfiles specifies that the directory listing should include\n"
 "\"hidden\" (dot) files/directories.  If set \"on\", this will be\n"
@@ -5868,8 +6259,14 @@ msgid ""
 "restricted via a command line switch.  If display of hidden files\n"
 "is disabled, creation of such files via Lynx also is disabled.\n"
 msgstr ""
+"show_dotfiles specifică faptul că lista de directoare ar trebui să includă\n"
+"fișiere/directoare „ascunse” (punct).  Dacă este activată, această opțiune\n"
+"va fi respectată numai dacă este activată prin userdefs.h și/sau lynx.cfg\n"
+"și nu este restricționată printr-o opțiune din linia de comandă.  Dacă\n"
+"afișarea fișierelor ascunse este dezactivată, crearea unor astfel de fișiere\n"
+"prin Lynx este, de asemenea, dezactivată.\n"
 
-#: src/LYrcFile.c:629
+#: src/LYrcFile.c:643
 msgid ""
 "If sub_bookmarks is not turned \"off\", and multiple bookmarks have\n"
 "been defined (see below), then all bookmark operations will first\n"
@@ -5881,8 +6278,18 @@ msgid ""
 "user modes.  When this option is set to \"standard\", the menu will be\n"
 "presented regardless of user mode.\n"
 msgstr ""
+"Dacă opțiunea sub_bookmarks nu este dezactivată „off” și dacă au fost definite\n"
+"mai multe marcaje (a se vedea mai jos), atunci toate operațiile cu marcaje vor\n"
+"solicita mai întâi utilizatorului să selecteze un fișier de sub-marcaje activ.\n"
+"Dacă este definit fișierul implicit Lynx bookmark_file (a se vedea mai sus),\n"
+"acesta va fi utilizat ca selecție implicită.  Atunci când această opțiune este\n"
+"configurată la „Avansat”, iar modul de utilizare este avansat, comanda\n"
+"\"V\"izualizare marcaje va invoca o solicitare de linie de stare în loc de meniul\n"
+"văzut în modurile de utilizare novice și intermediar.  Atunci când această\n"
+"opțiune este setată la „standard”, meniul va fi prezentat indiferent de modul\n"
+"de utilizare.\n"
 
-#: src/LYrcFile.c:644
+#: src/LYrcFile.c:658
 msgid ""
 "user_mode specifies the users level of knowledge with Lynx.  The\n"
 "default is \"NOVICE\" which displays two extra lines of help at the\n"
@@ -5891,15 +6298,25 @@ msgid ""
 "Use \"ADVANCED\" to see the URL of the currently selected link at the\n"
 "bottom of the screen.\n"
 msgstr ""
+"user_mode specifică nivelul de cunoștințe al utilizatorului cu Lynx.  Valoarea\n"
+"implicită este „NOVICE”, care afișează două linii suplimentare de ajutor în\n"
+"partea de jos a ecranului pentru a ajuta utilizatorul să învețe comenzile de\n"
+"bază ale Lynx.  Stabiliți user_mode la „INTERMEDIAR” pentru a dezactiva\n"
+"informațiile suplimentare.\n"
+"Utilizați „AVANSAT” pentru a vedea adresa URL a legăturii selectate în prezent,\n"
+"în partea de jos a ecranului.\n"
 
-#: src/LYrcFile.c:653
+#: src/LYrcFile.c:667
 msgid ""
 "If verbose_images is \"on\", lynx will print the name of the image\n"
 "source file in place of [INLINE], [LINK] or [IMAGE]\n"
 "See also VERBOSE_IMAGES in lynx.cfg\n"
 msgstr ""
+"Dacă verbose_images este fixată la „on”, lynx va afișa numele fișierului sursă\n"
+"al imaginii în loc de [INLINE], [LINK] sau [IMAGE].\n"
+"A se vedea, de asemenea, VERBOSE_IMAGES în lynx.cfg\n"
 
-#: src/LYrcFile.c:658
+#: src/LYrcFile.c:672
 msgid ""
 "If vi_keys is set to \"on\", then the normal VI movement keys:\n"
 "  j = down    k = up\n"
@@ -5908,14 +6325,23 @@ msgid ""
 "Capital 'H', 'J' and 'K will still activate help, jump shortcuts,\n"
 "and the keymap display, respectively.\n"
 msgstr ""
+"Dacă vi_keys este fixată la \"on\", atunci se vor folosi tastele normale\n"
+"de deplasare VI:\n"
+"  j = jos       k = sus\n"
+"  h = stânga    l = dreapta\n"
+"vor fi activate.  Aceste taste sunt numai cu minuscule.\n"
+"Majusculele „H”, „J” și „K” vor activa în continuare ajutorul,\n"
+"comenzile rapide și, respectiv, afișarea configurării tastelor.\n"
 
-#: src/LYrcFile.c:666
+#: src/LYrcFile.c:680
 msgid ""
 "The visited_links setting controls how Lynx organizes the information\n"
 "in the Visited Links Page.\n"
 msgstr ""
+"Opțiunea visited_links controlează modul în care Lynx organizează\n"
+"informațiile din pagina „Legături vizitate”.\n"
 
-#: src/LYrcFile.c:910
+#: src/LYrcFile.c:924
 msgid ""
 "If keypad_mode is set to \"NUMBERS_AS_ARROWS\", then the numbers on\n"
 "your keypad when the numlock is on will act as arrow keys:\n"
@@ -5925,14 +6351,26 @@ msgid ""
 "and the corresponding keyboard numbers will act as arrow keys,\n"
 "regardless of whether numlock is on.\n"
 msgstr ""
+"Dacă keypad_mode este fixată la „NUMBERS_AS_ARROWS” atunci numerele de pe\n"
+"tastatura numercă, atunci când blocarea numerică este activată, vor acționa\n"
+"ca taste săgeată:\n"
+"\n"
+"               8 = Săgeată sus\n"
+"  4 = Săgeată dreapta    6 = Săgeată stânga\n"
+"               2 = Săgeată jos\n"
+"iar numerele corespunzătoare de pe tastatură vor acționa ca taste săgeată,\n"
+"indiferent dacă este activată sau nu funcția de blocare a numerelor.\n"
 
-#: src/LYrcFile.c:919
+#: src/LYrcFile.c:933
 msgid ""
 "If keypad_mode is set to \"LINKS_ARE_NUMBERED\", then numbers will\n"
 "appear next to each link and numbers are used to select links.\n"
 msgstr ""
+"Dacă keypad_mode este fixată la \"LINKS_ARE_NUMBERED\", atunci în dreptul\n"
+"fiecărei legături vor apărea numere, iar numerele sunt utilizate pentru\n"
+"a selecta legăturile.\n"
 
-#: src/LYrcFile.c:923
+#: src/LYrcFile.c:937
 msgid ""
 "If keypad_mode is set to \"LINKS_AND_FORM_FIELDS_ARE_NUMBERED\", then\n"
 "numbers will appear next to each link and visible form input field.\n"
@@ -5942,48 +6380,71 @@ msgid ""
 "a popup menu, even if the option isn't visible on the screen.  Reference\n"
 "lists and output from the list command also enumerate form inputs.\n"
 msgstr ""
-
-#: src/LYrcFile.c:932
+"Dacă keypad_mode este fixată la \"LINKS_AND_FORM_FIELDS_ARE_NUMBERED\", atunci\n"
+"în dreptul fiecărei legături și al fiecărui câmp de intrare vizibil din\n"
+"formular vor apărea numere.\n"
+"Numerele sunt utilizate pentru a selecta legături sau pentru a muta „legătura\n"
+"curentă” într-un câmp de introducere al formularului sau într-un buton. În plus,\n"
+"opțiunile din meniurile emergente sunt indexate, astfel încât utilizatorul să\n"
+"poată tasta un număr de opțiune pentru a selecta o opțiune dintr-un meniu\n"
+"emergent, chiar dacă opțiunea respectivă nu este vizibilă pe ecran.  Listele de\n"
+"referință și ieșirea din comanda „Listare” enumeră, de asemenea, intrările din\n"
+"formular.\n"
+
+#: src/LYrcFile.c:946
 msgid ""
 "NOTE: Some fixed format documents may look disfigured when\n"
 "\"LINKS_ARE_NUMBERED\" or \"LINKS_AND_FORM_FIELDS_ARE_NUMBERED\" are\n"
 "enabled.\n"
 msgstr ""
+"NOTĂ: Unele documente în format fix pot avea un aspect denaturat atunci când\n"
+"„LINKS_ARE_NUMBERED” sau „LINKS_AND_FORM_FIELDS_ARE_NUMBERED” sunt activate.\n"
 
-#: src/LYrcFile.c:964
+#: src/LYrcFile.c:978
 msgid ""
 "Lynx User Defaults File\n"
 "\n"
-msgstr ""
+msgstr "Fișierul Lynx cu opțiunile implicite ale utilizatorului\n"
 
-#: src/LYrcFile.c:973
+#: src/LYrcFile.c:987
 msgid ""
 "This file contains options saved from the Lynx Options Screen (normally\n"
 "with the 'o' key).  To save options with that screen, you must select the\n"
 "checkbox:\n"
 msgstr ""
+"Acest fișier conține opțiunile salvate din ecranul de opțiuni Lynx (în mod\n"
+"normal, cu tasta „o”).  Pentru a salva opțiunile cu acel ecran, trebuie să\n"
+"bifați căsuța de selectare:\n"
 
-#: src/LYrcFile.c:980
+#: src/LYrcFile.c:994
 msgid ""
 "You must then save the settings using the link on the line above the\n"
 "checkbox:\n"
 msgstr ""
+"Apoi trebuie să salvați opțiunile cu ajutorul legăturii de pe linia de\n"
+"deasupra căsuței de selectare:\n"
 
-#: src/LYrcFile.c:987
+#: src/LYrcFile.c:1001
 msgid ""
 "You may also use the command-line option \"-forms_options\", which displays\n"
 "the simpler Options Menu instead.  Save options with that using the '>' key.\n"
 "\n"
 msgstr ""
+"De asemenea, puteți utiliza opțiunea din linia de comandă „-forms_options”,\n"
+"care afișează în schimb meniul de opțiuni mai simplu.  Salvați opțiunile din\n"
+"acesta folosind tasta „>”.\n"
+"\n"
 
-#: src/LYrcFile.c:994
+#: src/LYrcFile.c:1008
 msgid ""
 "This file contains options saved from the Lynx Options Screen (normally\n"
 "with the '>' key).\n"
 "\n"
 msgstr ""
+"Acest fișier conține opțiunile salvate din ecranul de opțiuni Lynx (în mod\n"
+"normal, cu ajutorul tastei „>”).\n"
 
-#: src/LYrcFile.c:1001
+#: src/LYrcFile.c:1015
 msgid ""
 "There is normally no need to edit this file manually, since the defaults\n"
 "here can be controlled from the Options Screen, and the next time options\n"
@@ -5994,3 +6455,13 @@ msgid ""
 "called \"lynx.cfg\".  It has different content and a different format.\n"
 "It is not this file.\n"
 msgstr ""
+"În mod normal, nu este necesar să modificați manual acest fișier,\n"
+"deoarece valorile implicite pot fi controlate din ecranul de opțiuni,\n"
+"iar data viitoare când opțiunile sunt salvate de la ecranul de opțiuni,\n"
+"acest fișier va fi complet rescris.\n"
+"Ați fost prevenit...\n"
+"\n"
+"Dacă sunteți în căutarea fișierului de configurare generală, acesta\n"
+"se numește în mod normal „lynx.cfg”.  Acesta are un conținut diferit\n"
+"și un format diferit.\n"
+"Nu este acest fișier.\n"