about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--CHANGES52
-rw-r--r--WWW/Library/Implementation/HTFTP.c5
-rw-r--r--WWW/Library/Implementation/HTFile.c790
-rw-r--r--WWW/Library/Implementation/HTFile.h17
-rw-r--r--WWW/Library/Implementation/HTFormat.c186
-rw-r--r--WWW/Library/Implementation/HTFormat.h23
-rw-r--r--WWW/Library/Implementation/HTMIME.c12
-rw-r--r--WWW/Library/Implementation/HTParse.c58
-rw-r--r--WWW/Library/Implementation/HTTCP.c1
-rw-r--r--WWW/Library/Implementation/HTTP.c36
-rw-r--r--aclocal.m4151
-rwxr-xr-xconfigure4841
-rw-r--r--configure.in26
-rw-r--r--lynx.cfg5
-rw-r--r--lynx.man5
-rw-r--r--lynx_help/Lynx_users_guide.html8
-rw-r--r--po/ca.po272
-rw-r--r--po/cs.po272
-rw-r--r--po/da.po272
-rw-r--r--po/de.po391
-rw-r--r--po/et.po301
-rw-r--r--po/fr.po272
-rw-r--r--po/hu.po272
-rw-r--r--po/it.po272
-rw-r--r--po/ja.po272
-rw-r--r--po/lynx.pot276
-rw-r--r--po/nl.po272
-rw-r--r--po/pt_BR.po272
-rw-r--r--po/ru.po272
-rw-r--r--po/sl.po274
-rw-r--r--po/sv.po272
-rw-r--r--po/tr.po272
-rw-r--r--po/uk.po274
-rw-r--r--po/zh_CN.po272
-rw-r--r--po/zh_TW.po272
-rw-r--r--src/GridText.c21
-rw-r--r--src/HTFWriter.c90
-rw-r--r--src/HTInit.c4
-rw-r--r--src/LYMain.c2
-rw-r--r--src/LYOptions.c1
-rw-r--r--src/LYReadCFG.c4
-rw-r--r--src/LYUtils.c6
-rw-r--r--src/LYrcFile.c1
-rw-r--r--src/LYrcFile.h1
-rw-r--r--userdefs.h4
45 files changed, 6066 insertions, 5608 deletions
diff --git a/CHANGES b/CHANGES
index 3f8d7417..2d9b0cc1 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,58 @@
 Changes since Lynx 2.8 release
 ===============================================================================
 
+2004-10-?? (2.8.6dev.7)
+* update de.po, et.po from
+    http://www.iro.umontreal.ca/translation/maint/lynx
+* clarification in manpage description of "-pseudo_inlines" option (Dan
+  Jacobson).
+* correct parsing of embedded URLs which have parameters but no path, e.g.,
+  base
+    http://wj55.org/Minutes.php
+  and embedded
+    ?date_meeting=2004-08-31
+  (Debian #274619, report/analysis by Liam K Morland) -TD
+* improve description of --assume-local-charset option (Debina #270915).
+* revise configure script check whether _POSIX_C_SOURCE should be defined,
+  taking into account the _POSIX_SOURCE definition (report by PG) -TD
+* add --with-system-type option to configure script to simplify testing the
+  case-statements involving $host_os -TD
+* fix a memory leak in IPv6 version of HTGetAddrInfo() -TD
+* modify HTCompressed() to choose the last viewer in the list with the best
+  quality.  User-defined viewers appear after the built-in viewers, and by
+  choosing the last, lynx allows one to override the built-in defaults -TD
+* add "deflate" to the encoding types which lynx implements.  This consists
+  of several parts (report by Thorsten Glaser) -TD
+  + adapted logic from w3m's inflate.c to construct an internal "deflate"
+    decompressor.  Tested this with 
+      http://carsten.codimi.de/gzip.yaws/
+  + simplify VMS-specific logic for trimming version in HTLoadFile().
+  + combined VMS- and Unix logic for decompression in HTLoadFile() as a new
+    function decompressAndParse() to eliminate clutter.  As a side-effect,
+    eliminate some memory leaks in cases where the file is not loaded properly.
+  + add/use new function HTEncodingToCompressType() to eliminate clutter.
+  + add "deflate" to the options menu.
+  + modify logic that builds "Accept-Encoding" value to omit encodings which
+    have no external decompressor associated.  The effect of this change is to
+    allow lynx to behave as it did before adding the (possibly incomplete)
+    "inflate" support.
+  + add INFLATE_PATH to lynx.cfg, to optionally specify an external program
+    which can be used to decompress deflated files.  For testing, a shell
+    script using w3m's utility, e.g., /usr/lib/w3m/inflate, sufficed.
+    NOTE: As currently implemented, lynx requires the external decompression
+    programs to be specified even if it can decompress using library calls.
+  + use ".zz" for suffix of downloaded (but not inflated) deflated files,
+    mapped to application/deflate and application/x-deflate.
+* fix LYSetConfigValue(), which did not properly handle the CONF_PRG case which
+  is used to allow user configuring the program paths -TD
+* fix content_is_compressed() function, which was checking for the absence only
+  of some nonstandard encodings (8bit, 7bit, binary) rather than for the
+  presence of the encodings as specified in RFC 2068 (gzip, compress, etc).
+  This makes lynx able to view a site
+  which puts the charset as the Content-Type (report by FLWM) -TD
+* fix configure script:  top-level makefile uses $(TAR), which was not defined
+  if --without-dired option was used (report by Gabor Z Papp) -TD
+
 2004-10-10 (2.8.6dev.6)
 * highlight the target and pause for 20 milliseconds when selecting a link with
   the mouse -GV
diff --git a/WWW/Library/Implementation/HTFTP.c b/WWW/Library/Implementation/HTFTP.c
index 6770079c..7c41ab10 100644
--- a/WWW/Library/Implementation/HTFTP.c
+++ b/WWW/Library/Implementation/HTFTP.c
@@ -3725,10 +3725,13 @@ int HTFTPLoad(const char *name,
 		case cftGzip:
 		    StrAllocCopy(anchor->content_encoding, "x-gzip");
 		    break;
+		case cftDeflate:
+		    StrAllocCopy(anchor->content_encoding, "x-deflate");
+		    break;
 		case cftBzip2:
 		    StrAllocCopy(anchor->content_encoding, "x-bzip2");
 		    break;
-		default:
+		case cftNone:
 		    break;
 		}
 	    }
diff --git a/WWW/Library/Implementation/HTFile.c b/WWW/Library/Implementation/HTFile.c
index bf10952f..de4c9b6d 100644
--- a/WWW/Library/Implementation/HTFile.c
+++ b/WWW/Library/Implementation/HTFile.c
@@ -812,6 +812,29 @@ const char *HTFileSuffix(HTAtom *rep,
     return "";			/* Dunno */
 }
 
+/*
+ * Trim version from VMS filenames to avoid confusing comparisons.
+ */
+#ifdef VMS
+static const char *VMS_trim_version(const char *filename)
+{
+    const char *result = filename;
+    char *version = strchr(filename, ';');
+
+    if (version != 0) {
+	static char *stripped;
+
+	StrAllocCopy(stripped, filename);
+	stripped[(const char *) version - filename] = '\0';
+	result = (const char *) stripped;
+    }
+    return result;
+}
+#define VMS_DEL_VERSION(name) name = VMS_trim_version(name)
+#else
+#define VMS_DEL_VERSION(name)	/* nothing */
+#endif
+
 /*	Determine file format from file name.
  *	-------------------------------------
  *
@@ -832,9 +855,7 @@ HTFormat HTFileFormat(const char *filename,
     int i;
     int lf;
 
-#ifdef VMS
-    char *semicolon = NULL;
-#endif /* VMS */
+    VMS_DEL_VERSION(filename);
 
     if (pencoding)
 	*pencoding = NULL;
@@ -845,15 +866,6 @@ HTFormat HTFileFormat(const char *filename,
 	    *pencoding = WWW_ENC_8BIT;
 	return WWW_HTML;
     }
-#ifdef VMS
-    /*
-     * Trim at semicolon if a version number was included, so it doesn't
-     * interfere with the code for getting the MIME type.  - FM
-     */
-    if ((semicolon = strchr(filename, ';')) != NULL)
-	*semicolon = '\0';
-#endif /* VMS */
-
 #ifndef NO_INIT
     if (!HTSuffixes)
 	HTFileInit();
@@ -873,10 +885,6 @@ HTFormat HTFileFormat(const char *filename,
 	    if (pdesc)
 		*pdesc = suff->desc;
 	    if (suff->rep) {
-#ifdef VMS
-		if (semicolon != NULL)
-		    *semicolon = ';';
-#endif /* VMS */
 		return suff->rep;	/* OK -- found */
 	    }
 	    for (j = 0; j < n; j++) {	/* Got encoding, need representation */
@@ -894,10 +902,6 @@ HTFormat HTFileFormat(const char *filename,
 			    *pencoding != WWW_ENC_7BIT &&
 			    !IsUnityEnc(suff->encoding))
 			    *pencoding = suff->encoding;
-#ifdef VMS
-			if (semicolon != NULL)
-			    *semicolon = ';';
-#endif /* VMS */
 			return suff->rep;
 		    }
 		}
@@ -915,13 +919,11 @@ HTFormat HTFileFormat(const char *filename,
     /*
      * Set default encoding unless found with suffix already.
      */
-    if (pencoding && !*pencoding)
-	*pencoding = suff->encoding ? suff->encoding
-	    : HTAtom_for("binary");
-#ifdef VMS
-    if (semicolon != NULL)
-	*semicolon = ';';
-#endif /* VMS */
+    if (pencoding && !*pencoding) {
+	*pencoding = (suff->encoding
+		      ? suff->encoding
+		      : HTAtom_for("binary"));
+    }
     return suff->rep ? suff->rep : WWW_BINARY;
 }
 
@@ -1207,6 +1209,8 @@ CompressFileType HTCompressFileType(char *filename,
     size_t len = strlen(filename);
     char *ftype = filename + len;
 
+    VMS_DEL_VERSION(filename);
+
     if ((len > 4)
 	&& !strcasecomp((ftype - 3), "bz2")
 	&& strchr(dots, ftype[-4]) != 0) {
@@ -1217,6 +1221,11 @@ CompressFileType HTCompressFileType(char *filename,
 	       && strchr(dots, ftype[-3]) != 0) {
 	result = cftGzip;
 	ftype -= 3;
+    } else if ((len > 3)
+	       && !strcasecomp((ftype - 2), "zz")
+	       && strchr(dots, ftype[-3]) != 0) {
+	result = cftDeflate;
+	ftype -= 3;
     } else if ((len > 2)
 	       && !strcmp((ftype - 1), "Z")
 	       && strchr(dots, ftype[-2]) != 0) {
@@ -1225,11 +1234,42 @@ CompressFileType HTCompressFileType(char *filename,
     }
 
     *suffix = ftype;
+
     CTRACE((tfp, "HTCompressFileType(%s) returns %d:%s\n",
 	    filename, result, *suffix));
     return result;
 }
 
+/*
+ * Check if the token from "Content-Encoding" corresponds to a compression
+ * type.  RFC 2068 (and cut/paste into RFC 2616) lists these:
+ *	gzip
+ *	compress
+ *	deflate
+ * as well as "identity" (but that does nothing).
+ */
+CompressFileType HTEncodingToCompressType(const char *coding)
+{
+    CompressFileType result = cftNone;
+
+    if (coding == 0) {
+	result = cftNone;
+    } else if (!strcasecomp(coding, "gzip") ||
+	       !strcasecomp(coding, "x-gzip")) {
+	result = cftGzip;
+    } else if (!strcasecomp(coding, "compress") ||
+	       !strcasecomp(coding, "x-compress")) {
+	result = cftCompress;
+    } else if (!strcasecomp(coding, "bzip2") ||
+	       !strcasecomp(coding, "x-bzip2")) {
+	result = cftBzip2;
+    } else if (!strcasecomp(coding, "deflate") ||
+	       !strcasecomp(coding, "x-deflate")) {
+	result = cftDeflate;
+    }
+    return result;
+}
+
 /*	Determine write access to a file.
  *	---------------------------------
  *
@@ -2079,6 +2119,269 @@ int HTStat(const char *filename,
 }
 #endif
 
+#ifdef VMS
+#define FOPEN_MODE(bin) "r", "shr=put", "shr=upd"
+#define DOT_STRING "._-"	/* FIXME: should we check if suffix is after ']' or ':' ? */
+#else
+#define FOPEN_MODE(bin) (bin ? BIN_R : "r")
+#define DOT_STRING "."
+#endif
+
+static int decompressAndParse(HTParentAnchor *anchor,
+			      HTFormat format_out,
+			      HTStream *sink,
+			      char *nodename GCC_UNUSED,
+			      char *filename,
+			      HTAtom *myEncoding,
+			      HTFormat format,
+			      int *statusp)
+{
+    HTAtom *encoding = 0;
+
+#ifdef USE_ZLIB
+    FILE *zzfp = 0;
+    gzFile gzfp = 0;
+#endif /* USE_ZLIB */
+#ifdef USE_BZLIB
+    BZFILE *bzfp = 0;
+#endif /* USE_ZLIB */
+#if defined(USE_ZLIB) || defined(USE_BZLIB)
+    CompressFileType internal_decompress = cftNone;
+    BOOL failed_decompress = NO;
+#endif
+    char *dot = 0;
+    char *localname = filename;
+    int bin;
+    FILE *fp;
+
+#ifdef VMS
+    /*
+     * Assume that the file is in Unix-style syntax if it contains a '/' after
+     * the leading one.  @@
+     */
+    localname = (strchr(localname + 1, '/')
+		 ? HTVMS_name(nodename, localname)
+		 : localname + 1);
+#endif /* VMS */
+
+    bin = HTCompressFileType(filename, ".", &dot) != cftNone;
+    fp = fopen(localname, FOPEN_MODE(bin));
+
+#ifdef VMS
+    /*
+     * If the file wasn't VMS syntax, then perhaps it is Ultrix.
+     */
+    if (!fp) {
+	char *ultrixname = 0;
+
+	CTRACE((tfp, "HTLoadFile: Can't open as %s\n", localname));
+	HTSprintf0(&ultrixname, "%s::\"%s\"", nodename, filename);
+	fp = fopen(ultrixname, FOPEN_MODE(bin));
+	if (!fp) {
+	    CTRACE((tfp, "HTLoadFile: Can't open as %s\n", ultrixname));
+	}
+	FREE(ultrixname);
+    }
+#endif /* VMS */
+    CTRACE((tfp, "HTLoadFile: Opening `%s' gives %p\n", localname, fp));
+    if (fp) {			/* Good! */
+	if (HTEditable(localname)) {
+	    HTAtom *put = HTAtom_for("PUT");
+	    HTList *methods = HTAnchor_methods(anchor);
+
+	    if (HTList_indexOf(methods, put) == (-1)) {
+		HTList_addObject(methods, put);
+	    }
+	}
+	/*
+	 * Fake a Content-Encoding for compressed files.  - FM
+	 */
+	if (!IsUnityEnc(myEncoding)) {
+	    /*
+	     * We already know from the call to HTFileFormat that
+	     * this is a compressed file, no need to look at the filename
+	     * again.  - kw
+	     */
+	    CompressFileType method = HTEncodingToCompressType(HTAtom_name(myEncoding));
+
+#define isDOWNLOAD(m) (strcmp(format_out->name, "www/download") && (method == m))
+#ifdef USE_ZLIB
+	    if (isDOWNLOAD(cftGzip)) {
+		fclose(fp);
+		gzfp = gzopen(localname, BIN_R);
+
+		CTRACE((tfp, "HTLoadFile: gzopen of `%s' gives %p\n",
+			localname, gzfp));
+		internal_decompress = cftGzip;
+	    } else if (isDOWNLOAD(cftDeflate)) {
+		zzfp = fp;
+		fp = 0;
+
+		CTRACE((tfp, "HTLoadFile: zzopen of `%s' gives %p\n",
+			localname, zzfp));
+		internal_decompress = cftDeflate;
+	    } else
+#endif /* USE_ZLIB */
+#ifdef USE_BZLIB
+	    if (isDOWNLOAD(cftBzip2)) {
+		fclose(fp);
+		bzfp = BZ2_bzopen(localname, BIN_R);
+
+		CTRACE((tfp, "HTLoadFile: bzopen of `%s' gives %p\n",
+			localname, bzfp));
+		internal_decompress = cftBzip2;
+	    } else
+#endif /* USE_BZLIB */
+	    {
+		StrAllocCopy(anchor->content_type, format->name);
+		StrAllocCopy(anchor->content_encoding, HTAtom_name(myEncoding));
+		format = HTAtom_for("www/compressed");
+	    }
+	} else {
+	    CompressFileType cft = HTCompressFileType(localname, DOT_STRING, &dot);
+
+	    if (cft != cftNone) {
+		char *cp = NULL;
+
+		StrAllocCopy(cp, localname);
+		cp[dot - localname] = '\0';
+		format = HTFileFormat(cp, &encoding, NULL);
+		FREE(cp);
+		format = HTCharsetFormat(format, anchor,
+					 UCLYhndl_HTFile_for_unspec);
+		StrAllocCopy(anchor->content_type, format->name);
+	    }
+
+	    switch (cft) {
+	    case cftCompress:
+		StrAllocCopy(anchor->content_encoding, "x-compress");
+		format = HTAtom_for("www/compressed");
+		break;
+	    case cftDeflate:
+		StrAllocCopy(anchor->content_encoding, "x-deflate");
+#ifdef USE_ZLIB
+		if (strcmp(format_out->name, "www/download") != 0) {
+		    zzfp = fp;
+		    fp = 0;
+
+		    CTRACE((tfp, "HTLoadFile: zzopen of `%s' gives %p\n",
+			    localname, zzfp));
+		    internal_decompress = cftDeflate;
+		}
+#else /* USE_ZLIB */
+		format = HTAtom_for("www/compressed");
+#endif /* USE_ZLIB */
+		break;
+	    case cftGzip:
+		StrAllocCopy(anchor->content_encoding, "x-gzip");
+#ifdef USE_ZLIB
+		if (strcmp(format_out->name, "www/download") != 0) {
+		    fclose(fp);
+		    gzfp = gzopen(localname, BIN_R);
+
+		    CTRACE((tfp, "HTLoadFile: gzopen of `%s' gives %p\n",
+			    localname, gzfp));
+		    internal_decompress = cftGzip;
+		}
+#else /* USE_ZLIB */
+		format = HTAtom_for("www/compressed");
+#endif /* USE_ZLIB */
+		break;
+	    case cftBzip2:
+		StrAllocCopy(anchor->content_encoding, "x-bzip2");
+#ifdef USE_BZLIB
+		if (strcmp(format_out->name, "www/download") != 0) {
+		    fclose(fp);
+		    bzfp = BZ2_bzopen(localname, BIN_R);
+
+		    CTRACE((tfp, "HTLoadFile: bzopen of `%s' gives %p\n",
+			    localname, bzfp));
+		    internal_decompress = cftBzip2;
+		}
+#else /* USE_BZLIB */
+		format = HTAtom_for("www/compressed");
+#endif /* USE_BZLIB */
+		break;
+	    case cftNone:
+		break;
+	    }
+	}
+#if defined(USE_ZLIB) || defined(USE_BZLIB)
+	if (internal_decompress != cftNone) {
+	    switch (internal_decompress) {
+#ifdef USE_ZLIB
+	    case cftDeflate:
+		failed_decompress = (zzfp == 0);
+		break;
+	    case cftCompress:
+	    case cftGzip:
+		failed_decompress = (gzfp == 0);
+		break;
+#endif
+#ifdef USE_BZLIB
+	    case cftBzip2:
+		failed_decompress = (bzfp == 0);
+		break;
+#endif
+	    default:
+		failed_decompress = YES;
+		break;
+	    }
+	    if (failed_decompress) {
+		*statusp = HTLoadError(NULL,
+				       -(HT_ERROR),
+				       FAILED_OPEN_COMPRESSED_FILE);
+	    } else {
+		char *sugfname = NULL;
+
+		if (anchor->SugFname) {
+		    StrAllocCopy(sugfname, anchor->SugFname);
+		} else {
+		    char *anchor_path = HTParse(anchor->address, "",
+						PARSE_PATH + PARSE_PUNCTUATION);
+		    char *lastslash;
+
+		    HTUnEscape(anchor_path);
+		    lastslash = strrchr(anchor_path, '/');
+		    if (lastslash)
+			StrAllocCopy(sugfname, lastslash + 1);
+		    FREE(anchor_path);
+		}
+		FREE(anchor->content_encoding);
+		if (sugfname && *sugfname)
+		    HTCheckFnameForCompression(&sugfname, anchor,
+					       TRUE);
+		if (sugfname && *sugfname)
+		    StrAllocCopy(anchor->SugFname, sugfname);
+		FREE(sugfname);
+#ifdef USE_BZLIB
+		if (bzfp)
+		    *statusp = HTParseBzFile(format, format_out,
+					     anchor,
+					     bzfp, sink);
+#endif
+#ifdef USE_ZLIB
+		if (gzfp)
+		    *statusp = HTParseGzFile(format, format_out,
+					     anchor,
+					     gzfp, sink);
+		else if (zzfp)
+		    *statusp = HTParseZzFile(format, format_out,
+					     anchor,
+					     zzfp, sink);
+#endif
+	    }
+	} else
+#endif /* USE_ZLIB || USE_BZLIB */
+	{
+	    *statusp = HTParseFile(format, format_out, anchor, fp, sink);
+	    fclose(fp);
+	}
+	return TRUE;
+    }				/* If successful open */
+    return FALSE;
+}
+
 /*	Load a document.
  *	----------------
  *
@@ -2102,7 +2405,6 @@ int HTLoadFile(const char *addr,
     HTFormat format;
     char *nodename = NULL;
     char *newname = NULL;	/* Simplified name of file */
-    HTAtom *encoding;		/* @@ not used yet */
     HTAtom *myEncoding = NULL;	/* enc of this file, may be gzip etc. */
     int status = -1;
     char *dot;
@@ -2110,16 +2412,6 @@ int HTLoadFile(const char *addr,
 #ifdef VMS
     struct stat stat_info;
 #endif /* VMS */
-#ifdef USE_ZLIB
-    gzFile gzfp = 0;
-#endif /* USE_ZLIB */
-#ifdef USE_BZLIB
-    BZFILE *bzfp = 0;
-#endif /* USE_ZLIB */
-#if defined(USE_ZLIB) || defined(USE_BZLIB)
-    CompressFileType internal_decompress = cftNone;
-    BOOL failed_decompress = NO;
-#endif
 
     /*
      * Reduce the filename to a basic form (hopefully unique!).
@@ -2231,222 +2523,19 @@ int HTLoadFile(const char *addr,
 	}
     }
 
-    /*
-     * Assume that the file is in Unix-style syntax if it contains a '/' after
-     * the leading one.  @@
-     */
-    {
-	FILE *fp;
-	char *vmsname = strchr(filename + 1, '/') ?
-	HTVMS_name(nodename, filename) : filename + 1;
-
-	fp = fopen(vmsname, "r", "shr=put", "shr=upd");
-
-	/*
-	 * If the file wasn't VMS syntax, then perhaps it is Ultrix.
-	 */
-	if (!fp) {
-	    char *ultrixname = 0;
-
-	    CTRACE((tfp, "HTLoadFile: Can't open as %s\n", vmsname));
-	    HTSprintf0(&ultrixname, "%s::\"%s\"", nodename, filename);
-	    fp = fopen(ultrixname, "r", "shr=put", "shr=upd");
-	    if (!fp) {
-		CTRACE((tfp, "HTLoadFile: Can't open as %s\n",
-			ultrixname));
-	    }
-	    FREE(ultrixname);
-	}
-	if (fp) {
-	    char *semicolon = NULL;
-
-	    if (HTEditable(vmsname)) {
-		HTAtom *put = HTAtom_for("PUT");
-		HTList *methods = HTAnchor_methods(anchor);
-
-		if (HTList_indexOf(methods, put) == (-1)) {
-		    HTList_addObject(methods, put);
-		}
-	    }
-	    /*
-	     * Trim vmsname at semicolon if a version number was included, so
-	     * it doesn't interfere with the check for a compressed file.  - FM
-	     */
-	    if ((semicolon = strchr(vmsname, ';')) != NULL)
-		*semicolon = '\0';
-	    /*
-	     * Fake a Content-Encoding for compressed files.  - FM
-	     */
-	    if (!IsUnityEnc(myEncoding)) {
-		/*
-		 * We already know from the call to HTFileFormat above that
-		 * this is a compressed file, no need to look at the filename
-		 * again.  - kw
-		 */
-#ifdef USE_ZLIB
-		if (strcmp(format_out->name, "www/download") != 0 &&
-		    (!strcmp(HTAtom_name(myEncoding), "gzip") ||
-		     !strcmp(HTAtom_name(myEncoding), "x-gzip"))) {
-		    fclose(fp);
-		    if (semicolon != NULL)
-			*semicolon = ';';
-		    gzfp = gzopen(vmsname, BIN_R);
-
-		    CTRACE((tfp, "HTLoadFile: gzopen of `%s' gives %p\n",
-			    vmsname, (void *) gzfp));
-		    internal_decompress = cftGzip;
-		} else
-#endif /* USE_ZLIB */
-#ifdef USE_BZLIB
-		    if (strcmp(format_out->name, "www/download") != 0 &&
-			(!strcmp(HTAtom_name(myEncoding), "bzip2") ||
-			 !strcmp(HTAtom_name(myEncoding), "x-bzip2"))) {
-		    fclose(fp);
-		    if (semicolon != NULL)
-			*semicolon = ';';
-		    bzfp = BZ2_bzopen(vmsname, BIN_R);
-
-		    CTRACE((tfp, "HTLoadFile: bzopen of `%s' gives %p\n",
-			    vmsname, (void *) bzfp));
-		    use_zread = YES;
-		} else
-#endif /* USE_BZLIB */
-		{
-		    StrAllocCopy(anchor->content_type, format->name);
-		    StrAllocCopy(anchor->content_encoding, HTAtom_name(myEncoding));
-		    format = HTAtom_for("www/compressed");
-		}
-	    } else {
-		/* FIXME: should we check if suffix is after ']' or ':' ? */
-		CompressFileType cft = HTCompressFileType(vmsname, "._-", &dot);
-
-		if (cft != cftNone) {
-		    char *cp = NULL;
-
-		    StrAllocCopy(cp, vmsname);
-		    cp[dot - vmsname] = '\0';
-		    format = HTFileFormat(cp, &encoding, NULL);
-		    FREE(cp);
-		    format = HTCharsetFormat(format, anchor,
-					     UCLYhndl_HTFile_for_unspec);
-		    StrAllocCopy(anchor->content_type, format->name);
-		}
-
-		switch (cft) {
-		case cftCompress:
-		    StrAllocCopy(anchor->content_encoding, "x-compress");
-		    format = HTAtom_for("www/compressed");
-		    break;
-		case cftGzip:
-		    StrAllocCopy(anchor->content_encoding, "x-gzip");
-#ifdef USE_ZLIB
-		    if (strcmp(format_out->name, "www/download") != 0) {
-			fclose(fp);
-			if (semicolon != NULL)
-			    *semicolon = ';';
-			gzfp = gzopen(vmsname, BIN_R);
-
-			CTRACE((tfp, "HTLoadFile: gzopen of `%s' gives %p\n",
-				vmsname, (void *) gzfp));
-			internal_decompress = cftGzip;
-		    }
-#else /* USE_ZLIB */
-		    format = HTAtom_for("www/compressed");
-#endif /* USE_ZLIB */
-		    break;
-		case cftBzip2:
-		    StrAllocCopy(anchor->content_encoding, "x-bzip2");
-#ifdef USE_BZLIB
-		    if (strcmp(format_out->name, "www/download") != 0) {
-			fclose(fp);
-			if (semicolon != NULL)
-			    *semicolon = ';';
-			bzfp = BZ2_bzopen(vmsname, BIN_R);
-
-			CTRACE((tfp, "HTLoadFile: bzopen of `%s' gives %p\n",
-				vmsname, (void *) bzfp));
-			internal_decompress = cfgBzip2;
-		    }
-#else /* USE_BZLIB */
-		    format = HTAtom_for("www/compressed");
-#endif /* USE_BZLIB */
-		    break;
-		case cftNone:
-		    break;
-		}
-	    }
-	    if (semicolon != NULL)
-		*semicolon = ';';
-	    FREE(filename);
-	    FREE(nodename);
-#if defined(USE_ZLIB) || defined(USE_BZLIB)
-	    if (internal_decompress != cftNone) {
-		switch (internal_decompress) {
-#ifdef USE_ZLIB
-		case cftCompress:
-		case cftGzip:
-		    failed_decompress = (gzfp == 0);
-		    break;
-#endif
-#ifdef USE_BZLIB
-		case cftBzip2:
-		    failed_decompress = (bzfp == 0);
-		    break;
-#endif
-		default:
-		    failed_decompress = YES;
-		    break;
-		}
-		if (failed_decompress) {
-		    status = HTLoadError(NULL,
-					 -(HT_ERROR),
-					 FAILED_OPEN_COMPRESSED_FILE);
-		} else {
-		    char *sugfname = NULL;
-
-		    if (anchor->SugFname) {
-			StrAllocCopy(sugfname, anchor->SugFname);
-		    } else {
-			char *anchor_path = HTParse(anchor->address, "",
-						    PARSE_PATH + PARSE_PUNCTUATION);
-			char *lastslash;
-
-			HTUnEscape(anchor_path);
-			lastslash = strrchr(anchor_path, '/');
-			if (lastslash)
-			    StrAllocCopy(sugfname, lastslash + 1);
-			FREE(anchor_path);
-		    }
-		    FREE(anchor->content_encoding);
-		    if (sugfname && *sugfname)
-			HTCheckFnameForCompression(&sugfname, anchor,
-						   TRUE);
-		    if (sugfname && *sugfname)
-			StrAllocCopy(anchor->SugFname, sugfname);
-		    FREE(sugfname);
-#ifdef USE_BZLIB
-		    if (bzfp)
-			status = HTParseBzFile(format, format_out,
-					       anchor,
-					       bzfp, sink);
-#endif
-#ifdef USE_ZLIB
-		    if (gzfp)
-			status = HTParseGzFile(format, format_out,
-					       anchor,
-					       gzfp, sink);
-#endif
-		}
-	    } else
-#endif /* USE_ZLIB || USE_BZLIB */
-	    {
-		status = HTParseFile(format, format_out, anchor, fp, sink);
-		fclose(fp);
-	    }
-	    return status;
-	}			/* If successful open */
+    if (decompressAndParse(anchor,
+			   format_out,
+			   sink,
+			   nodename,
+			   filename,
+			   myEncoding,
+			   format,
+			   &status)) {
+	FREE(nodename);
 	FREE(filename);
+	return status;
     }
+    FREE(filename);
 
 #else /* not VMS: */
 
@@ -2540,6 +2629,9 @@ int HTLoadFile(const char *addr,
 			    case cftGzip:
 				atomname = "application/x-gzip";
 				break;
+			    case cftDeflate:
+				atomname = "application/x-deflate";
+				break;
 			    case cftBzip2:
 				atomname = "application/x-bzip2";
 				break;
@@ -2678,184 +2770,19 @@ int HTLoadFile(const char *addr,
 /* End of directory reading section
 */
 #endif /* HAVE_READDIR */
-	{
-	    int bin = HTCompressFileType(localname, ".", &dot) != cftNone;
-	    FILE *fp = fopen(localname, (bin ? BIN_R : "r"));
-
-	    CTRACE((tfp, "HTLoadFile: Opening `%s' gives %p\n",
-		    localname, (void *) fp));
-	    if (fp) {		/* Good! */
-		if (HTEditable(localname)) {
-		    HTAtom *put = HTAtom_for("PUT");
-		    HTList *methods = HTAnchor_methods(anchor);
-
-		    if (HTList_indexOf(methods, put) == (-1)) {
-			HTList_addObject(methods, put);
-		    }
-		}
-		/*
-		 * Fake a Content-Encoding for compressed files.  - FM
-		 */
-		if (!IsUnityEnc(myEncoding)) {
-		    /*
-		     * We already know from the call to HTFileFormat above that
-		     * this is a compressed file, no need to look at the
-		     * filename again.  - kw
-		     */
-#ifdef USE_ZLIB
-		    if (strcmp(format_out->name, "www/download") != 0 &&
-			(!strcmp(HTAtom_name(myEncoding), "gzip") ||
-			 !strcmp(HTAtom_name(myEncoding), "x-gzip"))) {
-			fclose(fp);
-			gzfp = gzopen(localname, BIN_R);
-
-			CTRACE((tfp, "HTLoadFile: gzopen of `%s' gives %p\n",
-				localname, (void *) gzfp));
-			internal_decompress = cftGzip;
-		    } else
-#endif /* USE_ZLIB */
-#ifdef USE_BZLIB
-			if (strcmp(format_out->name, "www/download") != 0 &&
-			    (!strcmp(HTAtom_name(myEncoding), "bzip2") ||
-			     !strcmp(HTAtom_name(myEncoding), "x-bzip2"))) {
-			fclose(fp);
-			bzfp = BZ2_bzopen(localname, BIN_R);
-
-			CTRACE((tfp, "HTLoadFile: bzopen of `%s' gives %p\n",
-				localname, (void *) bzfp));
-			internal_decompress = cftBzip2;
-		    } else
-#endif /* USE_BZLIB */
-		    {
-			StrAllocCopy(anchor->content_type, format->name);
-			StrAllocCopy(anchor->content_encoding, HTAtom_name(myEncoding));
-			format = HTAtom_for("www/compressed");
-		    }
-		} else {
-		    CompressFileType cft = HTCompressFileType(localname, ".", &dot);
-
-		    if (cft != cftNone) {
-			char *cp = NULL;
-
-			StrAllocCopy(cp, localname);
-			cp[dot - localname] = '\0';
-			format = HTFileFormat(cp, &encoding, NULL);
-			FREE(cp);
-			format = HTCharsetFormat(format, anchor,
-						 UCLYhndl_HTFile_for_unspec);
-			StrAllocCopy(anchor->content_type, format->name);
-		    }
-
-		    switch (cft) {
-		    case cftCompress:
-			StrAllocCopy(anchor->content_encoding, "x-compress");
-			format = HTAtom_for("www/compressed");
-			break;
-		    case cftGzip:
-			StrAllocCopy(anchor->content_encoding, "x-gzip");
-#ifdef USE_ZLIB
-			if (strcmp(format_out->name, "www/download") != 0) {
-			    fclose(fp);
-			    gzfp = gzopen(localname, BIN_R);
-
-			    CTRACE((tfp,
-				    "HTLoadFile: gzopen of `%s' gives %p\n",
-				    localname, (void *) gzfp));
-			    internal_decompress = cftGzip;
-			}
-#else /* USE_ZLIB */
-			format = HTAtom_for("www/compressed");
-#endif /* USE_ZLIB */
-			break;
-		    case cftBzip2:
-			StrAllocCopy(anchor->content_encoding, "x-bzip2");
-#ifdef USE_BZLIB
-			if (strcmp(format_out->name, "www/download") != 0) {
-			    fclose(fp);
-			    bzfp = BZ2_bzopen(localname, BIN_R);
-
-			    CTRACE((tfp,
-				    "HTLoadFile: bzopen of `%s' gives %p\n",
-				    localname, (void *) bzfp));
-			    internal_decompress = cftBzip2;
-			}
-#else /* USE_BZLIB */
-			format = HTAtom_for("www/compressed");
-#endif /* USE_BZLIB */
-			break;
-		    case cftNone:
-			break;
-		    }
-		}
-		FREE(localname);
-		FREE(nodename);
-#if defined(USE_ZLIB) || defined(USE_BZLIB)
-		if (internal_decompress != cftNone) {
-		    switch (internal_decompress) {
-#ifdef USE_ZLIB
-		    case cftGzip:
-			failed_decompress = (gzfp == 0);
-			break;
-#endif
-#ifdef USE_BZLIB
-		    case cftBzip2:
-			failed_decompress = (bzfp == 0);
-			break;
-#endif
-		    default:
-			failed_decompress = YES;
-			break;
-		    }
-		    if (failed_decompress) {
-			status = HTLoadError(NULL,
-					     -(HT_ERROR),
-					     FAILED_OPEN_COMPRESSED_FILE);
-		    } else {
-			char *sugfname = NULL;
-
-			if (anchor->SugFname) {
-			    StrAllocCopy(sugfname, anchor->SugFname);
-			} else {
-			    char *anchor_path = HTParse(anchor->address, "",
-							PARSE_PATH + PARSE_PUNCTUATION);
-			    char *lastslash;
-
-			    HTUnEscape(anchor_path);
-			    lastslash = strrchr(anchor_path, '/');
-			    if (lastslash)
-				StrAllocCopy(sugfname, lastslash + 1);
-			    FREE(anchor_path);
-			}
-			FREE(anchor->content_encoding);
-			if (sugfname && *sugfname)
-			    HTCheckFnameForCompression(&sugfname, anchor,
-						       TRUE);
-			if (sugfname && *sugfname)
-			    StrAllocCopy(anchor->SugFname, sugfname);
-			FREE(sugfname);
-#ifdef USE_BZLIB
-			if (bzfp)
-			    status = HTParseBzFile(format, format_out,
-						   anchor,
-						   bzfp, sink);
-#endif
-#ifdef USE_ZLIB
-			if (gzfp)
-			    status = HTParseGzFile(format, format_out,
-						   anchor,
-						   gzfp, sink);
-#endif
-		    }
-		} else
-#endif /* USE_ZLIB */
-		{
-		    status = HTParseFile(format, format_out, anchor, fp, sink);
-		    fclose(fp);
-		}
-		return status;
-	    }			/* If successful open */
+	if (decompressAndParse(anchor,
+			       format_out,
+			       sink,
+			       nodename,
+			       localname,
+			       myEncoding,
+			       format,
+			       &status)) {
+	    FREE(nodename);
 	    FREE(localname);
-	}			/* scope of fp */
+	    return status;
+	}
+	FREE(localname);
     }				/* local unix file system */
 #endif /* !NO_UNIX_IO */
 #endif /* VMS */
@@ -2966,6 +2893,11 @@ void HTInitProgramPaths(void)
 	    path = GZIP_PATH;
 	    break;
 #endif
+#ifdef INFLATE_PATH
+	case ppINFLATE:
+	    path = INFLATE_PATH;
+	    break;
+#endif
 #ifdef INSTALL_PATH
 	case ppINSTALL:
 	    path = INSTALL_PATH;
diff --git a/WWW/Library/Implementation/HTFile.h b/WWW/Library/Implementation/HTFile.h
index 8c522b64..0c69bb42 100644
--- a/WWW/Library/Implementation/HTFile.h
+++ b/WWW/Library/Implementation/HTFile.h
@@ -192,20 +192,34 @@ extern void LYGetFileInfo(const char *filename,
 extern float HTFileValue(const char *filename);
 
 /*
- *  Determine compression type from file name, by looking at its suffix.
+ *  Known compression types.
  */
 typedef enum {
     cftNone
     ,cftCompress
     ,cftGzip
     ,cftBzip2
+    ,cftDeflate
 } CompressFileType;
 
+/*
+ *  Determine compression type from file name, by looking at its suffix.
+ */
 extern CompressFileType HTCompressFileType(char *filename,
 					   char *dots,
 					   char **suffix);
 
 /*
+ *  Determine compression type from the content-type.
+ */
+extern CompressFileType HTContentToCompressType(const char *encoding);
+
+/*
+ *  Determine compression type from the content-encoding.
+ */
+extern CompressFileType HTEncodingToCompressType(const char *encoding);
+
+/*
  *  Determine write access to a file.
  *
  *  ON EXIT,
@@ -276,6 +290,7 @@ typedef enum {
     ,ppCOPY
     ,ppCSWING
     ,ppGZIP
+    ,ppINFLATE
     ,ppINSTALL
     ,ppMKDIR
     ,ppMV
diff --git a/WWW/Library/Implementation/HTFormat.c b/WWW/Library/Implementation/HTFormat.c
index fa9bc045..bdcdef17 100644
--- a/WWW/Library/Implementation/HTFormat.c
+++ b/WWW/Library/Implementation/HTFormat.c
@@ -436,7 +436,7 @@ static HTPresentation *HTFindPresentation(HTFormat rep_in,
 		    if (failsMailcap(pres, anchor))
 			continue;
 		    last_default_match = pres;
-		/* otherwise use the first one */
+		    /* otherwise use the first one */
 		}
 	    }
 	}
@@ -1084,6 +1084,122 @@ static int HTGzFileCopy(gzFile gzfp, HTStream *sink)
     HTFinishDisplayPartial();
     return rv;
 }
+
+/*	Push data from a deflate file pointer down a stream
+ *	-------------------------------------
+ *
+ *  This routine is responsible for creating and PRESENTING any
+ *  graphic (or other) objects described by the file.  The code is
+ *  loosely based on the inflate.c file from w3m.
+ *
+ *
+ *  State of file and target stream on entry:
+ *		      FILE (zzfp) assumed open (should have deflated content),
+ *		      target (sink) assumed valid.
+ *
+ *  Return values:
+ *	HT_INTERRUPTED  Interruption after some data read.
+ *	HT_PARTIAL_CONTENT	Error after some data read.
+ *	-1		Error before any data read.
+ *	HT_LOADED	Normal end of file indication on reading.
+ *
+ *  State of file and target stream on return:
+ *	always		zzfp still open, target stream still valid.
+ */
+static int HTZzFileCopy(FILE *zzfp, HTStream *sink)
+{
+    static char dummy_head[1 + 1] =
+    {
+	0x8 + 0x7 * 0x10,
+	(((0x8 + 0x7 * 0x10) * 0x100 + 30) / 31 * 31) & 0xFF,
+    };
+
+    z_stream s;
+    HTStreamClass targetClass;
+    int bytes;
+    int rv = HT_OK;
+    char output_buffer[INPUT_BUFFER_SIZE];
+    int status;
+    int flush;
+    int retry = 0;
+    int len = 0;
+
+    /*  Push the data down the stream
+     */
+    targetClass = *(sink->isa);	/* Copy pointers to procedures */
+
+    s.zalloc = Z_NULL;
+    s.zfree = Z_NULL;
+    s.opaque = Z_NULL;
+    status = inflateInit(&s);
+    if (status != Z_OK) {
+	CTRACE((tfp, "HTZzFileCopy inflateInit() %s\n", zError(status)));
+	exit(1);
+    }
+    s.avail_in = 0;
+    s.next_out = (Bytef *) output_buffer;
+    s.avail_out = sizeof(output_buffer);
+    flush = Z_NO_FLUSH;
+
+    /*  read and inflate deflate'd file, and push binary down sink
+     */
+    HTReadProgress(bytes = 0, 0);
+    for (;;) {
+	if (s.avail_in == 0) {
+	    s.next_in = (Bytef *) input_buffer;
+	    len = s.avail_in = fread(input_buffer, 1, INPUT_BUFFER_SIZE, zzfp);
+	}
+	status = inflate(&s, flush);
+	if (status == Z_STREAM_END || status == Z_BUF_ERROR) {
+	    len = sizeof(output_buffer) - s.avail_out;
+	    if (len > 0) {
+		(*targetClass.put_block) (sink, output_buffer, len);
+		bytes += len;
+		HTReadProgress(bytes, -1);
+		HTDisplayPartial();
+	    }
+	    rv = HT_LOADED;
+	    break;
+	} else if (status == Z_DATA_ERROR && !retry++) {
+	    status = inflateReset(&s);
+	    if (status != Z_OK) {
+		CTRACE((tfp, "HTZzFileCopy inflateReset() %s\n", zError(status)));
+		rv = bytes ? HT_PARTIAL_CONTENT : -1;
+		break;
+	    }
+	    s.next_in = (Bytef *) dummy_head;
+	    s.avail_in = sizeof(dummy_head);
+	    status = inflate(&s, flush);
+	    s.next_in = (Bytef *) input_buffer;
+	    s.avail_in = len;
+	    continue;
+	} else if (status != Z_OK) {
+	    CTRACE((tfp, "HTZzFileCopy inflate() %s\n", zError(status)));
+	    rv = bytes ? HT_PARTIAL_CONTENT : -1;
+	    break;
+	} else if (s.avail_out == 0) {
+	    len = sizeof(output_buffer);
+	    s.next_out = (Bytef *) output_buffer;
+	    s.avail_out = sizeof(output_buffer);
+
+	    (*targetClass.put_block) (sink, output_buffer, len);
+	    bytes += len;
+	    HTReadProgress(bytes, -1);
+	    HTDisplayPartial();
+
+	    if (HTCheckForInterrupt()) {
+		_HTProgress(TRANSFER_INTERRUPTED);
+		rv = bytes ? HT_INTERRUPTED : -1;
+		break;
+	    }
+	}
+	retry = 1;
+    }				/* next bufferload */
+
+    inflateEnd(&s);
+    HTFinishDisplayPartial();
+    return rv;
+}
 #endif /* USE_ZLIB */
 
 #ifdef USE_BZLIB
@@ -1480,6 +1596,74 @@ int HTParseGzFile(HTFormat rep_in,
     else
 	return HT_LOADED;
 }
+
+/*	HTParseZzFile
+ *
+ *  State of file and target stream on entry:
+ *			FILE (zzfp) assumed open,
+ *			target (sink) usually NULL (will call stream stack).
+ *
+ *  Return values:
+ *	-501		Stream stack failed (cannot present or convert).
+ *	-1		Download cancelled.
+ *	HT_NO_DATA	Error before any data read.
+ *	HT_PARTIAL_CONTENT	Interruption or error after some data read.
+ *	HT_LOADED	Normal end of file indication on reading.
+ *
+ *  State of file and target stream on return:
+ *	always		zzfp closed; target freed, aborted, or NULL.
+ */
+int HTParseZzFile(HTFormat rep_in,
+		  HTFormat format_out,
+		  HTParentAnchor *anchor,
+		  FILE *zzfp,
+		  HTStream *sink)
+{
+    HTStream *stream;
+    HTStreamClass targetClass;
+    int rv;
+
+    stream = HTStreamStack(rep_in, format_out, sink, anchor);
+
+    if (!stream) {
+	char *buffer = 0;
+
+	fclose(zzfp);
+	if (LYCancelDownload) {
+	    LYCancelDownload = FALSE;
+	    return -1;
+	}
+	HTSprintf0(&buffer, CANNOT_CONVERT_I_TO_O,
+		   HTAtom_name(rep_in), HTAtom_name(format_out));
+	CTRACE((tfp, "HTFormat(in HTParseGzFile): %s\n", buffer));
+	rv = HTLoadError(sink, 501, buffer);
+	FREE(buffer);
+	return rv;
+    }
+
+    /*
+     * Push the data down the stream
+     *
+     * @@ Bug:  This decision ought to be made based on "encoding" rather than
+     * on content-type.  @@@ When we handle encoding.  The current method
+     * smells anyway.
+     */
+    targetClass = *(stream->isa);	/* Copy pointers to procedures */
+    rv = HTZzFileCopy(zzfp, stream);
+    if (rv == -1 || rv == HT_INTERRUPTED) {
+	(*targetClass._abort) (stream, NULL);
+    } else {
+	(*targetClass._free) (stream);
+    }
+
+    fclose(zzfp);
+    if (rv == -1)
+	return HT_NO_DATA;
+    else if (rv == HT_INTERRUPTED || (rv > 0 && rv != HT_LOADED))
+	return HT_PARTIAL_CONTENT;
+    else
+	return HT_LOADED;
+}
 #endif /* USE_ZLIB */
 
 #ifdef USE_BZLIB
diff --git a/WWW/Library/Implementation/HTFormat.h b/WWW/Library/Implementation/HTFormat.h
index ec51e7d6..ad3df250 100644
--- a/WWW/Library/Implementation/HTFormat.h
+++ b/WWW/Library/Implementation/HTFormat.h
@@ -218,9 +218,13 @@ typedef enum {
 typedef enum {
     encodingNONE = 0
     ,encodingGZIP = 1
-    ,encodingCOMPRESS = 2
-    ,encodingBZIP2 = 4
-    ,encodingALL = encodingGZIP + encodingCOMPRESS + encodingBZIP2
+    ,encodingDEFLATE = 2
+    ,encodingCOMPRESS = 4
+    ,encodingBZIP2 = 8
+    ,encodingALL = (encodingGZIP
+		    + encodingDEFLATE
+		    + encodingCOMPRESS
+		    + encodingBZIP2)
 } AcceptEncoding;
 
 /*
@@ -482,6 +486,19 @@ extern int HTParseGzFile(HTFormat format_in,
 			 gzFile gzfp,
 			 HTStream *sink);
 
+/*
+HTParseZzFile: Parse a deflate'd File through a file pointer
+
+   This routine is called by protocols modules to load an object.  uses
+   HTStreamStack and HTZzFileCopy.  Returns HT_LOADED if successful, can also
+   return HT_PARTIAL_CONTENT, HT_NO_DATA, or other <0 for failure.
+ */
+extern int HTParseZzFile(HTFormat format_in,
+			 HTFormat format_out,
+			 HTParentAnchor *anchor,
+			 FILE *zzfp,
+			 HTStream *sink);
+
 #endif /* USE_ZLIB */
 
 #ifdef USE_BZLIB
diff --git a/WWW/Library/Implementation/HTMIME.c b/WWW/Library/Implementation/HTMIME.c
index efa54e4e..49791955 100644
--- a/WWW/Library/Implementation/HTMIME.c
+++ b/WWW/Library/Implementation/HTMIME.c
@@ -15,6 +15,7 @@
 #include <HTMIME.h>		/* Implemented here */
 #include <HTTP.h>		/* for redirecting_url */
 #include <HTAlert.h>
+#include <HTFile.h>
 #include <HTCJK.h>
 #include <UCMap.h>
 #include <UCDefs.h>
@@ -168,14 +169,17 @@ void HTMIME_TrimDoubleQuotes(char *value)
 	value[i] = cp[(i + 1)];
 }
 
+/*
+ * Check if the token from "Content-Encoding" corresponds to a compression
+ * type.
+ */
 static BOOL content_is_compressed(HTStream *me)
 {
     char *encoding = me->anchor->content_encoding;
+    BOOL result = (HTEncodingToCompressType(encoding) != cftNone);
 
-    return encoding != 0
-	&& strcmp(encoding, "8bit") != 0
-	&& strcmp(encoding, "7bit") != 0
-	&& strcmp(encoding, "binary") != 0;
+    CTRACE((tfp, "content is%s compressed\n", result ? "" : " NOT"));
+    return result;
 }
 
 /*
diff --git a/WWW/Library/Implementation/HTParse.c b/WWW/Library/Implementation/HTParse.c
index e894b55c..70a21573 100644
--- a/WWW/Library/Implementation/HTParse.c
+++ b/WWW/Library/Implementation/HTParse.c
@@ -29,6 +29,24 @@ struct struct_parts {
     char *anchor;
 };
 
+#if 0				/* for debugging */
+static void show_parts(const char *name, struct struct_parts *parts, int line)
+{
+    if (TRACE) {
+	CTRACE((tfp, "struct_parts(%s) %s@%d\n", name, __FILE__, line));
+	CTRACE((tfp, "   access   '%s'\n", NONNULL(parts->access)));
+	CTRACE((tfp, "   host     '%s'\n", NONNULL(parts->host)));
+	CTRACE((tfp, "   absolute '%s'\n", NONNULL(parts->absolute)));
+	CTRACE((tfp, "   relative '%s'\n", NONNULL(parts->relative)));
+	CTRACE((tfp, "   search   '%s'\n", NONNULL(parts->search)));
+	CTRACE((tfp, "   anchor   '%s'\n", NONNULL(parts->anchor)));
+    }
+}
+#define SHOW_PARTS(name) show_parts(#name, &name, __LINE__)
+#else
+#define SHOW_PARTS(name)	/* nothing */
+#endif
+
 /*	Strip white space off a string.				HTStrip()
  *	-------------------------------
  *
@@ -163,6 +181,16 @@ static void scan(char *name,
 #define LYalloca_free(x)   free(x)
 #endif
 
+static char *strchr_or_end(char *string, int ch)
+{
+    char *result = strchr(string, ch);
+
+    if (result == 0) {
+	result = string + strlen(string);
+    }
+    return result;
+}
+
 /*	Parse a Name relative to another name.			HTParse()
  *	--------------------------------------
  *
@@ -187,7 +215,7 @@ char *HTParse(const char *aName,
     int len, len1, len2;
     char *name = NULL;
     char *rel = NULL;
-    char *p;
+    char *p, *q;
     char *acc_method;
     struct struct_parts given, related;
 
@@ -236,6 +264,7 @@ char *HTParse(const char *aName,
      * Cut up the string into URL fields.
      */
     scan(name, &given);
+    SHOW_PARTS(given);
 
     /*
      * Now related string.
@@ -254,6 +283,7 @@ char *HTParse(const char *aName,
 	memcpy(rel, relatedName, len2);
 	scan(rel, &related);
     }
+    SHOW_PARTS(related);
 
     /*
      * Handle the scheme (access) field.
@@ -450,12 +480,24 @@ char *HTParse(const char *aName,
 	    *tail++ = '/';
 	    strcpy(tail, related.absolute);
 	    if (given.relative) {
-		p = strchr(tail, '?');	/* Search part? */
-		if (p == NULL)
-		    p = (tail + strlen(tail) - 1);
-		for (; *p != '/'; p--) ;	/* last / */
-		p[1] = '\0';	/* Remove filename */
-		strcat(p, given.relative);	/* Add given one */
+		/* RFC 1808 part 4 step 5 (if URL path is empty) */
+		/* a) if given has params, add/replace that */
+		if (given.relative[0] == ';') {
+		    strcpy(strchr_or_end(tail, ';'), given.relative);
+		}
+		/* b) if given has query, add/replace that */
+		else if (given.relative[0] == '?') {
+		    strcpy(strchr_or_end(tail, '?'), given.relative);
+		}
+		/* otherwise fall through to RFC 1808 part 4 step 6 */
+		else {
+		    p = strchr(tail, '?');	/* Search part? */
+		    if (p == NULL)
+			p = (tail + strlen(tail) - 1);
+		    for (; *p != '/'; p--) ;	/* last / */
+		    p[1] = '\0';	/* Remove filename */
+		    strcat(p, given.relative);	/* Add given one */
+		}
 		HTSimplify(result);
 	    }
 	    CTRACE((tfp, "HTParse: (Related-ABS)\n"));
@@ -536,7 +578,7 @@ char *HTParse(const char *aName,
 	default:
 	    CTRACE((tfp, "HTParse:      encode:`%s'\n", result));
 	    do {
-		char *q = p + strlen(p) + 2;
+		q = p + strlen(p) + 2;
 
 		while (q != p + 1) {
 		    q[0] = q[-2];
diff --git a/WWW/Library/Implementation/HTTCP.c b/WWW/Library/Implementation/HTTCP.c
index b5574926..84aeb412 100644
--- a/WWW/Library/Implementation/HTTCP.c
+++ b/WWW/Library/Implementation/HTTCP.c
@@ -1390,6 +1390,7 @@ static LYNX_ADDRINFO *HTGetAddrInfo(const char *str,
 	res = NULL;
     }
 
+    free(s);
     return res;
 }
 #endif /* INET6 */
diff --git a/WWW/Library/Implementation/HTTP.c b/WWW/Library/Implementation/HTTP.c
index ab12eb2b..7307ebb1 100644
--- a/WWW/Library/Implementation/HTTP.c
+++ b/WWW/Library/Implementation/HTTP.c
@@ -353,6 +353,40 @@ static void strip_userid(char *host)
     }
 }
 
+/*
+ * Check if the user's options specified to use the given encoding.  Normally
+ * all encodings with compiled-in support are specified (encodingALL).
+ */
+static BOOL acceptEncoding (int code)
+{
+    BOOL result = FALSE;
+    if ((code & LYAcceptEncoding) != 0) {
+	const char *program = 0;
+	switch (code) {
+	case encodingGZIP:
+	    program = HTGetProgramPath(ppGZIP);
+	    break;
+	case encodingDEFLATE:
+	    program = HTGetProgramPath(ppINFLATE);
+	    break;
+	case encodingCOMPRESS:
+	    program = HTGetProgramPath(ppCOMPRESS);
+	    break;
+	case encodingBZIP2:
+	    program = HTGetProgramPath(ppBZIP2);
+	    break;
+	default:
+	    break;
+	}
+	/*
+	 * FIXME:  if lynx did not rely upon external programs to decompress
+	 * files for external viewers, this check could be relaxed.
+	 */
+	result = (program != 0);
+    }
+    return result;
+}
+
 /*		Load Document from HTTP Server			HTLoadHTTP()
  *		==============================
  *
@@ -745,7 +779,7 @@ static int HTLoadHTTP(const char *arg,
 	    int j, k;
 
 	    for (j = 1; j < encodingALL; j <<= 1) {
-		if ((j & LYAcceptEncoding) != 0) {
+		if (acceptEncoding(j)) {
 		    for (k = 0; tbl_preferred_encoding[k].name != 0; ++k) {
 			if (tbl_preferred_encoding[k].value == j) {
 			    if (list != 0)
diff --git a/aclocal.m4 b/aclocal.m4
index 8a64e1b9..8ec5d7d5 100644
--- a/aclocal.m4
+++ b/aclocal.m4
@@ -4,7 +4,7 @@ dnl and Jim Spath <jspath@mail.bcpl.lib.md.us>
 dnl and Philippe De Muyter <phdm@macqel.be>
 dnl
 dnl Created: 1997/1/28
-dnl Updated: 2004/6/29
+dnl Updated: 2004/10/17
 dnl
 dnl The autoconf used in Lynx development is GNU autoconf 2.13 or 2.52, patched
 dnl by Tom Dickey.  See your local GNU archives, and this URL:
@@ -2247,36 +2247,6 @@ fi
 AC_SUBST(EXTRA_CFLAGS)
 ])dnl
 dnl ---------------------------------------------------------------------------
-dnl CF_GNU_SOURCE version: 3 updated: 2000/10/29 23:30:53
-dnl -------------
-dnl Check if we must define _GNU_SOURCE to get a reasonable value for
-dnl _XOPEN_SOURCE, upon which many POSIX definitions depend.  This is a defect
-dnl (or misfeature) of glibc2, which breaks portability of many applications,
-dnl since it is interwoven with GNU extensions.
-dnl
-dnl Well, yes we could work around it...
-AC_DEFUN([CF_GNU_SOURCE],
-[
-AC_CACHE_CHECK(if we must define _GNU_SOURCE,cf_cv_gnu_source,[
-AC_TRY_COMPILE([#include <sys/types.h>],[
-#ifndef _XOPEN_SOURCE
-make an error
-#endif],
-	[cf_cv_gnu_source=no],
-	[cf_save="$CPPFLAGS"
-	 CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
-	 AC_TRY_COMPILE([#include <sys/types.h>],[
-#ifdef _XOPEN_SOURCE
-make an error
-#endif],
-	[cf_cv_gnu_source=no],
-	[cf_cv_gnu_source=yes])
-	CPPFLAGS="$cf_save"
-	])
-])
-test "$cf_cv_gnu_source" = yes && CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
-])dnl
-dnl ---------------------------------------------------------------------------
 dnl CF_GNUTLS version: 4 updated: 2004/04/26 20:08:48
 dnl ---------
 dnl Check for gnutls library (TLS "is" SSL)
@@ -2380,6 +2350,36 @@ if test "$cf_x509_support" = yes ; then
 fi
 ])dnl
 dnl ---------------------------------------------------------------------------
+dnl CF_GNU_SOURCE version: 3 updated: 2000/10/29 23:30:53
+dnl -------------
+dnl Check if we must define _GNU_SOURCE to get a reasonable value for
+dnl _XOPEN_SOURCE, upon which many POSIX definitions depend.  This is a defect
+dnl (or misfeature) of glibc2, which breaks portability of many applications,
+dnl since it is interwoven with GNU extensions.
+dnl
+dnl Well, yes we could work around it...
+AC_DEFUN([CF_GNU_SOURCE],
+[
+AC_CACHE_CHECK(if we must define _GNU_SOURCE,cf_cv_gnu_source,[
+AC_TRY_COMPILE([#include <sys/types.h>],[
+#ifndef _XOPEN_SOURCE
+make an error
+#endif],
+	[cf_cv_gnu_source=no],
+	[cf_save="$CPPFLAGS"
+	 CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
+	 AC_TRY_COMPILE([#include <sys/types.h>],[
+#ifdef _XOPEN_SOURCE
+make an error
+#endif],
+	[cf_cv_gnu_source=no],
+	[cf_cv_gnu_source=yes])
+	CPPFLAGS="$cf_save"
+	])
+])
+test "$cf_cv_gnu_source" = yes && CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
+])dnl
+dnl ---------------------------------------------------------------------------
 dnl CF_HEADER_PATH version: 8 updated: 2002/11/10 14:46:59
 dnl --------------
 dnl Construct a search-list for a nonstandard header-file
@@ -3051,6 +3051,56 @@ else
 fi
 ])dnl
 dnl ---------------------------------------------------------------------------
+dnl CF_POSIX_C_SOURCE version: 1 updated: 2004/10/17 10:43:13
+dnl -----------------
+dnl Define _POSIX_C_SOURCE to the given level, and _POSIX_SOURCE if needed.
+dnl
+dnl	POSIX.1-1990				_POSIX_SOURCE
+dnl	POSIX.1-1990 and			_POSIX_SOURCE and
+dnl		POSIX.2-1992 C-Language			_POSIX_C_SOURCE=2
+dnl		Bindings Option
+dnl	POSIX.1b-1993				_POSIX_C_SOURCE=199309L
+dnl	POSIX.1c-1996				_POSIX_C_SOURCE=199506L
+dnl	X/Open 2000				_POSIX_C_SOURCE=200112L
+dnl
+dnl Parameters:
+dnl	$1 is the nominal value for _POSIX_C_SOURCE
+AC_DEFUN([CF_POSIX_C_SOURCE],
+[
+cf_POSIX_C_SOURCE=ifelse($1,,199506L,$1)
+AC_CACHE_CHECK(if we should define _POSIX_C_SOURCE,cf_cv_posix_c_source,[
+	CF_MSG_LOG(if the symbol is already defined go no further)
+	AC_TRY_COMPILE([#include <sys/types.h>],[
+#ifndef _POSIX_C_SOURCE
+make an error
+#endif],
+	[cf_cv_posix_c_source=no],
+	[case .$cf_POSIX_C_SOURCE in
+	 .[[12]]??*)
+		cf_cv_posix_c_source="-D_POSIX_C_SOURCE=$cf_POSIX_C_SOURCE"
+		;;
+	 .2)
+		cf_cv_posix_c_source="-D_POSIX_C_SOURCE=$cf_POSIX_C_SOURCE -D_POSIX_SOURCE"
+		;;
+	 .*)
+		cf_cv_posix_c_source="-D_POSIX_SOURCE"
+		;;
+	 esac
+	 CF_MSG_LOG(ifdef from value $cf_POSIX_C_SOURCE)
+	 cf_save="$CPPFLAGS"
+	 CPPFLAGS="$CPPFLAGS $cf_cv_posix_c_source"
+	 CF_MSG_LOG(if the second compile does not leave our definition intact error)
+	 AC_TRY_COMPILE([#include <sys/types.h>],[
+#ifndef _POSIX_C_SOURCE
+make an error
+#endif],,
+	[cf_cv_posix_c_source=no])
+	CPPFLAGS="$cf_save"
+	])
+])
+test "$cf_cv_posix_c_source" != no && CPPFLAGS="$CPPFLAGS $cf_cv_posix_c_source"
+])dnl
+dnl ---------------------------------------------------------------------------
 dnl CF_PROG_EXT version: 10 updated: 2004/01/03 19:28:18
 dnl -----------
 dnl Compute $PROG_EXT, used for non-Unix ports, such as OS/2 EMX.
@@ -4414,21 +4464,25 @@ AC_TRY_LINK([
 test $cf_cv_need_xopen_extension = yes && CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE_EXTENDED"
 ])dnl
 dnl ---------------------------------------------------------------------------
-dnl CF_XOPEN_SOURCE version: 13 updated: 2004/08/22 12:16:05
+dnl CF_XOPEN_SOURCE version: 14 updated: 2004/10/17 10:43:13
 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.
+dnl
+dnl Parameters:
+dnl	$1 is the nominal value for _XOPEN_SOURCE
+dnl	$2 is the nominal value for _POSIX_C_SOURCE
 AC_DEFUN([CF_XOPEN_SOURCE],[
 
 cf_XOPEN_SOURCE=ifelse($1,,500,$1)
-cf_POSIX_C_SOURCE=ifelse($2,,199506,$2)
+cf_POSIX_C_SOURCE=ifelse($2,,199506L,$2)
 
 case $host_os in #(vi
 freebsd*) #(vi
 	# 5.x headers associate
-	#	_XOPEN_SOURCE=600 with _POSIX_C_SOURCE=200112
-	#	_XOPEN_SOURCE=500 with _POSIX_C_SOURCE=199506
-	cf_POSIX_C_SOURCE=200112
+	#	_XOPEN_SOURCE=600 with _POSIX_C_SOURCE=200112L
+	#	_XOPEN_SOURCE=500 with _POSIX_C_SOURCE=199506L
+	cf_POSIX_C_SOURCE=200112L
 	cf_XOPEN_SOURCE=600
 	CPPFLAGS="$CPPFLAGS -D_BSD_TYPES -D__BSD_VISIBLE -D_POSIX_C_SOURCE=$cf_POSIX_C_SOURCE -D_XOPEN_SOURCE=$cf_XOPEN_SOURCE"
 	;;
@@ -4473,31 +4527,12 @@ make an error
 make an error
 #endif],
 	[cf_cv_xopen_source=no],
-	[cf_cv_xopen_source=yes])
-	CPPFLAGS="$cf_save"
-	])
-])
-test "$cf_cv_xopen_source" = yes && CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=$cf_XOPEN_SOURCE"
-
-	# FreeBSD 5.x headers demand this...
-	AC_CACHE_CHECK(if we should define _POSIX_C_SOURCE,cf_cv_xopen_source,[
-	AC_TRY_COMPILE([#include <sys/types.h>],[
-#ifndef _POSIX_C_SOURCE
-make an error
-#endif],
-	[cf_cv_xopen_source=no],
-	[cf_save="$CPPFLAGS"
-	 CPPFLAGS="$CPPFLAGS -D_POSIX_C_SOURCE=$cf_POSIX_C_SOURCE"
-	 AC_TRY_COMPILE([#include <sys/types.h>],[
-#ifdef _POSIX_C_SOURCE
-make an error
-#endif],
-	[cf_cv_xopen_source=no],
-	[cf_cv_xopen_source=yes])
+	[cf_cv_xopen_source=$cf_XOPEN_SOURCE])
 	CPPFLAGS="$cf_save"
 	])
 ])
-test "$cf_cv_xopen_source" = yes && CPPFLAGS="$CPPFLAGS -D_POSIX_C_SOURCE=$cf_POSIX_C_SOURCE"
+test "$cf_cv_xopen_source" != no && CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=$cf_cv_xopen_source"
+	CF_POSIX_C_SOURCE($cf_POSIX_C_SOURCE)
 	;;
 esac
 ])
diff --git a/configure b/configure
index 858a6577..a241055b 100755
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
 #! /bin/sh
-# From configure.in 2.8.6dev.5.
+# From configure.in 2.8.6dev.6.
 # Guess values for system-dependent variables and create Makefiles.
 # Generated by Autoconf 2.52.20030208.
 #
@@ -663,6 +663,7 @@ X features:
 System types:
   --build=BUILD           configure for building on BUILD [guessed]
   --host=HOST       build programs to run on HOST [BUILD]
+  --target=TARGET   configure for building compilers for TARGET [HOST]
 EOF
 fi
 
@@ -678,6 +679,7 @@ Optional Features:
   --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
   --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
 
+  --with-system-type=XXX  test: override derived host system-type
   --with-build-cc=XXX     the build C compiler ($BUILD_CC)
   --with-build-cpp=XXX    the build C preprocessor ($BUILD_CPP)
   --with-build-cflags=XXX the build C compiler-flags
@@ -964,7 +966,7 @@ if test -z "$CONFIG_SITE"; then
 fi
 for ac_site_file in $CONFIG_SITE; do
   if test -r "$ac_site_file"; then
-    { echo "$as_me:967: loading site script $ac_site_file" >&5
+    { echo "$as_me:969: loading site script $ac_site_file" >&5
 echo "$as_me: loading site script $ac_site_file" >&6;}
     cat "$ac_site_file" >&5
     . "$ac_site_file"
@@ -975,7 +977,7 @@ if test -r "$cache_file"; then
   # Some versions of bash will fail to source /dev/null (special
   # files actually), so we avoid doing that.
   if test -f "$cache_file"; then
-    { echo "$as_me:978: loading cache $cache_file" >&5
+    { echo "$as_me:980: loading cache $cache_file" >&5
 echo "$as_me: loading cache $cache_file" >&6;}
     case $cache_file in
       [\\/]* | ?:[\\/]* ) . $cache_file;;
@@ -983,7 +985,7 @@ echo "$as_me: loading cache $cache_file" >&6;}
     esac
   fi
 else
-  { echo "$as_me:986: creating cache $cache_file" >&5
+  { echo "$as_me:988: creating cache $cache_file" >&5
 echo "$as_me: creating cache $cache_file" >&6;}
   >$cache_file
 fi
@@ -999,21 +1001,21 @@ for ac_var in `(set) 2>&1 |
   eval ac_new_val="\$ac_env_${ac_var}_value"
   case $ac_old_set,$ac_new_set in
     set,)
-      { echo "$as_me:1002: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
+      { echo "$as_me:1004: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5
 echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;}
       ac_cache_corrupted=: ;;
     ,set)
-      { echo "$as_me:1006: error: \`$ac_var' was not set in the previous run" >&5
+      { echo "$as_me:1008: error: \`$ac_var' was not set in the previous run" >&5
 echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;}
       ac_cache_corrupted=: ;;
     ,);;
     *)
       if test "x$ac_old_val" != "x$ac_new_val"; then
-        { echo "$as_me:1012: error: \`$ac_var' has changed since the previous run:" >&5
+        { echo "$as_me:1014: error: \`$ac_var' has changed since the previous run:" >&5
 echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;}
-        { echo "$as_me:1014:   former value:  $ac_old_val" >&5
+        { echo "$as_me:1016:   former value:  $ac_old_val" >&5
 echo "$as_me:   former value:  $ac_old_val" >&2;}
-        { echo "$as_me:1016:   current value: $ac_new_val" >&5
+        { echo "$as_me:1018:   current value: $ac_new_val" >&5
 echo "$as_me:   current value: $ac_new_val" >&2;}
         ac_cache_corrupted=:
       fi;;
@@ -1032,9 +1034,9 @@ echo "$as_me:   current value: $ac_new_val" >&2;}
   fi
 done
 if $ac_cache_corrupted; then
-  { echo "$as_me:1035: error: changes in the environment can compromise the build" >&5
+  { echo "$as_me:1037: error: changes in the environment can compromise the build" >&5
 echo "$as_me: error: changes in the environment can compromise the build" >&2;}
-  { { echo "$as_me:1037: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5
+  { { echo "$as_me:1039: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&5
 echo "$as_me: error: run \`make distclean' and/or \`rm $cache_file' and start over" >&2;}
    { (exit 1); exit 1; }; }
 fi
@@ -1054,10 +1056,10 @@ esac
 echo "#! $SHELL" >conftest.sh
 echo  "exit 0"   >>conftest.sh
 chmod +x conftest.sh
-if { (echo "$as_me:1057: PATH=\".;.\"; conftest.sh") >&5
+if { (echo "$as_me:1059: PATH=\".;.\"; conftest.sh") >&5
   (PATH=".;."; conftest.sh) 2>&5
   ac_status=$?
-  echo "$as_me:1060: \$? = $ac_status" >&5
+  echo "$as_me:1062: \$? = $ac_status" >&5
   (exit $ac_status); }; then
   ac_path_separator=';'
 else
@@ -1092,7 +1094,7 @@ for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do
   fi
 done
 if test -z "$ac_aux_dir"; then
-  { { echo "$as_me:1095: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5
+  { { echo "$as_me:1097: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&5
 echo "$as_me: error: cannot find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." >&2;}
    { (exit 1); exit 1; }; }
 fi
@@ -1102,11 +1104,11 @@ ac_configure="$SHELL $ac_aux_dir/configure" # This should be Cygnus configure.
 
 # Make sure we can run config.sub.
 $ac_config_sub sun4 >/dev/null 2>&1 ||
-  { { echo "$as_me:1105: error: cannot run $ac_config_sub" >&5
+  { { echo "$as_me:1107: error: cannot run $ac_config_sub" >&5
 echo "$as_me: error: cannot run $ac_config_sub" >&2;}
    { (exit 1); exit 1; }; }
 
-echo "$as_me:1109: checking build system type" >&5
+echo "$as_me:1111: checking build system type" >&5
 echo $ECHO_N "checking build system type... $ECHO_C" >&6
 if test "${ac_cv_build+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -1115,24 +1117,23 @@ else
 test -z "$ac_cv_build_alias" &&
   ac_cv_build_alias=`$ac_config_guess`
 test -z "$ac_cv_build_alias" &&
-  { { echo "$as_me:1118: error: cannot guess build type; you must specify one" >&5
+  { { echo "$as_me:1120: error: cannot guess build type; you must specify one" >&5
 echo "$as_me: error: cannot guess build type; you must specify one" >&2;}
    { (exit 1); exit 1; }; }
 ac_cv_build=`$ac_config_sub $ac_cv_build_alias` ||
-  { { echo "$as_me:1122: error: $ac_config_sub $ac_cv_build_alias failed." >&5
+  { { echo "$as_me:1124: error: $ac_config_sub $ac_cv_build_alias failed." >&5
 echo "$as_me: error: $ac_config_sub $ac_cv_build_alias failed." >&2;}
    { (exit 1); exit 1; }; }
 
 fi
-echo "$as_me:1127: result: $ac_cv_build" >&5
+echo "$as_me:1129: result: $ac_cv_build" >&5
 echo "${ECHO_T}$ac_cv_build" >&6
 build=$ac_cv_build
 build_cpu=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
 build_vendor=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
 build_os=`echo $ac_cv_build | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
 
-if test -f $srcdir/config.guess || test -f $ac_aux_dir/config.guess ; then
-	echo "$as_me:1135: checking host system type" >&5
+echo "$as_me:1136: checking host system type" >&5
 echo $ECHO_N "checking host system type... $ECHO_C" >&6
 if test "${ac_cv_host+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -1141,18 +1142,46 @@ else
 test -z "$ac_cv_host_alias" &&
   ac_cv_host_alias=$ac_cv_build_alias
 ac_cv_host=`$ac_config_sub $ac_cv_host_alias` ||
-  { { echo "$as_me:1144: error: $ac_config_sub $ac_cv_host_alias failed" >&5
+  { { echo "$as_me:1145: error: $ac_config_sub $ac_cv_host_alias failed" >&5
 echo "$as_me: error: $ac_config_sub $ac_cv_host_alias failed" >&2;}
    { (exit 1); exit 1; }; }
 
 fi
-echo "$as_me:1149: result: $ac_cv_host" >&5
+echo "$as_me:1150: result: $ac_cv_host" >&5
 echo "${ECHO_T}$ac_cv_host" >&6
 host=$ac_cv_host
 host_cpu=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
 host_vendor=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
 host_os=`echo $ac_cv_host | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
 
+if test -f $srcdir/config.guess || test -f $ac_aux_dir/config.guess ; then
+	echo "$as_me:1158: checking target system type" >&5
+echo $ECHO_N "checking target system type... $ECHO_C" >&6
+if test "${ac_cv_target+set}" = set; then
+  echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+  ac_cv_target_alias=$target_alias
+test "x$ac_cv_target_alias" = "x" &&
+  ac_cv_target_alias=$ac_cv_host_alias
+ac_cv_target=`$ac_config_sub $ac_cv_target_alias` ||
+  { { echo "$as_me:1167: error: $ac_config_sub $ac_cv_target_alias failed" >&5
+echo "$as_me: error: $ac_config_sub $ac_cv_target_alias failed" >&2;}
+   { (exit 1); exit 1; }; }
+
+fi
+echo "$as_me:1172: result: $ac_cv_target" >&5
+echo "${ECHO_T}$ac_cv_target" >&6
+target=$ac_cv_target
+target_cpu=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
+target_vendor=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
+target_os=`echo $ac_cv_target | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
+
+# The aliases save the names the user supplied, while $host etc.
+# will get canonicalized.
+test -n "$target_alias" &&
+  test "$program_prefix$program_suffix$program_transform_name" = \
+    NONENONEs,x,x, &&
+  program_prefix=${target_alias}-
 	system_name="$host_os"
 else
 	system_name="`(uname -s -r) 2>/dev/null`"
@@ -1171,20 +1200,28 @@ else
 fi
 
 test -z "$system_name" && system_name="$cf_cv_system_name"
-test -n "$cf_cv_system_name" && echo "$as_me:1174: result: Configuring for $cf_cv_system_name" >&5
+test -n "$cf_cv_system_name" && echo "$as_me:1203: result: Configuring for $cf_cv_system_name" >&5
 echo "${ECHO_T}Configuring for $cf_cv_system_name" >&6
 
 if test ".$system_name" != ".$cf_cv_system_name" ; then
-	echo "$as_me:1178: result: Cached system name ($system_name) does not agree with actual ($cf_cv_system_name)" >&5
+	echo "$as_me:1207: result: Cached system name ($system_name) does not agree with actual ($cf_cv_system_name)" >&5
 echo "${ECHO_T}Cached system name ($system_name) does not agree with actual ($cf_cv_system_name)" >&6
-	{ { echo "$as_me:1180: error: \"Please remove config.cache and try again.\"" >&5
+	{ { echo "$as_me:1209: error: \"Please remove config.cache and try again.\"" >&5
 echo "$as_me: error: \"Please remove config.cache and try again.\"" >&2;}
    { (exit 1); exit 1; }; }
 fi
 
+# Check whether --with-system-type or --without-system-type was given.
+if test "${with_system_type+set}" = set; then
+  withval="$with_system_type"
+  { echo "$as_me:1217: WARNING: overriding system type $host_os to $withval" >&5
+echo "$as_me: WARNING: overriding system type $host_os to $withval" >&2;}
+ host_os=$withval
+fi;
+
 PACKAGE=lynx
 # $Format: "VERSION=$ProjectVersion$"$
-VERSION=2.8.6dev.6
+VERSION=2.8.6dev.7
 
 test -z "$ALL_LINGUAS" && ALL_LINGUAS=`test -d $srcdir/po && cd $srcdir/po && echo *.po|sed -e 's/\.po//g' -e 's/*//'`
 
@@ -1203,7 +1240,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
 if test -n "$ac_tool_prefix"; then
   # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args.
 set dummy ${ac_tool_prefix}gcc; ac_word=$2
-echo "$as_me:1206: checking for $ac_word" >&5
+echo "$as_me:1243: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_prog_CC+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -1218,7 +1255,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_CC="${ac_tool_prefix}gcc"
-echo "$as_me:1221: found $ac_dir/$ac_word" >&5
+echo "$as_me:1258: found $ac_dir/$ac_word" >&5
 break
 done
 
@@ -1226,10 +1263,10 @@ fi
 fi
 CC=$ac_cv_prog_CC
 if test -n "$CC"; then
-  echo "$as_me:1229: result: $CC" >&5
+  echo "$as_me:1266: result: $CC" >&5
 echo "${ECHO_T}$CC" >&6
 else
-  echo "$as_me:1232: result: no" >&5
+  echo "$as_me:1269: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -1238,7 +1275,7 @@ if test -z "$ac_cv_prog_CC"; then
   ac_ct_CC=$CC
   # Extract the first word of "gcc", so it can be a program name with args.
 set dummy gcc; ac_word=$2
-echo "$as_me:1241: checking for $ac_word" >&5
+echo "$as_me:1278: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -1253,7 +1290,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_CC="gcc"
-echo "$as_me:1256: found $ac_dir/$ac_word" >&5
+echo "$as_me:1293: found $ac_dir/$ac_word" >&5
 break
 done
 
@@ -1261,10 +1298,10 @@ fi
 fi
 ac_ct_CC=$ac_cv_prog_ac_ct_CC
 if test -n "$ac_ct_CC"; then
-  echo "$as_me:1264: result: $ac_ct_CC" >&5
+  echo "$as_me:1301: result: $ac_ct_CC" >&5
 echo "${ECHO_T}$ac_ct_CC" >&6
 else
-  echo "$as_me:1267: result: no" >&5
+  echo "$as_me:1304: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -1277,7 +1314,7 @@ if test -z "$CC"; then
   if test -n "$ac_tool_prefix"; then
   # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args.
 set dummy ${ac_tool_prefix}cc; ac_word=$2
-echo "$as_me:1280: checking for $ac_word" >&5
+echo "$as_me:1317: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_prog_CC+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -1292,7 +1329,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_CC="${ac_tool_prefix}cc"
-echo "$as_me:1295: found $ac_dir/$ac_word" >&5
+echo "$as_me:1332: found $ac_dir/$ac_word" >&5
 break
 done
 
@@ -1300,10 +1337,10 @@ fi
 fi
 CC=$ac_cv_prog_CC
 if test -n "$CC"; then
-  echo "$as_me:1303: result: $CC" >&5
+  echo "$as_me:1340: result: $CC" >&5
 echo "${ECHO_T}$CC" >&6
 else
-  echo "$as_me:1306: result: no" >&5
+  echo "$as_me:1343: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -1312,7 +1349,7 @@ if test -z "$ac_cv_prog_CC"; then
   ac_ct_CC=$CC
   # Extract the first word of "cc", so it can be a program name with args.
 set dummy cc; ac_word=$2
-echo "$as_me:1315: checking for $ac_word" >&5
+echo "$as_me:1352: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -1327,7 +1364,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_CC="cc"
-echo "$as_me:1330: found $ac_dir/$ac_word" >&5
+echo "$as_me:1367: found $ac_dir/$ac_word" >&5
 break
 done
 
@@ -1335,10 +1372,10 @@ fi
 fi
 ac_ct_CC=$ac_cv_prog_ac_ct_CC
 if test -n "$ac_ct_CC"; then
-  echo "$as_me:1338: result: $ac_ct_CC" >&5
+  echo "$as_me:1375: result: $ac_ct_CC" >&5
 echo "${ECHO_T}$ac_ct_CC" >&6
 else
-  echo "$as_me:1341: result: no" >&5
+  echo "$as_me:1378: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -1351,7 +1388,7 @@ fi
 if test -z "$CC"; then
   # Extract the first word of "cc", so it can be a program name with args.
 set dummy cc; ac_word=$2
-echo "$as_me:1354: checking for $ac_word" >&5
+echo "$as_me:1391: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_prog_CC+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -1371,7 +1408,7 @@ if test "$ac_dir/$ac_word" = "/usr/ucb/cc"; then
   continue
 fi
 ac_cv_prog_CC="cc"
-echo "$as_me:1374: found $ac_dir/$ac_word" >&5
+echo "$as_me:1411: found $ac_dir/$ac_word" >&5
 break
 done
 
@@ -1393,10 +1430,10 @@ fi
 fi
 CC=$ac_cv_prog_CC
 if test -n "$CC"; then
-  echo "$as_me:1396: result: $CC" >&5
+  echo "$as_me:1433: result: $CC" >&5
 echo "${ECHO_T}$CC" >&6
 else
-  echo "$as_me:1399: result: no" >&5
+  echo "$as_me:1436: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -1407,7 +1444,7 @@ if test -z "$CC"; 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:1410: checking for $ac_word" >&5
+echo "$as_me:1447: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_prog_CC+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -1422,7 +1459,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_CC="$ac_tool_prefix$ac_prog"
-echo "$as_me:1425: found $ac_dir/$ac_word" >&5
+echo "$as_me:1462: found $ac_dir/$ac_word" >&5
 break
 done
 
@@ -1430,10 +1467,10 @@ fi
 fi
 CC=$ac_cv_prog_CC
 if test -n "$CC"; then
-  echo "$as_me:1433: result: $CC" >&5
+  echo "$as_me:1470: result: $CC" >&5
 echo "${ECHO_T}$CC" >&6
 else
-  echo "$as_me:1436: result: no" >&5
+  echo "$as_me:1473: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -1446,7 +1483,7 @@ if test -z "$CC"; 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:1449: checking for $ac_word" >&5
+echo "$as_me:1486: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_prog_ac_ct_CC+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -1461,7 +1498,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_CC="$ac_prog"
-echo "$as_me:1464: found $ac_dir/$ac_word" >&5
+echo "$as_me:1501: found $ac_dir/$ac_word" >&5
 break
 done
 
@@ -1469,10 +1506,10 @@ fi
 fi
 ac_ct_CC=$ac_cv_prog_ac_ct_CC
 if test -n "$ac_ct_CC"; then
-  echo "$as_me:1472: result: $ac_ct_CC" >&5
+  echo "$as_me:1509: result: $ac_ct_CC" >&5
 echo "${ECHO_T}$ac_ct_CC" >&6
 else
-  echo "$as_me:1475: result: no" >&5
+  echo "$as_me:1512: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -1484,32 +1521,32 @@ fi
 
 fi
 
-test -z "$CC" && { { echo "$as_me:1487: error: no acceptable cc found in \$PATH" >&5
+test -z "$CC" && { { echo "$as_me:1524: error: no acceptable cc found in \$PATH" >&5
 echo "$as_me: error: no acceptable cc found in \$PATH" >&2;}
    { (exit 1); exit 1; }; }
 
 # Provide some information about the compiler.
-echo "$as_me:1492:" \
+echo "$as_me:1529:" \
      "checking for C compiler version" >&5
 ac_compiler=`set X $ac_compile; echo $2`
-{ (eval echo "$as_me:1495: \"$ac_compiler --version </dev/null >&5\"") >&5
+{ (eval echo "$as_me:1532: \"$ac_compiler --version </dev/null >&5\"") >&5
   (eval $ac_compiler --version </dev/null >&5) 2>&5
   ac_status=$?
-  echo "$as_me:1498: \$? = $ac_status" >&5
+  echo "$as_me:1535: \$? = $ac_status" >&5
   (exit $ac_status); }
-{ (eval echo "$as_me:1500: \"$ac_compiler -v </dev/null >&5\"") >&5
+{ (eval echo "$as_me:1537: \"$ac_compiler -v </dev/null >&5\"") >&5
   (eval $ac_compiler -v </dev/null >&5) 2>&5
   ac_status=$?
-  echo "$as_me:1503: \$? = $ac_status" >&5
+  echo "$as_me:1540: \$? = $ac_status" >&5
   (exit $ac_status); }
-{ (eval echo "$as_me:1505: \"$ac_compiler -V </dev/null >&5\"") >&5
+{ (eval echo "$as_me:1542: \"$ac_compiler -V </dev/null >&5\"") >&5
   (eval $ac_compiler -V </dev/null >&5) 2>&5
   ac_status=$?
-  echo "$as_me:1508: \$? = $ac_status" >&5
+  echo "$as_me:1545: \$? = $ac_status" >&5
   (exit $ac_status); }
 
 cat >conftest.$ac_ext <<_ACEOF
-#line 1512 "configure"
+#line 1549 "configure"
 #include "confdefs.h"
 
 int
@@ -1525,13 +1562,13 @@ ac_clean_files="$ac_clean_files a.out a.exe"
 # Try to create an executable without -o first, disregard a.out.
 # It will help us diagnose broken compilers, and finding out an intuition
 # of exeext.
-echo "$as_me:1528: checking for C compiler default output" >&5
+echo "$as_me:1565: checking for C compiler default output" >&5
 echo $ECHO_N "checking for C compiler default output... $ECHO_C" >&6
 ac_link_default=`echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'`
-if { (eval echo "$as_me:1531: \"$ac_link_default\"") >&5
+if { (eval echo "$as_me:1568: \"$ac_link_default\"") >&5
   (eval $ac_link_default) 2>&5
   ac_status=$?
-  echo "$as_me:1534: \$? = $ac_status" >&5
+  echo "$as_me:1571: \$? = $ac_status" >&5
   (exit $ac_status); }; then
   # Find the output, starting from the most likely.  This scheme is
 # not robust to junk in `.', hence go to wildcards (a.*) only as a last
@@ -1554,34 +1591,34 @@ done
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
-{ { echo "$as_me:1557: error: C compiler cannot create executables" >&5
+{ { echo "$as_me:1594: error: C compiler cannot create executables" >&5
 echo "$as_me: error: C compiler cannot create executables" >&2;}
    { (exit 77); exit 77; }; }
 fi
 
 ac_exeext=$ac_cv_exeext
-echo "$as_me:1563: result: $ac_file" >&5
+echo "$as_me:1600: result: $ac_file" >&5
 echo "${ECHO_T}$ac_file" >&6
 
 # Check the compiler produces executables we can run.  If not, either
 # the compiler is broken, or we cross compile.
-echo "$as_me:1568: checking whether the C compiler works" >&5
+echo "$as_me:1605: checking whether the C compiler works" >&5
 echo $ECHO_N "checking whether the C compiler works... $ECHO_C" >&6
 # FIXME: These cross compiler hacks should be removed for Autoconf 3.0
 # If not cross compiling, check that we can run a simple program.
 if test "$cross_compiling" != yes; then
   if { ac_try='./$ac_file'
-  { (eval echo "$as_me:1574: \"$ac_try\"") >&5
+  { (eval echo "$as_me:1611: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:1577: \$? = $ac_status" >&5
+  echo "$as_me:1614: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
     cross_compiling=no
   else
     if test "$cross_compiling" = maybe; then
 	cross_compiling=yes
     else
-	{ { echo "$as_me:1584: error: cannot run C compiled programs.
+	{ { echo "$as_me:1621: error: cannot run C compiled programs.
 If you meant to cross compile, use \`--host'." >&5
 echo "$as_me: error: cannot run C compiled programs.
 If you meant to cross compile, use \`--host'." >&2;}
@@ -1589,24 +1626,24 @@ If you meant to cross compile, use \`--host'." >&2;}
     fi
   fi
 fi
-echo "$as_me:1592: result: yes" >&5
+echo "$as_me:1629: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 
 rm -f a.out a.exe conftest$ac_cv_exeext
 ac_clean_files=$ac_clean_files_save
 # Check the compiler produces executables we can run.  If not, either
 # the compiler is broken, or we cross compile.
-echo "$as_me:1599: checking whether we are cross compiling" >&5
+echo "$as_me:1636: checking whether we are cross compiling" >&5
 echo $ECHO_N "checking whether we are cross compiling... $ECHO_C" >&6
-echo "$as_me:1601: result: $cross_compiling" >&5
+echo "$as_me:1638: result: $cross_compiling" >&5
 echo "${ECHO_T}$cross_compiling" >&6
 
-echo "$as_me:1604: checking for executable suffix" >&5
+echo "$as_me:1641: checking for executable suffix" >&5
 echo $ECHO_N "checking for executable suffix... $ECHO_C" >&6
-if { (eval echo "$as_me:1606: \"$ac_link\"") >&5
+if { (eval echo "$as_me:1643: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:1609: \$? = $ac_status" >&5
+  echo "$as_me:1646: \$? = $ac_status" >&5
   (exit $ac_status); }; then
   # If both `conftest.exe' and `conftest' are `present' (well, observable)
 # catch `conftest.exe'.  For instance with Cygwin, `ls conftest' will
@@ -1622,25 +1659,25 @@ for ac_file in `(ls conftest.exe; ls conftest; ls conftest.*) 2>/dev/null`; do
   esac
 done
 else
-  { { echo "$as_me:1625: error: cannot compute EXEEXT: cannot compile and link" >&5
+  { { echo "$as_me:1662: error: cannot compute EXEEXT: cannot compile and link" >&5
 echo "$as_me: error: cannot compute EXEEXT: cannot compile and link" >&2;}
    { (exit 1); exit 1; }; }
 fi
 
 rm -f conftest$ac_cv_exeext
-echo "$as_me:1631: result: $ac_cv_exeext" >&5
+echo "$as_me:1668: result: $ac_cv_exeext" >&5
 echo "${ECHO_T}$ac_cv_exeext" >&6
 
 rm -f conftest.$ac_ext
 EXEEXT=$ac_cv_exeext
 ac_exeext=$EXEEXT
-echo "$as_me:1637: checking for object suffix" >&5
+echo "$as_me:1674: checking for object suffix" >&5
 echo $ECHO_N "checking for object suffix... $ECHO_C" >&6
 if test "${ac_cv_objext+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 1643 "configure"
+#line 1680 "configure"
 #include "confdefs.h"
 
 int
@@ -1652,10 +1689,10 @@ main ()
 }
 _ACEOF
 rm -f conftest.o conftest.obj
-if { (eval echo "$as_me:1655: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:1692: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:1658: \$? = $ac_status" >&5
+  echo "$as_me:1695: \$? = $ac_status" >&5
   (exit $ac_status); }; then
   for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do
   case $ac_file in
@@ -1667,24 +1704,24 @@ done
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
-{ { echo "$as_me:1670: error: cannot compute OBJEXT: cannot compile" >&5
+{ { echo "$as_me:1707: error: cannot compute OBJEXT: cannot compile" >&5
 echo "$as_me: error: cannot compute OBJEXT: cannot compile" >&2;}
    { (exit 1); exit 1; }; }
 fi
 
 rm -f conftest.$ac_cv_objext conftest.$ac_ext
 fi
-echo "$as_me:1677: result: $ac_cv_objext" >&5
+echo "$as_me:1714: result: $ac_cv_objext" >&5
 echo "${ECHO_T}$ac_cv_objext" >&6
 OBJEXT=$ac_cv_objext
 ac_objext=$OBJEXT
-echo "$as_me:1681: checking whether we are using the GNU C compiler" >&5
+echo "$as_me:1718: checking whether we are using the GNU C compiler" >&5
 echo $ECHO_N "checking whether we are using the GNU C compiler... $ECHO_C" >&6
 if test "${ac_cv_c_compiler_gnu+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 1687 "configure"
+#line 1724 "configure"
 #include "confdefs.h"
 
 int
@@ -1699,16 +1736,16 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:1702: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:1739: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:1705: \$? = $ac_status" >&5
+  echo "$as_me:1742: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:1708: \"$ac_try\"") >&5
+  { (eval echo "$as_me:1745: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:1711: \$? = $ac_status" >&5
+  echo "$as_me:1748: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_compiler_gnu=yes
 else
@@ -1720,19 +1757,19 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 ac_cv_c_compiler_gnu=$ac_compiler_gnu
 
 fi
-echo "$as_me:1723: result: $ac_cv_c_compiler_gnu" >&5
+echo "$as_me:1760: result: $ac_cv_c_compiler_gnu" >&5
 echo "${ECHO_T}$ac_cv_c_compiler_gnu" >&6
 GCC=`test $ac_compiler_gnu = yes && echo yes`
 ac_test_CFLAGS=${CFLAGS+set}
 ac_save_CFLAGS=$CFLAGS
 CFLAGS="-g"
-echo "$as_me:1729: checking whether $CC accepts -g" >&5
+echo "$as_me:1766: checking whether $CC accepts -g" >&5
 echo $ECHO_N "checking whether $CC accepts -g... $ECHO_C" >&6
 if test "${ac_cv_prog_cc_g+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 1735 "configure"
+#line 1772 "configure"
 #include "confdefs.h"
 
 int
@@ -1744,16 +1781,16 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:1747: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:1784: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:1750: \$? = $ac_status" >&5
+  echo "$as_me:1787: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:1753: \"$ac_try\"") >&5
+  { (eval echo "$as_me:1790: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:1756: \$? = $ac_status" >&5
+  echo "$as_me:1793: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_prog_cc_g=yes
 else
@@ -1763,7 +1800,7 @@ ac_cv_prog_cc_g=no
 fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 fi
-echo "$as_me:1766: result: $ac_cv_prog_cc_g" >&5
+echo "$as_me:1803: result: $ac_cv_prog_cc_g" >&5
 echo "${ECHO_T}$ac_cv_prog_cc_g" >&6
 if test "$ac_test_CFLAGS" = set; then
   CFLAGS=$ac_save_CFLAGS
@@ -1790,16 +1827,16 @@ cat >conftest.$ac_ext <<_ACEOF
 #endif
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:1793: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:1830: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:1796: \$? = $ac_status" >&5
+  echo "$as_me:1833: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:1799: \"$ac_try\"") >&5
+  { (eval echo "$as_me:1836: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:1802: \$? = $ac_status" >&5
+  echo "$as_me:1839: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   for ac_declaration in \
    ''\
@@ -1811,7 +1848,7 @@ if { (eval echo "$as_me:1793: \"$ac_compile\"") >&5
    'void exit (int);'
 do
   cat >conftest.$ac_ext <<_ACEOF
-#line 1814 "configure"
+#line 1851 "configure"
 #include "confdefs.h"
 #include <stdlib.h>
 $ac_declaration
@@ -1824,16 +1861,16 @@ exit (42);
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:1827: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:1864: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:1830: \$? = $ac_status" >&5
+  echo "$as_me:1867: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:1833: \"$ac_try\"") >&5
+  { (eval echo "$as_me:1870: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:1836: \$? = $ac_status" >&5
+  echo "$as_me:1873: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   :
 else
@@ -1843,7 +1880,7 @@ continue
 fi
 rm -f conftest.$ac_objext conftest.$ac_ext
   cat >conftest.$ac_ext <<_ACEOF
-#line 1846 "configure"
+#line 1883 "configure"
 #include "confdefs.h"
 $ac_declaration
 int
@@ -1855,16 +1892,16 @@ exit (42);
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:1858: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:1895: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:1861: \$? = $ac_status" >&5
+  echo "$as_me:1898: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:1864: \"$ac_try\"") >&5
+  { (eval echo "$as_me:1901: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:1867: \$? = $ac_status" >&5
+  echo "$as_me:1904: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   break
 else
@@ -1896,7 +1933,7 @@ ac_cpp='$CPP $CPPFLAGS'
 ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 ac_compiler_gnu=$ac_cv_c_compiler_gnu
-echo "$as_me:1899: checking how to run the C preprocessor" >&5
+echo "$as_me:1936: checking how to run the C preprocessor" >&5
 echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6
 # On Suns, sometimes $CPP names a directory.
 if test -n "$CPP" && test -d "$CPP"; then
@@ -1917,18 +1954,18 @@ do
   # On the NeXT, cc -E runs the code through the compiler's parser,
   # not just through cpp. "Syntax error" is here to catch this case.
   cat >conftest.$ac_ext <<_ACEOF
-#line 1920 "configure"
+#line 1957 "configure"
 #include "confdefs.h"
 #include <assert.h>
                      Syntax error
 _ACEOF
-if { (eval echo "$as_me:1925: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:1962: \"$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:1931: \$? = $ac_status" >&5
+  echo "$as_me:1968: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -1951,17 +1988,17 @@ rm -f conftest.err conftest.$ac_ext
   # OK, works on sane cases.  Now check whether non-existent headers
   # can be detected and how.
   cat >conftest.$ac_ext <<_ACEOF
-#line 1954 "configure"
+#line 1991 "configure"
 #include "confdefs.h"
 #include <ac_nonexistent.h>
 _ACEOF
-if { (eval echo "$as_me:1958: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:1995: \"$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:1964: \$? = $ac_status" >&5
+  echo "$as_me:2001: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -1998,7 +2035,7 @@ fi
 else
   ac_cv_prog_CPP=$CPP
 fi
-echo "$as_me:2001: result: $CPP" >&5
+echo "$as_me:2038: result: $CPP" >&5
 echo "${ECHO_T}$CPP" >&6
 ac_preproc_ok=false
 for ac_c_preproc_warn_flag in '' yes
@@ -2008,18 +2045,18 @@ do
   # On the NeXT, cc -E runs the code through the compiler's parser,
   # not just through cpp. "Syntax error" is here to catch this case.
   cat >conftest.$ac_ext <<_ACEOF
-#line 2011 "configure"
+#line 2048 "configure"
 #include "confdefs.h"
 #include <assert.h>
                      Syntax error
 _ACEOF
-if { (eval echo "$as_me:2016: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:2053: \"$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:2022: \$? = $ac_status" >&5
+  echo "$as_me:2059: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -2042,17 +2079,17 @@ rm -f conftest.err conftest.$ac_ext
   # OK, works on sane cases.  Now check whether non-existent headers
   # can be detected and how.
   cat >conftest.$ac_ext <<_ACEOF
-#line 2045 "configure"
+#line 2082 "configure"
 #include "confdefs.h"
 #include <ac_nonexistent.h>
 _ACEOF
-if { (eval echo "$as_me:2049: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:2086: \"$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:2055: \$? = $ac_status" >&5
+  echo "$as_me:2092: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -2080,7 +2117,7 @@ rm -f conftest.err conftest.$ac_ext
 if $ac_preproc_ok; then
   :
 else
-  { { echo "$as_me:2083: error: C preprocessor \"$CPP\" fails sanity check" >&5
+  { { echo "$as_me:2120: error: C preprocessor \"$CPP\" fails sanity check" >&5
 echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check" >&2;}
    { (exit 1); exit 1; }; }
 fi
@@ -2091,18 +2128,18 @@ ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5'
 ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
 ac_compiler_gnu=$ac_cv_c_compiler_gnu
 
-echo "$as_me:2094: checking whether ln -s works" >&5
+echo "$as_me:2131: checking whether ln -s works" >&5
 echo $ECHO_N "checking whether ln -s works... $ECHO_C" >&6
 LN_S=$as_ln_s
 if test "$LN_S" = "ln -s"; then
-  echo "$as_me:2098: result: yes" >&5
+  echo "$as_me:2135: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 else
-  echo "$as_me:2101: result: no, using $LN_S" >&5
+  echo "$as_me:2138: result: no, using $LN_S" >&5
 echo "${ECHO_T}no, using $LN_S" >&6
 fi
 
-echo "$as_me:2105: checking whether ${MAKE-make} sets \${MAKE}" >&5
+echo "$as_me:2142: checking whether ${MAKE-make} sets \${MAKE}" >&5
 echo $ECHO_N "checking whether ${MAKE-make} sets \${MAKE}... $ECHO_C" >&6
 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,./+-,__p_,'`
 if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then
@@ -2122,11 +2159,11 @@ fi
 rm -f conftest.make
 fi
 if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then
-  echo "$as_me:2125: result: yes" >&5
+  echo "$as_me:2162: result: yes" >&5
 echo "${ECHO_T}yes" >&6
   SET_MAKE=
 else
-  echo "$as_me:2129: result: no" >&5
+  echo "$as_me:2166: result: no" >&5
 echo "${ECHO_T}no" >&6
   SET_MAKE="MAKE=${MAKE-make}"
 fi
@@ -2143,7 +2180,7 @@ fi
 # AFS /usr/afsws/bin/install, which mishandles nonexistent args
 # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
 # ./install, which can be erroneously created by make from ./install.sh.
-echo "$as_me:2146: checking for a BSD compatible install" >&5
+echo "$as_me:2183: checking for a BSD compatible install" >&5
 echo $ECHO_N "checking for a BSD compatible install... $ECHO_C" >&6
 if test -z "$INSTALL"; then
 if test "${ac_cv_path_install+set}" = set; then
@@ -2192,7 +2229,7 @@ fi
     INSTALL=$ac_install_sh
   fi
 fi
-echo "$as_me:2195: result: $INSTALL" >&5
+echo "$as_me:2232: result: $INSTALL" >&5
 echo "${ECHO_T}$INSTALL" >&6
 
 # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
@@ -2207,7 +2244,7 @@ for ac_prog in lint alint lclint tdlint
 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:2210: checking for $ac_word" >&5
+echo "$as_me:2247: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_prog_LINT+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -2222,7 +2259,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_LINT="$ac_prog"
-echo "$as_me:2225: found $ac_dir/$ac_word" >&5
+echo "$as_me:2262: found $ac_dir/$ac_word" >&5
 break
 done
 
@@ -2230,20 +2267,20 @@ fi
 fi
 LINT=$ac_cv_prog_LINT
 if test -n "$LINT"; then
-  echo "$as_me:2233: result: $LINT" >&5
+  echo "$as_me:2270: result: $LINT" >&5
 echo "${ECHO_T}$LINT" >&6
 else
-  echo "$as_me:2236: result: no" >&5
+  echo "$as_me:2273: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
   test -n "$LINT" && break
 done
 
-echo "$as_me:2243: checking for AIX" >&5
+echo "$as_me:2280: checking for AIX" >&5
 echo $ECHO_N "checking for AIX... $ECHO_C" >&6
 cat >conftest.$ac_ext <<_ACEOF
-#line 2246 "configure"
+#line 2283 "configure"
 #include "confdefs.h"
 #ifdef _AIX
   yes
@@ -2252,24 +2289,24 @@ cat >conftest.$ac_ext <<_ACEOF
 _ACEOF
 if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
   egrep "yes" >/dev/null 2>&1; then
-  echo "$as_me:2255: result: yes" >&5
+  echo "$as_me:2292: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 cat >>confdefs.h <<\EOF
 #define _ALL_SOURCE 1
 EOF
 
 else
-  echo "$as_me:2262: result: no" >&5
+  echo "$as_me:2299: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 rm -f conftest*
 
-echo "$as_me:2267: checking for POSIXized ISC" >&5
+echo "$as_me:2304: checking for POSIXized ISC" >&5
 echo $ECHO_N "checking for POSIXized ISC... $ECHO_C" >&6
 if test -d /etc/conf/kconfig.d &&
    grep _POSIX_VERSION /usr/include/sys/unistd.h >/dev/null 2>&1
 then
-  echo "$as_me:2272: result: yes" >&5
+  echo "$as_me:2309: result: yes" >&5
 echo "${ECHO_T}yes" >&6
   ISC=yes # If later tests want to check for ISC.
 
@@ -2283,7 +2320,7 @@ EOF
     CC="$CC -Xp"
   fi
 else
-  echo "$as_me:2286: result: no" >&5
+  echo "$as_me:2323: result: no" >&5
 echo "${ECHO_T}no" >&6
   ISC=
 fi
@@ -2325,7 +2362,7 @@ else
 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:2328: checking for $ac_word" >&5
+echo "$as_me:2365: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_prog_BUILD_CC+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -2340,7 +2377,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_BUILD_CC="$ac_prog"
-echo "$as_me:2343: found $ac_dir/$ac_word" >&5
+echo "$as_me:2380: found $ac_dir/$ac_word" >&5
 break
 done
 
@@ -2348,10 +2385,10 @@ fi
 fi
 BUILD_CC=$ac_cv_prog_BUILD_CC
 if test -n "$BUILD_CC"; then
-  echo "$as_me:2351: result: $BUILD_CC" >&5
+  echo "$as_me:2388: result: $BUILD_CC" >&5
 echo "${ECHO_T}$BUILD_CC" >&6
 else
-  echo "$as_me:2354: result: no" >&5
+  echo "$as_me:2391: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -2408,7 +2445,7 @@ fi
 if test -n "$ac_tool_prefix"; then
   # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
 set dummy ${ac_tool_prefix}ranlib; ac_word=$2
-echo "$as_me:2411: checking for $ac_word" >&5
+echo "$as_me:2448: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_prog_RANLIB+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -2423,7 +2460,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_RANLIB="${ac_tool_prefix}ranlib"
-echo "$as_me:2426: found $ac_dir/$ac_word" >&5
+echo "$as_me:2463: found $ac_dir/$ac_word" >&5
 break
 done
 
@@ -2431,10 +2468,10 @@ fi
 fi
 RANLIB=$ac_cv_prog_RANLIB
 if test -n "$RANLIB"; then
-  echo "$as_me:2434: result: $RANLIB" >&5
+  echo "$as_me:2471: result: $RANLIB" >&5
 echo "${ECHO_T}$RANLIB" >&6
 else
-  echo "$as_me:2437: result: no" >&5
+  echo "$as_me:2474: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -2443,7 +2480,7 @@ if test -z "$ac_cv_prog_RANLIB"; then
   ac_ct_RANLIB=$RANLIB
   # Extract the first word of "ranlib", so it can be a program name with args.
 set dummy ranlib; ac_word=$2
-echo "$as_me:2446: checking for $ac_word" >&5
+echo "$as_me:2483: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -2458,7 +2495,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_RANLIB="ranlib"
-echo "$as_me:2461: found $ac_dir/$ac_word" >&5
+echo "$as_me:2498: found $ac_dir/$ac_word" >&5
 break
 done
 
@@ -2467,10 +2504,10 @@ fi
 fi
 ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB
 if test -n "$ac_ct_RANLIB"; then
-  echo "$as_me:2470: result: $ac_ct_RANLIB" >&5
+  echo "$as_me:2507: result: $ac_ct_RANLIB" >&5
 echo "${ECHO_T}$ac_ct_RANLIB" >&6
 else
-  echo "$as_me:2473: result: no" >&5
+  echo "$as_me:2510: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -2482,7 +2519,7 @@ fi
 if test -n "$ac_tool_prefix"; then
   # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
 set dummy ${ac_tool_prefix}ar; ac_word=$2
-echo "$as_me:2485: checking for $ac_word" >&5
+echo "$as_me:2522: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_prog_AR+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -2497,7 +2534,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_AR="${ac_tool_prefix}ar"
-echo "$as_me:2500: found $ac_dir/$ac_word" >&5
+echo "$as_me:2537: found $ac_dir/$ac_word" >&5
 break
 done
 
@@ -2505,10 +2542,10 @@ fi
 fi
 AR=$ac_cv_prog_AR
 if test -n "$AR"; then
-  echo "$as_me:2508: result: $AR" >&5
+  echo "$as_me:2545: result: $AR" >&5
 echo "${ECHO_T}$AR" >&6
 else
-  echo "$as_me:2511: result: no" >&5
+  echo "$as_me:2548: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -2517,7 +2554,7 @@ if test -z "$ac_cv_prog_AR"; then
   ac_ct_AR=$AR
   # Extract the first word of "ar", so it can be a program name with args.
 set dummy ar; ac_word=$2
-echo "$as_me:2520: checking for $ac_word" >&5
+echo "$as_me:2557: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_prog_ac_ct_AR+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -2532,7 +2569,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_AR="ar"
-echo "$as_me:2535: found $ac_dir/$ac_word" >&5
+echo "$as_me:2572: found $ac_dir/$ac_word" >&5
 break
 done
 
@@ -2541,10 +2578,10 @@ fi
 fi
 ac_ct_AR=$ac_cv_prog_ac_ct_AR
 if test -n "$ac_ct_AR"; then
-  echo "$as_me:2544: result: $ac_ct_AR" >&5
+  echo "$as_me:2581: result: $ac_ct_AR" >&5
 echo "${ECHO_T}$ac_ct_AR" >&6
 else
-  echo "$as_me:2547: result: no" >&5
+  echo "$as_me:2584: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -2557,10 +2594,10 @@ if test "${cf_cv_subst_AR_OPTS+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
-echo "$as_me:2560: checking for archiver options (symbol AR_OPTS)" >&5
+echo "$as_me:2597: checking for archiver options (symbol AR_OPTS)" >&5
 echo $ECHO_N "checking for archiver options (symbol AR_OPTS)... $ECHO_C" >&6
 test -z "$AR_OPTS" && AR_OPTS=rv
-echo "$as_me:2563: result: $AR_OPTS" >&5
+echo "$as_me:2600: result: $AR_OPTS" >&5
 echo "${ECHO_T}$AR_OPTS" >&6
 
 cf_cv_subst_AR_OPTS=$AR_OPTS
@@ -2568,7 +2605,7 @@ fi
 
 AR_OPTS=${cf_cv_subst_AR_OPTS}
 
-echo "$as_me:2571: checking if you want to see long compiling messages" >&5
+echo "$as_me:2608: checking if you want to see long compiling messages" >&5
 echo $ECHO_N "checking if you want to see long compiling messages... $ECHO_C" >&6
 
 # Check whether --enable-echo or --disable-echo was given.
@@ -2602,7 +2639,7 @@ else
     ECHO_CC=''
 
 fi;
-echo "$as_me:2605: result: $enableval" >&5
+echo "$as_me:2642: result: $enableval" >&5
 echo "${ECHO_T}$enableval" >&6
 
 # special case for WWW/*
@@ -2612,7 +2649,7 @@ else
 	DONT_ECHO_CC=''
 fi
 
-echo "$as_me:2615: checking if you want to check memory-leaks" >&5
+echo "$as_me:2652: checking if you want to check memory-leaks" >&5
 echo $ECHO_N "checking if you want to check memory-leaks... $ECHO_C" >&6
 
 # Check whether --enable-find-leaks or --disable-find-leaks was given.
@@ -2629,7 +2666,7 @@ else
   with_leak_checks=no
 
 fi;
-echo "$as_me:2632: result: $with_leak_checks" >&5
+echo "$as_me:2669: result: $with_leak_checks" >&5
 echo "${ECHO_T}$with_leak_checks" >&6
 test "$with_leak_checks" = "yes" && cat >>confdefs.h <<\EOF
 #define LY_FIND_LEAKS 1
@@ -2638,7 +2675,7 @@ EOF
 # The comment about adding -g to $CFLAGS is unclear.  Autoconf tries to add
 # a -g flag; we remove it if the user's $CFLAGS was not set and debugging is
 # disabled.
-echo "$as_me:2641: checking if you want to enable debug-code" >&5
+echo "$as_me:2678: checking if you want to enable debug-code" >&5
 echo $ECHO_N "checking if you want to enable debug-code... $ECHO_C" >&6
 
 # Check whether --enable-debug or --disable-debug was given.
@@ -2655,7 +2692,7 @@ else
   with_debug=no
 
 fi;
-echo "$as_me:2658: result: $with_debug" >&5
+echo "$as_me:2695: result: $with_debug" >&5
 echo "${ECHO_T}$with_debug" >&6
 if test "$with_debug" = "yes" ; then
 	case $host_os in
@@ -2680,7 +2717,7 @@ else
 	esac
 fi
 
-echo "$as_me:2683: checking if you want to enable lynx trace code *recommended* " >&5
+echo "$as_me:2720: checking if you want to enable lynx trace code *recommended* " >&5
 echo $ECHO_N "checking if you want to enable lynx trace code *recommended* ... $ECHO_C" >&6
 
 # Check whether --enable-trace or --disable-trace was given.
@@ -2697,13 +2734,13 @@ else
   with_trace=yes
 
 fi;
-echo "$as_me:2700: result: $with_trace" >&5
+echo "$as_me:2737: result: $with_trace" >&5
 echo "${ECHO_T}$with_trace" >&6
 test $with_trace = no && cat >>confdefs.h <<\EOF
 #define NO_LYNX_TRACE 1
 EOF
 
-echo "$as_me:2706: checking if you want verbose trace code" >&5
+echo "$as_me:2743: checking if you want verbose trace code" >&5
 echo $ECHO_N "checking if you want verbose trace code... $ECHO_C" >&6
 
 # Check whether --enable-vertrace or --disable-vertrace was given.
@@ -2720,7 +2757,7 @@ else
   with_vertrace=no
 
 fi;
-echo "$as_me:2723: result: $with_vertrace" >&5
+echo "$as_me:2760: result: $with_vertrace" >&5
 echo "${ECHO_T}$with_vertrace" >&6
 test $with_vertrace = yes && cat >>confdefs.h <<\EOF
 #define LY_TRACELINE __LINE__
@@ -2728,7 +2765,7 @@ EOF
 
 if test -n "$GCC"
 then
-echo "$as_me:2731: checking if you want to turn on gcc warnings" >&5
+echo "$as_me:2768: checking if you want to turn on gcc warnings" >&5
 echo $ECHO_N "checking if you want to turn on gcc warnings... $ECHO_C" >&6
 
 # Check whether --enable-warnings or --disable-warnings was given.
@@ -2745,7 +2782,7 @@ else
   with_warnings=no
 
 fi;
-echo "$as_me:2748: result: $with_warnings" >&5
+echo "$as_me:2785: result: $with_warnings" >&5
 echo "${ECHO_T}$with_warnings" >&6
 if test "$with_warnings" = "yes"
 then
@@ -2768,10 +2805,10 @@ cat > conftest.i <<EOF
 EOF
 if test "$GCC" = yes
 then
-	{ echo "$as_me:2771: checking for $CC __attribute__ directives..." >&5
+	{ echo "$as_me:2808: checking for $CC __attribute__ directives..." >&5
 echo "$as_me: checking for $CC __attribute__ directives..." >&6;}
 cat > conftest.$ac_ext <<EOF
-#line 2774 "configure"
+#line 2811 "configure"
 #include "confdefs.h"
 #include "conftest.h"
 #include "conftest.i"
@@ -2809,12 +2846,12 @@ EOF
 EOF
 			;;
 		esac
-		if { (eval echo "$as_me:2812: \"$ac_compile\"") >&5
+		if { (eval echo "$as_me:2849: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:2815: \$? = $ac_status" >&5
+  echo "$as_me:2852: \$? = $ac_status" >&5
   (exit $ac_status); }; then
-			test -n "$verbose" && echo "$as_me:2817: result: ... $cf_attribute" >&5
+			test -n "$verbose" && echo "$as_me:2854: result: ... $cf_attribute" >&5
 echo "${ECHO_T}... $cf_attribute" >&6
 			cat conftest.h >>confdefs.h
 		fi
@@ -2827,21 +2864,21 @@ fi
 
 GCC_VERSION=none
 if test "$GCC" = yes ; then
-	echo "$as_me:2830: checking version of $CC" >&5
+	echo "$as_me:2867: checking version of $CC" >&5
 echo $ECHO_N "checking version of $CC... $ECHO_C" >&6
 	GCC_VERSION="`${CC} --version|sed -e '2,$d' -e 's/^[^0-9.]*//' -e 's/[^0-9.].*//'`"
 	test -z "$GCC_VERSION" && GCC_VERSION=unknown
-	echo "$as_me:2834: result: $GCC_VERSION" >&5
+	echo "$as_me:2871: result: $GCC_VERSION" >&5
 echo "${ECHO_T}$GCC_VERSION" >&6
 fi
 
 if test "$GCC" = yes
 then
 	cat > conftest.$ac_ext <<EOF
-#line 2841 "configure"
+#line 2878 "configure"
 int main(int argc, char *argv[]) { return (argv[argc-1] == 0) ; }
 EOF
-	{ echo "$as_me:2844: checking for $CC warning options..." >&5
+	{ echo "$as_me:2881: checking for $CC warning options..." >&5
 echo "$as_me: checking for $CC warning options..." >&6;}
 	cf_save_CFLAGS="$CFLAGS"
 	EXTRA_CFLAGS="-W -Wall"
@@ -2861,12 +2898,12 @@ echo "$as_me: checking for $CC warning options..." >&6;}
 		Wundef $cf_warn_CONST
 	do
 		CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt"
-		if { (eval echo "$as_me:2864: \"$ac_compile\"") >&5
+		if { (eval echo "$as_me:2901: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:2867: \$? = $ac_status" >&5
+  echo "$as_me:2904: \$? = $ac_status" >&5
   (exit $ac_status); }; then
-			test -n "$verbose" && echo "$as_me:2869: result: ... -$cf_opt" >&5
+			test -n "$verbose" && echo "$as_me:2906: result: ... -$cf_opt" >&5
 echo "${ECHO_T}... -$cf_opt" >&6
 			case $cf_opt in #(vi
 			Wcast-qual) #(vi
@@ -2891,7 +2928,7 @@ fi
 fi
 fi
 
-echo "$as_me:2894: checking if you want to link with dbmalloc for testing" >&5
+echo "$as_me:2931: checking if you want to link with dbmalloc for testing" >&5
 echo $ECHO_N "checking if you want to link with dbmalloc for testing... $ECHO_C" >&6
 
 # Check whether --with-dbmalloc or --without-dbmalloc was given.
@@ -2901,11 +2938,11 @@ if test "${with_dbmalloc+set}" = set; then
 else
   with_dbmalloc=no
 fi;
-echo "$as_me:2904: result: $with_dbmalloc" >&5
+echo "$as_me:2941: result: $with_dbmalloc" >&5
 echo "${ECHO_T}$with_dbmalloc" >&6
 if test $with_dbmalloc = yes ; then
 
-echo "$as_me:2908: checking for debug_malloc in -ldbmalloc" >&5
+echo "$as_me:2945: checking for debug_malloc in -ldbmalloc" >&5
 echo $ECHO_N "checking for debug_malloc in -ldbmalloc... $ECHO_C" >&6
 if test "${ac_cv_lib_dbmalloc_debug_malloc+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -2913,7 +2950,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-ldbmalloc  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 2916 "configure"
+#line 2953 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -2932,16 +2969,16 @@ debug_malloc ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:2935: \"$ac_link\"") >&5
+if { (eval echo "$as_me:2972: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:2938: \$? = $ac_status" >&5
+  echo "$as_me:2975: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:2941: \"$ac_try\"") >&5
+  { (eval echo "$as_me:2978: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:2944: \$? = $ac_status" >&5
+  echo "$as_me:2981: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_dbmalloc_debug_malloc=yes
 else
@@ -2952,7 +2989,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:2955: result: $ac_cv_lib_dbmalloc_debug_malloc" >&5
+echo "$as_me:2992: result: $ac_cv_lib_dbmalloc_debug_malloc" >&5
 echo "${ECHO_T}$ac_cv_lib_dbmalloc_debug_malloc" >&6
 if test $ac_cv_lib_dbmalloc_debug_malloc = yes; then
   cat >>confdefs.h <<EOF
@@ -2965,7 +3002,7 @@ fi
 
 fi
 
-echo "$as_me:2968: checking if you want to link with dmalloc for testing" >&5
+echo "$as_me:3005: checking if you want to link with dmalloc for testing" >&5
 echo $ECHO_N "checking if you want to link with dmalloc for testing... $ECHO_C" >&6
 
 # Check whether --with-dmalloc or --without-dmalloc was given.
@@ -2975,11 +3012,11 @@ if test "${with_dmalloc+set}" = set; then
 else
   with_dmalloc=no
 fi;
-echo "$as_me:2978: result: $with_dmalloc" >&5
+echo "$as_me:3015: result: $with_dmalloc" >&5
 echo "${ECHO_T}$with_dmalloc" >&6
 if test $with_dmalloc = yes ; then
 
-echo "$as_me:2982: checking for dmalloc_debug in -ldmalloc" >&5
+echo "$as_me:3019: checking for dmalloc_debug in -ldmalloc" >&5
 echo $ECHO_N "checking for dmalloc_debug in -ldmalloc... $ECHO_C" >&6
 if test "${ac_cv_lib_dmalloc_dmalloc_debug+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -2987,7 +3024,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-ldmalloc  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 2990 "configure"
+#line 3027 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -3006,16 +3043,16 @@ dmalloc_debug ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:3009: \"$ac_link\"") >&5
+if { (eval echo "$as_me:3046: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:3012: \$? = $ac_status" >&5
+  echo "$as_me:3049: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:3015: \"$ac_try\"") >&5
+  { (eval echo "$as_me:3052: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:3018: \$? = $ac_status" >&5
+  echo "$as_me:3055: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_dmalloc_dmalloc_debug=yes
 else
@@ -3026,7 +3063,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:3029: result: $ac_cv_lib_dmalloc_dmalloc_debug" >&5
+echo "$as_me:3066: result: $ac_cv_lib_dmalloc_dmalloc_debug" >&5
 echo "${ECHO_T}$ac_cv_lib_dmalloc_dmalloc_debug" >&6
 if test $ac_cv_lib_dmalloc_dmalloc_debug = yes; then
   cat >>confdefs.h <<EOF
@@ -3043,7 +3080,7 @@ cat >>confdefs.h <<\EOF
 #define UNIX 1
 EOF
 
-echo "$as_me:3046: checking for $CC option to accept ANSI C" >&5
+echo "$as_me:3083: checking for $CC option to accept ANSI C" >&5
 echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6
 if test "${ac_cv_prog_cc_stdc+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -3051,7 +3088,7 @@ else
   ac_cv_prog_cc_stdc=no
 ac_save_CC=$CC
 cat >conftest.$ac_ext <<_ACEOF
-#line 3054 "configure"
+#line 3091 "configure"
 #include "confdefs.h"
 #include <stdarg.h>
 #include <stdio.h>
@@ -3100,16 +3137,16 @@ for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIO
 do
   CC="$ac_save_CC $ac_arg"
   rm -f conftest.$ac_objext
-if { (eval echo "$as_me:3103: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:3140: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:3106: \$? = $ac_status" >&5
+  echo "$as_me:3143: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:3109: \"$ac_try\"") >&5
+  { (eval echo "$as_me:3146: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:3112: \$? = $ac_status" >&5
+  echo "$as_me:3149: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_prog_cc_stdc=$ac_arg
 break
@@ -3126,21 +3163,21 @@ fi
 
 case "x$ac_cv_prog_cc_stdc" in
   x|xno)
-    echo "$as_me:3129: result: none needed" >&5
+    echo "$as_me:3166: result: none needed" >&5
 echo "${ECHO_T}none needed" >&6 ;;
   *)
-    echo "$as_me:3132: result: $ac_cv_prog_cc_stdc" >&5
+    echo "$as_me:3169: result: $ac_cv_prog_cc_stdc" >&5
 echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6
     CC="$CC $ac_cv_prog_cc_stdc" ;;
 esac
 
-echo "$as_me:3137: checking for an ANSI C-conforming const" >&5
+echo "$as_me:3174: checking for an ANSI C-conforming const" >&5
 echo $ECHO_N "checking for an ANSI C-conforming const... $ECHO_C" >&6
 if test "${ac_cv_c_const+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 3143 "configure"
+#line 3180 "configure"
 #include "confdefs.h"
 
 int
@@ -3198,16 +3235,16 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:3201: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:3238: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:3204: \$? = $ac_status" >&5
+  echo "$as_me:3241: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:3207: \"$ac_try\"") >&5
+  { (eval echo "$as_me:3244: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:3210: \$? = $ac_status" >&5
+  echo "$as_me:3247: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_c_const=yes
 else
@@ -3217,7 +3254,7 @@ ac_cv_c_const=no
 fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 fi
-echo "$as_me:3220: result: $ac_cv_c_const" >&5
+echo "$as_me:3257: result: $ac_cv_c_const" >&5
 echo "${ECHO_T}$ac_cv_c_const" >&6
 if test $ac_cv_c_const = no; then
 
@@ -3265,7 +3302,7 @@ clix*)
 	# contributed by Alex Matulich (matuli_a@marlin.navsea.navy.mil) also
 	# references -lmalloc and -lbsd.
 
-echo "$as_me:3268: checking for strcmp in -lc_s" >&5
+echo "$as_me:3305: checking for strcmp in -lc_s" >&5
 echo $ECHO_N "checking for strcmp in -lc_s... $ECHO_C" >&6
 if test "${ac_cv_lib_c_s_strcmp+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -3273,7 +3310,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lc_s  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 3276 "configure"
+#line 3313 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -3292,16 +3329,16 @@ strcmp ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:3295: \"$ac_link\"") >&5
+if { (eval echo "$as_me:3332: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:3298: \$? = $ac_status" >&5
+  echo "$as_me:3335: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:3301: \"$ac_try\"") >&5
+  { (eval echo "$as_me:3338: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:3304: \$? = $ac_status" >&5
+  echo "$as_me:3341: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_c_s_strcmp=yes
 else
@@ -3312,7 +3349,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:3315: result: $ac_cv_lib_c_s_strcmp" >&5
+echo "$as_me:3352: result: $ac_cv_lib_c_s_strcmp" >&5
 echo "${ECHO_T}$ac_cv_lib_c_s_strcmp" >&6
 if test $ac_cv_lib_c_s_strcmp = yes; then
   cat >>confdefs.h <<EOF
@@ -3380,14 +3417,14 @@ sco*)
 	# SCO's cc (which is reported to have broken const/volatile).
 	case "$CC" in #(vi
 	cc|*/cc)
-		{ echo "$as_me:3383: WARNING: You should consider using gcc or rcc if available" >&5
+		{ echo "$as_me:3420: WARNING: You should consider using gcc or rcc if available" >&5
 echo "$as_me: WARNING: You should consider using gcc or rcc if available" >&2;}
 		unset ac_cv_prog_CC
 		for ac_prog in gcc rcc
 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:3390: checking for $ac_word" >&5
+echo "$as_me:3427: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_prog_CC+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -3402,7 +3439,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_CC="$ac_prog"
-echo "$as_me:3405: found $ac_dir/$ac_word" >&5
+echo "$as_me:3442: found $ac_dir/$ac_word" >&5
 break
 done
 
@@ -3410,10 +3447,10 @@ fi
 fi
 CC=$ac_cv_prog_CC
 if test -n "$CC"; then
-  echo "$as_me:3413: result: $CC" >&5
+  echo "$as_me:3450: result: $CC" >&5
 echo "${ECHO_T}$CC" >&6
 else
-  echo "$as_me:3416: result: no" >&5
+  echo "$as_me:3453: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -3436,23 +3473,23 @@ sony-newsos*)
 for ac_header in jcurses.h
 do
 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:3439: checking for $ac_header" >&5
+echo "$as_me:3476: 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 3445 "configure"
+#line 3482 "configure"
 #include "confdefs.h"
 #include <$ac_header>
 _ACEOF
-if { (eval echo "$as_me:3449: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:3486: \"$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:3455: \$? = $ac_status" >&5
+  echo "$as_me:3492: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -3471,7 +3508,7 @@ else
 fi
 rm -f conftest.err conftest.$ac_ext
 fi
-echo "$as_me:3474: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:3511: 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
@@ -3499,23 +3536,23 @@ ultrix*)
 for ac_header in cursesX.h
 do
 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:3502: checking for $ac_header" >&5
+echo "$as_me:3539: 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 3508 "configure"
+#line 3545 "configure"
 #include "confdefs.h"
 #include <$ac_header>
 _ACEOF
-if { (eval echo "$as_me:3512: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:3549: \"$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:3518: \$? = $ac_status" >&5
+  echo "$as_me:3555: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -3534,7 +3571,7 @@ else
 fi
 rm -f conftest.err conftest.$ac_ext
 fi
-echo "$as_me:3537: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:3574: 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
@@ -3551,7 +3588,7 @@ done
 	;;
 esac
 
-echo "$as_me:3554: checking for ${CC-cc} option to accept ANSI C" >&5
+echo "$as_me:3591: checking for ${CC-cc} option to accept ANSI C" >&5
 echo $ECHO_N "checking for ${CC-cc} option to accept ANSI C... $ECHO_C" >&6
 if test "${cf_cv_ansi_cc+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -3645,7 +3682,7 @@ if test -n "$cf_new_extra_cppflags" ; then
 fi
 
 	cat >conftest.$ac_ext <<_ACEOF
-#line 3648 "configure"
+#line 3685 "configure"
 #include "confdefs.h"
 
 #ifndef CC_HAS_PROTOS
@@ -3666,16 +3703,16 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:3669: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:3706: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:3672: \$? = $ac_status" >&5
+  echo "$as_me:3709: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:3675: \"$ac_try\"") >&5
+  { (eval echo "$as_me:3712: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:3678: \$? = $ac_status" >&5
+  echo "$as_me:3715: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_ansi_cc="$cf_arg"; break
 else
@@ -3688,7 +3725,7 @@ CFLAGS="$cf_save_CFLAGS"
 CPPFLAGS="$cf_save_CPPFLAGS"
 
 fi
-echo "$as_me:3691: result: $cf_cv_ansi_cc" >&5
+echo "$as_me:3728: result: $cf_cv_ansi_cc" >&5
 echo "${ECHO_T}$cf_cv_ansi_cc" >&6
 
 if test "$cf_cv_ansi_cc" != "no"; then
@@ -3771,7 +3808,7 @@ fi
 fi
 
 if test "$cf_cv_ansi_cc" = "no"; then
-	{ { echo "$as_me:3774: error: Your compiler does not appear to recognize prototypes.
+	{ { echo "$as_me:3811: error: Your compiler does not appear to recognize prototypes.
 You have the following choices:
 	a. adjust your compiler options
 	b. get an up-to-date compiler
@@ -3787,7 +3824,7 @@ fi
 if test -n "$ac_tool_prefix"; then
   # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
 set dummy ${ac_tool_prefix}ranlib; ac_word=$2
-echo "$as_me:3790: checking for $ac_word" >&5
+echo "$as_me:3827: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_prog_RANLIB+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -3802,7 +3839,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_RANLIB="${ac_tool_prefix}ranlib"
-echo "$as_me:3805: found $ac_dir/$ac_word" >&5
+echo "$as_me:3842: found $ac_dir/$ac_word" >&5
 break
 done
 
@@ -3810,10 +3847,10 @@ fi
 fi
 RANLIB=$ac_cv_prog_RANLIB
 if test -n "$RANLIB"; then
-  echo "$as_me:3813: result: $RANLIB" >&5
+  echo "$as_me:3850: result: $RANLIB" >&5
 echo "${ECHO_T}$RANLIB" >&6
 else
-  echo "$as_me:3816: result: no" >&5
+  echo "$as_me:3853: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -3822,7 +3859,7 @@ if test -z "$ac_cv_prog_RANLIB"; then
   ac_ct_RANLIB=$RANLIB
   # Extract the first word of "ranlib", so it can be a program name with args.
 set dummy ranlib; ac_word=$2
-echo "$as_me:3825: checking for $ac_word" >&5
+echo "$as_me:3862: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -3837,7 +3874,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_RANLIB="ranlib"
-echo "$as_me:3840: found $ac_dir/$ac_word" >&5
+echo "$as_me:3877: found $ac_dir/$ac_word" >&5
 break
 done
 
@@ -3846,10 +3883,10 @@ fi
 fi
 ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB
 if test -n "$ac_ct_RANLIB"; then
-  echo "$as_me:3849: result: $ac_ct_RANLIB" >&5
+  echo "$as_me:3886: result: $ac_ct_RANLIB" >&5
 echo "${ECHO_T}$ac_ct_RANLIB" >&6
 else
-  echo "$as_me:3852: result: no" >&5
+  echo "$as_me:3889: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -3858,13 +3895,13 @@ else
   RANLIB="$ac_cv_prog_RANLIB"
 fi
 
-echo "$as_me:3861: checking for ANSI C header files" >&5
+echo "$as_me:3898: checking for ANSI C header files" >&5
 echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6
 if test "${ac_cv_header_stdc+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 3867 "configure"
+#line 3904 "configure"
 #include "confdefs.h"
 #include <stdlib.h>
 #include <stdarg.h>
@@ -3872,13 +3909,13 @@ else
 #include <float.h>
 
 _ACEOF
-if { (eval echo "$as_me:3875: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:3912: \"$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:3881: \$? = $ac_status" >&5
+  echo "$as_me:3918: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -3900,7 +3937,7 @@ rm -f conftest.err conftest.$ac_ext
 if test $ac_cv_header_stdc = yes; then
   # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
   cat >conftest.$ac_ext <<_ACEOF
-#line 3903 "configure"
+#line 3940 "configure"
 #include "confdefs.h"
 #include <string.h>
 
@@ -3918,7 +3955,7 @@ fi
 if test $ac_cv_header_stdc = yes; then
   # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
   cat >conftest.$ac_ext <<_ACEOF
-#line 3921 "configure"
+#line 3958 "configure"
 #include "confdefs.h"
 #include <stdlib.h>
 
@@ -3939,7 +3976,7 @@ if test $ac_cv_header_stdc = yes; then
   :
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 3942 "configure"
+#line 3979 "configure"
 #include "confdefs.h"
 #include <ctype.h>
 #if ((' ' & 0x0FF) == 0x020)
@@ -3965,15 +4002,15 @@ main ()
 }
 _ACEOF
 rm -f conftest$ac_exeext
-if { (eval echo "$as_me:3968: \"$ac_link\"") >&5
+if { (eval echo "$as_me:4005: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:3971: \$? = $ac_status" >&5
+  echo "$as_me:4008: \$? = $ac_status" >&5
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
-  { (eval echo "$as_me:3973: \"$ac_try\"") >&5
+  { (eval echo "$as_me:4010: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:3976: \$? = $ac_status" >&5
+  echo "$as_me:4013: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   :
 else
@@ -3986,7 +4023,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
 fi
 fi
 fi
-echo "$as_me:3989: result: $ac_cv_header_stdc" >&5
+echo "$as_me:4026: result: $ac_cv_header_stdc" >&5
 echo "${ECHO_T}$ac_cv_header_stdc" >&6
 if test $ac_cv_header_stdc = yes; then
 
@@ -3996,7 +4033,7 @@ EOF
 
 fi
 
-echo "$as_me:3999: checking for inline" >&5
+echo "$as_me:4036: checking for inline" >&5
 echo $ECHO_N "checking for inline... $ECHO_C" >&6
 if test "${ac_cv_c_inline+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -4004,7 +4041,7 @@ else
   ac_cv_c_inline=no
 for ac_kw in inline __inline__ __inline; do
   cat >conftest.$ac_ext <<_ACEOF
-#line 4007 "configure"
+#line 4044 "configure"
 #include "confdefs.h"
 #ifndef __cplusplus
 static $ac_kw int static_foo () {return 0; }
@@ -4013,16 +4050,16 @@ $ac_kw int foo () {return 0; }
 
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:4016: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:4053: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:4019: \$? = $ac_status" >&5
+  echo "$as_me:4056: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:4022: \"$ac_try\"") >&5
+  { (eval echo "$as_me:4059: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:4025: \$? = $ac_status" >&5
+  echo "$as_me:4062: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_c_inline=$ac_kw; break
 else
@@ -4033,7 +4070,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 done
 
 fi
-echo "$as_me:4036: result: $ac_cv_c_inline" >&5
+echo "$as_me:4073: result: $ac_cv_c_inline" >&5
 echo "${ECHO_T}$ac_cv_c_inline" >&6
 case $ac_cv_c_inline in
   inline | yes) ;;
@@ -4054,28 +4091,28 @@ for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \
                   inttypes.h stdint.h unistd.h
 do
 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:4057: checking for $ac_header" >&5
+echo "$as_me:4094: 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 4063 "configure"
+#line 4100 "configure"
 #include "confdefs.h"
 $ac_includes_default
 #include <$ac_header>
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:4069: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:4106: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:4072: \$? = $ac_status" >&5
+  echo "$as_me:4109: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:4075: \"$ac_try\"") >&5
+  { (eval echo "$as_me:4112: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:4078: \$? = $ac_status" >&5
+  echo "$as_me:4115: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   eval "$as_ac_Header=yes"
 else
@@ -4085,7 +4122,7 @@ eval "$as_ac_Header=no"
 fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 fi
-echo "$as_me:4088: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:4125: 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
@@ -4095,13 +4132,13 @@ EOF
 fi
 done
 
-echo "$as_me:4098: checking for off_t" >&5
+echo "$as_me:4135: checking for off_t" >&5
 echo $ECHO_N "checking for off_t... $ECHO_C" >&6
 if test "${ac_cv_type_off_t+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 4104 "configure"
+#line 4141 "configure"
 #include "confdefs.h"
 $ac_includes_default
 int
@@ -4116,16 +4153,16 @@ if (sizeof (off_t))
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:4119: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:4156: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:4122: \$? = $ac_status" >&5
+  echo "$as_me:4159: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:4125: \"$ac_try\"") >&5
+  { (eval echo "$as_me:4162: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:4128: \$? = $ac_status" >&5
+  echo "$as_me:4165: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_type_off_t=yes
 else
@@ -4135,7 +4172,7 @@ ac_cv_type_off_t=no
 fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 fi
-echo "$as_me:4138: result: $ac_cv_type_off_t" >&5
+echo "$as_me:4175: result: $ac_cv_type_off_t" >&5
 echo "${ECHO_T}$ac_cv_type_off_t" >&6
 if test $ac_cv_type_off_t = yes; then
   :
@@ -4147,13 +4184,13 @@ EOF
 
 fi
 
-echo "$as_me:4150: checking for size_t" >&5
+echo "$as_me:4187: checking for size_t" >&5
 echo $ECHO_N "checking for size_t... $ECHO_C" >&6
 if test "${ac_cv_type_size_t+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 4156 "configure"
+#line 4193 "configure"
 #include "confdefs.h"
 $ac_includes_default
 int
@@ -4168,16 +4205,16 @@ if (sizeof (size_t))
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:4171: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:4208: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:4174: \$? = $ac_status" >&5
+  echo "$as_me:4211: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:4177: \"$ac_try\"") >&5
+  { (eval echo "$as_me:4214: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:4180: \$? = $ac_status" >&5
+  echo "$as_me:4217: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_type_size_t=yes
 else
@@ -4187,7 +4224,7 @@ ac_cv_type_size_t=no
 fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 fi
-echo "$as_me:4190: result: $ac_cv_type_size_t" >&5
+echo "$as_me:4227: result: $ac_cv_type_size_t" >&5
 echo "${ECHO_T}$ac_cv_type_size_t" >&6
 if test $ac_cv_type_size_t = yes; then
   :
@@ -4201,13 +4238,13 @@ fi
 
 # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
 # for constant arguments.  Useless!
-echo "$as_me:4204: checking for working alloca.h" >&5
+echo "$as_me:4241: checking for working alloca.h" >&5
 echo $ECHO_N "checking for working alloca.h... $ECHO_C" >&6
 if test "${ac_cv_working_alloca_h+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 4210 "configure"
+#line 4247 "configure"
 #include "confdefs.h"
 #include <alloca.h>
 int
@@ -4219,16 +4256,16 @@ char *p = (char *) alloca (2 * sizeof (int));
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:4222: \"$ac_link\"") >&5
+if { (eval echo "$as_me:4259: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:4225: \$? = $ac_status" >&5
+  echo "$as_me:4262: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:4228: \"$ac_try\"") >&5
+  { (eval echo "$as_me:4265: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:4231: \$? = $ac_status" >&5
+  echo "$as_me:4268: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_working_alloca_h=yes
 else
@@ -4238,7 +4275,7 @@ ac_cv_working_alloca_h=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:4241: result: $ac_cv_working_alloca_h" >&5
+echo "$as_me:4278: result: $ac_cv_working_alloca_h" >&5
 echo "${ECHO_T}$ac_cv_working_alloca_h" >&6
 if test $ac_cv_working_alloca_h = yes; then
 
@@ -4248,13 +4285,13 @@ EOF
 
 fi
 
-echo "$as_me:4251: checking for alloca" >&5
+echo "$as_me:4288: checking for alloca" >&5
 echo $ECHO_N "checking for alloca... $ECHO_C" >&6
 if test "${ac_cv_func_alloca_works+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 4257 "configure"
+#line 4294 "configure"
 #include "confdefs.h"
 #ifdef __GNUC__
 # define alloca __builtin_alloca
@@ -4286,16 +4323,16 @@ char *p = (char *) alloca (1);
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:4289: \"$ac_link\"") >&5
+if { (eval echo "$as_me:4326: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:4292: \$? = $ac_status" >&5
+  echo "$as_me:4329: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:4295: \"$ac_try\"") >&5
+  { (eval echo "$as_me:4332: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:4298: \$? = $ac_status" >&5
+  echo "$as_me:4335: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_func_alloca_works=yes
 else
@@ -4305,7 +4342,7 @@ ac_cv_func_alloca_works=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:4308: result: $ac_cv_func_alloca_works" >&5
+echo "$as_me:4345: result: $ac_cv_func_alloca_works" >&5
 echo "${ECHO_T}$ac_cv_func_alloca_works" >&6
 
 if test $ac_cv_func_alloca_works = yes; then
@@ -4326,13 +4363,13 @@ cat >>confdefs.h <<\EOF
 #define C_ALLOCA 1
 EOF
 
-echo "$as_me:4329: checking whether \`alloca.c' needs Cray hooks" >&5
+echo "$as_me:4366: checking whether \`alloca.c' needs Cray hooks" >&5
 echo $ECHO_N "checking whether \`alloca.c' needs Cray hooks... $ECHO_C" >&6
 if test "${ac_cv_os_cray+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 4335 "configure"
+#line 4372 "configure"
 #include "confdefs.h"
 #if defined(CRAY) && ! defined(CRAY2)
 webecray
@@ -4350,18 +4387,18 @@ fi
 rm -f conftest*
 
 fi
-echo "$as_me:4353: result: $ac_cv_os_cray" >&5
+echo "$as_me:4390: result: $ac_cv_os_cray" >&5
 echo "${ECHO_T}$ac_cv_os_cray" >&6
 if test $ac_cv_os_cray = yes; then
   for ac_func in _getb67 GETB67 getb67; do
     as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
-echo "$as_me:4358: checking for $ac_func" >&5
+echo "$as_me:4395: 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 4364 "configure"
+#line 4401 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char $ac_func (); below.  */
@@ -4392,16 +4429,16 @@ f = $ac_func;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:4395: \"$ac_link\"") >&5
+if { (eval echo "$as_me:4432: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:4398: \$? = $ac_status" >&5
+  echo "$as_me:4435: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:4401: \"$ac_try\"") >&5
+  { (eval echo "$as_me:4438: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:4404: \$? = $ac_status" >&5
+  echo "$as_me:4441: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   eval "$as_ac_var=yes"
 else
@@ -4411,7 +4448,7 @@ eval "$as_ac_var=no"
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:4414: result: `eval echo '${'$as_ac_var'}'`" >&5
+echo "$as_me:4451: 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
 
@@ -4425,7 +4462,7 @@ fi
   done
 fi
 
-echo "$as_me:4428: checking stack direction for C alloca" >&5
+echo "$as_me:4465: checking stack direction for C alloca" >&5
 echo $ECHO_N "checking stack direction for C alloca... $ECHO_C" >&6
 if test "${ac_cv_c_stack_direction+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -4434,7 +4471,7 @@ else
   ac_cv_c_stack_direction=0
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 4437 "configure"
+#line 4474 "configure"
 #include "confdefs.h"
 int
 find_stack_direction ()
@@ -4457,15 +4494,15 @@ main ()
 }
 _ACEOF
 rm -f conftest$ac_exeext
-if { (eval echo "$as_me:4460: \"$ac_link\"") >&5
+if { (eval echo "$as_me:4497: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:4463: \$? = $ac_status" >&5
+  echo "$as_me:4500: \$? = $ac_status" >&5
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
-  { (eval echo "$as_me:4465: \"$ac_try\"") >&5
+  { (eval echo "$as_me:4502: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:4468: \$? = $ac_status" >&5
+  echo "$as_me:4505: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_c_stack_direction=1
 else
@@ -4477,7 +4514,7 @@ fi
 rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
 fi
 fi
-echo "$as_me:4480: result: $ac_cv_c_stack_direction" >&5
+echo "$as_me:4517: result: $ac_cv_c_stack_direction" >&5
 echo "${ECHO_T}$ac_cv_c_stack_direction" >&6
 
 cat >>confdefs.h <<EOF
@@ -4489,23 +4526,23 @@ fi
 for ac_header in stdlib.h unistd.h
 do
 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:4492: checking for $ac_header" >&5
+echo "$as_me:4529: 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 4498 "configure"
+#line 4535 "configure"
 #include "confdefs.h"
 #include <$ac_header>
 _ACEOF
-if { (eval echo "$as_me:4502: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:4539: \"$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:4508: \$? = $ac_status" >&5
+  echo "$as_me:4545: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -4524,7 +4561,7 @@ else
 fi
 rm -f conftest.err conftest.$ac_ext
 fi
-echo "$as_me:4527: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:4564: 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
@@ -4537,13 +4574,13 @@ done
 for ac_func in getpagesize
 do
 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
-echo "$as_me:4540: checking for $ac_func" >&5
+echo "$as_me:4577: 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 4546 "configure"
+#line 4583 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char $ac_func (); below.  */
@@ -4574,16 +4611,16 @@ f = $ac_func;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:4577: \"$ac_link\"") >&5
+if { (eval echo "$as_me:4614: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:4580: \$? = $ac_status" >&5
+  echo "$as_me:4617: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:4583: \"$ac_try\"") >&5
+  { (eval echo "$as_me:4620: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:4586: \$? = $ac_status" >&5
+  echo "$as_me:4623: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   eval "$as_ac_var=yes"
 else
@@ -4593,7 +4630,7 @@ eval "$as_ac_var=no"
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:4596: result: `eval echo '${'$as_ac_var'}'`" >&5
+echo "$as_me:4633: 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
@@ -4603,7 +4640,7 @@ EOF
 fi
 done
 
-echo "$as_me:4606: checking for working mmap" >&5
+echo "$as_me:4643: checking for working mmap" >&5
 echo $ECHO_N "checking for working mmap... $ECHO_C" >&6
 if test "${ac_cv_func_mmap_fixed_mapped+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -4612,7 +4649,7 @@ else
   ac_cv_func_mmap_fixed_mapped=no
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 4615 "configure"
+#line 4652 "configure"
 #include "confdefs.h"
 $ac_includes_default
 /* Thanks to Mike Haertel and Jim Avera for this test.
@@ -4739,15 +4776,15 @@ main ()
 }
 _ACEOF
 rm -f conftest$ac_exeext
-if { (eval echo "$as_me:4742: \"$ac_link\"") >&5
+if { (eval echo "$as_me:4779: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:4745: \$? = $ac_status" >&5
+  echo "$as_me:4782: \$? = $ac_status" >&5
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
-  { (eval echo "$as_me:4747: \"$ac_try\"") >&5
+  { (eval echo "$as_me:4784: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:4750: \$? = $ac_status" >&5
+  echo "$as_me:4787: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_func_mmap_fixed_mapped=yes
 else
@@ -4759,7 +4796,7 @@ fi
 rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
 fi
 fi
-echo "$as_me:4762: result: $ac_cv_func_mmap_fixed_mapped" >&5
+echo "$as_me:4799: result: $ac_cv_func_mmap_fixed_mapped" >&5
 echo "${ECHO_T}$ac_cv_func_mmap_fixed_mapped" >&6
 if test $ac_cv_func_mmap_fixed_mapped = yes; then
 
@@ -4770,13 +4807,13 @@ EOF
 fi
 rm -f conftest.mmap
 
-    echo "$as_me:4773: checking whether we are using the GNU C Library 2.1 or newer" >&5
+    echo "$as_me:4810: checking whether we are using the GNU C Library 2.1 or newer" >&5
 echo $ECHO_N "checking whether we are using the GNU C Library 2.1 or newer... $ECHO_C" >&6
 if test "${ac_cv_gnu_library_2_1+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 4779 "configure"
+#line 4816 "configure"
 #include "confdefs.h"
 
 #include <features.h>
@@ -4796,7 +4833,7 @@ fi
 rm -f conftest*
 
 fi
-echo "$as_me:4799: result: $ac_cv_gnu_library_2_1" >&5
+echo "$as_me:4836: result: $ac_cv_gnu_library_2_1" >&5
 echo "${ECHO_T}$ac_cv_gnu_library_2_1" >&6
 
     GLIBC21="$ac_cv_gnu_library_2_1"
@@ -4825,23 +4862,23 @@ for ac_header in argz.h limits.h locale.h nl_types.h malloc.h stddef.h \
 stdlib.h string.h unistd.h sys/param.h
 do
 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:4828: checking for $ac_header" >&5
+echo "$as_me:4865: 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 4834 "configure"
+#line 4871 "configure"
 #include "confdefs.h"
 #include <$ac_header>
 _ACEOF
-if { (eval echo "$as_me:4838: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:4875: \"$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:4844: \$? = $ac_status" >&5
+  echo "$as_me:4881: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -4860,7 +4897,7 @@ else
 fi
 rm -f conftest.err conftest.$ac_ext
 fi
-echo "$as_me:4863: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:4900: 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
@@ -4875,13 +4912,13 @@ getgid getuid mempcpy munmap putenv setenv setlocale stpcpy strchr strcasecmp \
 strdup strtoul tsearch __argz_count __argz_stringify __argz_next
 do
 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
-echo "$as_me:4878: checking for $ac_func" >&5
+echo "$as_me:4915: 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 4884 "configure"
+#line 4921 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char $ac_func (); below.  */
@@ -4912,16 +4949,16 @@ f = $ac_func;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:4915: \"$ac_link\"") >&5
+if { (eval echo "$as_me:4952: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:4918: \$? = $ac_status" >&5
+  echo "$as_me:4955: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:4921: \"$ac_try\"") >&5
+  { (eval echo "$as_me:4958: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:4924: \$? = $ac_status" >&5
+  echo "$as_me:4961: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   eval "$as_ac_var=yes"
 else
@@ -4931,7 +4968,7 @@ eval "$as_ac_var=no"
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:4934: result: `eval echo '${'$as_ac_var'}'`" >&5
+echo "$as_me:4971: 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
@@ -4952,7 +4989,7 @@ if test "${with_libiconv_prefix+set}" = set; then
 
 fi;
 
-  echo "$as_me:4955: checking for iconv" >&5
+  echo "$as_me:4992: 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
@@ -4961,7 +4998,7 @@ else
     am_cv_func_iconv="no, consider installing GNU libiconv"
     am_cv_lib_iconv=no
     cat >conftest.$ac_ext <<_ACEOF
-#line 4964 "configure"
+#line 5001 "configure"
 #include "confdefs.h"
 #include <stdlib.h>
 #include <iconv.h>
@@ -4976,16 +5013,16 @@ iconv_t cd = iconv_open("","");
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:4979: \"$ac_link\"") >&5
+if { (eval echo "$as_me:5016: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:4982: \$? = $ac_status" >&5
+  echo "$as_me:5019: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:4985: \"$ac_try\"") >&5
+  { (eval echo "$as_me:5022: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:4988: \$? = $ac_status" >&5
+  echo "$as_me:5025: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   am_cv_func_iconv=yes
 else
@@ -4997,7 +5034,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
       am_save_LIBS="$LIBS"
       LIBS="$LIBS -liconv"
       cat >conftest.$ac_ext <<_ACEOF
-#line 5000 "configure"
+#line 5037 "configure"
 #include "confdefs.h"
 #include <stdlib.h>
 #include <iconv.h>
@@ -5012,16 +5049,16 @@ iconv_t cd = iconv_open("","");
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:5015: \"$ac_link\"") >&5
+if { (eval echo "$as_me:5052: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:5018: \$? = $ac_status" >&5
+  echo "$as_me:5055: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:5021: \"$ac_try\"") >&5
+  { (eval echo "$as_me:5058: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:5024: \$? = $ac_status" >&5
+  echo "$as_me:5061: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   am_cv_lib_iconv=yes
         am_cv_func_iconv=yes
@@ -5034,7 +5071,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
     fi
 
 fi
-echo "$as_me:5037: result: $am_cv_func_iconv" >&5
+echo "$as_me:5074: result: $am_cv_func_iconv" >&5
 echo "${ECHO_T}$am_cv_func_iconv" >&6
   if test "$am_cv_func_iconv" = yes; then
 
@@ -5042,14 +5079,14 @@ cat >>confdefs.h <<\EOF
 #define HAVE_ICONV 1
 EOF
 
-    echo "$as_me:5045: checking for iconv declaration" >&5
+    echo "$as_me:5082: checking for iconv declaration" >&5
 echo $ECHO_N "checking for iconv declaration... $ECHO_C" >&6
     if test "${am_cv_proto_iconv+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
       cat >conftest.$ac_ext <<_ACEOF
-#line 5052 "configure"
+#line 5089 "configure"
 #include "confdefs.h"
 
 #include <stdlib.h>
@@ -5073,16 +5110,16 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:5076: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:5113: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:5079: \$? = $ac_status" >&5
+  echo "$as_me:5116: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:5082: \"$ac_try\"") >&5
+  { (eval echo "$as_me:5119: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:5085: \$? = $ac_status" >&5
+  echo "$as_me:5122: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   am_cv_proto_iconv_arg1=""
 else
@@ -5095,7 +5132,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 fi
 
     am_cv_proto_iconv=`echo "$am_cv_proto_iconv" | tr -s ' ' | sed -e 's/( /(/'`
-    echo "$as_me:5098: result: ${ac_t:-
+    echo "$as_me:5135: result: ${ac_t:-
          }$am_cv_proto_iconv" >&5
 echo "${ECHO_T}${ac_t:-
          }$am_cv_proto_iconv" >&6
@@ -5110,13 +5147,13 @@ EOF
     LIBICONV="-liconv"
   fi
 
-  echo "$as_me:5113: checking for nl_langinfo and CODESET" >&5
+  echo "$as_me:5150: checking for nl_langinfo and CODESET" >&5
 echo $ECHO_N "checking for nl_langinfo and CODESET... $ECHO_C" >&6
 if test "${am_cv_langinfo_codeset+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 5119 "configure"
+#line 5156 "configure"
 #include "confdefs.h"
 #include <langinfo.h>
 int
@@ -5128,16 +5165,16 @@ char* cs = nl_langinfo(CODESET);
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:5131: \"$ac_link\"") >&5
+if { (eval echo "$as_me:5168: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:5134: \$? = $ac_status" >&5
+  echo "$as_me:5171: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:5137: \"$ac_try\"") >&5
+  { (eval echo "$as_me:5174: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:5140: \$? = $ac_status" >&5
+  echo "$as_me:5177: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   am_cv_langinfo_codeset=yes
 else
@@ -5148,7 +5185,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 
 fi
-echo "$as_me:5151: result: $am_cv_langinfo_codeset" >&5
+echo "$as_me:5188: result: $am_cv_langinfo_codeset" >&5
 echo "${ECHO_T}$am_cv_langinfo_codeset" >&6
   if test $am_cv_langinfo_codeset = yes; then
 
@@ -5159,13 +5196,13 @@ EOF
   fi
 
    if test $ac_cv_header_locale_h = yes; then
-    echo "$as_me:5162: checking for LC_MESSAGES" >&5
+    echo "$as_me:5199: checking for LC_MESSAGES" >&5
 echo $ECHO_N "checking for LC_MESSAGES... $ECHO_C" >&6
 if test "${am_cv_val_LC_MESSAGES+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 5168 "configure"
+#line 5205 "configure"
 #include "confdefs.h"
 #include <locale.h>
 int
@@ -5177,16 +5214,16 @@ return LC_MESSAGES
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:5180: \"$ac_link\"") >&5
+if { (eval echo "$as_me:5217: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:5183: \$? = $ac_status" >&5
+  echo "$as_me:5220: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:5186: \"$ac_try\"") >&5
+  { (eval echo "$as_me:5223: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:5189: \$? = $ac_status" >&5
+  echo "$as_me:5226: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   am_cv_val_LC_MESSAGES=yes
 else
@@ -5196,7 +5233,7 @@ am_cv_val_LC_MESSAGES=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:5199: result: $am_cv_val_LC_MESSAGES" >&5
+echo "$as_me:5236: result: $am_cv_val_LC_MESSAGES" >&5
 echo "${ECHO_T}$am_cv_val_LC_MESSAGES" >&6
     if test $am_cv_val_LC_MESSAGES = yes; then
 
@@ -5206,7 +5243,7 @@ EOF
 
     fi
   fi
-   echo "$as_me:5209: checking whether NLS is requested" >&5
+   echo "$as_me:5246: checking whether NLS is requested" >&5
 echo $ECHO_N "checking whether NLS is requested... $ECHO_C" >&6
 
 # Check whether --enable-nls or --disable-nls was given.
@@ -5216,7 +5253,7 @@ if test "${enable_nls+set}" = set; then
 else
   USE_NLS=no
 fi;
-    echo "$as_me:5219: result: $USE_NLS" >&5
+    echo "$as_me:5256: result: $USE_NLS" >&5
 echo "${ECHO_T}$USE_NLS" >&6
 
     BUILD_INCLUDED_LIBINTL=no
@@ -5229,7 +5266,7 @@ cat >>confdefs.h <<\EOF
 #define ENABLE_NLS 1
 EOF
 
-      echo "$as_me:5232: checking whether included gettext is requested" >&5
+      echo "$as_me:5269: checking whether included gettext is requested" >&5
 echo $ECHO_N "checking whether included gettext is requested... $ECHO_C" >&6
 
 # Check whether --with-included-gettext or --without-included-gettext was given.
@@ -5239,30 +5276,30 @@ if test "${with_included_gettext+set}" = set; then
 else
   nls_cv_force_use_gnu_gettext=no
 fi;
-      echo "$as_me:5242: result: $nls_cv_force_use_gnu_gettext" >&5
+      echo "$as_me:5279: result: $nls_cv_force_use_gnu_gettext" >&5
 echo "${ECHO_T}$nls_cv_force_use_gnu_gettext" >&6
 
       nls_cv_use_gnu_gettext="$nls_cv_force_use_gnu_gettext"
       if test "$nls_cv_force_use_gnu_gettext" != "yes"; then
                         	CATOBJEXT=NONE
 
-	echo "$as_me:5249: checking for libintl.h" >&5
+	echo "$as_me:5286: checking for libintl.h" >&5
 echo $ECHO_N "checking for libintl.h... $ECHO_C" >&6
 if test "${ac_cv_header_libintl_h+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 5255 "configure"
+#line 5292 "configure"
 #include "confdefs.h"
 #include <libintl.h>
 _ACEOF
-if { (eval echo "$as_me:5259: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:5296: \"$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:5265: \$? = $ac_status" >&5
+  echo "$as_me:5302: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -5281,16 +5318,16 @@ else
 fi
 rm -f conftest.err conftest.$ac_ext
 fi
-echo "$as_me:5284: result: $ac_cv_header_libintl_h" >&5
+echo "$as_me:5321: result: $ac_cv_header_libintl_h" >&5
 echo "${ECHO_T}$ac_cv_header_libintl_h" >&6
 if test $ac_cv_header_libintl_h = yes; then
-  echo "$as_me:5287: checking for GNU gettext in libc" >&5
+  echo "$as_me:5324: checking for GNU gettext in libc" >&5
 echo $ECHO_N "checking for GNU gettext in libc... $ECHO_C" >&6
 if test "${gt_cv_func_gnugettext1_libc+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 5293 "configure"
+#line 5330 "configure"
 #include "confdefs.h"
 #include <libintl.h>
 extern int _nl_msg_cat_cntr;
@@ -5304,16 +5341,16 @@ return (int) gettext ("") + _nl_msg_cat_cntr
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:5307: \"$ac_link\"") >&5
+if { (eval echo "$as_me:5344: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:5310: \$? = $ac_status" >&5
+  echo "$as_me:5347: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:5313: \"$ac_try\"") >&5
+  { (eval echo "$as_me:5350: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:5316: \$? = $ac_status" >&5
+  echo "$as_me:5353: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   gt_cv_func_gnugettext1_libc=yes
 else
@@ -5323,11 +5360,11 @@ gt_cv_func_gnugettext1_libc=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:5326: result: $gt_cv_func_gnugettext1_libc" >&5
+echo "$as_me:5363: result: $gt_cv_func_gnugettext1_libc" >&5
 echo "${ECHO_T}$gt_cv_func_gnugettext1_libc" >&6
 
 	   if test "$gt_cv_func_gnugettext1_libc" != "yes"; then
-	     echo "$as_me:5330: checking for GNU gettext in libintl" >&5
+	     echo "$as_me:5367: checking for GNU gettext in libintl" >&5
 echo $ECHO_N "checking for GNU gettext in libintl... $ECHO_C" >&6
 if test "${gt_cv_func_gnugettext1_libintl+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -5335,7 +5372,7 @@ else
   gt_save_LIBS="$LIBS"
 		LIBS="$LIBS -lintl $LIBICONV"
 		cat >conftest.$ac_ext <<_ACEOF
-#line 5338 "configure"
+#line 5375 "configure"
 #include "confdefs.h"
 #include <libintl.h>
 extern int _nl_msg_cat_cntr;
@@ -5349,16 +5386,16 @@ return (int) gettext ("") + _nl_msg_cat_cntr
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:5352: \"$ac_link\"") >&5
+if { (eval echo "$as_me:5389: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:5355: \$? = $ac_status" >&5
+  echo "$as_me:5392: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:5358: \"$ac_try\"") >&5
+  { (eval echo "$as_me:5395: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:5361: \$? = $ac_status" >&5
+  echo "$as_me:5398: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   gt_cv_func_gnugettext1_libintl=yes
 else
@@ -5369,7 +5406,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 		LIBS="$gt_save_LIBS"
 fi
-echo "$as_me:5372: result: $gt_cv_func_gnugettext1_libintl" >&5
+echo "$as_me:5409: result: $gt_cv_func_gnugettext1_libintl" >&5
 echo "${ECHO_T}$gt_cv_func_gnugettext1_libintl" >&6
 	   fi
 
@@ -5391,13 +5428,13 @@ EOF
 for ac_func in dcgettext
 do
 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
-echo "$as_me:5394: checking for $ac_func" >&5
+echo "$as_me:5431: 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 5400 "configure"
+#line 5437 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char $ac_func (); below.  */
@@ -5428,16 +5465,16 @@ f = $ac_func;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:5431: \"$ac_link\"") >&5
+if { (eval echo "$as_me:5468: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:5434: \$? = $ac_status" >&5
+  echo "$as_me:5471: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:5437: \"$ac_try\"") >&5
+  { (eval echo "$as_me:5474: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:5440: \$? = $ac_status" >&5
+  echo "$as_me:5477: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   eval "$as_ac_var=yes"
 else
@@ -5447,7 +5484,7 @@ eval "$as_ac_var=no"
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:5450: result: `eval echo '${'$as_ac_var'}'`" >&5
+echo "$as_me:5487: 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
@@ -5462,7 +5499,7 @@ done
 	     	     # Extract the first word of "msgfmt", so it can be a program name with args.
 
 set dummy msgfmt; ac_word=$2
-echo "$as_me:5465: checking for $ac_word" >&5
+echo "$as_me:5502: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_path_MSGFMT+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -5489,16 +5526,16 @@ esac
 fi
 MSGFMT="$ac_cv_path_MSGFMT"
 if test "$MSGFMT" != ":"; then
-  echo "$as_me:5492: result: $MSGFMT" >&5
+  echo "$as_me:5529: result: $MSGFMT" >&5
 echo "${ECHO_T}$MSGFMT" >&6
 else
-  echo "$as_me:5495: result: no" >&5
+  echo "$as_me:5532: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
 	     # Extract the first word of "gmsgfmt", so it can be a program name with args.
 set dummy gmsgfmt; ac_word=$2
-echo "$as_me:5501: checking for $ac_word" >&5
+echo "$as_me:5538: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_path_GMSGFMT+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -5515,7 +5552,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_GMSGFMT="$ac_dir/$ac_word"
-   echo "$as_me:5518: found $ac_dir/$ac_word" >&5
+   echo "$as_me:5555: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -5527,17 +5564,17 @@ fi
 GMSGFMT=$ac_cv_path_GMSGFMT
 
 if test -n "$GMSGFMT"; then
-  echo "$as_me:5530: result: $GMSGFMT" >&5
+  echo "$as_me:5567: result: $GMSGFMT" >&5
 echo "${ECHO_T}$GMSGFMT" >&6
 else
-  echo "$as_me:5533: result: no" >&5
+  echo "$as_me:5570: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
 	     	     # Extract the first word of "xgettext", so it can be a program name with args.
 
 set dummy xgettext; ac_word=$2
-echo "$as_me:5540: checking for $ac_word" >&5
+echo "$as_me:5577: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_path_XGETTEXT+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -5564,10 +5601,10 @@ esac
 fi
 XGETTEXT="$ac_cv_path_XGETTEXT"
 if test "$XGETTEXT" != ":"; then
-  echo "$as_me:5567: result: $XGETTEXT" >&5
+  echo "$as_me:5604: result: $XGETTEXT" >&5
 echo "${ECHO_T}$XGETTEXT" >&6
 else
-  echo "$as_me:5570: result: no" >&5
+  echo "$as_me:5607: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -5583,7 +5620,7 @@ fi
 
       if test "$nls_cv_use_gnu_gettext" = "yes"; then
         if test ! -d $srcdir/intl ; then
-	  { { echo "$as_me:5586: error: no NLS library is packaged with this application" >&5
+	  { { echo "$as_me:5623: error: no NLS library is packaged with this application" >&5
 echo "$as_me: error: no NLS library is packaged with this application" >&2;}
    { (exit 1); exit 1; }; }
 	fi
@@ -5591,7 +5628,7 @@ echo "$as_me: error: no NLS library is packaged with this application" >&2;}
         # Extract the first word of "msgfmt", so it can be a program name with args.
 
 set dummy msgfmt; ac_word=$2
-echo "$as_me:5594: checking for $ac_word" >&5
+echo "$as_me:5631: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_path_MSGFMT+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -5618,16 +5655,16 @@ esac
 fi
 MSGFMT="$ac_cv_path_MSGFMT"
 if test "$MSGFMT" != ":"; then
-  echo "$as_me:5621: result: $MSGFMT" >&5
+  echo "$as_me:5658: result: $MSGFMT" >&5
 echo "${ECHO_T}$MSGFMT" >&6
 else
-  echo "$as_me:5624: result: no" >&5
+  echo "$as_me:5661: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
         # Extract the first word of "gmsgfmt", so it can be a program name with args.
 set dummy gmsgfmt; ac_word=$2
-echo "$as_me:5630: checking for $ac_word" >&5
+echo "$as_me:5667: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_path_GMSGFMT+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -5644,7 +5681,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_GMSGFMT="$ac_dir/$ac_word"
-   echo "$as_me:5647: found $ac_dir/$ac_word" >&5
+   echo "$as_me:5684: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -5656,17 +5693,17 @@ fi
 GMSGFMT=$ac_cv_path_GMSGFMT
 
 if test -n "$GMSGFMT"; then
-  echo "$as_me:5659: result: $GMSGFMT" >&5
+  echo "$as_me:5696: result: $GMSGFMT" >&5
 echo "${ECHO_T}$GMSGFMT" >&6
 else
-  echo "$as_me:5662: result: no" >&5
+  echo "$as_me:5699: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
         # Extract the first word of "xgettext", so it can be a program name with args.
 
 set dummy xgettext; ac_word=$2
-echo "$as_me:5669: checking for $ac_word" >&5
+echo "$as_me:5706: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_path_XGETTEXT+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -5693,10 +5730,10 @@ esac
 fi
 XGETTEXT="$ac_cv_path_XGETTEXT"
 if test "$XGETTEXT" != ":"; then
-  echo "$as_me:5696: result: $XGETTEXT" >&5
+  echo "$as_me:5733: result: $XGETTEXT" >&5
 echo "${ECHO_T}$XGETTEXT" >&6
 else
-  echo "$as_me:5699: result: no" >&5
+  echo "$as_me:5736: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -5711,7 +5748,7 @@ fi
 			if $GMSGFMT --statistics /dev/null >/dev/null 2>&1; then
 	  : ;
 	else
-	  echo "$as_me:5714: result: found msgfmt program is not GNU msgfmt; ignore it" >&5
+	  echo "$as_me:5751: result: found msgfmt program is not GNU msgfmt; ignore it" >&5
 echo "${ECHO_T}found msgfmt program is not GNU msgfmt; ignore it" >&6
 	  GMSGFMT=":"
 	fi
@@ -5721,7 +5758,7 @@ echo "${ECHO_T}found msgfmt program is not GNU msgfmt; ignore it" >&6
 			if $XGETTEXT --omit-header /dev/null >/dev/null 2>&1; then
 	  : ;
 	else
-	  echo "$as_me:5724: result: found xgettext program is not GNU xgettext; ignore it" >&5
+	  echo "$as_me:5761: result: found xgettext program is not GNU xgettext; ignore it" >&5
 echo "${ECHO_T}found xgettext program is not GNU xgettext; ignore it" >&6
 	  XGETTEXT=":"
 	fi
@@ -5741,7 +5778,7 @@ echo "${ECHO_T}found xgettext program is not GNU xgettext; ignore it" >&6
 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:5744: checking for $ac_word" >&5
+echo "$as_me:5781: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_prog_INTLBISON+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -5756,7 +5793,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_INTLBISON="$ac_prog"
-echo "$as_me:5759: found $ac_dir/$ac_word" >&5
+echo "$as_me:5796: found $ac_dir/$ac_word" >&5
 break
 done
 
@@ -5764,10 +5801,10 @@ fi
 fi
 INTLBISON=$ac_cv_prog_INTLBISON
 if test -n "$INTLBISON"; then
-  echo "$as_me:5767: result: $INTLBISON" >&5
+  echo "$as_me:5804: result: $INTLBISON" >&5
 echo "${ECHO_T}$INTLBISON" >&6
 else
-  echo "$as_me:5770: result: no" >&5
+  echo "$as_me:5807: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -5777,7 +5814,7 @@ done
     if test -z "$INTLBISON"; then
       ac_verc_fail=yes
     else
-            echo "$as_me:5780: checking version of bison" >&5
+            echo "$as_me:5817: checking version of bison" >&5
 echo $ECHO_N "checking version of bison... $ECHO_C" >&6
       ac_prog_version=`$INTLBISON --version 2>&1 | sed -n 's/^.*GNU Bison.* \([0-9]*\.[0-9.]*\).*$/\1/p'`
       case $ac_prog_version in
@@ -5786,7 +5823,7 @@ echo $ECHO_N "checking version of bison... $ECHO_C" >&6
            ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;;
         *) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;;
       esac
-      echo "$as_me:5789: result: $ac_prog_version" >&5
+      echo "$as_me:5826: result: $ac_prog_version" >&5
 echo "${ECHO_T}$ac_prog_version" >&6
     fi
     if test $ac_verc_fail = yes; then
@@ -5812,7 +5849,7 @@ echo "${ECHO_T}$ac_prog_version" >&6
      if test "x$ALL_LINGUAS" = "x"; then
        LINGUAS=
      else
-       echo "$as_me:5815: checking for catalogs to be installed" >&5
+       echo "$as_me:5852: checking for catalogs to be installed" >&5
 echo $ECHO_N "checking for catalogs to be installed... $ECHO_C" >&6
        NEW_LINGUAS=
        for presentlang in $ALL_LINGUAS; do
@@ -5832,7 +5869,7 @@ echo $ECHO_N "checking for catalogs to be installed... $ECHO_C" >&6
          fi
        done
        LINGUAS=$NEW_LINGUAS
-       echo "$as_me:5835: result: $LINGUAS" >&5
+       echo "$as_me:5872: result: $LINGUAS" >&5
 echo "${ECHO_T}$LINGUAS" >&6
      fi
 
@@ -5865,7 +5902,7 @@ cf_makefile=makefile
 use_our_messages=no
 if test "$USE_NLS" = yes ; then
 if test -d $srcdir/po ; then
-echo "$as_me:5868: checking if we should use included message-library" >&5
+echo "$as_me:5905: checking if we should use included message-library" >&5
 echo $ECHO_N "checking if we should use included message-library... $ECHO_C" >&6
 
 # Check whether --enable-included-msgs or --disable-included-msgs was given.
@@ -5876,7 +5913,7 @@ else
   use_our_messages=yes
 fi;
 fi
-echo "$as_me:5879: result: $use_our_messages" >&5
+echo "$as_me:5916: result: $use_our_messages" >&5
 echo "${ECHO_T}$use_our_messages" >&6
 fi
 
@@ -5917,23 +5954,23 @@ else
 for ac_header in libintl.h
 do
 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:5920: checking for $ac_header" >&5
+echo "$as_me:5957: 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 5926 "configure"
+#line 5963 "configure"
 #include "confdefs.h"
 #include <$ac_header>
 _ACEOF
-if { (eval echo "$as_me:5930: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:5967: \"$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:5936: \$? = $ac_status" >&5
+  echo "$as_me:5973: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -5952,7 +5989,7 @@ else
 fi
 rm -f conftest.err conftest.$ac_ext
 fi
-echo "$as_me:5955: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:5992: 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
@@ -6028,7 +6065,7 @@ case ".$withval" in #(vi
   withval=`echo $withval | sed -e s%NONE%$ac_default_prefix%`
   ;;
 *)
-  { { echo "$as_me:6031: error: expected a pathname, not \"$withval\"" >&5
+  { { echo "$as_me:6068: error: expected a pathname, not \"$withval\"" >&5
 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;}
    { (exit 1); exit 1; }; }
   ;;
@@ -6036,7 +6073,7 @@ esac
 
 eval NLS_DATADIR="$withval"
 
-echo "$as_me:6039: checking if you want full utility pathnames" >&5
+echo "$as_me:6076: checking if you want full utility pathnames" >&5
 echo $ECHO_N "checking if you want full utility pathnames... $ECHO_C" >&6
 
 # Check whether --enable-full-paths or --disable-full-paths was given.
@@ -6053,13 +6090,13 @@ else
   with_full_paths=yes
 
 fi;
-echo "$as_me:6056: result: $with_full_paths" >&5
+echo "$as_me:6093: result: $with_full_paths" >&5
 echo "${ECHO_T}$with_full_paths" >&6
 test $with_full_paths = no && cat >>confdefs.h <<\EOF
 #define USE_EXECVP 1
 EOF
 
-echo "$as_me:6062: checking for system mailer" >&5
+echo "$as_me:6099: checking for system mailer" >&5
 echo $ECHO_N "checking for system mailer... $ECHO_C" >&6
 if test "${cf_cv_SYSTEM_MAIL+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -6079,13 +6116,13 @@ else
 
 fi
 
-echo "$as_me:6082: result: $cf_cv_SYSTEM_MAIL" >&5
+echo "$as_me:6119: result: $cf_cv_SYSTEM_MAIL" >&5
 echo "${ECHO_T}$cf_cv_SYSTEM_MAIL" >&6
 cat >>confdefs.h <<EOF
 #define SYSTEM_MAIL "$cf_cv_SYSTEM_MAIL"
 EOF
 
-echo "$as_me:6088: checking system mail flags" >&5
+echo "$as_me:6125: checking system mail flags" >&5
 echo $ECHO_N "checking system mail flags... $ECHO_C" >&6
 if test "${cf_cv_system_mail_flags+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -6101,7 +6138,7 @@ else
 
 fi
 
-echo "$as_me:6104: result: $cf_cv_system_mail_flags" >&5
+echo "$as_me:6141: result: $cf_cv_system_mail_flags" >&5
 echo "${ECHO_T}$cf_cv_system_mail_flags" >&6
 cat >>confdefs.h <<EOF
 #define SYSTEM_MAIL_FLAGS "$cf_cv_system_mail_flags"
@@ -6113,15 +6150,15 @@ if test $with_full_paths = no ; then
 fi
 fi
 
-cf_XOPEN_SOURCE=500
-cf_POSIX_C_SOURCE=199506
+cf_XOPEN_SOURCE=600
+cf_POSIX_C_SOURCE=199506L
 
 case $host_os in #(vi
 freebsd*) #(vi
 	# 5.x headers associate
-	#	_XOPEN_SOURCE=600 with _POSIX_C_SOURCE=200112
-	#	_XOPEN_SOURCE=500 with _POSIX_C_SOURCE=199506
-	cf_POSIX_C_SOURCE=200112
+	#	_XOPEN_SOURCE=600 with _POSIX_C_SOURCE=200112L
+	#	_XOPEN_SOURCE=500 with _POSIX_C_SOURCE=199506L
+	cf_POSIX_C_SOURCE=200112L
 	cf_XOPEN_SOURCE=600
 	CPPFLAGS="$CPPFLAGS -D_BSD_TYPES -D__BSD_VISIBLE -D_POSIX_C_SOURCE=$cf_POSIX_C_SOURCE -D_XOPEN_SOURCE=$cf_XOPEN_SOURCE"
 	;;
@@ -6133,14 +6170,14 @@ irix6.*) #(vi
 	;;
 linux*|gnu*) #(vi
 
-echo "$as_me:6136: checking if we must define _GNU_SOURCE" >&5
+echo "$as_me:6173: checking if we must define _GNU_SOURCE" >&5
 echo $ECHO_N "checking if we must define _GNU_SOURCE... $ECHO_C" >&6
 if test "${cf_cv_gnu_source+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 cat >conftest.$ac_ext <<_ACEOF
-#line 6143 "configure"
+#line 6180 "configure"
 #include "confdefs.h"
 #include <sys/types.h>
 int
@@ -6155,16 +6192,16 @@ make an error
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:6158: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:6195: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:6161: \$? = $ac_status" >&5
+  echo "$as_me:6198: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:6164: \"$ac_try\"") >&5
+  { (eval echo "$as_me:6201: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:6167: \$? = $ac_status" >&5
+  echo "$as_me:6204: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_gnu_source=no
 else
@@ -6173,7 +6210,7 @@ cat conftest.$ac_ext >&5
 cf_save="$CPPFLAGS"
 	 CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
 	 cat >conftest.$ac_ext <<_ACEOF
-#line 6176 "configure"
+#line 6213 "configure"
 #include "confdefs.h"
 #include <sys/types.h>
 int
@@ -6188,16 +6225,16 @@ make an error
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:6191: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:6228: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:6194: \$? = $ac_status" >&5
+  echo "$as_me:6231: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:6197: \"$ac_try\"") >&5
+  { (eval echo "$as_me:6234: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:6200: \$? = $ac_status" >&5
+  echo "$as_me:6237: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_gnu_source=no
 else
@@ -6212,7 +6249,7 @@ fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 
 fi
-echo "$as_me:6215: result: $cf_cv_gnu_source" >&5
+echo "$as_me:6252: result: $cf_cv_gnu_source" >&5
 echo "${ECHO_T}$cf_cv_gnu_source" >&6
 test "$cf_cv_gnu_source" = yes && CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE"
 
@@ -6236,14 +6273,14 @@ solaris*) #(vi
 	CPPFLAGS="$CPPFLAGS -D__EXTENSIONS__"
 	;;
 *)
-	echo "$as_me:6239: checking if we should define _XOPEN_SOURCE" >&5
+	echo "$as_me:6276: checking if we should define _XOPEN_SOURCE" >&5
 echo $ECHO_N "checking if we should define _XOPEN_SOURCE... $ECHO_C" >&6
 if test "${cf_cv_xopen_source+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 	cat >conftest.$ac_ext <<_ACEOF
-#line 6246 "configure"
+#line 6283 "configure"
 #include "confdefs.h"
 #include <sys/types.h>
 int
@@ -6258,16 +6295,16 @@ make an error
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:6261: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:6298: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:6264: \$? = $ac_status" >&5
+  echo "$as_me:6301: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:6267: \"$ac_try\"") >&5
+  { (eval echo "$as_me:6304: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:6270: \$? = $ac_status" >&5
+  echo "$as_me:6307: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_xopen_source=no
 else
@@ -6276,7 +6313,7 @@ cat conftest.$ac_ext >&5
 cf_save="$CPPFLAGS"
 	 CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=$cf_XOPEN_SOURCE"
 	 cat >conftest.$ac_ext <<_ACEOF
-#line 6279 "configure"
+#line 6316 "configure"
 #include "confdefs.h"
 #include <sys/types.h>
 int
@@ -6291,22 +6328,22 @@ make an error
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:6294: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:6331: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:6297: \$? = $ac_status" >&5
+  echo "$as_me:6334: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:6300: \"$ac_try\"") >&5
+  { (eval echo "$as_me:6337: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:6303: \$? = $ac_status" >&5
+  echo "$as_me:6340: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_xopen_source=no
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
-cf_cv_xopen_source=yes
+cf_cv_xopen_source=$cf_XOPEN_SOURCE
 fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 	CPPFLAGS="$cf_save"
@@ -6315,19 +6352,21 @@ fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 
 fi
-echo "$as_me:6318: result: $cf_cv_xopen_source" >&5
+echo "$as_me:6355: result: $cf_cv_xopen_source" >&5
 echo "${ECHO_T}$cf_cv_xopen_source" >&6
-test "$cf_cv_xopen_source" = yes && CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=$cf_XOPEN_SOURCE"
+test "$cf_cv_xopen_source" != no && CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=$cf_cv_xopen_source"
 
-	# FreeBSD 5.x headers demand this...
-	echo "$as_me:6323: checking if we should define _POSIX_C_SOURCE" >&5
+cf_POSIX_C_SOURCE=$cf_POSIX_C_SOURCE
+echo "$as_me:6360: checking if we should define _POSIX_C_SOURCE" >&5
 echo $ECHO_N "checking if we should define _POSIX_C_SOURCE... $ECHO_C" >&6
-if test "${cf_cv_xopen_source+set}" = set; then
+if test "${cf_cv_posix_c_source+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
+echo "(line 6366) testing if the symbol is already defined go no further ..." 1>&5
+
 	cat >conftest.$ac_ext <<_ACEOF
-#line 6330 "configure"
+#line 6369 "configure"
 #include "confdefs.h"
 #include <sys/types.h>
 int
@@ -6342,32 +6381,49 @@ make an error
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:6345: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:6384: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:6348: \$? = $ac_status" >&5
+  echo "$as_me:6387: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:6351: \"$ac_try\"") >&5
+  { (eval echo "$as_me:6390: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:6354: \$? = $ac_status" >&5
+  echo "$as_me:6393: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
-  cf_cv_xopen_source=no
+  cf_cv_posix_c_source=no
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
-cf_save="$CPPFLAGS"
-	 CPPFLAGS="$CPPFLAGS -D_POSIX_C_SOURCE=$cf_POSIX_C_SOURCE"
+case .$cf_POSIX_C_SOURCE in
+	 .[12]??*)
+		cf_cv_posix_c_source="-D_POSIX_C_SOURCE=$cf_POSIX_C_SOURCE"
+		;;
+	 .2)
+		cf_cv_posix_c_source="-D_POSIX_C_SOURCE=$cf_POSIX_C_SOURCE -D_POSIX_SOURCE"
+		;;
+	 .*)
+		cf_cv_posix_c_source="-D_POSIX_SOURCE"
+		;;
+	 esac
+
+echo "(line 6411) testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5
+
+	 cf_save="$CPPFLAGS"
+	 CPPFLAGS="$CPPFLAGS $cf_cv_posix_c_source"
+
+echo "(line 6416) testing if the second compile does not leave our definition intact error ..." 1>&5
+
 	 cat >conftest.$ac_ext <<_ACEOF
-#line 6363 "configure"
+#line 6419 "configure"
 #include "confdefs.h"
 #include <sys/types.h>
 int
 main ()
 {
 
-#ifdef _POSIX_C_SOURCE
+#ifndef _POSIX_C_SOURCE
 make an error
 #endif
   ;
@@ -6375,22 +6431,22 @@ make an error
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:6378: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:6434: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:6381: \$? = $ac_status" >&5
+  echo "$as_me:6437: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:6384: \"$ac_try\"") >&5
+  { (eval echo "$as_me:6440: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:6387: \$? = $ac_status" >&5
+  echo "$as_me:6443: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
-  cf_cv_xopen_source=no
+  :
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
-cf_cv_xopen_source=yes
+cf_cv_posix_c_source=no
 fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 	CPPFLAGS="$cf_save"
@@ -6399,9 +6455,10 @@ fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 
 fi
-echo "$as_me:6402: result: $cf_cv_xopen_source" >&5
-echo "${ECHO_T}$cf_cv_xopen_source" >&6
-test "$cf_cv_xopen_source" = yes && CPPFLAGS="$CPPFLAGS -D_POSIX_C_SOURCE=$cf_POSIX_C_SOURCE"
+echo "$as_me:6458: result: $cf_cv_posix_c_source" >&5
+echo "${ECHO_T}$cf_cv_posix_c_source" >&6
+test "$cf_cv_posix_c_source" != no && CPPFLAGS="$CPPFLAGS $cf_cv_posix_c_source"
+
 	;;
 esac
 
@@ -6485,7 +6542,7 @@ fi
 
 if test "$cf_check_cflags" != "$CFLAGS" ; then
 cat >conftest.$ac_ext <<_ACEOF
-#line 6488 "configure"
+#line 6545 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 int
@@ -6497,16 +6554,16 @@ printf("Hello world");
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:6500: \"$ac_link\"") >&5
+if { (eval echo "$as_me:6557: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:6503: \$? = $ac_status" >&5
+  echo "$as_me:6560: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:6506: \"$ac_try\"") >&5
+  { (eval echo "$as_me:6563: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:6509: \$? = $ac_status" >&5
+  echo "$as_me:6566: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   :
 else
@@ -6527,7 +6584,7 @@ fi
 
 ### Look for network libraries first, since some functions (such as gethostname)
 ### are used in a lot of places.
-echo "$as_me:6530: checking if you want ssl library" >&5
+echo "$as_me:6587: checking if you want ssl library" >&5
 echo $ECHO_N "checking if you want ssl library... $ECHO_C" >&6
 if test "${cf_cv_use_libssl+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -6542,11 +6599,11 @@ else
 fi;
 
 fi
-echo "$as_me:6545: result: $cf_cv_use_libssl" >&5
+echo "$as_me:6602: result: $cf_cv_use_libssl" >&5
 echo "${ECHO_T}$cf_cv_use_libssl" >&6
 
 if test "x$cf_cv_use_libssl" = "xno" ; then
-echo "$as_me:6549: checking if you want experimental gnutls support" >&5
+echo "$as_me:6606: checking if you want experimental gnutls support" >&5
 echo $ECHO_N "checking if you want experimental gnutls support... $ECHO_C" >&6
 if test "${cf_cv_use_libgnutls+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -6561,11 +6618,11 @@ else
 fi;
 
 fi
-echo "$as_me:6564: result: $cf_cv_use_libgnutls" >&5
+echo "$as_me:6621: result: $cf_cv_use_libgnutls" >&5
 echo "${ECHO_T}$cf_cv_use_libgnutls" >&6
 fi
 
-echo "$as_me:6568: checking if you want socks library" >&5
+echo "$as_me:6625: checking if you want socks library" >&5
 echo $ECHO_N "checking if you want socks library... $ECHO_C" >&6
 if test "${cf_cv_use_libsocks+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -6580,10 +6637,10 @@ else
 fi;
 
 fi
-echo "$as_me:6583: result: $cf_cv_use_libsocks" >&5
+echo "$as_me:6640: result: $cf_cv_use_libsocks" >&5
 echo "${ECHO_T}$cf_cv_use_libsocks" >&6
 
-echo "$as_me:6586: checking if you want socks5 library" >&5
+echo "$as_me:6643: checking if you want socks5 library" >&5
 echo $ECHO_N "checking if you want socks5 library... $ECHO_C" >&6
 if test "${cf_cv_use_libsocks5+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -6598,7 +6655,7 @@ else
 fi;
 
 fi
-echo "$as_me:6601: result: $cf_cv_use_libsocks5" >&5
+echo "$as_me:6658: result: $cf_cv_use_libsocks5" >&5
 echo "${ECHO_T}$cf_cv_use_libsocks5" >&6
 
 if test "x$cf_cv_use_libsocks" != xno ; then
@@ -6616,7 +6673,7 @@ no|yes) #(vi
       test -d $cf_cv_use_libsocks/../include && CPPFLAGS="$CPPFLAGS -I$cf_cv_use_libsocks/../include"
     fi
   else
-    { echo "$as_me:6619: WARNING: expected a directory: $cf_cv_use_libsocks" >&5
+    { echo "$as_me:6676: WARNING: expected a directory: $cf_cv_use_libsocks" >&5
 echo "$as_me: WARNING: expected a directory: $cf_cv_use_libsocks" >&2;}
   fi
   ;;
@@ -6659,7 +6716,7 @@ cat >>confdefs.h <<\EOF
 EOF
 
 cat >conftest.$ac_ext <<_ACEOF
-#line 6662 "configure"
+#line 6719 "configure"
 #include "confdefs.h"
 
 #include <stdio.h>
@@ -6673,22 +6730,22 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:6676: \"$ac_link\"") >&5
+if { (eval echo "$as_me:6733: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:6679: \$? = $ac_status" >&5
+  echo "$as_me:6736: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:6682: \"$ac_try\"") >&5
+  { (eval echo "$as_me:6739: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:6685: \$? = $ac_status" >&5
+  echo "$as_me:6742: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   :
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
-{ { echo "$as_me:6691: error: Cannot link with socks library" >&5
+{ { echo "$as_me:6748: error: Cannot link with socks library" >&5
 echo "$as_me: error: Cannot link with socks library" >&2;}
    { (exit 1); exit 1; }; }
 fi
@@ -6709,7 +6766,7 @@ no|yes) #(vi
       test -d $cf_cv_use_libsocks5/../include && CPPFLAGS="$CPPFLAGS -I$cf_cv_use_libsocks5/../include"
     fi
   else
-    { echo "$as_me:6712: WARNING: expected a directory: $cf_cv_use_libsocks5" >&5
+    { echo "$as_me:6769: WARNING: expected a directory: $cf_cv_use_libsocks5" >&5
 echo "$as_me: WARNING: expected a directory: $cf_cv_use_libsocks5" >&2;}
   fi
   ;;
@@ -6723,11 +6780,11 @@ cat >>confdefs.h <<\EOF
 #define SOCKS 1
 EOF
 
-echo "$as_me:6726: checking if the socks library uses socks4 prefix" >&5
+echo "$as_me:6783: checking if the socks library uses socks4 prefix" >&5
 echo $ECHO_N "checking if the socks library uses socks4 prefix... $ECHO_C" >&6
 cf_use_socks4=error
 cat >conftest.$ac_ext <<_ACEOF
-#line 6730 "configure"
+#line 6787 "configure"
 #include "confdefs.h"
 
 #include <socks.h>
@@ -6741,16 +6798,16 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:6744: \"$ac_link\"") >&5
+if { (eval echo "$as_me:6801: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:6747: \$? = $ac_status" >&5
+  echo "$as_me:6804: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:6750: \"$ac_try\"") >&5
+  { (eval echo "$as_me:6807: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:6753: \$? = $ac_status" >&5
+  echo "$as_me:6810: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cat >>confdefs.h <<\EOF
 #define USE_SOCKS4_PREFIX 1
@@ -6761,7 +6818,7 @@ else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
 cat >conftest.$ac_ext <<_ACEOF
-#line 6764 "configure"
+#line 6821 "configure"
 #include "confdefs.h"
 #include <socks.h>
 int
@@ -6773,29 +6830,29 @@ SOCKSinit((char *)0)
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:6776: \"$ac_link\"") >&5
+if { (eval echo "$as_me:6833: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:6779: \$? = $ac_status" >&5
+  echo "$as_me:6836: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:6782: \"$ac_try\"") >&5
+  { (eval echo "$as_me:6839: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:6785: \$? = $ac_status" >&5
+  echo "$as_me:6842: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_use_socks4=no
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
-{ { echo "$as_me:6791: error: Cannot link with socks5 library" >&5
+{ { echo "$as_me:6848: error: Cannot link with socks5 library" >&5
 echo "$as_me: error: Cannot link with socks5 library" >&2;}
    { (exit 1); exit 1; }; }
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
-echo "$as_me:6798: result: $cf_use_socks4" >&5
+echo "$as_me:6855: result: $cf_use_socks4" >&5
 echo "${ECHO_T}$cf_use_socks4" >&6
 if test "$cf_use_socks4" = "yes" ; then
 	cat >>confdefs.h <<\EOF
@@ -6848,10 +6905,10 @@ EOF
 EOF
 
 fi
-echo "$as_me:6851: checking if socks5p.h is available" >&5
+echo "$as_me:6908: checking if socks5p.h is available" >&5
 echo $ECHO_N "checking if socks5p.h is available... $ECHO_C" >&6
 cat >conftest.$ac_ext <<_ACEOF
-#line 6854 "configure"
+#line 6911 "configure"
 #include "confdefs.h"
 
 #define INCLUDE_PROTOTYPES
@@ -6866,16 +6923,16 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:6869: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:6926: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:6872: \$? = $ac_status" >&5
+  echo "$as_me:6929: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:6875: \"$ac_try\"") >&5
+  { (eval echo "$as_me:6932: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:6878: \$? = $ac_status" >&5
+  echo "$as_me:6935: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_use_socks5p_h=yes
 else
@@ -6884,7 +6941,7 @@ cat conftest.$ac_ext >&5
 cf_use_socks5p_h=no
 fi
 rm -f conftest.$ac_objext conftest.$ac_ext
-echo "$as_me:6887: result: $cf_use_socks5p_h" >&5
+echo "$as_me:6944: result: $cf_use_socks5p_h" >&5
 echo "${ECHO_T}$cf_use_socks5p_h" >&6
 test "$cf_use_socks5p_h" = yes && cat >>confdefs.h <<\EOF
 #define INCLUDE_PROTOTYPES 1
@@ -6893,13 +6950,13 @@ EOF
 else
 
 cf_test_netlibs=no
-echo "$as_me:6896: checking for network libraries" >&5
+echo "$as_me:6953: checking for network libraries" >&5
 echo $ECHO_N "checking for network libraries... $ECHO_C" >&6
 if test "${cf_cv_netlibs+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
-echo "$as_me:6902: result: working..." >&5
+echo "$as_me:6959: result: working..." >&5
 echo "${ECHO_T}working..." >&6
 cf_cv_netlibs=""
 cf_test_netlibs=yes
@@ -6907,13 +6964,13 @@ cf_test_netlibs=yes
 for ac_func in gethostname
 do
 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
-echo "$as_me:6910: checking for $ac_func" >&5
+echo "$as_me:6967: 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 6916 "configure"
+#line 6973 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char $ac_func (); below.  */
@@ -6944,16 +7001,16 @@ f = $ac_func;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:6947: \"$ac_link\"") >&5
+if { (eval echo "$as_me:7004: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:6950: \$? = $ac_status" >&5
+  echo "$as_me:7007: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:6953: \"$ac_try\"") >&5
+  { (eval echo "$as_me:7010: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:6956: \$? = $ac_status" >&5
+  echo "$as_me:7013: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   eval "$as_ac_var=yes"
 else
@@ -6963,7 +7020,7 @@ eval "$as_ac_var=no"
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:6966: result: `eval echo '${'$as_ac_var'}'`" >&5
+echo "$as_me:7023: 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
@@ -6972,7 +7029,7 @@ EOF
 
 else
 
-echo "$as_me:6975: checking for gethostname in -lnsl" >&5
+echo "$as_me:7032: checking for gethostname in -lnsl" >&5
 echo $ECHO_N "checking for gethostname in -lnsl... $ECHO_C" >&6
 if test "${ac_cv_lib_nsl_gethostname+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -6980,7 +7037,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lnsl $cf_cv_netlibs $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 6983 "configure"
+#line 7040 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -6999,16 +7056,16 @@ gethostname ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:7002: \"$ac_link\"") >&5
+if { (eval echo "$as_me:7059: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:7005: \$? = $ac_status" >&5
+  echo "$as_me:7062: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:7008: \"$ac_try\"") >&5
+  { (eval echo "$as_me:7065: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:7011: \$? = $ac_status" >&5
+  echo "$as_me:7068: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_nsl_gethostname=yes
 else
@@ -7019,7 +7076,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:7022: result: $ac_cv_lib_nsl_gethostname" >&5
+echo "$as_me:7079: result: $ac_cv_lib_nsl_gethostname" >&5
 echo "${ECHO_T}$ac_cv_lib_nsl_gethostname" >&6
 if test $ac_cv_lib_nsl_gethostname = yes; then
 
@@ -7036,7 +7093,7 @@ else
 	ac_cv_func_gethostname=unknown
 	unset ac_cv_func_gethostname 2>/dev/null
 
-echo "$as_me:7039: checking for gethostname in -lsocket" >&5
+echo "$as_me:7096: checking for gethostname in -lsocket" >&5
 echo $ECHO_N "checking for gethostname in -lsocket... $ECHO_C" >&6
 if test "${ac_cv_lib_socket_gethostname+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -7044,7 +7101,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lsocket $cf_cv_netlibs $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 7047 "configure"
+#line 7104 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -7063,16 +7120,16 @@ gethostname ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:7066: \"$ac_link\"") >&5
+if { (eval echo "$as_me:7123: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:7069: \$? = $ac_status" >&5
+  echo "$as_me:7126: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:7072: \"$ac_try\"") >&5
+  { (eval echo "$as_me:7129: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:7075: \$? = $ac_status" >&5
+  echo "$as_me:7132: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_socket_gethostname=yes
 else
@@ -7083,7 +7140,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:7086: result: $ac_cv_lib_socket_gethostname" >&5
+echo "$as_me:7143: result: $ac_cv_lib_socket_gethostname" >&5
 echo "${ECHO_T}$ac_cv_lib_socket_gethostname" >&6
 if test $ac_cv_lib_socket_gethostname = yes; then
 
@@ -7111,7 +7168,7 @@ done
 # FIXME:  sequent needs this library (i.e., -lsocket -linet -lnsl), but
 # I don't know the entrypoints - 97/7/22 TD
 # AC_HAVE_LIBRARY(inet,cf_cv_netlibs="-linet $cf_cv_netlibs")
-echo "$as_me:7114: checking for main in -linet" >&5
+echo "$as_me:7171: checking for main in -linet" >&5
 echo $ECHO_N "checking for main in -linet... $ECHO_C" >&6
 if test "${ac_cv_lib_inet_main+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -7119,7 +7176,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-linet  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 7122 "configure"
+#line 7179 "configure"
 #include "confdefs.h"
 
 int
@@ -7131,16 +7188,16 @@ main ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:7134: \"$ac_link\"") >&5
+if { (eval echo "$as_me:7191: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:7137: \$? = $ac_status" >&5
+  echo "$as_me:7194: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:7140: \"$ac_try\"") >&5
+  { (eval echo "$as_me:7197: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:7143: \$? = $ac_status" >&5
+  echo "$as_me:7200: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_inet_main=yes
 else
@@ -7151,7 +7208,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:7154: result: $ac_cv_lib_inet_main" >&5
+echo "$as_me:7211: result: $ac_cv_lib_inet_main" >&5
 echo "${ECHO_T}$ac_cv_lib_inet_main" >&6
 if test $ac_cv_lib_inet_main = yes; then
   cf_cv_netlibs="-linet $cf_cv_netlibs"
@@ -7163,13 +7220,13 @@ if test "$ac_cv_func_lsocket" != no ; then
 for ac_func in socket
 do
 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
-echo "$as_me:7166: checking for $ac_func" >&5
+echo "$as_me:7223: 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 7172 "configure"
+#line 7229 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char $ac_func (); below.  */
@@ -7200,16 +7257,16 @@ f = $ac_func;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:7203: \"$ac_link\"") >&5
+if { (eval echo "$as_me:7260: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:7206: \$? = $ac_status" >&5
+  echo "$as_me:7263: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:7209: \"$ac_try\"") >&5
+  { (eval echo "$as_me:7266: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:7212: \$? = $ac_status" >&5
+  echo "$as_me:7269: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   eval "$as_ac_var=yes"
 else
@@ -7219,7 +7276,7 @@ eval "$as_ac_var=no"
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:7222: result: `eval echo '${'$as_ac_var'}'`" >&5
+echo "$as_me:7279: 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
@@ -7228,7 +7285,7 @@ EOF
 
 else
 
-echo "$as_me:7231: checking for socket in -lsocket" >&5
+echo "$as_me:7288: checking for socket in -lsocket" >&5
 echo $ECHO_N "checking for socket in -lsocket... $ECHO_C" >&6
 if test "${ac_cv_lib_socket_socket+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -7236,7 +7293,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lsocket $cf_cv_netlibs $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 7239 "configure"
+#line 7296 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -7255,16 +7312,16 @@ socket ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:7258: \"$ac_link\"") >&5
+if { (eval echo "$as_me:7315: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:7261: \$? = $ac_status" >&5
+  echo "$as_me:7318: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:7264: \"$ac_try\"") >&5
+  { (eval echo "$as_me:7321: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:7267: \$? = $ac_status" >&5
+  echo "$as_me:7324: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_socket_socket=yes
 else
@@ -7275,7 +7332,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:7278: result: $ac_cv_lib_socket_socket" >&5
+echo "$as_me:7335: result: $ac_cv_lib_socket_socket" >&5
 echo "${ECHO_T}$ac_cv_lib_socket_socket" >&6
 if test $ac_cv_lib_socket_socket = yes; then
 
@@ -7292,7 +7349,7 @@ else
 	ac_cv_func_socket=unknown
 	unset ac_cv_func_socket 2>/dev/null
 
-echo "$as_me:7295: checking for socket in -lbsd" >&5
+echo "$as_me:7352: checking for socket in -lbsd" >&5
 echo $ECHO_N "checking for socket in -lbsd... $ECHO_C" >&6
 if test "${ac_cv_lib_bsd_socket+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -7300,7 +7357,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lbsd $cf_cv_netlibs $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 7303 "configure"
+#line 7360 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -7319,16 +7376,16 @@ socket ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:7322: \"$ac_link\"") >&5
+if { (eval echo "$as_me:7379: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:7325: \$? = $ac_status" >&5
+  echo "$as_me:7382: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:7328: \"$ac_try\"") >&5
+  { (eval echo "$as_me:7385: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:7331: \$? = $ac_status" >&5
+  echo "$as_me:7388: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_bsd_socket=yes
 else
@@ -7339,7 +7396,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:7342: result: $ac_cv_lib_bsd_socket" >&5
+echo "$as_me:7399: result: $ac_cv_lib_bsd_socket" >&5
 echo "${ECHO_T}$ac_cv_lib_bsd_socket" >&6
 if test $ac_cv_lib_bsd_socket = yes; then
 
@@ -7369,13 +7426,13 @@ fi
 for ac_func in gethostbyname
 do
 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
-echo "$as_me:7372: checking for $ac_func" >&5
+echo "$as_me:7429: 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 7378 "configure"
+#line 7435 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char $ac_func (); below.  */
@@ -7406,16 +7463,16 @@ f = $ac_func;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:7409: \"$ac_link\"") >&5
+if { (eval echo "$as_me:7466: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:7412: \$? = $ac_status" >&5
+  echo "$as_me:7469: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:7415: \"$ac_try\"") >&5
+  { (eval echo "$as_me:7472: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:7418: \$? = $ac_status" >&5
+  echo "$as_me:7475: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   eval "$as_ac_var=yes"
 else
@@ -7425,7 +7482,7 @@ eval "$as_ac_var=no"
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:7428: result: `eval echo '${'$as_ac_var'}'`" >&5
+echo "$as_me:7485: 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
@@ -7434,7 +7491,7 @@ EOF
 
 else
 
-echo "$as_me:7437: checking for gethostbyname in -lnsl" >&5
+echo "$as_me:7494: checking for gethostbyname in -lnsl" >&5
 echo $ECHO_N "checking for gethostbyname in -lnsl... $ECHO_C" >&6
 if test "${ac_cv_lib_nsl_gethostbyname+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -7442,7 +7499,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lnsl $cf_cv_netlibs $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 7445 "configure"
+#line 7502 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -7461,16 +7518,16 @@ gethostbyname ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:7464: \"$ac_link\"") >&5
+if { (eval echo "$as_me:7521: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:7467: \$? = $ac_status" >&5
+  echo "$as_me:7524: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:7470: \"$ac_try\"") >&5
+  { (eval echo "$as_me:7527: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:7473: \$? = $ac_status" >&5
+  echo "$as_me:7530: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_nsl_gethostbyname=yes
 else
@@ -7481,7 +7538,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:7484: result: $ac_cv_lib_nsl_gethostbyname" >&5
+echo "$as_me:7541: result: $ac_cv_lib_nsl_gethostbyname" >&5
 echo "${ECHO_T}$ac_cv_lib_nsl_gethostbyname" >&6
 if test $ac_cv_lib_nsl_gethostbyname = yes; then
 
@@ -7508,13 +7565,13 @@ done
 for ac_func in strcasecmp
 do
 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
-echo "$as_me:7511: checking for $ac_func" >&5
+echo "$as_me:7568: 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 7517 "configure"
+#line 7574 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char $ac_func (); below.  */
@@ -7545,16 +7602,16 @@ f = $ac_func;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:7548: \"$ac_link\"") >&5
+if { (eval echo "$as_me:7605: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:7551: \$? = $ac_status" >&5
+  echo "$as_me:7608: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:7554: \"$ac_try\"") >&5
+  { (eval echo "$as_me:7611: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:7557: \$? = $ac_status" >&5
+  echo "$as_me:7614: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   eval "$as_ac_var=yes"
 else
@@ -7564,7 +7621,7 @@ eval "$as_ac_var=no"
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:7567: result: `eval echo '${'$as_ac_var'}'`" >&5
+echo "$as_me:7624: 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
@@ -7573,7 +7630,7 @@ EOF
 
 else
 
-echo "$as_me:7576: checking for strcasecmp in -lresolv" >&5
+echo "$as_me:7633: checking for strcasecmp in -lresolv" >&5
 echo $ECHO_N "checking for strcasecmp in -lresolv... $ECHO_C" >&6
 if test "${ac_cv_lib_resolv_strcasecmp+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -7581,7 +7638,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lresolv $cf_cv_netlibs $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 7584 "configure"
+#line 7641 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -7600,16 +7657,16 @@ strcasecmp ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:7603: \"$ac_link\"") >&5
+if { (eval echo "$as_me:7660: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:7606: \$? = $ac_status" >&5
+  echo "$as_me:7663: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:7609: \"$ac_try\"") >&5
+  { (eval echo "$as_me:7666: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:7612: \$? = $ac_status" >&5
+  echo "$as_me:7669: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_resolv_strcasecmp=yes
 else
@@ -7620,7 +7677,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:7623: result: $ac_cv_lib_resolv_strcasecmp" >&5
+echo "$as_me:7680: result: $ac_cv_lib_resolv_strcasecmp" >&5
 echo "${ECHO_T}$ac_cv_lib_resolv_strcasecmp" >&6
 if test $ac_cv_lib_resolv_strcasecmp = yes; then
 
@@ -7649,14 +7706,14 @@ test $cf_test_netlibs = no && echo "$cf_cv_netlibs" >&6
 
 fi
 
-echo "$as_me:7652: checking for inet_aton function" >&5
+echo "$as_me:7709: checking for inet_aton function" >&5
 echo $ECHO_N "checking for inet_aton function... $ECHO_C" >&6
 if test "${cf_cv_have_inet_aton+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 cat >conftest.$ac_ext <<_ACEOF
-#line 7659 "configure"
+#line 7716 "configure"
 #include "confdefs.h"
 #include <sys/types.h>
 #include <sys/socket.h>
@@ -7672,16 +7729,16 @@ inet_aton(0, (struct in_addr *)0)
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:7675: \"$ac_link\"") >&5
+if { (eval echo "$as_me:7732: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:7678: \$? = $ac_status" >&5
+  echo "$as_me:7735: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:7681: \"$ac_try\"") >&5
+  { (eval echo "$as_me:7738: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:7684: \$? = $ac_status" >&5
+  echo "$as_me:7741: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_have_inet_aton=yes
 else
@@ -7691,7 +7748,7 @@ cf_cv_have_inet_aton=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:7694: result: $cf_cv_have_inet_aton" >&5
+echo "$as_me:7751: result: $cf_cv_have_inet_aton" >&5
 echo "${ECHO_T}$cf_cv_have_inet_aton" >&6
 if test "$cf_cv_have_inet_aton" = yes ; then
     cat >>confdefs.h <<\EOF
@@ -7699,14 +7756,14 @@ if test "$cf_cv_have_inet_aton" = yes ; then
 EOF
 
 else
-    echo "$as_me:7702: checking for inet_addr function" >&5
+    echo "$as_me:7759: checking for inet_addr function" >&5
 echo $ECHO_N "checking for inet_addr function... $ECHO_C" >&6
 if test "${cf_cv_have_inet_addr+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
     cat >conftest.$ac_ext <<_ACEOF
-#line 7709 "configure"
+#line 7766 "configure"
 #include "confdefs.h"
 #include <sys/types.h>
 #include <sys/socket.h>
@@ -7722,16 +7779,16 @@ inet_addr(0)
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:7725: \"$ac_link\"") >&5
+if { (eval echo "$as_me:7782: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:7728: \$? = $ac_status" >&5
+  echo "$as_me:7785: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:7731: \"$ac_try\"") >&5
+  { (eval echo "$as_me:7788: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:7734: \$? = $ac_status" >&5
+  echo "$as_me:7791: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_have_inet_addr=yes
 else
@@ -7741,10 +7798,10 @@ cf_cv_have_inet_addr=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:7744: result: $cf_cv_have_inet_addr" >&5
+echo "$as_me:7801: result: $cf_cv_have_inet_addr" >&5
 echo "${ECHO_T}$cf_cv_have_inet_addr" >&6
     if test "$cf_cv_have_inet_addr" = no ; then
-	echo "$as_me:7747: checking for library with inet_addr" >&5
+	echo "$as_me:7804: checking for library with inet_addr" >&5
 echo $ECHO_N "checking for library with inet_addr... $ECHO_C" >&6
 if test "${cf_cv_lib_inet_addr+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -7755,7 +7812,7 @@ else
 	    do
 		LIBS="$cf_save_LIBS $cf_inetlib"
 		cat >conftest.$ac_ext <<_ACEOF
-#line 7758 "configure"
+#line 7815 "configure"
 #include "confdefs.h"
 #include <sys/types.h>
 #include <sys/socket.h>
@@ -7771,16 +7828,16 @@ inet_addr(0)
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:7774: \"$ac_link\"") >&5
+if { (eval echo "$as_me:7831: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:7777: \$? = $ac_status" >&5
+  echo "$as_me:7834: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:7780: \"$ac_try\"") >&5
+  { (eval echo "$as_me:7837: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:7783: \$? = $ac_status" >&5
+  echo "$as_me:7840: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_lib_inet_addr=$cf_inetlib
 else
@@ -7794,12 +7851,12 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 	    done
 
 fi
-echo "$as_me:7797: result: $cf_cv_lib_inet_addr" >&5
+echo "$as_me:7854: result: $cf_cv_lib_inet_addr" >&5
 echo "${ECHO_T}$cf_cv_lib_inet_addr" >&6
 	if test "$cf_cv_lib_inet_addr" != no ; then
 	    LIBS="$LIBS $cf_cv_lib_inet_addr"
 	else
-	    { echo "$as_me:7802: WARNING: Unable to find library for inet_addr function" >&5
+	    { echo "$as_me:7859: WARNING: Unable to find library for inet_addr function" >&5
 echo "$as_me: WARNING: Unable to find library for inet_addr function" >&2;}
 	fi
     fi
@@ -7814,7 +7871,7 @@ no) #(vi
 	;;
 yes) #(vi
 
-echo "$as_me:7817: checking for SSL_get_version in -lssl" >&5
+echo "$as_me:7874: checking for SSL_get_version in -lssl" >&5
 echo $ECHO_N "checking for SSL_get_version in -lssl... $ECHO_C" >&6
 if test "${ac_cv_lib_ssl_SSL_get_version+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -7822,7 +7879,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lssl -lcrypto $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 7825 "configure"
+#line 7882 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -7841,16 +7898,16 @@ SSL_get_version ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:7844: \"$ac_link\"") >&5
+if { (eval echo "$as_me:7901: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:7847: \$? = $ac_status" >&5
+  echo "$as_me:7904: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:7850: \"$ac_try\"") >&5
+  { (eval echo "$as_me:7907: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:7853: \$? = $ac_status" >&5
+  echo "$as_me:7910: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_ssl_SSL_get_version=yes
 else
@@ -7861,7 +7918,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:7864: result: $ac_cv_lib_ssl_SSL_get_version" >&5
+echo "$as_me:7921: result: $ac_cv_lib_ssl_SSL_get_version" >&5
 echo "${ECHO_T}$ac_cv_lib_ssl_SSL_get_version" >&6
 if test $ac_cv_lib_ssl_SSL_get_version = yes; then
   cat >>confdefs.h <<EOF
@@ -7878,7 +7935,7 @@ else
 
 			cf_ssl_library="-L$cf_ssl_root/lib $cf_ssl_library"
 		else
-			{ { echo "$as_me:7881: error: cannot find ssl library" >&5
+			{ { echo "$as_me:7938: error: cannot find ssl library" >&5
 echo "$as_me: error: cannot find ssl library" >&2;}
    { (exit 1); exit 1; }; }
 		fi
@@ -7893,13 +7950,13 @@ fi
 		elif test -d $cf_cv_use_libssl/../include ; then
 			cf_ssl_root=$cf_cv_use_libssl/..
 		else
-			{ { echo "$as_me:7896: error: cannot find ssl library under $cf_cv_use_libssl" >&5
+			{ { echo "$as_me:7953: error: cannot find ssl library under $cf_cv_use_libssl" >&5
 echo "$as_me: error: cannot find ssl library under $cf_cv_use_libssl" >&2;}
    { (exit 1); exit 1; }; }
 		fi
 		cf_ssl_library="-L$cf_ssl_root/lib $cf_ssl_library"
 	else
-		{ echo "$as_me:7902: WARNING: expected a directory: $cf_cv_use_libssl" >&5
+		{ echo "$as_me:7959: WARNING: expected a directory: $cf_cv_use_libssl" >&5
 echo "$as_me: WARNING: expected a directory: $cf_cv_use_libssl" >&2;}
 	fi
 	;;
@@ -7983,10 +8040,10 @@ fi
 fi
 
 if test "$cf_ssl_subincs" = yes ; then
-echo "$as_me:7986: checking for openssl include directory" >&5
+echo "$as_me:8043: checking for openssl include directory" >&5
 echo $ECHO_N "checking for openssl include directory... $ECHO_C" >&6
 cat >conftest.$ac_ext <<_ACEOF
-#line 7989 "configure"
+#line 8046 "configure"
 #include "confdefs.h"
 
 #include <stdio.h>
@@ -8000,16 +8057,16 @@ SSL_shutdown((SSL *)0)
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:8003: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:8060: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:8006: \$? = $ac_status" >&5
+  echo "$as_me:8063: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:8009: \"$ac_try\"") >&5
+  { (eval echo "$as_me:8066: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:8012: \$? = $ac_status" >&5
+  echo "$as_me:8069: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_openssl_incl=yes
 else
@@ -8018,7 +8075,7 @@ cat conftest.$ac_ext >&5
 cf_openssl_incl=no
 fi
 rm -f conftest.$ac_objext conftest.$ac_ext
-echo "$as_me:8021: result: $cf_openssl_incl" >&5
+echo "$as_me:8078: result: $cf_openssl_incl" >&5
 echo "${ECHO_T}$cf_openssl_incl" >&6
 test "$cf_openssl_incl" = yes && cat >>confdefs.h <<\EOF
 #define USE_OPENSSL_INCL 1
@@ -8026,10 +8083,10 @@ EOF
 
 fi
 
-echo "$as_me:8029: checking if we can link to ssl library" >&5
+echo "$as_me:8086: checking if we can link to ssl library" >&5
 echo $ECHO_N "checking if we can link to ssl library... $ECHO_C" >&6
 cat >conftest.$ac_ext <<_ACEOF
-#line 8032 "configure"
+#line 8089 "configure"
 #include "confdefs.h"
 
 #include <stdio.h>
@@ -8048,16 +8105,16 @@ SSL_shutdown((SSL *)0)
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:8051: \"$ac_link\"") >&5
+if { (eval echo "$as_me:8108: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:8054: \$? = $ac_status" >&5
+  echo "$as_me:8111: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:8057: \"$ac_try\"") >&5
+  { (eval echo "$as_me:8114: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:8060: \$? = $ac_status" >&5
+  echo "$as_me:8117: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_ssl_library=yes
 else
@@ -8066,7 +8123,7 @@ cat conftest.$ac_ext >&5
 cf_ssl_library=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
-echo "$as_me:8069: result: $cf_ssl_library" >&5
+echo "$as_me:8126: result: $cf_ssl_library" >&5
 echo "${ECHO_T}$cf_ssl_library" >&6
 if test "$cf_ssl_library" = yes ; then
 	cat >>confdefs.h <<\EOF
@@ -8078,7 +8135,7 @@ EOF
 EOF
 
 else
-	{ { echo "$as_me:8081: error: Cannot link with ssl library" >&5
+	{ { echo "$as_me:8138: error: Cannot link with ssl library" >&5
 echo "$as_me: error: Cannot link with ssl library" >&2;}
    { (exit 1); exit 1; }; }
 fi
@@ -8086,7 +8143,7 @@ fi
 elif test "x$cf_cv_use_libgnutls" != xno ; then
 
 cf_ssl_library="-lgnutls -lcrypt"
-echo "$as_me:8089: checking if we know what directory gnutls is in" >&5
+echo "$as_me:8146: checking if we know what directory gnutls is in" >&5
 echo $ECHO_N "checking if we know what directory gnutls is in... $ECHO_C" >&6
 case "$cf_cv_use_libgnutls" in #(vi
 no) #(vi
@@ -8094,7 +8151,7 @@ no) #(vi
 	;;
 yes) #(vi
 
-echo "$as_me:8097: checking for gnutls_init in -lgnutls" >&5
+echo "$as_me:8154: checking for gnutls_init in -lgnutls" >&5
 echo $ECHO_N "checking for gnutls_init in -lgnutls... $ECHO_C" >&6
 if test "${ac_cv_lib_gnutls_gnutls_init+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -8102,7 +8159,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lgnutls -lgnutls-extra -lgnutls -lcrypt $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 8105 "configure"
+#line 8162 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -8121,16 +8178,16 @@ gnutls_init ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:8124: \"$ac_link\"") >&5
+if { (eval echo "$as_me:8181: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:8127: \$? = $ac_status" >&5
+  echo "$as_me:8184: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:8130: \"$ac_try\"") >&5
+  { (eval echo "$as_me:8187: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:8133: \$? = $ac_status" >&5
+  echo "$as_me:8190: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_gnutls_gnutls_init=yes
 else
@@ -8141,7 +8198,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:8144: result: $ac_cv_lib_gnutls_gnutls_init" >&5
+echo "$as_me:8201: result: $ac_cv_lib_gnutls_gnutls_init" >&5
 echo "${ECHO_T}$ac_cv_lib_gnutls_gnutls_init" >&6
 if test $ac_cv_lib_gnutls_gnutls_init = yes; then
   cat >>confdefs.h <<EOF
@@ -8157,7 +8214,7 @@ else
 			test -n "$verbose" && echo "	assume it is in $cf_ssl_root" 1>&6
 
 		else
-			{ { echo "$as_me:8160: error: cannot find gnutls library" >&5
+			{ { echo "$as_me:8217: error: cannot find gnutls library" >&5
 echo "$as_me: error: cannot find gnutls library" >&2;}
    { (exit 1); exit 1; }; }
 		fi
@@ -8172,17 +8229,17 @@ fi
 		elif test -d $cf_cv_use_libgnutls/../include ; then
 			cf_ssl_root=$cf_cv_use_libgnutls/..
 		else
-			{ { echo "$as_me:8175: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5
+			{ { echo "$as_me:8232: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5
 echo "$as_me: error: cannot find ssl library under $cf_cv_use_libgnutls" >&2;}
    { (exit 1); exit 1; }; }
 		fi
 	else
-		{ echo "$as_me:8180: WARNING: expected a directory: $cf_cv_use_libgnutls" >&5
+		{ echo "$as_me:8237: WARNING: expected a directory: $cf_cv_use_libgnutls" >&5
 echo "$as_me: WARNING: expected a directory: $cf_cv_use_libgnutls" >&2;}
 	fi
 	;;
 esac
-echo "$as_me:8185: result: $cf_ssl_root" >&5
+echo "$as_me:8242: result: $cf_ssl_root" >&5
 echo "${ECHO_T}$cf_ssl_root" >&6
 LIBS="$cf_ssl_library $LIBS"
 
@@ -8263,7 +8320,7 @@ fi
 	fi
 fi
 
-echo "$as_me:8266: checking for SSL_connect in -lgnutls-openssl" >&5
+echo "$as_me:8323: checking for SSL_connect in -lgnutls-openssl" >&5
 echo $ECHO_N "checking for SSL_connect in -lgnutls-openssl... $ECHO_C" >&6
 if test "${ac_cv_lib_gnutls_openssl_SSL_connect+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -8271,7 +8328,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lgnutls-openssl  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 8274 "configure"
+#line 8331 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -8290,16 +8347,16 @@ SSL_connect ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:8293: \"$ac_link\"") >&5
+if { (eval echo "$as_me:8350: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:8296: \$? = $ac_status" >&5
+  echo "$as_me:8353: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:8299: \"$ac_try\"") >&5
+  { (eval echo "$as_me:8356: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:8302: \$? = $ac_status" >&5
+  echo "$as_me:8359: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_gnutls_openssl_SSL_connect=yes
 else
@@ -8310,12 +8367,12 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:8313: result: $ac_cv_lib_gnutls_openssl_SSL_connect" >&5
+echo "$as_me:8370: result: $ac_cv_lib_gnutls_openssl_SSL_connect" >&5
 echo "${ECHO_T}$ac_cv_lib_gnutls_openssl_SSL_connect" >&6
 if test $ac_cv_lib_gnutls_openssl_SSL_connect = yes; then
   LIBS="-lgnutls-openssl $LIBS"
 else
-  echo "$as_me:8318: checking for SSL_connect in -lgnutls-extra" >&5
+  echo "$as_me:8375: checking for SSL_connect in -lgnutls-extra" >&5
 echo $ECHO_N "checking for SSL_connect in -lgnutls-extra... $ECHO_C" >&6
 if test "${ac_cv_lib_gnutls_extra_SSL_connect+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -8323,7 +8380,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lgnutls-extra  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 8326 "configure"
+#line 8383 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -8342,16 +8399,16 @@ SSL_connect ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:8345: \"$ac_link\"") >&5
+if { (eval echo "$as_me:8402: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:8348: \$? = $ac_status" >&5
+  echo "$as_me:8405: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:8351: \"$ac_try\"") >&5
+  { (eval echo "$as_me:8408: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:8354: \$? = $ac_status" >&5
+  echo "$as_me:8411: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_gnutls_extra_SSL_connect=yes
 else
@@ -8362,12 +8419,12 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:8365: result: $ac_cv_lib_gnutls_extra_SSL_connect" >&5
+echo "$as_me:8422: result: $ac_cv_lib_gnutls_extra_SSL_connect" >&5
 echo "${ECHO_T}$ac_cv_lib_gnutls_extra_SSL_connect" >&6
 if test $ac_cv_lib_gnutls_extra_SSL_connect = yes; then
   LIBS="-lgnutls-extra $LIBS"
 else
-  { { echo "$as_me:8370: error: cannot find gnutls openssl functions" >&5
+  { { echo "$as_me:8427: error: cannot find gnutls openssl functions" >&5
 echo "$as_me: error: cannot find gnutls openssl functions" >&2;}
    { (exit 1); exit 1; }; }
 fi
@@ -8375,10 +8432,10 @@ fi
 fi
 
 if test "$cf_ssl_subincs" = yes ; then
-echo "$as_me:8378: checking for gnutls include directory" >&5
+echo "$as_me:8435: checking for gnutls include directory" >&5
 echo $ECHO_N "checking for gnutls include directory... $ECHO_C" >&6
 cat >conftest.$ac_ext <<_ACEOF
-#line 8381 "configure"
+#line 8438 "configure"
 #include "confdefs.h"
 
 #include <stdio.h>
@@ -8392,16 +8449,16 @@ SSL_shutdown((SSL *)0)
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:8395: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:8452: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:8398: \$? = $ac_status" >&5
+  echo "$as_me:8455: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:8401: \"$ac_try\"") >&5
+  { (eval echo "$as_me:8458: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:8404: \$? = $ac_status" >&5
+  echo "$as_me:8461: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_openssl_incl=yes
 else
@@ -8410,7 +8467,7 @@ cat conftest.$ac_ext >&5
 cf_openssl_incl=no
 fi
 rm -f conftest.$ac_objext conftest.$ac_ext
-echo "$as_me:8413: result: $cf_openssl_incl" >&5
+echo "$as_me:8470: result: $cf_openssl_incl" >&5
 echo "${ECHO_T}$cf_openssl_incl" >&6
 test "$cf_openssl_incl" = yes && cat >>confdefs.h <<\EOF
 #define USE_GNUTLS_INCL 1
@@ -8418,10 +8475,10 @@ EOF
 
 fi
 
-echo "$as_me:8421: checking if we can link to gnutls library" >&5
+echo "$as_me:8478: checking if we can link to gnutls library" >&5
 echo $ECHO_N "checking if we can link to gnutls library... $ECHO_C" >&6
 cat >conftest.$ac_ext <<_ACEOF
-#line 8424 "configure"
+#line 8481 "configure"
 #include "confdefs.h"
 
 #include <stdio.h>
@@ -8440,16 +8497,16 @@ SSL_shutdown((SSL *)0)
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:8443: \"$ac_link\"") >&5
+if { (eval echo "$as_me:8500: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:8446: \$? = $ac_status" >&5
+  echo "$as_me:8503: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:8449: \"$ac_try\"") >&5
+  { (eval echo "$as_me:8506: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:8452: \$? = $ac_status" >&5
+  echo "$as_me:8509: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_ssl_library=yes
 else
@@ -8458,7 +8515,7 @@ cat conftest.$ac_ext >&5
 cf_ssl_library=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
-echo "$as_me:8461: result: $cf_ssl_library" >&5
+echo "$as_me:8518: result: $cf_ssl_library" >&5
 echo "${ECHO_T}$cf_ssl_library" >&6
 if test "$cf_ssl_library" = yes ; then
 	cat >>confdefs.h <<\EOF
@@ -8466,15 +8523,15 @@ if test "$cf_ssl_library" = yes ; then
 EOF
 
 else
-	{ { echo "$as_me:8469: error: Cannot link with gnutls library" >&5
+	{ { echo "$as_me:8526: error: Cannot link with gnutls library" >&5
 echo "$as_me: error: Cannot link with gnutls library" >&2;}
    { (exit 1); exit 1; }; }
 fi
 
-echo "$as_me:8474: checking for X509 support" >&5
+echo "$as_me:8531: checking for X509 support" >&5
 echo $ECHO_N "checking for X509 support... $ECHO_C" >&6
 cat >conftest.$ac_ext <<_ACEOF
-#line 8477 "configure"
+#line 8534 "configure"
 #include "confdefs.h"
 
 #include <stdio.h>
@@ -8494,16 +8551,16 @@ X509_verify_cert_error_string(X509_STORE_CTX_get_error(X509_STORE_CTX *0));
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:8497: \"$ac_link\"") >&5
+if { (eval echo "$as_me:8554: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:8500: \$? = $ac_status" >&5
+  echo "$as_me:8557: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:8503: \"$ac_try\"") >&5
+  { (eval echo "$as_me:8560: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:8506: \$? = $ac_status" >&5
+  echo "$as_me:8563: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_x509_support=no
 else
@@ -8511,7 +8568,7 @@ else
 cat conftest.$ac_ext >&5
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
-echo "$as_me:8514: result: $cf_x509_support" >&5
+echo "$as_me:8571: result: $cf_x509_support" >&5
 echo "${ECHO_T}$cf_x509_support" >&6
 if test "$cf_x509_support" = yes ; then
 	cat >>confdefs.h <<\EOF
@@ -8522,7 +8579,7 @@ fi
 
 fi
 
-echo "$as_me:8525: checking for screen type" >&5
+echo "$as_me:8582: checking for screen type" >&5
 echo $ECHO_N "checking for screen type... $ECHO_C" >&6
 if test "${cf_cv_screen+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -8536,7 +8593,7 @@ case $withval in
 curses|ncurses|ncursesw|pdcurses|slang)
 	cf_cv_screen=$withval
 	;;
-*)	{ { echo "$as_me:8539: error: Unexpected value" >&5
+*)	{ { echo "$as_me:8596: error: Unexpected value" >&5
 echo "$as_me: error: Unexpected value" >&2;}
    { (exit 1); exit 1; }; }
 	;;
@@ -8545,7 +8602,7 @@ else
   cf_cv_screen=curses
 fi;
 fi
-echo "$as_me:8548: result: $cf_cv_screen" >&5
+echo "$as_me:8605: result: $cf_cv_screen" >&5
 echo "${ECHO_T}$cf_cv_screen" >&6
 
 case $cf_cv_screen in
@@ -8574,7 +8631,7 @@ case ".$withval" in #(vi
   withval=`echo $withval | sed -e s%NONE%$ac_default_prefix%`
   ;;
 *)
-  { { echo "$as_me:8577: error: expected a pathname, not \"$withval\"" >&5
+  { { echo "$as_me:8634: error: expected a pathname, not \"$withval\"" >&5
 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;}
    { (exit 1); exit 1; }; }
   ;;
@@ -8591,7 +8648,7 @@ esac
 case $cf_cv_screen in
 curses)
 
-echo "$as_me:8594: checking for extra include directories" >&5
+echo "$as_me:8651: checking for extra include directories" >&5
 echo $ECHO_N "checking for extra include directories... $ECHO_C" >&6
 if test "${cf_cv_curses_incdir+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -8611,11 +8668,11 @@ sunos3*|sunos4*)
 esac
 
 fi
-echo "$as_me:8614: result: $cf_cv_curses_incdir" >&5
+echo "$as_me:8671: result: $cf_cv_curses_incdir" >&5
 echo "${ECHO_T}$cf_cv_curses_incdir" >&6
 test "$cf_cv_curses_incdir" != no && CPPFLAGS="$cf_cv_curses_incdir $CPPFLAGS"
 
-echo "$as_me:8618: checking if we have identified curses headers" >&5
+echo "$as_me:8675: checking if we have identified curses headers" >&5
 echo $ECHO_N "checking if we have identified curses headers... $ECHO_C" >&6
 if test "${cf_cv_ncurses_header+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -8629,7 +8686,7 @@ for cf_header in \
 	ncurses/ncurses.h
 do
 cat >conftest.$ac_ext <<_ACEOF
-#line 8632 "configure"
+#line 8689 "configure"
 #include "confdefs.h"
 #include <${cf_header}>
 int
@@ -8641,16 +8698,16 @@ initscr(); tgoto("?", 0,0)
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:8644: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:8701: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:8647: \$? = $ac_status" >&5
+  echo "$as_me:8704: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:8650: \"$ac_try\"") >&5
+  { (eval echo "$as_me:8707: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:8653: \$? = $ac_status" >&5
+  echo "$as_me:8710: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_ncurses_header=$cf_header; break
 else
@@ -8661,11 +8718,11 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 done
 
 fi
-echo "$as_me:8664: result: $cf_cv_ncurses_header" >&5
+echo "$as_me:8721: result: $cf_cv_ncurses_header" >&5
 echo "${ECHO_T}$cf_cv_ncurses_header" >&6
 
 if test "$cf_cv_ncurses_header" = none ; then
-	{ { echo "$as_me:8668: error: No curses header-files found" >&5
+	{ { echo "$as_me:8725: error: No curses header-files found" >&5
 echo "$as_me: error: No curses header-files found" >&2;}
    { (exit 1); exit 1; }; }
 fi
@@ -8675,23 +8732,23 @@ fi
 for ac_header in $cf_cv_ncurses_header
 do
 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:8678: checking for $ac_header" >&5
+echo "$as_me:8735: 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 8684 "configure"
+#line 8741 "configure"
 #include "confdefs.h"
 #include <$ac_header>
 _ACEOF
-if { (eval echo "$as_me:8688: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:8745: \"$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:8694: \$? = $ac_status" >&5
+  echo "$as_me:8751: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -8710,7 +8767,7 @@ else
 fi
 rm -f conftest.err conftest.$ac_ext
 fi
-echo "$as_me:8713: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:8770: 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
@@ -8720,7 +8777,7 @@ EOF
 fi
 done
 
-echo "$as_me:8723: checking for ncurses version" >&5
+echo "$as_me:8780: checking for ncurses version" >&5
 echo $ECHO_N "checking for ncurses version... $ECHO_C" >&6
 if test "${cf_cv_ncurses_version+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -8746,10 +8803,10 @@ Autoconf "old"
 #endif
 EOF
 	cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out"
-	{ (eval echo "$as_me:8749: \"$cf_try\"") >&5
+	{ (eval echo "$as_me:8806: \"$cf_try\"") >&5
   (eval $cf_try) 2>&5
   ac_status=$?
-  echo "$as_me:8752: \$? = $ac_status" >&5
+  echo "$as_me:8809: \$? = $ac_status" >&5
   (exit $ac_status); }
 	if test -f conftest.out ; then
 		cf_out=`cat conftest.out | sed -e 's%^Autoconf %%' -e 's%^[^"]*"%%' -e 's%".*%%'`
@@ -8759,7 +8816,7 @@ EOF
 
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 8762 "configure"
+#line 8819 "configure"
 #include "confdefs.h"
 
 #include <${cf_cv_ncurses_header-curses.h}>
@@ -8784,15 +8841,15 @@ int main()
 }
 _ACEOF
 rm -f conftest$ac_exeext
-if { (eval echo "$as_me:8787: \"$ac_link\"") >&5
+if { (eval echo "$as_me:8844: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:8790: \$? = $ac_status" >&5
+  echo "$as_me:8847: \$? = $ac_status" >&5
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
-  { (eval echo "$as_me:8792: \"$ac_try\"") >&5
+  { (eval echo "$as_me:8849: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:8795: \$? = $ac_status" >&5
+  echo "$as_me:8852: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
 
 	cf_cv_ncurses_version=`cat $cf_tempfile`
@@ -8806,16 +8863,16 @@ fi
 	rm -f $cf_tempfile
 
 fi
-echo "$as_me:8809: result: $cf_cv_ncurses_version" >&5
+echo "$as_me:8866: result: $cf_cv_ncurses_version" >&5
 echo "${ECHO_T}$cf_cv_ncurses_version" >&6
 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF
 #define NCURSES 1
 EOF
 
-echo "$as_me:8815: checking if we have identified curses libraries" >&5
+echo "$as_me:8872: checking if we have identified curses libraries" >&5
 echo $ECHO_N "checking if we have identified curses libraries... $ECHO_C" >&6
 cat >conftest.$ac_ext <<_ACEOF
-#line 8818 "configure"
+#line 8875 "configure"
 #include "confdefs.h"
 #include <${cf_cv_ncurses_header-curses.h}>
 int
@@ -8827,16 +8884,16 @@ initscr(); tgoto("?", 0,0)
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:8830: \"$ac_link\"") >&5
+if { (eval echo "$as_me:8887: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:8833: \$? = $ac_status" >&5
+  echo "$as_me:8890: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:8836: \"$ac_try\"") >&5
+  { (eval echo "$as_me:8893: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:8839: \$? = $ac_status" >&5
+  echo "$as_me:8896: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_result=yes
 else
@@ -8845,13 +8902,13 @@ cat conftest.$ac_ext >&5
 cf_result=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
-echo "$as_me:8848: result: $cf_result" >&5
+echo "$as_me:8905: result: $cf_result" >&5
 echo "${ECHO_T}$cf_result" >&6
 
 if test "$cf_result" = no ; then
 case $host_os in #(vi
 freebsd*) #(vi
-	echo "$as_me:8854: checking for tgoto in -lmytinfo" >&5
+	echo "$as_me:8911: checking for tgoto in -lmytinfo" >&5
 echo $ECHO_N "checking for tgoto in -lmytinfo... $ECHO_C" >&6
 if test "${ac_cv_lib_mytinfo_tgoto+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -8859,7 +8916,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lmytinfo  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 8862 "configure"
+#line 8919 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -8878,16 +8935,16 @@ tgoto ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:8881: \"$ac_link\"") >&5
+if { (eval echo "$as_me:8938: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:8884: \$? = $ac_status" >&5
+  echo "$as_me:8941: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:8887: \"$ac_try\"") >&5
+  { (eval echo "$as_me:8944: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:8890: \$? = $ac_status" >&5
+  echo "$as_me:8947: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_mytinfo_tgoto=yes
 else
@@ -8898,7 +8955,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:8901: result: $ac_cv_lib_mytinfo_tgoto" >&5
+echo "$as_me:8958: result: $ac_cv_lib_mytinfo_tgoto" >&5
 echo "${ECHO_T}$ac_cv_lib_mytinfo_tgoto" >&6
 if test $ac_cv_lib_mytinfo_tgoto = yes; then
   LIBS="-lmytinfo $LIBS"
@@ -8906,7 +8963,7 @@ fi
 
 	;;
 hpux10.*|hpux11.*) #(vi
-	echo "$as_me:8909: checking for initscr in -lcur_colr" >&5
+	echo "$as_me:8966: checking for initscr in -lcur_colr" >&5
 echo $ECHO_N "checking for initscr in -lcur_colr... $ECHO_C" >&6
 if test "${ac_cv_lib_cur_colr_initscr+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -8914,7 +8971,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lcur_colr  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 8917 "configure"
+#line 8974 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -8933,16 +8990,16 @@ initscr ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:8936: \"$ac_link\"") >&5
+if { (eval echo "$as_me:8993: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:8939: \$? = $ac_status" >&5
+  echo "$as_me:8996: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:8942: \"$ac_try\"") >&5
+  { (eval echo "$as_me:8999: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:8945: \$? = $ac_status" >&5
+  echo "$as_me:9002: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_cur_colr_initscr=yes
 else
@@ -8953,7 +9010,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:8956: result: $ac_cv_lib_cur_colr_initscr" >&5
+echo "$as_me:9013: result: $ac_cv_lib_cur_colr_initscr" >&5
 echo "${ECHO_T}$ac_cv_lib_cur_colr_initscr" >&6
 if test $ac_cv_lib_cur_colr_initscr = yes; then
 
@@ -8962,7 +9019,7 @@ if test $ac_cv_lib_cur_colr_initscr = yes; then
 
 else
 
-	echo "$as_me:8965: checking for initscr in -lHcurses" >&5
+	echo "$as_me:9022: checking for initscr in -lHcurses" >&5
 echo $ECHO_N "checking for initscr in -lHcurses... $ECHO_C" >&6
 if test "${ac_cv_lib_Hcurses_initscr+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -8970,7 +9027,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lHcurses  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 8973 "configure"
+#line 9030 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -8989,16 +9046,16 @@ initscr ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:8992: \"$ac_link\"") >&5
+if { (eval echo "$as_me:9049: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:8995: \$? = $ac_status" >&5
+  echo "$as_me:9052: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:8998: \"$ac_try\"") >&5
+  { (eval echo "$as_me:9055: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:9001: \$? = $ac_status" >&5
+  echo "$as_me:9058: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_Hcurses_initscr=yes
 else
@@ -9009,7 +9066,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:9012: result: $ac_cv_lib_Hcurses_initscr" >&5
+echo "$as_me:9069: result: $ac_cv_lib_Hcurses_initscr" >&5
 echo "${ECHO_T}$ac_cv_lib_Hcurses_initscr" >&6
 if test $ac_cv_lib_Hcurses_initscr = yes; then
 
@@ -9047,13 +9104,13 @@ if test ".$ac_cv_func_initscr" != .yes ; then
 
 	# Check for library containing tgoto.  Do this before curses library
 	# because it may be needed to link the test-case for initscr.
-	echo "$as_me:9050: checking for tgoto" >&5
+	echo "$as_me:9107: checking for tgoto" >&5
 echo $ECHO_N "checking for tgoto... $ECHO_C" >&6
 if test "${ac_cv_func_tgoto+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 9056 "configure"
+#line 9113 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char tgoto (); below.  */
@@ -9084,16 +9141,16 @@ f = tgoto;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:9087: \"$ac_link\"") >&5
+if { (eval echo "$as_me:9144: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:9090: \$? = $ac_status" >&5
+  echo "$as_me:9147: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:9093: \"$ac_try\"") >&5
+  { (eval echo "$as_me:9150: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:9096: \$? = $ac_status" >&5
+  echo "$as_me:9153: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_func_tgoto=yes
 else
@@ -9103,7 +9160,7 @@ ac_cv_func_tgoto=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:9106: result: $ac_cv_func_tgoto" >&5
+echo "$as_me:9163: result: $ac_cv_func_tgoto" >&5
 echo "${ECHO_T}$ac_cv_func_tgoto" >&6
 if test $ac_cv_func_tgoto = yes; then
   cf_term_lib=predefined
@@ -9112,7 +9169,7 @@ else
 		for cf_term_lib in $cf_check_list termcap termlib unknown
 		do
 			as_ac_Lib=`echo "ac_cv_lib_$cf_term_lib''_tgoto" | $as_tr_sh`
-echo "$as_me:9115: checking for tgoto in -l$cf_term_lib" >&5
+echo "$as_me:9172: checking for tgoto in -l$cf_term_lib" >&5
 echo $ECHO_N "checking for tgoto in -l$cf_term_lib... $ECHO_C" >&6
 if eval "test \"\${$as_ac_Lib+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -9120,7 +9177,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-l$cf_term_lib  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 9123 "configure"
+#line 9180 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -9139,16 +9196,16 @@ tgoto ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:9142: \"$ac_link\"") >&5
+if { (eval echo "$as_me:9199: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:9145: \$? = $ac_status" >&5
+  echo "$as_me:9202: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:9148: \"$ac_try\"") >&5
+  { (eval echo "$as_me:9205: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:9151: \$? = $ac_status" >&5
+  echo "$as_me:9208: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   eval "$as_ac_Lib=yes"
 else
@@ -9159,7 +9216,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:9162: result: `eval echo '${'$as_ac_Lib'}'`" >&5
+echo "$as_me:9219: result: `eval echo '${'$as_ac_Lib'}'`" >&5
 echo "${ECHO_T}`eval echo '${'$as_ac_Lib'}'`" >&6
 if test `eval echo '${'$as_ac_Lib'}'` = yes; then
   break
@@ -9174,7 +9231,7 @@ fi
 	for cf_curs_lib in $cf_check_list xcurses jcurses unknown
 	do
 		as_ac_Lib=`echo "ac_cv_lib_$cf_curs_lib''_initscr" | $as_tr_sh`
-echo "$as_me:9177: checking for initscr in -l$cf_curs_lib" >&5
+echo "$as_me:9234: checking for initscr in -l$cf_curs_lib" >&5
 echo $ECHO_N "checking for initscr in -l$cf_curs_lib... $ECHO_C" >&6
 if eval "test \"\${$as_ac_Lib+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -9182,7 +9239,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-l$cf_curs_lib  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 9185 "configure"
+#line 9242 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -9201,16 +9258,16 @@ initscr ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:9204: \"$ac_link\"") >&5
+if { (eval echo "$as_me:9261: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:9207: \$? = $ac_status" >&5
+  echo "$as_me:9264: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:9210: \"$ac_try\"") >&5
+  { (eval echo "$as_me:9267: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:9213: \$? = $ac_status" >&5
+  echo "$as_me:9270: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   eval "$as_ac_Lib=yes"
 else
@@ -9221,23 +9278,23 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:9224: result: `eval echo '${'$as_ac_Lib'}'`" >&5
+echo "$as_me:9281: result: `eval echo '${'$as_ac_Lib'}'`" >&5
 echo "${ECHO_T}`eval echo '${'$as_ac_Lib'}'`" >&6
 if test `eval echo '${'$as_ac_Lib'}'` = yes; then
   break
 fi
 
 	done
-	test $cf_curs_lib = unknown && { { echo "$as_me:9231: error: no curses library found" >&5
+	test $cf_curs_lib = unknown && { { echo "$as_me:9288: error: no curses library found" >&5
 echo "$as_me: error: no curses library found" >&2;}
    { (exit 1); exit 1; }; }
 
 	LIBS="-l$cf_curs_lib $cf_save_LIBS"
 	if test "$cf_term_lib" = unknown ; then
-		echo "$as_me:9237: checking if we can link with $cf_curs_lib library" >&5
+		echo "$as_me:9294: checking if we can link with $cf_curs_lib library" >&5
 echo $ECHO_N "checking if we can link with $cf_curs_lib library... $ECHO_C" >&6
 		cat >conftest.$ac_ext <<_ACEOF
-#line 9240 "configure"
+#line 9297 "configure"
 #include "confdefs.h"
 #include <${cf_cv_ncurses_header-curses.h}>
 int
@@ -9249,16 +9306,16 @@ initscr()
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:9252: \"$ac_link\"") >&5
+if { (eval echo "$as_me:9309: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:9255: \$? = $ac_status" >&5
+  echo "$as_me:9312: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:9258: \"$ac_try\"") >&5
+  { (eval echo "$as_me:9315: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:9261: \$? = $ac_status" >&5
+  echo "$as_me:9318: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_result=yes
 else
@@ -9267,18 +9324,18 @@ cat conftest.$ac_ext >&5
 cf_result=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
-		echo "$as_me:9270: result: $cf_result" >&5
+		echo "$as_me:9327: result: $cf_result" >&5
 echo "${ECHO_T}$cf_result" >&6
-		test $cf_result = no && { { echo "$as_me:9272: error: Cannot link curses library" >&5
+		test $cf_result = no && { { echo "$as_me:9329: error: Cannot link curses library" >&5
 echo "$as_me: error: Cannot link curses library" >&2;}
    { (exit 1); exit 1; }; }
 	elif test "$cf_curs_lib" = "$cf_term_lib" ; then
 		:
 	elif test "$cf_term_lib" != predefined ; then
-		echo "$as_me:9278: checking if we need both $cf_curs_lib and $cf_term_lib libraries" >&5
+		echo "$as_me:9335: checking if we need both $cf_curs_lib and $cf_term_lib libraries" >&5
 echo $ECHO_N "checking if we need both $cf_curs_lib and $cf_term_lib libraries... $ECHO_C" >&6
 		cat >conftest.$ac_ext <<_ACEOF
-#line 9281 "configure"
+#line 9338 "configure"
 #include "confdefs.h"
 #include <${cf_cv_ncurses_header-curses.h}>
 int
@@ -9290,16 +9347,16 @@ initscr(); tgoto((char *)0, 0, 0);
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:9293: \"$ac_link\"") >&5
+if { (eval echo "$as_me:9350: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:9296: \$? = $ac_status" >&5
+  echo "$as_me:9353: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:9299: \"$ac_try\"") >&5
+  { (eval echo "$as_me:9356: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:9302: \$? = $ac_status" >&5
+  echo "$as_me:9359: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_result=no
 else
@@ -9308,7 +9365,7 @@ cat conftest.$ac_ext >&5
 
 			LIBS="-l$cf_curs_lib -l$cf_term_lib $cf_save_LIBS"
 			cat >conftest.$ac_ext <<_ACEOF
-#line 9311 "configure"
+#line 9368 "configure"
 #include "confdefs.h"
 #include <${cf_cv_ncurses_header-curses.h}>
 int
@@ -9320,16 +9377,16 @@ initscr()
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:9323: \"$ac_link\"") >&5
+if { (eval echo "$as_me:9380: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:9326: \$? = $ac_status" >&5
+  echo "$as_me:9383: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:9329: \"$ac_try\"") >&5
+  { (eval echo "$as_me:9386: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:9332: \$? = $ac_status" >&5
+  echo "$as_me:9389: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_result=yes
 else
@@ -9341,13 +9398,13 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
-		echo "$as_me:9344: result: $cf_result" >&5
+		echo "$as_me:9401: result: $cf_result" >&5
 echo "${ECHO_T}$cf_result" >&6
 	fi
 fi
 fi
 
-echo "$as_me:9350: checking for curses performance tradeoff" >&5
+echo "$as_me:9407: checking for curses performance tradeoff" >&5
 echo $ECHO_N "checking for curses performance tradeoff... $ECHO_C" >&6
 if test "${cf_cv_curs_performance+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -9355,7 +9412,7 @@ else
 
     cf_cv_curs_performance=no
     cat >conftest.$ac_ext <<_ACEOF
-#line 9358 "configure"
+#line 9415 "configure"
 #include "confdefs.h"
 
 #include <${cf_cv_ncurses_header-curses.h}>
@@ -9374,20 +9431,20 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9377: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:9434: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:9380: \$? = $ac_status" >&5
+  echo "$as_me:9437: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:9383: \"$ac_try\"") >&5
+  { (eval echo "$as_me:9440: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:9386: \$? = $ac_status" >&5
+  echo "$as_me:9443: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
 
 	cat >conftest.$ac_ext <<_ACEOF
-#line 9390 "configure"
+#line 9447 "configure"
 #include "confdefs.h"
 
 #define CURS_PERFORMANCE
@@ -9407,16 +9464,16 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9410: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:9467: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:9413: \$? = $ac_status" >&5
+  echo "$as_me:9470: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:9416: \"$ac_try\"") >&5
+  { (eval echo "$as_me:9473: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:9419: \$? = $ac_status" >&5
+  echo "$as_me:9476: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_curs_performance=yes
 else
@@ -9431,20 +9488,20 @@ fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 fi
 
-echo "$as_me:9434: result: $cf_cv_curs_performance" >&5
+echo "$as_me:9491: result: $cf_cv_curs_performance" >&5
 echo "${ECHO_T}$cf_cv_curs_performance" >&6
 test $cf_cv_curs_performance = yes && cat >>confdefs.h <<\EOF
 #define CURS_PERFORMANCE 1
 EOF
 
-echo "$as_me:9440: checking for curses touchline function" >&5
+echo "$as_me:9497: checking for curses touchline function" >&5
 echo $ECHO_N "checking for curses touchline function... $ECHO_C" >&6
 if test "${cf_cv_curs_touchline+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 	cat >conftest.$ac_ext <<_ACEOF
-#line 9447 "configure"
+#line 9504 "configure"
 #include "confdefs.h"
 
 #include <${cf_cv_ncurses_header-curses.h}>
@@ -9457,23 +9514,23 @@ touchline(stdscr, 1,2,3);
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:9460: \"$ac_link\"") >&5
+if { (eval echo "$as_me:9517: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:9463: \$? = $ac_status" >&5
+  echo "$as_me:9520: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:9466: \"$ac_try\"") >&5
+  { (eval echo "$as_me:9523: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:9469: \$? = $ac_status" >&5
+  echo "$as_me:9526: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_curs_touchline=bsd
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
 cat >conftest.$ac_ext <<_ACEOF
-#line 9476 "configure"
+#line 9533 "configure"
 #include "confdefs.h"
 
 #include <${cf_cv_ncurses_header-curses.h}>
@@ -9486,16 +9543,16 @@ touchline(stdscr, 1,2);
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:9489: \"$ac_link\"") >&5
+if { (eval echo "$as_me:9546: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:9492: \$? = $ac_status" >&5
+  echo "$as_me:9549: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:9495: \"$ac_try\"") >&5
+  { (eval echo "$as_me:9552: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:9498: \$? = $ac_status" >&5
+  echo "$as_me:9555: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_curs_touchline=sysv
 else
@@ -9507,7 +9564,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:9510: result: $cf_cv_curs_touchline" >&5
+echo "$as_me:9567: result: $cf_cv_curs_touchline" >&5
 echo "${ECHO_T}$cf_cv_curs_touchline" >&6
 case "$cf_cv_curs_touchline" in #(vi
 bsd) #(vi
@@ -9533,7 +9590,7 @@ test -n "$cf_cv_curses_dir" && \
 test "$cf_cv_curses_dir" != "no" && \
 CPPFLAGS="-I$cf_cv_curses_dir/include -I$cf_cv_curses_dir/include/$cf_ncuhdr_root $CPPFLAGS"
 
-echo "$as_me:9536: checking for $cf_ncuhdr_root header in include-path" >&5
+echo "$as_me:9593: checking for $cf_ncuhdr_root header in include-path" >&5
 echo $ECHO_N "checking for $cf_ncuhdr_root header in include-path... $ECHO_C" >&6
 if test "${cf_cv_ncurses_h+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -9545,7 +9602,7 @@ else
 	do
 
 	cat >conftest.$ac_ext <<_ACEOF
-#line 9548 "configure"
+#line 9605 "configure"
 #include "confdefs.h"
 
 #include <$cf_header>
@@ -9569,16 +9626,16 @@ printf("old\n");
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9572: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:9629: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:9575: \$? = $ac_status" >&5
+  echo "$as_me:9632: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:9578: \"$ac_try\"") >&5
+  { (eval echo "$as_me:9635: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:9581: \$? = $ac_status" >&5
+  echo "$as_me:9638: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_ncurses_h=$cf_header
 
@@ -9593,13 +9650,13 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 	done
 
 fi
-echo "$as_me:9596: result: $cf_cv_ncurses_h" >&5
+echo "$as_me:9653: result: $cf_cv_ncurses_h" >&5
 echo "${ECHO_T}$cf_cv_ncurses_h" >&6
 
 if test "$cf_cv_ncurses_h" != no ; then
 	cf_cv_ncurses_header=$cf_cv_ncurses_h
 else
-echo "$as_me:9602: checking for $cf_ncuhdr_root include-path" >&5
+echo "$as_me:9659: checking for $cf_ncuhdr_root include-path" >&5
 echo $ECHO_N "checking for $cf_ncuhdr_root include-path... $ECHO_C" >&6
 if test "${cf_cv_ncurses_h2+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -9694,7 +9751,7 @@ do
 				cf_save_CPPFLAGS="$CPPFLAGS"
 				CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
 				cat >conftest.$ac_ext <<_ACEOF
-#line 9697 "configure"
+#line 9754 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 int
@@ -9706,16 +9763,16 @@ printf("Hello")
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9709: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:9766: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:9712: \$? = $ac_status" >&5
+  echo "$as_me:9769: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:9715: \"$ac_try\"") >&5
+  { (eval echo "$as_me:9772: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:9718: \$? = $ac_status" >&5
+  echo "$as_me:9775: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   :
 else
@@ -9742,7 +9799,7 @@ done
 		do
 
 	cat >conftest.$ac_ext <<_ACEOF
-#line 9745 "configure"
+#line 9802 "configure"
 #include "confdefs.h"
 
 #include <$cf_header>
@@ -9766,16 +9823,16 @@ printf("old\n");
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9769: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:9826: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:9772: \$? = $ac_status" >&5
+  echo "$as_me:9829: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:9775: \"$ac_try\"") >&5
+  { (eval echo "$as_me:9832: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:9778: \$? = $ac_status" >&5
+  echo "$as_me:9835: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_ncurses_h2=$cf_header
 
@@ -9796,12 +9853,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 		CPPFLAGS="$cf_save2_CPPFLAGS"
 		test "$cf_cv_ncurses_h2" != no && break
 	done
-	test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:9799: error: not found" >&5
+	test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:9856: error: not found" >&5
 echo "$as_me: error: not found" >&2;}
    { (exit 1); exit 1; }; }
 
 fi
-echo "$as_me:9804: result: $cf_cv_ncurses_h2" >&5
+echo "$as_me:9861: result: $cf_cv_ncurses_h2" >&5
 echo "${ECHO_T}$cf_cv_ncurses_h2" >&6
 
 	cf_1st_incdir=`echo $cf_cv_ncurses_h2 | sed -e 's%/[^/]*$%%'`
@@ -9823,7 +9880,7 @@ do
 				cf_save_CPPFLAGS="$CPPFLAGS"
 				CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
 				cat >conftest.$ac_ext <<_ACEOF
-#line 9826 "configure"
+#line 9883 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 int
@@ -9835,16 +9892,16 @@ printf("Hello")
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:9838: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:9895: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:9841: \$? = $ac_status" >&5
+  echo "$as_me:9898: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:9844: \"$ac_try\"") >&5
+  { (eval echo "$as_me:9901: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:9847: \$? = $ac_status" >&5
+  echo "$as_me:9904: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   :
 else
@@ -9895,7 +9952,7 @@ EOF
 	;;
 esac
 
-echo "$as_me:9898: checking for ncurses version" >&5
+echo "$as_me:9955: checking for ncurses version" >&5
 echo $ECHO_N "checking for ncurses version... $ECHO_C" >&6
 if test "${cf_cv_ncurses_version+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -9921,10 +9978,10 @@ Autoconf "old"
 #endif
 EOF
 	cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out"
-	{ (eval echo "$as_me:9924: \"$cf_try\"") >&5
+	{ (eval echo "$as_me:9981: \"$cf_try\"") >&5
   (eval $cf_try) 2>&5
   ac_status=$?
-  echo "$as_me:9927: \$? = $ac_status" >&5
+  echo "$as_me:9984: \$? = $ac_status" >&5
   (exit $ac_status); }
 	if test -f conftest.out ; then
 		cf_out=`cat conftest.out | sed -e 's%^Autoconf %%' -e 's%^[^"]*"%%' -e 's%".*%%'`
@@ -9934,7 +9991,7 @@ EOF
 
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 9937 "configure"
+#line 9994 "configure"
 #include "confdefs.h"
 
 #include <${cf_cv_ncurses_header-curses.h}>
@@ -9959,15 +10016,15 @@ int main()
 }
 _ACEOF
 rm -f conftest$ac_exeext
-if { (eval echo "$as_me:9962: \"$ac_link\"") >&5
+if { (eval echo "$as_me:10019: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:9965: \$? = $ac_status" >&5
+  echo "$as_me:10022: \$? = $ac_status" >&5
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
-  { (eval echo "$as_me:9967: \"$ac_try\"") >&5
+  { (eval echo "$as_me:10024: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:9970: \$? = $ac_status" >&5
+  echo "$as_me:10027: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
 
 	cf_cv_ncurses_version=`cat $cf_tempfile`
@@ -9981,7 +10038,7 @@ fi
 	rm -f $cf_tempfile
 
 fi
-echo "$as_me:9984: result: $cf_cv_ncurses_version" >&5
+echo "$as_me:10041: result: $cf_cv_ncurses_version" >&5
 echo "${ECHO_T}$cf_cv_ncurses_version" >&6
 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF
 #define NCURSES 1
@@ -9993,7 +10050,7 @@ cf_nculib_root=ncurses
 	# to link gpm.
 cf_ncurses_LIBS=""
 cf_ncurses_SAVE="$LIBS"
-echo "$as_me:9996: checking for Gpm_Open in -lgpm" >&5
+echo "$as_me:10053: checking for Gpm_Open in -lgpm" >&5
 echo $ECHO_N "checking for Gpm_Open in -lgpm... $ECHO_C" >&6
 if test "${ac_cv_lib_gpm_Gpm_Open+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -10001,7 +10058,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lgpm  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 10004 "configure"
+#line 10061 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -10020,16 +10077,16 @@ Gpm_Open ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:10023: \"$ac_link\"") >&5
+if { (eval echo "$as_me:10080: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:10026: \$? = $ac_status" >&5
+  echo "$as_me:10083: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:10029: \"$ac_try\"") >&5
+  { (eval echo "$as_me:10086: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:10032: \$? = $ac_status" >&5
+  echo "$as_me:10089: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_gpm_Gpm_Open=yes
 else
@@ -10040,10 +10097,10 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:10043: result: $ac_cv_lib_gpm_Gpm_Open" >&5
+echo "$as_me:10100: result: $ac_cv_lib_gpm_Gpm_Open" >&5
 echo "${ECHO_T}$ac_cv_lib_gpm_Gpm_Open" >&6
 if test $ac_cv_lib_gpm_Gpm_Open = yes; then
-  echo "$as_me:10046: checking for initscr in -lgpm" >&5
+  echo "$as_me:10103: checking for initscr in -lgpm" >&5
 echo $ECHO_N "checking for initscr in -lgpm... $ECHO_C" >&6
 if test "${ac_cv_lib_gpm_initscr+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -10051,7 +10108,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lgpm  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 10054 "configure"
+#line 10111 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -10070,16 +10127,16 @@ initscr ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:10073: \"$ac_link\"") >&5
+if { (eval echo "$as_me:10130: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:10076: \$? = $ac_status" >&5
+  echo "$as_me:10133: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:10079: \"$ac_try\"") >&5
+  { (eval echo "$as_me:10136: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:10082: \$? = $ac_status" >&5
+  echo "$as_me:10139: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_gpm_initscr=yes
 else
@@ -10090,7 +10147,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:10093: result: $ac_cv_lib_gpm_initscr" >&5
+echo "$as_me:10150: result: $ac_cv_lib_gpm_initscr" >&5
 echo "${ECHO_T}$ac_cv_lib_gpm_initscr" >&6
 if test $ac_cv_lib_gpm_initscr = yes; then
   LIBS="$cf_ncurses_SAVE"
@@ -10105,7 +10162,7 @@ freebsd*)
 	# This is only necessary if you are linking against an obsolete
 	# version of ncurses (but it should do no harm, since it's static).
 	if test "$cf_nculib_root" = ncurses ; then
-		echo "$as_me:10108: checking for tgoto in -lmytinfo" >&5
+		echo "$as_me:10165: checking for tgoto in -lmytinfo" >&5
 echo $ECHO_N "checking for tgoto in -lmytinfo... $ECHO_C" >&6
 if test "${ac_cv_lib_mytinfo_tgoto+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -10113,7 +10170,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lmytinfo  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 10116 "configure"
+#line 10173 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -10132,16 +10189,16 @@ tgoto ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:10135: \"$ac_link\"") >&5
+if { (eval echo "$as_me:10192: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:10138: \$? = $ac_status" >&5
+  echo "$as_me:10195: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:10141: \"$ac_try\"") >&5
+  { (eval echo "$as_me:10198: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:10144: \$? = $ac_status" >&5
+  echo "$as_me:10201: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_mytinfo_tgoto=yes
 else
@@ -10152,7 +10209,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:10155: result: $ac_cv_lib_mytinfo_tgoto" >&5
+echo "$as_me:10212: result: $ac_cv_lib_mytinfo_tgoto" >&5
 echo "${ECHO_T}$ac_cv_lib_mytinfo_tgoto" >&6
 if test $ac_cv_lib_mytinfo_tgoto = yes; then
   cf_ncurses_LIBS="-lmytinfo $cf_ncurses_LIBS"
@@ -10171,13 +10228,13 @@ else
 
 	eval 'cf_cv_have_lib_'$cf_nculib_root'=no'
 	cf_libdir=""
-	echo "$as_me:10174: checking for initscr" >&5
+	echo "$as_me:10231: checking for initscr" >&5
 echo $ECHO_N "checking for initscr... $ECHO_C" >&6
 if test "${ac_cv_func_initscr+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 10180 "configure"
+#line 10237 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char initscr (); below.  */
@@ -10208,16 +10265,16 @@ f = initscr;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:10211: \"$ac_link\"") >&5
+if { (eval echo "$as_me:10268: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:10214: \$? = $ac_status" >&5
+  echo "$as_me:10271: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:10217: \"$ac_try\"") >&5
+  { (eval echo "$as_me:10274: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:10220: \$? = $ac_status" >&5
+  echo "$as_me:10277: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_func_initscr=yes
 else
@@ -10227,18 +10284,18 @@ ac_cv_func_initscr=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:10230: result: $ac_cv_func_initscr" >&5
+echo "$as_me:10287: result: $ac_cv_func_initscr" >&5
 echo "${ECHO_T}$ac_cv_func_initscr" >&6
 if test $ac_cv_func_initscr = yes; then
   eval 'cf_cv_have_lib_'$cf_nculib_root'=yes'
 else
 
 		cf_save_LIBS="$LIBS"
-		echo "$as_me:10237: checking for initscr in -l$cf_nculib_root" >&5
+		echo "$as_me:10294: checking for initscr in -l$cf_nculib_root" >&5
 echo $ECHO_N "checking for initscr in -l$cf_nculib_root... $ECHO_C" >&6
 		LIBS="-l$cf_nculib_root $LIBS"
 		cat >conftest.$ac_ext <<_ACEOF
-#line 10241 "configure"
+#line 10298 "configure"
 #include "confdefs.h"
 #include <${cf_cv_ncurses_header-curses.h}>
 int
@@ -10250,25 +10307,25 @@ initscr()
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:10253: \"$ac_link\"") >&5
+if { (eval echo "$as_me:10310: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:10256: \$? = $ac_status" >&5
+  echo "$as_me:10313: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:10259: \"$ac_try\"") >&5
+  { (eval echo "$as_me:10316: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:10262: \$? = $ac_status" >&5
+  echo "$as_me:10319: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
-  echo "$as_me:10264: result: yes" >&5
+  echo "$as_me:10321: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 			 eval 'cf_cv_have_lib_'$cf_nculib_root'=yes'
 
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
-echo "$as_me:10271: result: no" >&5
+echo "$as_me:10328: result: no" >&5
 echo "${ECHO_T}no" >&6
 			cf_search=""
 
@@ -10328,11 +10385,11 @@ test -d /usr && {
 
 			for cf_libdir in $cf_search
 			do
-				echo "$as_me:10331: checking for -l$cf_nculib_root in $cf_libdir" >&5
+				echo "$as_me:10388: checking for -l$cf_nculib_root in $cf_libdir" >&5
 echo $ECHO_N "checking for -l$cf_nculib_root in $cf_libdir... $ECHO_C" >&6
 				LIBS="-L$cf_libdir -l$cf_nculib_root $cf_save_LIBS"
 				cat >conftest.$ac_ext <<_ACEOF
-#line 10335 "configure"
+#line 10392 "configure"
 #include "confdefs.h"
 #include <${cf_cv_ncurses_header-curses.h}>
 int
@@ -10344,25 +10401,25 @@ initscr()
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:10347: \"$ac_link\"") >&5
+if { (eval echo "$as_me:10404: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:10350: \$? = $ac_status" >&5
+  echo "$as_me:10407: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:10353: \"$ac_try\"") >&5
+  { (eval echo "$as_me:10410: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:10356: \$? = $ac_status" >&5
+  echo "$as_me:10413: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
-  echo "$as_me:10358: result: yes" >&5
+  echo "$as_me:10415: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 			 		 eval 'cf_cv_have_lib_'$cf_nculib_root'=yes'
 					 break
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
-echo "$as_me:10365: result: no" >&5
+echo "$as_me:10422: result: no" >&5
 echo "${ECHO_T}no" >&6
 					 LIBS="$cf_save_LIBS"
 fi
@@ -10377,7 +10434,7 @@ fi
 eval 'cf_found_library=$cf_cv_have_lib_'$cf_nculib_root
 
 if test $cf_found_library = no ; then
-	{ { echo "$as_me:10380: error: Cannot link $cf_nculib_root library" >&5
+	{ { echo "$as_me:10437: error: Cannot link $cf_nculib_root library" >&5
 echo "$as_me: error: Cannot link $cf_nculib_root library" >&2;}
    { (exit 1); exit 1; }; }
 fi
@@ -10385,7 +10442,7 @@ fi
 fi
 
 if test -n "$cf_ncurses_LIBS" ; then
-	echo "$as_me:10388: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5
+	echo "$as_me:10445: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5
 echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS... $ECHO_C" >&6
 	cf_ncurses_SAVE="$LIBS"
 	for p in $cf_ncurses_LIBS ; do
@@ -10395,7 +10452,7 @@ echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS..
 		fi
 	done
 	cat >conftest.$ac_ext <<_ACEOF
-#line 10398 "configure"
+#line 10455 "configure"
 #include "confdefs.h"
 #include <${cf_cv_ncurses_header-curses.h}>
 int
@@ -10407,23 +10464,23 @@ initscr(); mousemask(0,0); tgoto((char *)0, 0, 0);
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:10410: \"$ac_link\"") >&5
+if { (eval echo "$as_me:10467: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:10413: \$? = $ac_status" >&5
+  echo "$as_me:10470: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:10416: \"$ac_try\"") >&5
+  { (eval echo "$as_me:10473: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:10419: \$? = $ac_status" >&5
+  echo "$as_me:10476: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
-  echo "$as_me:10421: result: yes" >&5
+  echo "$as_me:10478: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
-echo "$as_me:10426: result: no" >&5
+echo "$as_me:10483: result: no" >&5
 echo "${ECHO_T}no" >&6
 		 LIBS="$cf_ncurses_SAVE"
 fi
@@ -10436,7 +10493,7 @@ cat >>confdefs.h <<EOF
 #define $cf_nculib_ROOT 1
 EOF
 
-echo "$as_me:10439: checking for ncurses version" >&5
+echo "$as_me:10496: checking for ncurses version" >&5
 echo $ECHO_N "checking for ncurses version... $ECHO_C" >&6
 if test "${cf_cv_ncurses_version+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -10462,10 +10519,10 @@ Autoconf "old"
 #endif
 EOF
 	cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out"
-	{ (eval echo "$as_me:10465: \"$cf_try\"") >&5
+	{ (eval echo "$as_me:10522: \"$cf_try\"") >&5
   (eval $cf_try) 2>&5
   ac_status=$?
-  echo "$as_me:10468: \$? = $ac_status" >&5
+  echo "$as_me:10525: \$? = $ac_status" >&5
   (exit $ac_status); }
 	if test -f conftest.out ; then
 		cf_out=`cat conftest.out | sed -e 's%^Autoconf %%' -e 's%^[^"]*"%%' -e 's%".*%%'`
@@ -10475,7 +10532,7 @@ EOF
 
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 10478 "configure"
+#line 10535 "configure"
 #include "confdefs.h"
 
 #include <${cf_cv_ncurses_header-curses.h}>
@@ -10500,15 +10557,15 @@ int main()
 }
 _ACEOF
 rm -f conftest$ac_exeext
-if { (eval echo "$as_me:10503: \"$ac_link\"") >&5
+if { (eval echo "$as_me:10560: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:10506: \$? = $ac_status" >&5
+  echo "$as_me:10563: \$? = $ac_status" >&5
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
-  { (eval echo "$as_me:10508: \"$ac_try\"") >&5
+  { (eval echo "$as_me:10565: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:10511: \$? = $ac_status" >&5
+  echo "$as_me:10568: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
 
 	cf_cv_ncurses_version=`cat $cf_tempfile`
@@ -10522,7 +10579,7 @@ fi
 	rm -f $cf_tempfile
 
 fi
-echo "$as_me:10525: result: $cf_cv_ncurses_version" >&5
+echo "$as_me:10582: result: $cf_cv_ncurses_version" >&5
 echo "${ECHO_T}$cf_cv_ncurses_version" >&6
 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF
 #define NCURSES 1
@@ -10531,7 +10588,7 @@ EOF
 	;;
 ncursesw)
 
-echo "$as_me:10534: checking for multibyte character support" >&5
+echo "$as_me:10591: checking for multibyte character support" >&5
 echo $ECHO_N "checking for multibyte character support... $ECHO_C" >&6
 if test "${cf_cv_utf8_lib+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -10539,7 +10596,7 @@ else
 
 	cf_save_LIBS="$LIBS"
 	cat >conftest.$ac_ext <<_ACEOF
-#line 10542 "configure"
+#line 10599 "configure"
 #include "confdefs.h"
 
 #include <stdlib.h>
@@ -10552,16 +10609,16 @@ putwc(0,0);
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:10555: \"$ac_link\"") >&5
+if { (eval echo "$as_me:10612: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:10558: \$? = $ac_status" >&5
+  echo "$as_me:10615: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:10561: \"$ac_try\"") >&5
+  { (eval echo "$as_me:10618: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:10564: \$? = $ac_status" >&5
+  echo "$as_me:10621: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_utf8_lib=yes
 else
@@ -10569,7 +10626,7 @@ else
 cat conftest.$ac_ext >&5
 LIBS="-lutf8 $LIBS"
 	 cat >conftest.$ac_ext <<_ACEOF
-#line 10572 "configure"
+#line 10629 "configure"
 #include "confdefs.h"
 
 #include <libutf8.h>
@@ -10582,16 +10639,16 @@ putwc(0,0);
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:10585: \"$ac_link\"") >&5
+if { (eval echo "$as_me:10642: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:10588: \$? = $ac_status" >&5
+  echo "$as_me:10645: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:10591: \"$ac_try\"") >&5
+  { (eval echo "$as_me:10648: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:10594: \$? = $ac_status" >&5
+  echo "$as_me:10651: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_utf8_lib=add-on
 else
@@ -10605,7 +10662,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:10608: result: $cf_cv_utf8_lib" >&5
+echo "$as_me:10665: result: $cf_cv_utf8_lib" >&5
 echo "${ECHO_T}$cf_cv_utf8_lib" >&6
 
 # HAVE_LIBUTF8_H is used by ncurses if curses.h is shared between
@@ -10624,7 +10681,7 @@ test -n "$cf_cv_curses_dir" && \
 test "$cf_cv_curses_dir" != "no" && \
 CPPFLAGS="-I$cf_cv_curses_dir/include -I$cf_cv_curses_dir/include/$cf_ncuhdr_root $CPPFLAGS"
 
-echo "$as_me:10627: checking for $cf_ncuhdr_root header in include-path" >&5
+echo "$as_me:10684: checking for $cf_ncuhdr_root header in include-path" >&5
 echo $ECHO_N "checking for $cf_ncuhdr_root header in include-path... $ECHO_C" >&6
 if test "${cf_cv_ncurses_h+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -10636,7 +10693,7 @@ else
 	do
 
 	cat >conftest.$ac_ext <<_ACEOF
-#line 10639 "configure"
+#line 10696 "configure"
 #include "confdefs.h"
 
 #define _XOPEN_SOURCE_EXTENDED
@@ -10668,16 +10725,16 @@ printf("old\n");
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:10671: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:10728: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:10674: \$? = $ac_status" >&5
+  echo "$as_me:10731: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:10677: \"$ac_try\"") >&5
+  { (eval echo "$as_me:10734: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:10680: \$? = $ac_status" >&5
+  echo "$as_me:10737: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_ncurses_h=$cf_header
 
@@ -10692,13 +10749,13 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 	done
 
 fi
-echo "$as_me:10695: result: $cf_cv_ncurses_h" >&5
+echo "$as_me:10752: result: $cf_cv_ncurses_h" >&5
 echo "${ECHO_T}$cf_cv_ncurses_h" >&6
 
 if test "$cf_cv_ncurses_h" != no ; then
 	cf_cv_ncurses_header=$cf_cv_ncurses_h
 else
-echo "$as_me:10701: checking for $cf_ncuhdr_root include-path" >&5
+echo "$as_me:10758: checking for $cf_ncuhdr_root include-path" >&5
 echo $ECHO_N "checking for $cf_ncuhdr_root include-path... $ECHO_C" >&6
 if test "${cf_cv_ncurses_h2+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -10793,7 +10850,7 @@ do
 				cf_save_CPPFLAGS="$CPPFLAGS"
 				CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
 				cat >conftest.$ac_ext <<_ACEOF
-#line 10796 "configure"
+#line 10853 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 int
@@ -10805,16 +10862,16 @@ printf("Hello")
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:10808: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:10865: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:10811: \$? = $ac_status" >&5
+  echo "$as_me:10868: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:10814: \"$ac_try\"") >&5
+  { (eval echo "$as_me:10871: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:10817: \$? = $ac_status" >&5
+  echo "$as_me:10874: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   :
 else
@@ -10841,7 +10898,7 @@ done
 		do
 
 	cat >conftest.$ac_ext <<_ACEOF
-#line 10844 "configure"
+#line 10901 "configure"
 #include "confdefs.h"
 
 #define _XOPEN_SOURCE_EXTENDED
@@ -10873,16 +10930,16 @@ printf("old\n");
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:10876: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:10933: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:10879: \$? = $ac_status" >&5
+  echo "$as_me:10936: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:10882: \"$ac_try\"") >&5
+  { (eval echo "$as_me:10939: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:10885: \$? = $ac_status" >&5
+  echo "$as_me:10942: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_ncurses_h2=$cf_header
 
@@ -10903,12 +10960,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 		CPPFLAGS="$cf_save2_CPPFLAGS"
 		test "$cf_cv_ncurses_h2" != no && break
 	done
-	test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:10906: error: not found" >&5
+	test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:10963: error: not found" >&5
 echo "$as_me: error: not found" >&2;}
    { (exit 1); exit 1; }; }
 
 fi
-echo "$as_me:10911: result: $cf_cv_ncurses_h2" >&5
+echo "$as_me:10968: result: $cf_cv_ncurses_h2" >&5
 echo "${ECHO_T}$cf_cv_ncurses_h2" >&6
 
 	cf_1st_incdir=`echo $cf_cv_ncurses_h2 | sed -e 's%/[^/]*$%%'`
@@ -10930,7 +10987,7 @@ do
 				cf_save_CPPFLAGS="$CPPFLAGS"
 				CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
 				cat >conftest.$ac_ext <<_ACEOF
-#line 10933 "configure"
+#line 10990 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 int
@@ -10942,16 +10999,16 @@ printf("Hello")
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:10945: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:11002: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:10948: \$? = $ac_status" >&5
+  echo "$as_me:11005: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:10951: \"$ac_try\"") >&5
+  { (eval echo "$as_me:11008: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:10954: \$? = $ac_status" >&5
+  echo "$as_me:11011: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   :
 else
@@ -11002,7 +11059,7 @@ EOF
 	;;
 esac
 
-echo "$as_me:11005: checking for ncurses version" >&5
+echo "$as_me:11062: checking for ncurses version" >&5
 echo $ECHO_N "checking for ncurses version... $ECHO_C" >&6
 if test "${cf_cv_ncurses_version+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -11028,10 +11085,10 @@ Autoconf "old"
 #endif
 EOF
 	cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out"
-	{ (eval echo "$as_me:11031: \"$cf_try\"") >&5
+	{ (eval echo "$as_me:11088: \"$cf_try\"") >&5
   (eval $cf_try) 2>&5
   ac_status=$?
-  echo "$as_me:11034: \$? = $ac_status" >&5
+  echo "$as_me:11091: \$? = $ac_status" >&5
   (exit $ac_status); }
 	if test -f conftest.out ; then
 		cf_out=`cat conftest.out | sed -e 's%^Autoconf %%' -e 's%^[^"]*"%%' -e 's%".*%%'`
@@ -11041,7 +11098,7 @@ EOF
 
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 11044 "configure"
+#line 11101 "configure"
 #include "confdefs.h"
 
 #include <${cf_cv_ncurses_header-curses.h}>
@@ -11066,15 +11123,15 @@ int main()
 }
 _ACEOF
 rm -f conftest$ac_exeext
-if { (eval echo "$as_me:11069: \"$ac_link\"") >&5
+if { (eval echo "$as_me:11126: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:11072: \$? = $ac_status" >&5
+  echo "$as_me:11129: \$? = $ac_status" >&5
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
-  { (eval echo "$as_me:11074: \"$ac_try\"") >&5
+  { (eval echo "$as_me:11131: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:11077: \$? = $ac_status" >&5
+  echo "$as_me:11134: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
 
 	cf_cv_ncurses_version=`cat $cf_tempfile`
@@ -11088,7 +11145,7 @@ fi
 	rm -f $cf_tempfile
 
 fi
-echo "$as_me:11091: result: $cf_cv_ncurses_version" >&5
+echo "$as_me:11148: result: $cf_cv_ncurses_version" >&5
 echo "${ECHO_T}$cf_cv_ncurses_version" >&6
 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF
 #define NCURSES 1
@@ -11100,7 +11157,7 @@ cf_nculib_root=ncursesw
 	# to link gpm.
 cf_ncurses_LIBS=""
 cf_ncurses_SAVE="$LIBS"
-echo "$as_me:11103: checking for Gpm_Open in -lgpm" >&5
+echo "$as_me:11160: checking for Gpm_Open in -lgpm" >&5
 echo $ECHO_N "checking for Gpm_Open in -lgpm... $ECHO_C" >&6
 if test "${ac_cv_lib_gpm_Gpm_Open+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -11108,7 +11165,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lgpm  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 11111 "configure"
+#line 11168 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -11127,16 +11184,16 @@ Gpm_Open ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:11130: \"$ac_link\"") >&5
+if { (eval echo "$as_me:11187: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:11133: \$? = $ac_status" >&5
+  echo "$as_me:11190: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:11136: \"$ac_try\"") >&5
+  { (eval echo "$as_me:11193: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:11139: \$? = $ac_status" >&5
+  echo "$as_me:11196: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_gpm_Gpm_Open=yes
 else
@@ -11147,10 +11204,10 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:11150: result: $ac_cv_lib_gpm_Gpm_Open" >&5
+echo "$as_me:11207: result: $ac_cv_lib_gpm_Gpm_Open" >&5
 echo "${ECHO_T}$ac_cv_lib_gpm_Gpm_Open" >&6
 if test $ac_cv_lib_gpm_Gpm_Open = yes; then
-  echo "$as_me:11153: checking for initscr in -lgpm" >&5
+  echo "$as_me:11210: checking for initscr in -lgpm" >&5
 echo $ECHO_N "checking for initscr in -lgpm... $ECHO_C" >&6
 if test "${ac_cv_lib_gpm_initscr+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -11158,7 +11215,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lgpm  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 11161 "configure"
+#line 11218 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -11177,16 +11234,16 @@ initscr ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:11180: \"$ac_link\"") >&5
+if { (eval echo "$as_me:11237: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:11183: \$? = $ac_status" >&5
+  echo "$as_me:11240: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:11186: \"$ac_try\"") >&5
+  { (eval echo "$as_me:11243: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:11189: \$? = $ac_status" >&5
+  echo "$as_me:11246: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_gpm_initscr=yes
 else
@@ -11197,7 +11254,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:11200: result: $ac_cv_lib_gpm_initscr" >&5
+echo "$as_me:11257: result: $ac_cv_lib_gpm_initscr" >&5
 echo "${ECHO_T}$ac_cv_lib_gpm_initscr" >&6
 if test $ac_cv_lib_gpm_initscr = yes; then
   LIBS="$cf_ncurses_SAVE"
@@ -11212,7 +11269,7 @@ freebsd*)
 	# This is only necessary if you are linking against an obsolete
 	# version of ncurses (but it should do no harm, since it's static).
 	if test "$cf_nculib_root" = ncurses ; then
-		echo "$as_me:11215: checking for tgoto in -lmytinfo" >&5
+		echo "$as_me:11272: checking for tgoto in -lmytinfo" >&5
 echo $ECHO_N "checking for tgoto in -lmytinfo... $ECHO_C" >&6
 if test "${ac_cv_lib_mytinfo_tgoto+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -11220,7 +11277,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lmytinfo  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 11223 "configure"
+#line 11280 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -11239,16 +11296,16 @@ tgoto ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:11242: \"$ac_link\"") >&5
+if { (eval echo "$as_me:11299: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:11245: \$? = $ac_status" >&5
+  echo "$as_me:11302: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:11248: \"$ac_try\"") >&5
+  { (eval echo "$as_me:11305: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:11251: \$? = $ac_status" >&5
+  echo "$as_me:11308: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_mytinfo_tgoto=yes
 else
@@ -11259,7 +11316,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:11262: result: $ac_cv_lib_mytinfo_tgoto" >&5
+echo "$as_me:11319: result: $ac_cv_lib_mytinfo_tgoto" >&5
 echo "${ECHO_T}$ac_cv_lib_mytinfo_tgoto" >&6
 if test $ac_cv_lib_mytinfo_tgoto = yes; then
   cf_ncurses_LIBS="-lmytinfo $cf_ncurses_LIBS"
@@ -11278,13 +11335,13 @@ else
 
 	eval 'cf_cv_have_lib_'$cf_nculib_root'=no'
 	cf_libdir=""
-	echo "$as_me:11281: checking for initscr" >&5
+	echo "$as_me:11338: checking for initscr" >&5
 echo $ECHO_N "checking for initscr... $ECHO_C" >&6
 if test "${ac_cv_func_initscr+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 11287 "configure"
+#line 11344 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char initscr (); below.  */
@@ -11315,16 +11372,16 @@ f = initscr;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:11318: \"$ac_link\"") >&5
+if { (eval echo "$as_me:11375: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:11321: \$? = $ac_status" >&5
+  echo "$as_me:11378: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:11324: \"$ac_try\"") >&5
+  { (eval echo "$as_me:11381: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:11327: \$? = $ac_status" >&5
+  echo "$as_me:11384: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_func_initscr=yes
 else
@@ -11334,18 +11391,18 @@ ac_cv_func_initscr=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:11337: result: $ac_cv_func_initscr" >&5
+echo "$as_me:11394: result: $ac_cv_func_initscr" >&5
 echo "${ECHO_T}$ac_cv_func_initscr" >&6
 if test $ac_cv_func_initscr = yes; then
   eval 'cf_cv_have_lib_'$cf_nculib_root'=yes'
 else
 
 		cf_save_LIBS="$LIBS"
-		echo "$as_me:11344: checking for initscr in -l$cf_nculib_root" >&5
+		echo "$as_me:11401: checking for initscr in -l$cf_nculib_root" >&5
 echo $ECHO_N "checking for initscr in -l$cf_nculib_root... $ECHO_C" >&6
 		LIBS="-l$cf_nculib_root $LIBS"
 		cat >conftest.$ac_ext <<_ACEOF
-#line 11348 "configure"
+#line 11405 "configure"
 #include "confdefs.h"
 #include <${cf_cv_ncurses_header-curses.h}>
 int
@@ -11357,25 +11414,25 @@ initscr()
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:11360: \"$ac_link\"") >&5
+if { (eval echo "$as_me:11417: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:11363: \$? = $ac_status" >&5
+  echo "$as_me:11420: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:11366: \"$ac_try\"") >&5
+  { (eval echo "$as_me:11423: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:11369: \$? = $ac_status" >&5
+  echo "$as_me:11426: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
-  echo "$as_me:11371: result: yes" >&5
+  echo "$as_me:11428: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 			 eval 'cf_cv_have_lib_'$cf_nculib_root'=yes'
 
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
-echo "$as_me:11378: result: no" >&5
+echo "$as_me:11435: result: no" >&5
 echo "${ECHO_T}no" >&6
 			cf_search=""
 
@@ -11435,11 +11492,11 @@ test -d /usr && {
 
 			for cf_libdir in $cf_search
 			do
-				echo "$as_me:11438: checking for -l$cf_nculib_root in $cf_libdir" >&5
+				echo "$as_me:11495: checking for -l$cf_nculib_root in $cf_libdir" >&5
 echo $ECHO_N "checking for -l$cf_nculib_root in $cf_libdir... $ECHO_C" >&6
 				LIBS="-L$cf_libdir -l$cf_nculib_root $cf_save_LIBS"
 				cat >conftest.$ac_ext <<_ACEOF
-#line 11442 "configure"
+#line 11499 "configure"
 #include "confdefs.h"
 #include <${cf_cv_ncurses_header-curses.h}>
 int
@@ -11451,25 +11508,25 @@ initscr()
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:11454: \"$ac_link\"") >&5
+if { (eval echo "$as_me:11511: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:11457: \$? = $ac_status" >&5
+  echo "$as_me:11514: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:11460: \"$ac_try\"") >&5
+  { (eval echo "$as_me:11517: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:11463: \$? = $ac_status" >&5
+  echo "$as_me:11520: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
-  echo "$as_me:11465: result: yes" >&5
+  echo "$as_me:11522: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 			 		 eval 'cf_cv_have_lib_'$cf_nculib_root'=yes'
 					 break
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
-echo "$as_me:11472: result: no" >&5
+echo "$as_me:11529: result: no" >&5
 echo "${ECHO_T}no" >&6
 					 LIBS="$cf_save_LIBS"
 fi
@@ -11484,7 +11541,7 @@ fi
 eval 'cf_found_library=$cf_cv_have_lib_'$cf_nculib_root
 
 if test $cf_found_library = no ; then
-	{ { echo "$as_me:11487: error: Cannot link $cf_nculib_root library" >&5
+	{ { echo "$as_me:11544: error: Cannot link $cf_nculib_root library" >&5
 echo "$as_me: error: Cannot link $cf_nculib_root library" >&2;}
    { (exit 1); exit 1; }; }
 fi
@@ -11492,7 +11549,7 @@ fi
 fi
 
 if test -n "$cf_ncurses_LIBS" ; then
-	echo "$as_me:11495: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5
+	echo "$as_me:11552: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5
 echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS... $ECHO_C" >&6
 	cf_ncurses_SAVE="$LIBS"
 	for p in $cf_ncurses_LIBS ; do
@@ -11502,7 +11559,7 @@ echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS..
 		fi
 	done
 	cat >conftest.$ac_ext <<_ACEOF
-#line 11505 "configure"
+#line 11562 "configure"
 #include "confdefs.h"
 #include <${cf_cv_ncurses_header-curses.h}>
 int
@@ -11514,23 +11571,23 @@ initscr(); mousemask(0,0); tgoto((char *)0, 0, 0);
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:11517: \"$ac_link\"") >&5
+if { (eval echo "$as_me:11574: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:11520: \$? = $ac_status" >&5
+  echo "$as_me:11577: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:11523: \"$ac_try\"") >&5
+  { (eval echo "$as_me:11580: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:11526: \$? = $ac_status" >&5
+  echo "$as_me:11583: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
-  echo "$as_me:11528: result: yes" >&5
+  echo "$as_me:11585: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
-echo "$as_me:11533: result: no" >&5
+echo "$as_me:11590: result: no" >&5
 echo "${ECHO_T}no" >&6
 		 LIBS="$cf_ncurses_SAVE"
 fi
@@ -11543,7 +11600,7 @@ cat >>confdefs.h <<EOF
 #define $cf_nculib_ROOT 1
 EOF
 
-echo "$as_me:11546: checking for ncurses version" >&5
+echo "$as_me:11603: checking for ncurses version" >&5
 echo $ECHO_N "checking for ncurses version... $ECHO_C" >&6
 if test "${cf_cv_ncurses_version+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -11569,10 +11626,10 @@ Autoconf "old"
 #endif
 EOF
 	cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out"
-	{ (eval echo "$as_me:11572: \"$cf_try\"") >&5
+	{ (eval echo "$as_me:11629: \"$cf_try\"") >&5
   (eval $cf_try) 2>&5
   ac_status=$?
-  echo "$as_me:11575: \$? = $ac_status" >&5
+  echo "$as_me:11632: \$? = $ac_status" >&5
   (exit $ac_status); }
 	if test -f conftest.out ; then
 		cf_out=`cat conftest.out | sed -e 's%^Autoconf %%' -e 's%^[^"]*"%%' -e 's%".*%%'`
@@ -11582,7 +11639,7 @@ EOF
 
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 11585 "configure"
+#line 11642 "configure"
 #include "confdefs.h"
 
 #include <${cf_cv_ncurses_header-curses.h}>
@@ -11607,15 +11664,15 @@ int main()
 }
 _ACEOF
 rm -f conftest$ac_exeext
-if { (eval echo "$as_me:11610: \"$ac_link\"") >&5
+if { (eval echo "$as_me:11667: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:11613: \$? = $ac_status" >&5
+  echo "$as_me:11670: \$? = $ac_status" >&5
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
-  { (eval echo "$as_me:11615: \"$ac_try\"") >&5
+  { (eval echo "$as_me:11672: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:11618: \$? = $ac_status" >&5
+  echo "$as_me:11675: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
 
 	cf_cv_ncurses_version=`cat $cf_tempfile`
@@ -11629,7 +11686,7 @@ fi
 	rm -f $cf_tempfile
 
 fi
-echo "$as_me:11632: result: $cf_cv_ncurses_version" >&5
+echo "$as_me:11689: result: $cf_cv_ncurses_version" >&5
 echo "${ECHO_T}$cf_cv_ncurses_version" >&6
 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF
 #define NCURSES 1
@@ -11642,14 +11699,14 @@ pdcurses)
 	;;
 slang)
 
-echo "$as_me:11645: checking for slang header file" >&5
+echo "$as_me:11702: checking for slang header file" >&5
 echo $ECHO_N "checking for slang header file... $ECHO_C" >&6
 if test "${cf_cv_slang_header+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 	cat >conftest.$ac_ext <<_ACEOF
-#line 11652 "configure"
+#line 11709 "configure"
 #include "confdefs.h"
 #include <slang.h>
 int
@@ -11661,16 +11718,16 @@ printf("%s\n", SLANG_VERSION)
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:11664: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:11721: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:11667: \$? = $ac_status" >&5
+  echo "$as_me:11724: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:11670: \"$ac_try\"") >&5
+  { (eval echo "$as_me:11727: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:11673: \$? = $ac_status" >&5
+  echo "$as_me:11730: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_slang_header=predefined
 else
@@ -11760,14 +11817,14 @@ test -d "$oldincludedir" && {
 		done
 		test -n "$cf_cv_slang_header" && break
 	done
-	test -z "$cf_cv_slang_header" && { { echo "$as_me:11763: error: not found" >&5
+	test -z "$cf_cv_slang_header" && { { echo "$as_me:11820: error: not found" >&5
 echo "$as_me: error: not found" >&2;}
    { (exit 1); exit 1; }; }
 
 fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 fi
-echo "$as_me:11770: result: $cf_cv_slang_header" >&5
+echo "$as_me:11827: result: $cf_cv_slang_header" >&5
 echo "${ECHO_T}$cf_cv_slang_header" >&6
 cat >>confdefs.h <<\EOF
 #define USE_SLANG 1
@@ -11793,7 +11850,7 @@ do
 				cf_save_CPPFLAGS="$CPPFLAGS"
 				CPPFLAGS="$CPPFLAGS -I$cf_add_incdir"
 				cat >conftest.$ac_ext <<_ACEOF
-#line 11796 "configure"
+#line 11853 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 int
@@ -11805,16 +11862,16 @@ printf("Hello")
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:11808: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:11865: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:11811: \$? = $ac_status" >&5
+  echo "$as_me:11868: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:11814: \"$ac_try\"") >&5
+  { (eval echo "$as_me:11871: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:11817: \$? = $ac_status" >&5
+  echo "$as_me:11874: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   :
 else
@@ -11840,14 +11897,14 @@ esac
 
 # There's an unofficial set of patches for slang that gives it some limited
 # UTF8 capability.  Unfortunately it won't compile unless one defines UTF8.
-echo "$as_me:11843: checking if we must define UTF8" >&5
+echo "$as_me:11900: checking if we must define UTF8" >&5
 echo $ECHO_N "checking if we must define UTF8... $ECHO_C" >&6
 if test "${cf_cv_slang_utf8+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 	cat >conftest.$ac_ext <<_ACEOF
-#line 11850 "configure"
+#line 11907 "configure"
 #include "confdefs.h"
 
 #include <slang.h>
@@ -11860,16 +11917,16 @@ SLtt_get_screen_size()
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:11863: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:11920: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:11866: \$? = $ac_status" >&5
+  echo "$as_me:11923: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:11869: \"$ac_try\"") >&5
+  { (eval echo "$as_me:11926: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:11872: \$? = $ac_status" >&5
+  echo "$as_me:11929: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_slang_utf8=no
 else
@@ -11877,7 +11934,7 @@ else
 cat conftest.$ac_ext >&5
 
 	cat >conftest.$ac_ext <<_ACEOF
-#line 11880 "configure"
+#line 11937 "configure"
 #include "confdefs.h"
 
 #define UTF8
@@ -11891,16 +11948,16 @@ SLtt_get_screen_size()
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:11894: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:11951: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:11897: \$? = $ac_status" >&5
+  echo "$as_me:11954: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:11900: \"$ac_try\"") >&5
+  { (eval echo "$as_me:11957: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:11903: \$? = $ac_status" >&5
+  echo "$as_me:11960: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_slang_utf8=yes
 else
@@ -11913,7 +11970,7 @@ fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 
 fi
-echo "$as_me:11916: result: $cf_cv_slang_utf8" >&5
+echo "$as_me:11973: result: $cf_cv_slang_utf8" >&5
 echo "${ECHO_T}$cf_cv_slang_utf8" >&6
 
 if test "$cf_cv_slang_utf8" = yes ; then
@@ -11931,7 +11988,7 @@ else
 
 cf_cv_termlib=none
 cat >conftest.$ac_ext <<_ACEOF
-#line 11934 "configure"
+#line 11991 "configure"
 #include "confdefs.h"
 
 int
@@ -11943,19 +12000,19 @@ char *x=(char*)tgoto("",0,0)
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:11946: \"$ac_link\"") >&5
+if { (eval echo "$as_me:12003: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:11949: \$? = $ac_status" >&5
+  echo "$as_me:12006: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:11952: \"$ac_try\"") >&5
+  { (eval echo "$as_me:12009: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:11955: \$? = $ac_status" >&5
+  echo "$as_me:12012: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cat >conftest.$ac_ext <<_ACEOF
-#line 11958 "configure"
+#line 12015 "configure"
 #include "confdefs.h"
 
 int
@@ -11967,16 +12024,16 @@ int x=tigetstr("")
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:11970: \"$ac_link\"") >&5
+if { (eval echo "$as_me:12027: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:11973: \$? = $ac_status" >&5
+  echo "$as_me:12030: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:11976: \"$ac_try\"") >&5
+  { (eval echo "$as_me:12033: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:11979: \$? = $ac_status" >&5
+  echo "$as_me:12036: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_termlib=terminfo
 else
@@ -12000,10 +12057,10 @@ if test "$cf_cv_termlib" = none; then
 	LIBS="-l$cf_lib $cf_save_LIBS"
 	for cf_func in tigetstr tgetstr
 	do
-		echo "$as_me:12003: checking for $cf_func in -l$cf_lib" >&5
+		echo "$as_me:12060: checking for $cf_func in -l$cf_lib" >&5
 echo $ECHO_N "checking for $cf_func in -l$cf_lib... $ECHO_C" >&6
 		cat >conftest.$ac_ext <<_ACEOF
-#line 12006 "configure"
+#line 12063 "configure"
 #include "confdefs.h"
 
 int
@@ -12015,16 +12072,16 @@ int x=$cf_func("")
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:12018: \"$ac_link\"") >&5
+if { (eval echo "$as_me:12075: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:12021: \$? = $ac_status" >&5
+  echo "$as_me:12078: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:12024: \"$ac_try\"") >&5
+  { (eval echo "$as_me:12081: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:12027: \$? = $ac_status" >&5
+  echo "$as_me:12084: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_result=yes
 else
@@ -12033,7 +12090,7 @@ cat conftest.$ac_ext >&5
 cf_result=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
-		echo "$as_me:12036: result: $cf_result" >&5
+		echo "$as_me:12093: result: $cf_result" >&5
 echo "${ECHO_T}$cf_result" >&6
 		if test "$cf_result" = yes ; then
 			if test "$cf_func" = tigetstr ; then
@@ -12050,7 +12107,7 @@ echo "${ECHO_T}$cf_result" >&6
 fi
 if test "$cf_cv_termlib" = none; then
 	# allow curses library for broken AIX system.
-	echo "$as_me:12053: checking for initscr in -lcurses" >&5
+	echo "$as_me:12110: checking for initscr in -lcurses" >&5
 echo $ECHO_N "checking for initscr in -lcurses... $ECHO_C" >&6
 if test "${ac_cv_lib_curses_initscr+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -12058,7 +12115,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lcurses  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 12061 "configure"
+#line 12118 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -12077,16 +12134,16 @@ initscr ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:12080: \"$ac_link\"") >&5
+if { (eval echo "$as_me:12137: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:12083: \$? = $ac_status" >&5
+  echo "$as_me:12140: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:12086: \"$ac_try\"") >&5
+  { (eval echo "$as_me:12143: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:12089: \$? = $ac_status" >&5
+  echo "$as_me:12146: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_curses_initscr=yes
 else
@@ -12097,13 +12154,13 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:12100: result: $ac_cv_lib_curses_initscr" >&5
+echo "$as_me:12157: result: $ac_cv_lib_curses_initscr" >&5
 echo "${ECHO_T}$ac_cv_lib_curses_initscr" >&6
 if test $ac_cv_lib_curses_initscr = yes; then
   LIBS="$LIBS -lcurses" cf_cv_termlib=termcap
 fi
 
-	echo "$as_me:12106: checking for tgoto in -ltermcap" >&5
+	echo "$as_me:12163: checking for tgoto in -ltermcap" >&5
 echo $ECHO_N "checking for tgoto in -ltermcap... $ECHO_C" >&6
 if test "${ac_cv_lib_termcap_tgoto+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -12111,7 +12168,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-ltermcap  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 12114 "configure"
+#line 12171 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -12130,16 +12187,16 @@ tgoto ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:12133: \"$ac_link\"") >&5
+if { (eval echo "$as_me:12190: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:12136: \$? = $ac_status" >&5
+  echo "$as_me:12193: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:12139: \"$ac_try\"") >&5
+  { (eval echo "$as_me:12196: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:12142: \$? = $ac_status" >&5
+  echo "$as_me:12199: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_termcap_tgoto=yes
 else
@@ -12150,7 +12207,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:12153: result: $ac_cv_lib_termcap_tgoto" >&5
+echo "$as_me:12210: result: $ac_cv_lib_termcap_tgoto" >&5
 echo "${ECHO_T}$ac_cv_lib_termcap_tgoto" >&6
 if test $ac_cv_lib_termcap_tgoto = yes; then
   LIBS="$LIBS -ltermcap" cf_cv_termlib=termcap
@@ -12161,20 +12218,20 @@ fi
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 if test "$cf_cv_termlib" = none; then
-	{ echo "$as_me:12164: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&5
+	{ echo "$as_me:12221: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&5
 echo "$as_me: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&2;}
 fi
 
 fi
 
 cf_slang_LIBS2="$LIBS"
-echo "$as_me:12171: checking for acos" >&5
+echo "$as_me:12228: checking for acos" >&5
 echo $ECHO_N "checking for acos... $ECHO_C" >&6
 if test "${ac_cv_func_acos+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 12177 "configure"
+#line 12234 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char acos (); below.  */
@@ -12205,16 +12262,16 @@ f = acos;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:12208: \"$ac_link\"") >&5
+if { (eval echo "$as_me:12265: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:12211: \$? = $ac_status" >&5
+  echo "$as_me:12268: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:12214: \"$ac_try\"") >&5
+  { (eval echo "$as_me:12271: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:12217: \$? = $ac_status" >&5
+  echo "$as_me:12274: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_func_acos=yes
 else
@@ -12224,13 +12281,13 @@ ac_cv_func_acos=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:12227: result: $ac_cv_func_acos" >&5
+echo "$as_me:12284: result: $ac_cv_func_acos" >&5
 echo "${ECHO_T}$ac_cv_func_acos" >&6
 if test $ac_cv_func_acos = yes; then
   :
 else
 
-echo "$as_me:12233: checking for acos in -lm" >&5
+echo "$as_me:12290: checking for acos in -lm" >&5
 echo $ECHO_N "checking for acos in -lm... $ECHO_C" >&6
 if test "${ac_cv_lib_m_acos+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -12238,7 +12295,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lm $LIBS $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 12241 "configure"
+#line 12298 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -12257,16 +12314,16 @@ acos ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:12260: \"$ac_link\"") >&5
+if { (eval echo "$as_me:12317: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:12263: \$? = $ac_status" >&5
+  echo "$as_me:12320: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:12266: \"$ac_try\"") >&5
+  { (eval echo "$as_me:12323: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:12269: \$? = $ac_status" >&5
+  echo "$as_me:12326: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_m_acos=yes
 else
@@ -12277,7 +12334,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:12280: result: $ac_cv_lib_m_acos" >&5
+echo "$as_me:12337: result: $ac_cv_lib_m_acos" >&5
 echo "${ECHO_T}$ac_cv_lib_m_acos" >&6
 if test $ac_cv_lib_m_acos = yes; then
 
@@ -12303,13 +12360,13 @@ os2*)
 
 	eval 'cf_cv_have_lib_'video'=no'
 	cf_libdir=""
-	echo "$as_me:12306: checking for v_init" >&5
+	echo "$as_me:12363: checking for v_init" >&5
 echo $ECHO_N "checking for v_init... $ECHO_C" >&6
 if test "${ac_cv_func_v_init+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 12312 "configure"
+#line 12369 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char v_init (); below.  */
@@ -12340,16 +12397,16 @@ f = v_init;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:12343: \"$ac_link\"") >&5
+if { (eval echo "$as_me:12400: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:12346: \$? = $ac_status" >&5
+  echo "$as_me:12403: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:12349: \"$ac_try\"") >&5
+  { (eval echo "$as_me:12406: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:12352: \$? = $ac_status" >&5
+  echo "$as_me:12409: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_func_v_init=yes
 else
@@ -12359,18 +12416,18 @@ ac_cv_func_v_init=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:12362: result: $ac_cv_func_v_init" >&5
+echo "$as_me:12419: result: $ac_cv_func_v_init" >&5
 echo "${ECHO_T}$ac_cv_func_v_init" >&6
 if test $ac_cv_func_v_init = yes; then
   eval 'cf_cv_have_lib_'video'=yes'
 else
 
 		cf_save_LIBS="$LIBS"
-		echo "$as_me:12369: checking for v_init in -lvideo" >&5
+		echo "$as_me:12426: checking for v_init in -lvideo" >&5
 echo $ECHO_N "checking for v_init in -lvideo... $ECHO_C" >&6
 		LIBS="-lvideo $LIBS"
 		cat >conftest.$ac_ext <<_ACEOF
-#line 12373 "configure"
+#line 12430 "configure"
 #include "confdefs.h"
 #include <sys/video.h>
 int
@@ -12382,25 +12439,25 @@ v_init()
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:12385: \"$ac_link\"") >&5
+if { (eval echo "$as_me:12442: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:12388: \$? = $ac_status" >&5
+  echo "$as_me:12445: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:12391: \"$ac_try\"") >&5
+  { (eval echo "$as_me:12448: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:12394: \$? = $ac_status" >&5
+  echo "$as_me:12451: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
-  echo "$as_me:12396: result: yes" >&5
+  echo "$as_me:12453: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 			 eval 'cf_cv_have_lib_'video'=yes'
 
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
-echo "$as_me:12403: result: no" >&5
+echo "$as_me:12460: result: no" >&5
 echo "${ECHO_T}no" >&6
 			cf_search=""
 
@@ -12460,11 +12517,11 @@ test -d /usr && {
 
 			for cf_libdir in $cf_search
 			do
-				echo "$as_me:12463: checking for -lvideo in $cf_libdir" >&5
+				echo "$as_me:12520: checking for -lvideo in $cf_libdir" >&5
 echo $ECHO_N "checking for -lvideo in $cf_libdir... $ECHO_C" >&6
 				LIBS="-L$cf_libdir -lvideo $cf_save_LIBS"
 				cat >conftest.$ac_ext <<_ACEOF
-#line 12467 "configure"
+#line 12524 "configure"
 #include "confdefs.h"
 #include <sys/video.h>
 int
@@ -12476,25 +12533,25 @@ v_init()
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:12479: \"$ac_link\"") >&5
+if { (eval echo "$as_me:12536: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:12482: \$? = $ac_status" >&5
+  echo "$as_me:12539: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:12485: \"$ac_try\"") >&5
+  { (eval echo "$as_me:12542: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:12488: \$? = $ac_status" >&5
+  echo "$as_me:12545: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
-  echo "$as_me:12490: result: yes" >&5
+  echo "$as_me:12547: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 			 		 eval 'cf_cv_have_lib_'video'=yes'
 					 break
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
-echo "$as_me:12497: result: no" >&5
+echo "$as_me:12554: result: no" >&5
 echo "${ECHO_T}no" >&6
 					 LIBS="$cf_save_LIBS"
 fi
@@ -12509,7 +12566,7 @@ fi
 eval 'cf_found_library=$cf_cv_have_lib_'video
 
 if test $cf_found_library = no ; then
-	{ { echo "$as_me:12512: error: Cannot link video library" >&5
+	{ { echo "$as_me:12569: error: Cannot link video library" >&5
 echo "$as_me: error: Cannot link video library" >&2;}
    { (exit 1); exit 1; }; }
 fi
@@ -12519,13 +12576,13 @@ esac
 
 	eval 'cf_cv_have_lib_'slang'=no'
 	cf_libdir=""
-	echo "$as_me:12522: checking for SLtt_get_screen_size" >&5
+	echo "$as_me:12579: checking for SLtt_get_screen_size" >&5
 echo $ECHO_N "checking for SLtt_get_screen_size... $ECHO_C" >&6
 if test "${ac_cv_func_SLtt_get_screen_size+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 12528 "configure"
+#line 12585 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char SLtt_get_screen_size (); below.  */
@@ -12556,16 +12613,16 @@ f = SLtt_get_screen_size;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:12559: \"$ac_link\"") >&5
+if { (eval echo "$as_me:12616: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:12562: \$? = $ac_status" >&5
+  echo "$as_me:12619: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:12565: \"$ac_try\"") >&5
+  { (eval echo "$as_me:12622: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:12568: \$? = $ac_status" >&5
+  echo "$as_me:12625: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_func_SLtt_get_screen_size=yes
 else
@@ -12575,18 +12632,18 @@ ac_cv_func_SLtt_get_screen_size=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:12578: result: $ac_cv_func_SLtt_get_screen_size" >&5
+echo "$as_me:12635: result: $ac_cv_func_SLtt_get_screen_size" >&5
 echo "${ECHO_T}$ac_cv_func_SLtt_get_screen_size" >&6
 if test $ac_cv_func_SLtt_get_screen_size = yes; then
   eval 'cf_cv_have_lib_'slang'=yes'
 else
 
 		cf_save_LIBS="$LIBS"
-		echo "$as_me:12585: checking for SLtt_get_screen_size in -lslang" >&5
+		echo "$as_me:12642: checking for SLtt_get_screen_size in -lslang" >&5
 echo $ECHO_N "checking for SLtt_get_screen_size in -lslang... $ECHO_C" >&6
 		LIBS="-lslang $LIBS"
 		cat >conftest.$ac_ext <<_ACEOF
-#line 12589 "configure"
+#line 12646 "configure"
 #include "confdefs.h"
 #include <slang.h>
 int
@@ -12598,25 +12655,25 @@ SLtt_get_screen_size()
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:12601: \"$ac_link\"") >&5
+if { (eval echo "$as_me:12658: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:12604: \$? = $ac_status" >&5
+  echo "$as_me:12661: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:12607: \"$ac_try\"") >&5
+  { (eval echo "$as_me:12664: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:12610: \$? = $ac_status" >&5
+  echo "$as_me:12667: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
-  echo "$as_me:12612: result: yes" >&5
+  echo "$as_me:12669: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 			 eval 'cf_cv_have_lib_'slang'=yes'
 
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
-echo "$as_me:12619: result: no" >&5
+echo "$as_me:12676: result: no" >&5
 echo "${ECHO_T}no" >&6
 			cf_search=""
 
@@ -12676,11 +12733,11 @@ test -d /usr && {
 
 			for cf_libdir in $cf_search
 			do
-				echo "$as_me:12679: checking for -lslang in $cf_libdir" >&5
+				echo "$as_me:12736: checking for -lslang in $cf_libdir" >&5
 echo $ECHO_N "checking for -lslang in $cf_libdir... $ECHO_C" >&6
 				LIBS="-L$cf_libdir -lslang $cf_save_LIBS"
 				cat >conftest.$ac_ext <<_ACEOF
-#line 12683 "configure"
+#line 12740 "configure"
 #include "confdefs.h"
 #include <slang.h>
 int
@@ -12692,25 +12749,25 @@ SLtt_get_screen_size()
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:12695: \"$ac_link\"") >&5
+if { (eval echo "$as_me:12752: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:12698: \$? = $ac_status" >&5
+  echo "$as_me:12755: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:12701: \"$ac_try\"") >&5
+  { (eval echo "$as_me:12758: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:12704: \$? = $ac_status" >&5
+  echo "$as_me:12761: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
-  echo "$as_me:12706: result: yes" >&5
+  echo "$as_me:12763: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 			 		 eval 'cf_cv_have_lib_'slang'=yes'
 					 break
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
-echo "$as_me:12713: result: no" >&5
+echo "$as_me:12770: result: no" >&5
 echo "${ECHO_T}no" >&6
 					 LIBS="$cf_save_LIBS"
 fi
@@ -12725,13 +12782,13 @@ fi
 eval 'cf_found_library=$cf_cv_have_lib_'slang
 
 if test $cf_found_library = no ; then
-	{ { echo "$as_me:12728: error: Cannot link slang library" >&5
+	{ { echo "$as_me:12785: error: Cannot link slang library" >&5
 echo "$as_me: error: Cannot link slang library" >&2;}
    { (exit 1); exit 1; }; }
 fi
 
 cf_slang_LIBS3="$LIBS"
-echo "$as_me:12734: checking if we can link slang without termcap" >&5
+echo "$as_me:12791: checking if we can link slang without termcap" >&5
 echo $ECHO_N "checking if we can link slang without termcap... $ECHO_C" >&6
 if test -n "`echo $cf_slang_LIBS1 | sed -e 's/ //g'`" ; then
 	cf_exclude=`echo ".$cf_slang_LIBS2" | sed -e "s%$cf_slang_LIBS1%%" -e 's%^.%%'`
@@ -12740,7 +12797,7 @@ else
 fi
 LIBS=`echo ".$cf_slang_LIBS3" | sed -e "s%$cf_exclude%%" -e 's%^.%%'`
 cat >conftest.$ac_ext <<_ACEOF
-#line 12743 "configure"
+#line 12800 "configure"
 #include "confdefs.h"
 #include <slang.h>
 int
@@ -12752,16 +12809,16 @@ SLtt_get_screen_size()
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:12755: \"$ac_link\"") >&5
+if { (eval echo "$as_me:12812: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:12758: \$? = $ac_status" >&5
+  echo "$as_me:12815: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:12761: \"$ac_try\"") >&5
+  { (eval echo "$as_me:12818: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:12764: \$? = $ac_status" >&5
+  echo "$as_me:12821: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_result=yes
 else
@@ -12770,18 +12827,18 @@ cat conftest.$ac_ext >&5
 cf_result=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
-echo "$as_me:12773: result: $cf_result" >&5
+echo "$as_me:12830: result: $cf_result" >&5
 echo "${ECHO_T}$cf_result" >&6
 test $cf_result = no && LIBS="$cf_slang_LIBS3"
 
-echo "$as_me:12777: checking if we must tell slang this is UNIX" >&5
+echo "$as_me:12834: checking if we must tell slang this is UNIX" >&5
 echo $ECHO_N "checking if we must tell slang this is UNIX... $ECHO_C" >&6
 if test "${cf_cv_slang_unix+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 cat >conftest.$ac_ext <<_ACEOF
-#line 12784 "configure"
+#line 12841 "configure"
 #include "confdefs.h"
 #include <slang.h>
 int
@@ -12800,16 +12857,16 @@ SLang_TT_Baud_Rate = 1
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:12803: \"$ac_link\"") >&5
+if { (eval echo "$as_me:12860: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:12806: \$? = $ac_status" >&5
+  echo "$as_me:12863: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:12809: \"$ac_try\"") >&5
+  { (eval echo "$as_me:12866: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:12812: \$? = $ac_status" >&5
+  echo "$as_me:12869: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_slang_unix=yes
 else
@@ -12820,7 +12877,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 
 fi
-echo "$as_me:12823: result: $cf_cv_slang_unix" >&5
+echo "$as_me:12880: result: $cf_cv_slang_unix" >&5
 echo "${ECHO_T}$cf_cv_slang_unix" >&6
 test $cf_cv_slang_unix = yes && cat >>confdefs.h <<\EOF
 #define REAL_UNIX_SYSTEM 1
@@ -12832,19 +12889,19 @@ esac
 eval cf_libdir=$libdir
 cf_libdir=`echo $cf_libdir | sed -e s%'^NONE/'%$prefix/% -e s%'^NONE/'%$ac_default_prefix/%`
 
-echo "$as_me:12835: checking for location of config-file" >&5
+echo "$as_me:12892: checking for location of config-file" >&5
 echo $ECHO_N "checking for location of config-file... $ECHO_C" >&6
 LYNX_CFG_FILE=$cf_libdir/lynx.cfg
 cat >>confdefs.h <<EOF
 #define LYNX_CFG_FILE "$LYNX_CFG_FILE"
 EOF
 
-echo "$as_me:12842: result: $LYNX_CFG_FILE" >&5
+echo "$as_me:12899: result: $LYNX_CFG_FILE" >&5
 echo "${ECHO_T}$LYNX_CFG_FILE" >&6
 
 CHARSET_DEFS=
 
-echo "$as_me:12847: checking if you want only a few charsets" >&5
+echo "$as_me:12904: checking if you want only a few charsets" >&5
 echo $ECHO_N "checking if you want only a few charsets... $ECHO_C" >&6
 
 # Check whether --with-charsets or --without-charsets was given.
@@ -12856,7 +12913,7 @@ else
 fi;
 
 if test -n "$cf_charsets" ; then
-	echo "$as_me:12859: result: yes" >&5
+	echo "$as_me:12916: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 	cat >>confdefs.h <<\EOF
 #define ALL_CHARSETS 0
@@ -12901,17 +12958,17 @@ EOF
 		fi
 	done
 else
-	echo "$as_me:12904: result: no" >&5
+	echo "$as_me:12961: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
-echo "$as_me:12908: checking for ANSI C header files" >&5
+echo "$as_me:12965: checking for ANSI C header files" >&5
 echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6
 if test "${ac_cv_header_stdc+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 12914 "configure"
+#line 12971 "configure"
 #include "confdefs.h"
 #include <stdlib.h>
 #include <stdarg.h>
@@ -12919,13 +12976,13 @@ else
 #include <float.h>
 
 _ACEOF
-if { (eval echo "$as_me:12922: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:12979: \"$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:12928: \$? = $ac_status" >&5
+  echo "$as_me:12985: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -12947,7 +13004,7 @@ rm -f conftest.err conftest.$ac_ext
 if test $ac_cv_header_stdc = yes; then
   # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
   cat >conftest.$ac_ext <<_ACEOF
-#line 12950 "configure"
+#line 13007 "configure"
 #include "confdefs.h"
 #include <string.h>
 
@@ -12965,7 +13022,7 @@ fi
 if test $ac_cv_header_stdc = yes; then
   # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
   cat >conftest.$ac_ext <<_ACEOF
-#line 12968 "configure"
+#line 13025 "configure"
 #include "confdefs.h"
 #include <stdlib.h>
 
@@ -12986,7 +13043,7 @@ if test $ac_cv_header_stdc = yes; then
   :
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 12989 "configure"
+#line 13046 "configure"
 #include "confdefs.h"
 #include <ctype.h>
 #if ((' ' & 0x0FF) == 0x020)
@@ -13012,15 +13069,15 @@ main ()
 }
 _ACEOF
 rm -f conftest$ac_exeext
-if { (eval echo "$as_me:13015: \"$ac_link\"") >&5
+if { (eval echo "$as_me:13072: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:13018: \$? = $ac_status" >&5
+  echo "$as_me:13075: \$? = $ac_status" >&5
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
-  { (eval echo "$as_me:13020: \"$ac_try\"") >&5
+  { (eval echo "$as_me:13077: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:13023: \$? = $ac_status" >&5
+  echo "$as_me:13080: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   :
 else
@@ -13033,7 +13090,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
 fi
 fi
 fi
-echo "$as_me:13036: result: $ac_cv_header_stdc" >&5
+echo "$as_me:13093: result: $ac_cv_header_stdc" >&5
 echo "${ECHO_T}$ac_cv_header_stdc" >&6
 if test $ac_cv_header_stdc = yes; then
 
@@ -13043,13 +13100,13 @@ EOF
 
 fi
 
-echo "$as_me:13046: checking whether time.h and sys/time.h may both be included" >&5
+echo "$as_me:13103: checking whether time.h and sys/time.h may both be included" >&5
 echo $ECHO_N "checking whether time.h and sys/time.h may both be included... $ECHO_C" >&6
 if test "${ac_cv_header_time+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 13052 "configure"
+#line 13109 "configure"
 #include "confdefs.h"
 #include <sys/types.h>
 #include <sys/time.h>
@@ -13065,16 +13122,16 @@ return 0;
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:13068: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:13125: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:13071: \$? = $ac_status" >&5
+  echo "$as_me:13128: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:13074: \"$ac_try\"") >&5
+  { (eval echo "$as_me:13131: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:13077: \$? = $ac_status" >&5
+  echo "$as_me:13134: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_header_time=yes
 else
@@ -13084,7 +13141,7 @@ ac_cv_header_time=no
 fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 fi
-echo "$as_me:13087: result: $ac_cv_header_time" >&5
+echo "$as_me:13144: result: $ac_cv_header_time" >&5
 echo "${ECHO_T}$ac_cv_header_time" >&6
 if test $ac_cv_header_time = yes; then
 
@@ -13097,13 +13154,13 @@ fi
 ac_header_dirent=no
 for ac_hdr in dirent.h sys/ndir.h sys/dir.h ndir.h; do
   as_ac_Header=`echo "ac_cv_header_dirent_$ac_hdr" | $as_tr_sh`
-echo "$as_me:13100: checking for $ac_hdr that defines DIR" >&5
+echo "$as_me:13157: checking for $ac_hdr that defines DIR" >&5
 echo $ECHO_N "checking for $ac_hdr that defines DIR... $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 13106 "configure"
+#line 13163 "configure"
 #include "confdefs.h"
 #include <sys/types.h>
 #include <$ac_hdr>
@@ -13118,16 +13175,16 @@ return 0;
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:13121: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:13178: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:13124: \$? = $ac_status" >&5
+  echo "$as_me:13181: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:13127: \"$ac_try\"") >&5
+  { (eval echo "$as_me:13184: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:13130: \$? = $ac_status" >&5
+  echo "$as_me:13187: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   eval "$as_ac_Header=yes"
 else
@@ -13137,7 +13194,7 @@ eval "$as_ac_Header=no"
 fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 fi
-echo "$as_me:13140: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:13197: 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
@@ -13150,7 +13207,7 @@ fi
 done
 # Two versions of opendir et al. are in -ldir and -lx on SCO Xenix.
 if test $ac_header_dirent = dirent.h; then
-  echo "$as_me:13153: checking for opendir in -ldir" >&5
+  echo "$as_me:13210: checking for opendir in -ldir" >&5
 echo $ECHO_N "checking for opendir in -ldir... $ECHO_C" >&6
 if test "${ac_cv_lib_dir_opendir+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -13158,7 +13215,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-ldir  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 13161 "configure"
+#line 13218 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -13177,16 +13234,16 @@ opendir ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:13180: \"$ac_link\"") >&5
+if { (eval echo "$as_me:13237: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:13183: \$? = $ac_status" >&5
+  echo "$as_me:13240: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:13186: \"$ac_try\"") >&5
+  { (eval echo "$as_me:13243: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:13189: \$? = $ac_status" >&5
+  echo "$as_me:13246: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_dir_opendir=yes
 else
@@ -13197,14 +13254,14 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:13200: result: $ac_cv_lib_dir_opendir" >&5
+echo "$as_me:13257: result: $ac_cv_lib_dir_opendir" >&5
 echo "${ECHO_T}$ac_cv_lib_dir_opendir" >&6
 if test $ac_cv_lib_dir_opendir = yes; then
   LIBS="$LIBS -ldir"
 fi
 
 else
-  echo "$as_me:13207: checking for opendir in -lx" >&5
+  echo "$as_me:13264: checking for opendir in -lx" >&5
 echo $ECHO_N "checking for opendir in -lx... $ECHO_C" >&6
 if test "${ac_cv_lib_x_opendir+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -13212,7 +13269,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lx  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 13215 "configure"
+#line 13272 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -13231,16 +13288,16 @@ opendir ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:13234: \"$ac_link\"") >&5
+if { (eval echo "$as_me:13291: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:13237: \$? = $ac_status" >&5
+  echo "$as_me:13294: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:13240: \"$ac_try\"") >&5
+  { (eval echo "$as_me:13297: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:13243: \$? = $ac_status" >&5
+  echo "$as_me:13300: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_x_opendir=yes
 else
@@ -13251,7 +13308,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:13254: result: $ac_cv_lib_x_opendir" >&5
+echo "$as_me:13311: result: $ac_cv_lib_x_opendir" >&5
 echo "${ECHO_T}$ac_cv_lib_x_opendir" >&6
 if test $ac_cv_lib_x_opendir = yes; then
   LIBS="$LIBS -lx"
@@ -13279,23 +13336,23 @@ for ac_header in \
 
 do
 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:13282: checking for $ac_header" >&5
+echo "$as_me:13339: 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 13288 "configure"
+#line 13345 "configure"
 #include "confdefs.h"
 #include <$ac_header>
 _ACEOF
-if { (eval echo "$as_me:13292: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:13349: \"$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:13298: \$? = $ac_status" >&5
+  echo "$as_me:13355: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -13314,7 +13371,7 @@ else
 fi
 rm -f conftest.err conftest.$ac_ext
 fi
-echo "$as_me:13317: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:13374: 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
@@ -13324,14 +13381,14 @@ EOF
 fi
 done
 
-echo "$as_me:13327: checking termio.h and termios.h" >&5
+echo "$as_me:13384: checking termio.h and termios.h" >&5
 echo $ECHO_N "checking termio.h and termios.h... $ECHO_C" >&6
 if test "${cf_cv_termio_and_termios+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
     cat >conftest.$ac_ext <<_ACEOF
-#line 13334 "configure"
+#line 13391 "configure"
 #include "confdefs.h"
 
 #if HAVE_TERMIO_H
@@ -13349,16 +13406,16 @@ putchar (0x0a)
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:13352: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:13409: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:13355: \$? = $ac_status" >&5
+  echo "$as_me:13412: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:13358: \"$ac_try\"") >&5
+  { (eval echo "$as_me:13415: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:13361: \$? = $ac_status" >&5
+  echo "$as_me:13418: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_termio_and_termios=yes
 else
@@ -13369,20 +13426,20 @@ fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 fi
 
-echo "$as_me:13372: result: $cf_cv_termio_and_termios" >&5
+echo "$as_me:13429: result: $cf_cv_termio_and_termios" >&5
 echo "${ECHO_T}$cf_cv_termio_and_termios" >&6
 test $cf_cv_termio_and_termios = no && cat >>confdefs.h <<\EOF
 #define TERMIO_AND_TERMIOS 1
 EOF
 
-echo "$as_me:13378: checking for sigaction and structs" >&5
+echo "$as_me:13435: checking for sigaction and structs" >&5
 echo $ECHO_N "checking for sigaction and structs... $ECHO_C" >&6
 if test "${cf_cv_func_sigaction+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 cat >conftest.$ac_ext <<_ACEOF
-#line 13385 "configure"
+#line 13442 "configure"
 #include "confdefs.h"
 
 #include <sys/types.h>
@@ -13402,16 +13459,16 @@ struct sigaction act;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:13405: \"$ac_link\"") >&5
+if { (eval echo "$as_me:13462: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:13408: \$? = $ac_status" >&5
+  echo "$as_me:13465: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:13411: \"$ac_try\"") >&5
+  { (eval echo "$as_me:13468: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:13414: \$? = $ac_status" >&5
+  echo "$as_me:13471: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_func_sigaction=yes
 else
@@ -13422,7 +13479,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 
 fi
-echo "$as_me:13425: result: $cf_cv_func_sigaction" >&5
+echo "$as_me:13482: result: $cf_cv_func_sigaction" >&5
 echo "${ECHO_T}$cf_cv_func_sigaction" >&6
 test "$cf_cv_func_sigaction" = yes && cat >>confdefs.h <<\EOF
 #define HAVE_SIGACTION 1
@@ -13431,23 +13488,23 @@ EOF
 for ac_header in sys/wait.h
 do
 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:13434: checking for $ac_header" >&5
+echo "$as_me:13491: 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 13440 "configure"
+#line 13497 "configure"
 #include "confdefs.h"
 #include <$ac_header>
 _ACEOF
-if { (eval echo "$as_me:13444: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:13501: \"$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:13450: \$? = $ac_status" >&5
+  echo "$as_me:13507: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -13466,7 +13523,7 @@ else
 fi
 rm -f conftest.err conftest.$ac_ext
 fi
-echo "$as_me:13469: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:13526: 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
@@ -13487,23 +13544,23 @@ else
 for ac_header in wait.h
 do
 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:13490: checking for $ac_header" >&5
+echo "$as_me:13547: 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 13496 "configure"
+#line 13553 "configure"
 #include "confdefs.h"
 #include <$ac_header>
 _ACEOF
-if { (eval echo "$as_me:13500: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:13557: \"$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:13506: \$? = $ac_status" >&5
+  echo "$as_me:13563: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -13522,7 +13579,7 @@ else
 fi
 rm -f conftest.err conftest.$ac_ext
 fi
-echo "$as_me:13525: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:13582: 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
@@ -13535,23 +13592,23 @@ done
 for ac_header in waitstatus.h
 do
 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:13538: checking for $ac_header" >&5
+echo "$as_me:13595: 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 13544 "configure"
+#line 13601 "configure"
 #include "confdefs.h"
 #include <$ac_header>
 _ACEOF
-if { (eval echo "$as_me:13548: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:13605: \"$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:13554: \$? = $ac_status" >&5
+  echo "$as_me:13611: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -13570,7 +13627,7 @@ else
 fi
 rm -f conftest.err conftest.$ac_ext
 fi
-echo "$as_me:13573: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:13630: 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
@@ -13592,14 +13649,14 @@ cf_wait_headers="$cf_wait_headers
 fi
 fi
 
-echo "$as_me:13595: checking for union wait" >&5
+echo "$as_me:13652: checking for union wait" >&5
 echo $ECHO_N "checking for union wait... $ECHO_C" >&6
 if test "${cf_cv_type_unionwait+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 	cat >conftest.$ac_ext <<_ACEOF
-#line 13602 "configure"
+#line 13659 "configure"
 #include "confdefs.h"
 $cf_wait_headers
 int
@@ -13615,16 +13672,16 @@ int x;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:13618: \"$ac_link\"") >&5
+if { (eval echo "$as_me:13675: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:13621: \$? = $ac_status" >&5
+  echo "$as_me:13678: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:13624: \"$ac_try\"") >&5
+  { (eval echo "$as_me:13681: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:13627: \$? = $ac_status" >&5
+  echo "$as_me:13684: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_type_unionwait=no
 	 echo compiles ok w/o union wait 1>&5
@@ -13634,7 +13691,7 @@ else
 cat conftest.$ac_ext >&5
 
 	cat >conftest.$ac_ext <<_ACEOF
-#line 13637 "configure"
+#line 13694 "configure"
 #include "confdefs.h"
 $cf_wait_headers
 int
@@ -13654,16 +13711,16 @@ union wait x;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:13657: \"$ac_link\"") >&5
+if { (eval echo "$as_me:13714: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:13660: \$? = $ac_status" >&5
+  echo "$as_me:13717: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:13663: \"$ac_try\"") >&5
+  { (eval echo "$as_me:13720: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:13666: \$? = $ac_status" >&5
+  echo "$as_me:13723: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_type_unionwait=yes
 	 echo compiles ok with union wait and possibly macros too 1>&5
@@ -13678,7 +13735,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
 
-echo "$as_me:13681: result: $cf_cv_type_unionwait" >&5
+echo "$as_me:13738: result: $cf_cv_type_unionwait" >&5
 echo "${ECHO_T}$cf_cv_type_unionwait" >&6
 test $cf_cv_type_unionwait = yes && cat >>confdefs.h <<\EOF
 #define HAVE_TYPE_UNIONWAIT 1
@@ -13686,14 +13743,14 @@ EOF
 
 if test $cf_cv_type_unionwait = yes; then
 
-	echo "$as_me:13689: checking if union wait can be used as wait-arg" >&5
+	echo "$as_me:13746: checking if union wait can be used as wait-arg" >&5
 echo $ECHO_N "checking if union wait can be used as wait-arg... $ECHO_C" >&6
 	if test "${cf_cv_arg_union_wait+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 		cat >conftest.$ac_ext <<_ACEOF
-#line 13696 "configure"
+#line 13753 "configure"
 #include "confdefs.h"
 $cf_wait_headers
 int
@@ -13705,16 +13762,16 @@ union wait x; wait(&x)
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:13708: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:13765: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:13711: \$? = $ac_status" >&5
+  echo "$as_me:13768: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:13714: \"$ac_try\"") >&5
+  { (eval echo "$as_me:13771: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:13717: \$? = $ac_status" >&5
+  echo "$as_me:13774: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_arg_union_wait=yes
 else
@@ -13726,20 +13783,20 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 
 fi
 
-	echo "$as_me:13729: result: $cf_cv_arg_union_wait" >&5
+	echo "$as_me:13786: result: $cf_cv_arg_union_wait" >&5
 echo "${ECHO_T}$cf_cv_arg_union_wait" >&6
 	test $cf_cv_arg_union_wait = yes && cat >>confdefs.h <<\EOF
 #define WAIT_USES_UNION 1
 EOF
 
-	echo "$as_me:13735: checking if union wait can be used as waitpid-arg" >&5
+	echo "$as_me:13792: checking if union wait can be used as waitpid-arg" >&5
 echo $ECHO_N "checking if union wait can be used as waitpid-arg... $ECHO_C" >&6
 	if test "${cf_cv_arg_union_waitpid+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 		cat >conftest.$ac_ext <<_ACEOF
-#line 13742 "configure"
+#line 13799 "configure"
 #include "confdefs.h"
 $cf_wait_headers
 int
@@ -13751,16 +13808,16 @@ union wait x; waitpid(0, &x, 0)
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:13754: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:13811: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:13757: \$? = $ac_status" >&5
+  echo "$as_me:13814: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:13760: \"$ac_try\"") >&5
+  { (eval echo "$as_me:13817: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:13763: \$? = $ac_status" >&5
+  echo "$as_me:13820: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_arg_union_waitpid=yes
 else
@@ -13772,7 +13829,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 
 fi
 
-	echo "$as_me:13775: result: $cf_cv_arg_union_waitpid" >&5
+	echo "$as_me:13832: result: $cf_cv_arg_union_waitpid" >&5
 echo "${ECHO_T}$cf_cv_arg_union_waitpid" >&6
 	test $cf_cv_arg_union_waitpid = yes && cat >>confdefs.h <<\EOF
 #define WAITPID_USES_UNION 1
@@ -13783,23 +13840,23 @@ fi
 for ac_header in stdarg.h varargs.h
 do
 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:13786: checking for $ac_header" >&5
+echo "$as_me:13843: 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 13792 "configure"
+#line 13849 "configure"
 #include "confdefs.h"
 #include <$ac_header>
 _ACEOF
-if { (eval echo "$as_me:13796: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:13853: \"$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:13802: \$? = $ac_status" >&5
+  echo "$as_me:13859: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -13818,7 +13875,7 @@ else
 fi
 rm -f conftest.err conftest.$ac_ext
 fi
-echo "$as_me:13821: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:13878: 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
@@ -13828,14 +13885,14 @@ EOF
 fi
 done
 
-echo "$as_me:13831: checking for standard varargs" >&5
+echo "$as_me:13888: checking for standard varargs" >&5
 echo $ECHO_N "checking for standard varargs... $ECHO_C" >&6
 if test "${cf_cv_ansi_varargs+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 	cat >conftest.$ac_ext <<_ACEOF
-#line 13838 "configure"
+#line 13895 "configure"
 #include "confdefs.h"
 
 #if HAVE_STDARG_H
@@ -13855,16 +13912,16 @@ return 0;} int foo(char *fmt,...){va_list args;va_start(args,fmt);va_end(args)
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:13858: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:13915: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:13861: \$? = $ac_status" >&5
+  echo "$as_me:13918: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:13864: \"$ac_try\"") >&5
+  { (eval echo "$as_me:13921: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:13867: \$? = $ac_status" >&5
+  echo "$as_me:13924: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_ansi_varargs=yes
 else
@@ -13876,19 +13933,19 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 
 fi
 
-echo "$as_me:13879: result: $cf_cv_ansi_varargs" >&5
+echo "$as_me:13936: result: $cf_cv_ansi_varargs" >&5
 echo "${ECHO_T}$cf_cv_ansi_varargs" >&6
 test $cf_cv_ansi_varargs = yes && cat >>confdefs.h <<\EOF
 #define ANSI_VARARGS 1
 EOF
 
-echo "$as_me:13885: checking for uid_t in sys/types.h" >&5
+echo "$as_me:13942: checking for uid_t in sys/types.h" >&5
 echo $ECHO_N "checking for uid_t in sys/types.h... $ECHO_C" >&6
 if test "${ac_cv_type_uid_t+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 13891 "configure"
+#line 13948 "configure"
 #include "confdefs.h"
 #include <sys/types.h>
 
@@ -13902,7 +13959,7 @@ fi
 rm -f conftest*
 
 fi
-echo "$as_me:13905: result: $ac_cv_type_uid_t" >&5
+echo "$as_me:13962: result: $ac_cv_type_uid_t" >&5
 echo "${ECHO_T}$ac_cv_type_uid_t" >&6
 if test $ac_cv_type_uid_t = no; then
 
@@ -13916,7 +13973,7 @@ EOF
 
 fi
 
-echo "$as_me:13919: checking type of array argument to getgroups" >&5
+echo "$as_me:13976: checking type of array argument to getgroups" >&5
 echo $ECHO_N "checking type of array argument to getgroups... $ECHO_C" >&6
 if test "${ac_cv_type_getgroups+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -13925,7 +13982,7 @@ else
   ac_cv_type_getgroups=cross
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 13928 "configure"
+#line 13985 "configure"
 #include "confdefs.h"
 /* Thanks to Mike Rendell for this test.  */
 #include <sys/types.h>
@@ -13951,15 +14008,15 @@ main ()
 }
 _ACEOF
 rm -f conftest$ac_exeext
-if { (eval echo "$as_me:13954: \"$ac_link\"") >&5
+if { (eval echo "$as_me:14011: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:13957: \$? = $ac_status" >&5
+  echo "$as_me:14014: \$? = $ac_status" >&5
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
-  { (eval echo "$as_me:13959: \"$ac_try\"") >&5
+  { (eval echo "$as_me:14016: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:13962: \$? = $ac_status" >&5
+  echo "$as_me:14019: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_type_getgroups=gid_t
 else
@@ -13972,7 +14029,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
 fi
 if test $ac_cv_type_getgroups = cross; then
         cat >conftest.$ac_ext <<_ACEOF
-#line 13975 "configure"
+#line 14032 "configure"
 #include "confdefs.h"
 #include <unistd.h>
 
@@ -13987,20 +14044,20 @@ rm -f conftest*
 
 fi
 fi
-echo "$as_me:13990: result: $ac_cv_type_getgroups" >&5
+echo "$as_me:14047: result: $ac_cv_type_getgroups" >&5
 echo "${ECHO_T}$ac_cv_type_getgroups" >&6
 
 cat >>confdefs.h <<EOF
 #define GETGROUPS_T $ac_cv_type_getgroups
 EOF
 
-echo "$as_me:13997: checking for pid_t" >&5
+echo "$as_me:14054: checking for pid_t" >&5
 echo $ECHO_N "checking for pid_t... $ECHO_C" >&6
 if test "${ac_cv_type_pid_t+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 14003 "configure"
+#line 14060 "configure"
 #include "confdefs.h"
 $ac_includes_default
 int
@@ -14015,16 +14072,16 @@ if (sizeof (pid_t))
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:14018: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:14075: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:14021: \$? = $ac_status" >&5
+  echo "$as_me:14078: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:14024: \"$ac_try\"") >&5
+  { (eval echo "$as_me:14081: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:14027: \$? = $ac_status" >&5
+  echo "$as_me:14084: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_type_pid_t=yes
 else
@@ -14034,7 +14091,7 @@ ac_cv_type_pid_t=no
 fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 fi
-echo "$as_me:14037: result: $ac_cv_type_pid_t" >&5
+echo "$as_me:14094: result: $ac_cv_type_pid_t" >&5
 echo "${ECHO_T}$ac_cv_type_pid_t" >&6
 if test $ac_cv_type_pid_t = yes; then
   :
@@ -14046,13 +14103,13 @@ EOF
 
 fi
 
-echo "$as_me:14049: checking for uid_t in sys/types.h" >&5
+echo "$as_me:14106: checking for uid_t in sys/types.h" >&5
 echo $ECHO_N "checking for uid_t in sys/types.h... $ECHO_C" >&6
 if test "${ac_cv_type_uid_t+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 14055 "configure"
+#line 14112 "configure"
 #include "confdefs.h"
 #include <sys/types.h>
 
@@ -14066,7 +14123,7 @@ fi
 rm -f conftest*
 
 fi
-echo "$as_me:14069: result: $ac_cv_type_uid_t" >&5
+echo "$as_me:14126: result: $ac_cv_type_uid_t" >&5
 echo "${ECHO_T}$ac_cv_type_uid_t" >&6
 if test $ac_cv_type_uid_t = no; then
 
@@ -14080,13 +14137,13 @@ EOF
 
 fi
 
-echo "$as_me:14083: checking for mode_t" >&5
+echo "$as_me:14140: checking for mode_t" >&5
 echo $ECHO_N "checking for mode_t... $ECHO_C" >&6
 if test "${ac_cv_type_mode_t+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 14089 "configure"
+#line 14146 "configure"
 #include "confdefs.h"
 $ac_includes_default
 int
@@ -14101,16 +14158,16 @@ if (sizeof (mode_t))
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:14104: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:14161: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:14107: \$? = $ac_status" >&5
+  echo "$as_me:14164: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:14110: \"$ac_try\"") >&5
+  { (eval echo "$as_me:14167: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:14113: \$? = $ac_status" >&5
+  echo "$as_me:14170: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_type_mode_t=yes
 else
@@ -14120,7 +14177,7 @@ ac_cv_type_mode_t=no
 fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 fi
-echo "$as_me:14123: result: $ac_cv_type_mode_t" >&5
+echo "$as_me:14180: result: $ac_cv_type_mode_t" >&5
 echo "${ECHO_T}$ac_cv_type_mode_t" >&6
 if test $ac_cv_type_mode_t = yes; then
   :
@@ -14134,13 +14191,13 @@ fi
 
 # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
 # for constant arguments.  Useless!
-echo "$as_me:14137: checking for working alloca.h" >&5
+echo "$as_me:14194: checking for working alloca.h" >&5
 echo $ECHO_N "checking for working alloca.h... $ECHO_C" >&6
 if test "${ac_cv_working_alloca_h+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 14143 "configure"
+#line 14200 "configure"
 #include "confdefs.h"
 #include <alloca.h>
 int
@@ -14152,16 +14209,16 @@ char *p = (char *) alloca (2 * sizeof (int));
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:14155: \"$ac_link\"") >&5
+if { (eval echo "$as_me:14212: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:14158: \$? = $ac_status" >&5
+  echo "$as_me:14215: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:14161: \"$ac_try\"") >&5
+  { (eval echo "$as_me:14218: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:14164: \$? = $ac_status" >&5
+  echo "$as_me:14221: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_working_alloca_h=yes
 else
@@ -14171,7 +14228,7 @@ ac_cv_working_alloca_h=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:14174: result: $ac_cv_working_alloca_h" >&5
+echo "$as_me:14231: result: $ac_cv_working_alloca_h" >&5
 echo "${ECHO_T}$ac_cv_working_alloca_h" >&6
 if test $ac_cv_working_alloca_h = yes; then
 
@@ -14181,13 +14238,13 @@ EOF
 
 fi
 
-echo "$as_me:14184: checking for alloca" >&5
+echo "$as_me:14241: checking for alloca" >&5
 echo $ECHO_N "checking for alloca... $ECHO_C" >&6
 if test "${ac_cv_func_alloca_works+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 14190 "configure"
+#line 14247 "configure"
 #include "confdefs.h"
 #ifdef __GNUC__
 # define alloca __builtin_alloca
@@ -14219,16 +14276,16 @@ char *p = (char *) alloca (1);
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:14222: \"$ac_link\"") >&5
+if { (eval echo "$as_me:14279: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:14225: \$? = $ac_status" >&5
+  echo "$as_me:14282: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:14228: \"$ac_try\"") >&5
+  { (eval echo "$as_me:14285: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:14231: \$? = $ac_status" >&5
+  echo "$as_me:14288: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_func_alloca_works=yes
 else
@@ -14238,7 +14295,7 @@ ac_cv_func_alloca_works=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:14241: result: $ac_cv_func_alloca_works" >&5
+echo "$as_me:14298: result: $ac_cv_func_alloca_works" >&5
 echo "${ECHO_T}$ac_cv_func_alloca_works" >&6
 
 if test $ac_cv_func_alloca_works = yes; then
@@ -14259,13 +14316,13 @@ cat >>confdefs.h <<\EOF
 #define C_ALLOCA 1
 EOF
 
-echo "$as_me:14262: checking whether \`alloca.c' needs Cray hooks" >&5
+echo "$as_me:14319: checking whether \`alloca.c' needs Cray hooks" >&5
 echo $ECHO_N "checking whether \`alloca.c' needs Cray hooks... $ECHO_C" >&6
 if test "${ac_cv_os_cray+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 14268 "configure"
+#line 14325 "configure"
 #include "confdefs.h"
 #if defined(CRAY) && ! defined(CRAY2)
 webecray
@@ -14283,18 +14340,18 @@ fi
 rm -f conftest*
 
 fi
-echo "$as_me:14286: result: $ac_cv_os_cray" >&5
+echo "$as_me:14343: result: $ac_cv_os_cray" >&5
 echo "${ECHO_T}$ac_cv_os_cray" >&6
 if test $ac_cv_os_cray = yes; then
   for ac_func in _getb67 GETB67 getb67; do
     as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
-echo "$as_me:14291: checking for $ac_func" >&5
+echo "$as_me:14348: 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 14297 "configure"
+#line 14354 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char $ac_func (); below.  */
@@ -14325,16 +14382,16 @@ f = $ac_func;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:14328: \"$ac_link\"") >&5
+if { (eval echo "$as_me:14385: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:14331: \$? = $ac_status" >&5
+  echo "$as_me:14388: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:14334: \"$ac_try\"") >&5
+  { (eval echo "$as_me:14391: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:14337: \$? = $ac_status" >&5
+  echo "$as_me:14394: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   eval "$as_ac_var=yes"
 else
@@ -14344,7 +14401,7 @@ eval "$as_ac_var=no"
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:14347: result: `eval echo '${'$as_ac_var'}'`" >&5
+echo "$as_me:14404: 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
 
@@ -14358,7 +14415,7 @@ fi
   done
 fi
 
-echo "$as_me:14361: checking stack direction for C alloca" >&5
+echo "$as_me:14418: checking stack direction for C alloca" >&5
 echo $ECHO_N "checking stack direction for C alloca... $ECHO_C" >&6
 if test "${ac_cv_c_stack_direction+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -14367,7 +14424,7 @@ else
   ac_cv_c_stack_direction=0
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 14370 "configure"
+#line 14427 "configure"
 #include "confdefs.h"
 int
 find_stack_direction ()
@@ -14390,15 +14447,15 @@ main ()
 }
 _ACEOF
 rm -f conftest$ac_exeext
-if { (eval echo "$as_me:14393: \"$ac_link\"") >&5
+if { (eval echo "$as_me:14450: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:14396: \$? = $ac_status" >&5
+  echo "$as_me:14453: \$? = $ac_status" >&5
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
-  { (eval echo "$as_me:14398: \"$ac_try\"") >&5
+  { (eval echo "$as_me:14455: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:14401: \$? = $ac_status" >&5
+  echo "$as_me:14458: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_c_stack_direction=1
 else
@@ -14410,7 +14467,7 @@ fi
 rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
 fi
 fi
-echo "$as_me:14413: result: $ac_cv_c_stack_direction" >&5
+echo "$as_me:14470: result: $ac_cv_c_stack_direction" >&5
 echo "${ECHO_T}$ac_cv_c_stack_direction" >&6
 
 cat >>confdefs.h <<EOF
@@ -14422,23 +14479,23 @@ fi
 for ac_header in unistd.h vfork.h
 do
 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:14425: checking for $ac_header" >&5
+echo "$as_me:14482: 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 14431 "configure"
+#line 14488 "configure"
 #include "confdefs.h"
 #include <$ac_header>
 _ACEOF
-if { (eval echo "$as_me:14435: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:14492: \"$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:14441: \$? = $ac_status" >&5
+  echo "$as_me:14498: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -14457,7 +14514,7 @@ else
 fi
 rm -f conftest.err conftest.$ac_ext
 fi
-echo "$as_me:14460: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:14517: 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
@@ -14470,13 +14527,13 @@ done
 for ac_func in fork vfork
 do
 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
-echo "$as_me:14473: checking for $ac_func" >&5
+echo "$as_me:14530: 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 14479 "configure"
+#line 14536 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char $ac_func (); below.  */
@@ -14507,16 +14564,16 @@ f = $ac_func;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:14510: \"$ac_link\"") >&5
+if { (eval echo "$as_me:14567: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:14513: \$? = $ac_status" >&5
+  echo "$as_me:14570: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:14516: \"$ac_try\"") >&5
+  { (eval echo "$as_me:14573: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:14519: \$? = $ac_status" >&5
+  echo "$as_me:14576: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   eval "$as_ac_var=yes"
 else
@@ -14526,7 +14583,7 @@ eval "$as_ac_var=no"
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:14529: result: `eval echo '${'$as_ac_var'}'`" >&5
+echo "$as_me:14586: 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
@@ -14538,7 +14595,7 @@ done
 
 ac_cv_func_fork_works=$ac_cv_func_fork
 if test "x$ac_cv_func_fork" = xyes; then
-  echo "$as_me:14541: checking for working fork" >&5
+  echo "$as_me:14598: checking for working fork" >&5
 echo $ECHO_N "checking for working fork... $ECHO_C" >&6
 if test "${ac_cv_func_fork_works+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -14561,15 +14618,15 @@ else
       }
 _ACEOF
 rm -f conftest$ac_exeext
-if { (eval echo "$as_me:14564: \"$ac_link\"") >&5
+if { (eval echo "$as_me:14621: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:14567: \$? = $ac_status" >&5
+  echo "$as_me:14624: \$? = $ac_status" >&5
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
-  { (eval echo "$as_me:14569: \"$ac_try\"") >&5
+  { (eval echo "$as_me:14626: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:14572: \$? = $ac_status" >&5
+  echo "$as_me:14629: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_func_fork_works=yes
 else
@@ -14581,7 +14638,7 @@ fi
 rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
 fi
 fi
-echo "$as_me:14584: result: $ac_cv_func_fork_works" >&5
+echo "$as_me:14641: result: $ac_cv_func_fork_works" >&5
 echo "${ECHO_T}$ac_cv_func_fork_works" >&6
 
 fi
@@ -14595,12 +14652,12 @@ if test "x$ac_cv_func_fork_works" = xcross; then
       ac_cv_func_fork_works=yes
       ;;
   esac
-  { echo "$as_me:14598: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&5
+  { echo "$as_me:14655: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&5
 echo "$as_me: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&2;}
 fi
 ac_cv_func_vfork_works=$ac_cv_func_vfork
 if test "x$ac_cv_func_vfork" = xyes; then
-  echo "$as_me:14603: checking for working vfork" >&5
+  echo "$as_me:14660: checking for working vfork" >&5
 echo $ECHO_N "checking for working vfork... $ECHO_C" >&6
 if test "${ac_cv_func_vfork_works+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -14609,7 +14666,7 @@ else
   ac_cv_func_vfork_works=cross
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 14612 "configure"
+#line 14669 "configure"
 #include "confdefs.h"
 /* Thanks to Paul Eggert for this test.  */
 #include <stdio.h>
@@ -14706,15 +14763,15 @@ main ()
 }
 _ACEOF
 rm -f conftest$ac_exeext
-if { (eval echo "$as_me:14709: \"$ac_link\"") >&5
+if { (eval echo "$as_me:14766: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:14712: \$? = $ac_status" >&5
+  echo "$as_me:14769: \$? = $ac_status" >&5
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
-  { (eval echo "$as_me:14714: \"$ac_try\"") >&5
+  { (eval echo "$as_me:14771: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:14717: \$? = $ac_status" >&5
+  echo "$as_me:14774: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_func_vfork_works=yes
 else
@@ -14726,13 +14783,13 @@ fi
 rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
 fi
 fi
-echo "$as_me:14729: result: $ac_cv_func_vfork_works" >&5
+echo "$as_me:14786: 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:14735: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&5
+  { echo "$as_me:14792: 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
 
@@ -14757,14 +14814,14 @@ EOF
 
 fi
 
-echo "$as_me:14760: checking if we should use fcntl or ioctl" >&5
+echo "$as_me:14817: 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 14767 "configure"
+#line 14824 "configure"
 #include "confdefs.h"
 
 #include <sys/types.h>
@@ -14781,16 +14838,16 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:14784: \"$ac_link\"") >&5
+if { (eval echo "$as_me:14841: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:14787: \$? = $ac_status" >&5
+  echo "$as_me:14844: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:14790: \"$ac_try\"") >&5
+  { (eval echo "$as_me:14847: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:14793: \$? = $ac_status" >&5
+  echo "$as_me:14850: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_fionbio=ioctl
 else
@@ -14798,7 +14855,7 @@ else
 cat conftest.$ac_ext >&5
 
 cat >conftest.$ac_ext <<_ACEOF
-#line 14801 "configure"
+#line 14858 "configure"
 #include "confdefs.h"
 
 #include <sys/types.h>
@@ -14820,16 +14877,16 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:14823: \"$ac_link\"") >&5
+if { (eval echo "$as_me:14880: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:14826: \$? = $ac_status" >&5
+  echo "$as_me:14883: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:14829: \"$ac_try\"") >&5
+  { (eval echo "$as_me:14886: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:14832: \$? = $ac_status" >&5
+  echo "$as_me:14889: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_fionbio=fcntl
 else
@@ -14842,20 +14899,20 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 
 fi
-echo "$as_me:14845: result: $cf_cv_fionbio" >&5
+echo "$as_me:14902: 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:14851: checking for broken/missing definition of remove" >&5
+echo "$as_me:14908: 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 14858 "configure"
+#line 14915 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 int
@@ -14867,23 +14924,23 @@ remove("dummy")
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:14870: \"$ac_link\"") >&5
+if { (eval echo "$as_me:14927: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:14873: \$? = $ac_status" >&5
+  echo "$as_me:14930: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:14876: \"$ac_try\"") >&5
+  { (eval echo "$as_me:14933: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:14879: \$? = $ac_status" >&5
+  echo "$as_me:14936: \$? = $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 14886 "configure"
+#line 14943 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 		int __unlink(name) { return unlink(name); }
@@ -14896,16 +14953,16 @@ remove("dummy")
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:14899: \"$ac_link\"") >&5
+if { (eval echo "$as_me:14956: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:14902: \$? = $ac_status" >&5
+  echo "$as_me:14959: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:14905: \"$ac_try\"") >&5
+  { (eval echo "$as_me:14962: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:14908: \$? = $ac_status" >&5
+  echo "$as_me:14965: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_baddef_remove=yes
 else
@@ -14920,20 +14977,20 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 
 fi
 
-echo "$as_me:14923: result: $cf_cv_baddef_remove" >&5
+echo "$as_me:14980: 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:14929: checking for lstat" >&5
+echo "$as_me:14986: 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 14936 "configure"
+#line 14993 "configure"
 #include "confdefs.h"
 
 #include <sys/types.h>
@@ -14947,16 +15004,16 @@ lstat(".", (struct stat *)0)
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:14950: \"$ac_link\"") >&5
+if { (eval echo "$as_me:15007: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:14953: \$? = $ac_status" >&5
+  echo "$as_me:15010: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:14956: \"$ac_try\"") >&5
+  { (eval echo "$as_me:15013: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:14959: \$? = $ac_status" >&5
+  echo "$as_me:15016: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_func_lstat=yes
 else
@@ -14968,7 +15025,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 
 fi
 
-echo "$as_me:14971: result: $ac_cv_func_lstat " >&5
+echo "$as_me:15028: result: $ac_cv_func_lstat " >&5
 echo "${ECHO_T}$ac_cv_func_lstat " >&6
 if test $ac_cv_func_lstat = yes; then
 	cat >>confdefs.h <<\EOF
@@ -15000,13 +15057,13 @@ for ac_func in \
 
 do
 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
-echo "$as_me:15003: checking for $ac_func" >&5
+echo "$as_me:15060: 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 15009 "configure"
+#line 15066 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char $ac_func (); below.  */
@@ -15037,16 +15094,16 @@ f = $ac_func;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:15040: \"$ac_link\"") >&5
+if { (eval echo "$as_me:15097: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:15043: \$? = $ac_status" >&5
+  echo "$as_me:15100: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:15046: \"$ac_try\"") >&5
+  { (eval echo "$as_me:15103: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:15049: \$? = $ac_status" >&5
+  echo "$as_me:15106: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   eval "$as_ac_var=yes"
 else
@@ -15056,7 +15113,7 @@ eval "$as_ac_var=no"
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:15059: result: `eval echo '${'$as_ac_var'}'`" >&5
+echo "$as_me:15116: 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
@@ -15072,13 +15129,13 @@ for ac_func in \
 
 do
 as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh`
-echo "$as_me:15075: checking for $ac_func" >&5
+echo "$as_me:15132: 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 15081 "configure"
+#line 15138 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char $ac_func (); below.  */
@@ -15109,16 +15166,16 @@ f = $ac_func;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:15112: \"$ac_link\"") >&5
+if { (eval echo "$as_me:15169: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:15115: \$? = $ac_status" >&5
+  echo "$as_me:15172: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:15118: \"$ac_try\"") >&5
+  { (eval echo "$as_me:15175: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:15121: \$? = $ac_status" >&5
+  echo "$as_me:15178: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   eval "$as_ac_var=yes"
 else
@@ -15128,7 +15185,7 @@ eval "$as_ac_var=no"
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:15131: result: `eval echo '${'$as_ac_var'}'`" >&5
+echo "$as_me:15188: 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
@@ -15140,7 +15197,7 @@ else
 fi
 done
 
-echo "$as_me:15143: checking for random-integer functions" >&5
+echo "$as_me:15200: 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
@@ -15152,7 +15209,7 @@ do
 	cf_srand_func=`echo $cf_func | sed -e 's%/.*%%'`
 	cf_rand_func=`echo  $cf_func | sed -e 's%.*/%%'`
 cat >conftest.$ac_ext <<_ACEOF
-#line 15155 "configure"
+#line 15212 "configure"
 #include "confdefs.h"
 
 #ifdef HAVE_STDLIB_H
@@ -15171,16 +15228,16 @@ long seed = 1; $cf_srand_func(seed); seed = $cf_rand_func()
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:15174: \"$ac_link\"") >&5
+if { (eval echo "$as_me:15231: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:15177: \$? = $ac_status" >&5
+  echo "$as_me:15234: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:15180: \"$ac_try\"") >&5
+  { (eval echo "$as_me:15237: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:15183: \$? = $ac_status" >&5
+  echo "$as_me:15240: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_srand_func=$cf_func
  break
@@ -15192,10 +15249,10 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 done
 
 fi
-echo "$as_me:15195: result: $cf_cv_srand_func" >&5
+echo "$as_me:15252: 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:15198: checking for range of random-integers" >&5
+	echo "$as_me:15255: 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
@@ -15216,7 +15273,7 @@ else
 			;;
 		esac
 		cat >conftest.$ac_ext <<_ACEOF
-#line 15219 "configure"
+#line 15276 "configure"
 #include "confdefs.h"
 
 #ifdef HAVE_STDLIB_H
@@ -15235,16 +15292,16 @@ long x = $cf_cv_rand_max
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:15238: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:15295: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:15241: \$? = $ac_status" >&5
+  echo "$as_me:15298: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:15244: \"$ac_try\"") >&5
+  { (eval echo "$as_me:15301: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:15247: \$? = $ac_status" >&5
+  echo "$as_me:15304: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   :
 else
@@ -15255,7 +15312,7 @@ fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 
 fi
-echo "$as_me:15258: result: $cf_cv_rand_max" >&5
+echo "$as_me:15315: result: $cf_cv_rand_max" >&5
 echo "${ECHO_T}$cf_cv_rand_max" >&6
 	cf_srand_func=`echo $cf_func | sed -e 's%/.*%%'`
 	cf_rand_func=`echo  $cf_func | sed -e 's%.*/%%'`
@@ -15279,13 +15336,13 @@ fi
 for ac_func in strstr
 do
 
-echo "$as_me:15282: checking for $ac_func declaration" >&5
+echo "$as_me:15339: 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 15288 "configure"
+#line 15345 "configure"
 #include "confdefs.h"
 #include <string.h>
 int
@@ -15299,20 +15356,20 @@ extern	int	${ac_func}();
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:15302: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:15359: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:15305: \$? = $ac_status" >&5
+  echo "$as_me:15362: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:15308: \"$ac_try\"") >&5
+  { (eval echo "$as_me:15365: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:15311: \$? = $ac_status" >&5
+  echo "$as_me:15368: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
 
 cat >conftest.$ac_ext <<_ACEOF
-#line 15315 "configure"
+#line 15372 "configure"
 #include "confdefs.h"
 #include <string.h>
 int
@@ -15326,16 +15383,16 @@ int	(*p)() = ${ac_func};
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:15329: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:15386: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:15332: \$? = $ac_status" >&5
+  echo "$as_me:15389: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:15335: \"$ac_try\"") >&5
+  { (eval echo "$as_me:15392: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:15338: \$? = $ac_status" >&5
+  echo "$as_me:15395: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
 
 eval "ac_cv_func_decl_$ac_func=yes"
@@ -15356,11 +15413,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:15359: result: yes" >&5
+  echo "$as_me:15416: result: yes" >&5
 echo "${ECHO_T}yes" >&6
   :
 else
-  echo "$as_me:15363: result: no" >&5
+  echo "$as_me:15420: result: no" >&5
 echo "${ECHO_T}no" >&6
 
 ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%`
@@ -15375,13 +15432,13 @@ done
 for ac_func in getgrgid getgrnam
 do
 
-echo "$as_me:15378: checking for $ac_func declaration" >&5
+echo "$as_me:15435: 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 15384 "configure"
+#line 15441 "configure"
 #include "confdefs.h"
 
 #include <stdio.h>
@@ -15397,20 +15454,20 @@ extern	int	${ac_func}();
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:15400: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:15457: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:15403: \$? = $ac_status" >&5
+  echo "$as_me:15460: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:15406: \"$ac_try\"") >&5
+  { (eval echo "$as_me:15463: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:15409: \$? = $ac_status" >&5
+  echo "$as_me:15466: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
 
 cat >conftest.$ac_ext <<_ACEOF
-#line 15413 "configure"
+#line 15470 "configure"
 #include "confdefs.h"
 
 #include <stdio.h>
@@ -15426,16 +15483,16 @@ int	(*p)() = ${ac_func};
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:15429: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:15486: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:15432: \$? = $ac_status" >&5
+  echo "$as_me:15489: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:15435: \"$ac_try\"") >&5
+  { (eval echo "$as_me:15492: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:15438: \$? = $ac_status" >&5
+  echo "$as_me:15495: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
 
 eval "ac_cv_func_decl_$ac_func=yes"
@@ -15456,11 +15513,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:15459: result: yes" >&5
+  echo "$as_me:15516: result: yes" >&5
 echo "${ECHO_T}yes" >&6
   :
 else
-  echo "$as_me:15463: result: no" >&5
+  echo "$as_me:15520: result: no" >&5
 echo "${ECHO_T}no" >&6
 
 ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%`
@@ -15472,14 +15529,14 @@ EOF
 fi
 done
 
-echo "$as_me:15475: checking if TRUE/FALSE are defined" >&5
+echo "$as_me:15532: 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 15482 "configure"
+#line 15539 "configure"
 #include "confdefs.h"
 
 #include <${cf_cv_ncurses_header-curses.h}>
@@ -15493,16 +15550,16 @@ int x = TRUE, y = FALSE
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:15496: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:15553: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:15499: \$? = $ac_status" >&5
+  echo "$as_me:15556: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:15502: \"$ac_try\"") >&5
+  { (eval echo "$as_me:15559: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:15505: \$? = $ac_status" >&5
+  echo "$as_me:15562: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_bool_defs=yes
 else
@@ -15513,7 +15570,7 @@ fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 fi
 
-echo "$as_me:15516: result: $cf_cv_bool_defs" >&5
+echo "$as_me:15573: result: $cf_cv_bool_defs" >&5
 echo "${ECHO_T}$cf_cv_bool_defs" >&6
 if test "$cf_cv_bool_defs" = no ; then
 	cat >>confdefs.h <<\EOF
@@ -15526,14 +15583,14 @@ EOF
 
 fi
 
-echo "$as_me:15529: checking if external errno is declared" >&5
+echo "$as_me:15586: 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 15536 "configure"
+#line 15593 "configure"
 #include "confdefs.h"
 
 #ifdef HAVE_STDLIB_H
@@ -15551,16 +15608,16 @@ long x = (long) errno
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:15554: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:15611: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:15557: \$? = $ac_status" >&5
+  echo "$as_me:15614: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:15560: \"$ac_try\"") >&5
+  { (eval echo "$as_me:15617: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:15563: \$? = $ac_status" >&5
+  echo "$as_me:15620: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_dcl_errno=yes
 else
@@ -15571,7 +15628,7 @@ fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 
 fi
-echo "$as_me:15574: result: $cf_cv_dcl_errno" >&5
+echo "$as_me:15631: result: $cf_cv_dcl_errno" >&5
 echo "${ECHO_T}$cf_cv_dcl_errno" >&6
 
 if test "$cf_cv_dcl_errno" = no ; then
@@ -15586,14 +15643,14 @@ fi
 
 # It's possible (for near-UNIX clones) that the data doesn't exist
 
-echo "$as_me:15589: checking if external errno exists" >&5
+echo "$as_me:15646: 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 15596 "configure"
+#line 15653 "configure"
 #include "confdefs.h"
 
 #undef errno
@@ -15608,16 +15665,16 @@ errno = 2
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:15611: \"$ac_link\"") >&5
+if { (eval echo "$as_me:15668: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:15614: \$? = $ac_status" >&5
+  echo "$as_me:15671: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:15617: \"$ac_try\"") >&5
+  { (eval echo "$as_me:15674: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:15620: \$? = $ac_status" >&5
+  echo "$as_me:15677: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_have_errno=yes
 else
@@ -15628,7 +15685,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 
 fi
-echo "$as_me:15631: result: $cf_cv_have_errno" >&5
+echo "$as_me:15688: result: $cf_cv_have_errno" >&5
 echo "${ECHO_T}$cf_cv_have_errno" >&6
 
 if test "$cf_cv_have_errno" = yes ; then
@@ -15641,7 +15698,7 @@ EOF
 
 fi
 
-echo "$as_me:15644: checking if we can set errno" >&5
+echo "$as_me:15701: 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
@@ -15649,7 +15706,7 @@ else
 
 if test "$cross_compiling" = yes; then
   cat >conftest.$ac_ext <<_ACEOF
-#line 15652 "configure"
+#line 15709 "configure"
 #include "confdefs.h"
 #include <errno.h>
 int
@@ -15661,16 +15718,16 @@ errno = 255
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:15664: \"$ac_link\"") >&5
+if { (eval echo "$as_me:15721: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:15667: \$? = $ac_status" >&5
+  echo "$as_me:15724: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:15670: \"$ac_try\"") >&5
+  { (eval echo "$as_me:15727: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:15673: \$? = $ac_status" >&5
+  echo "$as_me:15730: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_set_errno=maybe
 else
@@ -15681,7 +15738,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 15684 "configure"
+#line 15741 "configure"
 #include "confdefs.h"
 
 #include <errno.h>
@@ -15692,15 +15749,15 @@ int main()
 }
 _ACEOF
 rm -f conftest$ac_exeext
-if { (eval echo "$as_me:15695: \"$ac_link\"") >&5
+if { (eval echo "$as_me:15752: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:15698: \$? = $ac_status" >&5
+  echo "$as_me:15755: \$? = $ac_status" >&5
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
-  { (eval echo "$as_me:15700: \"$ac_try\"") >&5
+  { (eval echo "$as_me:15757: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:15703: \$? = $ac_status" >&5
+  echo "$as_me:15760: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_set_errno=yes
 else
@@ -15713,20 +15770,20 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
 fi
 
 fi
-echo "$as_me:15716: result: $cf_cv_set_errno" >&5
+echo "$as_me:15773: 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:15722: checking for setlocale()" >&5
+echo "$as_me:15779: 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 15729 "configure"
+#line 15786 "configure"
 #include "confdefs.h"
 #include <locale.h>
 int
@@ -15738,16 +15795,16 @@ setlocale(LC_ALL, "")
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:15741: \"$ac_link\"") >&5
+if { (eval echo "$as_me:15798: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:15744: \$? = $ac_status" >&5
+  echo "$as_me:15801: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:15747: \"$ac_try\"") >&5
+  { (eval echo "$as_me:15804: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:15750: \$? = $ac_status" >&5
+  echo "$as_me:15807: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_locale=yes
 else
@@ -15759,21 +15816,21 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 
 fi
 
-echo "$as_me:15762: result: $cf_cv_locale" >&5
+echo "$as_me:15819: result: $cf_cv_locale" >&5
 echo "${ECHO_T}$cf_cv_locale" >&6
 test $cf_cv_locale = yes && { cat >>confdefs.h <<\EOF
 #define LOCALE 1
 EOF
  }
 
-echo "$as_me:15769: checking if NGROUPS is defined" >&5
+echo "$as_me:15826: 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 15776 "configure"
+#line 15833 "configure"
 #include "confdefs.h"
 
 #if HAVE_SYS_PARAM_H
@@ -15792,23 +15849,23 @@ int x = NGROUPS
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:15795: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:15852: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:15798: \$? = $ac_status" >&5
+  echo "$as_me:15855: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:15801: \"$ac_try\"") >&5
+  { (eval echo "$as_me:15858: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:15804: \$? = $ac_status" >&5
+  echo "$as_me:15861: \$? = $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 15811 "configure"
+#line 15868 "configure"
 #include "confdefs.h"
 
 #if HAVE_SYS_PARAM_H
@@ -15827,16 +15884,16 @@ int x = NGROUPS_MAX
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:15830: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:15887: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:15833: \$? = $ac_status" >&5
+  echo "$as_me:15890: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:15836: \"$ac_try\"") >&5
+  { (eval echo "$as_me:15893: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:15839: \$? = $ac_status" >&5
+  echo "$as_me:15896: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_ngroups=NGROUPS_MAX
 else
@@ -15848,7 +15905,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 
 fi
 rm -f conftest.$ac_objext conftest.$ac_ext
-echo "$as_me:15851: result: $cf_cv_ngroups" >&5
+echo "$as_me:15908: result: $cf_cv_ngroups" >&5
 echo "${ECHO_T}$cf_cv_ngroups" >&6
 
 fi
@@ -15865,14 +15922,14 @@ EOF
 
 fi
 
-echo "$as_me:15868: checking if external sys_nerr is declared" >&5
+echo "$as_me:15925: 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 15875 "configure"
+#line 15932 "configure"
 #include "confdefs.h"
 
 #ifdef HAVE_STDLIB_H
@@ -15890,16 +15947,16 @@ long x = (long) sys_nerr
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:15893: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:15950: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:15896: \$? = $ac_status" >&5
+  echo "$as_me:15953: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:15899: \"$ac_try\"") >&5
+  { (eval echo "$as_me:15956: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:15902: \$? = $ac_status" >&5
+  echo "$as_me:15959: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_dcl_sys_nerr=yes
 else
@@ -15910,7 +15967,7 @@ fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 
 fi
-echo "$as_me:15913: result: $cf_cv_dcl_sys_nerr" >&5
+echo "$as_me:15970: 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
@@ -15925,14 +15982,14 @@ fi
 
 # It's possible (for near-UNIX clones) that the data doesn't exist
 
-echo "$as_me:15928: checking if external sys_nerr exists" >&5
+echo "$as_me:15985: 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 15935 "configure"
+#line 15992 "configure"
 #include "confdefs.h"
 
 #undef sys_nerr
@@ -15947,16 +16004,16 @@ sys_nerr = 2
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:15950: \"$ac_link\"") >&5
+if { (eval echo "$as_me:16007: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:15953: \$? = $ac_status" >&5
+  echo "$as_me:16010: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:15956: \"$ac_try\"") >&5
+  { (eval echo "$as_me:16013: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:15959: \$? = $ac_status" >&5
+  echo "$as_me:16016: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_have_sys_nerr=yes
 else
@@ -15967,7 +16024,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 
 fi
-echo "$as_me:15970: result: $cf_cv_have_sys_nerr" >&5
+echo "$as_me:16027: 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
@@ -15980,14 +16037,14 @@ EOF
 
 fi
 
-echo "$as_me:15983: checking if external sys_errlist is declared" >&5
+echo "$as_me:16040: 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 15990 "configure"
+#line 16047 "configure"
 #include "confdefs.h"
 
 #ifdef HAVE_STDLIB_H
@@ -16005,16 +16062,16 @@ long x = (long) sys_errlist
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:16008: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:16065: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:16011: \$? = $ac_status" >&5
+  echo "$as_me:16068: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:16014: \"$ac_try\"") >&5
+  { (eval echo "$as_me:16071: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:16017: \$? = $ac_status" >&5
+  echo "$as_me:16074: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_dcl_sys_errlist=yes
 else
@@ -16025,7 +16082,7 @@ fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 
 fi
-echo "$as_me:16028: result: $cf_cv_dcl_sys_errlist" >&5
+echo "$as_me:16085: 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
@@ -16040,14 +16097,14 @@ fi
 
 # It's possible (for near-UNIX clones) that the data doesn't exist
 
-echo "$as_me:16043: checking if external sys_errlist exists" >&5
+echo "$as_me:16100: 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 16050 "configure"
+#line 16107 "configure"
 #include "confdefs.h"
 
 #undef sys_errlist
@@ -16062,16 +16119,16 @@ sys_errlist = 2
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:16065: \"$ac_link\"") >&5
+if { (eval echo "$as_me:16122: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:16068: \$? = $ac_status" >&5
+  echo "$as_me:16125: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:16071: \"$ac_try\"") >&5
+  { (eval echo "$as_me:16128: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:16074: \$? = $ac_status" >&5
+  echo "$as_me:16131: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_have_sys_errlist=yes
 else
@@ -16082,7 +16139,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 
 fi
-echo "$as_me:16085: result: $cf_cv_have_sys_errlist" >&5
+echo "$as_me:16142: 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
@@ -16098,23 +16155,23 @@ fi
 for ac_header in lastlog.h paths.h
 do
 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:16101: checking for $ac_header" >&5
+echo "$as_me:16158: 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 16107 "configure"
+#line 16164 "configure"
 #include "confdefs.h"
 #include <$ac_header>
 _ACEOF
-if { (eval echo "$as_me:16111: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:16168: \"$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:16117: \$? = $ac_status" >&5
+  echo "$as_me:16174: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -16133,7 +16190,7 @@ else
 fi
 rm -f conftest.err conftest.$ac_ext
 fi
-echo "$as_me:16136: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:16193: 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
@@ -16143,14 +16200,14 @@ EOF
 fi
 done
 
-echo "$as_me:16146: checking for lastlog path" >&5
+echo "$as_me:16203: 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 16153 "configure"
+#line 16210 "configure"
 #include "confdefs.h"
 
 #include <sys/types.h>
@@ -16170,16 +16227,16 @@ char *path = _PATH_LASTLOG
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:16173: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:16230: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:16176: \$? = $ac_status" >&5
+  echo "$as_me:16233: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:16179: \"$ac_try\"") >&5
+  { (eval echo "$as_me:16236: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:16182: \$? = $ac_status" >&5
+  echo "$as_me:16239: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_path_lastlog="_PATH_LASTLOG"
 else
@@ -16194,13 +16251,13 @@ fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 
 fi
-echo "$as_me:16197: result: $cf_cv_path_lastlog" >&5
+echo "$as_me:16254: 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:16203: checking for utmp implementation" >&5
+echo "$as_me:16260: 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
@@ -16217,7 +16274,7 @@ cf_utmp_includes="
 #endif
 "
 	cat >conftest.$ac_ext <<_ACEOF
-#line 16220 "configure"
+#line 16277 "configure"
 #include "confdefs.h"
 $cf_utmp_includes
 int
@@ -16231,16 +16288,16 @@ struct $cf_header x;
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:16234: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:16291: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:16237: \$? = $ac_status" >&5
+  echo "$as_me:16294: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:16240: \"$ac_try\"") >&5
+  { (eval echo "$as_me:16297: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:16243: \$? = $ac_status" >&5
+  echo "$as_me:16300: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_have_utmp=$cf_header
 	 break
@@ -16249,7 +16306,7 @@ else
 cat conftest.$ac_ext >&5
 
 	cat >conftest.$ac_ext <<_ACEOF
-#line 16252 "configure"
+#line 16309 "configure"
 #include "confdefs.h"
 $cf_utmp_includes
 int
@@ -16263,16 +16320,16 @@ struct $cf_header x;
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:16266: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:16323: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:16269: \$? = $ac_status" >&5
+  echo "$as_me:16326: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:16272: \"$ac_try\"") >&5
+  { (eval echo "$as_me:16329: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:16275: \$? = $ac_status" >&5
+  echo "$as_me:16332: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_have_utmp=$cf_header
 	 break
@@ -16287,7 +16344,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 done
 
 fi
-echo "$as_me:16290: result: $cf_cv_have_utmp" >&5
+echo "$as_me:16347: result: $cf_cv_have_utmp" >&5
 echo "${ECHO_T}$cf_cv_have_utmp" >&6
 
 if test $cf_cv_have_utmp != no ; then
@@ -16300,14 +16357,14 @@ EOF
 EOF
 
 if test $cf_cv_have_utmp != no ; then
-echo "$as_me:16303: checking if utmp.ut_host is declared" >&5
+echo "$as_me:16360: checking if utmp.ut_host is declared" >&5
 echo $ECHO_N "checking if 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 16310 "configure"
+#line 16367 "configure"
 #include "confdefs.h"
 
 #include <sys/types.h>
@@ -16321,16 +16378,16 @@ struct $cf_cv_have_utmp x; char *y = &x.ut_host[0]
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:16324: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:16381: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:16327: \$? = $ac_status" >&5
+  echo "$as_me:16384: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:16330: \"$ac_try\"") >&5
+  { (eval echo "$as_me:16387: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:16333: \$? = $ac_status" >&5
+  echo "$as_me:16390: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_have_utmp_ut_host=yes
 else
@@ -16342,7 +16399,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 
 fi
 
-echo "$as_me:16345: result: $cf_cv_have_utmp_ut_host" >&5
+echo "$as_me:16402: 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
 #define HAVE_UTMP_UT_HOST 1
@@ -16351,7 +16408,7 @@ EOF
 fi
 
 if test $cf_cv_have_utmp != no ; then
-echo "$as_me:16354: checking if utmp.ut_name is declared" >&5
+echo "$as_me:16411: checking if utmp.ut_name is declared" >&5
 echo $ECHO_N "checking if 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
@@ -16368,7 +16425,7 @@ cf_utmp_includes="
 "
 for cf_header in ut_name ut_user ; do
 	cat >conftest.$ac_ext <<_ACEOF
-#line 16371 "configure"
+#line 16428 "configure"
 #include "confdefs.h"
 $cf_utmp_includes
 int
@@ -16382,16 +16439,16 @@ struct $cf_cv_have_utmp x;
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:16385: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:16442: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:16388: \$? = $ac_status" >&5
+  echo "$as_me:16445: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:16391: \"$ac_try\"") >&5
+  { (eval echo "$as_me:16448: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:16394: \$? = $ac_status" >&5
+  echo "$as_me:16451: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_have_utmp_ut_name=$cf_header
 	 break
@@ -16403,12 +16460,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 done
 
 fi
-echo "$as_me:16406: result: $cf_cv_have_utmp_ut_name" >&5
+echo "$as_me:16463: 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 #(vi
 no) #(vi
-	{ { echo "$as_me:16411: error: Cannot find declaration for ut.ut_name" >&5
+	{ { echo "$as_me:16468: 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; }; }
 	;;
@@ -16422,7 +16479,7 @@ esac
 fi
 
 if test $cf_cv_have_utmp != no ; then
-echo "$as_me:16425: checking for exit-status in $cf_cv_have_utmp" >&5
+echo "$as_me:16482: 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
@@ -16435,7 +16492,7 @@ for cf_result in \
 	ut_exit.ut_exit
 do
 cat >conftest.$ac_ext <<_ACEOF
-#line 16438 "configure"
+#line 16495 "configure"
 #include "confdefs.h"
 
 #include <sys/types.h>
@@ -16449,16 +16506,16 @@ struct $cf_cv_have_utmp x; long y = x.$cf_result = 0
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:16452: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:16509: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:16455: \$? = $ac_status" >&5
+  echo "$as_me:16512: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:16458: \"$ac_try\"") >&5
+  { (eval echo "$as_me:16515: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:16461: \$? = $ac_status" >&5
+  echo "$as_me:16518: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_have_utmp_ut_xstatus=$cf_result
 	 break
@@ -16471,7 +16528,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 done
 
 fi
-echo "$as_me:16474: result: $cf_cv_have_utmp_ut_xstatus" >&5
+echo "$as_me:16531: 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
 	cat >>confdefs.h <<\EOF
@@ -16486,14 +16543,14 @@ fi
 fi
 
 if test $cf_cv_have_utmp != no ; then
-echo "$as_me:16489: checking if utmp.ut_xtime is declared" >&5
+echo "$as_me:16546: checking if utmp.ut_xtime is declared" >&5
 echo $ECHO_N "checking if 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 16496 "configure"
+#line 16553 "configure"
 #include "confdefs.h"
 
 #include <sys/types.h>
@@ -16507,23 +16564,23 @@ struct $cf_cv_have_utmp x; long y = x.ut_xtime = 0
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:16510: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:16567: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:16513: \$? = $ac_status" >&5
+  echo "$as_me:16570: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:16516: \"$ac_try\"") >&5
+  { (eval echo "$as_me:16573: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:16519: \$? = $ac_status" >&5
+  echo "$as_me:16576: \$? = $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 16526 "configure"
+#line 16583 "configure"
 #include "confdefs.h"
 
 #include <sys/types.h>
@@ -16537,16 +16594,16 @@ struct $cf_cv_have_utmp x; long y = x.ut_tv.tv_sec
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:16540: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:16597: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:16543: \$? = $ac_status" >&5
+  echo "$as_me:16600: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:16546: \"$ac_try\"") >&5
+  { (eval echo "$as_me:16603: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:16549: \$? = $ac_status" >&5
+  echo "$as_me:16606: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_have_utmp_ut_xtime=define
 else
@@ -16560,7 +16617,7 @@ fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 
 fi
-echo "$as_me:16563: result: $cf_cv_have_utmp_ut_xtime" >&5
+echo "$as_me:16620: 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
 	cat >>confdefs.h <<\EOF
@@ -16577,14 +16634,14 @@ fi
 fi
 
 if test $cf_cv_have_utmp != no ; then
-echo "$as_me:16580: checking if utmp.ut_session is declared" >&5
+echo "$as_me:16637: checking if utmp.ut_session is declared" >&5
 echo $ECHO_N "checking if 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 16587 "configure"
+#line 16644 "configure"
 #include "confdefs.h"
 
 #include <sys/types.h>
@@ -16598,16 +16655,16 @@ struct $cf_cv_have_utmp x; long y = x.ut_session
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:16601: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:16658: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:16604: \$? = $ac_status" >&5
+  echo "$as_me:16661: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:16607: \"$ac_try\"") >&5
+  { (eval echo "$as_me:16664: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:16610: \$? = $ac_status" >&5
+  echo "$as_me:16667: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_have_utmp_ut_session=yes
 else
@@ -16618,7 +16675,7 @@ fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 
 fi
-echo "$as_me:16621: result: $cf_cv_have_utmp_ut_session" >&5
+echo "$as_me:16678: 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
 	cat >>confdefs.h <<\EOF
@@ -16628,7 +16685,7 @@ EOF
 fi
 fi
 
-echo "$as_me:16631: checking if $cf_cv_have_utmp is SYSV flavor" >&5
+echo "$as_me:16688: 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
@@ -16636,7 +16693,7 @@ else
 
 test "$cf_cv_have_utmp" = "utmp" && cf_prefix="ut" || cf_prefix="utx"
 cat >conftest.$ac_ext <<_ACEOF
-#line 16639 "configure"
+#line 16696 "configure"
 #include "confdefs.h"
 
 #include <sys/types.h>
@@ -16655,16 +16712,16 @@ struct $cf_cv_have_utmp x;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:16658: \"$ac_link\"") >&5
+if { (eval echo "$as_me:16715: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:16661: \$? = $ac_status" >&5
+  echo "$as_me:16718: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:16664: \"$ac_try\"") >&5
+  { (eval echo "$as_me:16721: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:16667: \$? = $ac_status" >&5
+  echo "$as_me:16724: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_sysv_utmp=yes
 else
@@ -16675,7 +16732,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 
 fi
-echo "$as_me:16678: result: $cf_cv_sysv_utmp" >&5
+echo "$as_me:16735: result: $cf_cv_sysv_utmp" >&5
 echo "${ECHO_T}$cf_cv_sysv_utmp" >&6
 test $cf_cv_sysv_utmp = yes && cat >>confdefs.h <<\EOF
 #define USE_SYSV_UTMP 1
@@ -16683,14 +16740,14 @@ EOF
 
 fi
 
-echo "$as_me:16686: checking if external h_errno exists" >&5
+echo "$as_me:16743: 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 16693 "configure"
+#line 16750 "configure"
 #include "confdefs.h"
 
 #undef h_errno
@@ -16705,16 +16762,16 @@ h_errno = 2
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:16708: \"$ac_link\"") >&5
+if { (eval echo "$as_me:16765: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:16711: \$? = $ac_status" >&5
+  echo "$as_me:16768: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:16714: \"$ac_try\"") >&5
+  { (eval echo "$as_me:16771: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:16717: \$? = $ac_status" >&5
+  echo "$as_me:16774: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_have_h_errno=yes
 else
@@ -16725,7 +16782,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 
 fi
-echo "$as_me:16728: result: $cf_cv_have_h_errno" >&5
+echo "$as_me:16785: 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
@@ -16738,7 +16795,7 @@ EOF
 
 fi
 
-echo "$as_me:16741: checking if bibp: URLs should be supported" >&5
+echo "$as_me:16798: 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.
@@ -16755,13 +16812,13 @@ else
   use_bibp_urls=yes
 
 fi;
-echo "$as_me:16758: result: $use_bibp_urls" >&5
+echo "$as_me:16815: 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:16764: checking if configuration info should be browsable" >&5
+echo "$as_me:16821: 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.
@@ -16778,13 +16835,13 @@ else
   use_config_info=yes
 
 fi;
-echo "$as_me:16781: result: $use_config_info" >&5
+echo "$as_me:16838: 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:16787: checking if new-style forms-based options screen should be used" >&5
+echo "$as_me:16844: 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.
@@ -16801,13 +16858,13 @@ else
   use_forms_options=yes
 
 fi;
-echo "$as_me:16804: result: $use_forms_options" >&5
+echo "$as_me:16861: 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:16810: checking if old-style options menu should be used" >&5
+echo "$as_me:16867: 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.
@@ -16824,13 +16881,13 @@ else
   use_menu_options=yes
 
 fi;
-echo "$as_me:16827: result: $use_menu_options" >&5
+echo "$as_me:16884: 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:16833: checking if experimental address-list page should be used" >&5
+echo "$as_me:16890: checking if experimental address-list page should be used" >&5
 echo $ECHO_N "checking if experimental address-list page should be used... $ECHO_C" >&6
 
 # Check whether --enable-addrlist-page or --disable-addrlist-page was given.
@@ -16847,13 +16904,13 @@ else
   use_addrlist_page=no
 
 fi;
-echo "$as_me:16850: result: $use_addrlist_page" >&5
+echo "$as_me:16907: result: $use_addrlist_page" >&5
 echo "${ECHO_T}$use_addrlist_page" >&6
 test $use_addrlist_page != no && cat >>confdefs.h <<\EOF
 #define EXP_ADDRLIST_PAGE 1
 EOF
 
-echo "$as_me:16856: checking if experimental charset-selection logic should be used" >&5
+echo "$as_me:16913: checking if experimental charset-selection logic should be used" >&5
 echo $ECHO_N "checking if experimental charset-selection logic should be used... $ECHO_C" >&6
 
 # Check whether --enable-charset-choice or --disable-charset-choice was given.
@@ -16870,13 +16927,13 @@ else
   use_charset_choice=no
 
 fi;
-echo "$as_me:16873: result: $use_charset_choice" >&5
+echo "$as_me:16930: result: $use_charset_choice" >&5
 echo "${ECHO_T}$use_charset_choice" >&6
 test $use_charset_choice != no && cat >>confdefs.h <<\EOF
 #define EXP_CHARSET_CHOICE 1
 EOF
 
-echo "$as_me:16879: checking if experimental CJK logic should be used" >&5
+echo "$as_me:16936: checking if experimental CJK logic should be used" >&5
 echo $ECHO_N "checking if experimental CJK logic should be used... $ECHO_C" >&6
 
 # Check whether --enable-cjk or --disable-cjk was given.
@@ -16893,13 +16950,13 @@ else
   use_cjk=no
 
 fi;
-echo "$as_me:16896: result: $use_cjk" >&5
+echo "$as_me:16953: result: $use_cjk" >&5
 echo "${ECHO_T}$use_cjk" >&6
 test $use_cjk != no && cat >>confdefs.h <<\EOF
 #define CJK_EX 1
 EOF
 
-echo "$as_me:16902: checking if experimental Japanese UTF-8 logic should be used" >&5
+echo "$as_me:16959: checking if experimental Japanese UTF-8 logic should be used" >&5
 echo $ECHO_N "checking if experimental Japanese UTF-8 logic should be used... $ECHO_C" >&6
 
 # Check whether --enable-japanese-utf8 or --disable-japanese-utf8 was given.
@@ -16916,14 +16973,14 @@ else
   use_ja_utf8=no
 
 fi;
-echo "$as_me:16919: result: $use_ja_utf8" >&5
+echo "$as_me:16976: result: $use_ja_utf8" >&5
 echo "${ECHO_T}$use_ja_utf8" >&6
 if test $use_ja_utf8 != no ; then
 	cat >>confdefs.h <<\EOF
 #define EXP_JAPANESEUTF8_SUPPORT 1
 EOF
 
-echo "$as_me:16926: checking for libiconv_open in -liconv" >&5
+echo "$as_me:16983: checking for libiconv_open in -liconv" >&5
 echo $ECHO_N "checking for libiconv_open in -liconv... $ECHO_C" >&6
 if test "${ac_cv_lib_iconv_libiconv_open+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -16931,7 +16988,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-liconv  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 16934 "configure"
+#line 16991 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -16950,16 +17007,16 @@ libiconv_open ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:16953: \"$ac_link\"") >&5
+if { (eval echo "$as_me:17010: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:16956: \$? = $ac_status" >&5
+  echo "$as_me:17013: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:16959: \"$ac_try\"") >&5
+  { (eval echo "$as_me:17016: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:16962: \$? = $ac_status" >&5
+  echo "$as_me:17019: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_iconv_libiconv_open=yes
 else
@@ -16970,7 +17027,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:16973: result: $ac_cv_lib_iconv_libiconv_open" >&5
+echo "$as_me:17030: result: $ac_cv_lib_iconv_libiconv_open" >&5
 echo "${ECHO_T}$ac_cv_lib_iconv_libiconv_open" >&6
 if test $ac_cv_lib_iconv_libiconv_open = yes; then
   cat >>confdefs.h <<EOF
@@ -16983,7 +17040,7 @@ fi
 
 fi
 
-echo "$as_me:16986: checking if color-style code should be used" >&5
+echo "$as_me:17043: checking if color-style code should be used" >&5
 echo $ECHO_N "checking if color-style code should be used... $ECHO_C" >&6
 
 # Check whether --enable-color-style or --disable-color-style was given.
@@ -17003,7 +17060,7 @@ fi;
 
 case $use_color_style in
 no)
-	echo "$as_me:17006: result: no" >&5
+	echo "$as_me:17063: result: no" >&5
 echo "${ECHO_T}no" >&6
 	INSTALL_LSS=
 	;;
@@ -17012,17 +17069,17 @@ echo "${ECHO_T}no" >&6
 #define USE_COLOR_STYLE 1
 EOF
 
-	echo "$as_me:17015: result: yes" >&5
+	echo "$as_me:17072: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 
-	echo "$as_me:17018: checking for location of style-sheet file" >&5
+	echo "$as_me:17075: checking for location of style-sheet file" >&5
 echo $ECHO_N "checking for location of style-sheet file... $ECHO_C" >&6
 	LYNX_LSS_FILE=$cf_libdir/lynx.lss
 	cat >>confdefs.h <<EOF
 #define LYNX_LSS_FILE "$LYNX_LSS_FILE"
 EOF
 
-	echo "$as_me:17025: result: $LYNX_LSS_FILE" >&5
+	echo "$as_me:17082: result: $LYNX_LSS_FILE" >&5
 echo "${ECHO_T}$LYNX_LSS_FILE" >&6
 	INSTALL_LSS=install-lss
 	;;
@@ -17036,7 +17093,7 @@ curses|slang|ncurses*)
 esac
 
 if test "$use_dft_colors" != no ; then
-echo "$as_me:17039: checking if you want to use default-colors" >&5
+echo "$as_me:17096: 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.
@@ -17053,7 +17110,7 @@ else
   use_dft_colors=no
 
 fi;
-echo "$as_me:17056: result: $use_dft_colors" >&5
+echo "$as_me:17113: result: $use_dft_colors" >&5
 echo "${ECHO_T}$use_dft_colors" >&6
 test $use_dft_colors = "yes" && cat >>confdefs.h <<\EOF
 #define USE_DEFAULT_COLORS 1
@@ -17061,7 +17118,7 @@ EOF
 
 fi
 
-echo "$as_me:17064: checking if experimental htmlized lynx.cfg should be built" >&5
+echo "$as_me:17121: checking if experimental htmlized lynx.cfg should be built" >&5
 echo $ECHO_N "checking if experimental htmlized lynx.cfg should be built... $ECHO_C" >&6
 
 # Check whether --enable-htmlized-cfg or --disable-htmlized-cfg was given.
@@ -17078,7 +17135,7 @@ else
   use_exp_htmlized_cfg=no
 
 fi;
-echo "$as_me:17081: result: $use_exp_htmlized_cfg" >&5
+echo "$as_me:17138: result: $use_exp_htmlized_cfg" >&5
 echo "${ECHO_T}$use_exp_htmlized_cfg" >&6
 
 LYNXCFG_MAKE=''
@@ -17089,7 +17146,7 @@ if test $use_exp_htmlized_cfg = no ; then
 fi
 
 ### check for ipv6 support
-echo "$as_me:17092: checking whether to enable ipv6" >&5
+echo "$as_me:17149: checking whether to enable ipv6" >&5
 echo $ECHO_N "checking whether to enable ipv6... $ECHO_C" >&6
 
 # Check whether --enable-ipv6 or --disable-ipv6 was given.
@@ -17105,11 +17162,11 @@ EOF
 else
   enableval=no
 fi;
-echo "$as_me:17108: result: $enableval" >&5
+echo "$as_me:17165: result: $enableval" >&5
 echo "${ECHO_T}$enableval" >&6
 if test "$enableval" = "yes"; then
 
-echo "$as_me:17112: checking ipv6 stack type" >&5
+echo "$as_me:17169: checking ipv6 stack type" >&5
 echo $ECHO_N "checking ipv6 stack type... $ECHO_C" >&6
 if test "${cf_cv_ipv6type+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -17130,7 +17187,7 @@ do
 		;;
 	inria) #(vi
 				cat >conftest.$ac_ext <<_ACEOF
-#line 17133 "configure"
+#line 17190 "configure"
 #include "confdefs.h"
 
 #include <netinet/in.h>
@@ -17147,7 +17204,7 @@ rm -f conftest*
 		;;
 	kame) #(vi
 				cat >conftest.$ac_ext <<_ACEOF
-#line 17150 "configure"
+#line 17207 "configure"
 #include "confdefs.h"
 
 #include <netinet/in.h>
@@ -17164,7 +17221,7 @@ rm -f conftest*
 		;;
 	linux-glibc) #(vi
 				cat >conftest.$ac_ext <<_ACEOF
-#line 17167 "configure"
+#line 17224 "configure"
 #include "confdefs.h"
 
 #include <features.h>
@@ -17190,7 +17247,7 @@ rm -f conftest*
 		;;
 	toshiba) #(vi
 		cat >conftest.$ac_ext <<_ACEOF
-#line 17193 "configure"
+#line 17250 "configure"
 #include "confdefs.h"
 
 #include <sys/param.h>
@@ -17207,7 +17264,7 @@ rm -f conftest*
 		;;
 	v6d) #(vi
 		cat >conftest.$ac_ext <<_ACEOF
-#line 17210 "configure"
+#line 17267 "configure"
 #include "confdefs.h"
 
 #include </usr/local/v6/include/sys/v6config.h>
@@ -17224,7 +17281,7 @@ rm -f conftest*
 		;;
 	zeta)
 		cat >conftest.$ac_ext <<_ACEOF
-#line 17227 "configure"
+#line 17284 "configure"
 #include "confdefs.h"
 
 #include <sys/param.h>
@@ -17246,13 +17303,13 @@ rm -f conftest*
 done
 
 fi
-echo "$as_me:17249: result: $cf_cv_ipv6type" >&5
+echo "$as_me:17306: result: $cf_cv_ipv6type" >&5
 echo "${ECHO_T}$cf_cv_ipv6type" >&6
 
 cf_ipv6lib=none
 cf_ipv6dir=none
 
-echo "$as_me:17255: checking for IPv6 library if required" >&5
+echo "$as_me:17312: checking for IPv6 library if required" >&5
 echo $ECHO_N "checking for IPv6 library if required... $ECHO_C" >&6
 case $cf_cv_ipv6type in #(vi
 solaris) #(vi
@@ -17282,13 +17339,13 @@ zeta)
 	cf_ipv6dir=v6
 	;;
 esac
-echo "$as_me:17285: result: $cf_ipv6lib" >&5
+echo "$as_me:17342: result: $cf_ipv6lib" >&5
 echo "${ECHO_T}$cf_ipv6lib" >&6
 
 if test "$cf_ipv6lib" != "none"; then
 
 	cat >conftest.$ac_ext <<_ACEOF
-#line 17291 "configure"
+#line 17348 "configure"
 #include "confdefs.h"
 
 #include <sys/types.h>
@@ -17304,16 +17361,16 @@ getaddrinfo(0, 0, 0, 0)
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:17307: \"$ac_link\"") >&5
+if { (eval echo "$as_me:17364: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:17310: \$? = $ac_status" >&5
+  echo "$as_me:17367: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:17313: \"$ac_try\"") >&5
+  { (eval echo "$as_me:17370: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:17316: \$? = $ac_status" >&5
+  echo "$as_me:17373: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   :
 else
@@ -17407,13 +17464,13 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 
 	eval 'cf_cv_have_lib_'$cf_ipv6lib'=no'
 	cf_libdir=""
-	echo "$as_me:17410: checking for getaddrinfo" >&5
+	echo "$as_me:17467: checking for getaddrinfo" >&5
 echo $ECHO_N "checking for getaddrinfo... $ECHO_C" >&6
 if test "${ac_cv_func_getaddrinfo+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 17416 "configure"
+#line 17473 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char getaddrinfo (); below.  */
@@ -17444,16 +17501,16 @@ f = getaddrinfo;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:17447: \"$ac_link\"") >&5
+if { (eval echo "$as_me:17504: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:17450: \$? = $ac_status" >&5
+  echo "$as_me:17507: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:17453: \"$ac_try\"") >&5
+  { (eval echo "$as_me:17510: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:17456: \$? = $ac_status" >&5
+  echo "$as_me:17513: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_func_getaddrinfo=yes
 else
@@ -17463,18 +17520,18 @@ ac_cv_func_getaddrinfo=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:17466: result: $ac_cv_func_getaddrinfo" >&5
+echo "$as_me:17523: result: $ac_cv_func_getaddrinfo" >&5
 echo "${ECHO_T}$ac_cv_func_getaddrinfo" >&6
 if test $ac_cv_func_getaddrinfo = yes; then
   eval 'cf_cv_have_lib_'$cf_ipv6lib'=yes'
 else
 
 		cf_save_LIBS="$LIBS"
-		echo "$as_me:17473: checking for getaddrinfo in -l$cf_ipv6lib" >&5
+		echo "$as_me:17530: checking for getaddrinfo in -l$cf_ipv6lib" >&5
 echo $ECHO_N "checking for getaddrinfo in -l$cf_ipv6lib... $ECHO_C" >&6
 		LIBS="-l$cf_ipv6lib $LIBS"
 		cat >conftest.$ac_ext <<_ACEOF
-#line 17477 "configure"
+#line 17534 "configure"
 #include "confdefs.h"
 
 #include <sys/types.h>
@@ -17490,25 +17547,25 @@ getaddrinfo(0, 0, 0, 0)
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:17493: \"$ac_link\"") >&5
+if { (eval echo "$as_me:17550: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:17496: \$? = $ac_status" >&5
+  echo "$as_me:17553: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:17499: \"$ac_try\"") >&5
+  { (eval echo "$as_me:17556: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:17502: \$? = $ac_status" >&5
+  echo "$as_me:17559: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
-  echo "$as_me:17504: result: yes" >&5
+  echo "$as_me:17561: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 			 eval 'cf_cv_have_lib_'$cf_ipv6lib'=yes'
 
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
-echo "$as_me:17511: result: no" >&5
+echo "$as_me:17568: result: no" >&5
 echo "${ECHO_T}no" >&6
 			cf_search=""
 
@@ -17568,11 +17625,11 @@ test -d /usr && {
 
 			for cf_libdir in $cf_search
 			do
-				echo "$as_me:17571: checking for -l$cf_ipv6lib in $cf_libdir" >&5
+				echo "$as_me:17628: checking for -l$cf_ipv6lib in $cf_libdir" >&5
 echo $ECHO_N "checking for -l$cf_ipv6lib in $cf_libdir... $ECHO_C" >&6
 				LIBS="-L$cf_libdir -l$cf_ipv6lib $cf_save_LIBS"
 				cat >conftest.$ac_ext <<_ACEOF
-#line 17575 "configure"
+#line 17632 "configure"
 #include "confdefs.h"
 
 #include <sys/types.h>
@@ -17588,25 +17645,25 @@ getaddrinfo(0, 0, 0, 0)
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:17591: \"$ac_link\"") >&5
+if { (eval echo "$as_me:17648: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:17594: \$? = $ac_status" >&5
+  echo "$as_me:17651: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:17597: \"$ac_try\"") >&5
+  { (eval echo "$as_me:17654: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:17600: \$? = $ac_status" >&5
+  echo "$as_me:17657: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
-  echo "$as_me:17602: result: yes" >&5
+  echo "$as_me:17659: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 			 		 eval 'cf_cv_have_lib_'$cf_ipv6lib'=yes'
 					 break
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
-echo "$as_me:17609: result: no" >&5
+echo "$as_me:17666: result: no" >&5
 echo "${ECHO_T}no" >&6
 					 LIBS="$cf_save_LIBS"
 fi
@@ -17621,7 +17678,7 @@ fi
 eval 'cf_found_library=$cf_cv_have_lib_'$cf_ipv6lib
 
 	if test $cf_found_library = no ; then
-		{ { echo "$as_me:17624: error: No $cf_ipv6lib library found, cannot continue.  You must fetch lib$cf_ipv6lib.a
+		{ { echo "$as_me:17681: error: No $cf_ipv6lib library found, cannot continue.  You must fetch lib$cf_ipv6lib.a
 from an appropriate IPv6 kit and compile beforehand." >&5
 echo "$as_me: error: No $cf_ipv6lib library found, cannot continue.  You must fetch lib$cf_ipv6lib.a
 from an appropriate IPv6 kit and compile beforehand." >&2;}
@@ -17629,7 +17686,7 @@ from an appropriate IPv6 kit and compile beforehand." >&2;}
 	fi
 fi
 
-echo "$as_me:17632: checking working getaddrinfo" >&5
+echo "$as_me:17689: checking working getaddrinfo" >&5
 echo $ECHO_N "checking working getaddrinfo... $ECHO_C" >&6
 if test "${cf_cv_getaddrinfo+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -17639,7 +17696,7 @@ if test "$cross_compiling" = yes; then
   cf_cv_getaddrinfo=unknown
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 17642 "configure"
+#line 17699 "configure"
 #include "confdefs.h"
 
 #include <sys/types.h>
@@ -17719,15 +17776,15 @@ int main()
 
 _ACEOF
 rm -f conftest$ac_exeext
-if { (eval echo "$as_me:17722: \"$ac_link\"") >&5
+if { (eval echo "$as_me:17779: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:17725: \$? = $ac_status" >&5
+  echo "$as_me:17782: \$? = $ac_status" >&5
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
-  { (eval echo "$as_me:17727: \"$ac_try\"") >&5
+  { (eval echo "$as_me:17784: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:17730: \$? = $ac_status" >&5
+  echo "$as_me:17787: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_getaddrinfo=yes
 else
@@ -17740,7 +17797,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
 fi
 
 fi
-echo "$as_me:17743: result: $cf_cv_getaddrinfo" >&5
+echo "$as_me:17800: result: $cf_cv_getaddrinfo" >&5
 echo "${ECHO_T}$cf_cv_getaddrinfo" >&6
 if test "$cf_cv_getaddrinfo" = yes ; then
 	cat >>confdefs.h <<\EOF
@@ -17755,12 +17812,12 @@ fi
 
 if test "$cf_cv_getaddrinfo" != "yes"; then
 	if test "$cf_cv_ipv6type" != "linux"; then
-		{ echo "$as_me:17758: WARNING: You must get working getaddrinfo() function,
+		{ echo "$as_me:17815: WARNING: You must get working getaddrinfo() function,
 or you can specify \"--disable-ipv6\"" >&5
 echo "$as_me: WARNING: You must get working getaddrinfo() function,
 or you can specify \"--disable-ipv6\"" >&2;}
 	else
-		{ echo "$as_me:17763: WARNING: The getaddrinfo() implementation on your system seems be buggy.
+		{ echo "$as_me:17820: WARNING: The getaddrinfo() implementation on your system seems be buggy.
 You should upgrade your system library to the newest version
 of GNU C library (aka glibc)." >&5
 echo "$as_me: WARNING: The getaddrinfo() implementation on your system seems be buggy.
@@ -17771,7 +17828,7 @@ fi
 
 fi
 
-echo "$as_me:17774: checking if experimental element-justification logic should be used" >&5
+echo "$as_me:17831: checking if experimental element-justification logic should be used" >&5
 echo $ECHO_N "checking if experimental element-justification logic should be used... $ECHO_C" >&6
 
 # Check whether --enable-justify-elts or --disable-justify-elts was given.
@@ -17788,13 +17845,13 @@ else
   use_exp_justify_elts=no
 
 fi;
-echo "$as_me:17791: result: $use_exp_justify_elts" >&5
+echo "$as_me:17848: result: $use_exp_justify_elts" >&5
 echo "${ECHO_T}$use_exp_justify_elts" >&6
 test $use_exp_justify_elts != no && cat >>confdefs.h <<\EOF
 #define EXP_JUSTIFY_ELTS 1
 EOF
 
-echo "$as_me:17797: checking if experimental keyboard-layout logic should be used" >&5
+echo "$as_me:17854: 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.
@@ -17811,13 +17868,13 @@ else
   use_kbd_layout=no
 
 fi;
-echo "$as_me:17814: result: $use_kbd_layout" >&5
+echo "$as_me:17871: 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:17820: checking if experimental locale-charset selection logic should be used" >&5
+echo "$as_me:17877: checking if experimental locale-charset selection logic should be used" >&5
 echo $ECHO_N "checking if experimental locale-charset selection logic should be used... $ECHO_C" >&6
 
 # Check whether --enable-locale-charset or --disable-locale-charset was given.
@@ -17834,13 +17891,13 @@ else
   use_locale_charset=yes
 
 fi;
-echo "$as_me:17837: result: $use_locale_charset" >&5
+echo "$as_me:17894: result: $use_locale_charset" >&5
 echo "${ECHO_T}$use_locale_charset" >&6
 test $use_locale_charset != no && cat >>confdefs.h <<\EOF
 #define EXP_LOCALE_CHARSET 1
 EOF
 
-echo "$as_me:17843: checking if experimental nested-table logic should be used" >&5
+echo "$as_me:17900: 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.
@@ -17857,13 +17914,13 @@ else
   use_nested_tables=no
 
 fi;
-echo "$as_me:17860: result: $use_nested_tables" >&5
+echo "$as_me:17917: 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:17866: checking if scrollbar code should be used" >&5
+echo "$as_me:17923: 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.
@@ -17880,10 +17937,10 @@ else
   use_scrollbar=no
 
 fi;
-echo "$as_me:17883: result: $use_scrollbar" >&5
+echo "$as_me:17940: result: $use_scrollbar" >&5
 echo "${ECHO_T}$use_scrollbar" >&6
 
-echo "$as_me:17886: checking if alternative line-edit bindings should be used" >&5
+echo "$as_me:17943: 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.
@@ -17900,13 +17957,13 @@ else
   use_alt_bindings=yes
 
 fi;
-echo "$as_me:17903: result: $use_alt_bindings" >&5
+echo "$as_me:17960: result: $use_alt_bindings" >&5
 echo "${ECHO_T}$use_alt_bindings" >&6
 test $use_alt_bindings != no && cat >>confdefs.h <<\EOF
 #define EXP_ALT_BINDINGS 1
 EOF
 
-echo "$as_me:17909: checking if you want to use extended HTML DTD logic" >&5
+echo "$as_me:17966: 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.
@@ -17923,13 +17980,13 @@ else
   use_ext_htmldtd=yes
 
 fi;
-echo "$as_me:17926: result: $use_ext_htmldtd" >&5
+echo "$as_me:17983: 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:17932: checking if file-upload logic should be used" >&5
+echo "$as_me:17989: 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.
@@ -17946,13 +18003,13 @@ else
   use_file_upload=yes
 
 fi;
-echo "$as_me:17949: result: $use_file_upload" >&5
+echo "$as_me:18006: 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:17955: checking if partial-display should be used" >&5
+echo "$as_me:18012: 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.
@@ -17969,13 +18026,13 @@ else
   use_partial_display=yes
 
 fi;
-echo "$as_me:17972: result: $use_partial_display" >&5
+echo "$as_me:18029: 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:17978: checking if persistent-cookie logic should be used" >&5
+echo "$as_me:18035: 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.
@@ -17992,13 +18049,13 @@ else
   use_filed_cookies=yes
 
 fi;
-echo "$as_me:17995: result: $use_filed_cookies" >&5
+echo "$as_me:18052: 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:18001: checking if html source should be colorized" >&5
+echo "$as_me:18058: 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.
@@ -18015,13 +18072,13 @@ else
   use_prettysrc=yes
 
 fi;
-echo "$as_me:18018: result: $use_prettysrc" >&5
+echo "$as_me:18075: 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:18024: checking if read-progress message should show ETA" >&5
+echo "$as_me:18081: 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.
@@ -18038,13 +18095,13 @@ else
   use_read_eta=yes
 
 fi;
-echo "$as_me:18041: result: $use_read_eta" >&5
+echo "$as_me:18098: 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:18047: checking if source caching should be used" >&5
+echo "$as_me:18104: 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.
@@ -18061,13 +18118,13 @@ else
   use_source_cache=yes
 
 fi;
-echo "$as_me:18064: result: $use_source_cache" >&5
+echo "$as_me:18121: 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:18070: checking if you want to use external commands" >&5
+echo "$as_me:18127: 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.
@@ -18084,7 +18141,7 @@ else
   use_externs=no
 
 fi;
-echo "$as_me:18087: result: $use_externs" >&5
+echo "$as_me:18144: result: $use_externs" >&5
 echo "${ECHO_T}$use_externs" >&6
 if test $use_externs != "no" ; then
 	cat >>confdefs.h <<\EOF
@@ -18094,7 +18151,7 @@ EOF
 	LIBOBJS="$LIBOBJS LYExtern\$o"
 fi
 
-echo "$as_me:18097: checking if you want to use setfont support" >&5
+echo "$as_me:18154: 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.
@@ -18111,13 +18168,13 @@ else
   use_setfont=no
 
 fi;
-echo "$as_me:18114: result: $use_setfont" >&5
+echo "$as_me:18171: result: $use_setfont" >&5
 echo "${ECHO_T}$use_setfont" >&6
 test $use_setfont = yes && cat >>confdefs.h <<\EOF
 #define EXP_CHARTRANS_AUTOSWITCH 1
 EOF
 
-echo "$as_me:18120: checking if you want cgi-link support" >&5
+echo "$as_me:18177: 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.
@@ -18133,10 +18190,10 @@ EOF
 else
   enableval=no
 fi;
-echo "$as_me:18136: result: $enableval" >&5
+echo "$as_me:18193: result: $enableval" >&5
 echo "${ECHO_T}$enableval" >&6
 
-echo "$as_me:18139: checking if you want change-exec support" >&5
+echo "$as_me:18196: 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.
@@ -18153,13 +18210,13 @@ else
   use_change_exec=no
 
 fi;
-echo "$as_me:18156: result: $use_change_exec" >&5
+echo "$as_me:18213: 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:18162: checking if you want exec-links support" >&5
+echo "$as_me:18219: 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.
@@ -18176,13 +18233,13 @@ else
   use_exec_links=$enableval
 
 fi;
-echo "$as_me:18179: result: $use_exec_links" >&5
+echo "$as_me:18236: 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:18185: checking if you want exec-scripts support" >&5
+echo "$as_me:18242: 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.
@@ -18199,13 +18256,13 @@ else
   use_exec_scripts=$enableval
 
 fi;
-echo "$as_me:18202: result: $use_exec_scripts" >&5
+echo "$as_me:18259: 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:18208: checking if you want internal-links feature" >&5
+echo "$as_me:18265: 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.
@@ -18222,13 +18279,13 @@ else
   use_internal_links=no
 
 fi;
-echo "$as_me:18225: result: $use_internal_links" >&5
+echo "$as_me:18282: result: $use_internal_links" >&5
 echo "${ECHO_T}$use_internal_links" >&6
 test $use_internal_links = no && cat >>confdefs.h <<\EOF
 #define DONT_TRACK_INTERNAL_LINKS 1
 EOF
 
-echo "$as_me:18231: checking if you want to fork NSL requests" >&5
+echo "$as_me:18288: 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.
@@ -18245,13 +18302,13 @@ else
   use_nsl_fork=no
 
 fi;
-echo "$as_me:18248: result: $use_nsl_fork" >&5
+echo "$as_me:18305: result: $use_nsl_fork" >&5
 echo "${ECHO_T}$use_nsl_fork" >&6
 test $use_nsl_fork = yes && cat >>confdefs.h <<\EOF
 #define NSL_FORK 1
 EOF
 
-echo "$as_me:18254: checking if you want to log URL requests via syslog" >&5
+echo "$as_me:18311: 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.
@@ -18268,13 +18325,13 @@ else
   use_syslog=no
 
 fi;
-echo "$as_me:18271: result: $use_syslog" >&5
+echo "$as_me:18328: 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:18277: checking if you want to underline links" >&5
+echo "$as_me:18334: 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.
@@ -18291,7 +18348,7 @@ else
   use_underline=no
 
 fi;
-echo "$as_me:18294: result: $use_underline" >&5
+echo "$as_me:18351: result: $use_underline" >&5
 echo "${ECHO_T}$use_underline" >&6
 test $use_underline = yes && cat >>confdefs.h <<\EOF
 #define UNDERLINE_LINKS 1
@@ -18301,7 +18358,7 @@ test $use_underline = no  && cat >>confdefs.h <<\EOF
 #define UNDERLINE_LINKS 0
 EOF
 
-echo "$as_me:18304: checking if help files should be gzip'ed" >&5
+echo "$as_me:18361: 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.
@@ -18318,10 +18375,10 @@ else
   use_gzip_help=no
 
 fi;
-echo "$as_me:18321: result: $use_gzip_help" >&5
+echo "$as_me:18378: result: $use_gzip_help" >&5
 echo "${ECHO_T}$use_gzip_help" >&6
 
-echo "$as_me:18324: checking if you want to use libbz2 for decompression of some bzip2 files" >&5
+echo "$as_me:18381: 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.
@@ -18331,15 +18388,15 @@ if test "${with_bzlib+set}" = set; then
 else
   use_bzlib=no
 fi;
-echo "$as_me:18334: result: $use_bzlib" >&5
+echo "$as_me:18391: result: $use_bzlib" >&5
 echo "${ECHO_T}$use_bzlib" >&6
 
 if test ".$use_bzlib" != ".no" ; then
 
-echo "$as_me:18339: checking if we need to add -I option to get bzlib.h" >&5
+echo "$as_me:18396: checking if we need to add -I option to get bzlib.h" >&5
 echo $ECHO_N "checking if we need to add -I option to get bzlib.h... $ECHO_C" >&6
 cat >conftest.$ac_ext <<_ACEOF
-#line 18342 "configure"
+#line 18399 "configure"
 #include "confdefs.h"
 #include <zlib.h>
 int
@@ -18351,24 +18408,24 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:18354: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:18411: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:18357: \$? = $ac_status" >&5
+  echo "$as_me:18414: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:18360: \"$ac_try\"") >&5
+  { (eval echo "$as_me:18417: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:18363: \$? = $ac_status" >&5
+  echo "$as_me:18420: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
-  echo "$as_me:18365: result: no" >&5
+  echo "$as_me:18422: result: no" >&5
 echo "${ECHO_T}no" >&6
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
 
-echo "$as_me:18371: result: yes" >&5
+echo "$as_me:18428: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 cf_search=""
 
@@ -18525,13 +18582,13 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 
 	eval 'cf_cv_have_lib_'bz2'=no'
 	cf_libdir=""
-	echo "$as_me:18528: checking for BZ2_bzopen" >&5
+	echo "$as_me:18585: checking for BZ2_bzopen" >&5
 echo $ECHO_N "checking for BZ2_bzopen... $ECHO_C" >&6
 if test "${ac_cv_func_BZ2_bzopen+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 18534 "configure"
+#line 18591 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char BZ2_bzopen (); below.  */
@@ -18562,16 +18619,16 @@ f = BZ2_bzopen;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:18565: \"$ac_link\"") >&5
+if { (eval echo "$as_me:18622: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:18568: \$? = $ac_status" >&5
+  echo "$as_me:18625: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:18571: \"$ac_try\"") >&5
+  { (eval echo "$as_me:18628: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:18574: \$? = $ac_status" >&5
+  echo "$as_me:18631: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_func_BZ2_bzopen=yes
 else
@@ -18581,18 +18638,18 @@ ac_cv_func_BZ2_bzopen=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:18584: result: $ac_cv_func_BZ2_bzopen" >&5
+echo "$as_me:18641: result: $ac_cv_func_BZ2_bzopen" >&5
 echo "${ECHO_T}$ac_cv_func_BZ2_bzopen" >&6
 if test $ac_cv_func_BZ2_bzopen = yes; then
   eval 'cf_cv_have_lib_'bz2'=yes'
 else
 
 		cf_save_LIBS="$LIBS"
-		echo "$as_me:18591: checking for BZ2_bzopen in -lbz2" >&5
+		echo "$as_me:18648: checking for BZ2_bzopen in -lbz2" >&5
 echo $ECHO_N "checking for BZ2_bzopen in -lbz2... $ECHO_C" >&6
 		LIBS="-lbz2 $LIBS"
 		cat >conftest.$ac_ext <<_ACEOF
-#line 18595 "configure"
+#line 18652 "configure"
 #include "confdefs.h"
 
 #include <stdio.h>
@@ -18606,25 +18663,25 @@ BZ2_bzopen("name","mode")
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:18609: \"$ac_link\"") >&5
+if { (eval echo "$as_me:18666: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:18612: \$? = $ac_status" >&5
+  echo "$as_me:18669: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:18615: \"$ac_try\"") >&5
+  { (eval echo "$as_me:18672: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:18618: \$? = $ac_status" >&5
+  echo "$as_me:18675: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
-  echo "$as_me:18620: result: yes" >&5
+  echo "$as_me:18677: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 			 eval 'cf_cv_have_lib_'bz2'=yes'
 
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
-echo "$as_me:18627: result: no" >&5
+echo "$as_me:18684: result: no" >&5
 echo "${ECHO_T}no" >&6
 			cf_search=""
 
@@ -18684,11 +18741,11 @@ test -d /usr && {
 
 			for cf_libdir in $cf_search
 			do
-				echo "$as_me:18687: checking for -lbz2 in $cf_libdir" >&5
+				echo "$as_me:18744: checking for -lbz2 in $cf_libdir" >&5
 echo $ECHO_N "checking for -lbz2 in $cf_libdir... $ECHO_C" >&6
 				LIBS="-L$cf_libdir -lbz2 $cf_save_LIBS"
 				cat >conftest.$ac_ext <<_ACEOF
-#line 18691 "configure"
+#line 18748 "configure"
 #include "confdefs.h"
 
 #include <stdio.h>
@@ -18702,25 +18759,25 @@ BZ2_bzopen("name","mode")
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:18705: \"$ac_link\"") >&5
+if { (eval echo "$as_me:18762: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:18708: \$? = $ac_status" >&5
+  echo "$as_me:18765: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:18711: \"$ac_try\"") >&5
+  { (eval echo "$as_me:18768: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:18714: \$? = $ac_status" >&5
+  echo "$as_me:18771: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
-  echo "$as_me:18716: result: yes" >&5
+  echo "$as_me:18773: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 			 		 eval 'cf_cv_have_lib_'bz2'=yes'
 					 break
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
-echo "$as_me:18723: result: no" >&5
+echo "$as_me:18780: result: no" >&5
 echo "${ECHO_T}no" >&6
 					 LIBS="$cf_save_LIBS"
 fi
@@ -18735,7 +18792,7 @@ fi
 eval 'cf_found_library=$cf_cv_have_lib_'bz2
 
 if test $cf_found_library = no ; then
-	{ { echo "$as_me:18738: error: Cannot link bz2 library" >&5
+	{ { echo "$as_me:18795: error: Cannot link bz2 library" >&5
 echo "$as_me: error: Cannot link bz2 library" >&2;}
    { (exit 1); exit 1; }; }
 fi
@@ -18746,7 +18803,7 @@ EOF
 
 fi
 
-echo "$as_me:18749: checking if you want to use zlib for decompression of some gzip files" >&5
+echo "$as_me:18806: 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.
@@ -18756,15 +18813,15 @@ if test "${with_zlib+set}" = set; then
 else
   use_zlib=no
 fi;
-echo "$as_me:18759: result: $use_zlib" >&5
+echo "$as_me:18816: result: $use_zlib" >&5
 echo "${ECHO_T}$use_zlib" >&6
 
 if test ".$use_zlib" != ".no" ; then
 
-echo "$as_me:18764: checking if we need to add -I option to get zlib.h" >&5
+echo "$as_me:18821: checking if we need to add -I option to get zlib.h" >&5
 echo $ECHO_N "checking if we need to add -I option to get zlib.h... $ECHO_C" >&6
 cat >conftest.$ac_ext <<_ACEOF
-#line 18767 "configure"
+#line 18824 "configure"
 #include "confdefs.h"
 #include <zlib.h>
 int
@@ -18776,24 +18833,24 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:18779: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:18836: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:18782: \$? = $ac_status" >&5
+  echo "$as_me:18839: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:18785: \"$ac_try\"") >&5
+  { (eval echo "$as_me:18842: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:18788: \$? = $ac_status" >&5
+  echo "$as_me:18845: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
-  echo "$as_me:18790: result: no" >&5
+  echo "$as_me:18847: result: no" >&5
 echo "${ECHO_T}no" >&6
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
 
-echo "$as_me:18796: result: yes" >&5
+echo "$as_me:18853: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 cf_search=""
 
@@ -18950,13 +19007,13 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 
 	eval 'cf_cv_have_lib_'z'=no'
 	cf_libdir=""
-	echo "$as_me:18953: checking for gzopen" >&5
+	echo "$as_me:19010: checking for gzopen" >&5
 echo $ECHO_N "checking for gzopen... $ECHO_C" >&6
 if test "${ac_cv_func_gzopen+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 18959 "configure"
+#line 19016 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char gzopen (); below.  */
@@ -18987,16 +19044,16 @@ f = gzopen;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:18990: \"$ac_link\"") >&5
+if { (eval echo "$as_me:19047: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:18993: \$? = $ac_status" >&5
+  echo "$as_me:19050: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:18996: \"$ac_try\"") >&5
+  { (eval echo "$as_me:19053: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:18999: \$? = $ac_status" >&5
+  echo "$as_me:19056: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_func_gzopen=yes
 else
@@ -19006,18 +19063,18 @@ ac_cv_func_gzopen=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:19009: result: $ac_cv_func_gzopen" >&5
+echo "$as_me:19066: result: $ac_cv_func_gzopen" >&5
 echo "${ECHO_T}$ac_cv_func_gzopen" >&6
 if test $ac_cv_func_gzopen = yes; then
   eval 'cf_cv_have_lib_'z'=yes'
 else
 
 		cf_save_LIBS="$LIBS"
-		echo "$as_me:19016: checking for gzopen in -lz" >&5
+		echo "$as_me:19073: checking for gzopen in -lz" >&5
 echo $ECHO_N "checking for gzopen in -lz... $ECHO_C" >&6
 		LIBS="-lz $LIBS"
 		cat >conftest.$ac_ext <<_ACEOF
-#line 19020 "configure"
+#line 19077 "configure"
 #include "confdefs.h"
 #include <zlib.h>
 int
@@ -19029,25 +19086,25 @@ gzopen("name","mode")
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:19032: \"$ac_link\"") >&5
+if { (eval echo "$as_me:19089: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:19035: \$? = $ac_status" >&5
+  echo "$as_me:19092: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:19038: \"$ac_try\"") >&5
+  { (eval echo "$as_me:19095: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:19041: \$? = $ac_status" >&5
+  echo "$as_me:19098: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
-  echo "$as_me:19043: result: yes" >&5
+  echo "$as_me:19100: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 			 eval 'cf_cv_have_lib_'z'=yes'
 
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
-echo "$as_me:19050: result: no" >&5
+echo "$as_me:19107: result: no" >&5
 echo "${ECHO_T}no" >&6
 			cf_search=""
 
@@ -19107,11 +19164,11 @@ test -d /usr && {
 
 			for cf_libdir in $cf_search
 			do
-				echo "$as_me:19110: checking for -lz in $cf_libdir" >&5
+				echo "$as_me:19167: checking for -lz in $cf_libdir" >&5
 echo $ECHO_N "checking for -lz in $cf_libdir... $ECHO_C" >&6
 				LIBS="-L$cf_libdir -lz $cf_save_LIBS"
 				cat >conftest.$ac_ext <<_ACEOF
-#line 19114 "configure"
+#line 19171 "configure"
 #include "confdefs.h"
 #include <zlib.h>
 int
@@ -19123,25 +19180,25 @@ gzopen("name","mode")
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:19126: \"$ac_link\"") >&5
+if { (eval echo "$as_me:19183: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:19129: \$? = $ac_status" >&5
+  echo "$as_me:19186: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:19132: \"$ac_try\"") >&5
+  { (eval echo "$as_me:19189: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:19135: \$? = $ac_status" >&5
+  echo "$as_me:19192: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
-  echo "$as_me:19137: result: yes" >&5
+  echo "$as_me:19194: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 			 		 eval 'cf_cv_have_lib_'z'=yes'
 					 break
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
-echo "$as_me:19144: result: no" >&5
+echo "$as_me:19201: result: no" >&5
 echo "${ECHO_T}no" >&6
 					 LIBS="$cf_save_LIBS"
 fi
@@ -19156,7 +19213,7 @@ fi
 eval 'cf_found_library=$cf_cv_have_lib_'z
 
 if test $cf_found_library = no ; then
-	{ { echo "$as_me:19159: error: Cannot link z library" >&5
+	{ { echo "$as_me:19216: error: Cannot link z library" >&5
 echo "$as_me: error: Cannot link z library" >&2;}
    { (exit 1); exit 1; }; }
 fi
@@ -19167,7 +19224,7 @@ EOF
 
 fi
 
-echo "$as_me:19170: checking if you want to exclude FINGER code" >&5
+echo "$as_me:19227: 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.
@@ -19184,13 +19241,13 @@ else
   use_finger=no
 
 fi;
-echo "$as_me:19187: result: $use_finger" >&5
+echo "$as_me:19244: 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:19193: checking if you want to exclude GOPHER code" >&5
+echo "$as_me:19250: 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.
@@ -19207,13 +19264,13 @@ else
   use_gopher=no
 
 fi;
-echo "$as_me:19210: result: $use_gopher" >&5
+echo "$as_me:19267: 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:19216: checking if you want to exclude NEWS code" >&5
+echo "$as_me:19273: 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.
@@ -19230,13 +19287,13 @@ else
   use_news=no
 
 fi;
-echo "$as_me:19233: result: $use_news" >&5
+echo "$as_me:19290: 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:19239: checking if you want to exclude FTP code" >&5
+echo "$as_me:19296: 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.
@@ -19253,7 +19310,7 @@ else
   use_ftp=no
 
 fi;
-echo "$as_me:19256: result: $use_ftp" >&5
+echo "$as_me:19313: result: $use_ftp" >&5
 echo "${ECHO_T}$use_ftp" >&6
 test $use_ftp != "no" && cat >>confdefs.h <<\EOF
 #define DISABLE_FTP 1
@@ -19261,7 +19318,7 @@ EOF
 
 # 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:19264: checking if directory-editor code should be used" >&5
+echo "$as_me:19321: 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.
@@ -19278,7 +19335,7 @@ else
   use_dired=yes
 
 fi;
-echo "$as_me:19281: result: $use_dired" >&5
+echo "$as_me:19338: result: $use_dired" >&5
 echo "${ECHO_T}$use_dired" >&6
 
 if test ".$use_dired" != ".no" ; then
@@ -19287,7 +19344,7 @@ if test ".$use_dired" != ".no" ; then
 #define DIRED_SUPPORT 1
 EOF
 
-	echo "$as_me:19290: checking if you wish to allow extracting from archives via DirEd" >&5
+	echo "$as_me:19347: 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.
@@ -19303,10 +19360,10 @@ EOF
 else
   enableval=yes
 fi;
-	echo "$as_me:19306: result: $enableval" >&5
+	echo "$as_me:19363: result: $enableval" >&5
 echo "${ECHO_T}$enableval" >&6
 
-	echo "$as_me:19309: checking if DirEd mode should override keys" >&5
+	echo "$as_me:19366: 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.
@@ -19328,10 +19385,10 @@ else
 EOF
 
 fi;
-	echo "$as_me:19331: result: $enableval" >&5
+	echo "$as_me:19388: result: $enableval" >&5
 echo "${ECHO_T}$enableval" >&6
 
-	echo "$as_me:19334: checking if you wish to allow permissions commands via DirEd" >&5
+	echo "$as_me:19391: 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.
@@ -19353,10 +19410,10 @@ else
 EOF
 
 fi;
-	echo "$as_me:19356: result: $enableval" >&5
+	echo "$as_me:19413: result: $enableval" >&5
 echo "${ECHO_T}$enableval" >&6
 
-	echo "$as_me:19359: checking if you wish to allow executable-permission commands via DirEd" >&5
+	echo "$as_me:19416: 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.
@@ -19372,10 +19429,10 @@ EOF
 else
   enableval=yes
 fi;
-	echo "$as_me:19375: result: $enableval" >&5
+	echo "$as_me:19432: result: $enableval" >&5
 echo "${ECHO_T}$enableval" >&6
 
-	echo "$as_me:19378: checking if you wish to allow \"tar\" commands from DirEd" >&5
+	echo "$as_me:19435: 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.
@@ -19397,10 +19454,10 @@ else
 EOF
 
 fi;
-	echo "$as_me:19400: result: $enableval" >&5
+	echo "$as_me:19457: result: $enableval" >&5
 echo "${ECHO_T}$enableval" >&6
 
-	echo "$as_me:19403: checking if you wish to allow \"uudecode\" commands from DirEd" >&5
+	echo "$as_me:19460: 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.
@@ -19422,10 +19479,10 @@ else
 EOF
 
 fi;
-	echo "$as_me:19425: result: $enableval" >&5
+	echo "$as_me:19482: result: $enableval" >&5
 echo "${ECHO_T}$enableval" >&6
 
-	echo "$as_me:19428: checking if you wish to allow \"zip\" and \"unzip\" commands from DirEd" >&5
+	echo "$as_me:19485: 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.
@@ -19447,10 +19504,10 @@ else
 EOF
 
 fi;
-	echo "$as_me:19450: result: $enableval" >&5
+	echo "$as_me:19507: result: $enableval" >&5
 echo "${ECHO_T}$enableval" >&6
 
-	echo "$as_me:19453: checking if you wish to allow \"gzip\" and \"gunzip\" commands from DirEd" >&5
+	echo "$as_me:19510: 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.
@@ -19472,11 +19529,11 @@ else
 EOF
 
 fi;
-	echo "$as_me:19475: result: $enableval" >&5
+	echo "$as_me:19532: result: $enableval" >&5
 echo "${ECHO_T}$enableval" >&6
 fi
 
-echo "$as_me:19479: checking if you want long-directory listings" >&5
+echo "$as_me:19536: 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.
@@ -19498,10 +19555,10 @@ else
 EOF
 
 fi;
-echo "$as_me:19501: result: $enableval" >&5
+echo "$as_me:19558: result: $enableval" >&5
 echo "${ECHO_T}$enableval" >&6
 
-echo "$as_me:19504: checking if parent-directory references are permitted" >&5
+echo "$as_me:19561: 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.
@@ -19517,7 +19574,7 @@ EOF
 else
   enableval=yes
 fi;
-echo "$as_me:19520: result: $enableval" >&5
+echo "$as_me:19577: result: $enableval" >&5
 echo "${ECHO_T}$enableval" >&6
 
 test -z "$TELNET" && TELNET=telnet
@@ -19525,7 +19582,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:19528: checking for $ac_word" >&5
+echo "$as_me:19585: 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
@@ -19542,7 +19599,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:19545: found $ac_dir/$ac_word" >&5
+   echo "$as_me:19602: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -19553,10 +19610,10 @@ fi
 TELNET=$ac_cv_path_TELNET
 
 if test -n "$TELNET"; then
-  echo "$as_me:19556: result: $TELNET" >&5
+  echo "$as_me:19613: result: $TELNET" >&5
 echo "${ECHO_T}$TELNET" >&6
 else
-  echo "$as_me:19559: result: no" >&5
+  echo "$as_me:19616: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -19618,7 +19675,7 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "(line 19621) testing defining path for ${cf_path_prog} ..." 1>&5
+echo "(line 19678) testing defining path for ${cf_path_prog} ..." 1>&5
 
 	cat >>confdefs.h <<EOF
 #define TELNET_PATH "$cf_path_prog"
@@ -19635,7 +19692,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:19638: checking for $ac_word" >&5
+echo "$as_me:19695: 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
@@ -19652,7 +19709,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:19655: found $ac_dir/$ac_word" >&5
+   echo "$as_me:19712: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -19663,10 +19720,10 @@ fi
 TN3270=$ac_cv_path_TN3270
 
 if test -n "$TN3270"; then
-  echo "$as_me:19666: result: $TN3270" >&5
+  echo "$as_me:19723: result: $TN3270" >&5
 echo "${ECHO_T}$TN3270" >&6
 else
-  echo "$as_me:19669: result: no" >&5
+  echo "$as_me:19726: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -19728,7 +19785,7 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "(line 19731) testing defining path for ${cf_path_prog} ..." 1>&5
+echo "(line 19788) testing defining path for ${cf_path_prog} ..." 1>&5
 
 	cat >>confdefs.h <<EOF
 #define TN3270_PATH "$cf_path_prog"
@@ -19745,7 +19802,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:19748: checking for $ac_word" >&5
+echo "$as_me:19805: 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
@@ -19762,7 +19819,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:19765: found $ac_dir/$ac_word" >&5
+   echo "$as_me:19822: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -19773,10 +19830,10 @@ fi
 RLOGIN=$ac_cv_path_RLOGIN
 
 if test -n "$RLOGIN"; then
-  echo "$as_me:19776: result: $RLOGIN" >&5
+  echo "$as_me:19833: result: $RLOGIN" >&5
 echo "${ECHO_T}$RLOGIN" >&6
 else
-  echo "$as_me:19779: result: no" >&5
+  echo "$as_me:19836: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -19838,7 +19895,7 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "(line 19841) testing defining path for ${cf_path_prog} ..." 1>&5
+echo "(line 19898) testing defining path for ${cf_path_prog} ..." 1>&5
 
 	cat >>confdefs.h <<EOF
 #define RLOGIN_PATH "$cf_path_prog"
@@ -19855,7 +19912,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:19858: checking for $ac_word" >&5
+echo "$as_me:19915: 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
@@ -19872,7 +19929,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:19875: found $ac_dir/$ac_word" >&5
+   echo "$as_me:19932: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -19883,10 +19940,10 @@ fi
 MV=$ac_cv_path_MV
 
 if test -n "$MV"; then
-  echo "$as_me:19886: result: $MV" >&5
+  echo "$as_me:19943: result: $MV" >&5
 echo "${ECHO_T}$MV" >&6
 else
-  echo "$as_me:19889: result: no" >&5
+  echo "$as_me:19946: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -19948,7 +20005,7 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "(line 19951) testing defining path for ${cf_path_prog} ..." 1>&5
+echo "(line 20008) testing defining path for ${cf_path_prog} ..." 1>&5
 
 	cat >>confdefs.h <<EOF
 #define MV_PATH "$cf_path_prog"
@@ -19965,7 +20022,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:19968: checking for $ac_word" >&5
+echo "$as_me:20025: 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
@@ -19982,7 +20039,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:19985: found $ac_dir/$ac_word" >&5
+   echo "$as_me:20042: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -19993,10 +20050,10 @@ fi
 GZIP=$ac_cv_path_GZIP
 
 if test -n "$GZIP"; then
-  echo "$as_me:19996: result: $GZIP" >&5
+  echo "$as_me:20053: result: $GZIP" >&5
 echo "${ECHO_T}$GZIP" >&6
 else
-  echo "$as_me:19999: result: no" >&5
+  echo "$as_me:20056: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -20058,7 +20115,7 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "(line 20061) testing defining path for ${cf_path_prog} ..." 1>&5
+echo "(line 20118) testing defining path for ${cf_path_prog} ..." 1>&5
 
 	cat >>confdefs.h <<EOF
 #define GZIP_PATH "$cf_path_prog"
@@ -20075,7 +20132,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:20078: checking for $ac_word" >&5
+echo "$as_me:20135: 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
@@ -20092,7 +20149,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:20095: found $ac_dir/$ac_word" >&5
+   echo "$as_me:20152: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -20103,10 +20160,10 @@ fi
 UNCOMPRESS=$ac_cv_path_UNCOMPRESS
 
 if test -n "$UNCOMPRESS"; then
-  echo "$as_me:20106: result: $UNCOMPRESS" >&5
+  echo "$as_me:20163: result: $UNCOMPRESS" >&5
 echo "${ECHO_T}$UNCOMPRESS" >&6
 else
-  echo "$as_me:20109: result: no" >&5
+  echo "$as_me:20166: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -20168,7 +20225,7 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "(line 20171) testing defining path for ${cf_path_prog} ..." 1>&5
+echo "(line 20228) testing defining path for ${cf_path_prog} ..." 1>&5
 
 	cat >>confdefs.h <<EOF
 #define UNCOMPRESS_PATH "$cf_path_prog"
@@ -20185,7 +20242,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:20188: checking for $ac_word" >&5
+echo "$as_me:20245: 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
@@ -20202,7 +20259,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:20205: found $ac_dir/$ac_word" >&5
+   echo "$as_me:20262: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -20213,10 +20270,10 @@ fi
 UNZIP=$ac_cv_path_UNZIP
 
 if test -n "$UNZIP"; then
-  echo "$as_me:20216: result: $UNZIP" >&5
+  echo "$as_me:20273: result: $UNZIP" >&5
 echo "${ECHO_T}$UNZIP" >&6
 else
-  echo "$as_me:20219: result: no" >&5
+  echo "$as_me:20276: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -20278,7 +20335,7 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "(line 20281) testing defining path for ${cf_path_prog} ..." 1>&5
+echo "(line 20338) testing defining path for ${cf_path_prog} ..." 1>&5
 
 	cat >>confdefs.h <<EOF
 #define UNZIP_PATH "$cf_path_prog"
@@ -20295,7 +20352,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:20298: checking for $ac_word" >&5
+echo "$as_me:20355: 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
@@ -20312,7 +20369,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:20315: found $ac_dir/$ac_word" >&5
+   echo "$as_me:20372: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -20323,10 +20380,10 @@ fi
 BZIP2=$ac_cv_path_BZIP2
 
 if test -n "$BZIP2"; then
-  echo "$as_me:20326: result: $BZIP2" >&5
+  echo "$as_me:20383: result: $BZIP2" >&5
 echo "${ECHO_T}$BZIP2" >&6
 else
-  echo "$as_me:20329: result: no" >&5
+  echo "$as_me:20386: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -20388,7 +20445,7 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "(line 20391) testing defining path for ${cf_path_prog} ..." 1>&5
+echo "(line 20448) testing defining path for ${cf_path_prog} ..." 1>&5
 
 	cat >>confdefs.h <<EOF
 #define BZIP2_PATH "$cf_path_prog"
@@ -20400,21 +20457,19 @@ EOF
 
 fi
 
-if test ".$use_dired" != ".no" ; then
-
-test -z "$COMPRESS" && COMPRESS=compress
-for ac_prog in $COMPRESS compress
+test -z "$TAR" && TAR=tar
+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:20410: checking for $ac_word" >&5
+echo "$as_me:20465: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
-if test "${ac_cv_path_COMPRESS+set}" = set; then
+if test "${ac_cv_path_TAR+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
-  case $COMPRESS in
+  case $TAR in
   [\\/]* | ?:[\\/]*)
-  ac_cv_path_COMPRESS="$COMPRESS" # Let the user override the test with a path.
+  ac_cv_path_TAR="$TAR" # Let the user override the test with a path.
   ;;
   *)
   ac_save_IFS=$IFS; IFS=$ac_path_separator
@@ -20423,8 +20478,8 @@ for ac_dir in $ac_dummy; do
   IFS=$ac_save_IFS
   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:20427: found $ac_dir/$ac_word" >&5
+   ac_cv_path_TAR="$ac_dir/$ac_word"
+   echo "$as_me:20482: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -20432,19 +20487,19 @@ done
   ;;
 esac
 fi
-COMPRESS=$ac_cv_path_COMPRESS
+TAR=$ac_cv_path_TAR
 
-if test -n "$COMPRESS"; then
-  echo "$as_me:20438: result: $COMPRESS" >&5
-echo "${ECHO_T}$COMPRESS" >&6
+if test -n "$TAR"; then
+  echo "$as_me:20493: result: $TAR" >&5
+echo "${ECHO_T}$TAR" >&6
 else
-  echo "$as_me:20441: result: no" >&5
+  echo "$as_me:20496: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
-  test -n "$COMPRESS" && break
+  test -n "$TAR" && break
 done
-test -n "$COMPRESS" || COMPRESS="$COMPRESS"
+test -n "$TAR" || TAR="$TAR"
 
 cf_path_prog=""
 cf_path_args=""
@@ -20458,7 +20513,7 @@ os2*) #(vi
 	;;
 esac
 
-for cf_temp in $ac_cv_path_COMPRESS
+for cf_temp in $ac_cv_path_TAR
 do
 	if test -z "$cf_path_prog" ; then
 		if test "$with_full_paths" = yes ; then
@@ -20500,31 +20555,71 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "(line 20503) testing defining path for ${cf_path_prog} ..." 1>&5
+echo "(line 20558) testing defining path for ${cf_path_prog} ..." 1>&5
 
 	cat >>confdefs.h <<EOF
-#define COMPRESS_PATH "$cf_path_prog"
+#define TAR_PATH "$cf_path_prog"
 EOF
 
 	test -n "$cf_path_args" && cat >>confdefs.h <<EOF
-#define COMPRESS_ARGS "$cf_path_args"
+#define TAR_ARGS "$cf_path_args"
 EOF
 
 fi
 
-test -z "$RM" && RM=rm
-for ac_prog in $RM rm
+case $TAR in
+*pax)
+	TAR_UP_OPTIONS="-w"
+	TAR_DOWN_OPTIONS="-r"
+	TAR_PIPE_OPTIONS=""
+	TAR_FILE_OPTIONS="-f"
+	;;
+*star)
+	TAR_UP_OPTIONS="-c -f"
+	TAR_DOWN_OPTIONS="-x -U -f"
+	TAR_PIPE_OPTIONS="-"
+	TAR_FILE_OPTIONS=""
+	;;
+*tar)
+	# FIXME: some versions of tar require, some don't allow the "-"
+	TAR_UP_OPTIONS="-cf"
+	TAR_DOWN_OPTIONS="-xf"
+	TAR_PIPE_OPTIONS="-"
+	TAR_FILE_OPTIONS=""
+	;;
+esac
+
+cat >>confdefs.h <<EOF
+#define TAR_UP_OPTIONS "$TAR_UP_OPTIONS"
+EOF
+
+cat >>confdefs.h <<EOF
+#define TAR_DOWN_OPTIONS "$TAR_DOWN_OPTIONS"
+EOF
+
+cat >>confdefs.h <<EOF
+#define TAR_FILE_OPTIONS "$TAR_FILE_OPTIONS"
+EOF
+
+cat >>confdefs.h <<EOF
+#define TAR_PIPE_OPTIONS "$TAR_PIPE_OPTIONS"
+EOF
+
+if test ".$use_dired" != ".no" ; then
+
+test -z "$COMPRESS" && COMPRESS=compress
+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:20520: checking for $ac_word" >&5
+echo "$as_me:20615: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
-if test "${ac_cv_path_RM+set}" = set; then
+if test "${ac_cv_path_COMPRESS+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
-  case $RM in
+  case $COMPRESS in
   [\\/]* | ?:[\\/]*)
-  ac_cv_path_RM="$RM" # Let the user override the test with a path.
+  ac_cv_path_COMPRESS="$COMPRESS" # Let the user override the test with a path.
   ;;
   *)
   ac_save_IFS=$IFS; IFS=$ac_path_separator
@@ -20533,8 +20628,8 @@ for ac_dir in $ac_dummy; do
   IFS=$ac_save_IFS
   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:20537: found $ac_dir/$ac_word" >&5
+   ac_cv_path_COMPRESS="$ac_dir/$ac_word"
+   echo "$as_me:20632: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -20542,19 +20637,19 @@ done
   ;;
 esac
 fi
-RM=$ac_cv_path_RM
+COMPRESS=$ac_cv_path_COMPRESS
 
-if test -n "$RM"; then
-  echo "$as_me:20548: result: $RM" >&5
-echo "${ECHO_T}$RM" >&6
+if test -n "$COMPRESS"; then
+  echo "$as_me:20643: result: $COMPRESS" >&5
+echo "${ECHO_T}$COMPRESS" >&6
 else
-  echo "$as_me:20551: result: no" >&5
+  echo "$as_me:20646: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
-  test -n "$RM" && break
+  test -n "$COMPRESS" && break
 done
-test -n "$RM" || RM="$RM"
+test -n "$COMPRESS" || COMPRESS="$COMPRESS"
 
 cf_path_prog=""
 cf_path_args=""
@@ -20568,7 +20663,7 @@ os2*) #(vi
 	;;
 esac
 
-for cf_temp in $ac_cv_path_RM
+for cf_temp in $ac_cv_path_COMPRESS
 do
 	if test -z "$cf_path_prog" ; then
 		if test "$with_full_paths" = yes ; then
@@ -20610,31 +20705,31 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "(line 20613) testing defining path for ${cf_path_prog} ..." 1>&5
+echo "(line 20708) testing defining path for ${cf_path_prog} ..." 1>&5
 
 	cat >>confdefs.h <<EOF
-#define RM_PATH "$cf_path_prog"
+#define COMPRESS_PATH "$cf_path_prog"
 EOF
 
 	test -n "$cf_path_args" && cat >>confdefs.h <<EOF
-#define RM_ARGS "$cf_path_args"
+#define COMPRESS_ARGS "$cf_path_args"
 EOF
 
 fi
 
-test -z "$TAR" && TAR=tar
-for ac_prog in $TAR tar pax gtar gnutar bsdtar star
+test -z "$RM" && RM=rm
+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:20630: checking for $ac_word" >&5
+echo "$as_me:20725: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
-if test "${ac_cv_path_TAR+set}" = set; then
+if test "${ac_cv_path_RM+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
-  case $TAR in
+  case $RM in
   [\\/]* | ?:[\\/]*)
-  ac_cv_path_TAR="$TAR" # Let the user override the test with a path.
+  ac_cv_path_RM="$RM" # Let the user override the test with a path.
   ;;
   *)
   ac_save_IFS=$IFS; IFS=$ac_path_separator
@@ -20643,8 +20738,8 @@ for ac_dir in $ac_dummy; do
   IFS=$ac_save_IFS
   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:20647: found $ac_dir/$ac_word" >&5
+   ac_cv_path_RM="$ac_dir/$ac_word"
+   echo "$as_me:20742: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -20652,19 +20747,19 @@ done
   ;;
 esac
 fi
-TAR=$ac_cv_path_TAR
+RM=$ac_cv_path_RM
 
-if test -n "$TAR"; then
-  echo "$as_me:20658: result: $TAR" >&5
-echo "${ECHO_T}$TAR" >&6
+if test -n "$RM"; then
+  echo "$as_me:20753: result: $RM" >&5
+echo "${ECHO_T}$RM" >&6
 else
-  echo "$as_me:20661: result: no" >&5
+  echo "$as_me:20756: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
-  test -n "$TAR" && break
+  test -n "$RM" && break
 done
-test -n "$TAR" || TAR="$TAR"
+test -n "$RM" || RM="$RM"
 
 cf_path_prog=""
 cf_path_args=""
@@ -20678,7 +20773,7 @@ os2*) #(vi
 	;;
 esac
 
-for cf_temp in $ac_cv_path_TAR
+for cf_temp in $ac_cv_path_RM
 do
 	if test -z "$cf_path_prog" ; then
 		if test "$with_full_paths" = yes ; then
@@ -20720,14 +20815,14 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "(line 20723) testing defining path for ${cf_path_prog} ..." 1>&5
+echo "(line 20818) testing defining path for ${cf_path_prog} ..." 1>&5
 
 	cat >>confdefs.h <<EOF
-#define TAR_PATH "$cf_path_prog"
+#define RM_PATH "$cf_path_prog"
 EOF
 
 	test -n "$cf_path_args" && cat >>confdefs.h <<EOF
-#define TAR_ARGS "$cf_path_args"
+#define RM_ARGS "$cf_path_args"
 EOF
 
 fi
@@ -20737,7 +20832,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:20740: checking for $ac_word" >&5
+echo "$as_me:20835: 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
@@ -20754,7 +20849,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:20757: found $ac_dir/$ac_word" >&5
+   echo "$as_me:20852: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -20765,10 +20860,10 @@ fi
 UUDECODE=$ac_cv_path_UUDECODE
 
 if test -n "$UUDECODE"; then
-  echo "$as_me:20768: result: $UUDECODE" >&5
+  echo "$as_me:20863: result: $UUDECODE" >&5
 echo "${ECHO_T}$UUDECODE" >&6
 else
-  echo "$as_me:20771: result: no" >&5
+  echo "$as_me:20866: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -20830,7 +20925,7 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "(line 20833) testing defining path for ${cf_path_prog} ..." 1>&5
+echo "(line 20928) testing defining path for ${cf_path_prog} ..." 1>&5
 
 	cat >>confdefs.h <<EOF
 #define UUDECODE_PATH "$cf_path_prog"
@@ -20847,7 +20942,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:20850: checking for $ac_word" >&5
+echo "$as_me:20945: 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
@@ -20864,7 +20959,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:20867: found $ac_dir/$ac_word" >&5
+   echo "$as_me:20962: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -20875,10 +20970,10 @@ fi
 ZCAT=$ac_cv_path_ZCAT
 
 if test -n "$ZCAT"; then
-  echo "$as_me:20878: result: $ZCAT" >&5
+  echo "$as_me:20973: result: $ZCAT" >&5
 echo "${ECHO_T}$ZCAT" >&6
 else
-  echo "$as_me:20881: result: no" >&5
+  echo "$as_me:20976: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -20940,7 +21035,7 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "(line 20943) testing defining path for ${cf_path_prog} ..." 1>&5
+echo "(line 21038) testing defining path for ${cf_path_prog} ..." 1>&5
 
 	cat >>confdefs.h <<EOF
 #define ZCAT_PATH "$cf_path_prog"
@@ -20957,7 +21052,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:20960: checking for $ac_word" >&5
+echo "$as_me:21055: 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
@@ -20974,7 +21069,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:20977: found $ac_dir/$ac_word" >&5
+   echo "$as_me:21072: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -20985,10 +21080,10 @@ fi
 ZIP=$ac_cv_path_ZIP
 
 if test -n "$ZIP"; then
-  echo "$as_me:20988: result: $ZIP" >&5
+  echo "$as_me:21083: result: $ZIP" >&5
 echo "${ECHO_T}$ZIP" >&6
 else
-  echo "$as_me:20991: result: no" >&5
+  echo "$as_me:21086: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -21050,7 +21145,7 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "(line 21053) testing defining path for ${cf_path_prog} ..." 1>&5
+echo "(line 21148) testing defining path for ${cf_path_prog} ..." 1>&5
 
 	cat >>confdefs.h <<EOF
 #define ZIP_PATH "$cf_path_prog"
@@ -21062,44 +21157,6 @@ EOF
 
 fi
 
-case $TAR in
-*pax)
-	TAR_UP_OPTIONS="-w"
-	TAR_DOWN_OPTIONS="-r"
-	TAR_PIPE_OPTIONS=""
-	TAR_FILE_OPTIONS="-f"
-	;;
-*star)
-	TAR_UP_OPTIONS="-c -f"
-	TAR_DOWN_OPTIONS="-x -U -f"
-	TAR_PIPE_OPTIONS="-"
-	TAR_FILE_OPTIONS=""
-	;;
-*tar)
-	# FIXME: some versions of tar require, some don't allow the "-"
-	TAR_UP_OPTIONS="-cf"
-	TAR_DOWN_OPTIONS="-xf"
-	TAR_PIPE_OPTIONS="-"
-	TAR_FILE_OPTIONS=""
-	;;
-esac
-
-cat >>confdefs.h <<EOF
-#define TAR_UP_OPTIONS "$TAR_UP_OPTIONS"
-EOF
-
-cat >>confdefs.h <<EOF
-#define TAR_DOWN_OPTIONS "$TAR_DOWN_OPTIONS"
-EOF
-
-cat >>confdefs.h <<EOF
-#define TAR_FILE_OPTIONS "$TAR_FILE_OPTIONS"
-EOF
-
-cat >>confdefs.h <<EOF
-#define TAR_PIPE_OPTIONS "$TAR_PIPE_OPTIONS"
-EOF
-
 case "$INSTALL" in
 $srcdir*) # (vi
 	cat >>confdefs.h <<EOF
@@ -21115,7 +21172,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:21118: checking for $ac_word" >&5
+echo "$as_me:21175: 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
@@ -21132,7 +21189,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:21135: found $ac_dir/$ac_word" >&5
+   echo "$as_me:21192: found $ac_dir/$ac_word" >&5
    break
 fi
 done
@@ -21143,10 +21200,10 @@ fi
 INSTALL=$ac_cv_path_INSTALL
 
 if test -n "$INSTALL"; then
-  echo "$as_me:21146: result: $INSTALL" >&5
+  echo "$as_me:21203: result: $INSTALL" >&5
 echo "${ECHO_T}$INSTALL" >&6
 else
-  echo "$as_me:21149: result: no" >&5
+  echo "$as_me:21206: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -21208,7 +21265,7 @@ IFS="$cf_save_ifs"
 
 if test -n "$cf_path_prog" ; then
 
-echo "(line 21211) testing defining path for ${cf_path_prog} ..." 1>&5
+echo "(line 21268) testing defining path for ${cf_path_prog} ..." 1>&5
 
 	cat >>confdefs.h <<EOF
 #define INSTALL_PATH "$cf_path_prog"
@@ -21234,7 +21291,7 @@ fi
 
 if test $cf_cv_screen = pdcurses ; then
 
-	echo "$as_me:21237: checking for X" >&5
+	echo "$as_me:21294: checking for X" >&5
 echo $ECHO_N "checking for X... $ECHO_C" >&6
 
 # Check whether --with-x or --without-x was given.
@@ -21331,17 +21388,17 @@ if test "$ac_x_includes" = no; then
   # Guess where to find include files, by looking for Intrinsic.h.
   # First, try using that file with no special directory specified.
   cat >conftest.$ac_ext <<_ACEOF
-#line 21334 "configure"
+#line 21391 "configure"
 #include "confdefs.h"
 #include <X11/Intrinsic.h>
 _ACEOF
-if { (eval echo "$as_me:21338: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:21395: \"$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:21344: \$? = $ac_status" >&5
+  echo "$as_me:21401: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -21374,7 +21431,7 @@ if test "$ac_x_libraries" = no; then
   ac_save_LIBS=$LIBS
   LIBS="-lXt $LIBS"
   cat >conftest.$ac_ext <<_ACEOF
-#line 21377 "configure"
+#line 21434 "configure"
 #include "confdefs.h"
 #include <X11/Intrinsic.h>
 int
@@ -21386,16 +21443,16 @@ XtMalloc (0)
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:21389: \"$ac_link\"") >&5
+if { (eval echo "$as_me:21446: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:21392: \$? = $ac_status" >&5
+  echo "$as_me:21449: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:21395: \"$ac_try\"") >&5
+  { (eval echo "$as_me:21452: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:21398: \$? = $ac_status" >&5
+  echo "$as_me:21455: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   LIBS=$ac_save_LIBS
 # We can link X programs with no special library path.
@@ -21433,7 +21490,7 @@ fi
 fi # $with_x != no
 
 if test "$have_x" != yes; then
-  echo "$as_me:21436: result: $have_x" >&5
+  echo "$as_me:21493: result: $have_x" >&5
 echo "${ECHO_T}$have_x" >&6
   no_x=yes
 else
@@ -21443,7 +21500,7 @@ else
   # Update the cache value to reflect the command line values.
   ac_cv_have_x="have_x=yes \
 		ac_x_includes=$x_includes ac_x_libraries=$x_libraries"
-  echo "$as_me:21446: result: libraries $x_libraries, headers $x_includes" >&5
+  echo "$as_me:21503: result: libraries $x_libraries, headers $x_includes" >&5
 echo "${ECHO_T}libraries $x_libraries, headers $x_includes" >&6
 fi
 
@@ -21467,11 +21524,11 @@ else
     # others require no space.  Words are not sufficient . . . .
     case `(uname -sr) 2>/dev/null` in
     "SunOS 5"*)
-      echo "$as_me:21470: checking whether -R must be followed by a space" >&5
+      echo "$as_me:21527: checking whether -R must be followed by a space" >&5
 echo $ECHO_N "checking whether -R must be followed by a space... $ECHO_C" >&6
       ac_xsave_LIBS=$LIBS; LIBS="$LIBS -R$x_libraries"
       cat >conftest.$ac_ext <<_ACEOF
-#line 21474 "configure"
+#line 21531 "configure"
 #include "confdefs.h"
 
 int
@@ -21483,16 +21540,16 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:21486: \"$ac_link\"") >&5
+if { (eval echo "$as_me:21543: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:21489: \$? = $ac_status" >&5
+  echo "$as_me:21546: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:21492: \"$ac_try\"") >&5
+  { (eval echo "$as_me:21549: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:21495: \$? = $ac_status" >&5
+  echo "$as_me:21552: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_R_nospace=yes
 else
@@ -21502,13 +21559,13 @@ ac_R_nospace=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
       if test $ac_R_nospace = yes; then
-	echo "$as_me:21505: result: no" >&5
+	echo "$as_me:21562: result: no" >&5
 echo "${ECHO_T}no" >&6
 	X_LIBS="$X_LIBS -R$x_libraries"
       else
 	LIBS="$ac_xsave_LIBS -R $x_libraries"
 	cat >conftest.$ac_ext <<_ACEOF
-#line 21511 "configure"
+#line 21568 "configure"
 #include "confdefs.h"
 
 int
@@ -21520,16 +21577,16 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:21523: \"$ac_link\"") >&5
+if { (eval echo "$as_me:21580: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:21526: \$? = $ac_status" >&5
+  echo "$as_me:21583: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:21529: \"$ac_try\"") >&5
+  { (eval echo "$as_me:21586: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:21532: \$? = $ac_status" >&5
+  echo "$as_me:21589: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_R_space=yes
 else
@@ -21539,11 +21596,11 @@ ac_R_space=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 	if test $ac_R_space = yes; then
-	  echo "$as_me:21542: result: yes" >&5
+	  echo "$as_me:21599: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 	  X_LIBS="$X_LIBS -R $x_libraries"
 	else
-	  echo "$as_me:21546: result: neither works" >&5
+	  echo "$as_me:21603: result: neither works" >&5
 echo "${ECHO_T}neither works" >&6
 	fi
       fi
@@ -21563,7 +21620,7 @@ echo "${ECHO_T}neither works" >&6
     # the Alpha needs dnet_stub (dnet does not exist).
     ac_xsave_LIBS="$LIBS"; LIBS="$LIBS $X_LIBS -lX11"
     cat >conftest.$ac_ext <<_ACEOF
-#line 21566 "configure"
+#line 21623 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -21582,22 +21639,22 @@ XOpenDisplay ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:21585: \"$ac_link\"") >&5
+if { (eval echo "$as_me:21642: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:21588: \$? = $ac_status" >&5
+  echo "$as_me:21645: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:21591: \"$ac_try\"") >&5
+  { (eval echo "$as_me:21648: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:21594: \$? = $ac_status" >&5
+  echo "$as_me:21651: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   :
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
-echo "$as_me:21600: checking for dnet_ntoa in -ldnet" >&5
+echo "$as_me:21657: checking for dnet_ntoa in -ldnet" >&5
 echo $ECHO_N "checking for dnet_ntoa in -ldnet... $ECHO_C" >&6
 if test "${ac_cv_lib_dnet_dnet_ntoa+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -21605,7 +21662,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-ldnet  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 21608 "configure"
+#line 21665 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -21624,16 +21681,16 @@ dnet_ntoa ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:21627: \"$ac_link\"") >&5
+if { (eval echo "$as_me:21684: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:21630: \$? = $ac_status" >&5
+  echo "$as_me:21687: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:21633: \"$ac_try\"") >&5
+  { (eval echo "$as_me:21690: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:21636: \$? = $ac_status" >&5
+  echo "$as_me:21693: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_dnet_dnet_ntoa=yes
 else
@@ -21644,14 +21701,14 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:21647: result: $ac_cv_lib_dnet_dnet_ntoa" >&5
+echo "$as_me:21704: result: $ac_cv_lib_dnet_dnet_ntoa" >&5
 echo "${ECHO_T}$ac_cv_lib_dnet_dnet_ntoa" >&6
 if test $ac_cv_lib_dnet_dnet_ntoa = yes; then
   X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet"
 fi
 
     if test $ac_cv_lib_dnet_dnet_ntoa = no; then
-      echo "$as_me:21654: checking for dnet_ntoa in -ldnet_stub" >&5
+      echo "$as_me:21711: checking for dnet_ntoa in -ldnet_stub" >&5
 echo $ECHO_N "checking for dnet_ntoa in -ldnet_stub... $ECHO_C" >&6
 if test "${ac_cv_lib_dnet_stub_dnet_ntoa+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -21659,7 +21716,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-ldnet_stub  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 21662 "configure"
+#line 21719 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -21678,16 +21735,16 @@ dnet_ntoa ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:21681: \"$ac_link\"") >&5
+if { (eval echo "$as_me:21738: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:21684: \$? = $ac_status" >&5
+  echo "$as_me:21741: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:21687: \"$ac_try\"") >&5
+  { (eval echo "$as_me:21744: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:21690: \$? = $ac_status" >&5
+  echo "$as_me:21747: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_dnet_stub_dnet_ntoa=yes
 else
@@ -21698,7 +21755,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:21701: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5
+echo "$as_me:21758: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5
 echo "${ECHO_T}$ac_cv_lib_dnet_stub_dnet_ntoa" >&6
 if test $ac_cv_lib_dnet_stub_dnet_ntoa = yes; then
   X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet_stub"
@@ -21717,13 +21774,13 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
     # on Irix 5.2, according to T.E. Dickey.
     # The functions gethostbyname, getservbyname, and inet_addr are
     # in -lbsd on LynxOS 3.0.1/i386, according to Lars Hecking.
-    echo "$as_me:21720: checking for gethostbyname" >&5
+    echo "$as_me:21777: checking for gethostbyname" >&5
 echo $ECHO_N "checking for gethostbyname... $ECHO_C" >&6
 if test "${ac_cv_func_gethostbyname+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 21726 "configure"
+#line 21783 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char gethostbyname (); below.  */
@@ -21754,16 +21811,16 @@ f = gethostbyname;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:21757: \"$ac_link\"") >&5
+if { (eval echo "$as_me:21814: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:21760: \$? = $ac_status" >&5
+  echo "$as_me:21817: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:21763: \"$ac_try\"") >&5
+  { (eval echo "$as_me:21820: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:21766: \$? = $ac_status" >&5
+  echo "$as_me:21823: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_func_gethostbyname=yes
 else
@@ -21773,11 +21830,11 @@ ac_cv_func_gethostbyname=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:21776: result: $ac_cv_func_gethostbyname" >&5
+echo "$as_me:21833: result: $ac_cv_func_gethostbyname" >&5
 echo "${ECHO_T}$ac_cv_func_gethostbyname" >&6
 
     if test $ac_cv_func_gethostbyname = no; then
-      echo "$as_me:21780: checking for gethostbyname in -lnsl" >&5
+      echo "$as_me:21837: checking for gethostbyname in -lnsl" >&5
 echo $ECHO_N "checking for gethostbyname in -lnsl... $ECHO_C" >&6
 if test "${ac_cv_lib_nsl_gethostbyname+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -21785,7 +21842,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lnsl  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 21788 "configure"
+#line 21845 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -21804,16 +21861,16 @@ gethostbyname ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:21807: \"$ac_link\"") >&5
+if { (eval echo "$as_me:21864: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:21810: \$? = $ac_status" >&5
+  echo "$as_me:21867: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:21813: \"$ac_try\"") >&5
+  { (eval echo "$as_me:21870: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:21816: \$? = $ac_status" >&5
+  echo "$as_me:21873: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_nsl_gethostbyname=yes
 else
@@ -21824,14 +21881,14 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:21827: result: $ac_cv_lib_nsl_gethostbyname" >&5
+echo "$as_me:21884: result: $ac_cv_lib_nsl_gethostbyname" >&5
 echo "${ECHO_T}$ac_cv_lib_nsl_gethostbyname" >&6
 if test $ac_cv_lib_nsl_gethostbyname = yes; then
   X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl"
 fi
 
       if test $ac_cv_lib_nsl_gethostbyname = no; then
-        echo "$as_me:21834: checking for gethostbyname in -lbsd" >&5
+        echo "$as_me:21891: checking for gethostbyname in -lbsd" >&5
 echo $ECHO_N "checking for gethostbyname in -lbsd... $ECHO_C" >&6
 if test "${ac_cv_lib_bsd_gethostbyname+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -21839,7 +21896,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lbsd  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 21842 "configure"
+#line 21899 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -21858,16 +21915,16 @@ gethostbyname ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:21861: \"$ac_link\"") >&5
+if { (eval echo "$as_me:21918: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:21864: \$? = $ac_status" >&5
+  echo "$as_me:21921: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:21867: \"$ac_try\"") >&5
+  { (eval echo "$as_me:21924: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:21870: \$? = $ac_status" >&5
+  echo "$as_me:21927: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_bsd_gethostbyname=yes
 else
@@ -21878,7 +21935,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:21881: result: $ac_cv_lib_bsd_gethostbyname" >&5
+echo "$as_me:21938: result: $ac_cv_lib_bsd_gethostbyname" >&5
 echo "${ECHO_T}$ac_cv_lib_bsd_gethostbyname" >&6
 if test $ac_cv_lib_bsd_gethostbyname = yes; then
   X_EXTRA_LIBS="$X_EXTRA_LIBS -lbsd"
@@ -21894,13 +21951,13 @@ fi
     # variants that don't use the nameserver (or something).  -lsocket
     # must be given before -lnsl if both are needed.  We assume that
     # if connect needs -lnsl, so does gethostbyname.
-    echo "$as_me:21897: checking for connect" >&5
+    echo "$as_me:21954: checking for connect" >&5
 echo $ECHO_N "checking for connect... $ECHO_C" >&6
 if test "${ac_cv_func_connect+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 21903 "configure"
+#line 21960 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char connect (); below.  */
@@ -21931,16 +21988,16 @@ f = connect;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:21934: \"$ac_link\"") >&5
+if { (eval echo "$as_me:21991: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:21937: \$? = $ac_status" >&5
+  echo "$as_me:21994: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:21940: \"$ac_try\"") >&5
+  { (eval echo "$as_me:21997: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:21943: \$? = $ac_status" >&5
+  echo "$as_me:22000: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_func_connect=yes
 else
@@ -21950,11 +22007,11 @@ ac_cv_func_connect=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:21953: result: $ac_cv_func_connect" >&5
+echo "$as_me:22010: result: $ac_cv_func_connect" >&5
 echo "${ECHO_T}$ac_cv_func_connect" >&6
 
     if test $ac_cv_func_connect = no; then
-      echo "$as_me:21957: checking for connect in -lsocket" >&5
+      echo "$as_me:22014: checking for connect in -lsocket" >&5
 echo $ECHO_N "checking for connect in -lsocket... $ECHO_C" >&6
 if test "${ac_cv_lib_socket_connect+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -21962,7 +22019,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lsocket $X_EXTRA_LIBS $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 21965 "configure"
+#line 22022 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -21981,16 +22038,16 @@ connect ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:21984: \"$ac_link\"") >&5
+if { (eval echo "$as_me:22041: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:21987: \$? = $ac_status" >&5
+  echo "$as_me:22044: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:21990: \"$ac_try\"") >&5
+  { (eval echo "$as_me:22047: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:21993: \$? = $ac_status" >&5
+  echo "$as_me:22050: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_socket_connect=yes
 else
@@ -22001,7 +22058,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:22004: result: $ac_cv_lib_socket_connect" >&5
+echo "$as_me:22061: result: $ac_cv_lib_socket_connect" >&5
 echo "${ECHO_T}$ac_cv_lib_socket_connect" >&6
 if test $ac_cv_lib_socket_connect = yes; then
   X_EXTRA_LIBS="-lsocket $X_EXTRA_LIBS"
@@ -22010,13 +22067,13 @@ fi
     fi
 
     # Guillermo Gomez says -lposix is necessary on A/UX.
-    echo "$as_me:22013: checking for remove" >&5
+    echo "$as_me:22070: checking for remove" >&5
 echo $ECHO_N "checking for remove... $ECHO_C" >&6
 if test "${ac_cv_func_remove+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 22019 "configure"
+#line 22076 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char remove (); below.  */
@@ -22047,16 +22104,16 @@ f = remove;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:22050: \"$ac_link\"") >&5
+if { (eval echo "$as_me:22107: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:22053: \$? = $ac_status" >&5
+  echo "$as_me:22110: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:22056: \"$ac_try\"") >&5
+  { (eval echo "$as_me:22113: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:22059: \$? = $ac_status" >&5
+  echo "$as_me:22116: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_func_remove=yes
 else
@@ -22066,11 +22123,11 @@ ac_cv_func_remove=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:22069: result: $ac_cv_func_remove" >&5
+echo "$as_me:22126: result: $ac_cv_func_remove" >&5
 echo "${ECHO_T}$ac_cv_func_remove" >&6
 
     if test $ac_cv_func_remove = no; then
-      echo "$as_me:22073: checking for remove in -lposix" >&5
+      echo "$as_me:22130: checking for remove in -lposix" >&5
 echo $ECHO_N "checking for remove in -lposix... $ECHO_C" >&6
 if test "${ac_cv_lib_posix_remove+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -22078,7 +22135,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lposix  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 22081 "configure"
+#line 22138 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -22097,16 +22154,16 @@ remove ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:22100: \"$ac_link\"") >&5
+if { (eval echo "$as_me:22157: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:22103: \$? = $ac_status" >&5
+  echo "$as_me:22160: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:22106: \"$ac_try\"") >&5
+  { (eval echo "$as_me:22163: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:22109: \$? = $ac_status" >&5
+  echo "$as_me:22166: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_posix_remove=yes
 else
@@ -22117,7 +22174,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:22120: result: $ac_cv_lib_posix_remove" >&5
+echo "$as_me:22177: result: $ac_cv_lib_posix_remove" >&5
 echo "${ECHO_T}$ac_cv_lib_posix_remove" >&6
 if test $ac_cv_lib_posix_remove = yes; then
   X_EXTRA_LIBS="$X_EXTRA_LIBS -lposix"
@@ -22126,13 +22183,13 @@ fi
     fi
 
     # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay.
-    echo "$as_me:22129: checking for shmat" >&5
+    echo "$as_me:22186: checking for shmat" >&5
 echo $ECHO_N "checking for shmat... $ECHO_C" >&6
 if test "${ac_cv_func_shmat+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 22135 "configure"
+#line 22192 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char shmat (); below.  */
@@ -22163,16 +22220,16 @@ f = shmat;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:22166: \"$ac_link\"") >&5
+if { (eval echo "$as_me:22223: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:22169: \$? = $ac_status" >&5
+  echo "$as_me:22226: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:22172: \"$ac_try\"") >&5
+  { (eval echo "$as_me:22229: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:22175: \$? = $ac_status" >&5
+  echo "$as_me:22232: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_func_shmat=yes
 else
@@ -22182,11 +22239,11 @@ ac_cv_func_shmat=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:22185: result: $ac_cv_func_shmat" >&5
+echo "$as_me:22242: result: $ac_cv_func_shmat" >&5
 echo "${ECHO_T}$ac_cv_func_shmat" >&6
 
     if test $ac_cv_func_shmat = no; then
-      echo "$as_me:22189: checking for shmat in -lipc" >&5
+      echo "$as_me:22246: checking for shmat in -lipc" >&5
 echo $ECHO_N "checking for shmat in -lipc... $ECHO_C" >&6
 if test "${ac_cv_lib_ipc_shmat+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -22194,7 +22251,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lipc  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 22197 "configure"
+#line 22254 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -22213,16 +22270,16 @@ shmat ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:22216: \"$ac_link\"") >&5
+if { (eval echo "$as_me:22273: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:22219: \$? = $ac_status" >&5
+  echo "$as_me:22276: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:22222: \"$ac_try\"") >&5
+  { (eval echo "$as_me:22279: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:22225: \$? = $ac_status" >&5
+  echo "$as_me:22282: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_ipc_shmat=yes
 else
@@ -22233,7 +22290,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:22236: result: $ac_cv_lib_ipc_shmat" >&5
+echo "$as_me:22293: result: $ac_cv_lib_ipc_shmat" >&5
 echo "${ECHO_T}$ac_cv_lib_ipc_shmat" >&6
 if test $ac_cv_lib_ipc_shmat = yes; then
   X_EXTRA_LIBS="$X_EXTRA_LIBS -lipc"
@@ -22251,7 +22308,7 @@ fi
   # These have to be linked with before -lX11, unlike the other
   # libraries we check for below, so use a different variable.
   # John Interrante, Karl Berry
-  echo "$as_me:22254: checking for IceConnectionNumber in -lICE" >&5
+  echo "$as_me:22311: checking for IceConnectionNumber in -lICE" >&5
 echo $ECHO_N "checking for IceConnectionNumber in -lICE... $ECHO_C" >&6
 if test "${ac_cv_lib_ICE_IceConnectionNumber+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -22259,7 +22316,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lICE $X_EXTRA_LIBS $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 22262 "configure"
+#line 22319 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -22278,16 +22335,16 @@ IceConnectionNumber ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:22281: \"$ac_link\"") >&5
+if { (eval echo "$as_me:22338: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:22284: \$? = $ac_status" >&5
+  echo "$as_me:22341: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:22287: \"$ac_try\"") >&5
+  { (eval echo "$as_me:22344: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:22290: \$? = $ac_status" >&5
+  echo "$as_me:22347: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_ICE_IceConnectionNumber=yes
 else
@@ -22298,7 +22355,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:22301: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5
+echo "$as_me:22358: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5
 echo "${ECHO_T}$ac_cv_lib_ICE_IceConnectionNumber" >&6
 if test $ac_cv_lib_ICE_IceConnectionNumber = yes; then
   X_PRE_LIBS="$X_PRE_LIBS -lSM -lICE"
@@ -22392,7 +22449,7 @@ fi
 
 if test "$cf_check_cflags" != "$CFLAGS" ; then
 cat >conftest.$ac_ext <<_ACEOF
-#line 22395 "configure"
+#line 22452 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 int
@@ -22404,16 +22461,16 @@ printf("Hello world");
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:22407: \"$ac_link\"") >&5
+if { (eval echo "$as_me:22464: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:22410: \$? = $ac_status" >&5
+  echo "$as_me:22467: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:22413: \"$ac_try\"") >&5
+  { (eval echo "$as_me:22470: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:22416: \$? = $ac_status" >&5
+  echo "$as_me:22473: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   :
 else
@@ -22430,13 +22487,13 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
 
-echo "$as_me:22433: checking for XOpenDisplay" >&5
+echo "$as_me:22490: 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 22439 "configure"
+#line 22496 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char XOpenDisplay (); below.  */
@@ -22467,16 +22524,16 @@ f = XOpenDisplay;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:22470: \"$ac_link\"") >&5
+if { (eval echo "$as_me:22527: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:22473: \$? = $ac_status" >&5
+  echo "$as_me:22530: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:22476: \"$ac_try\"") >&5
+  { (eval echo "$as_me:22533: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:22479: \$? = $ac_status" >&5
+  echo "$as_me:22536: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_func_XOpenDisplay=yes
 else
@@ -22486,13 +22543,13 @@ ac_cv_func_XOpenDisplay=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:22489: result: $ac_cv_func_XOpenDisplay" >&5
+echo "$as_me:22546: 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:22495: checking for XOpenDisplay in -lX11" >&5
+echo "$as_me:22552: 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
@@ -22500,7 +22557,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lX11 $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 22503 "configure"
+#line 22560 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -22519,16 +22576,16 @@ XOpenDisplay ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:22522: \"$ac_link\"") >&5
+if { (eval echo "$as_me:22579: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:22525: \$? = $ac_status" >&5
+  echo "$as_me:22582: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:22528: \"$ac_try\"") >&5
+  { (eval echo "$as_me:22585: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:22531: \$? = $ac_status" >&5
+  echo "$as_me:22588: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_X11_XOpenDisplay=yes
 else
@@ -22539,7 +22596,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:22542: result: $ac_cv_lib_X11_XOpenDisplay" >&5
+echo "$as_me:22599: 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
   LIBS="-lX11 $LIBS"
@@ -22547,13 +22604,13 @@ fi
 
 fi
 
-echo "$as_me:22550: checking for XtAppInitialize" >&5
+echo "$as_me:22607: 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 22556 "configure"
+#line 22613 "configure"
 #include "confdefs.h"
 /* System header to define __stub macros and hopefully few prototypes,
     which can conflict with char XtAppInitialize (); below.  */
@@ -22584,16 +22641,16 @@ f = XtAppInitialize;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:22587: \"$ac_link\"") >&5
+if { (eval echo "$as_me:22644: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:22590: \$? = $ac_status" >&5
+  echo "$as_me:22647: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:22593: \"$ac_try\"") >&5
+  { (eval echo "$as_me:22650: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:22596: \$? = $ac_status" >&5
+  echo "$as_me:22653: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_func_XtAppInitialize=yes
 else
@@ -22603,13 +22660,13 @@ ac_cv_func_XtAppInitialize=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:22606: result: $ac_cv_func_XtAppInitialize" >&5
+echo "$as_me:22663: 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:22612: checking for XtAppInitialize in -lXt" >&5
+echo "$as_me:22669: 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
@@ -22617,7 +22674,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lXt $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 22620 "configure"
+#line 22677 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -22636,16 +22693,16 @@ XtAppInitialize ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:22639: \"$ac_link\"") >&5
+if { (eval echo "$as_me:22696: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:22642: \$? = $ac_status" >&5
+  echo "$as_me:22699: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:22645: \"$ac_try\"") >&5
+  { (eval echo "$as_me:22702: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:22648: \$? = $ac_status" >&5
+  echo "$as_me:22705: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_Xt_XtAppInitialize=yes
 else
@@ -22656,7 +22713,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:22659: result: $ac_cv_lib_Xt_XtAppInitialize" >&5
+echo "$as_me:22716: 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
   cat >>confdefs.h <<\EOF
@@ -22670,7 +22727,7 @@ fi
 fi
 
 if test $cf_have_X_LIBS = no ; then
-	{ echo "$as_me:22673: WARNING: Unable to successfully link X Toolkit library (-lXt) with
+	{ echo "$as_me:22730: 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
@@ -22680,7 +22737,7 @@ fi
 
 cf_x_athena=${cf_x_athena-Xaw}
 
-echo "$as_me:22683: checking if you want to link with Xaw 3d library" >&5
+echo "$as_me:22740: 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=
 
@@ -22691,14 +22748,14 @@ if test "${with_Xaw3d+set}" = set; then
 fi;
 if test "$withval" = yes ; then
 	cf_x_athena=Xaw3d
-	echo "$as_me:22694: result: yes" >&5
+	echo "$as_me:22751: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 else
-	echo "$as_me:22697: result: no" >&5
+	echo "$as_me:22754: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
-echo "$as_me:22701: checking if you want to link with neXT Athena library" >&5
+echo "$as_me:22758: 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=
 
@@ -22709,14 +22766,14 @@ if test "${with_neXtaw+set}" = set; then
 fi;
 if test "$withval" = yes ; then
 	cf_x_athena=neXtaw
-	echo "$as_me:22712: result: yes" >&5
+	echo "$as_me:22769: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 else
-	echo "$as_me:22715: result: no" >&5
+	echo "$as_me:22772: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
-echo "$as_me:22719: checking if you want to link with Athena-Plus library" >&5
+echo "$as_me:22776: 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=
 
@@ -22727,14 +22784,14 @@ if test "${with_XawPlus+set}" = set; then
 fi;
 if test "$withval" = yes ; then
 	cf_x_athena=XawPlus
-	echo "$as_me:22730: result: yes" >&5
+	echo "$as_me:22787: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 else
-	echo "$as_me:22733: result: no" >&5
+	echo "$as_me:22790: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
-echo "$as_me:22737: checking for XextCreateExtension in -lXext" >&5
+echo "$as_me:22794: 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
@@ -22742,7 +22799,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lXext  $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 22745 "configure"
+#line 22802 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -22761,16 +22818,16 @@ XextCreateExtension ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:22764: \"$ac_link\"") >&5
+if { (eval echo "$as_me:22821: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:22767: \$? = $ac_status" >&5
+  echo "$as_me:22824: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:22770: \"$ac_try\"") >&5
+  { (eval echo "$as_me:22827: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:22773: \$? = $ac_status" >&5
+  echo "$as_me:22830: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_Xext_XextCreateExtension=yes
 else
@@ -22781,7 +22838,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:22784: result: $ac_cv_lib_Xext_XextCreateExtension" >&5
+echo "$as_me:22841: 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
   LIBS="-lXext $LIBS"
@@ -22803,14 +22860,14 @@ do
 		cf_test=X11/$cf_x_athena_root/SimpleMenu.h
 		if test $cf_path != default ; then
 			CPPFLAGS="-I$cf_path/include $cf_save"
-			echo "$as_me:22806: checking for $cf_test in $cf_path" >&5
+			echo "$as_me:22863: 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:22809: checking for $cf_test" >&5
+			echo "$as_me:22866: checking for $cf_test" >&5
 echo $ECHO_N "checking for $cf_test... $ECHO_C" >&6
 		fi
 		cat >conftest.$ac_ext <<_ACEOF
-#line 22813 "configure"
+#line 22870 "configure"
 #include "confdefs.h"
 
 #include <X11/Intrinsic.h>
@@ -22824,16 +22881,16 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:22827: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:22884: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:22830: \$? = $ac_status" >&5
+  echo "$as_me:22887: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:22833: \"$ac_try\"") >&5
+  { (eval echo "$as_me:22890: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:22836: \$? = $ac_status" >&5
+  echo "$as_me:22893: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_result=yes
 else
@@ -22842,7 +22899,7 @@ cat conftest.$ac_ext >&5
 cf_result=no
 fi
 rm -f conftest.$ac_objext conftest.$ac_ext
-		echo "$as_me:22845: result: $cf_result" >&5
+		echo "$as_me:22902: result: $cf_result" >&5
 echo "${ECHO_T}$cf_result" >&6
 		if test "$cf_result" = yes ; then
 			cf_x_athena_include=$cf_path
@@ -22854,7 +22911,7 @@ echo "${ECHO_T}$cf_result" >&6
 done
 
 if test -z "$cf_x_athena_include" ; then
-	{ echo "$as_me:22857: WARNING: Unable to successfully find Athena header files with test program" >&5
+	{ echo "$as_me:22914: WARNING: Unable to successfully find Athena header files with test program" >&5
 echo "$as_me: WARNING: Unable to successfully find Athena header files with test program" >&2;}
 elif test "$cf_x_athena_include" != default ; then
 	CPPFLAGS="$CPPFLAGS -I$cf_x_athena_include"
@@ -22879,17 +22936,17 @@ do
 			cf_test=XawSimpleMenuAddGlobalActions
 			if test $cf_path != default ; then
 				LIBS="-L$cf_path/lib $cf_lib $LIBS"
-				echo "$as_me:22882: checking for $cf_lib in $cf_path" >&5
+				echo "$as_me:22939: checking for $cf_lib in $cf_path" >&5
 echo $ECHO_N "checking for $cf_lib in $cf_path... $ECHO_C" >&6
 			else
 				LIBS="$cf_lib $LIBS"
-				echo "$as_me:22886: checking for $cf_test in $cf_lib" >&5
+				echo "$as_me:22943: checking for $cf_test in $cf_lib" >&5
 echo $ECHO_N "checking for $cf_test in $cf_lib... $ECHO_C" >&6
 			fi
 			cf_SAVE="$LIBS"
 			LIBS="$X_PRE_LIBS $LIBS $X_EXTRA_LIBS"
 			cat >conftest.$ac_ext <<_ACEOF
-#line 22892 "configure"
+#line 22949 "configure"
 #include "confdefs.h"
 
 int
@@ -22901,16 +22958,16 @@ $cf_test()
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:22904: \"$ac_link\"") >&5
+if { (eval echo "$as_me:22961: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:22907: \$? = $ac_status" >&5
+  echo "$as_me:22964: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:22910: \"$ac_try\"") >&5
+  { (eval echo "$as_me:22967: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:22913: \$? = $ac_status" >&5
+  echo "$as_me:22970: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_result=yes
 else
@@ -22919,7 +22976,7 @@ cat conftest.$ac_ext >&5
 cf_result=no
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
-			echo "$as_me:22922: result: $cf_result" >&5
+			echo "$as_me:22979: result: $cf_result" >&5
 echo "${ECHO_T}$cf_result" >&6
 			if test "$cf_result" = yes ; then
 				cf_x_athena_lib="$cf_lib"
@@ -22933,7 +22990,7 @@ echo "${ECHO_T}$cf_result" >&6
 done
 
 if test -z "$cf_x_athena_lib" ; then
-	{ { echo "$as_me:22936: error: Unable to successfully link Athena library (-l$cf_x_athena_root) with test program" >&5
+	{ { echo "$as_me:22993: 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
@@ -23024,7 +23081,7 @@ fi
 
 if test "$cf_check_cflags" != "$CFLAGS" ; then
 cat >conftest.$ac_ext <<_ACEOF
-#line 23027 "configure"
+#line 23084 "configure"
 #include "confdefs.h"
 #include <stdio.h>
 int
@@ -23036,16 +23093,16 @@ printf("Hello world");
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:23039: \"$ac_link\"") >&5
+if { (eval echo "$as_me:23096: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:23042: \$? = $ac_status" >&5
+  echo "$as_me:23099: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:23045: \"$ac_try\"") >&5
+  { (eval echo "$as_me:23102: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:23048: \$? = $ac_status" >&5
+  echo "$as_me:23105: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   :
 else
@@ -23062,7 +23119,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
 
-echo "$as_me:23065: checking for XOpenDisplay in -lX11" >&5
+echo "$as_me:23122: 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
@@ -23070,7 +23127,7 @@ else
   ac_check_lib_save_LIBS=$LIBS
 LIBS="-lX11 $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 23073 "configure"
+#line 23130 "configure"
 #include "confdefs.h"
 
 /* Override any gcc2 internal prototype to avoid an error.  */
@@ -23089,16 +23146,16 @@ XOpenDisplay ();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:23092: \"$ac_link\"") >&5
+if { (eval echo "$as_me:23149: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:23095: \$? = $ac_status" >&5
+  echo "$as_me:23152: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:23098: \"$ac_try\"") >&5
+  { (eval echo "$as_me:23155: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:23101: \$? = $ac_status" >&5
+  echo "$as_me:23158: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   ac_cv_lib_X11_XOpenDisplay=yes
 else
@@ -23109,13 +23166,13 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 LIBS=$ac_check_lib_save_LIBS
 fi
-echo "$as_me:23112: result: $ac_cv_lib_X11_XOpenDisplay" >&5
+echo "$as_me:23169: 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
   LIBS="-lX11 $LIBS"
 fi
 
-echo "$as_me:23118: checking for XCurses library" >&5
+echo "$as_me:23175: 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
@@ -23123,7 +23180,7 @@ else
 
 LIBS="-lXCurses $LIBS"
 cat >conftest.$ac_ext <<_ACEOF
-#line 23126 "configure"
+#line 23183 "configure"
 #include "confdefs.h"
 
 #include <xcurses.h>
@@ -23138,16 +23195,16 @@ XCursesExit();
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:23141: \"$ac_link\"") >&5
+if { (eval echo "$as_me:23198: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:23144: \$? = $ac_status" >&5
+  echo "$as_me:23201: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:23147: \"$ac_try\"") >&5
+  { (eval echo "$as_me:23204: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:23150: \$? = $ac_status" >&5
+  echo "$as_me:23207: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_lib_XCurses=yes
 else
@@ -23158,7 +23215,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 
 fi
-echo "$as_me:23161: result: $cf_cv_lib_XCurses" >&5
+echo "$as_me:23218: result: $cf_cv_lib_XCurses" >&5
 echo "${ECHO_T}$cf_cv_lib_XCurses" >&6
 if test $cf_cv_lib_XCurses = yes ; then
 	cat >>confdefs.h <<\EOF
@@ -23174,14 +23231,14 @@ EOF
 EOF
 
 else
-	{ { echo "$as_me:23177: error: Cannot link with XCurses" >&5
+	{ { echo "$as_me:23234: error: Cannot link with XCurses" >&5
 echo "$as_me: error: Cannot link with XCurses" >&2;}
    { (exit 1); exit 1; }; }
 fi
 
 else
 
-echo "$as_me:23184: checking if we can include termio.h with curses" >&5
+echo "$as_me:23241: 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
@@ -23191,7 +23248,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 23194 "configure"
+#line 23251 "configure"
 #include "confdefs.h"
 
 #include <LYCurses.h>
@@ -23205,16 +23262,16 @@ putchar(0x0a)
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:23208: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:23265: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:23211: \$? = $ac_status" >&5
+  echo "$as_me:23268: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:23214: \"$ac_try\"") >&5
+  { (eval echo "$as_me:23271: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:23217: \$? = $ac_status" >&5
+  echo "$as_me:23274: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_termio_and_curses=yes
 else
@@ -23227,7 +23284,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext
     rm -f lynx_cfg.h
 
 fi
-echo "$as_me:23230: result: $cf_cv_termio_and_curses" >&5
+echo "$as_me:23287: result: $cf_cv_termio_and_curses" >&5
 echo "${ECHO_T}$cf_cv_termio_and_curses" >&6
 
 test $cf_cv_termio_and_curses = yes && cat >>confdefs.h <<\EOF
@@ -23242,23 +23299,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:23245: checking for $ac_header" >&5
+echo "$as_me:23302: 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 23251 "configure"
+#line 23308 "configure"
 #include "confdefs.h"
 #include <$ac_header>
 _ACEOF
-if { (eval echo "$as_me:23255: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:23312: \"$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:23261: \$? = $ac_status" >&5
+  echo "$as_me:23318: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -23277,7 +23334,7 @@ else
 fi
 rm -f conftest.err conftest.$ac_ext
 fi
-echo "$as_me:23280: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:23337: 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
@@ -23287,7 +23344,7 @@ EOF
 fi
 done
 
-echo "$as_me:23290: checking if curses supports alternate-character set" >&5
+echo "$as_me:23347: 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
@@ -23296,7 +23353,7 @@ else
 for mapname in acs_map _acs_map
 do
 	cat >conftest.$ac_ext <<_ACEOF
-#line 23299 "configure"
+#line 23356 "configure"
 #include "confdefs.h"
 
 #include <${cf_cv_ncurses_header-curses.h}>
@@ -23310,16 +23367,16 @@ chtype x = $mapname['l']; $mapname['m'] = 0
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:23313: \"$ac_link\"") >&5
+if { (eval echo "$as_me:23370: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:23316: \$? = $ac_status" >&5
+  echo "$as_me:23373: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:23319: \"$ac_try\"") >&5
+  { (eval echo "$as_me:23376: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:23322: \$? = $ac_status" >&5
+  echo "$as_me:23379: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_alt_char_set=$mapname
 	 break
@@ -23333,20 +23390,20 @@ done
 
 fi
 
-echo "$as_me:23336: result: $cf_cv_alt_char_set" >&5
+echo "$as_me:23393: 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:23342: checking if curses supports fancy attributes" >&5
+echo "$as_me:23399: 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 23349 "configure"
+#line 23406 "configure"
 #include "confdefs.h"
 
 #include <${cf_cv_ncurses_header-curses.h}>
@@ -23364,16 +23421,16 @@ attrset(A_UNDERLINE|A_BOLD|A_REVERSE);
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:23367: \"$ac_link\"") >&5
+if { (eval echo "$as_me:23424: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:23370: \$? = $ac_status" >&5
+  echo "$as_me:23427: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:23373: \"$ac_try\"") >&5
+  { (eval echo "$as_me:23430: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:23376: \$? = $ac_status" >&5
+  echo "$as_me:23433: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_fancy_curses=yes
 else
@@ -23385,13 +23442,13 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 
 fi
 
-echo "$as_me:23388: result: $cf_cv_fancy_curses" >&5
+echo "$as_me:23445: 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:23394: checking for function curses_version" >&5
+echo "$as_me:23451: 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
@@ -23401,7 +23458,7 @@ if test "$cross_compiling" = yes; then
   cf_cv_func_curses_version=unknown
 else
   cat >conftest.$ac_ext <<_ACEOF
-#line 23404 "configure"
+#line 23461 "configure"
 #include "confdefs.h"
 
 #include <${cf_cv_ncurses_header-curses.h}>
@@ -23414,15 +23471,15 @@ int main()
 
 _ACEOF
 rm -f conftest$ac_exeext
-if { (eval echo "$as_me:23417: \"$ac_link\"") >&5
+if { (eval echo "$as_me:23474: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:23420: \$? = $ac_status" >&5
+  echo "$as_me:23477: \$? = $ac_status" >&5
   (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
-  { (eval echo "$as_me:23422: \"$ac_try\"") >&5
+  { (eval echo "$as_me:23479: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:23425: \$? = $ac_status" >&5
+  echo "$as_me:23482: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_func_curses_version=yes
 
@@ -23437,21 +23494,21 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
 fi
 rm -f core
 fi
-echo "$as_me:23440: result: $cf_cv_func_curses_version" >&5
+echo "$as_me:23497: 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
 #define HAVE_CURSES_VERSION 1
 EOF
 
 if test "$cf_cv_ncurses_version" != no ; then
-echo "$as_me:23447: checking for obsolete/broken version of ncurses" >&5
+echo "$as_me:23504: 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 23454 "configure"
+#line 23511 "configure"
 #include "confdefs.h"
 
 #include <${cf_cv_ncurses_header-curses.h}>
@@ -23470,16 +23527,16 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:23473: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:23530: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:23476: \$? = $ac_status" >&5
+  echo "$as_me:23533: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:23479: \"$ac_try\"") >&5
+  { (eval echo "$as_me:23536: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:23482: \$? = $ac_status" >&5
+  echo "$as_me:23539: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_ncurses_broken=no
 else
@@ -23491,10 +23548,10 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 
 fi
 
-echo "$as_me:23494: result: $cf_cv_ncurses_broken" >&5
+echo "$as_me:23551: 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:23497: WARNING: hmm... you should get an up-to-date version of ncurses" >&5
+	{ echo "$as_me:23554: 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
 #define NCURSES_BROKEN 1
@@ -23503,14 +23560,14 @@ EOF
 fi
 fi
 
-echo "$as_me:23506: checking if curses supports color attributes" >&5
+echo "$as_me:23563: 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 23513 "configure"
+#line 23570 "configure"
 #include "confdefs.h"
 
 #include <${cf_cv_ncurses_header-curses.h}>
@@ -23530,16 +23587,16 @@ chtype x = COLOR_BLUE;
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:23533: \"$ac_link\"") >&5
+if { (eval echo "$as_me:23590: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:23536: \$? = $ac_status" >&5
+  echo "$as_me:23593: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:23539: \"$ac_try\"") >&5
+  { (eval echo "$as_me:23596: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:23542: \$? = $ac_status" >&5
+  echo "$as_me:23599: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_color_curses=yes
 else
@@ -23551,7 +23608,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 
 fi
 
-echo "$as_me:23554: result: $cf_cv_color_curses" >&5
+echo "$as_me:23611: result: $cf_cv_color_curses" >&5
 echo "${ECHO_T}$cf_cv_color_curses" >&6
 if test $cf_cv_color_curses = yes ; then
 	cat >>confdefs.h <<\EOF
@@ -23571,23 +23628,23 @@ unistd.h \
 
 do
 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:23574: checking for $ac_header" >&5
+echo "$as_me:23631: 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 23580 "configure"
+#line 23637 "configure"
 #include "confdefs.h"
 #include <$ac_header>
 _ACEOF
-if { (eval echo "$as_me:23584: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:23641: \"$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:23590: \$? = $ac_status" >&5
+  echo "$as_me:23647: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -23606,7 +23663,7 @@ else
 fi
 rm -f conftest.err conftest.$ac_ext
 fi
-echo "$as_me:23609: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:23666: 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
@@ -23621,23 +23678,23 @@ if test "$ISC" = yes ; then
 for ac_header in sys/termio.h
 do
 as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh`
-echo "$as_me:23624: checking for $ac_header" >&5
+echo "$as_me:23681: 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 23630 "configure"
+#line 23687 "configure"
 #include "confdefs.h"
 #include <$ac_header>
 _ACEOF
-if { (eval echo "$as_me:23634: \"$ac_cpp conftest.$ac_ext\"") >&5
+if { (eval echo "$as_me:23691: \"$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:23640: \$? = $ac_status" >&5
+  echo "$as_me:23697: \$? = $ac_status" >&5
   (exit $ac_status); } >/dev/null; then
   if test -s conftest.err; then
     ac_cpp_err=$ac_c_preproc_warn_flag
@@ -23656,7 +23713,7 @@ else
 fi
 rm -f conftest.err conftest.$ac_ext
 fi
-echo "$as_me:23659: result: `eval echo '${'$as_ac_Header'}'`" >&5
+echo "$as_me:23716: 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
@@ -23674,10 +23731,10 @@ if test "$ac_cv_header_termios_h" = yes ; then
 	*)	termios_bad=maybe ;;
 	esac
 	if test "$termios_bad" = maybe ; then
-	echo "$as_me:23677: checking whether termios.h needs _POSIX_SOURCE" >&5
+	echo "$as_me:23734: 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 23680 "configure"
+#line 23737 "configure"
 #include "confdefs.h"
 #include <termios.h>
 int
@@ -23689,16 +23746,16 @@ struct termios foo; int x = foo.c_iflag
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:23692: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:23749: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:23695: \$? = $ac_status" >&5
+  echo "$as_me:23752: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:23698: \"$ac_try\"") >&5
+  { (eval echo "$as_me:23755: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:23701: \$? = $ac_status" >&5
+  echo "$as_me:23758: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   termios_bad=no
 else
@@ -23706,7 +23763,7 @@ else
 cat conftest.$ac_ext >&5
 
 		cat >conftest.$ac_ext <<_ACEOF
-#line 23709 "configure"
+#line 23766 "configure"
 #include "confdefs.h"
 
 #define _POSIX_SOURCE
@@ -23720,16 +23777,16 @@ struct termios foo; int x = foo.c_iflag
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:23723: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:23780: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:23726: \$? = $ac_status" >&5
+  echo "$as_me:23783: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:23729: \"$ac_try\"") >&5
+  { (eval echo "$as_me:23786: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:23732: \$? = $ac_status" >&5
+  echo "$as_me:23789: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   termios_bad=unknown
 else
@@ -23744,12 +23801,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 
 fi
 rm -f conftest.$ac_objext conftest.$ac_ext
-	echo "$as_me:23747: result: $termios_bad" >&5
+	echo "$as_me:23804: result: $termios_bad" >&5
 echo "${ECHO_T}$termios_bad" >&6
 	fi
 fi
 
-echo "$as_me:23752: checking declaration of size-change" >&5
+echo "$as_me:23809: 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
@@ -23764,7 +23821,7 @@ do
     CPPFLAGS="$cf_save_CPPFLAGS"
     test -n "$cf_opts" && CPPFLAGS="$CPPFLAGS -D$cf_opts"
     cat >conftest.$ac_ext <<_ACEOF
-#line 23767 "configure"
+#line 23824 "configure"
 #include "confdefs.h"
 #include <sys/types.h>
 #ifdef HAVE_TERMIOS_H
@@ -23808,16 +23865,16 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:23811: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:23868: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:23814: \$? = $ac_status" >&5
+  echo "$as_me:23871: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:23817: \"$ac_try\"") >&5
+  { (eval echo "$as_me:23874: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:23820: \$? = $ac_status" >&5
+  echo "$as_me:23877: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_sizechange=yes
 else
@@ -23836,7 +23893,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 done
 
 fi
-echo "$as_me:23839: result: $cf_cv_sizechange" >&5
+echo "$as_me:23896: result: $cf_cv_sizechange" >&5
 echo "${ECHO_T}$cf_cv_sizechange" >&6
 if test "$cf_cv_sizechange" != no ; then
 	cat >>confdefs.h <<\EOF
@@ -23853,14 +23910,14 @@ EOF
 	esac
 fi
 
-echo "$as_me:23856: checking if ttytype is declared in curses library" >&5
+echo "$as_me:23913: 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 23863 "configure"
+#line 23920 "configure"
 #include "confdefs.h"
 #include <${cf_cv_ncurses_header-curses.h}>
 int
@@ -23872,16 +23929,16 @@ char *x = &ttytype[1]; *x = 1
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:23875: \"$ac_link\"") >&5
+if { (eval echo "$as_me:23932: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:23878: \$? = $ac_status" >&5
+  echo "$as_me:23935: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:23881: \"$ac_try\"") >&5
+  { (eval echo "$as_me:23938: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:23884: \$? = $ac_status" >&5
+  echo "$as_me:23941: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_have_ttytype=yes
 else
@@ -23893,20 +23950,20 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 
 fi
 
-echo "$as_me:23896: result: $cf_cv_have_ttytype" >&5
+echo "$as_me:23953: result: $cf_cv_have_ttytype" >&5
 echo "${ECHO_T}$cf_cv_have_ttytype" >&6
 test $cf_cv_have_ttytype = yes && cat >>confdefs.h <<\EOF
 #define HAVE_TTYTYPE 1
 EOF
 
-echo "$as_me:23902: checking if curses supports wide characters" >&5
+echo "$as_me:23959: 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 23909 "configure"
+#line 23966 "configure"
 #include "confdefs.h"
 
 #include <stdlib.h>
@@ -23925,16 +23982,16 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:23928: \"$ac_link\"") >&5
+if { (eval echo "$as_me:23985: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:23931: \$? = $ac_status" >&5
+  echo "$as_me:23988: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:23934: \"$ac_try\"") >&5
+  { (eval echo "$as_me:23991: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:23937: \$? = $ac_status" >&5
+  echo "$as_me:23994: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_widec_curses=yes
 else
@@ -23945,7 +24002,7 @@ fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 
 fi
-echo "$as_me:23948: result: $cf_cv_widec_curses" >&5
+echo "$as_me:24005: result: $cf_cv_widec_curses" >&5
 echo "${ECHO_T}$cf_cv_widec_curses" >&6
 
 if test "$cf_cv_widec_curses" = yes ; then
@@ -23954,14 +24011,14 @@ if test "$cf_cv_widec_curses" = yes ; then
 EOF
 
 	# This is needed on Tru64 5.0 to declare mbstate_t
-	echo "$as_me:23957: checking if we must include wchar.h to declare mbstate_t" >&5
+	echo "$as_me:24014: 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 23964 "configure"
+#line 24021 "configure"
 #include "confdefs.h"
 
 #include <stdlib.h>
@@ -23975,23 +24032,23 @@ mbstate_t state
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:23978: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:24035: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:23981: \$? = $ac_status" >&5
+  echo "$as_me:24038: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:23984: \"$ac_try\"") >&5
+  { (eval echo "$as_me:24041: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:23987: \$? = $ac_status" >&5
+  echo "$as_me:24044: \$? = $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 23994 "configure"
+#line 24051 "configure"
 #include "confdefs.h"
 
 #include <stdlib.h>
@@ -24006,16 +24063,16 @@ mbstate_t state
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:24009: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:24066: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:24012: \$? = $ac_status" >&5
+  echo "$as_me:24069: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:24015: \"$ac_try\"") >&5
+  { (eval echo "$as_me:24072: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:24018: \$? = $ac_status" >&5
+  echo "$as_me:24075: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_widec_mbstate=yes
 else
@@ -24027,7 +24084,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 fi
-echo "$as_me:24030: result: $cf_cv_widec_mbstate" >&5
+echo "$as_me:24087: result: $cf_cv_widec_mbstate" >&5
 echo "${ECHO_T}$cf_cv_widec_mbstate" >&6
 
 if test "$cf_cv_widec_mbstate" = yes ; then
@@ -24046,14 +24103,14 @@ fi
 
 fi
 
-echo "$as_me:24049: checking if we must define _XOPEN_SOURCE_EXTENDED" >&5
+echo "$as_me:24106: checking if we must define _XOPEN_SOURCE_EXTENDED" >&5
 echo $ECHO_N "checking if we must define _XOPEN_SOURCE_EXTENDED... $ECHO_C" >&6
 if test "${cf_cv_need_xopen_extension+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
 else
 
 cat >conftest.$ac_ext <<_ACEOF
-#line 24056 "configure"
+#line 24113 "configure"
 #include "confdefs.h"
 
 #include <stdlib.h>
@@ -24070,23 +24127,23 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:24073: \"$ac_link\"") >&5
+if { (eval echo "$as_me:24130: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:24076: \$? = $ac_status" >&5
+  echo "$as_me:24133: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:24079: \"$ac_try\"") >&5
+  { (eval echo "$as_me:24136: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:24082: \$? = $ac_status" >&5
+  echo "$as_me:24139: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_need_xopen_extension=no
 else
   echo "$as_me: failed program was:" >&5
 cat conftest.$ac_ext >&5
 cat >conftest.$ac_ext <<_ACEOF
-#line 24089 "configure"
+#line 24146 "configure"
 #include "confdefs.h"
 
 #define _XOPEN_SOURCE_EXTENDED
@@ -24104,16 +24161,16 @@ main ()
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:24107: \"$ac_link\"") >&5
+if { (eval echo "$as_me:24164: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:24110: \$? = $ac_status" >&5
+  echo "$as_me:24167: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:24113: \"$ac_try\"") >&5
+  { (eval echo "$as_me:24170: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:24116: \$? = $ac_status" >&5
+  echo "$as_me:24173: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_need_xopen_extension=yes
 else
@@ -24125,11 +24182,11 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
 rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
 fi
-echo "$as_me:24128: result: $cf_cv_need_xopen_extension" >&5
+echo "$as_me:24185: result: $cf_cv_need_xopen_extension" >&5
 echo "${ECHO_T}$cf_cv_need_xopen_extension" >&6
 test $cf_cv_need_xopen_extension = yes && CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE_EXTENDED"
 
-echo "$as_me:24132: checking for term.h" >&5
+echo "$as_me:24189: 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
@@ -24142,7 +24199,7 @@ for cf_header in \
 	term.h
 do
 	cat >conftest.$ac_ext <<_ACEOF
-#line 24145 "configure"
+#line 24202 "configure"
 #include "confdefs.h"
 
 #include <${cf_cv_ncurses_header-curses.h}>
@@ -24156,16 +24213,16 @@ WINDOW *x
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:24159: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:24216: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:24162: \$? = $ac_status" >&5
+  echo "$as_me:24219: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:24165: \"$ac_try\"") >&5
+  { (eval echo "$as_me:24222: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:24168: \$? = $ac_status" >&5
+  echo "$as_me:24225: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_cv_term_header=$cf_header
 	 break
@@ -24178,7 +24235,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext
 done
 
 fi
-echo "$as_me:24181: result: $cf_cv_term_header" >&5
+echo "$as_me:24238: result: $cf_cv_term_header" >&5
 echo "${ECHO_T}$cf_cv_term_header" >&6
 
 case $cf_cv_term_header in #(vi
@@ -24228,10 +24285,10 @@ do
 
 cf_tr_func=`echo "$cf_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%`
 
-	echo "$as_me:24231: checking for ${cf_func}" >&5
+	echo "$as_me:24288: checking for ${cf_func}" >&5
 echo $ECHO_N "checking for ${cf_func}... $ECHO_C" >&6
 
-echo "(line 24234) testing ${cf_func} ..." 1>&5
+echo "(line 24291) testing ${cf_func} ..." 1>&5
 
 	if eval "test \"\${cf_cv_func_$cf_func+set}\" = set"; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -24240,7 +24297,7 @@ else
 		eval cf_result='$ac_cv_func_'$cf_func
 		if test ".$cf_result" != ".no"; then
 			cat >conftest.$ac_ext <<_ACEOF
-#line 24243 "configure"
+#line 24300 "configure"
 #include "confdefs.h"
 
 #ifdef HAVE_XCURSES
@@ -24274,16 +24331,16 @@ exit(foo == 0);
 }
 _ACEOF
 rm -f conftest.$ac_objext conftest$ac_exeext
-if { (eval echo "$as_me:24277: \"$ac_link\"") >&5
+if { (eval echo "$as_me:24334: \"$ac_link\"") >&5
   (eval $ac_link) 2>&5
   ac_status=$?
-  echo "$as_me:24280: \$? = $ac_status" >&5
+  echo "$as_me:24337: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest$ac_exeext'
-  { (eval echo "$as_me:24283: \"$ac_try\"") >&5
+  { (eval echo "$as_me:24340: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:24286: \$? = $ac_status" >&5
+  echo "$as_me:24343: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   cf_result=yes
 else
@@ -24299,7 +24356,7 @@ fi
 
 	# use the computed/retrieved cache-value:
 	eval 'cf_result=$cf_cv_func_'$cf_func
-	echo "$as_me:24302: result: $cf_result" >&5
+	echo "$as_me:24359: result: $cf_result" >&5
 echo "${ECHO_T}$cf_result" >&6
 	if test $cf_result != no; then
 		cat >>confdefs.h <<EOF
@@ -24313,12 +24370,12 @@ fi
 
 if test $use_color_style != no ; then
 	if test .$cf_cv_color_curses != .yes ; then
-		{ { echo "$as_me:24316: error: Configuration does not support color-styles" >&5
+		{ { echo "$as_me:24373: 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:24321: error: Configuration does not support color-styles" >&5
+		{ { echo "$as_me:24378: error: Configuration does not support color-styles" >&5
 echo "$as_me: error: Configuration does not support color-styles" >&2;}
    { (exit 1); exit 1; }; }
 	fi
@@ -24326,7 +24383,7 @@ fi
 
 if test $use_scrollbar != no ; then
 	if test .$cf_cv_fancy_curses != .yes ; then
-		{ echo "$as_me:24329: WARNING: Configuration does not support ACS_xxx definitions" >&5
+		{ echo "$as_me:24386: WARNING: Configuration does not support ACS_xxx definitions" >&5
 echo "$as_me: WARNING: Configuration does not support ACS_xxx definitions" >&2;}
 	else
 		cat >>confdefs.h <<\EOF
@@ -24431,7 +24488,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:24434: creating $CONFIG_STATUS" >&5
+{ echo "$as_me:24491: creating $CONFIG_STATUS" >&5
 echo "$as_me: creating $CONFIG_STATUS" >&6;}
 cat >$CONFIG_STATUS <<_ACEOF
 #! $SHELL
@@ -24607,7 +24664,7 @@ cat >>$CONFIG_STATUS <<\EOF
     echo "$ac_cs_version"; exit 0 ;;
   --he | --h)
     # Conflict between --help and --header
-    { { echo "$as_me:24610: error: ambiguous option: $1
+    { { echo "$as_me:24667: 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;}
@@ -24626,7 +24683,7 @@ Try \`$0 --help' for more information." >&2;}
     ac_need_defaults=false;;
 
   # This is an error.
-  -*) { { echo "$as_me:24629: error: unrecognized option: $1
+  -*) { { echo "$as_me:24686: 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;}
@@ -24679,7 +24736,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:24682: error: invalid argument: $ac_config_target" >&5
+  *) { { echo "$as_me:24739: error: invalid argument: $ac_config_target" >&5
 echo "$as_me: error: invalid argument: $ac_config_target" >&2;}
    { (exit 1); exit 1; }; };;
   esac
@@ -24769,6 +24826,10 @@ s,@host@,$host,;t t
 s,@host_cpu@,$host_cpu,;t t
 s,@host_vendor@,$host_vendor,;t t
 s,@host_os@,$host_os,;t t
+s,@target@,$target,;t t
+s,@target_cpu@,$target_cpu,;t t
+s,@target_vendor@,$target_vendor,;t t
+s,@target_os@,$target_os,;t t
 s,@PACKAGE@,$PACKAGE,;t t
 s,@VERSION@,$VERSION,;t t
 s,@DESTDIR@,$DESTDIR,;t t
@@ -24852,16 +24913,16 @@ s,@GZIP@,$GZIP,;t t
 s,@UNCOMPRESS@,$UNCOMPRESS,;t t
 s,@UNZIP@,$UNZIP,;t t
 s,@BZIP2@,$BZIP2,;t t
-s,@COMPRESS@,$COMPRESS,;t t
-s,@RM@,$RM,;t t
 s,@TAR@,$TAR,;t t
-s,@UUDECODE@,$UUDECODE,;t t
-s,@ZCAT@,$ZCAT,;t t
-s,@ZIP@,$ZIP,;t t
 s,@TAR_UP_OPTIONS@,$TAR_UP_OPTIONS,;t t
 s,@TAR_DOWN_OPTIONS@,$TAR_DOWN_OPTIONS,;t t
 s,@TAR_FILE_OPTIONS@,$TAR_FILE_OPTIONS,;t t
 s,@TAR_PIPE_OPTIONS@,$TAR_PIPE_OPTIONS,;t t
+s,@COMPRESS@,$COMPRESS,;t t
+s,@RM@,$RM,;t t
+s,@UUDECODE@,$UUDECODE,;t t
+s,@ZCAT@,$ZCAT,;t t
+s,@ZIP@,$ZIP,;t t
 s,@INSTALL@,$INSTALL,;t t
 s,@COMPRESS_PROG@,$COMPRESS_PROG,;t t
 s,@COMPRESS_EXT@,$COMPRESS_EXT,;t t
@@ -24985,7 +25046,7 @@ done; }
   esac
 
   if test x"$ac_file" != x-; then
-    { echo "$as_me:24988: creating $ac_file" >&5
+    { echo "$as_me:25049: creating $ac_file" >&5
 echo "$as_me: creating $ac_file" >&6;}
     rm -f "$ac_file"
   fi
@@ -25003,7 +25064,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:25006: error: cannot find input file: $f" >&5
+         test -f "$f" || { { echo "$as_me:25067: error: cannot find input file: $f" >&5
 echo "$as_me: error: cannot find input file: $f" >&2;}
    { (exit 1); exit 1; }; }
          echo $f;;
@@ -25016,7 +25077,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;}
            echo $srcdir/$f
          else
            # /dev/null tree
-           { { echo "$as_me:25019: error: cannot find input file: $f" >&5
+           { { echo "$as_me:25080: error: cannot find input file: $f" >&5
 echo "$as_me: error: cannot find input file: $f" >&2;}
    { (exit 1); exit 1; }; }
          fi;;
@@ -25082,7 +25143,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:25085: creating $ac_file" >&5
+  test x"$ac_file" != x- && { echo "$as_me:25146: creating $ac_file" >&5
 echo "$as_me: creating $ac_file" >&6;}
 
   # First look for the input files in the build tree, otherwise in the
@@ -25093,7 +25154,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:25096: error: cannot find input file: $f" >&5
+         test -f "$f" || { { echo "$as_me:25157: error: cannot find input file: $f" >&5
 echo "$as_me: error: cannot find input file: $f" >&2;}
    { (exit 1); exit 1; }; }
          echo $f;;
@@ -25106,7 +25167,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;}
            echo $srcdir/$f
          else
            # /dev/null tree
-           { { echo "$as_me:25109: error: cannot find input file: $f" >&5
+           { { echo "$as_me:25170: error: cannot find input file: $f" >&5
 echo "$as_me: error: cannot find input file: $f" >&2;}
    { (exit 1); exit 1; }; }
          fi;;
@@ -25224,7 +25285,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:25227: $ac_file is unchanged" >&5
+      { echo "$as_me:25288: $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/configure.in b/configure.in
index f33f171c..b02db436 100644
--- a/configure.in
+++ b/configure.in
@@ -5,7 +5,7 @@ dnl and Jim Spath <jspath@mail.bcpl.lib.md.us>
 dnl
 dnl ask PRCS to plug-in the project-version for the configure-script.
 dnl $Format: "AC_REVISION($ProjectVersion$)"$
-AC_REVISION(2.8.6dev.6)
+AC_REVISION(2.8.6dev.7)
 
 # Save the original $CFLAGS so we can distinguish whether the user set those
 # in the environment, or whether autoconf added -O and -g options:
@@ -28,12 +28,16 @@ rm -f config.cache; touch config.cache
 CONFIG_H=lynx_cfg.h
 AC_CONFIG_HEADER($CONFIG_H:config.hin)
 
-CF_CHECK_CACHE
+CF_CHECK_CACHE([AC_CANONICAL_SYSTEM])
+AC_ARG_WITH(system-type,
+[  --with-system-type=XXX  test: override derived host system-type],
+[AC_MSG_WARN(overriding system type $host_os to $withval)
+ host_os=$withval])
 
 PACKAGE=lynx
 dnl ask PRCS to plug-in the project-version for the packages.
 # $Format: "VERSION=$ProjectVersion$"$
-VERSION=2.8.6dev.6
+VERSION=2.8.6dev.7
 AC_SUBST(PACKAGE)
 AC_SUBST(VERSION)
 AC_SUBST(DESTDIR)
@@ -347,7 +351,7 @@ if test $with_full_paths = no ; then
 fi
 fi
 
-CF_XOPEN_SOURCE
+CF_XOPEN_SOURCE(600,199506L)
 
 dnl Collect tests for compiler options into one place
 if test -n "$TRY_CFLAGS" ; then
@@ -1101,6 +1105,13 @@ CF_PATH_PROG(UNCOMPRESS,gunzip)
 CF_PATH_PROG(UNZIP,	unzip)
 CF_PATH_PROG(BZIP2,	bzip2)
 
+CF_PATH_PROG(TAR,	tar, pax gtar gnutar bsdtar star)
+CF_TAR_OPTIONS($TAR)
+AC_DEFINE_UNQUOTED(TAR_UP_OPTIONS,   "$TAR_UP_OPTIONS")
+AC_DEFINE_UNQUOTED(TAR_DOWN_OPTIONS, "$TAR_DOWN_OPTIONS")
+AC_DEFINE_UNQUOTED(TAR_FILE_OPTIONS, "$TAR_FILE_OPTIONS")
+AC_DEFINE_UNQUOTED(TAR_PIPE_OPTIONS, "$TAR_PIPE_OPTIONS")
+
 dnl --------------------------------------------------------------------------
 dnl Test features that rely on configure-definitions
 dnl --------------------------------------------------------------------------
@@ -1108,17 +1119,10 @@ if test ".$use_dired" != ".no" ; then
 
 CF_PATH_PROG(COMPRESS,	compress)
 CF_PATH_PROG(RM,	rm)
-CF_PATH_PROG(TAR,	tar, pax gtar gnutar bsdtar star)
 CF_PATH_PROG(UUDECODE,	uudecode)
 CF_PATH_PROG(ZCAT,	zcat)
 CF_PATH_PROG(ZIP,	zip)
 
-CF_TAR_OPTIONS($TAR)
-AC_DEFINE_UNQUOTED(TAR_UP_OPTIONS,   "$TAR_UP_OPTIONS")
-AC_DEFINE_UNQUOTED(TAR_DOWN_OPTIONS, "$TAR_DOWN_OPTIONS")
-AC_DEFINE_UNQUOTED(TAR_FILE_OPTIONS, "$TAR_FILE_OPTIONS")
-AC_DEFINE_UNQUOTED(TAR_PIPE_OPTIONS, "$TAR_PIPE_OPTIONS")
-
 dnl 'INSTALL' is a special case, since the configure script has to find a
 dnl BSD-compatible one so the build/install works properly.
 case "$INSTALL" in
diff --git a/lynx.cfg b/lynx.cfg
index 2e292bde..9392ad4b 100644
--- a/lynx.cfg
+++ b/lynx.cfg
@@ -3,10 +3,10 @@
 #                                     or Lynx_Dir:lynx.cfg (VMS)
 #
 # $Format: "#PRCS LYNX_VERSION \"$ProjectVersion$\""$
-#PRCS LYNX_VERSION "2.8.6dev.6"
+#PRCS LYNX_VERSION "2.8.6dev.7"
 #
 # $Format: "#PRCS LYNX_DATE \"$ProjectDate$\""$
-#PRCS LYNX_DATE "Sun, 10 Oct 2004 17:29:46 -0700"
+#PRCS LYNX_DATE "Sun, 17 Oct 2004 14:54:30 -0700"
 #
 # Definition pairs are of the form  VARIABLE:DEFINITION
 # NO spaces are allowed between the pair items.
@@ -3325,6 +3325,7 @@ COLOR:6:brightred:black
 #COMPRESS_PATH:
 #COPY_PATH:
 #GZIP_PATH:
+#INFLATE_PATH:
 #INSTALL_PATH:
 #MKDIR_PATH:
 #MV_PATH:
diff --git a/lynx.man b/lynx.man
index 084a5f77..251a16a2 100644
--- a/lynx.man
+++ b/lynx.man
@@ -83,7 +83,8 @@ apply restrictions for anonymous account, see also \fB\-restrictions\fR.
 charset for documents that don't specify it.
 .TP
 .B \-assume_local_charset\fR=\fIMIMEname
-charset assumed for local files.
+charset assumed for local files,
+i.e., files which lynx creates such as internal pages for the options menu.
 .TP
 .B \-assume_unrec_charset\fR=\fIMIMEname
 use this instead of unrecognized charsets.
@@ -451,7 +452,7 @@ show HTML source view with lexical elements and tags in color.
 enable print functions. (default)
 .TP
 .B \-pseudo_inlines
-toggles pseudo-ALTs for inlines with no ALT string.
+toggles pseudo-ALTs for inline images with no ALT string.
 .TP
 .B \-raw
 toggles default setting of 8-bit character translations
diff --git a/lynx_help/Lynx_users_guide.html b/lynx_help/Lynx_users_guide.html
index 65db8535..a2d01ca5 100644
--- a/lynx_help/Lynx_users_guide.html
+++ b/lynx_help/Lynx_users_guide.html
@@ -1362,7 +1362,7 @@ commands.
             probably disabled in anonymous or validation accounts.
    <dt><A NAME="*-key"><em>*</em></A>
         <dd>The '<em>*</em>' command toggles image_links mode on and off.
-            When on, links will be created for all images, including inlines.
+            When on, links will be created for all images, including inline images.
             If you have an image viewer mapped to the image's MIME type, you
             can activate such links to view an inline image.  You should
             normally have this mode toggled off.
@@ -2356,7 +2356,9 @@ where
              <dt><code>-assume_charset=MIMENAME</code>
                 <dd>charset for documents that don't specify it.
              <dt><code>-assume_local_charset=MIMENAME</code>
-                <dd>charset assumed for local files.
+                <dd>charset assumed for local files,
+                    i.e., files which lynx creates such as internal pages for
+                    the options menu.
              <dt><code>-assume_unrec_charset=MIMENAME</code>
                 <dd>use this instead of unrecognized charsets.
              <dt><code>-auth=ID:PW</code>
@@ -2652,7 +2654,7 @@ where
              <dt><code>-print</code>
                 <dd>enable print functions. (default)
              <dt><code>-pseudo_inlines</code>
-                <dd>toggles pseudo-ALTs for inlines with no ALT string.
+                <dd>toggles pseudo-ALTs for inline images with no ALT string.
              <dt><code>-raw</code>
                 <dd>toggles default setting of 8-bit character translations
                     or CJK mode for the startup character set.
diff --git a/po/ca.po b/po/ca.po
index 68a56069..0a781d83 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -11,7 +11,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lynx 2.8.5pre15\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-10-10 18:51-0400\n"
+"POT-Creation-Date: 2004-10-17 16:29-0400\n"
 "PO-Revision-Date: 2003-07-06 18:12+0200\n"
 "Last-Translator: Carles Sadurní Anguita <isard@ctv.es>\n"
 "Language-Team: Catalan <ca@dodds.net>\n"
@@ -2791,7 +2791,7 @@ msgstr "El document amb contingut POST no s'ha trobat en la memòria cau. Reenvia
 msgid "Loading failed, use a previous copy."
 msgstr ""
 
-#: WWW/Library/Implementation/HTAccess.c:1045 src/GridText.c:8301
+#: WWW/Library/Implementation/HTAccess.c:1045 src/GridText.c:8296
 msgid "Loading incomplete."
 msgstr "Càrrega incompleta."
 
@@ -2860,7 +2860,7 @@ msgstr "%d (%5d) bytes transferits"
 msgid "connect for data"
 msgstr ""
 
-#: WWW/Library/Implementation/HTFTP.c:3738
+#: WWW/Library/Implementation/HTFTP.c:3741
 msgid "Receiving FTP file."
 msgstr "Rebent arxiu d'FTP"
 
@@ -3018,7 +3018,7 @@ msgstr "L'adreça conté un port que no és vàlid"
 msgid "Address length looks invalid"
 msgstr "La longitud de l'adreça sembla invàlida"
 
-#: WWW/Library/Implementation/HTTCP.c:1551 WWW/Library/Implementation/HTTCP.c:1569
+#: WWW/Library/Implementation/HTTCP.c:1552 WWW/Library/Implementation/HTTCP.c:1570
 #, c-format
 msgid "Unable to locate remote host %s."
 msgstr "Ha estat impossible trobar el servidor %s."
@@ -3027,38 +3027,38 @@ msgstr "Ha estat impossible trobar el servidor %s."
 #. * but not HTAlert, because typically there will be other
 #. * alerts from the callers.  - kw
 #.
-#: WWW/Library/Implementation/HTTCP.c:1566 WWW/Library/Implementation/HTTelnet.c:108
+#: WWW/Library/Implementation/HTTCP.c:1567 WWW/Library/Implementation/HTTelnet.c:108
 #, c-format
 msgid "Invalid hostname %s"
 msgstr "Servidor %s no vàlid"
 
-#: WWW/Library/Implementation/HTTCP.c:1580
+#: WWW/Library/Implementation/HTTCP.c:1581
 #, c-format
 msgid "Making %s connection to %s"
 msgstr "Establint una connexió %s amb %s"
 
-#: WWW/Library/Implementation/HTTCP.c:1591
+#: WWW/Library/Implementation/HTTCP.c:1592
 msgid "socket failed."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1604
+#: WWW/Library/Implementation/HTTCP.c:1605
 #, c-format
 msgid "socket failed: family %d addr %s port %s."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1628
+#: WWW/Library/Implementation/HTTCP.c:1629
 msgid "Could not make connection non-blocking."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1697
+#: WWW/Library/Implementation/HTTCP.c:1698
 msgid "Connection failed (too many retries)."
 msgstr "La connexió ha fallat (massa reintents)."
 
-#: WWW/Library/Implementation/HTTCP.c:1896
+#: WWW/Library/Implementation/HTTCP.c:1897
 msgid "Could not restore socket to blocking."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1962
+#: WWW/Library/Implementation/HTTCP.c:1963
 msgid "Socket read failed for 180,000 tries."
 msgstr ""
 
@@ -3067,45 +3067,45 @@ msgstr ""
 msgid "Address contains a username: %s"
 msgstr "L'adreça conté un nom d'usuari: %s"
 
-#: WWW/Library/Implementation/HTTP.c:497
+#: WWW/Library/Implementation/HTTP.c:531
 msgid "This client does not contain support for HTTPS URLs."
 msgstr "Aquest client no admet adreces HTTPS."
 
-#: WWW/Library/Implementation/HTTP.c:522
+#: WWW/Library/Implementation/HTTP.c:556
 msgid "Unable to connect to remote host."
 msgstr "No ha estat possible connectar amb el servidor."
 
-#: WWW/Library/Implementation/HTTP.c:544
+#: WWW/Library/Implementation/HTTP.c:578
 msgid "Retrying connection without TLS."
 msgstr "S'està reintentant la connexió sense TLS."
 
-#: WWW/Library/Implementation/HTTP.c:587
+#: WWW/Library/Implementation/HTTP.c:621
 msgid "SSL error:Can't find common name in certificate-Continue?"
 msgstr "Error SSL: no s'ha pogut trobar el nom comú en el certificat. Continuem?"
 
-#: WWW/Library/Implementation/HTTP.c:604
+#: WWW/Library/Implementation/HTTP.c:638
 #, c-format
 msgid "SSL error:host(%s)!=cert(%s)-Continue?"
 msgstr "Error SSL: servidor(%s)!=cert(%s). Voleu continuar?"
 
-#: WWW/Library/Implementation/HTTP.c:616
+#: WWW/Library/Implementation/HTTP.c:650
 #, c-format
 msgid "Secure %d-bit %s (%s) HTTP connection"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1086
+#: WWW/Library/Implementation/HTTP.c:1120
 msgid "Sending HTTP request."
 msgstr "Enviant sol·licitud HTTP."
 
-#: WWW/Library/Implementation/HTTP.c:1125
+#: WWW/Library/Implementation/HTTP.c:1159
 msgid "Unexpected network write error; connection aborted."
 msgstr "Error inesperat d'escriptura "
 
-#: WWW/Library/Implementation/HTTP.c:1131
+#: WWW/Library/Implementation/HTTP.c:1165
 msgid "HTTP request sent; waiting for response."
 msgstr "Sol·licitud HTTP enviada; esperant resposta."
 
-#: WWW/Library/Implementation/HTTP.c:1199
+#: WWW/Library/Implementation/HTTP.c:1233
 msgid "Unexpected network read error; connection aborted."
 msgstr "Error inesperat de lectura en la xarxa; s'ha avortat la connexió."
 
@@ -3118,7 +3118,7 @@ msgstr "Error inesperat de lectura en la xarxa; s'ha avortat la connexió."
 #. * 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:1393
+#: WWW/Library/Implementation/HTTP.c:1427
 msgid "Got unexpected Informational Status."
 msgstr ""
 
@@ -3128,7 +3128,7 @@ msgstr ""
 #. * content.  We'll instruct the user to do that, and
 #. * restore the current document.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1427
+#: WWW/Library/Implementation/HTTP.c:1461
 msgid "Request fulfilled.  Reset Content."
 msgstr ""
 
@@ -3138,27 +3138,27 @@ 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:1544
+#: WWW/Library/Implementation/HTTP.c:1578
 msgid "Got unexpected 304 Not Modified status."
 msgstr "S'ha obtingut un codi 304 Not Modified inesperat (el document no ha estat modificat)."
 
-#: WWW/Library/Implementation/HTTP.c:1607
+#: WWW/Library/Implementation/HTTP.c:1641
 msgid "Redirection of POST content requires user approval."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1622
+#: WWW/Library/Implementation/HTTP.c:1656
 msgid "Have POST content.  Treating Permanent Redirection as Temporary.\n"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1664
+#: WWW/Library/Implementation/HTTP.c:1698
 msgid "Retrying with access authorization information."
 msgstr "Estic reintentant amb la informació d'accés."
 
-#: WWW/Library/Implementation/HTTP.c:1676
+#: WWW/Library/Implementation/HTTP.c:1710
 msgid "Show the 401 message body?"
 msgstr "Mostrar el cos del missatge d'error 401?"
 
-#: WWW/Library/Implementation/HTTP.c:1719
+#: WWW/Library/Implementation/HTTP.c:1753
 msgid "Show the 407 message body?"
 msgstr "Mostrar el cos del missatge d'error 407?"
 
@@ -3166,7 +3166,7 @@ msgstr "Mostrar el cos del missatge d'error 407?"
 #. * Bad or unknown server_status number.  Take a chance and hope
 #. * there is something to display.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1819
+#: WWW/Library/Implementation/HTTP.c:1853
 msgid "Unknown status reply from server!"
 msgstr "Resposta desconeguda del servidor!"
 
@@ -3422,30 +3422,30 @@ msgstr ""
 msgid "unknown form field"
 msgstr "camp de formulari desconegut"
 
-#: src/GridText.c:10020
+#: src/GridText.c:10015
 msgid "Can't open file for uploading"
 msgstr "No ha estat possible obrir el fitxer que voleu carregar."
 
-#: src/GridText.c:11170
+#: src/GridText.c:11165
 #, c-format
 msgid "Submitting %s"
 msgstr "Enviant %s"
 
 #. ugliness has happened; inform user and do the best we can
-#: src/GridText.c:12318
+#: src/GridText.c:12313
 msgid "Hang Detect: TextAnchor struct corrupted - suggest aborting!"
 msgstr ""
 
 #. don't show previous state
-#: src/GridText.c:12523
+#: src/GridText.c:12518
 msgid "Wrap lines to fit displayed area?"
 msgstr "Trencar les línies per a ajustar a l'espai disponible?"
 
-#: src/GridText.c:12575
+#: src/GridText.c:12570
 msgid "Very long lines have been wrapped!"
 msgstr "Les línies molt llargues han estat tallades!"
 
-#: src/GridText.c:13016
+#: src/GridText.c:13011
 msgid "Very long lines have been truncated!"
 msgstr "Les línies molt llargues han estat truncades!"
 
@@ -4675,117 +4675,121 @@ msgstr "Acceptar els canvis"
 msgid "gzip"
 msgstr ""
 
-#: src/LYOptions.c:2388
+#: src/LYOptions.c:2386
+msgid "deflate"
+msgstr ""
+
+#: src/LYOptions.c:2389
 msgid "compress"
 msgstr ""
 
-#: src/LYOptions.c:2391
+#: src/LYOptions.c:2392
 msgid "bzip2"
 msgstr ""
 
-#: src/LYOptions.c:2393
+#: src/LYOptions.c:2394
 msgid "All"
 msgstr ""
 
-#: src/LYOptions.c:2658 src/LYOptions.c:2682
+#: src/LYOptions.c:2659 src/LYOptions.c:2683
 #, c-format
 msgid "Use %s to invoke the Options menu!"
 msgstr "Useu %s per a invocar el menú d'opcions"
 
-#: src/LYOptions.c:3421
+#: src/LYOptions.c:3422
 msgid "(options marked with (!) will not be saved)"
 msgstr "(les opcions marcades amb (!) no es desen)"
 
-#: src/LYOptions.c:3429
+#: src/LYOptions.c:3430
 msgid "General Preferences"
 msgstr "Preferències generals"
 
 #. ***************************************************************
 #. User Mode: SELECT
-#: src/LYOptions.c:3433
+#: src/LYOptions.c:3434
 msgid "User mode"
 msgstr "Tipus d'usuari"
 
 #. Editor: INPUT
-#: src/LYOptions.c:3439
+#: src/LYOptions.c:3440
 msgid "Editor"
 msgstr "Editor"
 
 #. Search Type: SELECT
-#: src/LYOptions.c:3444
+#: src/LYOptions.c:3445
 msgid "Type of Search"
 msgstr "Tipus de recerca"
 
-#: src/LYOptions.c:3449
+#: src/LYOptions.c:3450
 msgid "Security and Privacy"
 msgstr ""
 
 #. ***************************************************************
 #. Cookies: SELECT
-#: src/LYOptions.c:3453
+#: src/LYOptions.c:3454
 msgid "Cookies"
 msgstr "Cookies"
 
 #. Cookie Prompting: SELECT
-#: src/LYOptions.c:3467
+#: src/LYOptions.c:3468
 msgid "Invalid-Cookie Prompting"
 msgstr ""
 
 #. SSL Prompting: SELECT
-#: src/LYOptions.c:3474
+#: src/LYOptions.c:3475
 msgid "SSL Prompting"
 msgstr ""
 
-#: src/LYOptions.c:3480
+#: src/LYOptions.c:3481
 msgid "Keyboard Input"
 msgstr "Teclat"
 
 #. ***************************************************************
 #. Keypad Mode: SELECT
-#: src/LYOptions.c:3484
+#: src/LYOptions.c:3485
 msgid "Keypad mode"
 msgstr "Mode del teclat"
 
 #. Emacs keys: ON/OFF
-#: src/LYOptions.c:3490
+#: src/LYOptions.c:3491
 msgid "Emacs keys"
 msgstr "Tecles d'emacs"
 
 #. VI Keys: ON/OFF
-#: src/LYOptions.c:3496
+#: src/LYOptions.c:3497
 msgid "VI keys"
 msgstr "Tecles de VI"
 
 #. Line edit style: SELECT
 #. well, at least 2 line edit styles available
-#: src/LYOptions.c:3503
+#: src/LYOptions.c:3504
 msgid "Line edit style"
 msgstr ""
 
 #. Keyboard layout: SELECT
-#: src/LYOptions.c:3515
+#: src/LYOptions.c:3516
 msgid "Keyboard layout"
 msgstr "Configuració del teclat"
 
 #.
 #. * Display and Character Set
 #.
-#: src/LYOptions.c:3529
+#: src/LYOptions.c:3530
 msgid "Display and Character Set"
 msgstr "Pantalla i joc de caràcters"
 
 #. Use locale-based character set: ON/OFF
-#: src/LYOptions.c:3534
+#: src/LYOptions.c:3535
 #, fuzzy
 msgid "Use locale-based character set"
 msgstr "Joc de caràcters predeterminat"
 
 #. Display Character Set: SELECT
-#: src/LYOptions.c:3543
+#: src/LYOptions.c:3544
 msgid "Display character set"
 msgstr "Joc de caràcters"
 
-#: src/LYOptions.c:3574
+#: src/LYOptions.c:3575
 msgid "Assumed document character set"
 msgstr "Joc de caràcters predeterminat"
 
@@ -4794,168 +4798,168 @@ msgstr "Joc de caràcters predeterminat"
 #. * we split the header to make it more readable:
 #. * "CJK mode" for CJK display charsets, and "Raw 8-bit" for others.
 #.
-#: src/LYOptions.c:3594
+#: src/LYOptions.c:3595
 msgid "CJK mode"
 msgstr "mode CJK"
 
-#: src/LYOptions.c:3596
+#: src/LYOptions.c:3597
 msgid "Raw 8-bit"
 msgstr "8-bits cru"
 
 #. X Display: INPUT
-#: src/LYOptions.c:3604
+#: src/LYOptions.c:3605
 msgid "X Display"
 msgstr ""
 
 #.
 #. * Document Appearance
 #.
-#: src/LYOptions.c:3610
+#: src/LYOptions.c:3611
 msgid "Document Appearance"
 msgstr "Apariència dels documents"
 
-#: src/LYOptions.c:3616
+#: src/LYOptions.c:3617
 msgid "Show color"
 msgstr "En color"
 
 #. Show cursor: ON/OFF
-#: src/LYOptions.c:3640
+#: src/LYOptions.c:3641
 msgid "Show cursor"
 msgstr "Mostrar cursor"
 
 #. Underline links: ON/OFF
-#: src/LYOptions.c:3646
+#: src/LYOptions.c:3647
 #, fuzzy
 msgid "Underline links"
 msgstr "Enllaços ocults:"
 
 #. Show scrollbar: ON/OFF
-#: src/LYOptions.c:3653
+#: src/LYOptions.c:3654
 msgid "Show scrollbar"
 msgstr "Mostrar la barra de desplaçament"
 
 #. Select Popups: ON/OFF
-#: src/LYOptions.c:3660
+#: src/LYOptions.c:3661
 msgid "Popups for select fields"
 msgstr ""
 
 #. HTML error recovery: SELECT
-#: src/LYOptions.c:3666
+#: src/LYOptions.c:3667
 msgid "HTML error recovery"
 msgstr "Recuperació d'errors de HTML"
 
 #. Show Images: SELECT
-#: src/LYOptions.c:3672
+#: src/LYOptions.c:3673
 msgid "Show images"
 msgstr "Mostrar imatges"
 
 #. Verbose Images: ON/OFF
-#: src/LYOptions.c:3686
+#: src/LYOptions.c:3687
 msgid "Verbose images"
 msgstr "Detalls sobre imatges"
 
-#: src/LYOptions.c:3695
+#: src/LYOptions.c:3696
 msgid "Headers Transferred to Remote Servers"
 msgstr "Capçaleres que es transmeten als servidors remots"
 
 #. ***************************************************************
 #. Mail Address: INPUT
-#: src/LYOptions.c:3699
+#: src/LYOptions.c:3700
 msgid "Personal mail address"
 msgstr "Adreça electrònica personal"
 
 #. Preferred media type: SELECT
-#: src/LYOptions.c:3704
+#: src/LYOptions.c:3705
 #, fuzzy
 msgid "Preferred media type"
 msgstr "%d bytes transferits"
 
 #. Preferred encoding: SELECT
-#: src/LYOptions.c:3710
+#: src/LYOptions.c:3711
 #, fuzzy
 msgid "Preferred encoding"
 msgstr "Idioma preferit"
 
 #. Preferred Document Character Set: INPUT
-#: src/LYOptions.c:3716
+#: src/LYOptions.c:3717
 msgid "Preferred document character set"
 msgstr "Joc de caràcters preferit"
 
 #. Preferred Document Language: INPUT
-#: src/LYOptions.c:3721
+#: src/LYOptions.c:3722
 msgid "Preferred document language"
 msgstr "Idioma preferit"
 
-#: src/LYOptions.c:3727
+#: src/LYOptions.c:3728
 msgid "User-Agent header"
 msgstr "Identificació del navegador"
 
 #.
 #. * Listing and Accessing Files
 #.
-#: src/LYOptions.c:3735
+#: src/LYOptions.c:3736
 msgid "Listing and Accessing Files"
 msgstr "Fitxers: llistat i accés"
 
 #. ***************************************************************
 #. FTP sort: SELECT
-#: src/LYOptions.c:3739
+#: src/LYOptions.c:3740
 msgid "FTP sort criteria"
 msgstr "Criteri d'ordenació per a FTP"
 
 #. Local Directory Sort: SELECT
-#: src/LYOptions.c:3746
+#: src/LYOptions.c:3747
 msgid "Local directory sort criteria"
 msgstr "Criteri d'ordenació local"
 
 #. Local Directory Order: SELECT
-#: src/LYOptions.c:3752
+#: src/LYOptions.c:3753
 #, fuzzy
 msgid "Local directory sort order"
 msgstr "Criteri d'ordenació local"
 
-#: src/LYOptions.c:3761
+#: src/LYOptions.c:3762
 msgid "Show dot files"
 msgstr "Mostrar fitxers .*"
 
-#: src/LYOptions.c:3769
+#: src/LYOptions.c:3770
 msgid "Execution links"
 msgstr "Enllaços d'execució"
 
 #. Show transfer rate: SELECT
-#: src/LYOptions.c:3789
+#: src/LYOptions.c:3790
 msgid "Show transfer rate"
 msgstr "Mostrar taxa de transferència"
 
 #.
 #. * Special Files and Screens
 #.
-#: src/LYOptions.c:3809
+#: src/LYOptions.c:3810
 msgid "Special Files and Screens"
 msgstr "Fitxers i pantalles especials"
 
-#: src/LYOptions.c:3814
+#: src/LYOptions.c:3815
 msgid "Multi-bookmarks"
 msgstr ""
 
-#: src/LYOptions.c:3822
+#: src/LYOptions.c:3823
 msgid "Review/edit Bookmarks files"
 msgstr "Editar fitxers de favorits"
 
-#: src/LYOptions.c:3824
+#: src/LYOptions.c:3825
 msgid "Goto multi-bookmark menu"
 msgstr "Veure el menú de múltiples fitxers d'adreces"
 
-#: src/LYOptions.c:3826
+#: src/LYOptions.c:3827
 msgid "Bookmarks file"
 msgstr "Fitxer de favorits"
 
 #. Visited Pages: SELECT
-#: src/LYOptions.c:3832
+#: src/LYOptions.c:3833
 msgid "Visited Pages"
 msgstr "Pàgines visitades"
 
-#: src/LYOptions.c:3837
+#: src/LYOptions.c:3838
 msgid "View the file "
 msgstr "Veure el fitxer"
 
@@ -5076,38 +5080,38 @@ msgstr "Lynx: impossible iniciar, el fitxer de regles del CERN %s no estàdisponi
 msgid "(no name)"
 msgstr "(sense nom)"
 
-#: src/LYReadCFG.c:1772
+#: src/LYReadCFG.c:1773
 #, c-format
 msgid "More than %d nested lynx.cfg includes -- perhaps there is a loop?!?\n"
 msgstr "Més de %d includes imbricats en lynx.cfg: potser hi ha un bucle?\n"
 
-#: src/LYReadCFG.c:1774
+#: src/LYReadCFG.c:1775
 #, c-format
 msgid "Last attempted include was '%s',\n"
 msgstr "L'últim include ha estat \"%s\", \n"
 
-#: src/LYReadCFG.c:1775
+#: src/LYReadCFG.c:1776
 #, c-format
 msgid "included from '%s'.\n"
 msgstr "inclós des de \"%s\".\n"
 
-#: src/LYReadCFG.c:2181 src/LYReadCFG.c:2194 src/LYReadCFG.c:2252
+#: src/LYReadCFG.c:2183 src/LYReadCFG.c:2196 src/LYReadCFG.c:2254
 msgid "The following is read from your lynx.cfg file."
 msgstr "Les dades següents s'han llegit del vostre fitxer lynx.cfg."
 
-#: src/LYReadCFG.c:2182 src/LYReadCFG.c:2195
+#: src/LYReadCFG.c:2184 src/LYReadCFG.c:2197
 msgid "Please read the distribution"
 msgstr "Per favor, llegiu "
 
-#: src/LYReadCFG.c:2188 src/LYReadCFG.c:2198
+#: src/LYReadCFG.c:2190 src/LYReadCFG.c:2200
 msgid "for more comments."
 msgstr "si necessiteu més informació."
 
-#: src/LYReadCFG.c:2234
+#: src/LYReadCFG.c:2236
 msgid "RELOAD THE CHANGES"
 msgstr "RECARREGAR ELS CANVIS"
 
-#: src/LYReadCFG.c:2242
+#: src/LYReadCFG.c:2244
 msgid "Your primary configuration"
 msgstr "Configuració primària"
 
@@ -5404,7 +5408,7 @@ msgstr "No s'ha trobat el directori d'inici (HOME)"
 msgid "Normally disabled.  See ENABLE_LYNXRC in lynx.cfg\n"
 msgstr "Normalment desactivat. Veieu ENABLE_LYNXRC en lynx.cfg\n"
 
-#: src/LYrcFile.c:317
+#: src/LYrcFile.c:318
 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"
@@ -5416,7 +5420,7 @@ msgstr ""
 "que el programa preguntarà abans d'acceptar cap cookie. Doneu a \n"
 "accept_all_cookies el valor \"TRUE\" per acceptar qualsevol cookie.\n"
 
-#: src/LYrcFile.c:324
+#: src/LYrcFile.c:325
 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"
@@ -5426,7 +5430,7 @@ msgstr ""
 "d'interés predeterminat, en el qual l'usuari pot enganxar enllaços\n"
 "per accedir-hi posteriorment amb facilitat.\n"
 
-#: src/LYrcFile.c:329
+#: src/LYrcFile.c:330
 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"
@@ -5437,7 +5441,7 @@ msgstr ""
 "minúscules seran considerades lletres diferents. El valor predeterminat\n"
 "és \"off\".\n"
 
-#: src/LYrcFile.c:334
+#: src/LYrcFile.c:335
 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"
@@ -5449,7 +5453,7 @@ msgstr ""
 "representació de caràcters de 8 bits en el vostre terminal. Si no hi\n"
 "apareixen correctament proveu de canviar-ne a un altre\n"
 
-#: src/LYrcFile.c:341
+#: src/LYrcFile.c:342
 msgid ""
 "cookie_accept_domains and cookie_reject_domains are comma-delimited\n"
 "lists of domains from which Lynx should automatically accept or reject\n"
@@ -5461,7 +5465,7 @@ msgstr ""
 "delimitats per comues dels quals Lynx acceptarà o rebutjarà (respectivament)\n"
 "totes les cookies. Si s'especifica un domini en totes dues llistes\n"
 
-#: src/LYrcFile.c:349
+#: src/LYrcFile.c:350
 msgid ""
 "cookie_file specifies the file from which to read persistent cookies.\n"
 "The default is ~/.lynx_cookies.\n"
@@ -5469,7 +5473,7 @@ msgstr ""
 "cookie_file especifica el fitxer del qual es llegeixen les cookies\n"
 "persistents. Per omissió és ~/.lynx_cookies.\n"
 
-#: src/LYrcFile.c:354
+#: src/LYrcFile.c:355
 msgid ""
 "cookie_loose_invalid_domains, cookie_strict_invalid_domains, and\n"
 "cookie_query_invalid_domains are comma-delimited lists of which domains\n"
@@ -5484,7 +5488,7 @@ msgstr ""
 "dominis de les quals se sotmeten a diversos graus de comprovació\n"
 "de validesa. Si un domini \n"
 
-#: src/LYrcFile.c:368
+#: src/LYrcFile.c:369
 msgid ""
 "dir_list_order specifies the directory list order under DIRED_SUPPORT\n"
 "(if implemented).  The default is \"ORDER_BY_NAME\"\n"
@@ -5492,7 +5496,7 @@ msgstr ""
 "dir_list_order^indica^l'ordre^en^què^s'ha^de^llistar^el^directori^sota\n"
 "DIRED_SUPPORT (si està disponible). Per omissió és \"ORDER_BY_NAME\".\n"
 
-#: src/LYrcFile.c:373
+#: src/LYrcFile.c:374
 msgid ""
 "dir_list_styles specifies the directory list style under DIRED_SUPPORT\n"
 "(if implemented).  The default is \"MIXED_STYLE\", which sorts both\n"
@@ -5504,7 +5508,7 @@ msgstr ""
 "i^els^directoris^indistintament.^\"FILES_FIRST\"^llista^primer^els^fitxers^i\n"
 "\"DIRECTORIES_FIRST\" llista primer els directoris.\n"
 
-#: src/LYrcFile.c:381
+#: src/LYrcFile.c:382
 msgid ""
 "If emacs_keys is to \"on\" then the normal EMACS movement keys:\n"
 "  ^N = down    ^P = up\n"
@@ -5516,7 +5520,7 @@ msgstr ""
 "  ^N = avall     ^P = amunt\n"
 "  ^B = esquerra  ^F = dreta\n"
 
-#: src/LYrcFile.c:387
+#: src/LYrcFile.c:388
 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"
@@ -5527,7 +5531,7 @@ msgstr ""
 "enviar correu. Si no se n'especifica cap l'edició de fitxers quedarà\n"
 "desactivada (tret que s'active des de la línia d'ordres) i s'usarà l'editor\n"
 
-#: src/LYrcFile.c:393
+#: src/LYrcFile.c:394
 msgid ""
 "The file_sorting_method specifies which value to sort on when viewing\n"
 "file lists such as FTP directories.  The options are:\n"
@@ -5540,7 +5544,7 @@ msgstr ""
 "visualitzen^llistes^de^fitxers^com^ara^directoris^FTP.^Les^opcions^són:\n"
 "^^^BY_FILENAME\n"
 
-#: src/LYrcFile.c:411
+#: src/LYrcFile.c:412
 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"
@@ -5555,7 +5559,7 @@ msgid ""
 "Current lineedit modes are:\n"
 msgstr "lineedit_mode especifica \n"
 
-#: src/LYrcFile.c:429
+#: src/LYrcFile.c:430
 msgid ""
 "The following allow you to define sub-bookmark files and descriptions.\n"
 "The format is multi_bookmark<capital_letter>=<filename>,<description>\n"
@@ -5563,7 +5567,7 @@ msgid ""
 "We start with \"multi_bookmarkB\" since 'A' is the default (see above).\n"
 msgstr ""
 
-#: src/LYrcFile.c:435
+#: src/LYrcFile.c:436
 msgid ""
 "personal_mail_address specifies your personal mail address.  The\n"
 "address will be sent during HTTP file transfers for authorization and\n"
@@ -5574,7 +5578,7 @@ msgid ""
 "your mailed comments.\n"
 msgstr "personal_mail_address especifica la vostra adreça de correu. L'adre\n"
 
-#: src/LYrcFile.c:444
+#: src/LYrcFile.c:445
 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"
@@ -5598,7 +5602,7 @@ msgstr ""
 "Si la capçalera Accept-Charset no està present, es considera que \n"
 "qualsevol joc de car\n"
 
-#: src/LYrcFile.c:460
+#: src/LYrcFile.c:461
 msgid ""
 "preferred_language specifies the language in MIME notation (e.g., en,\n"
 "fr, may be a comma-separated list in decreasing preference)\n"
@@ -5612,7 +5616,7 @@ msgstr ""
 "servidors. Si està disponible el servidor l'usarà; si no, usarà\n"
 "l'idioma que tinga establert per omissió.\n"
 
-#: src/LYrcFile.c:471
+#: src/LYrcFile.c:472
 msgid ""
 "If run_all_execution_links is set \"on\" then all local execution links\n"
 "will be executed when they are selected.\n"
@@ -5627,7 +5631,7 @@ msgstr ""
 "Si run_all_execution_links està activat els enllaços d'execució \n"
 "s'executen \n"
 
-#: src/LYrcFile.c:482
+#: src/LYrcFile.c:483
 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"
@@ -5655,7 +5659,7 @@ msgstr ""
 "        del sistema. Aquesta opció només hauria d'activar-se si\n"
 "        veieu informació de confiança.\n"
 
-#: src/LYrcFile.c:500
+#: src/LYrcFile.c:501
 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"
@@ -5666,7 +5670,7 @@ msgid ""
 "The default can be overridden via the -popup command line toggle.\n"
 msgstr ""
 
-#: src/LYrcFile.c:510
+#: src/LYrcFile.c:511
 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"
@@ -5685,7 +5689,7 @@ msgid ""
 "\"off\" \"show color\" settings will be treated as \"default\".\n"
 msgstr ""
 
-#: src/LYrcFile.c:527
+#: src/LYrcFile.c:528
 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"
@@ -5702,7 +5706,7 @@ msgstr ""
 "de l'enllaç actual en els documents o de l'opció actual en les finestres\n"
 "de sel\n"
 
-#: src/LYrcFile.c:538
+#: src/LYrcFile.c:539
 msgid ""
 "show_dotfiles specifies that the directory listing should include\n"
 "\"hidden\" (dot) files/directories.  If set \"on\", this will be\n"
@@ -5711,7 +5715,7 @@ msgid ""
 "is disabled, creation of such files via Lynx also is disabled.\n"
 msgstr "L'opció show_dotfiles indica que s'han d'incloure els \n"
 
-#: src/LYrcFile.c:549
+#: src/LYrcFile.c:550
 msgid ""
 "If sub_bookmarks is not turned \"off\", and multiple bookmarks have\n"
 "been defined (see below), then all bookmark operations will first\n"
@@ -5724,7 +5728,7 @@ msgid ""
 "presented regardless of user mode.\n"
 msgstr ""
 
-#: src/LYrcFile.c:563
+#: src/LYrcFile.c:564
 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"
@@ -5736,7 +5740,7 @@ msgstr ""
 "user_mode especifica el nivell d'experiència que té l'usuari amb Lynx.\n"
 "Per omissió és \"NOVICE\"\n"
 
-#: src/LYrcFile.c:572
+#: src/LYrcFile.c:573
 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"
@@ -5746,7 +5750,7 @@ msgstr ""
 "de la imatge en lloc de [INLINE], [LINK] o [IMAGE]\n"
 "Vegeu també VERBOSE_IMAGES en el fitxer lynx.cfg\n"
 
-#: src/LYrcFile.c:577
+#: src/LYrcFile.c:578
 msgid ""
 "If vi_keys is set to \"on\", then the normal VI movement keys:\n"
 "  j = down    k = up\n"
@@ -5760,7 +5764,7 @@ msgstr ""
 "  h = esquerra   l = dreta\n"
 "Només en minúscula. L\n"
 
-#: src/LYrcFile.c:585
+#: src/LYrcFile.c:586
 msgid ""
 "The visited_links setting controls how Lynx organizes the information\n"
 "in the Visited Links Page.\n"
@@ -5768,7 +5772,7 @@ msgstr ""
 "La variable visited_links controla la forma en què Lynx organitza la\n"
 "informació en la pàgina d'enllaços visitats.\n"
 
-#: src/LYrcFile.c:803
+#: src/LYrcFile.c:804
 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"
@@ -5779,7 +5783,7 @@ msgid ""
 "regardless of whether numlock is on.\n"
 msgstr "Si poseu keypad_mode \n"
 
-#: src/LYrcFile.c:812
+#: src/LYrcFile.c:813
 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"
@@ -5788,7 +5792,7 @@ msgstr ""
 "aleshores apareixerà un número al costat de cada enllaç i podreu triar\n"
 "l'enllaç desitjat prement la tecla del número corresponent.\n"
 
-#: src/LYrcFile.c:816
+#: src/LYrcFile.c:817
 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"
@@ -5799,7 +5803,7 @@ msgid ""
 "lists and output from the list command also enumerate form inputs.\n"
 msgstr ""
 
-#: src/LYrcFile.c:825
+#: src/LYrcFile.c:826
 msgid ""
 "NOTE: Some fixed format documents may look disfigured when\n"
 "\"LINKS_ARE_NUMBERED\" or \"LINKS_AND_FORM_FIELDS_ARE_NUMBERED\" are\n"
@@ -5810,7 +5814,7 @@ msgstr ""
 "\"LINKS_AND_FORM_FIELDS_ARE_NUMBERED\" (enllaços i camps de formulari\n"
 "numerats.\n"
 
-#: src/LYrcFile.c:857
+#: src/LYrcFile.c:858
 msgid ""
 "Lynx User Defaults File\n"
 "\n"
diff --git a/po/cs.po b/po/cs.po
index 538d5f27..b1e3fab7 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lynx 2.8.4\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-10-10 18:51-0400\n"
+"POT-Creation-Date: 2004-10-17 16:29-0400\n"
 "PO-Revision-Date: 1999-12-11 12:55+0100\n"
 "Last-Translator: Jiøí Pavlovský  <pavlovsk@ff.cuni.cz>\n"
 "Language-Team: Czech <cs@li.org>\n"
@@ -2793,7 +2793,7 @@ msgstr "Dokument s POST obsahem nenalezen v cache. Odeslat znovu?"
 msgid "Loading failed, use a previous copy."
 msgstr ""
 
-#: WWW/Library/Implementation/HTAccess.c:1045 src/GridText.c:8301
+#: WWW/Library/Implementation/HTAccess.c:1045 src/GridText.c:8296
 msgid "Loading incomplete."
 msgstr "Nahrávání dokonèeno."
 
@@ -2862,7 +2862,7 @@ msgstr "Pøeneseno bajtù: %d (%5d)"
 msgid "connect for data"
 msgstr "datové spojení"
 
-#: WWW/Library/Implementation/HTFTP.c:3738
+#: WWW/Library/Implementation/HTFTP.c:3741
 msgid "Receiving FTP file."
 msgstr "Stahuji FTP soubor."
 
@@ -3021,7 +3021,7 @@ msgstr "Délka adresy se zdá být chybnou."
 msgid "Address length looks invalid"
 msgstr "Délka adresy se zdá být chybnou."
 
-#: WWW/Library/Implementation/HTTCP.c:1551 WWW/Library/Implementation/HTTCP.c:1569
+#: WWW/Library/Implementation/HTTCP.c:1552 WWW/Library/Implementation/HTTCP.c:1570
 #, c-format
 msgid "Unable to locate remote host %s."
 msgstr "Adresu poèítaèe %s nelze zjistit."
@@ -3030,38 +3030,38 @@ msgstr "Adresu poèítaèe %s nelze zjistit."
 #. * but not HTAlert, because typically there will be other
 #. * alerts from the callers.  - kw
 #.
-#: WWW/Library/Implementation/HTTCP.c:1566 WWW/Library/Implementation/HTTelnet.c:108
+#: WWW/Library/Implementation/HTTCP.c:1567 WWW/Library/Implementation/HTTelnet.c:108
 #, c-format
 msgid "Invalid hostname %s"
 msgstr "Jméno poèítaèe %s je chybné"
 
-#: WWW/Library/Implementation/HTTCP.c:1580
+#: WWW/Library/Implementation/HTTCP.c:1581
 #, c-format
 msgid "Making %s connection to %s"
 msgstr "Navazuji %s spojení s %s."
 
-#: WWW/Library/Implementation/HTTCP.c:1591
+#: WWW/Library/Implementation/HTTCP.c:1592
 msgid "socket failed."
 msgstr "chyba soketu."
 
-#: WWW/Library/Implementation/HTTCP.c:1604
+#: WWW/Library/Implementation/HTTCP.c:1605
 #, c-format
 msgid "socket failed: family %d addr %s port %s."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1628
+#: WWW/Library/Implementation/HTTCP.c:1629
 msgid "Could not make connection non-blocking."
 msgstr "Soket nelze nastavit jako neblokující."
 
-#: WWW/Library/Implementation/HTTCP.c:1697
+#: WWW/Library/Implementation/HTTCP.c:1698
 msgid "Connection failed (too many retries)."
 msgstr "Spojení se nepodaøilo navázat na 180 000. pokus."
 
-#: WWW/Library/Implementation/HTTCP.c:1896
+#: WWW/Library/Implementation/HTTCP.c:1897
 msgid "Could not restore socket to blocking."
 msgstr "Soket nelze nastavit jako blokující."
 
-#: WWW/Library/Implementation/HTTCP.c:1962
+#: WWW/Library/Implementation/HTTCP.c:1963
 msgid "Socket read failed for 180,000 tries."
 msgstr "180 000 neúspì¹ných pokusù èíst ze soketu."
 
@@ -3070,46 +3070,46 @@ msgstr "180 000 neúspì¹ných pokusù èíst ze soketu."
 msgid "Address contains a username: %s"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:497
+#: WWW/Library/Implementation/HTTP.c:531
 msgid "This client does not contain support for HTTPS URLs."
 msgstr "Tento klient nepodporuje HTTPS URL."
 
-#: WWW/Library/Implementation/HTTP.c:522
+#: WWW/Library/Implementation/HTTP.c:556
 msgid "Unable to connect to remote host."
 msgstr "Spojení se vzdáleným poèítaèem nelze navázat."
 
-#: WWW/Library/Implementation/HTTP.c:544
+#: WWW/Library/Implementation/HTTP.c:578
 #, fuzzy
 msgid "Retrying connection without TLS."
 msgstr "Navazuji %s spojení s %s."
 
-#: WWW/Library/Implementation/HTTP.c:587
+#: WWW/Library/Implementation/HTTP.c:621
 msgid "SSL error:Can't find common name in certificate-Continue?"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:604
+#: WWW/Library/Implementation/HTTP.c:638
 #, c-format
 msgid "SSL error:host(%s)!=cert(%s)-Continue?"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:616
+#: WWW/Library/Implementation/HTTP.c:650
 #, c-format
 msgid "Secure %d-bit %s (%s) HTTP connection"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1086
+#: WWW/Library/Implementation/HTTP.c:1120
 msgid "Sending HTTP request."
 msgstr "Odesílám HTTP po¾adavek."
 
-#: WWW/Library/Implementation/HTTP.c:1125
+#: WWW/Library/Implementation/HTTP.c:1159
 msgid "Unexpected network write error; connection aborted."
 msgstr "Neoèekávaná chyba pøi zápisu na soket; spojení uzavøeno."
 
-#: WWW/Library/Implementation/HTTP.c:1131
+#: WWW/Library/Implementation/HTTP.c:1165
 msgid "HTTP request sent; waiting for response."
 msgstr "HTTP po¾adavek odeslán; èekám na odpovìï"
 
-#: WWW/Library/Implementation/HTTP.c:1199
+#: WWW/Library/Implementation/HTTP.c:1233
 msgid "Unexpected network read error; connection aborted."
 msgstr "Neoèekávaná chyba pøi ètení ze soketu; spojení uzavøeno."
 
@@ -3122,7 +3122,7 @@ msgstr "Neoèekávaná chyba pøi ètení ze soketu; spojení uzavøeno."
 #. * 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:1393
+#: WWW/Library/Implementation/HTTP.c:1427
 msgid "Got unexpected Informational Status."
 msgstr "Neoèekávané Informaèní hlá¹ení."
 
@@ -3132,7 +3132,7 @@ msgstr "Neoèekávané Informaèní hlá¹ení."
 #. * content.  We'll instruct the user to do that, and
 #. * restore the current document.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1427
+#: WWW/Library/Implementation/HTTP.c:1461
 msgid "Request fulfilled.  Reset Content."
 msgstr "Po¾adavek vyøízen. Obsah formuláøe smazán."
 
@@ -3142,27 +3142,27 @@ msgstr "Po¾adavek vyøízen. Obsah formuláøe smazán."
 #. * 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:1544
+#: WWW/Library/Implementation/HTTP.c:1578
 msgid "Got unexpected 304 Not Modified status."
 msgstr "Neoèekávané hlá¹ení: 304 Not Modified"
 
-#: WWW/Library/Implementation/HTTP.c:1607
+#: WWW/Library/Implementation/HTTP.c:1641
 msgid "Redirection of POST content requires user approval."
 msgstr "Pøesmìrování POST obsahu vy¾aduje souhlas u¾ivatele."
 
-#: WWW/Library/Implementation/HTTP.c:1622
+#: WWW/Library/Implementation/HTTP.c:1656
 msgid "Have POST content.  Treating Permanent Redirection as Temporary.\n"
 msgstr "Obsahuje POST data. Trvalé pøesmìrování pou¾ívám pouze jako doèasné.\n"
 
-#: WWW/Library/Implementation/HTTP.c:1664
+#: WWW/Library/Implementation/HTTP.c:1698
 msgid "Retrying with access authorization information."
 msgstr "Zkou¹ím to znovu s proxy autorizací."
 
-#: WWW/Library/Implementation/HTTP.c:1676
+#: WWW/Library/Implementation/HTTP.c:1710
 msgid "Show the 401 message body?"
 msgstr "Zobrazit tìlo 401 hlá¹ení?"
 
-#: WWW/Library/Implementation/HTTP.c:1719
+#: WWW/Library/Implementation/HTTP.c:1753
 msgid "Show the 407 message body?"
 msgstr "Zobrazit tìlo 407 hlá¹ení?"
 
@@ -3170,7 +3170,7 @@ msgstr "Zobrazit tìlo 407 hlá¹ení?"
 #. * Bad or unknown server_status number.  Take a chance and hope
 #. * there is something to display.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1819
+#: WWW/Library/Implementation/HTTP.c:1853
 msgid "Unknown status reply from server!"
 msgstr "Neznámé hlá¹ení od serveru!"
 
@@ -3434,31 +3434,31 @@ msgstr "pole pro vytvoøení klíèe"
 msgid "unknown form field"
 msgstr "neznámé pole formuláøe"
 
-#: src/GridText.c:10020
+#: src/GridText.c:10015
 #, fuzzy
 msgid "Can't open file for uploading"
 msgstr "Soubor pro dekompresi nelze otevøít!"
 
-#: src/GridText.c:11170
+#: src/GridText.c:11165
 #, c-format
 msgid "Submitting %s"
 msgstr "Odesílám %s"
 
 #. ugliness has happened; inform user and do the best we can
-#: src/GridText.c:12318
+#: src/GridText.c:12313
 msgid "Hang Detect: TextAnchor struct corrupted - suggest aborting!"
 msgstr ""
 
 #. don't show previous state
-#: src/GridText.c:12523
+#: src/GridText.c:12518
 msgid "Wrap lines to fit displayed area?"
 msgstr ""
 
-#: src/GridText.c:12575
+#: src/GridText.c:12570
 msgid "Very long lines have been wrapped!"
 msgstr ""
 
-#: src/GridText.c:13016
+#: src/GridText.c:13011
 msgid "Very long lines have been truncated!"
 msgstr ""
 
@@ -4691,117 +4691,121 @@ msgstr "Pøijmout zmìny"
 msgid "gzip"
 msgstr ""
 
-#: src/LYOptions.c:2388
+#: src/LYOptions.c:2386
+msgid "deflate"
+msgstr ""
+
+#: src/LYOptions.c:2389
 msgid "compress"
 msgstr ""
 
-#: src/LYOptions.c:2391
+#: src/LYOptions.c:2392
 msgid "bzip2"
 msgstr ""
 
-#: src/LYOptions.c:2393
+#: src/LYOptions.c:2394
 msgid "All"
 msgstr ""
 
-#: src/LYOptions.c:2658 src/LYOptions.c:2682
+#: src/LYOptions.c:2659 src/LYOptions.c:2683
 #, c-format
 msgid "Use %s to invoke the Options menu!"
 msgstr ""
 
-#: src/LYOptions.c:3421
+#: src/LYOptions.c:3422
 msgid "(options marked with (!) will not be saved)"
 msgstr ""
 
-#: src/LYOptions.c:3429
+#: src/LYOptions.c:3430
 msgid "General Preferences"
 msgstr "Osobní nastavení"
 
 #. ***************************************************************
 #. User Mode: SELECT
-#: src/LYOptions.c:3433
+#: src/LYOptions.c:3434
 msgid "User mode"
 msgstr "U¾ivatelský re¾im"
 
 #. Editor: INPUT
-#: src/LYOptions.c:3439
+#: src/LYOptions.c:3440
 msgid "Editor"
 msgstr "Editor"
 
 #. Search Type: SELECT
-#: src/LYOptions.c:3444
+#: src/LYOptions.c:3445
 msgid "Type of Search"
 msgstr ""
 
-#: src/LYOptions.c:3449
+#: src/LYOptions.c:3450
 msgid "Security and Privacy"
 msgstr ""
 
 #. ***************************************************************
 #. Cookies: SELECT
-#: src/LYOptions.c:3453
+#: src/LYOptions.c:3454
 msgid "Cookies"
 msgstr "Cookies"
 
 #. Cookie Prompting: SELECT
-#: src/LYOptions.c:3467
+#: src/LYOptions.c:3468
 msgid "Invalid-Cookie Prompting"
 msgstr ""
 
 #. SSL Prompting: SELECT
-#: src/LYOptions.c:3474
+#: src/LYOptions.c:3475
 msgid "SSL Prompting"
 msgstr ""
 
-#: src/LYOptions.c:3480
+#: src/LYOptions.c:3481
 msgid "Keyboard Input"
 msgstr ""
 
 #. ***************************************************************
 #. Keypad Mode: SELECT
-#: src/LYOptions.c:3484
+#: src/LYOptions.c:3485
 msgid "Keypad mode"
 msgstr "Re¾im numerické klávesnice"
 
 #. Emacs keys: ON/OFF
-#: src/LYOptions.c:3490
+#: src/LYOptions.c:3491
 msgid "Emacs keys"
 msgstr "Emacs klávesy"
 
 #. VI Keys: ON/OFF
-#: src/LYOptions.c:3496
+#: src/LYOptions.c:3497
 msgid "VI keys"
 msgstr "VI klávesy"
 
 #. Line edit style: SELECT
 #. well, at least 2 line edit styles available
-#: src/LYOptions.c:3503
+#: src/LYOptions.c:3504
 msgid "Line edit style"
 msgstr ""
 
 #. Keyboard layout: SELECT
-#: src/LYOptions.c:3515
+#: src/LYOptions.c:3516
 msgid "Keyboard layout"
 msgstr ""
 
 #.
 #. * Display and Character Set
 #.
-#: src/LYOptions.c:3529
+#: src/LYOptions.c:3530
 msgid "Display and Character Set"
 msgstr "Místní znaková sada"
 
 #. Use locale-based character set: ON/OFF
-#: src/LYOptions.c:3534
+#: src/LYOptions.c:3535
 #, fuzzy
 msgid "Use locale-based character set"
 msgstr "Pøedpokládaná znaková sada"
 
 #. Display Character Set: SELECT
-#: src/LYOptions.c:3543
+#: src/LYOptions.c:3544
 msgid "Display character set"
 msgstr "Místní znaková sada"
 
-#: src/LYOptions.c:3574
+#: src/LYOptions.c:3575
 msgid "Assumed document character set"
 msgstr "Pøedpokládaná znaková sada"
 
@@ -4810,169 +4814,169 @@ msgstr "Pøedpokládaná znaková sada"
 #. * we split the header to make it more readable:
 #. * "CJK mode" for CJK display charsets, and "Raw 8-bit" for others.
 #.
-#: src/LYOptions.c:3594
+#: src/LYOptions.c:3595
 msgid "CJK mode"
 msgstr "CJK re¾im"
 
-#: src/LYOptions.c:3596
+#: src/LYOptions.c:3597
 msgid "Raw 8-bit"
 msgstr "Pøímý 8bitový re¾im"
 
 #. X Display: INPUT
-#: src/LYOptions.c:3604
+#: src/LYOptions.c:3605
 msgid "X Display"
 msgstr "X Display"
 
 #.
 #. * Document Appearance
 #.
-#: src/LYOptions.c:3610
+#: src/LYOptions.c:3611
 msgid "Document Appearance"
 msgstr ""
 
-#: src/LYOptions.c:3616
+#: src/LYOptions.c:3617
 msgid "Show color"
 msgstr "Zobrazovat barvy"
 
 #. Show cursor: ON/OFF
-#: src/LYOptions.c:3640
+#: src/LYOptions.c:3641
 msgid "Show cursor"
 msgstr "Zobrazovat kurzor"
 
 #. Underline links: ON/OFF
-#: src/LYOptions.c:3646
+#: src/LYOptions.c:3647
 #, fuzzy
 msgid "Underline links"
 msgstr "Skryté odkazy:"
 
 #. Show scrollbar: ON/OFF
-#: src/LYOptions.c:3653
+#: src/LYOptions.c:3654
 #, fuzzy
 msgid "Show scrollbar"
 msgstr "Zobrazovat barvy"
 
 #. Select Popups: ON/OFF
-#: src/LYOptions.c:3660
+#: src/LYOptions.c:3661
 msgid "Popups for select fields"
 msgstr "Vyskakovací menu pro zvolená pole"
 
 #. HTML error recovery: SELECT
-#: src/LYOptions.c:3666
+#: src/LYOptions.c:3667
 msgid "HTML error recovery"
 msgstr "Zotavení po chybách HTML"
 
 #. Show Images: SELECT
-#: src/LYOptions.c:3672
+#: src/LYOptions.c:3673
 msgid "Show images"
 msgstr "Zobrazení obrázkù"
 
 #. Verbose Images: ON/OFF
-#: src/LYOptions.c:3686
+#: src/LYOptions.c:3687
 msgid "Verbose images"
 msgstr "Doslovné obrázky"
 
-#: src/LYOptions.c:3695
+#: src/LYOptions.c:3696
 msgid "Headers Transferred to Remote Servers"
 msgstr "HTTP hlavièky"
 
 #. ***************************************************************
 #. Mail Address: INPUT
-#: src/LYOptions.c:3699
+#: src/LYOptions.c:3700
 msgid "Personal mail address"
 msgstr "Osobní adresa elektronické po¹ty"
 
 #. Preferred media type: SELECT
-#: src/LYOptions.c:3704
+#: src/LYOptions.c:3705
 #, fuzzy
 msgid "Preferred media type"
 msgstr "Pøeneseno bajtù: %d"
 
 #. Preferred encoding: SELECT
-#: src/LYOptions.c:3710
+#: src/LYOptions.c:3711
 #, fuzzy
 msgid "Preferred encoding"
 msgstr "Upøednostòovaný jazyk dokumentu"
 
 #. Preferred Document Character Set: INPUT
-#: src/LYOptions.c:3716
+#: src/LYOptions.c:3717
 msgid "Preferred document character set"
 msgstr "Upøednostòovaná znaková sada"
 
 #. Preferred Document Language: INPUT
-#: src/LYOptions.c:3721
+#: src/LYOptions.c:3722
 msgid "Preferred document language"
 msgstr "Upøednostòovaný jazyk dokumentu"
 
-#: src/LYOptions.c:3727
+#: src/LYOptions.c:3728
 msgid "User-Agent header"
 msgstr "Hlavièka 'User-Agent'"
 
 #.
 #. * Listing and Accessing Files
 #.
-#: src/LYOptions.c:3735
+#: src/LYOptions.c:3736
 msgid "Listing and Accessing Files"
 msgstr ""
 
 #. ***************************************************************
 #. FTP sort: SELECT
-#: src/LYOptions.c:3739
+#: src/LYOptions.c:3740
 msgid "FTP sort criteria"
 msgstr "Øazení FTP adresáøù"
 
 #. Local Directory Sort: SELECT
-#: src/LYOptions.c:3746
+#: src/LYOptions.c:3747
 msgid "Local directory sort criteria"
 msgstr "Øazení lokálních adresáøù"
 
 #. Local Directory Order: SELECT
-#: src/LYOptions.c:3752
+#: src/LYOptions.c:3753
 #, fuzzy
 msgid "Local directory sort order"
 msgstr "Øazení lokálních adresáøù"
 
-#: src/LYOptions.c:3761
+#: src/LYOptions.c:3762
 msgid "Show dot files"
 msgstr "Zobrazovat teèkové soubory"
 
-#: src/LYOptions.c:3769
+#: src/LYOptions.c:3770
 msgid "Execution links"
 msgstr "Spustitelné odkazy"
 
 #. Show transfer rate: SELECT
-#: src/LYOptions.c:3789
+#: src/LYOptions.c:3790
 msgid "Show transfer rate"
 msgstr "Pøenos dat dokonèen"
 
 #.
 #. * Special Files and Screens
 #.
-#: src/LYOptions.c:3809
+#: src/LYOptions.c:3810
 msgid "Special Files and Screens"
 msgstr ""
 
-#: src/LYOptions.c:3814
+#: src/LYOptions.c:3815
 msgid "Multi-bookmarks"
 msgstr "Dìlené zálo¾ky"
 
-#: src/LYOptions.c:3822
+#: src/LYOptions.c:3823
 msgid "Review/edit Bookmarks files"
 msgstr "Editace podsouborù se zálo¾kami"
 
-#: src/LYOptions.c:3824
+#: src/LYOptions.c:3825
 msgid "Goto multi-bookmark menu"
 msgstr "Menu dìlených zálo¾ek"
 
-#: src/LYOptions.c:3826
+#: src/LYOptions.c:3827
 msgid "Bookmarks file"
 msgstr "Soubor se zálo¾kami"
 
 #. Visited Pages: SELECT
-#: src/LYOptions.c:3832
+#: src/LYOptions.c:3833
 msgid "Visited Pages"
 msgstr "Nav¹tívené odkazy"
 
-#: src/LYOptions.c:3837
+#: src/LYOptions.c:3838
 #, fuzzy
 msgid "View the file "
 msgstr "Poslat soubor po¹tou"
@@ -5091,38 +5095,38 @@ msgstr "Lynx: nelze spustit, soubor %s s pravidly CERN není dostupný\n"
 msgid "(no name)"
 msgstr "(¾ádné jméno)"
 
-#: src/LYReadCFG.c:1772
+#: src/LYReadCFG.c:1773
 #, c-format
 msgid "More than %d nested lynx.cfg includes -- perhaps there is a loop?!?\n"
 msgstr "Více ne¾ %d vnoøených vlo¾ení z lynx.cfg -- nejedná se o nekoneènou smyèku?!?\n"
 
-#: src/LYReadCFG.c:1774
+#: src/LYReadCFG.c:1775
 #, c-format
 msgid "Last attempted include was '%s',\n"
 msgstr "Poslední vlo¾ený soubor je '%s'.\n"
 
-#: src/LYReadCFG.c:1775
+#: src/LYReadCFG.c:1776
 #, c-format
 msgid "included from '%s'.\n"
 msgstr "vlo¾ený z '%s'.\n"
 
-#: src/LYReadCFG.c:2181 src/LYReadCFG.c:2194 src/LYReadCFG.c:2252
+#: src/LYReadCFG.c:2183 src/LYReadCFG.c:2196 src/LYReadCFG.c:2254
 msgid "The following is read from your lynx.cfg file."
 msgstr "Následující údaje jsou èteny z va¹eho lynx.cfg."
 
-#: src/LYReadCFG.c:2182 src/LYReadCFG.c:2195
+#: src/LYReadCFG.c:2184 src/LYReadCFG.c:2197
 msgid "Please read the distribution"
 msgstr "Pøeètìte si implicitní dodávaný s distribucí"
 
-#: src/LYReadCFG.c:2188 src/LYReadCFG.c:2198
+#: src/LYReadCFG.c:2190 src/LYReadCFG.c:2200
 msgid "for more comments."
 msgstr "pro více informací."
 
-#: src/LYReadCFG.c:2234
+#: src/LYReadCFG.c:2236
 msgid "RELOAD THE CHANGES"
 msgstr "NAÈÍST ZMÌNY"
 
-#: src/LYReadCFG.c:2242
+#: src/LYReadCFG.c:2244
 msgid "Your primary configuration"
 msgstr "Va¹e primární konfigurace"
 
@@ -5426,7 +5430,7 @@ msgstr ""
 msgid "Normally disabled.  See ENABLE_LYNXRC in lynx.cfg\n"
 msgstr ""
 
-#: src/LYrcFile.c:317
+#: src/LYrcFile.c:318
 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"
@@ -5438,7 +5442,7 @@ msgstr ""
 "ka¾dého cookie. Pøijetí ka¾dého cookie zapnete nastavením accept_all_cookies\n"
 "na \"TRUE\".\n"
 
-#: src/LYrcFile.c:324
+#: src/LYrcFile.c:325
 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"
@@ -5447,7 +5451,7 @@ msgstr ""
 "Volba bookmark_file udává jméno implicitního souboru se zálo¾kami, do kterého\n"
 "si u¾ivatel mù¾e ukládat odkazy pro pozdìj¹í pou¾ití.\n"
 
-#: src/LYrcFile.c:329
+#: src/LYrcFile.c:330
 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"
@@ -5457,7 +5461,7 @@ msgstr ""
 "spustí klávesou 's' èi '/' vyhledávání, bude toto brát ohled na velikost písmen.\n"
 "Tato volba je implicitnì vypnuta (\"off\").\n"
 
-#: src/LYrcFile.c:334
+#: src/LYrcFile.c:335
 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"
@@ -5470,7 +5474,7 @@ msgstr ""
 "mù¾ete zkusit jiné 8bitové kódování, èi pou¾ít 7bitové aproximace.\n"
 "Mo¾né znakové sady:\n"
 
-#: src/LYrcFile.c:341
+#: src/LYrcFile.c:342
 msgid ""
 "cookie_accept_domains and cookie_reject_domains are comma-delimited\n"
 "lists of domains from which Lynx should automatically accept or reject\n"
@@ -5483,7 +5487,7 @@ msgstr ""
 "je doména uvedena v obou seznamech, má cookie_reject_domains pøednost. Volba\n"
 "accept_all_cookies má vy¹¹í prioritu, ne¾ obì tyto volby.\n"
 
-#: src/LYrcFile.c:349
+#: src/LYrcFile.c:350
 msgid ""
 "cookie_file specifies the file from which to read persistent cookies.\n"
 "The default is ~/.lynx_cookies.\n"
@@ -5491,7 +5495,7 @@ msgstr ""
 "Volba cookie_file udává soubor, ve kterém se ukládají trvalé cookies.\n"
 "Implicitním nastavením je ~/.lynx_cookies.\n"
 
-#: src/LYrcFile.c:354
+#: src/LYrcFile.c:355
 msgid ""
 "cookie_loose_invalid_domains, cookie_strict_invalid_domains, and\n"
 "cookie_query_invalid_domains are comma-delimited lists of which domains\n"
@@ -5508,13 +5512,13 @@ msgstr ""
 "Doména s 'loose' ovìøováním bude moci nastavovat cookies s chybnou cestou\n"
 "èi doménovým atributem (implicitním nastavením je zeptat se u¾ivatele).\n"
 
-#: src/LYrcFile.c:368
+#: src/LYrcFile.c:369
 msgid ""
 "dir_list_order specifies the directory list order under DIRED_SUPPORT\n"
 "(if implemented).  The default is \"ORDER_BY_NAME\"\n"
 msgstr ""
 
-#: src/LYrcFile.c:373
+#: src/LYrcFile.c:374
 msgid ""
 "dir_list_styles specifies the directory list style under DIRED_SUPPORT\n"
 "(if implemented).  The default is \"MIXED_STYLE\", which sorts both\n"
@@ -5526,7 +5530,7 @@ msgstr ""
 "vzájemné promíchání souborù s adresáøi. \"FILES_FIRST\" vypí¹e jako první\n"
 "soubory a \"DIRED_SUPPORT\" adresáøe.\n"
 
-#: src/LYrcFile.c:381
+#: src/LYrcFile.c:382
 msgid ""
 "If emacs_keys is to \"on\" then the normal EMACS movement keys:\n"
 "  ^N = down    ^P = up\n"
@@ -5538,7 +5542,7 @@ msgstr ""
 "  ^B = vlevo   ^F = vpravo\n"
 "zapnuty.\n"
 
-#: src/LYrcFile.c:387
+#: src/LYrcFile.c:388
 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"
@@ -5550,7 +5554,7 @@ msgstr ""
 "povoleny z pøíkazové øádky, jsou úpravy souborù zakázány. Pro psaní dopisù\n"
 "bude pou¾it vestavìný editor.\n"
 
-#: src/LYrcFile.c:393
+#: src/LYrcFile.c:394
 msgid ""
 "The file_sorting_method specifies which value to sort on when viewing\n"
 "file lists such as FTP directories.  The options are:\n"
@@ -5566,7 +5570,7 @@ msgstr ""
 "   BY_SIZE     -- øadí dle velikosti souboru\n"
 "   BY_DATE     -- øadí dle data souboru\n"
 
-#: src/LYrcFile.c:411
+#: src/LYrcFile.c:412
 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"
@@ -5592,7 +5596,7 @@ msgstr ""
 "\n"
 "Mo¾né re¾imy øádkového editoru:\n"
 
-#: src/LYrcFile.c:429
+#: src/LYrcFile.c:430
 msgid ""
 "The following allow you to define sub-bookmark files and descriptions.\n"
 "The format is multi_bookmark<capital_letter>=<filename>,<description>\n"
@@ -5604,7 +5608,7 @@ msgstr ""
 "podsouborù zálo¾ek (ka¾dý odpovídá jednomu velkému písmeno anglické abecedy).\n"
 "Zaèíná se s \"multi_bookmarkB\", proto¾e 'A' je implicitní (viz vý¹e).\n"
 
-#: src/LYrcFile.c:435
+#: src/LYrcFile.c:436
 msgid ""
 "personal_mail_address specifies your personal mail address.  The\n"
 "address will be sent during HTTP file transfers for authorization and\n"
@@ -5622,7 +5626,7 @@ msgstr ""
 "Té¾ je mo¾né nechat toto pole prázdné, ale pak by nebylo zaèlenìno do vámi\n"
 "odeslaných komentáøù.\n"
 
-#: src/LYrcFile.c:444
+#: src/LYrcFile.c:445
 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"
@@ -5649,7 +5653,7 @@ msgstr ""
 "chybovou hlá¹ku. Mù¾e v¹ak také poslat dokument v jiné, ne¾ po¾adované\n"
 "znakové sadì.\n"
 
-#: src/LYrcFile.c:460
+#: src/LYrcFile.c:461
 msgid ""
 "preferred_language specifies the language in MIME notation (e.g., en,\n"
 "fr, may be a comma-separated list in decreasing preference)\n"
@@ -5663,7 +5667,7 @@ msgstr ""
 "preference). Pokud bude dokument v tomto jazyce k dispozici, server jej za¹le.\n"
 "V opaèném pøípadì jej za¹le ve svém implicitním jazyce.\n"
 
-#: src/LYrcFile.c:471
+#: src/LYrcFile.c:472
 msgid ""
 "If run_all_execution_links is set \"on\" then all local execution links\n"
 "will be executed when they are selected.\n"
@@ -5686,7 +5690,7 @@ msgstr ""
 "           tehdy, jestli¾e soubory, které prohlí¾íte, pocházejí z dùvìryhodných\n"
 "           zdrojù.\n"
 
-#: src/LYrcFile.c:482
+#: src/LYrcFile.c:483
 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"
@@ -5715,7 +5719,7 @@ msgstr ""
 "           tehdy, jestli¾e soubory, které prohlí¾íte, pocházejí z dùvìryhodných\n"
 "           zdrojù.\n"
 
-#: src/LYrcFile.c:500
+#: src/LYrcFile.c:501
 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"
@@ -5733,7 +5737,7 @@ msgstr ""
 "na \"off\" zapne pou¾ívání pøepínacích tlaèítek. Implicitní nastavení mù¾e být\n"
 "potlaèeno pøepínaèem -popup.\n"
 
-#: src/LYrcFile.c:510
+#: src/LYrcFile.c:511
 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"
@@ -5765,7 +5769,7 @@ msgstr ""
 "v konfiguraèním menu (do nìj vstoupíte klávesou 'o'). Pokud je hodnota volby\n"
 "\"show color\" ulo¾ena, je pova¾ována za implicitní nastavení.\n"
 
-#: src/LYrcFile.c:527
+#: src/LYrcFile.c:528
 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"
@@ -5786,7 +5790,7 @@ msgstr ""
 "odkazu. Nastavení na \"off\" zapne 'schovávání' kurzoru. Implicitní nastavení\n"
 "mù¾e být potlaèeno pøepínaèem -show_cursor.\n"
 
-#: src/LYrcFile.c:538
+#: src/LYrcFile.c:539
 msgid ""
 "show_dotfiles specifies that the directory listing should include\n"
 "\"hidden\" (dot) files/directories.  If set \"on\", this will be\n"
@@ -5800,7 +5804,7 @@ msgstr ""
 "a/nebo v userdefs.h a zároveò není vypnuta z pøíkazové øádky. Pokud je\n"
 "zobrazování skrytých souborù vypnuto, nebude je mo¾né z Lynxu ani vytváøet.\n"
 
-#: src/LYrcFile.c:549
+#: src/LYrcFile.c:550
 msgid ""
 "If sub_bookmarks is not turned \"off\", and multiple bookmarks have\n"
 "been defined (see below), then all bookmark operations will first\n"
@@ -5821,7 +5825,7 @@ msgstr ""
 "prompt. Nastavení této volby na \"standard\" zpùsobí zobrazení menu bez\n"
 "ohledu na u¾ivatelský re¾im.\n"
 
-#: src/LYrcFile.c:563
+#: src/LYrcFile.c:564
 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"
@@ -5835,7 +5839,7 @@ msgstr ""
 "èásti obrazovky. Nastavení \"INTERMEDIATE\" vypne tuto nápovìdu a nastavení\n"
 "\"ADVANCED\" zpùsobí vypsání URL aktuálního odkazu v dolní èásti obrazovky.\n"
 
-#: src/LYrcFile.c:572
+#: src/LYrcFile.c:573
 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"
@@ -5845,7 +5849,7 @@ msgstr ""
 "souborù s obrázky místo [INLINE], [LINK] èi [IMAGE].\n"
 "Viz té¾ volbu VERBOSE_IMAGES v kynx.cfg.\n"
 
-#: src/LYrcFile.c:577
+#: src/LYrcFile.c:578
 msgid ""
 "If vi_keys is set to \"on\", then the normal VI movement keys:\n"
 "  j = down    k = up\n"
@@ -5860,13 +5864,13 @@ msgstr ""
 "zapnuty.  Fungují pouze malá písmena.\n"
 "Velké 'H', 'J' a 'K zapínají nápovìdu, zkrácená URL a výpis klávesové mapy.\n"
 
-#: src/LYrcFile.c:585
+#: src/LYrcFile.c:586
 msgid ""
 "The visited_links setting controls how Lynx organizes the information\n"
 "in the Visited Links Page.\n"
 msgstr ""
 
-#: src/LYrcFile.c:803
+#: src/LYrcFile.c:804
 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"
@@ -5884,7 +5888,7 @@ msgstr ""
 "Èísla na hlavní klávesnici se budou chovat jako kurzorové klávesy bez ohledu\n"
 "na stav numlock.\n"
 
-#: src/LYrcFile.c:812
+#: src/LYrcFile.c:813
 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"
@@ -5893,7 +5897,7 @@ msgstr ""
 "odkazy budou viditelnì oèíslovány a èísla budou pou¾ita ke zvolení pøíslu¹ného\n"
 "odkazu.\n"
 
-#: src/LYrcFile.c:816
+#: src/LYrcFile.c:817
 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"
@@ -5910,7 +5914,7 @@ msgstr ""
 "zvolit polo¾ku napsáním jejího èísla i kdy¾ tato není viditelná na obrazovce.\n"
 "Seznamy odkazù a výstup pøíkazu 'list' jsou také èíslovány.\n"
 
-#: src/LYrcFile.c:825
+#: src/LYrcFile.c:826
 msgid ""
 "NOTE: Some fixed format documents may look disfigured when\n"
 "\"LINKS_ARE_NUMBERED\" or \"LINKS_AND_FORM_FIELDS_ARE_NUMBERED\" are\n"
@@ -5920,7 +5924,7 @@ msgstr ""
 "\"LINKS_ARE_NUMBERED\" a \"LINKS_AND_FORM_FIELDS_ARE_NUMBERED\" vypadat jako\n"
 "po¹kozený.\n"
 
-#: src/LYrcFile.c:857
+#: src/LYrcFile.c:858
 msgid ""
 "Lynx User Defaults File\n"
 "\n"
diff --git a/po/da.po b/po/da.po
index c1481526..c51840cf 100644
--- a/po/da.po
+++ b/po/da.po
@@ -5,7 +5,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lynx 2.8.6-dev4\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-10-10 18:51-0400\n"
+"POT-Creation-Date: 2004-10-17 16:29-0400\n"
 "PO-Revision-Date: 2004-06-10 20:35+0200\n"
 "Last-Translator: Morten Bo Johansen <mojo@mbjnet.dk>\n"
 "Language-Team: Danish <dansk@klid.dk>\n"
@@ -2788,7 +2788,7 @@ msgstr "Dokument med 'POST'-indhold ikke fundet i cache. Genindsend?"
 msgid "Loading failed, use a previous copy."
 msgstr "Indlæsning slog fejl, brug en ældre kopi."
 
-#: WWW/Library/Implementation/HTAccess.c:1045 src/GridText.c:8301
+#: WWW/Library/Implementation/HTAccess.c:1045 src/GridText.c:8296
 msgid "Loading incomplete."
 msgstr "Indlæsning ikke fuldført."
 
@@ -2857,7 +2857,7 @@ msgstr "Overført %d bytes (%5d)"
 msgid "connect for data"
 msgstr "dataforbindelse åben"
 
-#: WWW/Library/Implementation/HTFTP.c:3738
+#: WWW/Library/Implementation/HTFTP.c:3741
 msgid "Receiving FTP file."
 msgstr "Modtager FTP-fil."
 
@@ -3015,7 +3015,7 @@ msgstr "Adresse har en ugyldig port"
 msgid "Address length looks invalid"
 msgstr "Adresselængde forekommer ugyldig"
 
-#: WWW/Library/Implementation/HTTCP.c:1551 WWW/Library/Implementation/HTTCP.c:1569
+#: WWW/Library/Implementation/HTTCP.c:1552 WWW/Library/Implementation/HTTCP.c:1570
 #, c-format
 msgid "Unable to locate remote host %s."
 msgstr "Ude af stand til at finde fremmed vært %s."
@@ -3024,38 +3024,38 @@ msgstr "Ude af stand til at finde fremmed vært %s."
 #. * but not HTAlert, because typically there will be other
 #. * alerts from the callers.  - kw
 #.
-#: WWW/Library/Implementation/HTTCP.c:1566 WWW/Library/Implementation/HTTelnet.c:108
+#: WWW/Library/Implementation/HTTCP.c:1567 WWW/Library/Implementation/HTTelnet.c:108
 #, c-format
 msgid "Invalid hostname %s"
 msgstr "Ugyldigt værtsnavn %s"
 
-#: WWW/Library/Implementation/HTTCP.c:1580
+#: WWW/Library/Implementation/HTTCP.c:1581
 #, c-format
 msgid "Making %s connection to %s"
 msgstr "Opretter %s-forbindelse til %s"
 
-#: WWW/Library/Implementation/HTTCP.c:1591
+#: WWW/Library/Implementation/HTTCP.c:1592
 msgid "socket failed."
 msgstr "'socket' fejlede."
 
-#: WWW/Library/Implementation/HTTCP.c:1604
+#: WWW/Library/Implementation/HTTCP.c:1605
 #, c-format
 msgid "socket failed: family %d addr %s port %s."
 msgstr "'socket' fejlede: familie %d adr. %s port %s."
 
-#: WWW/Library/Implementation/HTTCP.c:1628
+#: WWW/Library/Implementation/HTTCP.c:1629
 msgid "Could not make connection non-blocking."
 msgstr "Kunne ikke oprette en ikke-blokerende forbindelse."
 
-#: WWW/Library/Implementation/HTTCP.c:1697
+#: WWW/Library/Implementation/HTTCP.c:1698
 msgid "Connection failed (too many retries)."
 msgstr "Forbindelse opgivet (for mange forsøg)."
 
-#: WWW/Library/Implementation/HTTCP.c:1896
+#: WWW/Library/Implementation/HTTCP.c:1897
 msgid "Could not restore socket to blocking."
 msgstr "Kunne ikke genformå \"socket\" til at blokere."
 
-#: WWW/Library/Implementation/HTTCP.c:1962
+#: WWW/Library/Implementation/HTTCP.c:1963
 msgid "Socket read failed for 180,000 tries."
 msgstr "'Socket'-læsning slog fejl for 180.000 forsøg."
 
@@ -3064,45 +3064,45 @@ msgstr "'Socket'-læsning slog fejl for 180.000 forsøg."
 msgid "Address contains a username: %s"
 msgstr "Adresse indeholder et brugernavn: %s"
 
-#: WWW/Library/Implementation/HTTP.c:497
+#: WWW/Library/Implementation/HTTP.c:531
 msgid "This client does not contain support for HTTPS URLs."
 msgstr "Denne klient kan ikke håndtere HTTPS-adresser."
 
-#: WWW/Library/Implementation/HTTP.c:522
+#: WWW/Library/Implementation/HTTP.c:556
 msgid "Unable to connect to remote host."
 msgstr "Kan ikke forbinde til fremmed vært."
 
-#: WWW/Library/Implementation/HTTP.c:544
+#: WWW/Library/Implementation/HTTP.c:578
 msgid "Retrying connection without TLS."
 msgstr "Forsøger at genetablere forbindelsen uden TLS."
 
-#: WWW/Library/Implementation/HTTP.c:587
+#: WWW/Library/Implementation/HTTP.c:621
 msgid "SSL error:Can't find common name in certificate-Continue?"
 msgstr "SSL-fejl: Kan ikke finde fælles navn i certifikat - fortsæt?"
 
-#: WWW/Library/Implementation/HTTP.c:604
+#: WWW/Library/Implementation/HTTP.c:638
 #, c-format
 msgid "SSL error:host(%s)!=cert(%s)-Continue?"
 msgstr "SSL-fejl:vært(%s)!=cert(%s)-Fortsæt?"
 
-#: WWW/Library/Implementation/HTTP.c:616
+#: WWW/Library/Implementation/HTTP.c:650
 #, c-format
 msgid "Secure %d-bit %s (%s) HTTP connection"
 msgstr "Sikker %d-bit %s (%s) HTTP-forbindelse"
 
-#: WWW/Library/Implementation/HTTP.c:1086
+#: WWW/Library/Implementation/HTTP.c:1120
 msgid "Sending HTTP request."
 msgstr "Sender HTTP-anmodning."
 
-#: WWW/Library/Implementation/HTTP.c:1125
+#: WWW/Library/Implementation/HTTP.c:1159
 msgid "Unexpected network write error; connection aborted."
 msgstr "Uventet skrivningsfejl i netværk; forbindelse afbrudt."
 
-#: WWW/Library/Implementation/HTTP.c:1131
+#: WWW/Library/Implementation/HTTP.c:1165
 msgid "HTTP request sent; waiting for response."
 msgstr "HTTP-anmodning sendt; venter på svar."
 
-#: WWW/Library/Implementation/HTTP.c:1199
+#: WWW/Library/Implementation/HTTP.c:1233
 msgid "Unexpected network read error; connection aborted."
 msgstr "Uventet læsningsfejl i netværk; forbindelse afbrudt"
 
@@ -3115,7 +3115,7 @@ msgstr "Uventet læsningsfejl i netværk; forbindelse afbrudt"
 #. * 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:1393
+#: WWW/Library/Implementation/HTTP.c:1427
 msgid "Got unexpected Informational Status."
 msgstr "Modtog uventet \"Informational Status\"."
 
@@ -3125,7 +3125,7 @@ msgstr "Modtog uventet \"Informational Status\"."
 #. * content.  We'll instruct the user to do that, and
 #. * restore the current document.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1427
+#: WWW/Library/Implementation/HTTP.c:1461
 msgid "Request fulfilled.  Reset Content."
 msgstr "Anmodning imødekommet. Nulstil indhold."
 
@@ -3135,27 +3135,27 @@ msgstr "Anmodning imødekommet. Nulstil indhold."
 #. * 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:1544
+#: WWW/Library/Implementation/HTTP.c:1578
 msgid "Got unexpected 304 Not Modified status."
 msgstr "Modtog uventet 304 \"Not Modified status\"."
 
-#: WWW/Library/Implementation/HTTP.c:1607
+#: WWW/Library/Implementation/HTTP.c:1641
 msgid "Redirection of POST content requires user approval."
 msgstr "Omdirigering af 'POST'-indhold kræver brugers godkendelse."
 
-#: WWW/Library/Implementation/HTTP.c:1622
+#: WWW/Library/Implementation/HTTP.c:1656
 msgid "Have POST content.  Treating Permanent Redirection as Temporary.\n"
 msgstr "Har 'POST'-indhold. Behandler permanent omdirigering som midlertidig.\n"
 
-#: WWW/Library/Implementation/HTTP.c:1664
+#: WWW/Library/Implementation/HTTP.c:1698
 msgid "Retrying with access authorization information."
 msgstr "Prøver igen med oplysning om adgangstilladelse."
 
-#: WWW/Library/Implementation/HTTP.c:1676
+#: WWW/Library/Implementation/HTTP.c:1710
 msgid "Show the 401 message body?"
 msgstr "Vis indhold af 401-meddelelse?"
 
-#: WWW/Library/Implementation/HTTP.c:1719
+#: WWW/Library/Implementation/HTTP.c:1753
 msgid "Show the 407 message body?"
 msgstr "Vis indhold af 407-meddelelse?"
 
@@ -3163,7 +3163,7 @@ msgstr "Vis indhold af 407-meddelelse?"
 #. * Bad or unknown server_status number.  Take a chance and hope
 #. * there is something to display.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1819
+#: WWW/Library/Implementation/HTTP.c:1853
 msgid "Unknown status reply from server!"
 msgstr "Ukendt statussvar fra server!"
 
@@ -3427,30 +3427,30 @@ msgstr "nøglegen-felt"
 msgid "unknown form field"
 msgstr "ukendt formularfelt"
 
-#: src/GridText.c:10020
+#: src/GridText.c:10015
 msgid "Can't open file for uploading"
 msgstr "Kan ikke åbne fil til uploadning"
 
-#: src/GridText.c:11170
+#: src/GridText.c:11165
 #, c-format
 msgid "Submitting %s"
 msgstr "Indsender %s"
 
 #. ugliness has happened; inform user and do the best we can
-#: src/GridText.c:12318
+#: src/GridText.c:12313
 msgid "Hang Detect: TextAnchor struct corrupted - suggest aborting!"
 msgstr "Program hænger: TextAnchor-struktur ødelagt - det er bedst at afbryde!"
 
 #. don't show previous state
-#: src/GridText.c:12523
+#: src/GridText.c:12518
 msgid "Wrap lines to fit displayed area?"
 msgstr "Ombryd linjer så de passer til det viste område?"
 
-#: src/GridText.c:12575
+#: src/GridText.c:12570
 msgid "Very long lines have been wrapped!"
 msgstr "Meget lange linjer er blevet ombrudt!"
 
-#: src/GridText.c:13016
+#: src/GridText.c:13011
 msgid "Very long lines have been truncated!"
 msgstr "Meget lange linjer er blevet afkortet!"
 
@@ -4673,116 +4673,120 @@ msgstr "Godtag alle MIME-typer"
 msgid "gzip"
 msgstr "gzip"
 
-#: src/LYOptions.c:2388
+#: src/LYOptions.c:2386
+msgid "deflate"
+msgstr ""
+
+#: src/LYOptions.c:2389
 msgid "compress"
 msgstr "compress"
 
-#: src/LYOptions.c:2391
+#: src/LYOptions.c:2392
 msgid "bzip2"
 msgstr "bzip2"
 
-#: src/LYOptions.c:2393
+#: src/LYOptions.c:2394
 msgid "All"
 msgstr "Alle"
 
-#: src/LYOptions.c:2658 src/LYOptions.c:2682
+#: src/LYOptions.c:2659 src/LYOptions.c:2683
 #, c-format
 msgid "Use %s to invoke the Options menu!"
 msgstr "Brug %s for at aktivere menu over valgmuligheder!"
 
-#: src/LYOptions.c:3421
+#: src/LYOptions.c:3422
 msgid "(options marked with (!) will not be saved)"
 msgstr "(indstillinger markeret med (!) vil ikke blive gemt)"
 
-#: src/LYOptions.c:3429
+#: src/LYOptions.c:3430
 msgid "General Preferences"
 msgstr "Generelle indstillinger"
 
 #. ***************************************************************
 #. User Mode: SELECT
-#: src/LYOptions.c:3433
+#: src/LYOptions.c:3434
 msgid "User mode"
 msgstr "Brugertilstand"
 
 #. Editor: INPUT
-#: src/LYOptions.c:3439
+#: src/LYOptions.c:3440
 msgid "Editor"
 msgstr "Editor"
 
 #. Search Type: SELECT
-#: src/LYOptions.c:3444
+#: src/LYOptions.c:3445
 msgid "Type of Search"
 msgstr "Søgningstype"
 
-#: src/LYOptions.c:3449
+#: src/LYOptions.c:3450
 msgid "Security and Privacy"
 msgstr "Sikkerhed og personbeskyttelse"
 
 #. ***************************************************************
 #. Cookies: SELECT
-#: src/LYOptions.c:3453
+#: src/LYOptions.c:3454
 msgid "Cookies"
 msgstr "Cookier"
 
 #. Cookie Prompting: SELECT
-#: src/LYOptions.c:3467
+#: src/LYOptions.c:3468
 msgid "Invalid-Cookie Prompting"
 msgstr "Prompt ved ugyldig cookie"
 
 #. SSL Prompting: SELECT
-#: src/LYOptions.c:3474
+#: src/LYOptions.c:3475
 msgid "SSL Prompting"
 msgstr "Prompt ved SSL"
 
-#: src/LYOptions.c:3480
+#: src/LYOptions.c:3481
 msgid "Keyboard Input"
 msgstr "Tastatur-inddata"
 
 #. ***************************************************************
 #. Keypad Mode: SELECT
-#: src/LYOptions.c:3484
+#: src/LYOptions.c:3485
 msgid "Keypad mode"
 msgstr "Numerisk tastaturtilstand"
 
 #. Emacs keys: ON/OFF
-#: src/LYOptions.c:3490
+#: src/LYOptions.c:3491
 msgid "Emacs keys"
 msgstr "Emacs-taster"
 
 #. VI Keys: ON/OFF
-#: src/LYOptions.c:3496
+#: src/LYOptions.c:3497
 msgid "VI keys"
 msgstr "VI-taster"
 
 #. Line edit style: SELECT
 #. well, at least 2 line edit styles available
-#: src/LYOptions.c:3503
+#: src/LYOptions.c:3504
 msgid "Line edit style"
 msgstr "Linjeredigeringsstil"
 
 #. Keyboard layout: SELECT
-#: src/LYOptions.c:3515
+#: src/LYOptions.c:3516
 msgid "Keyboard layout"
 msgstr "Tastaturudlægning"
 
 #.
 #. * Display and Character Set
 #.
-#: src/LYOptions.c:3529
+#: src/LYOptions.c:3530
 msgid "Display and Character Set"
 msgstr "Skærm og tegnsæt"
 
 #. Use locale-based character set: ON/OFF
-#: src/LYOptions.c:3534
+#: src/LYOptions.c:3535
 msgid "Use locale-based character set"
 msgstr "Brug tegnsæt baseret på lokaliseringsindstillinger"
 
 #. Display Character Set: SELECT
-#: src/LYOptions.c:3543
+#: src/LYOptions.c:3544
 msgid "Display character set"
 msgstr "Skærmtegnsæt"
 
-#: src/LYOptions.c:3574
+#: src/LYOptions.c:3575
 msgid "Assumed document character set"
 msgstr "Formodet dokumenttegnsæt"
 
@@ -4791,165 +4795,165 @@ msgstr "Formodet dokumenttegnsæt"
 #. * we split the header to make it more readable:
 #. * "CJK mode" for CJK display charsets, and "Raw 8-bit" for others.
 #.
-#: src/LYOptions.c:3594
+#: src/LYOptions.c:3595
 msgid "CJK mode"
 msgstr "CJK-tilstand"
 
-#: src/LYOptions.c:3596
+#: src/LYOptions.c:3597
 msgid "Raw 8-bit"
 msgstr "Rå 8-bit"
 
 #. X Display: INPUT
-#: src/LYOptions.c:3604
+#: src/LYOptions.c:3605
 msgid "X Display"
 msgstr "X-skærm"
 
 #.
 #. * Document Appearance
 #.
-#: src/LYOptions.c:3610
+#: src/LYOptions.c:3611
 msgid "Document Appearance"
 msgstr "Udseende af dokument"
 
-#: src/LYOptions.c:3616
+#: src/LYOptions.c:3617
 msgid "Show color"
 msgstr "Vis farver"
 
 #. Show cursor: ON/OFF
-#: src/LYOptions.c:3640
+#: src/LYOptions.c:3641
 msgid "Show cursor"
 msgstr "Vis markør"
 
 #. Underline links: ON/OFF
-#: src/LYOptions.c:3646
+#: src/LYOptions.c:3647
 msgid "Underline links"
 msgstr "Understreg links"
 
 #. Show scrollbar: ON/OFF
-#: src/LYOptions.c:3653
+#: src/LYOptions.c:3654
 msgid "Show scrollbar"
 msgstr "Vis rullebjælke"
 
 #. Select Popups: ON/OFF
-#: src/LYOptions.c:3660
+#: src/LYOptions.c:3661
 msgid "Popups for select fields"
 msgstr "Pop op-vinduer for valgte felter"
 
 #. HTML error recovery: SELECT
-#: src/LYOptions.c:3666
+#: src/LYOptions.c:3667
 msgid "HTML error recovery"
 msgstr "HTML-fejlgenopretning"
 
 #. Show Images: SELECT
-#: src/LYOptions.c:3672
+#: src/LYOptions.c:3673
 msgid "Show images"
 msgstr "Vis billeder"
 
 #. Verbose Images: ON/OFF
-#: src/LYOptions.c:3686
+#: src/LYOptions.c:3687
 msgid "Verbose images"
 msgstr "Billedtekst"
 
-#: src/LYOptions.c:3695
+#: src/LYOptions.c:3696
 msgid "Headers Transferred to Remote Servers"
 msgstr "Information til fremmede servere"
 
 #. ***************************************************************
 #. Mail Address: INPUT
-#: src/LYOptions.c:3699
+#: src/LYOptions.c:3700
 msgid "Personal mail address"
 msgstr "Personlig e-post-adresse"
 
 # media type refererer til content-type headeren, eks: image/xyz
 #. Preferred media type: SELECT
-#: src/LYOptions.c:3704
+#: src/LYOptions.c:3705
 msgid "Preferred media type"
 msgstr "Foretrukket medietype"
 
 #. Preferred encoding: SELECT
-#: src/LYOptions.c:3710
+#: src/LYOptions.c:3711
 msgid "Preferred encoding"
 msgstr "Foretrukken indkodning"
 
 #. Preferred Document Character Set: INPUT
-#: src/LYOptions.c:3716
+#: src/LYOptions.c:3717
 msgid "Preferred document character set"
 msgstr "Foretrukket dokumenttegnsæt"
 
 #. Preferred Document Language: INPUT
-#: src/LYOptions.c:3721
+#: src/LYOptions.c:3722
 msgid "Preferred document language"
 msgstr "Foretrukket dokumentsprog"
 
-#: src/LYOptions.c:3727
+#: src/LYOptions.c:3728
 msgid "User-Agent header"
 msgstr "'User-Agent'-linje"
 
 #.
 #. * Listing and Accessing Files
 #.
-#: src/LYOptions.c:3735
+#: src/LYOptions.c:3736
 msgid "Listing and Accessing Files"
 msgstr "Filoversigt og Filadgang"
 
 #. ***************************************************************
 #. FTP sort: SELECT
-#: src/LYOptions.c:3739
+#: src/LYOptions.c:3740
 msgid "FTP sort criteria"
 msgstr "FTP sorteringskriterie"
 
 #. Local Directory Sort: SELECT
-#: src/LYOptions.c:3746
+#: src/LYOptions.c:3747
 msgid "Local directory sort criteria"
 msgstr "Sortering af lokale filkataloger"
 
 #. Local Directory Order: SELECT
-#: src/LYOptions.c:3752
+#: src/LYOptions.c:3753
 msgid "Local directory sort order"
 msgstr "Sortering af lokale filkataloger"
 
-#: src/LYOptions.c:3761
+#: src/LYOptions.c:3762
 msgid "Show dot files"
 msgstr "Vis punktumfiler"
 
-#: src/LYOptions.c:3769
+#: src/LYOptions.c:3770
 msgid "Execution links"
 msgstr "Links til programafvikling"
 
 #. Show transfer rate: SELECT
-#: src/LYOptions.c:3789
+#: src/LYOptions.c:3790
 msgid "Show transfer rate"
 msgstr "Vis overførselshastighed"
 
 #.
 #. * Special Files and Screens
 #.
-#: src/LYOptions.c:3809
+#: src/LYOptions.c:3810
 msgid "Special Files and Screens"
 msgstr "Særlige filer og skærmbilleder"
 
-#: src/LYOptions.c:3814
+#: src/LYOptions.c:3815
 msgid "Multi-bookmarks"
 msgstr "Multi-bogmærker"
 
-#: src/LYOptions.c:3822
+#: src/LYOptions.c:3823
 msgid "Review/edit Bookmarks files"
 msgstr "Gennemse/ret bogmærkefiler"
 
-#: src/LYOptions.c:3824
+#: src/LYOptions.c:3825
 msgid "Goto multi-bookmark menu"
 msgstr "Gå til multi-bogmærkemenu"
 
-#: src/LYOptions.c:3826
+#: src/LYOptions.c:3827
 msgid "Bookmarks file"
 msgstr "Bogmærkefil"
 
 #. Visited Pages: SELECT
-#: src/LYOptions.c:3832
+#: src/LYOptions.c:3833
 msgid "Visited Pages"
 msgstr "Besøgte sider"
 
-#: src/LYOptions.c:3837
+#: src/LYOptions.c:3838
 msgid "View the file "
 msgstr "Vis filen "
 
@@ -5069,38 +5073,38 @@ msgstr "Lynx: Kan ikke starte, CERN-regelfil %s er ikke tilgængelig\n"
 msgid "(no name)"
 msgstr "(intet navn)"
 
-#: src/LYReadCFG.c:1772
+#: src/LYReadCFG.c:1773
 #, c-format
 msgid "More than %d nested lynx.cfg includes -- perhaps there is a loop?!?\n"
 msgstr "Flere end %d indlejrede lynx.cfg-inkluderinger - måske en sløjfe!?\n"
 
-#: src/LYReadCFG.c:1774
+#: src/LYReadCFG.c:1775
 #, c-format
 msgid "Last attempted include was '%s',\n"
 msgstr "Sidst forsøgte inkludering var '%s',\n"
 
-#: src/LYReadCFG.c:1775
+#: src/LYReadCFG.c:1776
 #, c-format
 msgid "included from '%s'.\n"
 msgstr "inkluderet fra '%s'.\n"
 
-#: src/LYReadCFG.c:2181 src/LYReadCFG.c:2194 src/LYReadCFG.c:2252
+#: src/LYReadCFG.c:2183 src/LYReadCFG.c:2196 src/LYReadCFG.c:2254
 msgid "The following is read from your lynx.cfg file."
 msgstr "Følgende er læst fra din lynx.cfg-fil."
 
-#: src/LYReadCFG.c:2182 src/LYReadCFG.c:2195
+#: src/LYReadCFG.c:2184 src/LYReadCFG.c:2197
 msgid "Please read the distribution"
 msgstr "Læs venligst distributionen"
 
-#: src/LYReadCFG.c:2188 src/LYReadCFG.c:2198
+#: src/LYReadCFG.c:2190 src/LYReadCFG.c:2200
 msgid "for more comments."
 msgstr "for flere kommentarer."
 
-#: src/LYReadCFG.c:2234
+#: src/LYReadCFG.c:2236
 msgid "RELOAD THE CHANGES"
 msgstr "GENINDLÆS ÆNDRINGERNE"
 
-#: src/LYReadCFG.c:2242
+#: src/LYReadCFG.c:2244
 msgid "Your primary configuration"
 msgstr "Din primære opsætning"
 
@@ -5403,7 +5407,7 @@ msgstr "Kan ikke finde HOME-katalog"
 msgid "Normally disabled.  See ENABLE_LYNXRC in lynx.cfg\n"
 msgstr "Normalt slået fra. Se ENABLE_LYNXRC i lynx.cfg\n"
 
-#: src/LYrcFile.c:317
+#: src/LYrcFile.c:318
 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"
@@ -5415,7 +5419,7 @@ msgstr ""
 "blive ledsaget af et spørgsmål, om den skal accepteres eller ej. Sæt\n"
 "\"accept_all_cookies\" til \"TRUE\" for at acceptere alle cookier.\n"
 
-#: src/LYrcFile.c:324
+#: src/LYrcFile.c:325
 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"
@@ -5425,7 +5429,7 @@ msgstr ""
 "som brugeren kan indsætte de links i, som han ønsker let adgang til\n"
 "på et senere tidspunkt.\n"
 
-#: src/LYrcFile.c:329
+#: src/LYrcFile.c:330
 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"
@@ -5435,7 +5439,7 @@ msgstr ""
 "mellem store og små bogstaver ved søgninger afgivet med 's' og '/'\n"
 "tasterne. Det normale er \"off\".\n"
 
-#: src/LYrcFile.c:334
+#: src/LYrcFile.c:335
 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"
@@ -5449,7 +5453,7 @@ msgstr ""
 "tegntilnærmelser.\n"
 "Aktuelt gyldige tegnsæt er:\n"
 
-#: src/LYrcFile.c:341
+#: src/LYrcFile.c:342
 msgid ""
 "cookie_accept_domains and cookie_reject_domains are comma-delimited\n"
 "lists of domains from which Lynx should automatically accept or reject\n"
@@ -5463,7 +5467,7 @@ msgstr ""
 "afvisningen have forrang. Parameteren \"accept_all_cookies\" vil\n"
 "tilsidesætte begge disse indstillinger.\n"
 
-#: src/LYrcFile.c:349
+#: src/LYrcFile.c:350
 msgid ""
 "cookie_file specifies the file from which to read persistent cookies.\n"
 "The default is ~/.lynx_cookies.\n"
@@ -5471,7 +5475,7 @@ msgstr ""
 "\"cookie_file\" angiver den fil som vedholdende cookier skal læses fra.\n"
 "Standarden er ~/.lynx_cookies.\n"
 
-#: src/LYrcFile.c:354
+#: src/LYrcFile.c:355
 msgid ""
 "cookie_loose_invalid_domains, cookie_strict_invalid_domains, and\n"
 "cookie_query_invalid_domains are comma-delimited lists of which domains\n"
@@ -5489,7 +5493,7 @@ msgstr ""
 "cookier med en ugyldig sti eller domæneattribut.  Alle domæner vil som\n"
 "standard spørge brugeren om en ugyldig sti eller domæne.\n"
 
-#: src/LYrcFile.c:368
+#: src/LYrcFile.c:369
 msgid ""
 "dir_list_order specifies the directory list order under DIRED_SUPPORT\n"
 "(if implemented).  The default is \"ORDER_BY_NAME\"\n"
@@ -5497,7 +5501,7 @@ msgstr ""
 "dir_list_order angiver katalogsortering under DIRED_SUPPORT\n"
 "(hvis implementeret).  Standarden er \"ORDER_BY_NAME\"\n"
 
-#: src/LYrcFile.c:373
+#: src/LYrcFile.c:374
 msgid ""
 "dir_list_styles specifies the directory list style under DIRED_SUPPORT\n"
 "(if implemented).  The default is \"MIXED_STYLE\", which sorts both\n"
@@ -5510,7 +5514,7 @@ msgstr ""
 "oplister filer først og \"DIRECTORIES_FIRST\" oplister filkataloger\n"
 "først.\n"
 
-#: src/LYrcFile.c:381
+#: src/LYrcFile.c:382
 msgid ""
 "If emacs_keys is to \"on\" then the normal EMACS movement keys:\n"
 "  ^N = down    ^P = up\n"
@@ -5522,7 +5526,7 @@ msgstr ""
 "  ^B = venstre    ^F = højre\n"
 "være slået til.\n"
 
-#: src/LYrcFile.c:387
+#: src/LYrcFile.c:388
 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"
@@ -5535,7 +5539,7 @@ msgstr ""
 "kommandolinjen, og den indbyggede linje-editor vil blive brugt ved\n"
 "afsendelse af post.\n"
 
-#: src/LYrcFile.c:393
+#: src/LYrcFile.c:394
 msgid ""
 "The file_sorting_method specifies which value to sort on when viewing\n"
 "file lists such as FTP directories.  The options are:\n"
@@ -5551,7 +5555,7 @@ msgstr ""
 "   BY_SIZE     -- sorterer efter filstørrelse\n"
 "   BY_DATE     -- sorterer efter fildato\n"
 
-#: src/LYrcFile.c:411
+#: src/LYrcFile.c:412
 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"
@@ -5578,7 +5582,7 @@ msgstr ""
 "\n"
 "Aktuelle tilstande ved linjeredigering er:\n"
 
-#: src/LYrcFile.c:429
+#: src/LYrcFile.c:430
 msgid ""
 "The following allow you to define sub-bookmark files and descriptions.\n"
 "The format is multi_bookmark<capital_letter>=<filename>,<description>\n"
@@ -5591,7 +5595,7 @@ msgstr ""
 "tilladt. Vi begynder med \"multi_bookmarkB\", idet \"A\" er standard\n"
 "(se ovenfor).\n"
 
-#: src/LYrcFile.c:435
+#: src/LYrcFile.c:436
 msgid ""
 "personal_mail_address specifies your personal mail address.  The\n"
 "address will be sent during HTTP file transfers for authorization and\n"
@@ -5609,7 +5613,7 @@ msgstr ""
 "Du kan også lade dette felt stå tomt, men så vil din e-post-adresse ikke\n"
 "blive medtaget i dine kommentarer sendt pr. post.\n"
 
-#: src/LYrcFile.c:444
+#: src/LYrcFile.c:445
 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"
@@ -5637,7 +5641,7 @@ msgstr ""
 "en fejlmeddelelse, omend afgivelse af et ikke-acceptabelt svar også er\n"
 "tilladt.\n"
 
-#: src/LYrcFile.c:460
+#: src/LYrcFile.c:461
 msgid ""
 "preferred_language specifies the language in MIME notation (e.g., en,\n"
 "fr, may be a comma-separated list in decreasing preference)\n"
@@ -5651,7 +5655,7 @@ msgstr ""
 "HTTP-servere. Hvis en fil på dette sprog er tilgængelig, vil serveren\n"
 "sende den. I modsat fald vil den sende filen på sit standardsprog.\n"
 
-#: src/LYrcFile.c:471
+#: src/LYrcFile.c:472
 msgid ""
 "If run_all_execution_links is set \"on\" then all local execution links\n"
 "will be executed when they are selected.\n"
@@ -5674,7 +5678,7 @@ msgstr ""
 "           sættes til \"on\", hvis du betragter information du kan\n"
 "           stole på.\n"
 
-#: src/LYrcFile.c:482
+#: src/LYrcFile.c:483
 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"
@@ -5702,7 +5706,7 @@ msgstr ""
 "           Denne indstilling skal kun sættes til \"on\", hvis du har fuld\n"
 "           tillid til den kilde hvorfra informationen stammer.\n"
 
-#: src/LYrcFile.c:500
+#: src/LYrcFile.c:501
 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"
@@ -5721,7 +5725,7 @@ msgstr ""
 "standard, medens en værdi af \"off\" vil sætte brugen af radiobokse. En\n"
 "standard kan tilsidesættes med kommandolinje-parameteret \"-popup\".\n"
 
-#: src/LYrcFile.c:510
+#: src/LYrcFile.c:511
 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"
@@ -5755,7 +5759,7 @@ msgstr ""
 "indstillingerne er gemt, vil farveindstilingerne blive opfattet som\n"
 "\"standard\".\n"
 
-#: src/LYrcFile.c:527
+#: src/LYrcFile.c:528
 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"
@@ -5778,7 +5782,7 @@ msgstr ""
 "en værdi af \"off\" vil skjule markøren.  Standarden kan tilsidesættes\n"
 "med kommandolinje-parameteret \"-show-cursur\".\n"
 
-#: src/LYrcFile.c:538
+#: src/LYrcFile.c:539
 msgid ""
 "show_dotfiles specifies that the directory listing should include\n"
 "\"hidden\" (dot) files/directories.  If set \"on\", this will be\n"
@@ -5793,7 +5797,7 @@ msgstr ""
 "slået fra (off), vil mulighed for oprettelse af sådanne via Lynx\n"
 "ligeledes være slået fra.\n"
 
-#: src/LYrcFile.c:549
+#: src/LYrcFile.c:550
 msgid ""
 "If sub_bookmarks is not turned \"off\", and multiple bookmarks have\n"
 "been defined (see below), then all bookmark operations will first\n"
@@ -5816,7 +5820,7 @@ msgstr ""
 "valgmulighed er sat til \"standard\", vil menuen fremkomme, uanset\n"
 "brugertilstand.\n"
 
-#: src/LYrcFile.c:563
+#: src/LYrcFile.c:564
 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"
@@ -5832,7 +5836,7 @@ msgstr ""
 "ekstra oplysninger fra, Brug \"ADVANCED\" for at se URL'en på det\n"
 "aktuelt valgte link i bunden af skærmen.\n"
 
-#: src/LYrcFile.c:572
+#: src/LYrcFile.c:573
 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"
@@ -5842,7 +5846,7 @@ msgstr ""
 "et billedlinks kildefil i stedet for [INLINE], [LINK] eller [IMAGE]\n"
 "Se også \"VERBOSE_IMAGES\" i lynx.cfg\n"
 
-#: src/LYrcFile.c:577
+#: src/LYrcFile.c:578
 msgid ""
 "If vi_keys is set to \"on\", then the normal VI movement keys:\n"
 "  j = down    k = up\n"
@@ -5858,7 +5862,7 @@ msgstr ""
 "Stort 'H', 'J' og 'K' vil stadig aktivere henholdsvis hjælp,\n"
 "hop-genveje og oversigt over tastebindinger.\n"
 
-#: src/LYrcFile.c:585
+#: src/LYrcFile.c:586
 msgid ""
 "The visited_links setting controls how Lynx organizes the information\n"
 "in the Visited Links Page.\n"
@@ -5866,7 +5870,7 @@ msgstr ""
 "\"visited_links\" styrer hvorledes Lynx organiserer oplysningerne i siden\n"
 "over besøgte links.\n"
 
-#: src/LYrcFile.c:803
+#: src/LYrcFile.c:804
 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"
@@ -5884,7 +5888,7 @@ msgstr ""
 "og de tilsvarende numeriske taster på tastaturet vil virke som piletaster,\n"
 "uanset om numlock er slået til eller ej\n"
 
-#: src/LYrcFile.c:812
+#: src/LYrcFile.c:813
 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"
@@ -5892,7 +5896,7 @@ msgstr ""
 "Hvis \"keypad_mode\" er sat til \"LINKS_ARE_NUMBERED\", vil hvert link\n"
 "være ledsaget af et nummer og disse bruges til at vælge linkene.\n"
 
-#: src/LYrcFile.c:816
+#: src/LYrcFile.c:817
 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"
@@ -5912,7 +5916,7 @@ msgstr ""
 "over links og uddata fra \"list\"-kommandoen nummererer også\n"
 "formularindtastninger.\n"
 
-#: src/LYrcFile.c:825
+#: src/LYrcFile.c:826
 msgid ""
 "NOTE: Some fixed format documents may look disfigured when\n"
 "\"LINKS_ARE_NUMBERED\" or \"LINKS_AND_FORM_FIELDS_ARE_NUMBERED\" are\n"
@@ -5922,7 +5926,7 @@ msgstr ""
 "\"LINKS_ARE_NUMBERED\" eller \"LINKS_AND_FORM_FIELDS_ARE_NUMBERED\" er\n"
 "slået til.\n"
 
-#: src/LYrcFile.c:857
+#: src/LYrcFile.c:858
 msgid ""
 "Lynx User Defaults File\n"
 "\n"
diff --git a/po/de.po b/po/de.po
index 70dd93df..2de92dec 100644
--- a/po/de.po
+++ b/po/de.po
@@ -14,16 +14,16 @@
 # Maintainer since July 1999:
 # Erwin Dieterich <bamse@gmx.de>, 1999.
 #
-# Minor additions since March 2002:
-# Karl Eichwalder <ke@suse.de>, 2002.
+# Additions since March 2002:
+# Karl Eichwalder <ke@suse.de>, 2002-2004.
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: lynx 2.8.5-rel1\n"
+"Project-Id-Version: lynx 2.8.6-dev6\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-10-10 18:51-0400\n"
-"PO-Revision-Date: 2004-02-09 17:20+0100\n"
-"Last-Translator: Karl Eichwalder <ke@suse.de>\n"
+"POT-Creation-Date: 2004-10-17 16:29-0400\n"
+"PO-Revision-Date: 2004-10-14 09:10+0200\n"
+"Last-Translator: Karl Eichwalder <ke@gnu.franken.de>\n"
 "Language-Team: German <de@li.org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -173,7 +173,7 @@ msgstr "(Mailto-Formfeld) nicht aktiv. Zum Ändern <return> dücken."
 #. #define FORM_LINK_PASSWORD_MESSAGE_INA
 #: LYMessages.c:73
 msgid "(Password entry field) Inactive.  Press <return> to activate."
-msgstr "(Passwort-Eingabefeld) nicht aktiv. Zum Aktivieren <return> dücken."
+msgstr "(Paßwort-Eingabefeld) nicht aktiv. Zum Aktivieren <return> dücken."
 
 #. #define FORM_LINK_FILE_UNM_MSG
 #: LYMessages.c:76
@@ -240,12 +240,12 @@ msgstr "(Mailto-Formfeld) Schicken nicht möglich, da Mail nicht erlaubt ist."
 #. #define FORM_LINK_PASSWORD_MESSAGE
 #: LYMessages.c:100
 msgid "(Password entry field) Enter text.  Use UP or DOWN arrows or tab to move off."
-msgstr "(Passwort-Eingabefeld) Text Eingeben. Auf- oder Ab-Pfeiltasten: Verlassen"
+msgstr "(Paßwort-Eingabefeld) Text Eingeben. Auf- oder Ab-Pfeiltasten: Verlassen"
 
 #. #define FORM_LINK_PASSWORD_UNM_MSG
 #: LYMessages.c:102
 msgid "UNMODIFIABLE form password.  Use UP or DOWN arrows or tab to move off."
-msgstr "NICHTVERÄNDERBARES Form-Passwort. Rauf- und Runter-Pfeiltasten zum Verlassen."
+msgstr "NICHTVERÄNDERBARES Form-Paßwort. Rauf- und Runter-Pfeiltasten zum Verlassen."
 
 #. #define FORM_LINK_CHECKBOX_MESSAGE
 #: LYMessages.c:104
@@ -1382,15 +1382,15 @@ msgstr "Username: "
 
 #: LYMessages.c:460
 msgid "Password: "
-msgstr "Passwort: "
+msgstr "Paßwort: "
 
 #: LYMessages.c:461
 msgid "lynx: Username and Password required!!!"
-msgstr "lynx: Username und Password notwendig!!!"
+msgstr "lynx: Username und Paßwort notwendig!!!"
 
 #: LYMessages.c:462
 msgid "lynx: Password required!!!"
-msgstr "lynx: Password notwendig!!!"
+msgstr "lynx: Paßwort notwendig!!!"
 
 #: LYMessages.c:463
 msgid "Clear all authorization info for this session?"
@@ -1402,7 +1402,7 @@ msgstr "Authorisationsdaten gelöscht."
 
 #: LYMessages.c:465
 msgid "Authorization failed.  Retry?"
-msgstr "Noch nicht authorisiert. Noch mal versuchen?"
+msgstr "Noch nicht authorisiert. Erneut versuchen?"
 
 #: LYMessages.c:466
 msgid "cgi support has been disabled."
@@ -1429,7 +1429,7 @@ msgstr "Verbindung kann nicht hergestellt werden"
 #. #define MALFORMED_EXEC_REQUEST
 #: LYMessages.c:473
 msgid "Executable link rejected due to malformed request."
-msgstr "Fehlerhafte Anforderung, Ausführbarer Link wird zurückgewiesen."
+msgstr "Fehlerhafte Anforderung: Ausführbarer Link wird zurückgewiesen."
 
 #. #define BADCHAR_IN_EXEC_LINK
 #: LYMessages.c:475
@@ -2208,7 +2208,7 @@ msgstr ""
 #: LYMessages.c:695
 #, c-format
 msgid "%s cookie: %.*s=%.*s  Allow? (Y/N/Always/neVer)"
-msgstr "Keks von %s: %.*s=%.*s ?diesen(Y/N)/immer(Akz./Verw.)"
+msgstr "Keks von %s: %.*s=%.*s erlauben? (J/N/immer Akz./Verw.)"
 
 #. #define INVALID_COOKIE_DOMAIN_CONFIRMATION
 #: LYMessages.c:697
@@ -2822,7 +2822,7 @@ msgstr "Dokument mit POST-Daten nicht im Seitencache gefunden. POST wiederholen?
 msgid "Loading failed, use a previous copy."
 msgstr "Laden fehlgeschalten, die vorherige Kopie wird verwendet."
 
-#: WWW/Library/Implementation/HTAccess.c:1045 src/GridText.c:8301
+#: WWW/Library/Implementation/HTAccess.c:1045 src/GridText.c:8296
 msgid "Loading incomplete."
 msgstr "Unvollständig geladen."
 
@@ -2893,7 +2893,7 @@ msgstr "%d bytes übertragen (%5d)"
 msgid "connect for data"
 msgstr "connect for data"
 
-#: WWW/Library/Implementation/HTFTP.c:3738
+#: WWW/Library/Implementation/HTFTP.c:3741
 msgid "Receiving FTP file."
 msgstr "FTP-Datei wird empfangen."
 
@@ -3052,7 +3052,7 @@ msgstr "Adresslänge hat einen ungültigen port"
 msgid "Address length looks invalid"
 msgstr "Adresslänge scheint ungültig zu sein"
 
-#: WWW/Library/Implementation/HTTCP.c:1551 WWW/Library/Implementation/HTTCP.c:1569
+#: WWW/Library/Implementation/HTTCP.c:1552 WWW/Library/Implementation/HTTCP.c:1570
 #, c-format
 msgid "Unable to locate remote host %s."
 msgstr "Remote Host %s nicht gefunden."
@@ -3061,38 +3061,38 @@ msgstr "Remote Host %s nicht gefunden."
 #. * but not HTAlert, because typically there will be other
 #. * alerts from the callers.  - kw
 #.
-#: WWW/Library/Implementation/HTTCP.c:1566 WWW/Library/Implementation/HTTelnet.c:108
+#: WWW/Library/Implementation/HTTCP.c:1567 WWW/Library/Implementation/HTTelnet.c:108
 #, c-format
 msgid "Invalid hostname %s"
 msgstr "Hostname ist ungültig: %s"
 
-#: WWW/Library/Implementation/HTTCP.c:1580
+#: WWW/Library/Implementation/HTTCP.c:1581
 #, c-format
 msgid "Making %s connection to %s"
 msgstr "%s-Verbindung zu %s wird aufgebaut."
 
-#: WWW/Library/Implementation/HTTCP.c:1591
+#: WWW/Library/Implementation/HTTCP.c:1592
 msgid "socket failed."
 msgstr "Socket-Fehler."
 
-#: WWW/Library/Implementation/HTTCP.c:1604
+#: WWW/Library/Implementation/HTTCP.c:1605
 #, c-format
 msgid "socket failed: family %d addr %s port %s."
 msgstr "Socketfehler: family %d addr %s port %s."
 
-#: WWW/Library/Implementation/HTTCP.c:1628
+#: WWW/Library/Implementation/HTTCP.c:1629
 msgid "Could not make connection non-blocking."
 msgstr "Veerbindung konnte nicht non-blocking gemacht werden."
 
-#: WWW/Library/Implementation/HTTCP.c:1697
+#: WWW/Library/Implementation/HTTCP.c:1698
 msgid "Connection failed (too many retries)."
 msgstr "Verbindungsfehler (zu viele Versuche)."
 
-#: WWW/Library/Implementation/HTTCP.c:1896
+#: WWW/Library/Implementation/HTTCP.c:1897
 msgid "Could not restore socket to blocking."
 msgstr "Socket konnte nicht wieder blocking gemacht werden."
 
-#: WWW/Library/Implementation/HTTCP.c:1962
+#: WWW/Library/Implementation/HTTCP.c:1963
 msgid "Socket read failed for 180,000 tries."
 msgstr "Lesefehler nach 180.000 Versuchen."
 
@@ -3101,45 +3101,45 @@ msgstr "Lesefehler nach 180.000 Versuchen."
 msgid "Address contains a username: %s"
 msgstr "Adresse mit einem Username: %s"
 
-#: WWW/Library/Implementation/HTTP.c:497
+#: WWW/Library/Implementation/HTTP.c:531
 msgid "This client does not contain support for HTTPS URLs."
 msgstr "Dieses Programm hat keine Unterstützung für HTTPS-URLs."
 
-#: WWW/Library/Implementation/HTTP.c:522
+#: WWW/Library/Implementation/HTTP.c:556
 msgid "Unable to connect to remote host."
 msgstr "Verbindung zum remote Host konnte nicht hergestellt werden."
 
-#: WWW/Library/Implementation/HTTP.c:544
+#: WWW/Library/Implementation/HTTP.c:578
 msgid "Retrying connection without TLS."
 msgstr "Verbindung erneut versuchen, ohne TLS."
 
-#: WWW/Library/Implementation/HTTP.c:587
+#: WWW/Library/Implementation/HTTP.c:621
 msgid "SSL error:Can't find common name in certificate-Continue?"
 msgstr "SSL-Fehler:Es ist nicht möglich einen allgemeinen Namen im Zertifikat zu finden - Fortfahren?"
 
-#: WWW/Library/Implementation/HTTP.c:604
+#: WWW/Library/Implementation/HTTP.c:638
 #, c-format
 msgid "SSL error:host(%s)!=cert(%s)-Continue?"
 msgstr "SSL-Fehler:host(%s)!=cert(%s) - Fortfahren?"
 
-#: WWW/Library/Implementation/HTTP.c:616
+#: WWW/Library/Implementation/HTTP.c:650
 #, c-format
 msgid "Secure %d-bit %s (%s) HTTP connection"
 msgstr "Sichere %d Bit %s (%s) HTTP-Verbindung"
 
-#: WWW/Library/Implementation/HTTP.c:1086
+#: WWW/Library/Implementation/HTTP.c:1120
 msgid "Sending HTTP request."
 msgstr "HTTP Request wird geschickt."
 
-#: WWW/Library/Implementation/HTTP.c:1125
+#: WWW/Library/Implementation/HTTP.c:1159
 msgid "Unexpected network write error; connection aborted."
 msgstr "Unerwarteter Netzschreibfehler; Verbindung abgebrochen."
 
-#: WWW/Library/Implementation/HTTP.c:1131
+#: WWW/Library/Implementation/HTTP.c:1165
 msgid "HTTP request sent; waiting for response."
 msgstr "HTTP Request geschickt; warten auf Antwort."
 
-#: WWW/Library/Implementation/HTTP.c:1199
+#: WWW/Library/Implementation/HTTP.c:1233
 msgid "Unexpected network read error; connection aborted."
 msgstr "Unerwarteter Netzlesefehler; Verbindung abgebrochen."
 
@@ -3152,7 +3152,7 @@ msgstr "Unerwarteter Netzlesefehler; Verbindung abgebrochen."
 #. * 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:1393
+#: WWW/Library/Implementation/HTTP.c:1427
 msgid "Got unexpected Informational Status."
 msgstr "Unerwarteter Informations-Statuscode empfangen."
 
@@ -3162,7 +3162,7 @@ msgstr "Unerwarteter Informations-Statuscode empfangen."
 #. * content.  We'll instruct the user to do that, and
 #. * restore the current document.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1427
+#: WWW/Library/Implementation/HTTP.c:1461
 msgid "Request fulfilled.  Reset Content."
 msgstr "Request ausgeführt. Seiteninhalt zurücksetzen."
 
@@ -3172,27 +3172,27 @@ msgstr "Request ausgeführt. Seiteninhalt zurücksetzen."
 #. * 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:1544
+#: WWW/Library/Implementation/HTTP.c:1578
 msgid "Got unexpected 304 Not Modified status."
 msgstr "Unerwarteter Status 304 \"Not Modified\"."
 
-#: WWW/Library/Implementation/HTTP.c:1607
+#: WWW/Library/Implementation/HTTP.c:1641
 msgid "Redirection of POST content requires user approval."
 msgstr "Bestätigung ist erforderlich für Umleitung von POST-Daten."
 
-#: WWW/Library/Implementation/HTTP.c:1622
+#: WWW/Library/Implementation/HTTP.c:1656
 msgid "Have POST content.  Treating Permanent Redirection as Temporary.\n"
 msgstr "POST-Request. Permanente Umleitung wird als temporär behandelt.\n"
 
-#: WWW/Library/Implementation/HTTP.c:1664
+#: WWW/Library/Implementation/HTTP.c:1698
 msgid "Retrying with access authorization information."
 msgstr "Wir versuchen's noch einmal mit Authorisierungsinfo."
 
-#: WWW/Library/Implementation/HTTP.c:1676
+#: WWW/Library/Implementation/HTTP.c:1710
 msgid "Show the 401 message body?"
 msgstr "Inhalt der 401-Antwort zeigen?"
 
-#: WWW/Library/Implementation/HTTP.c:1719
+#: WWW/Library/Implementation/HTTP.c:1753
 msgid "Show the 407 message body?"
 msgstr "Inhalt der 407-Antwort zeigen?"
 
@@ -3200,7 +3200,7 @@ msgstr "Inhalt der 407-Antwort zeigen?"
 #. * Bad or unknown server_status number.  Take a chance and hope
 #. * there is something to display.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1819
+#: WWW/Library/Implementation/HTTP.c:1853
 msgid "Unknown status reply from server!"
 msgstr "Unbekannter Statuscode in Antwort vom Server!"
 
@@ -3464,30 +3464,30 @@ msgstr "\"Keygen\"-Feld"
 msgid "unknown form field"
 msgstr "unbekanntes Formfeld"
 
-#: src/GridText.c:10020
+#: src/GridText.c:10015
 msgid "Can't open file for uploading"
 msgstr "Datei konnte nicht zum Upload geöffnet werden!"
 
-#: src/GridText.c:11170
+#: src/GridText.c:11165
 #, c-format
 msgid "Submitting %s"
 msgstr "%s wird gesandt"
 
 #. ugliness has happened; inform user and do the best we can
-#: src/GridText.c:12318
+#: src/GridText.c:12313
 msgid "Hang Detect: TextAnchor struct corrupted - suggest aborting!"
 msgstr "Hänger festgestellt: TextAnchor-Konstruktion ist schadhaft - am besten abbrechen!"
 
 #. don't show previous state
-#: src/GridText.c:12523
+#: src/GridText.c:12518
 msgid "Wrap lines to fit displayed area?"
 msgstr "Zeilen umbrechen, um in den sichtbaren Bereich einzupassen?"
 
-#: src/GridText.c:12575
+#: src/GridText.c:12570
 msgid "Very long lines have been wrapped!"
 msgstr "Sehr lange Zeilen wurden umbrochen!"
 
-#: src/GridText.c:13016
+#: src/GridText.c:13011
 msgid "Very long lines have been truncated!"
 msgstr "Sehr lange Zeilen wurden abgeschnitten!"
 
@@ -3575,7 +3575,7 @@ msgstr "nein"
 #.
 #: src/HTAlert.c:841
 msgid "Y/N/A/V"
-msgstr ""
+msgstr "J/N/A/V"
 
 #: src/HTML.c:5911
 msgid "Description:"
@@ -3884,7 +3884,7 @@ msgstr "Summe der Speicherlecks in diesem Programmlauf:"
 
 #: src/LYLeaks.c:303
 msgid "Peak allocation"
-msgstr ""
+msgstr "Höchstallozierung"
 
 #: src/LYLeaks.c:304
 msgid "Bytes allocated"
@@ -4170,7 +4170,7 @@ msgstr "Nur ein Weilchen, ..."
 
 #: src/LYLocal.c:2329
 msgid "Error building install args"
-msgstr "Fehler beim Aufbau der Installations-Argumente"
+msgstr "Fehler beim Zusammenstellen der Installations-Argumente"
 
 #: src/LYLocal.c:2344 src/LYLocal.c:2375
 #, c-format
@@ -4231,7 +4231,7 @@ msgstr "Kein Winsock gefunden, sorry."
 
 #: src/LYMain.c:1172
 msgid "You MUST define a valid TMP or TEMP area!"
-msgstr "Ein gültiger Bereich MUSS definiert sein für TMP oder TEMP!"
+msgstr "Es muß ein gültiger Bereich für TMP oder TEMP definiert sein!"
 
 #: src/LYMain.c:1225 src/LYMainLoop.c:4956
 msgid "No such directory"
@@ -4307,7 +4307,9 @@ msgstr "Kompiliert auf %s, %s %s\n"
 
 #: src/LYMain.c:3154
 msgid "Copyrights held by the University of Kansas, CERN, and other contributors."
-msgstr "Copyrights - University of Kansas, CERN, Autoren individueller Beiträge."
+msgstr ""
+"Copyrights gehalten von der University of Kansas, dem CERN und anderen\n"
+"Beiträgern."
 
 #: src/LYMain.c:3155
 msgid "Distributed under the GNU General Public License."
@@ -4597,11 +4599,11 @@ msgstr "Fortgeschrittener"
 
 #: src/LYOptions.c:2246
 msgid "By First Visit"
-msgstr "Nach Erstem Besuch"
+msgstr "Nach erstem Besuch"
 
 #: src/LYOptions.c:2248
 msgid "By First Visit Reversed"
-msgstr "Nach Erstem Besuch (rückläufig)"
+msgstr "Nach erstem Besuch (rückläufig)"
 
 #: src/LYOptions.c:2249
 msgid "As Visit Tree"
@@ -4609,11 +4611,11 @@ msgstr "Als Besuchsbaum"
 
 #: src/LYOptions.c:2250
 msgid "By Last Visit"
-msgstr "Nach Letztem Besuch"
+msgstr "Nach letztem Besuch"
 
 #: src/LYOptions.c:2252
 msgid "By Last Visit Reversed"
-msgstr "Nach Letztem Besuch (rückläufig)"
+msgstr "Nach letztem Besuch (rückläufig)"
 
 #. Old_DTD variable
 #: src/LYOptions.c:2263
@@ -4700,139 +4702,142 @@ msgstr "%s/sec, ETA, anzeigen"
 
 #: src/LYOptions.c:2372
 msgid "Accept lynx's internal types"
-msgstr ""
+msgstr "lynx interne Typen akzeptieren"
 
 #: src/LYOptions.c:2373
 msgid "Also accept lynx.cfg's types"
-msgstr ""
+msgstr "Auch die Typen von lynx.cfg akzeptieren<"
 
 #: src/LYOptions.c:2374
 msgid "Also accept user's types"
-msgstr ""
+msgstr "Auch die Typen des Benutzers akzeptieren<"
 
 #: src/LYOptions.c:2375
 msgid "Also accept system's types"
-msgstr ""
+msgstr "Auch die Typen des Systems akzeptieren<"
 
 #: src/LYOptions.c:2376
-#, fuzzy
 msgid "Accept all types"
-msgstr "alle akzeptieren"
+msgstr "Alle Typen akzeptieren"
 
 #: src/LYOptions.c:2385
 msgid "gzip"
+msgstr "gzip"
+
+#: src/LYOptions.c:2386
+msgid "deflate"
 msgstr ""
 
-#: src/LYOptions.c:2388
+#: src/LYOptions.c:2389
 msgid "compress"
-msgstr ""
+msgstr "compress"
 
-#: src/LYOptions.c:2391
+#: src/LYOptions.c:2392
 msgid "bzip2"
-msgstr ""
+msgstr "bzip2"
 
-#: src/LYOptions.c:2393
+#: src/LYOptions.c:2394
 msgid "All"
-msgstr ""
+msgstr "Alle"
 
-#: src/LYOptions.c:2658 src/LYOptions.c:2682
+#: src/LYOptions.c:2659 src/LYOptions.c:2683
 #, c-format
 msgid "Use %s to invoke the Options menu!"
 msgstr "%s benutzen, um das Options-Menü aufzurufen"
 
-#: src/LYOptions.c:3421
+#: src/LYOptions.c:3422
 msgid "(options marked with (!) will not be saved)"
 msgstr "(mit (!) markierte Optionen werden nicht gespeichert)"
 
-#: src/LYOptions.c:3429
+#: src/LYOptions.c:3430
 msgid "General Preferences"
 msgstr "Allgmeine Präferenzen"
 
 #. ***************************************************************
 #. User Mode: SELECT
-#: src/LYOptions.c:3433
+#: src/LYOptions.c:3434
 msgid "User mode"
 msgstr "User mode"
 
 #. Editor: INPUT
-#: src/LYOptions.c:3439
+#: src/LYOptions.c:3440
 msgid "Editor"
 msgstr "Editor"
 
 #. Search Type: SELECT
-#: src/LYOptions.c:3444
+#: src/LYOptions.c:3445
 msgid "Type of Search"
 msgstr "Art der Suche"
 
-#: src/LYOptions.c:3449
+#: src/LYOptions.c:3450
 msgid "Security and Privacy"
 msgstr "Sicherheit und Datenschutz"
 
 #. ***************************************************************
 #. Cookies: SELECT
-#: src/LYOptions.c:3453
+#: src/LYOptions.c:3454
 msgid "Cookies"
 msgstr "Kekse (Cookies)"
 
 #. Cookie Prompting: SELECT
-#: src/LYOptions.c:3467
+#: src/LYOptions.c:3468
 msgid "Invalid-Cookie Prompting"
 msgstr "Bei Invalid-Cookie nachfragen"
 
 #. SSL Prompting: SELECT
-#: src/LYOptions.c:3474
+#: src/LYOptions.c:3475
 msgid "SSL Prompting"
 msgstr "Bei SSL nachfragen"
 
-#: src/LYOptions.c:3480
+#: src/LYOptions.c:3481
 msgid "Keyboard Input"
 msgstr "Tastatureingabe"
 
 #. ***************************************************************
 #. Keypad Mode: SELECT
-#: src/LYOptions.c:3484
+#: src/LYOptions.c:3485
 msgid "Keypad mode"
 msgstr "Tastaturmodus/Keypad mode"
 
 #. Emacs keys: ON/OFF
-#: src/LYOptions.c:3490
+#: src/LYOptions.c:3491
 msgid "Emacs keys"
 msgstr "Emacstasten"
 
 #. VI Keys: ON/OFF
-#: src/LYOptions.c:3496
+#: src/LYOptions.c:3497
 msgid "VI keys"
 msgstr "VI-Tasten"
 
 #. Line edit style: SELECT
 #. well, at least 2 line edit styles available
-#: src/LYOptions.c:3503
+#: src/LYOptions.c:3504
 msgid "Line edit style"
 msgstr "Art für das Editieren von Zeilen"
 
 #. Keyboard layout: SELECT
-#: src/LYOptions.c:3515
+#: src/LYOptions.c:3516
 msgid "Keyboard layout"
 msgstr "Tastaturbelegung"
 
 #.
 #. * Display and Character Set
 #.
-#: src/LYOptions.c:3529
+#: src/LYOptions.c:3530
 msgid "Display and Character Set"
 msgstr "Display und Zeichensatz"
 
 #. Use locale-based character set: ON/OFF
-#: src/LYOptions.c:3534
+#: src/LYOptions.c:3535
 msgid "Use locale-based character set"
 msgstr "Locale-basierenden Zeichensatz verwenden"
 
 #. Display Character Set: SELECT
-#: src/LYOptions.c:3543
+#: src/LYOptions.c:3544
 msgid "Display character set"
 msgstr "Zeichensatz des Displays"
 
-#: src/LYOptions.c:3574
+#: src/LYOptions.c:3575
 msgid "Assumed document character set"
 msgstr "Angenommene Zeichensatzkodierung"
 
@@ -4841,166 +4846,164 @@ msgstr "Angenommene Zeichensatzkodierung"
 #. * we split the header to make it more readable:
 #. * "CJK mode" for CJK display charsets, and "Raw 8-bit" for others.
 #.
-#: src/LYOptions.c:3594
+#: src/LYOptions.c:3595
 msgid "CJK mode"
 msgstr "CJK-Modus"
 
-#: src/LYOptions.c:3596
+#: src/LYOptions.c:3597
 msgid "Raw 8-bit"
 msgstr "Unkonvertiert (Raw 8-bit)"
 
 #. X Display: INPUT
-#: src/LYOptions.c:3604
+#: src/LYOptions.c:3605
 msgid "X Display"
 msgstr "X DISPLAY"
 
 #.
 #. * Document Appearance
 #.
-#: src/LYOptions.c:3610
+#: src/LYOptions.c:3611
 msgid "Document Appearance"
 msgstr "Aussehen des Dokuments"
 
-#: src/LYOptions.c:3616
+#: src/LYOptions.c:3617
 msgid "Show color"
 msgstr "Farbe zeigen/Show color"
 
 #. Show cursor: ON/OFF
-#: src/LYOptions.c:3640
+#: src/LYOptions.c:3641
 msgid "Show cursor"
 msgstr "Positionsmarke zeigen/Show cursor"
 
 #. Underline links: ON/OFF
-#: src/LYOptions.c:3646
+#: src/LYOptions.c:3647
 msgid "Underline links"
 msgstr "Links unterstreichen"
 
 #. Show scrollbar: ON/OFF
-#: src/LYOptions.c:3653
+#: src/LYOptions.c:3654
 msgid "Show scrollbar"
 msgstr "Scrollbar zeigen"
 
 #. Select Popups: ON/OFF
-#: src/LYOptions.c:3660
+#: src/LYOptions.c:3661
 msgid "Popups for select fields"
 msgstr "Popups für Select-Felder"
 
 #. HTML error recovery: SELECT
-#: src/LYOptions.c:3666
+#: src/LYOptions.c:3667
 msgid "HTML error recovery"
 msgstr "HTML-Fehlerbehandlung"
 
 #. Show Images: SELECT
-#: src/LYOptions.c:3672
+#: src/LYOptions.c:3673
 msgid "Show images"
 msgstr "Bilder zeigen"
 
 #. Verbose Images: ON/OFF
-#: src/LYOptions.c:3686
+#: src/LYOptions.c:3687
 msgid "Verbose images"
 msgstr "Detaillierte Bildinformation"
 
-#: src/LYOptions.c:3695
+#: src/LYOptions.c:3696
 msgid "Headers Transferred to Remote Servers"
 msgstr "Einige Headers für Requests zu Remote Servern verschickt"
 
 #. ***************************************************************
 #. Mail Address: INPUT
-#: src/LYOptions.c:3699
+#: src/LYOptions.c:3700
 msgid "Personal mail address"
 msgstr "Persönliche Mailadresse"
 
 #. Preferred media type: SELECT
-#: src/LYOptions.c:3704
-#, fuzzy
+#: src/LYOptions.c:3705
 msgid "Preferred media type"
-msgstr "%d bytes übertragen"
+msgstr "Erwünschter Medientyp"
 
 #. Preferred encoding: SELECT
-#: src/LYOptions.c:3710
-#, fuzzy
+#: src/LYOptions.c:3711
 msgid "Preferred encoding"
-msgstr "Erwünschte Dokumentsprache (Accept-Language)"
+msgstr "Erwünschte Kodierung"
 
 #. Preferred Document Character Set: INPUT
-#: src/LYOptions.c:3716
+#: src/LYOptions.c:3717
 msgid "Preferred document character set"
 msgstr "Erwünschter Zeichensatz (Accept-Charset)"
 
 #. Preferred Document Language: INPUT
-#: src/LYOptions.c:3721
+#: src/LYOptions.c:3722
 msgid "Preferred document language"
 msgstr "Erwünschte Dokumentsprache (Accept-Language)"
 
-#: src/LYOptions.c:3727
+#: src/LYOptions.c:3728
 msgid "User-Agent header"
 msgstr "Browseridentifizierung (User-Agent)"
 
 #.
 #. * Listing and Accessing Files
 #.
-#: src/LYOptions.c:3735
+#: src/LYOptions.c:3736
 msgid "Listing and Accessing Files"
 msgstr "Dateiverzeichnisse anlegen und auf Dateien zugreifen"
 
 #. ***************************************************************
 #. FTP sort: SELECT
-#: src/LYOptions.c:3739
+#: src/LYOptions.c:3740
 msgid "FTP sort criteria"
 msgstr "Sortierung für FTP-Verzeichnisse"
 
 #. Local Directory Sort: SELECT
-#: src/LYOptions.c:3746
+#: src/LYOptions.c:3747
 msgid "Local directory sort criteria"
 msgstr "Sortierkriterien für lokale Verzeichnisse"
 
 #. Local Directory Order: SELECT
-#: src/LYOptions.c:3752
+#: src/LYOptions.c:3753
 msgid "Local directory sort order"
 msgstr "Sortierreihenfolge für lokale Verzeichnisse"
 
-#: src/LYOptions.c:3761
+#: src/LYOptions.c:3762
 msgid "Show dot files"
 msgstr "Dateien mit Punkt am Anfang sichtbar"
 
-#: src/LYOptions.c:3769
+#: src/LYOptions.c:3770
 msgid "Execution links"
 msgstr "Ausführbare Links/Execution links"
 
 #. Show transfer rate: SELECT
-#: src/LYOptions.c:3789
+#: src/LYOptions.c:3790
 msgid "Show transfer rate"
 msgstr "Übertragungsrate anzeigen"
 
 #.
 #. * Special Files and Screens
 #.
-#: src/LYOptions.c:3809
+#: src/LYOptions.c:3810
 msgid "Special Files and Screens"
 msgstr "Besondere Dateien und Bildschirme"
 
-#: src/LYOptions.c:3814
+#: src/LYOptions.c:3815
 msgid "Multi-bookmarks"
 msgstr "Multi-Datein-Lesezeichen"
 
-#: src/LYOptions.c:3822
+#: src/LYOptions.c:3823
 msgid "Review/edit Bookmarks files"
 msgstr "Lesezeichendateien ansehen/bearbeiten"
 
-#: src/LYOptions.c:3824
+#: src/LYOptions.c:3825
 msgid "Goto multi-bookmark menu"
 msgstr "Zum Multi-Lesezeichenmenü"
 
-#: src/LYOptions.c:3826
+#: src/LYOptions.c:3827
 msgid "Bookmarks file"
 msgstr "Lesezeichendatei"
 
 #. Visited Pages: SELECT
-#: src/LYOptions.c:3832
+#: src/LYOptions.c:3833
 msgid "Visited Pages"
 msgstr "Besuchte Seiten"
 
-#: src/LYOptions.c:3837
+#: src/LYOptions.c:3838
 msgid "View the file "
 msgstr "Die Datei ansehen "
 
@@ -5120,41 +5123,41 @@ msgstr "Lynx: Programmstart verweigert, Regeldatei %s (CERN rules file) nicht ve
 msgid "(no name)"
 msgstr "(ohne Namen)"
 
-#: src/LYReadCFG.c:1772
+#: src/LYReadCFG.c:1773
 #, c-format
 msgid "More than %d nested lynx.cfg includes -- perhaps there is a loop?!?\n"
 msgstr "Mehr als %d geschachtelte lynx.cfg-Includes -- wohl eine Schleife?!?\n"
 
-#: src/LYReadCFG.c:1774
+#: src/LYReadCFG.c:1775
 #, c-format
 msgid "Last attempted include was '%s',\n"
 msgstr "letztes INCLUDE war für '%s',\n"
 
-#: src/LYReadCFG.c:1775
+#: src/LYReadCFG.c:1776
 #, c-format
 msgid "included from '%s'.\n"
 msgstr "enthalten in '%s'.\n"
 
-#: src/LYReadCFG.c:2181 src/LYReadCFG.c:2194 src/LYReadCFG.c:2252
+#: src/LYReadCFG.c:2183 src/LYReadCFG.c:2196 src/LYReadCFG.c:2254
 msgid "The following is read from your lynx.cfg file."
 msgstr "Folgendes ist der aktuellen Konfigurationsdatei entnommen."
 
-#: src/LYReadCFG.c:2182 src/LYReadCFG.c:2195
+#: src/LYReadCFG.c:2184 src/LYReadCFG.c:2197
 msgid "Please read the distribution"
 msgstr "Bitte die installierte Konfigurationsdatei"
 
-#: src/LYReadCFG.c:2188 src/LYReadCFG.c:2198
+#: src/LYReadCFG.c:2190 src/LYReadCFG.c:2200
 msgid "for more comments."
 msgstr ""
 " \n"
 "für weitere Erläuterungen ansehen."
 
 # Looks dangerous to me, so I sneak in a warning. - kw
-#: src/LYReadCFG.c:2234
+#: src/LYReadCFG.c:2236
 msgid "RELOAD THE CHANGES"
 msgstr "NEULADEN NACH ÄNDERUNG, AUF EIGENE GEFAHR!"
 
-#: src/LYReadCFG.c:2242
+#: src/LYReadCFG.c:2244
 msgid "Your primary configuration"
 msgstr "Ihre primäre Konfiguration"
 
@@ -5211,9 +5214,8 @@ msgid "File size:"
 msgstr "Dateilänge:"
 
 #: src/LYShowInfo.c:226
-#, fuzzy
 msgid "(bytes)"
-msgstr "bytes"
+msgstr "(Bytes)"
 
 #.
 #. * Include date and time information.
@@ -5235,13 +5237,12 @@ msgid "Access Permissions"
 msgstr "Zugriffsrechte"
 
 #: src/LYShowInfo.c:278
-#, fuzzy
 msgid "Group:"
-msgstr "Gruppe"
+msgstr "Gruppe:"
 
 #: src/LYShowInfo.c:298
 msgid "World:"
-msgstr ""
+msgstr "Welt:"
 
 #: src/LYShowInfo.c:305
 msgid "File that you are currently viewing"
@@ -5259,7 +5260,7 @@ msgstr "Charset:"
 
 #: src/LYShowInfo.c:333
 msgid "(assumed)"
-msgstr ""
+msgstr "(vermutet)"
 
 #: src/LYShowInfo.c:340
 msgid "Server:"
@@ -5274,9 +5275,8 @@ msgid "Last Mod:"
 msgstr "Geändert:"
 
 #: src/LYShowInfo.c:351
-#, fuzzy
 msgid "Expires:"
-msgstr "&nbsp;Expires:"
+msgstr "Expires:"
 
 #: src/LYShowInfo.c:354
 msgid "Cache-Control:"
@@ -5324,7 +5324,7 @@ msgstr "normal"
 
 #: src/LYShowInfo.c:391
 msgid ", safe"
-msgstr ", safe"
+msgstr ", sicher"
 
 #: src/LYShowInfo.c:393
 msgid ", via internal link"
@@ -5359,9 +5359,8 @@ msgid "Enctype:"
 msgstr "Enctype:"
 
 #: src/LYShowInfo.c:431
-#, fuzzy
 msgid "Action:"
-msgstr "Location: "
+msgstr "Aktion:"
 
 #: src/LYShowInfo.c:436
 msgid "(Form field)"
@@ -5372,9 +5371,8 @@ msgid "No Links on the current page"
 msgstr "Keine Links auf dieser Seite"
 
 #: src/LYShowInfo.c:452
-#, fuzzy
 msgid "Server Headers:"
-msgstr "Server:"
+msgstr "Server-Headers:"
 
 #: src/LYStyle.c:286
 #, c-format
@@ -5459,7 +5457,7 @@ msgstr "Das HOME-Verzeichnis ist nicht zu finden"
 msgid "Normally disabled.  See ENABLE_LYNXRC in lynx.cfg\n"
 msgstr "Normalerweise nicht aktiviert.  Siehe ENABLE_LYNXRC in lynx.cfg.\n"
 
-#: src/LYrcFile.c:317
+#: src/LYrcFile.c:318
 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"
@@ -5471,7 +5469,7 @@ msgstr ""
 "Die Normaleinstellung ist \"FALSE\", so dass normalerweise bei jedem Keks\n"
 "gefragt wird.  Auf \"TRUE\" setzen, um alle Kekse zu akzeptieren.\n"
 
-#: src/LYrcFile.c:324
+#: src/LYrcFile.c:325
 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"
@@ -5482,7 +5480,7 @@ msgstr ""
 "Lesezeichendatei anfügen, so dass Dokumente später leicht wiedergefunden\n"
 "werden können.\n"
 
-#: src/LYrcFile.c:329
+#: src/LYrcFile.c:330
 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"
@@ -5493,7 +5491,7 @@ msgstr ""
 "durchgeführt, die groß-/kleinschreibungsempfindlich sind, statt\n"
 "Kapitalisierung zu ignorieren. Die übliche Einstellung ist \"off\".\n"
 
-#: src/LYrcFile.c:334
+#: src/LYrcFile.c:335
 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"
@@ -5508,7 +5506,7 @@ msgstr ""
 "weisen Ersatzdarstellungen zu verwenden.\n"
 "Zur Zeit gültige Werte sind:\n"
 
-#: src/LYrcFile.c:341
+#: src/LYrcFile.c:342
 msgid ""
 "cookie_accept_domains and cookie_reject_domains are comma-delimited\n"
 "lists of domains from which Lynx should automatically accept or reject\n"
@@ -5523,7 +5521,7 @@ msgstr ""
 "Listen gemacht werden. Wenn dieselbe Domain in cookie_accept_domains und\n"
 "in cookie_reject_domains erscheint, hat die Verweigerung vorrang.\n"
 
-#: src/LYrcFile.c:349
+#: src/LYrcFile.c:350
 msgid ""
 "cookie_file specifies the file from which to read persistent cookies.\n"
 "The default is ~/.lynx_cookies.\n"
@@ -5531,7 +5529,7 @@ msgstr ""
 "cookie_file gibt die Datei an, von der langlebige Kekse gelesen werden.\n"
 "Standardeinstellung ist ~/.lynx_cookies.\n"
 
-#: src/LYrcFile.c:354
+#: src/LYrcFile.c:355
 msgid ""
 "cookie_loose_invalid_domains, cookie_strict_invalid_domains, and\n"
 "cookie_query_invalid_domains are comma-delimited lists of which domains\n"
@@ -5550,13 +5548,15 @@ msgstr ""
 "Pfad oder einem ungültigen Domänen-Attribut ablegen. Alle Domänen\n"
 "fragen grundsätzlich den Benutzer bei ungültigen Pfaden oder Domänen\n"
 
-#: src/LYrcFile.c:368
+#: src/LYrcFile.c:369
 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 bestimmt die Ordnung der Verzeichnislisten unter DIRED_SUPPORT\n"
+"(falls eingebaut).  Die Vorgabe ist \"ORDER_BY_NAME\".\n"
 
-#: src/LYrcFile.c:373
+#: src/LYrcFile.c:374
 msgid ""
 "dir_list_styles specifies the directory list style under DIRED_SUPPORT\n"
 "(if implemented).  The default is \"MIXED_STYLE\", which sorts both\n"
@@ -5569,7 +5569,7 @@ msgstr ""
 "Mit \"FILES_FIRST\" werde normale Dateien zuerst aufgelistet, und mit\n"
 "\"DIRECTORIES_FIRST\" kommen Verzeichnisse zuerst.\n"
 
-#: src/LYrcFile.c:381
+#: src/LYrcFile.c:382
 msgid ""
 "If emacs_keys is to \"on\" then the normal EMACS movement keys:\n"
 "  ^N = down    ^P = up\n"
@@ -5581,7 +5581,7 @@ msgstr ""
 "  ^N = down    ^P = up\n"
 "  ^B = left    ^F = right\n"
 
-#: src/LYrcFile.c:387
+#: src/LYrcFile.c:388
 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"
@@ -5594,7 +5594,7 @@ msgstr ""
 "von der Befehlszeile aus aktiviert wird, und der eingebaute Zeileneditor\n"
 "wird für das Schicken von Mail benutzt.\n"
 
-#: src/LYrcFile.c:393
+#: src/LYrcFile.c:394
 msgid ""
 "The file_sorting_method specifies which value to sort on when viewing\n"
 "file lists such as FTP directories.  The options are:\n"
@@ -5611,7 +5611,7 @@ msgstr ""
 "   BY_SIZE     -- sortiert nach Dateilänge\n"
 "   BY_DATE     -- sortiert nach Änderungsdatum\n"
 
-#: src/LYrcFile.c:411
+#: src/LYrcFile.c:412
 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"
@@ -5638,7 +5638,7 @@ msgstr ""
 "\n"
 "Zur Zeit verfügbare Bindungen sind:\n"
 
-#: src/LYrcFile.c:429
+#: src/LYrcFile.c:430
 msgid ""
 "The following allow you to define sub-bookmark files and descriptions.\n"
 "The format is multi_bookmark<capital_letter>=<filename>,<description>\n"
@@ -5653,7 +5653,7 @@ msgstr ""
 "Wir beginnen mit \"multi_bookmarkB\", da 'A' schon für normale\n"
 "Lesezeichen (siehe oben) benutzt wird.\n"
 
-#: src/LYrcFile.c:435
+#: src/LYrcFile.c:436
 msgid ""
 "personal_mail_address specifies your personal mail address.  The\n"
 "address will be sent during HTTP file transfers for authorization and\n"
@@ -5673,7 +5673,7 @@ msgstr ""
 "Dieses Feld könnte hier auch leergelassen werden, aber dann wird die\n"
 "Absenderadresse in Mail-Kommentaren fehlen.\n"
 
-#: src/LYrcFile.c:444
+#: src/LYrcFile.c:445
 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"
@@ -5702,7 +5702,7 @@ msgstr ""
 "mit einer Fehlermeldung antworten, das Senden einer Antwort mit\n"
 "nichtpassendem charset ist allerdings auch erlaubt.\n"
 
-#: src/LYrcFile.c:460
+#: src/LYrcFile.c:461
 msgid ""
 "preferred_language specifies the language in MIME notation (e.g., en,\n"
 "fr, may be a comma-separated list in decreasing preference)\n"
@@ -5718,7 +5718,7 @@ msgstr ""
 "Sprache zurückschicken, falls vorhanden; andernfalls antwortet der\n"
 "Server in der für den Server (und die Datei) üblichen Sprache.\n"
 
-#: src/LYrcFile.c:471
+#: src/LYrcFile.c:472
 msgid ""
 "If run_all_execution_links is set \"on\" then all local execution links\n"
 "will be executed when they are selected.\n"
@@ -5743,7 +5743,7 @@ msgstr ""
 "          die angeschauten Dokumente von einer vertrauenswürdigen Quelle\n"
 "          kommen.\n"
 
-#: src/LYrcFile.c:482
+#: src/LYrcFile.c:483
 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"
@@ -5775,7 +5775,7 @@ msgstr ""
 "          die angeschauten Dokumente von einer vertrauenswürdigen Quelle\n"
 "          kommen.\n"
 
-#: src/LYrcFile.c:500
+#: src/LYrcFile.c:501
 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"
@@ -5794,7 +5794,7 @@ msgstr ""
 "zum Normalverhalten macht.  Die normale Einstellung kann durch den\n"
 "Toggle-Switch -popup in der Befehlszeile verändert werden.\n"
 
-#: src/LYrcFile.c:510
+#: src/LYrcFile.c:511
 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"
@@ -5833,7 +5833,7 @@ msgstr ""
 "chert werden, werden die Werte \"on\" und \"off\" für \"show color\" als\n"
 "\"default\" behandelt.\n"
 
-#: src/LYrcFile.c:527
+#: src/LYrcFile.c:528
 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"
@@ -5856,7 +5856,7 @@ msgstr ""
 "Die gewählte Einstellung kann durch den Toggle-Switch -show_cursor in\n"
 "der Befehlszeile geändert werden.\n"
 
-#: src/LYrcFile.c:538
+#: src/LYrcFile.c:539
 msgid ""
 "show_dotfiles specifies that the directory listing should include\n"
 "\"hidden\" (dot) files/directories.  If set \"on\", this will be\n"
@@ -5872,7 +5872,7 @@ msgstr ""
 "von versteckten Dateien ausgeschaltet ist, ist auch die Erzeugung\n"
 "solcher Dateien von Lynx aus nicht erlaubt.\n"
 
-#: src/LYrcFile.c:549
+#: src/LYrcFile.c:550
 msgid ""
 "If sub_bookmarks is not turned \"off\", and multiple bookmarks have\n"
 "been defined (see below), then all bookmark operations will first\n"
@@ -5896,7 +5896,7 @@ msgstr ""
 "\"standard\" gesetzt ist, dann erscheint das letzgenannt Menü immer,\n"
 "unabhängig vom Benutzermodus.\n"
 
-#: src/LYrcFile.c:563
+#: src/LYrcFile.c:564
 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"
@@ -5914,7 +5914,7 @@ msgstr ""
 "ausgeschaltet.  Im Modus \"ADVANCED\" wird außerdem der URL des gerade\n"
 "ausgewählten Links am unteren Bildschirmrand angezeigt.\n"
 
-#: src/LYrcFile.c:572
+#: src/LYrcFile.c:573
 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"
@@ -5924,7 +5924,7 @@ msgstr ""
 "der Bildquelle anstelle von [INLINE], [LINK] or [IMAGE] an.\n"
 "Siehe auch VERBOSE_IMAGES in lynx.cfg.\n"
 
-#: src/LYrcFile.c:577
+#: src/LYrcFile.c:578
 msgid ""
 "If vi_keys is set to \"on\", then the normal VI movement keys:\n"
 "  j = down    k = up\n"
@@ -5943,7 +5943,7 @@ msgstr ""
 "die normalen Aktionen (activate help, jump shortcuts, keymap display)\n"
 "auszulösen.\n"
 
-#: src/LYrcFile.c:585
+#: src/LYrcFile.c:586
 msgid ""
 "The visited_links setting controls how Lynx organizes the information\n"
 "in the Visited Links Page.\n"
@@ -5951,7 +5951,7 @@ msgstr ""
 "Die visited_links Einrichtung legt fest, wie Lynx die Informationen\n"
 "auf der Seite für besuchte Links organisiert.\n"
 
-#: src/LYrcFile.c:803
+#: src/LYrcFile.c:804
 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"
@@ -5972,7 +5972,7 @@ msgstr ""
 "Die über den Buchstaben gelegenen Zifferntasten haben dann natürlich\n"
 "denselben Effekt, unabhängig vom \"Numlock\"-Zustand.\n"
 
-#: src/LYrcFile.c:812
+#: src/LYrcFile.c:813
 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"
@@ -5981,7 +5981,7 @@ msgstr ""
 "Links mit einer sichtbaren Numerierung versehen, und Zifferntasten\n"
 "können zur Auswahl von Links benutzt werden.\n"
 
-#: src/LYrcFile.c:816
+#: src/LYrcFile.c:817
 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"
@@ -6002,7 +6002,7 @@ msgstr ""
 "auch in Verweislisten und im Ergebnis des Tastenbefehls 'L'ist numeriert\n"
 "aufgelistet.\n"
 
-#: src/LYrcFile.c:825
+#: src/LYrcFile.c:826
 msgid ""
 "NOTE: Some fixed format documents may look disfigured when\n"
 "\"LINKS_ARE_NUMBERED\" or \"LINKS_AND_FORM_FIELDS_ARE_NUMBERED\" are\n"
@@ -6012,7 +6012,7 @@ msgstr ""
 "wenn \"LINKS_ARE_NUMBERED\" or \"LINKS_AND_FORM_FIELDS_ARE_NUMBERED\"\n"
 "eingeschaltet ist.\n"
 
-#: src/LYrcFile.c:857
+#: src/LYrcFile.c:858
 msgid ""
 "Lynx User Defaults File\n"
 "\n"
@@ -6052,9 +6052,6 @@ msgstr ""
 #~ msgid "Ignoring invalid HOME"
 #~ msgstr "Ungültiger Wert für HOME wird ignoriert"
 
-#~ msgid "Comment request cancelled!!!"
-#~ msgstr "Kommentarwunsch zurückgezogen!"
-
 #~ msgid "This special URL is not allowed as a goto!"
 #~ msgstr "Das Gehen zu diesem speziellen URL ist nicht erlaubt!"
 
@@ -6085,22 +6082,6 @@ msgstr ""
 #~ msgid "Left mouse button or return to select, arrow keys to scroll."
 #~ msgstr "RETURN oder linke Maustaste wählt aus, Pfeiltasten zum Auf- und Abbewegen."
 
-# This is within `#ifdef NOTUSED'. - kw
-#~ msgid ""
-#~ "partial_thres specifies the number of lines Lynx should download and render\n"
-#~ "before we redraw the screen in Partial Display logic\n"
-#~ "e.g., partial_thres=2\n"
-#~ "would have Lynx redraw every 2 lines that it renders\n"
-#~ "partial_thres=-1 would use the entire screensize\n"
-#~ msgstr ""
-#~ "partial_thres gibt die Anzahl der Zeilen an, die Lynx laden und \n"
-#~ "verarbeiten soll, bevor in der Partialdisplaylogik der Bildschirm-\n"
-#~ "inhalt neugezeichnet wird.\n"
-#~ "z.B. partial_thres=2\n"
-#~ "würde bewirken, dass Lynx pro neue interpretierte zwei Zeilen die\n"
-#~ "Bildschirmdarstellung auffrischt.\n"
-#~ "partial_thres=-1 bewirkt Benutzung der gesamten Bildschirmlänge.\n"
-
 # This claim makes even less sense in languages other than English. - kw
 #~ msgid "WARNING: Misrepresentation of the User-Agent may be a copyright violation!"
 #~ msgstr "WARNUNG: Sollte \"Lynx\" enthalten, um absichtliche Täuschung zu vermeiden!"
@@ -6163,9 +6144,3 @@ msgstr ""
 #~ "\n"
 #~ "     <p>\n"
 #~ "<ol>\n"
-
-#~ msgid "Character Set Options"
-#~ msgstr "Zeichensätze"
-
-#~ msgid "This is read from your lynx.cfg file:"
-#~ msgstr "Dies ist der aktuellen Konfigurationsdatei entnommen:"
diff --git a/po/et.po b/po/et.po
index f62bee00..03cfa654 100644
--- a/po/et.po
+++ b/po/et.po
@@ -1,13 +1,13 @@
 # Estonian translations for lynx
 # Copyright (C) 2001 Free Software Foundation, Inc.
-# Toomas Soome <tsoome@ut.ee>, 2002.
+# Toomas Soome <Toomas.Soome@microlink.ee>, 2004.
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: lynx 2.8.6-dev4\n"
+"Project-Id-Version: lynx 2.8.6-dev6\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-10-10 18:51-0400\n"
-"PO-Revision-Date: 2004-05-30 23:06+0300\n"
+"POT-Creation-Date: 2004-10-17 16:29-0400\n"
+"PO-Revision-Date: 2004-10-14 20:52+0300\n"
 "Last-Translator: Toomas Soome <Toomas.Soome@microlink.ee>\n"
 "Language-Team: Estonian <et@li.org>\n"
 "MIME-Version: 1.0\n"
@@ -2179,7 +2179,7 @@ msgstr ""
 #: LYMessages.c:695
 #, c-format
 msgid "%s cookie: %.*s=%.*s  Allow? (Y/N/Always/neVer)"
-msgstr "%s präänik: %.*s=%.*s  Luban? (Y/N/Alati/V=mitte kunagi)"
+msgstr "%s präänik: %.*s=%.*s  Luban? (Y/N/Alati/Mitte kunagi)"
 
 #. #define INVALID_COOKIE_DOMAIN_CONFIRMATION
 #: LYMessages.c:697
@@ -2788,7 +2788,7 @@ msgstr "POST sisuga dokument puudub puhvrist. Postitan uuesti?"
 msgid "Loading failed, use a previous copy."
 msgstr "laadimine ebaõnnestus, kasuta eelmist koopiat."
 
-#: WWW/Library/Implementation/HTAccess.c:1045 src/GridText.c:8301
+#: WWW/Library/Implementation/HTAccess.c:1045 src/GridText.c:8296
 msgid "Loading incomplete."
 msgstr "Mittetäielik laadimine."
 
@@ -2857,7 +2857,7 @@ msgstr "Üle kantud %d baiti (%5d)"
 msgid "connect for data"
 msgstr "loon andmekanalit"
 
-#: WWW/Library/Implementation/HTFTP.c:3738
+#: WWW/Library/Implementation/HTFTP.c:3741
 msgid "Receiving FTP file."
 msgstr "Laen FTP faili."
 
@@ -3016,7 +3016,7 @@ msgstr "Aadressis on vigane port"
 msgid "Address length looks invalid"
 msgstr "Aadressi pikkus tundub vigane"
 
-#: WWW/Library/Implementation/HTTCP.c:1551 WWW/Library/Implementation/HTTCP.c:1569
+#: WWW/Library/Implementation/HTTCP.c:1552 WWW/Library/Implementation/HTTCP.c:1570
 #, c-format
 msgid "Unable to locate remote host %s."
 msgstr "Ei leia serverit %s."
@@ -3025,38 +3025,38 @@ msgstr "Ei leia serverit %s."
 #. * but not HTAlert, because typically there will be other
 #. * alerts from the callers.  - kw
 #.
-#: WWW/Library/Implementation/HTTCP.c:1566 WWW/Library/Implementation/HTTelnet.c:108
+#: WWW/Library/Implementation/HTTCP.c:1567 WWW/Library/Implementation/HTTelnet.c:108
 #, c-format
 msgid "Invalid hostname %s"
 msgstr "Vigane serveri nimi %s"
 
-#: WWW/Library/Implementation/HTTCP.c:1580
+#: WWW/Library/Implementation/HTTCP.c:1581
 #, c-format
 msgid "Making %s connection to %s"
 msgstr "Loon %s ühendust serveriga %s"
 
-#: WWW/Library/Implementation/HTTCP.c:1591
+#: WWW/Library/Implementation/HTTCP.c:1592
 msgid "socket failed."
 msgstr "socket ebaõnnestus."
 
-#: WWW/Library/Implementation/HTTCP.c:1604
+#: WWW/Library/Implementation/HTTCP.c:1605
 #, c-format
 msgid "socket failed: family %d addr %s port %s."
 msgstr "socket ebaõnnestus: perekond %d aadress %s port %s."
 
-#: WWW/Library/Implementation/HTTCP.c:1628
+#: WWW/Library/Implementation/HTTCP.c:1629
 msgid "Could not make connection non-blocking."
 msgstr "Ei õnnestu muuta ühendust mitte-blokeerivaks."
 
-#: WWW/Library/Implementation/HTTCP.c:1697
+#: WWW/Library/Implementation/HTTCP.c:1698
 msgid "Connection failed (too many retries)."
 msgstr "Ühendus ebaõnnestus (looga palju katseid)."
 
-#: WWW/Library/Implementation/HTTCP.c:1896
+#: WWW/Library/Implementation/HTTCP.c:1897
 msgid "Could not restore socket to blocking."
 msgstr "Pistikul ei õnnestu taastada blokeerivat moodi."
 
-#: WWW/Library/Implementation/HTTCP.c:1962
+#: WWW/Library/Implementation/HTTCP.c:1963
 msgid "Socket read failed for 180,000 tries."
 msgstr "Pistikust lugemine ebaõnnestus 180 000 katsel."
 
@@ -3065,45 +3065,45 @@ msgstr "Pistikust lugemine ebaõnnestus 180 000 katsel."
 msgid "Address contains a username: %s"
 msgstr "Aadress sisaldab kasutajanime: %s"
 
-#: WWW/Library/Implementation/HTTP.c:497
+#: WWW/Library/Implementation/HTTP.c:531
 msgid "This client does not contain support for HTTPS URLs."
 msgstr "See klient ei toeta HTTPS URLe."
 
-#: WWW/Library/Implementation/HTTP.c:522
+#: WWW/Library/Implementation/HTTP.c:556
 msgid "Unable to connect to remote host."
 msgstr "Serveriga ühenduse loomine ebaõnnestus."
 
-#: WWW/Library/Implementation/HTTP.c:544
+#: WWW/Library/Implementation/HTTP.c:578
 msgid "Retrying connection without TLS."
 msgstr "Üritan ühendust uuesti luua TLS kasutamata."
 
-#: WWW/Library/Implementation/HTTP.c:587
+#: WWW/Library/Implementation/HTTP.c:621
 msgid "SSL error:Can't find common name in certificate-Continue?"
 msgstr "SSL viga: Sertifikaadis puudub ühine nimi - jätkan?"
 
-#: WWW/Library/Implementation/HTTP.c:604
+#: WWW/Library/Implementation/HTTP.c:638
 #, c-format
 msgid "SSL error:host(%s)!=cert(%s)-Continue?"
 msgstr "SSL viga:host(%s)!=sert(%s)-Jätkan?"
 
-#: WWW/Library/Implementation/HTTP.c:616
+#: WWW/Library/Implementation/HTTP.c:650
 #, c-format
 msgid "Secure %d-bit %s (%s) HTTP connection"
 msgstr "Turvaline %d-bitti %s (%s) HTTP ühendus"
 
-#: WWW/Library/Implementation/HTTP.c:1086
+#: WWW/Library/Implementation/HTTP.c:1120
 msgid "Sending HTTP request."
 msgstr "Saadan HTTP päringu."
 
-#: WWW/Library/Implementation/HTTP.c:1125
+#: WWW/Library/Implementation/HTTP.c:1159
 msgid "Unexpected network write error; connection aborted."
 msgstr "Ootamatu tõrge võrku kirjutamisel; ühendus katkestati."
 
-#: WWW/Library/Implementation/HTTP.c:1131
+#: WWW/Library/Implementation/HTTP.c:1165
 msgid "HTTP request sent; waiting for response."
 msgstr "HTTP päring on saadetud; ootan vastust."
 
-#: WWW/Library/Implementation/HTTP.c:1199
+#: WWW/Library/Implementation/HTTP.c:1233
 msgid "Unexpected network read error; connection aborted."
 msgstr "Ootamatu tõrge võrgust lugemisel; ühendus katkestati."
 
@@ -3116,7 +3116,7 @@ msgstr "Ootamatu tõrge võrgust lugemisel; ühendus katkestati."
 #. * 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:1393
+#: WWW/Library/Implementation/HTTP.c:1427
 msgid "Got unexpected Informational Status."
 msgstr "Sain ootamatu informatiivse oleku."
 
@@ -3126,7 +3126,7 @@ msgstr "Sain ootamatu informatiivse oleku."
 #. * content.  We'll instruct the user to do that, and
 #. * restore the current document.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1427
+#: WWW/Library/Implementation/HTTP.c:1461
 msgid "Request fulfilled.  Reset Content."
 msgstr "Päring täidetud. Algväärtusta sisu."
 
@@ -3136,27 +3136,27 @@ msgstr "Päring täidetud. Algväärtusta sisu."
 #. * 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:1544
+#: WWW/Library/Implementation/HTTP.c:1578
 msgid "Got unexpected 304 Not Modified status."
 msgstr "Sain ootamatu oleku, 304 Pole muudetud."
 
-#: WWW/Library/Implementation/HTTP.c:1607
+#: WWW/Library/Implementation/HTTP.c:1641
 msgid "Redirection of POST content requires user approval."
 msgstr "POST sisu ümbersuunamine nõuab kasutaja kinnitust."
 
-#: WWW/Library/Implementation/HTTP.c:1622
+#: WWW/Library/Implementation/HTTP.c:1656
 msgid "Have POST content.  Treating Permanent Redirection as Temporary.\n"
 msgstr "Oman POST sisu. Käsitlen püsivat ümbersuunamist ajutisena.\n"
 
-#: WWW/Library/Implementation/HTTP.c:1664
+#: WWW/Library/Implementation/HTTP.c:1698
 msgid "Retrying with access authorization information."
 msgstr "Proovin uuesti kasutades autoriseerimise infot."
 
-#: WWW/Library/Implementation/HTTP.c:1676
+#: WWW/Library/Implementation/HTTP.c:1710
 msgid "Show the 401 message body?"
 msgstr "Näitan teate 401 keha?"
 
-#: WWW/Library/Implementation/HTTP.c:1719
+#: WWW/Library/Implementation/HTTP.c:1753
 msgid "Show the 407 message body?"
 msgstr "Näitan teate 407 keha?"
 
@@ -3164,7 +3164,7 @@ msgstr "Näitan teate 407 keha?"
 #. * Bad or unknown server_status number.  Take a chance and hope
 #. * there is something to display.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1819
+#: WWW/Library/Implementation/HTTP.c:1853
 msgid "Unknown status reply from server!"
 msgstr "Tundmatu oleku vastus serverilt!"
 
@@ -3428,30 +3428,30 @@ msgstr "võtme loomise väli"
 msgid "unknown form field"
 msgstr "tundmatu vormi väli"
 
-#: src/GridText.c:10020
+#: src/GridText.c:10015
 msgid "Can't open file for uploading"
 msgstr "Faili ei õnnestu üleslaadimiseks avada"
 
-#: src/GridText.c:11170
+#: src/GridText.c:11165
 #, c-format
 msgid "Submitting %s"
 msgstr "Postitan %s"
 
 #. ugliness has happened; inform user and do the best we can
-#: src/GridText.c:12318
+#: src/GridText.c:12313
 msgid "Hang Detect: TextAnchor struct corrupted - suggest aborting!"
 msgstr "Tuvastati hangumine: TextAnchor struktuur on vigane - soovitan katkestada!"
 
 #. don't show previous state
-#: src/GridText.c:12523
+#: src/GridText.c:12518
 msgid "Wrap lines to fit displayed area?"
 msgstr "Murran read et mahtuda ekraanile?"
 
-#: src/GridText.c:12575
+#: src/GridText.c:12570
 msgid "Very long lines have been wrapped!"
 msgstr "Väga pikad read on murtud!"
 
-#: src/GridText.c:13016
+#: src/GridText.c:13011
 msgid "Very long lines have been truncated!"
 msgstr "Väga pikad read on lõigatud!"
 
@@ -3539,7 +3539,7 @@ msgstr "ei"
 #.
 #: src/HTAlert.c:841
 msgid "Y/N/A/V"
-msgstr ""
+msgstr "J/E/A/M"
 
 #: src/HTML.c:5911
 msgid "Description:"
@@ -4125,7 +4125,7 @@ msgstr "Üks hetk, ..."
 
 #: src/LYLocal.c:2329
 msgid "Error building install args"
-msgstr "Viga install argumentide koostamisel"
+msgstr "Viga installi argumentide koostamisel"
 
 #: src/LYLocal.c:2344 src/LYLocal.c:2375
 #, c-format
@@ -4675,116 +4675,120 @@ msgstr "Luba kõik tüübid"
 msgid "gzip"
 msgstr "gzip"
 
-#: src/LYOptions.c:2388
+#: src/LYOptions.c:2386
+msgid "deflate"
+msgstr ""
+
+#: src/LYOptions.c:2389
 msgid "compress"
 msgstr "compress"
 
-#: src/LYOptions.c:2391
+#: src/LYOptions.c:2392
 msgid "bzip2"
 msgstr "bzip2"
 
-#: src/LYOptions.c:2393
+#: src/LYOptions.c:2394
 msgid "All"
 msgstr "Kõik"
 
-#: src/LYOptions.c:2658 src/LYOptions.c:2682
+#: src/LYOptions.c:2659 src/LYOptions.c:2683
 #, c-format
 msgid "Use %s to invoke the Options menu!"
 msgstr "Seadete menüü saamiseks kasutage %s!"
 
-#: src/LYOptions.c:3421
+#: src/LYOptions.c:3422
 msgid "(options marked with (!) will not be saved)"
 msgstr "((!) märgitud seadeid ei salvestata)"
 
-#: src/LYOptions.c:3429
+#: src/LYOptions.c:3430
 msgid "General Preferences"
 msgstr "Üldised seaded"
 
 #. ***************************************************************
 #. User Mode: SELECT
-#: src/LYOptions.c:3433
+#: src/LYOptions.c:3434
 msgid "User mode"
 msgstr "Kasutaja mood"
 
 #. Editor: INPUT
-#: src/LYOptions.c:3439
+#: src/LYOptions.c:3440
 msgid "Editor"
 msgstr "Toimeti"
 
 #. Search Type: SELECT
-#: src/LYOptions.c:3444
+#: src/LYOptions.c:3445
 msgid "Type of Search"
 msgstr "Otsingutüüp"
 
-#: src/LYOptions.c:3449
+#: src/LYOptions.c:3450
 msgid "Security and Privacy"
 msgstr "Turvalisus ja privaatsus"
 
 #. ***************************************************************
 #. Cookies: SELECT
-#: src/LYOptions.c:3453
+#: src/LYOptions.c:3454
 msgid "Cookies"
 msgstr "Präänikud"
 
 #. Cookie Prompting: SELECT
-#: src/LYOptions.c:3467
+#: src/LYOptions.c:3468
 msgid "Invalid-Cookie Prompting"
 msgstr "Vigase prääniku küsimine"
 
 #. SSL Prompting: SELECT
-#: src/LYOptions.c:3474
+#: src/LYOptions.c:3475
 msgid "SSL Prompting"
 msgstr "SSL küsimine"
 
-#: src/LYOptions.c:3480
+#: src/LYOptions.c:3481
 msgid "Keyboard Input"
 msgstr "Sisend klaviatuurilt"
 
 #. ***************************************************************
 #. Keypad Mode: SELECT
-#: src/LYOptions.c:3484
+#: src/LYOptions.c:3485
 msgid "Keypad mode"
 msgstr "Klahvistiku mood"
 
 #. Emacs keys: ON/OFF
-#: src/LYOptions.c:3490
+#: src/LYOptions.c:3491
 msgid "Emacs keys"
 msgstr "Emacs klahvid"
 
 #. VI Keys: ON/OFF
-#: src/LYOptions.c:3496
+#: src/LYOptions.c:3497
 msgid "VI keys"
 msgstr "VI klahvid"
 
 #. Line edit style: SELECT
 #. well, at least 2 line edit styles available
-#: src/LYOptions.c:3503
+#: src/LYOptions.c:3504
 msgid "Line edit style"
 msgstr "Reatoimeti mood"
 
 #. Keyboard layout: SELECT
-#: src/LYOptions.c:3515
+#: src/LYOptions.c:3516
 msgid "Keyboard layout"
 msgstr "Klaviatuuri asetus"
 
 #.
 #. * Display and Character Set
 #.
-#: src/LYOptions.c:3529
+#: src/LYOptions.c:3530
 msgid "Display and Character Set"
 msgstr "Ekraan ja kooditabel"
 
 #. Use locale-based character set: ON/OFF
-#: src/LYOptions.c:3534
+#: src/LYOptions.c:3535
 msgid "Use locale-based character set"
 msgstr "Kasuta lokaadi põhist kooditabelit"
 
 #. Display Character Set: SELECT
-#: src/LYOptions.c:3543
+#: src/LYOptions.c:3544
 msgid "Display character set"
 msgstr "Ekraani kooditabel"
 
-#: src/LYOptions.c:3574
+#: src/LYOptions.c:3575
 msgid "Assumed document character set"
 msgstr "Eeldatav dokumendi kooditabel"
 
@@ -4793,164 +4797,164 @@ msgstr "Eeldatav dokumendi kooditabel"
 #. * we split the header to make it more readable:
 #. * "CJK mode" for CJK display charsets, and "Raw 8-bit" for others.
 #.
-#: src/LYOptions.c:3594
+#: src/LYOptions.c:3595
 msgid "CJK mode"
 msgstr "CJK mood"
 
-#: src/LYOptions.c:3596
+#: src/LYOptions.c:3597
 msgid "Raw 8-bit"
 msgstr "Puhas 8-bitti"
 
 #. X Display: INPUT
-#: src/LYOptions.c:3604
+#: src/LYOptions.c:3605
 msgid "X Display"
 msgstr "X Ekraan"
 
 #.
 #. * Document Appearance
 #.
-#: src/LYOptions.c:3610
+#: src/LYOptions.c:3611
 msgid "Document Appearance"
 msgstr "Dokumendi esitamine"
 
-#: src/LYOptions.c:3616
+#: src/LYOptions.c:3617
 msgid "Show color"
 msgstr "Näita värve"
 
 #. Show cursor: ON/OFF
-#: src/LYOptions.c:3640
+#: src/LYOptions.c:3641
 msgid "Show cursor"
 msgstr "Näita kursorit"
 
 #. Underline links: ON/OFF
-#: src/LYOptions.c:3646
+#: src/LYOptions.c:3647
 msgid "Underline links"
 msgstr "Jooni viited"
 
 #. Show scrollbar: ON/OFF
-#: src/LYOptions.c:3653
+#: src/LYOptions.c:3654
 msgid "Show scrollbar"
 msgstr "Näita kerimisriba"
 
 #. Select Popups: ON/OFF
-#: src/LYOptions.c:3660
+#: src/LYOptions.c:3661
 msgid "Popups for select fields"
 msgstr "Hüpikud valikuväljadele"
 
 #. HTML error recovery: SELECT
-#: src/LYOptions.c:3666
+#: src/LYOptions.c:3667
 msgid "HTML error recovery"
 msgstr "HTML veatöötlus"
 
 #. Show Images: SELECT
-#: src/LYOptions.c:3672
+#: src/LYOptions.c:3673
 msgid "Show images"
 msgstr "Näita pilte"
 
 #. Verbose Images: ON/OFF
-#: src/LYOptions.c:3686
+#: src/LYOptions.c:3687
 msgid "Verbose images"
 msgstr "Verbaalsed pildid"
 
-#: src/LYOptions.c:3695
+#: src/LYOptions.c:3696
 msgid "Headers Transferred to Remote Servers"
 msgstr "Serverile saadetavad päised"
 
 #. ***************************************************************
 #. Mail Address: INPUT
-#: src/LYOptions.c:3699
+#: src/LYOptions.c:3700
 msgid "Personal mail address"
 msgstr "Isiklik e-posti aadress"
 
 #. Preferred media type: SELECT
-#: src/LYOptions.c:3704
+#: src/LYOptions.c:3705
 msgid "Preferred media type"
 msgstr "Eelistatud meedia tüüp"
 
 #. Preferred encoding: SELECT
-#: src/LYOptions.c:3710
+#: src/LYOptions.c:3711
 msgid "Preferred encoding"
 msgstr "Eelistatud kodeering"
 
 #. Preferred Document Character Set: INPUT
-#: src/LYOptions.c:3716
+#: src/LYOptions.c:3717
 msgid "Preferred document character set"
 msgstr "Eelistatuim dokumendi kooditabel"
 
 #. Preferred Document Language: INPUT
-#: src/LYOptions.c:3721
+#: src/LYOptions.c:3722
 msgid "Preferred document language"
 msgstr "Eelistatuim dokumendi keel"
 
-#: src/LYOptions.c:3727
+#: src/LYOptions.c:3728
 msgid "User-Agent header"
 msgstr "User-Agent päis"
 
 #.
 #. * Listing and Accessing Files
 #.
-#: src/LYOptions.c:3735
+#: src/LYOptions.c:3736
 msgid "Listing and Accessing Files"
 msgstr "Failide näitamine ja kasutamine"
 
 #. ***************************************************************
 #. FTP sort: SELECT
-#: src/LYOptions.c:3739
+#: src/LYOptions.c:3740
 msgid "FTP sort criteria"
 msgstr "FTP järjestamine"
 
 #. Local Directory Sort: SELECT
-#: src/LYOptions.c:3746
+#: src/LYOptions.c:3747
 msgid "Local directory sort criteria"
 msgstr "Lokaalse kataloogi järjestamine"
 
 #. Local Directory Order: SELECT
-#: src/LYOptions.c:3752
+#: src/LYOptions.c:3753
 msgid "Local directory sort order"
 msgstr "Lokaalse kataloogi järjestamine"
 
-#: src/LYOptions.c:3761
+#: src/LYOptions.c:3762
 msgid "Show dot files"
 msgstr "Näita punktiga faile"
 
-#: src/LYOptions.c:3769
+#: src/LYOptions.c:3770
 msgid "Execution links"
 msgstr "Täidetavad viited"
 
 #. Show transfer rate: SELECT
-#: src/LYOptions.c:3789
+#: src/LYOptions.c:3790
 msgid "Show transfer rate"
 msgstr "Näita laadimise kiirust"
 
 #.
 #. * Special Files and Screens
 #.
-#: src/LYOptions.c:3809
+#: src/LYOptions.c:3810
 msgid "Special Files and Screens"
 msgstr "Spetsiaalfailid ja ekraanid"
 
-#: src/LYOptions.c:3814
+#: src/LYOptions.c:3815
 msgid "Multi-bookmarks"
 msgstr "Järgede failid"
 
-#: src/LYOptions.c:3822
+#: src/LYOptions.c:3823
 msgid "Review/edit Bookmarks files"
 msgstr "vaata/toimeta järgede faile"
 
-#: src/LYOptions.c:3824
+#: src/LYOptions.c:3825
 msgid "Goto multi-bookmark menu"
 msgstr "Mine mitme-järje menüüsse"
 
-#: src/LYOptions.c:3826
+#: src/LYOptions.c:3827
 msgid "Bookmarks file"
 msgstr "Järgede fail"
 
 #. Visited Pages: SELECT
-#: src/LYOptions.c:3832
+#: src/LYOptions.c:3833
 msgid "Visited Pages"
 msgstr "Külastatud lehed"
 
-#: src/LYOptions.c:3837
+#: src/LYOptions.c:3838
 msgid "View the file "
 msgstr "Vaata faili"
 
@@ -5070,38 +5074,38 @@ msgstr "Lynx: ei saa startida, CERN reeglite fail %s ei ole kasutatav\n"
 msgid "(no name)"
 msgstr "(nimetu)"
 
-#: src/LYReadCFG.c:1772
+#: src/LYReadCFG.c:1773
 #, c-format
 msgid "More than %d nested lynx.cfg includes -- perhaps there is a loop?!?\n"
 msgstr "Rohkem kui %d lynx.cfg kaasamist -- vahest on tekkinud tsükkel?!?\n"
 
-#: src/LYReadCFG.c:1774
+#: src/LYReadCFG.c:1775
 #, c-format
 msgid "Last attempted include was '%s',\n"
 msgstr "Viimane kaasata üritatud fail oli '%s',\n"
 
-#: src/LYReadCFG.c:1775
+#: src/LYReadCFG.c:1776
 #, c-format
 msgid "included from '%s'.\n"
 msgstr "kaasatud failist '%s'.\n"
 
-#: src/LYReadCFG.c:2181 src/LYReadCFG.c:2194 src/LYReadCFG.c:2252
+#: src/LYReadCFG.c:2183 src/LYReadCFG.c:2196 src/LYReadCFG.c:2254
 msgid "The following is read from your lynx.cfg file."
 msgstr "Järgnev on loetud teie lynx.cfg failist."
 
-#: src/LYReadCFG.c:2182 src/LYReadCFG.c:2195
+#: src/LYReadCFG.c:2184 src/LYReadCFG.c:2197
 msgid "Please read the distribution"
 msgstr "Lisainfo jaoks lugege palun"
 
-#: src/LYReadCFG.c:2188 src/LYReadCFG.c:2198
+#: src/LYReadCFG.c:2190 src/LYReadCFG.c:2200
 msgid "for more comments."
 msgstr "paketis olevat faili."
 
-#: src/LYReadCFG.c:2234
+#: src/LYReadCFG.c:2236
 msgid "RELOAD THE CHANGES"
 msgstr "MUUTUSTE LAADIMINE"
 
-#: src/LYReadCFG.c:2242
+#: src/LYReadCFG.c:2244
 msgid "Your primary configuration"
 msgstr "Teie primaarsed seaded"
 
@@ -5158,9 +5162,8 @@ msgid "File size:"
 msgstr "Faili suurus"
 
 #: src/LYShowInfo.c:226
-#, fuzzy
 msgid "(bytes)"
-msgstr "baiti"
+msgstr "(baiti)"
 
 #.
 #. * Include date and time information.
@@ -5182,13 +5185,12 @@ msgid "Access Permissions"
 msgstr "Kasutamise õigused"
 
 #: src/LYShowInfo.c:278
-#, fuzzy
 msgid "Group:"
 msgstr "Grupp:"
 
 #: src/LYShowInfo.c:298
 msgid "World:"
-msgstr ""
+msgstr "Ülejäänud:"
 
 #: src/LYShowInfo.c:305
 msgid "File that you are currently viewing"
@@ -5204,7 +5206,7 @@ msgstr "Kooditabel:"
 
 #: src/LYShowInfo.c:333
 msgid "(assumed)"
-msgstr ""
+msgstr "(eeldatatkse)"
 
 #: src/LYShowInfo.c:340
 msgid "Server:"
@@ -5219,9 +5221,8 @@ msgid "Last Mod:"
 msgstr "Viimane muutmine:"
 
 #: src/LYShowInfo.c:351
-#, fuzzy
 msgid "Expires:"
-msgstr "&nbsp;Aegub:"
+msgstr "Aegub:"
 
 #: src/LYShowInfo.c:354
 msgid "Cache-Control:"
@@ -5304,9 +5305,8 @@ msgid "Enctype:"
 msgstr "Kodeering:"
 
 #: src/LYShowInfo.c:431
-#, fuzzy
 msgid "Action:"
-msgstr "Asukoht: "
+msgstr "Tegevus: "
 
 #: src/LYShowInfo.c:436
 msgid "(Form field)"
@@ -5317,9 +5317,8 @@ msgid "No Links on the current page"
 msgstr "Jooksval lehel ei ole viiteid"
 
 #: src/LYShowInfo.c:452
-#, fuzzy
 msgid "Server Headers:"
-msgstr "Server:"
+msgstr "Serveri päised:"
 
 #: src/LYStyle.c:286
 #, c-format
@@ -5404,7 +5403,7 @@ msgstr "Ei leie HOME kataloogi"
 msgid "Normally disabled.  See ENABLE_LYNXRC in lynx.cfg\n"
 msgstr "Tavaliselt blokeeritud. Vaadake lynx.cfg failis ENABLE_LYNXRC kohta\n"
 
-#: src/LYrcFile.c:317
+#: src/LYrcFile.c:318
 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"
@@ -5416,7 +5415,7 @@ msgstr ""
 "tähendab, et iga prääniku korral küsitakse kasutaja nõusolekut.\n"
 "Kõikide präänikute vastu võtmiseks kasutage väärtust \"TRUE\".\n"
 
-#: src/LYrcFile.c:324
+#: src/LYrcFile.c:325
 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"
@@ -5425,7 +5424,7 @@ msgstr ""
 "bookmark_file määrab vaikimisi järgede faili nime ja asukoha, kuhu\n"
 "kasutaja saab salvestada viiteid hilisemaks kasutamiseks.\n"
 
-#: src/LYrcFile.c:329
+#: src/LYrcFile.c:330
 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"
@@ -5435,7 +5434,7 @@ msgstr ""
 "'s' või '/' antud otsing tõstutundlikult. Väärtuse \"off\" korral on otsing\n"
 "tõstutundetu. Vaikimisi on tavaliselt \"off\".\n"
 
-#: src/LYrcFile.c:334
+#: src/LYrcFile.c:335
 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"
@@ -5449,7 +5448,7 @@ msgstr ""
 "lähendusi.\n"
 "Lubatud kooditabelid on:\n"
 
-#: src/LYrcFile.c:341
+#: src/LYrcFile.c:342
 msgid ""
 "cookie_accept_domains and cookie_reject_domains are comma-delimited\n"
 "lists of domains from which Lynx should automatically accept or reject\n"
@@ -5463,7 +5462,7 @@ msgstr ""
 "eelistatakse tagasi lükkamist. accept_all_cookies parameeter käib\n"
 "siinsetest määrangutest üle.\n"
 
-#: src/LYrcFile.c:349
+#: src/LYrcFile.c:350
 msgid ""
 "cookie_file specifies the file from which to read persistent cookies.\n"
 "The default is ~/.lynx_cookies.\n"
@@ -5471,7 +5470,7 @@ msgstr ""
 "cookie_file määrab faili, millest loetakse püsivad präänikud.\n"
 "Vaikeväärtus on ~/.lynx_cookies.\n"
 
-#: src/LYrcFile.c:354
+#: src/LYrcFile.c:355
 msgid ""
 "cookie_loose_invalid_domains, cookie_strict_invalid_domains, and\n"
 "cookie_query_invalid_domains are comma-delimited lists of which domains\n"
@@ -5488,7 +5487,7 @@ msgstr ""
 "lubatakse seada vigase tee või doomeni atribuudiga präänikuid. Kõikide\n"
 "doomenite korral küsitakse vigase tee või doomeni korral luba kasutajalt.\n"
 
-#: src/LYrcFile.c:368
+#: src/LYrcFile.c:369
 msgid ""
 "dir_list_order specifies the directory list order under DIRED_SUPPORT\n"
 "(if implemented).  The default is \"ORDER_BY_NAME\"\n"
@@ -5496,7 +5495,7 @@ msgstr ""
 "dir_list_order määrab kataloogi esituse järjestuse DIRED_SUPPORT sees\n"
 "(kui on realiseeritud).  Vaikimisi on \"ORDER_BY_NAME\"\n"
 
-#: src/LYrcFile.c:373
+#: src/LYrcFile.c:374
 msgid ""
 "dir_list_styles specifies the directory list style under DIRED_SUPPORT\n"
 "(if implemented).  The default is \"MIXED_STYLE\", which sorts both\n"
@@ -5509,7 +5508,7 @@ msgstr ""
 "järjestab esimesteks failid ja \"DIRECTORIES_FIRST\" järjestab esimesteks\n"
 "kataloogid.\n"
 
-#: src/LYrcFile.c:381
+#: src/LYrcFile.c:382
 msgid ""
 "If emacs_keys is to \"on\" then the normal EMACS movement keys:\n"
 "  ^N = down    ^P = up\n"
@@ -5521,7 +5520,7 @@ msgstr ""
 "  ^N = alla     ^P = üles\n"
 "  ^B = vasakule ^F = paremale\n"
 
-#: src/LYrcFile.c:387
+#: src/LYrcFile.c:388
 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"
@@ -5533,7 +5532,7 @@ msgstr ""
 "failide toimetamine on blokeeritud, välja arvatud juhul, kui toimeti\n"
 "on määratud käsureal, ja kirjade saatmisel kasutatakse sisemist toimetit. \n"
 
-#: src/LYrcFile.c:393
+#: src/LYrcFile.c:394
 msgid ""
 "The file_sorting_method specifies which value to sort on when viewing\n"
 "file lists such as FTP directories.  The options are:\n"
@@ -5549,7 +5548,7 @@ msgstr ""
 "   BY_SIZE     -- järjestab failide suuruste järgi\n"
 "   BY_DATE     -- järjestab failide aegade järgi\n"
 
-#: src/LYrcFile.c:411
+#: src/LYrcFile.c:412
 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"
@@ -5575,7 +5574,7 @@ msgstr ""
 "\n"
 "Current lineedit modes are:\n"
 
-#: src/LYrcFile.c:429
+#: src/LYrcFile.c:430
 msgid ""
 "The following allow you to define sub-bookmark files and descriptions.\n"
 "The format is multi_bookmark<capital_letter>=<filename>,<description>\n"
@@ -5588,7 +5587,7 @@ msgstr ""
 "Alustatakse seadega \"multi_bookmarkB\", kuna 'A' on vaikeväärtus\n"
 "(vaadake ülaltpoolt).\n"
 
-#: src/LYrcFile.c:435
+#: src/LYrcFile.c:436
 msgid ""
 "personal_mail_address specifies your personal mail address.  The\n"
 "address will be sent during HTTP file transfers for authorization and\n"
@@ -5605,7 +5604,7 @@ msgstr ""
 "väärtuseks TRUE või kasutage -nofrom käsurea võtit. Selle välja võib\n"
 "jätta ka tühjaks, kuid siis ei kasutata seda ka kommentaaride saatmisel.\n"
 
-#: src/LYrcFile.c:444
+#: src/LYrcFile.c:445
 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"
@@ -5631,7 +5630,7 @@ msgstr ""
 "veateatega, lubatud on aga ka vastata mittesoovitud kooditabelit kasutava\n"
 "failiga.\n"
 
-#: src/LYrcFile.c:460
+#: src/LYrcFile.c:461
 msgid ""
 "preferred_language specifies the language in MIME notation (e.g., en,\n"
 "fr, may be a comma-separated list in decreasing preference)\n"
@@ -5645,7 +5644,7 @@ msgstr ""
 "Kui fail antud keeles on olemas, server saadab selle. Kui pole,\n"
 "saadab faili oma vaikimisi keeles.\n"
 
-#: src/LYrcFile.c:471
+#: src/LYrcFile.c:472
 msgid ""
 "If run_all_execution_links is set \"on\" then all local execution links\n"
 "will be executed when they are selected.\n"
@@ -5666,7 +5665,7 @@ msgstr ""
 "          ohustada teie süsteemi muul moel. Väärtust \"on\" võib kasutada\n"
 "          ainult juhul, kui vaatate usaldatavatest allikatest pärit infot.\n"
 
-#: src/LYrcFile.c:482
+#: src/LYrcFile.c:483
 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"
@@ -5692,7 +5691,7 @@ msgstr ""
 "          ohustada teie süsteemi muul moel. Väärtust \"on\" võib kasutada\n"
 "          ainult juhul, kui vaatate usaldatavatest allikatest pärit infot.\n"
 
-#: src/LYrcFile.c:500
+#: src/LYrcFile.c:501
 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"
@@ -5709,7 +5708,7 @@ msgstr ""
 "vaikeväärtuse hüpikmenüü ja väärtus \"off\" määrab raadionuppude loendi\n"
 "kasutamise. Vaikeväärtust saab üle määrata käsurea lülitiga -popup.\n"
 
-#: src/LYrcFile.c:510
+#: src/LYrcFile.c:511
 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"
@@ -5743,7 +5742,7 @@ msgstr ""
 "seadega. Kui seaded salvestatakse, käsitletakse \"Näita värve\" omaduse\n"
 "väärtusi \"on\" ja \"off\" kui väärtust \"default\".\n"
 
-#: src/LYrcFile.c:527
+#: src/LYrcFile.c:528
 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"
@@ -5763,7 +5762,7 @@ msgstr ""
 "vasakule ja on vaikeväärtus ning \"off\" määrab kursori 'peitmise'.\n"
 "vaikeväärtust saab ümber määrata käsurea lülitiga -show_cursor.\n"
 
-#: src/LYrcFile.c:538
+#: src/LYrcFile.c:539
 msgid ""
 "show_dotfiles specifies that the directory listing should include\n"
 "\"hidden\" (dot) files/directories.  If set \"on\", this will be\n"
@@ -5778,7 +5777,7 @@ msgstr ""
 "Kui punktiga algavate failide näitamine on keelatud, ei lubata neid\n"
 "ka Lynx vahenditega luua.\n"
 
-#: src/LYrcFile.c:549
+#: src/LYrcFile.c:550
 msgid ""
 "If sub_bookmarks is not turned \"off\", and multiple bookmarks have\n"
 "been defined (see below), then all bookmark operations will first\n"
@@ -5798,7 +5797,7 @@ msgstr ""
 "kasutab 'v'aata järgi käsklus menüü asemel olekurea viipa. Kui selle\n"
 "seade väärtus on \"standard\", näidatakse alati menüüd.\n"
 
-#: src/LYrcFile.c:563
+#: src/LYrcFile.c:564
 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"
@@ -5814,7 +5813,7 @@ msgstr ""
 "\"ADVANCED\" korral näidatakse ekraani alaosas parajasti vaadeldava\n"
 "viite URLi.\n"
 
-#: src/LYrcFile.c:572
+#: src/LYrcFile.c:573
 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"
@@ -5824,7 +5823,7 @@ msgstr ""
 "[INLINE], [LINK] või [IMAGE] asemel.\n"
 "Vaadake ka lynx.cfg failis VERBOSE_IMAGES seadet.\n"
 
-#: src/LYrcFile.c:577
+#: src/LYrcFile.c:578
 msgid ""
 "If vi_keys is set to \"on\", then the normal VI movement keys:\n"
 "  j = down    k = up\n"
@@ -5840,7 +5839,7 @@ msgstr ""
 "Suured 'H', 'J' ja 'K' aktiveerivad ikka vastavalt abiinfo, hüpped\n"
 "ja klahvitabeli ekraani.\n"
 
-#: src/LYrcFile.c:585
+#: src/LYrcFile.c:586
 msgid ""
 "The visited_links setting controls how Lynx organizes the information\n"
 "in the Visited Links Page.\n"
@@ -5848,7 +5847,7 @@ msgstr ""
 "visited_links seade kontrollib, kuidas Lynx organiseerib infot külastatud\n"
 "viidete lehel.\n"
 
-#: src/LYrcFile.c:803
+#: src/LYrcFile.c:804
 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"
@@ -5866,7 +5865,7 @@ msgstr ""
 "ning ka vastavad klaviatuuri numbrid toimivad nooltena sõltumata\n"
 "numlock seadest.\n"
 
-#: src/LYrcFile.c:812
+#: src/LYrcFile.c:813
 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"
@@ -5874,7 +5873,7 @@ msgstr ""
 "Kui keypad_mode väärtus on \"LINKS_ARE_NUMBERED\", ilmuvad iga viite\n"
 "kõrvale numbrid ja viidete valimiseks kasutatakse numbreid.\n"
 
-#: src/LYrcFile.c:816
+#: src/LYrcFile.c:817
 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"
@@ -5893,7 +5892,7 @@ msgstr ""
 "Viidete nimekirjad ja loendikäskude väljundid nummerdavad samuti\n"
 "vormide sisendeid.\n"
 
-#: src/LYrcFile.c:825
+#: src/LYrcFile.c:826
 msgid ""
 "NOTE: Some fixed format documents may look disfigured when\n"
 "\"LINKS_ARE_NUMBERED\" or \"LINKS_AND_FORM_FIELDS_ARE_NUMBERED\" are\n"
@@ -5903,7 +5902,7 @@ msgstr ""
 "\"LINKS_ARE_NUMBERED\" või \"LINKS_AND_FORM_FIELDS_ARE_NUMBERED\"\n"
 "kasutamisel segane.\n"
 
-#: src/LYrcFile.c:857
+#: src/LYrcFile.c:858
 msgid ""
 "Lynx User Defaults File\n"
 "\n"
diff --git a/po/fr.po b/po/fr.po
index e2fa70df..5dd8ff92 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -29,7 +29,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lynx 2.8.2\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-10-10 18:51-0400\n"
+"POT-Creation-Date: 2004-10-17 16:29-0400\n"
 "PO-Revision-Date: 1999-06-05 15:18-0400\n"
 "Last-Translator: Jim Spath <jspath@bcpl.net>\n"
 "Language-Team: (none yet, address for now:) French <lynx-dev@nongnu.org>\n"
@@ -2852,7 +2852,7 @@ msgstr "Document avec contenu POST non trouvé dans l'antémémoire. Recommencer?"
 msgid "Loading failed, use a previous copy."
 msgstr ""
 
-#: WWW/Library/Implementation/HTAccess.c:1045 src/GridText.c:8301
+#: WWW/Library/Implementation/HTAccess.c:1045 src/GridText.c:8296
 msgid "Loading incomplete."
 msgstr "Chargement incomplet."
 
@@ -2921,7 +2921,7 @@ msgstr "%d bytes téléchargées (%5d)"
 msgid "connect for data"
 msgstr "connection pour données"
 
-#: WWW/Library/Implementation/HTFTP.c:3738
+#: WWW/Library/Implementation/HTFTP.c:3741
 msgid "Receiving FTP file."
 msgstr "Réception du fichier FTP"
 
@@ -3078,7 +3078,7 @@ msgstr "L'adresse a un numéro de port invalide"
 msgid "Address length looks invalid"
 msgstr "La longueur de l'adresse semble invalide"
 
-#: WWW/Library/Implementation/HTTCP.c:1551 WWW/Library/Implementation/HTTCP.c:1569
+#: WWW/Library/Implementation/HTTCP.c:1552 WWW/Library/Implementation/HTTCP.c:1570
 #, c-format
 msgid "Unable to locate remote host %s."
 msgstr "Impossible de localiser l'hôte distant %s"
@@ -3087,39 +3087,39 @@ msgstr "Impossible de localiser l'hôte distant %s"
 #. * but not HTAlert, because typically there will be other
 #. * alerts from the callers.  - kw
 #.
-#: WWW/Library/Implementation/HTTCP.c:1566 WWW/Library/Implementation/HTTelnet.c:108
+#: WWW/Library/Implementation/HTTCP.c:1567 WWW/Library/Implementation/HTTelnet.c:108
 #, c-format
 msgid "Invalid hostname %s"
 msgstr "Nom d'hôte invalide: %s"
 
 # First %s will be FTP, HTTP or other protocol and second %s will be hostname
-#: WWW/Library/Implementation/HTTCP.c:1580
+#: WWW/Library/Implementation/HTTCP.c:1581
 #, c-format
 msgid "Making %s connection to %s"
 msgstr "Connexion %s à %s "
 
-#: WWW/Library/Implementation/HTTCP.c:1591
+#: WWW/Library/Implementation/HTTCP.c:1592
 msgid "socket failed."
 msgstr "la socket a échouée"
 
-#: WWW/Library/Implementation/HTTCP.c:1604
+#: WWW/Library/Implementation/HTTCP.c:1605
 #, c-format
 msgid "socket failed: family %d addr %s port %s."
 msgstr "La socket a échouée: famille %d adresse %s port %s."
 
-#: WWW/Library/Implementation/HTTCP.c:1628
+#: WWW/Library/Implementation/HTTCP.c:1629
 msgid "Could not make connection non-blocking."
 msgstr "Impossible d'établir une connection non bloquante"
 
-#: WWW/Library/Implementation/HTTCP.c:1697
+#: WWW/Library/Implementation/HTTCP.c:1698
 msgid "Connection failed (too many retries)."
 msgstr "Connection impossible (trop d'essais successifs)"
 
-#: WWW/Library/Implementation/HTTCP.c:1896
+#: WWW/Library/Implementation/HTTCP.c:1897
 msgid "Could not restore socket to blocking."
 msgstr "Impossible de rétablir le blocage sur la socket"
 
-#: WWW/Library/Implementation/HTTCP.c:1962
+#: WWW/Library/Implementation/HTTCP.c:1963
 msgid "Socket read failed for 180,000 tries."
 msgstr "La lecture de la socket a échouée pour 180,000 essais"
 
@@ -3128,49 +3128,49 @@ msgstr "La lecture de la socket a échouée pour 180,000 essais"
 msgid "Address contains a username: %s"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:497
+#: WWW/Library/Implementation/HTTP.c:531
 msgid "This client does not contain support for HTTPS URLs."
 msgstr "Ce client n'est pas conçu pour traiter les URL HTTPS"
 
-#: WWW/Library/Implementation/HTTP.c:522
+#: WWW/Library/Implementation/HTTP.c:556
 msgid "Unable to connect to remote host."
 msgstr "Impossible d'établir une connexion à l'hôte distant"
 
 # First %s will be FTP, HTTP or other protocol and second %s will be hostname
-#: WWW/Library/Implementation/HTTP.c:544
+#: WWW/Library/Implementation/HTTP.c:578
 #, fuzzy
 msgid "Retrying connection without TLS."
 msgstr "Connexion %s à %s "
 
-#: WWW/Library/Implementation/HTTP.c:587
+#: WWW/Library/Implementation/HTTP.c:621
 msgid "SSL error:Can't find common name in certificate-Continue?"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:604
+#: WWW/Library/Implementation/HTTP.c:638
 #, c-format
 msgid "SSL error:host(%s)!=cert(%s)-Continue?"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:616
+#: WWW/Library/Implementation/HTTP.c:650
 #, c-format
 msgid "Secure %d-bit %s (%s) HTTP connection"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1086
+#: WWW/Library/Implementation/HTTP.c:1120
 msgid "Sending HTTP request."
 msgstr "Envoi de la requête HTTP"
 
-#: WWW/Library/Implementation/HTTP.c:1125
+#: WWW/Library/Implementation/HTTP.c:1159
 msgid "Unexpected network write error; connection aborted."
 msgstr "Erreur d'écriture réseau inattendue: connection annulée."
 
-#: WWW/Library/Implementation/HTTP.c:1131
+#: WWW/Library/Implementation/HTTP.c:1165
 msgid "HTTP request sent; waiting for response."
 msgstr "Demande acheminée au serveur. Veuillez attendre"
 
 # END of Permit FORM
 # More progress strings follow
-#: WWW/Library/Implementation/HTTP.c:1199
+#: WWW/Library/Implementation/HTTP.c:1233
 msgid "Unexpected network read error; connection aborted."
 msgstr "Erreur de lecture inattendue; connexion interrompue"
 
@@ -3183,7 +3183,7 @@ msgstr "Erreur de lecture inattendue; connexion interrompue"
 #. * 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:1393
+#: WWW/Library/Implementation/HTTP.c:1427
 msgid "Got unexpected Informational Status."
 msgstr "Réception d'information de statut inattendue"
 
@@ -3193,7 +3193,7 @@ msgstr "Réception d'information de statut inattendue"
 #. * content.  We'll instruct the user to do that, and
 #. * restore the current document.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1427
+#: WWW/Library/Implementation/HTTP.c:1461
 msgid "Request fulfilled.  Reset Content."
 msgstr "Requête fructueuse. Restauration du contenu."
 
@@ -3203,27 +3203,27 @@ msgstr "Requête fructueuse. Restauration du contenu."
 #. * 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:1544
+#: WWW/Library/Implementation/HTTP.c:1578
 msgid "Got unexpected 304 Not Modified status."
 msgstr "Réception inattendue d'un état non modifié 304"
 
-#: WWW/Library/Implementation/HTTP.c:1607
+#: WWW/Library/Implementation/HTTP.c:1641
 msgid "Redirection of POST content requires user approval."
 msgstr "La redirection d'un contenu POST nécessite l'accord de l'utilisateur"
 
-#: WWW/Library/Implementation/HTTP.c:1622
+#: WWW/Library/Implementation/HTTP.c:1656
 msgid "Have POST content.  Treating Permanent Redirection as Temporary.\n"
 msgstr "Contenu POST. La redirection permanente est traitée comme temporaire.\n"
 
-#: WWW/Library/Implementation/HTTP.c:1664
+#: WWW/Library/Implementation/HTTP.c:1698
 msgid "Retrying with access authorization information."
 msgstr "Nouvel essai avec information d'autorisation d'accès"
 
-#: WWW/Library/Implementation/HTTP.c:1676
+#: WWW/Library/Implementation/HTTP.c:1710
 msgid "Show the 401 message body?"
 msgstr "Visualiser le corps du message 401 ?"
 
-#: WWW/Library/Implementation/HTTP.c:1719
+#: WWW/Library/Implementation/HTTP.c:1753
 msgid "Show the 407 message body?"
 msgstr "Afficher le corps du message 407?"
 
@@ -3231,7 +3231,7 @@ msgstr "Afficher le corps du message 407?"
 #. * Bad or unknown server_status number.  Take a chance and hope
 #. * there is something to display.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1819
+#: WWW/Library/Implementation/HTTP.c:1853
 msgid "Unknown status reply from server!"
 msgstr "Réponse d'état inconnue reçue du serveur"
 
@@ -3493,31 +3493,31 @@ msgid "unknown form field"
 msgstr "champ de formulaire inconnu"
 
 # WWW/Libary/Implementation/HTFile.c
-#: src/GridText.c:10020
+#: src/GridText.c:10015
 #, fuzzy
 msgid "Can't open file for uploading"
 msgstr "Impossible d'ouvrir le fichier pour décompression."
 
-#: src/GridText.c:11170
+#: src/GridText.c:11165
 #, c-format
 msgid "Submitting %s"
 msgstr "Envoi de %s"
 
 #. ugliness has happened; inform user and do the best we can
-#: src/GridText.c:12318
+#: src/GridText.c:12313
 msgid "Hang Detect: TextAnchor struct corrupted - suggest aborting!"
 msgstr ""
 
 #. don't show previous state
-#: src/GridText.c:12523
+#: src/GridText.c:12518
 msgid "Wrap lines to fit displayed area?"
 msgstr "Raccourcir les lignes pour correspondre à la zone d'affichage ?"
 
-#: src/GridText.c:12575
+#: src/GridText.c:12570
 msgid "Very long lines have been wrapped!"
 msgstr "Les très longues lignes ont été es tassées"
 
-#: src/GridText.c:13016
+#: src/GridText.c:13011
 msgid "Very long lines have been truncated!"
 msgstr "Les très longues lignes ont été es tronquées"
 
@@ -4774,95 +4774,99 @@ msgstr "Accepter les changements"
 msgid "gzip"
 msgstr ""
 
-#: src/LYOptions.c:2388
+#: src/LYOptions.c:2386
+msgid "deflate"
+msgstr ""
+
+#: src/LYOptions.c:2389
 msgid "compress"
 msgstr ""
 
-#: src/LYOptions.c:2391
+#: src/LYOptions.c:2392
 msgid "bzip2"
 msgstr ""
 
-#: src/LYOptions.c:2393
+#: src/LYOptions.c:2394
 msgid "All"
 msgstr ""
 
-#: src/LYOptions.c:2658 src/LYOptions.c:2682
+#: src/LYOptions.c:2659 src/LYOptions.c:2683
 #, c-format
 msgid "Use %s to invoke the Options menu!"
 msgstr "Utilisez %s pour invoquer le menu des Options."
 
-#: src/LYOptions.c:3421
+#: src/LYOptions.c:3422
 msgid "(options marked with (!) will not be saved)"
 msgstr ""
 
-#: src/LYOptions.c:3429
+#: src/LYOptions.c:3430
 msgid "General Preferences"
 msgstr "Références"
 
 #. ***************************************************************
 #. User Mode: SELECT
-#: src/LYOptions.c:3433
+#: src/LYOptions.c:3434
 msgid "User mode"
 msgstr "Mode utilisateur"
 
 #. Editor: INPUT
-#: src/LYOptions.c:3439
+#: src/LYOptions.c:3440
 msgid "Editor"
 msgstr "Éditeur"
 
 #. Search Type: SELECT
-#: src/LYOptions.c:3444
+#: src/LYOptions.c:3445
 msgid "Type of Search"
 msgstr "Pour la recherche"
 
-#: src/LYOptions.c:3449
+#: src/LYOptions.c:3450
 msgid "Security and Privacy"
 msgstr ""
 
 #. ***************************************************************
 #. Cookies: SELECT
-#: src/LYOptions.c:3453
+#: src/LYOptions.c:3454
 msgid "Cookies"
 msgstr "Cookies"
 
 #. Cookie Prompting: SELECT
-#: src/LYOptions.c:3467
+#: src/LYOptions.c:3468
 msgid "Invalid-Cookie Prompting"
 msgstr ""
 
 #. SSL Prompting: SELECT
-#: src/LYOptions.c:3474
+#: src/LYOptions.c:3475
 msgid "SSL Prompting"
 msgstr ""
 
-#: src/LYOptions.c:3480
+#: src/LYOptions.c:3481
 msgid "Keyboard Input"
 msgstr "Entrée du clavier"
 
 #. ***************************************************************
 #. Keypad Mode: SELECT
-#: src/LYOptions.c:3484
+#: src/LYOptions.c:3485
 msgid "Keypad mode"
 msgstr "Pavé numérique"
 
 #. Emacs keys: ON/OFF
-#: src/LYOptions.c:3490
+#: src/LYOptions.c:3491
 msgid "Emacs keys"
 msgstr "Touches emacs"
 
 #. VI Keys: ON/OFF
-#: src/LYOptions.c:3496
+#: src/LYOptions.c:3497
 msgid "VI keys"
 msgstr "Touches vi"
 
 #. Line edit style: SELECT
 #. well, at least 2 line edit styles available
-#: src/LYOptions.c:3503
+#: src/LYOptions.c:3504
 msgid "Line edit style"
 msgstr ""
 
 #. Keyboard layout: SELECT
-#: src/LYOptions.c:3515
+#: src/LYOptions.c:3516
 #, fuzzy
 msgid "Keyboard layout"
 msgstr "Entrée du clavier"
@@ -4870,22 +4874,22 @@ msgstr "Entrée du clavier"
 #.
 #. * Display and Character Set
 #.
-#: src/LYOptions.c:3529
+#: src/LYOptions.c:3530
 msgid "Display and Character Set"
 msgstr "Variable d'affichage"
 
 #. Use locale-based character set: ON/OFF
-#: src/LYOptions.c:3534
+#: src/LYOptions.c:3535
 #, fuzzy
 msgid "Use locale-based character set"
 msgstr "charset présumé du document:"
 
 #. Display Character Set: SELECT
-#: src/LYOptions.c:3543
+#: src/LYOptions.c:3544
 msgid "Display character set"
 msgstr "Afficher le charset"
 
-#: src/LYOptions.c:3574
+#: src/LYOptions.c:3575
 msgid "Assumed document character set"
 msgstr "charset présumé du document:"
 
@@ -4894,169 +4898,169 @@ msgstr "charset présumé du document:"
 #. * we split the header to make it more readable:
 #. * "CJK mode" for CJK display charsets, and "Raw 8-bit" for others.
 #.
-#: src/LYOptions.c:3594
+#: src/LYOptions.c:3595
 msgid "CJK mode"
 msgstr ""
 
-#: src/LYOptions.c:3596
+#: src/LYOptions.c:3597
 msgid "Raw 8-bit"
 msgstr "Mode 8-bit"
 
 #. X Display: INPUT
-#: src/LYOptions.c:3604
+#: src/LYOptions.c:3605
 msgid "X Display"
 msgstr "X Display"
 
 #.
 #. * Document Appearance
 #.
-#: src/LYOptions.c:3610
+#: src/LYOptions.c:3611
 msgid "Document Appearance"
 msgstr "Apparence du document"
 
-#: src/LYOptions.c:3616
+#: src/LYOptions.c:3617
 msgid "Show color"
 msgstr "Afficher les couleurs"
 
 #. Show cursor: ON/OFF
-#: src/LYOptions.c:3640
+#: src/LYOptions.c:3641
 msgid "Show cursor"
 msgstr "Afficher le curseur"
 
 #. Underline links: ON/OFF
-#: src/LYOptions.c:3646
+#: src/LYOptions.c:3647
 #, fuzzy
 msgid "Underline links"
 msgstr "Liens cachés :"
 
 #. Show scrollbar: ON/OFF
-#: src/LYOptions.c:3653
+#: src/LYOptions.c:3654
 #, fuzzy
 msgid "Show scrollbar"
 msgstr "Afficher les couleurs"
 
 #. Select Popups: ON/OFF
-#: src/LYOptions.c:3660
+#: src/LYOptions.c:3661
 msgid "Popups for select fields"
 msgstr "Fenêtre popup pour les champs sélectionnés."
 
 #. HTML error recovery: SELECT
-#: src/LYOptions.c:3666
+#: src/LYOptions.c:3667
 msgid "HTML error recovery"
 msgstr "Reprise d'une erreur HTML"
 
 #. Show Images: SELECT
-#: src/LYOptions.c:3672
+#: src/LYOptions.c:3673
 msgid "Show images"
 msgstr "Montrer les images"
 
 #. Verbose Images: ON/OFF
-#: src/LYOptions.c:3686
+#: src/LYOptions.c:3687
 msgid "Verbose images"
 msgstr "Images verbeuses"
 
-#: src/LYOptions.c:3695
+#: src/LYOptions.c:3696
 msgid "Headers Transferred to Remote Servers"
 msgstr "Les headers sont transférés aux serveurs distants"
 
 #. ***************************************************************
 #. Mail Address: INPUT
-#: src/LYOptions.c:3699
+#: src/LYOptions.c:3700
 msgid "Personal mail address"
 msgstr "Adresse email personnelle"
 
 #. Preferred media type: SELECT
-#: src/LYOptions.c:3704
+#: src/LYOptions.c:3705
 #, fuzzy
 msgid "Preferred media type"
 msgstr "%d bytes transférés"
 
 #. Preferred encoding: SELECT
-#: src/LYOptions.c:3710
+#: src/LYOptions.c:3711
 #, fuzzy
 msgid "Preferred encoding"
 msgstr "Langue préférée"
 
 #. Preferred Document Character Set: INPUT
-#: src/LYOptions.c:3716
+#: src/LYOptions.c:3717
 msgid "Preferred document character set"
 msgstr "Jeu de caractères préféré"
 
 #. Preferred Document Language: INPUT
-#: src/LYOptions.c:3721
+#: src/LYOptions.c:3722
 msgid "Preferred document language"
 msgstr "Langue préférée"
 
-#: src/LYOptions.c:3727
+#: src/LYOptions.c:3728
 msgid "User-Agent header"
 msgstr "Header 'User-Agent'"
 
 #.
 #. * Listing and Accessing Files
 #.
-#: src/LYOptions.c:3735
+#: src/LYOptions.c:3736
 msgid "Listing and Accessing Files"
 msgstr "Listes et acces aux fichiers"
 
 #. ***************************************************************
 #. FTP sort: SELECT
-#: src/LYOptions.c:3739
+#: src/LYOptions.c:3740
 msgid "FTP sort criteria"
 msgstr "Critères de tri FTP"
 
 #. Local Directory Sort: SELECT
-#: src/LYOptions.c:3746
+#: src/LYOptions.c:3747
 msgid "Local directory sort criteria"
 msgstr "Critère de tri des répertoires locaux."
 
 #. Local Directory Order: SELECT
-#: src/LYOptions.c:3752
+#: src/LYOptions.c:3753
 #, fuzzy
 msgid "Local directory sort order"
 msgstr "Critère de tri des répertoires locaux."
 
-#: src/LYOptions.c:3761
+#: src/LYOptions.c:3762
 msgid "Show dot files"
 msgstr "Montrer les fichiers cachés"
 
-#: src/LYOptions.c:3769
+#: src/LYOptions.c:3770
 msgid "Execution links"
 msgstr "Liens à éxécuter"
 
 #. Show transfer rate: SELECT
-#: src/LYOptions.c:3789
+#: src/LYOptions.c:3790
 msgid "Show transfer rate"
 msgstr "Transfert de données terminé"
 
 #.
 #. * Special Files and Screens
 #.
-#: src/LYOptions.c:3809
+#: src/LYOptions.c:3810
 msgid "Special Files and Screens"
 msgstr "Fichiers et écrans spéciaux."
 
-#: src/LYOptions.c:3814
+#: src/LYOptions.c:3815
 msgid "Multi-bookmarks"
 msgstr "Bookmarks multiples"
 
-#: src/LYOptions.c:3822
+#: src/LYOptions.c:3823
 msgid "Review/edit Bookmarks files"
 msgstr "Revoir/Éditer les fichiers Bookmarks"
 
-#: src/LYOptions.c:3824
+#: src/LYOptions.c:3825
 msgid "Goto multi-bookmark menu"
 msgstr "Aller au menu multi-bookmarks"
 
-#: src/LYOptions.c:3826
+#: src/LYOptions.c:3827
 msgid "Bookmarks file"
 msgstr "Fichier de Bookmarks"
 
 #. Visited Pages: SELECT
-#: src/LYOptions.c:3832
+#: src/LYOptions.c:3833
 msgid "Visited Pages"
 msgstr "la Page des liens activés"
 
-#: src/LYOptions.c:3837
+#: src/LYOptions.c:3838
 #, fuzzy
 msgid "View the file "
 msgstr "Envoyer le fichier par courrier"
@@ -5177,38 +5181,38 @@ msgstr "Lynx: impossible de démarrer. Le fichier de règles CERN %s n'est pas acc
 msgid "(no name)"
 msgstr "(pas de nom)"
 
-#: src/LYReadCFG.c:1772
+#: src/LYReadCFG.c:1773
 #, c-format
 msgid "More than %d nested lynx.cfg includes -- perhaps there is a loop?!?\n"
 msgstr "Plus de %d inclusions de lynx.cfg imbriquées. Peut être y a t'il une boucle ?\n"
 
-#: src/LYReadCFG.c:1774
+#: src/LYReadCFG.c:1775
 #, c-format
 msgid "Last attempted include was '%s',\n"
 msgstr "Le dernier include tenté était: '%s',\n"
 
-#: src/LYReadCFG.c:1775
+#: src/LYReadCFG.c:1776
 #, c-format
 msgid "included from '%s'.\n"
 msgstr "include de '%s'.\n"
 
-#: src/LYReadCFG.c:2181 src/LYReadCFG.c:2194 src/LYReadCFG.c:2252
+#: src/LYReadCFG.c:2183 src/LYReadCFG.c:2196 src/LYReadCFG.c:2254
 msgid "The following is read from your lynx.cfg file."
 msgstr "Les données suivantes sont lues à partie de votre fichier lynx.cfg."
 
-#: src/LYReadCFG.c:2182 src/LYReadCFG.c:2195
+#: src/LYReadCFG.c:2184 src/LYReadCFG.c:2197
 msgid "Please read the distribution"
 msgstr "Merci de lire la distribution"
 
-#: src/LYReadCFG.c:2188 src/LYReadCFG.c:2198
+#: src/LYReadCFG.c:2190 src/LYReadCFG.c:2200
 msgid "for more comments."
 msgstr "pour plus de commentaires."
 
-#: src/LYReadCFG.c:2234
+#: src/LYReadCFG.c:2236
 msgid "RELOAD THE CHANGES"
 msgstr "RECHARGER LES MODIFICATIONS"
 
-#: src/LYReadCFG.c:2242
+#: src/LYReadCFG.c:2244
 msgid "Your primary configuration"
 msgstr "Votre configuration principale"
 
@@ -5512,7 +5516,7 @@ msgstr ""
 msgid "Normally disabled.  See ENABLE_LYNXRC in lynx.cfg\n"
 msgstr ""
 
-#: src/LYrcFile.c:317
+#: src/LYrcFile.c:318
 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"
@@ -5520,7 +5524,7 @@ msgid ""
 "all cookies.\n"
 msgstr ""
 
-#: src/LYrcFile.c:324
+#: src/LYrcFile.c:325
 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"
@@ -5530,7 +5534,7 @@ msgstr ""
 "dans lequel l'utilisateur peut copier des liens pour un accès rapide\n"
 "ultérieurement.\n"
 
-#: src/LYrcFile.c:329
+#: src/LYrcFile.c:330
 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"
@@ -5540,7 +5544,7 @@ msgstr ""
 "moyen des touches 's' ou '/', la recherche tient compte des maj./min. au lieu\n"
 "de reconnaître tous les caractères. La valeur par défaut est «DÉSACTIVÉ».\n"
 
-#: src/LYrcFile.c:334
+#: src/LYrcFile.c:335
 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"
@@ -5554,7 +5558,7 @@ msgstr ""
 "bits différent ou utiliser les caractères approximatifs 7 bits.  Les jeux\n"
 "de caractères valides courants sont :\n"
 
-#: src/LYrcFile.c:341
+#: src/LYrcFile.c:342
 msgid ""
 "cookie_accept_domains and cookie_reject_domains are comma-delimited\n"
 "lists of domains from which Lynx should automatically accept or reject\n"
@@ -5563,7 +5567,7 @@ msgid ""
 "settings made here.\n"
 msgstr ""
 
-#: src/LYrcFile.c:349
+#: src/LYrcFile.c:350
 msgid ""
 "cookie_file specifies the file from which to read persistent cookies.\n"
 "The default is ~/.lynx_cookies.\n"
@@ -5571,7 +5575,7 @@ msgstr ""
 "cookie_file spécifie le fichier à partir duquel lire les cookies\n"
 "persistants. Le défaut est ~/.lynx_cookies.\n"
 
-#: src/LYrcFile.c:354
+#: src/LYrcFile.c:355
 msgid ""
 "cookie_loose_invalid_domains, cookie_strict_invalid_domains, and\n"
 "cookie_query_invalid_domains are comma-delimited lists of which domains\n"
@@ -5582,13 +5586,13 @@ msgid ""
 "querying the user for an invalid path or domain.\n"
 msgstr ""
 
-#: src/LYrcFile.c:368
+#: src/LYrcFile.c:369
 msgid ""
 "dir_list_order specifies the directory list order under DIRED_SUPPORT\n"
 "(if implemented).  The default is \"ORDER_BY_NAME\"\n"
 msgstr ""
 
-#: src/LYrcFile.c:373
+#: src/LYrcFile.c:374
 msgid ""
 "dir_list_styles specifies the directory list style under DIRED_SUPPORT\n"
 "(if implemented).  The default is \"MIXED_STYLE\", which sorts both\n"
@@ -5601,7 +5605,7 @@ msgstr ""
 "permet de lister les fichiers d'abord tandis que «DIRECTORIES_FIRST» permet\n"
 "de lister les répertoires d'abord.\n"
 
-#: src/LYrcFile.c:381
+#: src/LYrcFile.c:382
 msgid ""
 "If emacs_keys is to \"on\" then the normal EMACS movement keys:\n"
 "  ^N = down    ^P = up\n"
@@ -5613,7 +5617,7 @@ msgstr ""
 "  ^B = gauche    ^F = droite\n"
 "est activé.\n"
 
-#: src/LYrcFile.c:387
+#: src/LYrcFile.c:388
 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"
@@ -5625,7 +5629,7 @@ msgstr ""
 "à moins qu'elle soit activée de la ligne de commande, auquel cas l'éditeur\n"
 "de lignes sera utilisé pour l'envoi de courrier.\n"
 
-#: src/LYrcFile.c:393
+#: src/LYrcFile.c:394
 msgid ""
 "The file_sorting_method specifies which value to sort on when viewing\n"
 "file lists such as FTP directories.  The options are:\n"
@@ -5641,7 +5645,7 @@ msgstr ""
 "   VOLUME    -- tri selon le volume du fichier\n"
 "   DATE      -- tri selon la date du fichier\n"
 
-#: src/LYrcFile.c:411
+#: src/LYrcFile.c:412
 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"
@@ -5669,7 +5673,7 @@ msgstr ""
 "\n"
 "Les modes d'édition de ligne courants sont:\n"
 
-#: src/LYrcFile.c:429
+#: src/LYrcFile.c:430
 msgid ""
 "The following allow you to define sub-bookmark files and descriptions.\n"
 "The format is multi_bookmark<capital_letter>=<filename>,<description>\n"
@@ -5681,7 +5685,7 @@ msgstr ""
 "vous pouvez définir jusque 26 fichiers de signets (l'alphabet anglais).\n"
 "commencez avec «multi_bookmarkB» puisque 'A' est le fichier implicite (voir ci-après.\n"
 
-#: src/LYrcFile.c:435
+#: src/LYrcFile.c:436
 msgid ""
 "personal_mail_address specifies your personal mail address.  The\n"
 "address will be sent during HTTP file transfers for authorization and\n"
@@ -5699,7 +5703,7 @@ msgstr ""
 "utilisez l'option -nofrom en ligne de commande. Vous pouvez aussi laisser\n"
 "ce champ vide, mais alors il n'apparaîtra pas dans vos commentaires postés.\n"
 
-#: src/LYrcFile.c:444
+#: src/LYrcFile.c:445
 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"
@@ -5726,7 +5730,7 @@ msgstr ""
 "réponse acceptable relativement à votre choix, le serveur DEVRAIT renvoyer un \n"
 "message d'erreur bien que le renvoi d'une réponse inacceptable soit permi.\n"
 
-#: src/LYrcFile.c:460
+#: src/LYrcFile.c:461
 msgid ""
 "preferred_language specifies the language in MIME notation (e.g., en,\n"
 "fr, may be a comma-separated list in decreasing preference)\n"
@@ -5739,7 +5743,7 @@ msgstr ""
 "Si un fichier est disponible dans la langue précisée, le serveur l'envoie.\n"
 "Sinon, le serveur envoie le fichier dans la langue par défaut.\n"
 
-#: src/LYrcFile.c:471
+#: src/LYrcFile.c:472
 msgid ""
 "If run_all_execution_links is set \"on\" then all local execution links\n"
 "will be executed when they are selected.\n"
@@ -5761,7 +5765,7 @@ msgstr ""
 "          fonction devrait être réglée à «activé» uniquement si vous\n"
 "          consultez de l'information fiable.\n"
 
-#: src/LYrcFile.c:482
+#: src/LYrcFile.c:483
 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"
@@ -5789,7 +5793,7 @@ msgstr ""
 "          compromettre la sécurité. Cette fonction devrait être réglée à\n"
 "          «activé» uniquement si vous consultez de l'information fiable.\n"
 
-#: src/LYrcFile.c:500
+#: src/LYrcFile.c:501
 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"
@@ -5808,7 +5812,7 @@ msgstr ""
 "sélectionnera les boutons radio par défaut. Cette option peut être surchargée\n"
 "par l'option -popup en ligne de commande.\n"
 
-#: src/LYrcFile.c:510
+#: src/LYrcFile.c:511
 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"
@@ -5844,7 +5848,7 @@ msgstr ""
 "paramètres sont enregistrés, les attributs «oui» et «non» de l'option\n"
 "«afficher les couleurs» sont interprétés comme étant la valeur «implicite».\n"
 
-#: src/LYrcFile.c:527
+#: src/LYrcFile.c:528
 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"
@@ -5867,7 +5871,7 @@ msgstr ""
 "équivaut à 'cacher' le curseur de l'écran.  La valeur implicite peut être\n"
 "annulée à la ligne de commande au moyen de l'option -show_cursor.\n"
 
-#: src/LYrcFile.c:538
+#: src/LYrcFile.c:539
 msgid ""
 "show_dotfiles specifies that the directory listing should include\n"
 "\"hidden\" (dot) files/directories.  If set \"on\", this will be\n"
@@ -5882,7 +5886,7 @@ msgstr ""
 "l'affichage des fichiers cachés est désactivé, la création de tels fichiers\n"
 "dans Lynx est aussi désactivée.\n"
 
-#: src/LYrcFile.c:549
+#: src/LYrcFile.c:550
 msgid ""
 "If sub_bookmarks is not turned \"off\", and multiple bookmarks have\n"
 "been defined (see below), then all bookmark operations will first\n"
@@ -5905,7 +5909,7 @@ msgstr ""
 "modes novices et intermédiaires. Lorsque cette option est définie comme \n"
 "\"standard\", le menu apparaîtra quelque soit le mode d'utilisation.\n"
 
-#: src/LYrcFile.c:563
+#: src/LYrcFile.c:564
 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"
@@ -5921,7 +5925,7 @@ msgstr ""
 "«INTERMEDIATE» pour éliminer ces lignes.  Utilisez l'option «ADVANCED» pour\n"
 "afficher l'URL du lien sélectionné au bas de l'écran.\n"
 
-#: src/LYrcFile.c:572
+#: src/LYrcFile.c:573
 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"
@@ -5930,7 +5934,7 @@ msgstr ""
 "Si verbose_images est à \"on\", lynx affichera les noms des fichier d'images\n"
 "sources au lieu de [INLINE],[LINK] ou [IMAGE]\n"
 
-#: src/LYrcFile.c:577
+#: src/LYrcFile.c:578
 msgid ""
 "If vi_keys is set to \"on\", then the normal VI movement keys:\n"
 "  j = down    k = up\n"
@@ -5946,7 +5950,7 @@ msgstr ""
 "Les majuscules 'H', 'J' et 'K' activent l'aide, les touches de raccourci\n"
 "et la configuration des touches respectivement.\n"
 
-#: src/LYrcFile.c:585
+#: src/LYrcFile.c:586
 msgid ""
 "The visited_links setting controls how Lynx organizes the information\n"
 "in the Visited Links Page.\n"
@@ -5954,7 +5958,7 @@ msgstr ""
 "L'option visited_links controle la façon dont Lynx organise les informations\n"
 "sur la page Liens visités.\n"
 
-#: src/LYrcFile.c:803
+#: src/LYrcFile.c:804
 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"
@@ -5973,7 +5977,7 @@ msgstr ""
 "et les chiffres correspondants de votre clavier se comporterons\n"
 "comme des flèches, quelque soit l'état du numlock.\n"
 
-#: src/LYrcFile.c:812
+#: src/LYrcFile.c:813
 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"
@@ -5982,7 +5986,7 @@ msgstr ""
 "chifres apparaitrons à cotés des liens afin de pouvoir sélectionner\n"
 "ces liens\n"
 
-#: src/LYrcFile.c:816
+#: src/LYrcFile.c:817
 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"
@@ -6002,7 +6006,7 @@ msgstr ""
 "de référence et les sorties de ces listes de commandes énumèrent aussi les\n"
 "champs de formulaires.\n"
 
-#: src/LYrcFile.c:825
+#: src/LYrcFile.c:826
 msgid ""
 "NOTE: Some fixed format documents may look disfigured when\n"
 "\"LINKS_ARE_NUMBERED\" or \"LINKS_AND_FORM_FIELDS_ARE_NUMBERED\" are\n"
@@ -6012,7 +6016,7 @@ msgstr ""
 "lorsque \"LINKS_ARE_NUMBERED\" ou \"LINKS_AND_FORM_FIELDS_ARE_NUMBERED\" \n"
 "sont sélectionnés.\n"
 
-#: src/LYrcFile.c:857
+#: src/LYrcFile.c:858
 msgid ""
 "Lynx User Defaults File\n"
 "\n"
diff --git a/po/hu.po b/po/hu.po
index 4ce1cddf..96a40b4b 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lynx 2.8.6-dev4\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-10-10 18:51-0400\n"
+"POT-Creation-Date: 2004-10-17 16:29-0400\n"
 "PO-Revision-Date: 2004-07-20 19:31+0200\n"
 "Last-Translator: Mihály Gyulai <gyulai@fbi.hu>\n"
 "Language-Team: Hungarian <translation-team-hu@lists.sourceforge.net>\n"
@@ -2789,7 +2789,7 @@ msgstr "POST tartalommal rendelkezõ dokumentum nem található a gyorstárban. Újra
 msgid "Loading failed, use a previous copy."
 msgstr "A betöltés sikertelen, korábbi példány használata."
 
-#: WWW/Library/Implementation/HTAccess.c:1045 src/GridText.c:8301
+#: WWW/Library/Implementation/HTAccess.c:1045 src/GridText.c:8296
 msgid "Loading incomplete."
 msgstr "A betöltés nem teljes."
 
@@ -2858,7 +2858,7 @@ msgstr "Letöltve: %d bájt (%5d)"
 msgid "connect for data"
 msgstr "kapcsolás az adatért"
 
-#: WWW/Library/Implementation/HTFTP.c:3738
+#: WWW/Library/Implementation/HTFTP.c:3741
 msgid "Receiving FTP file."
 msgstr "FTP fájl fogadása."
 
@@ -3017,7 +3017,7 @@ msgstr "A címben érvénytelen a port"
 msgid "Address length looks invalid"
 msgstr "A cím hosszúsága érvénytelen"
 
-#: WWW/Library/Implementation/HTTCP.c:1551 WWW/Library/Implementation/HTTCP.c:1569
+#: WWW/Library/Implementation/HTTCP.c:1552 WWW/Library/Implementation/HTTCP.c:1570
 #, c-format
 msgid "Unable to locate remote host %s."
 msgstr "Nem találom a %s távoli számítógépet."
@@ -3026,38 +3026,38 @@ msgstr "Nem találom a %s távoli számítógépet."
 #. * but not HTAlert, because typically there will be other
 #. * alerts from the callers.  - kw
 #.
-#: WWW/Library/Implementation/HTTCP.c:1566 WWW/Library/Implementation/HTTelnet.c:108
+#: WWW/Library/Implementation/HTTCP.c:1567 WWW/Library/Implementation/HTTelnet.c:108
 #, c-format
 msgid "Invalid hostname %s"
 msgstr "A %s helytelen gépnév"
 
-#: WWW/Library/Implementation/HTTCP.c:1580
+#: WWW/Library/Implementation/HTTCP.c:1581
 #, c-format
 msgid "Making %s connection to %s"
 msgstr "%s csatlakozás létrehozása ide: %s"
 
-#: WWW/Library/Implementation/HTTCP.c:1591
+#: WWW/Library/Implementation/HTTCP.c:1592
 msgid "socket failed."
 msgstr "az illesztõpont sérült."
 
-#: WWW/Library/Implementation/HTTCP.c:1604
+#: WWW/Library/Implementation/HTTCP.c:1605
 #, c-format
 msgid "socket failed: family %d addr %s port %s."
 msgstr "az illesztõpont sérült: család: %d cím: %s port: %s."
 
-#: WWW/Library/Implementation/HTTCP.c:1628
+#: WWW/Library/Implementation/HTTCP.c:1629
 msgid "Could not make connection non-blocking."
 msgstr "Nem sikerült a nem blokkolt csatlakozás."
 
-#: WWW/Library/Implementation/HTTCP.c:1697
+#: WWW/Library/Implementation/HTTCP.c:1698
 msgid "Connection failed (too many retries)."
 msgstr "A kapcsolat sikertelen (túl sok próbálkozás)."
 
-#: WWW/Library/Implementation/HTTCP.c:1896
+#: WWW/Library/Implementation/HTTCP.c:1897
 msgid "Could not restore socket to blocking."
 msgstr "Nem lehet visszaállítani az illesztõpontot blokkoltra."
 
-#: WWW/Library/Implementation/HTTCP.c:1962
+#: WWW/Library/Implementation/HTTCP.c:1963
 msgid "Socket read failed for 180,000 tries."
 msgstr "Az illesztõpont 180.000 olvasás után is sikertelen."
 
@@ -3066,45 +3066,45 @@ msgstr "Az illesztõpont 180.000 olvasás után is sikertelen."
 msgid "Address contains a username: %s"
 msgstr "A cím felhasználói nevet tartalmaz: %s"
 
-#: WWW/Library/Implementation/HTTP.c:497
+#: WWW/Library/Implementation/HTTP.c:531
 msgid "This client does not contain support for HTTPS URLs."
 msgstr "Ez az ügyfél nem támogatja a HTTPS URL-eket."
 
-#: WWW/Library/Implementation/HTTP.c:522
+#: WWW/Library/Implementation/HTTP.c:556
 msgid "Unable to connect to remote host."
 msgstr "Nem lehet kapcsolódni a távoli számítógéphez."
 
-#: WWW/Library/Implementation/HTTP.c:544
+#: WWW/Library/Implementation/HTTP.c:578
 msgid "Retrying connection without TLS."
 msgstr "Újbóli csatlakozás TLS nélkül."
 
-#: WWW/Library/Implementation/HTTP.c:587
+#: WWW/Library/Implementation/HTTP.c:621
 msgid "SSL error:Can't find common name in certificate-Continue?"
 msgstr "SSL hiba: nem található azonos név a bizonyítványban - folytatjuk?"
 
-#: WWW/Library/Implementation/HTTP.c:604
+#: WWW/Library/Implementation/HTTP.c:638
 #, c-format
 msgid "SSL error:host(%s)!=cert(%s)-Continue?"
 msgstr "SSL hiba:host(%s)!=cert(%s)-Tovább?"
 
-#: WWW/Library/Implementation/HTTP.c:616
+#: WWW/Library/Implementation/HTTP.c:650
 #, c-format
 msgid "Secure %d-bit %s (%s) HTTP connection"
 msgstr "Biztonságos %d-bit %s (%s) HTTP csatlakozás"
 
-#: WWW/Library/Implementation/HTTP.c:1086
+#: WWW/Library/Implementation/HTTP.c:1120
 msgid "Sending HTTP request."
 msgstr "HTTP kérés küldése."
 
-#: WWW/Library/Implementation/HTTP.c:1125
+#: WWW/Library/Implementation/HTTP.c:1159
 msgid "Unexpected network write error; connection aborted."
 msgstr "Váratlan hálózati írási hiba; a csatlakozás megszakítva."
 
-#: WWW/Library/Implementation/HTTP.c:1131
+#: WWW/Library/Implementation/HTTP.c:1165
 msgid "HTTP request sent; waiting for response."
 msgstr "HTTP kérés elküldve, várakozás a válaszra."
 
-#: WWW/Library/Implementation/HTTP.c:1199
+#: WWW/Library/Implementation/HTTP.c:1233
 msgid "Unexpected network read error; connection aborted."
 msgstr "Váratlan hálózati olvasási hiba, a csatlakozás megszakítva."
 
@@ -3117,7 +3117,7 @@ msgstr "Váratlan hálózati olvasási hiba, a csatlakozás megszakítva."
 #. * 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:1393
+#: WWW/Library/Implementation/HTTP.c:1427
 msgid "Got unexpected Informational Status."
 msgstr "Váratlan tájékoztatást kaptam az állapotról."
 
@@ -3127,7 +3127,7 @@ msgstr "Váratlan tájékoztatást kaptam az állapotról."
 #. * content.  We'll instruct the user to do that, and
 #. * restore the current document.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1427
+#: WWW/Library/Implementation/HTTP.c:1461
 msgid "Request fulfilled.  Reset Content."
 msgstr "Kérés teljesítve. Állítsa vissza a tartalmat."
 
@@ -3137,27 +3137,27 @@ msgstr "Kérés teljesítve. Állítsa vissza a tartalmat."
 #. * 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:1544
+#: WWW/Library/Implementation/HTTP.c:1578
 msgid "Got unexpected 304 Not Modified status."
 msgstr "Váratlan 304-es hiba: Nem lett módosítva az állapot."
 
-#: WWW/Library/Implementation/HTTP.c:1607
+#: WWW/Library/Implementation/HTTP.c:1641
 msgid "Redirection of POST content requires user approval."
 msgstr "A POST tartalom átirányításához felhasználói engedély kell."
 
-#: WWW/Library/Implementation/HTTP.c:1622
+#: WWW/Library/Implementation/HTTP.c:1656
 msgid "Have POST content.  Treating Permanent Redirection as Temporary.\n"
 msgstr "POST tartalom. Az állandó átirányítást átmenetiként kezelem.\n"
 
-#: WWW/Library/Implementation/HTTP.c:1664
+#: WWW/Library/Implementation/HTTP.c:1698
 msgid "Retrying with access authorization information."
 msgstr "Újra próbálom elérés felhatalmazási információval."
 
-#: WWW/Library/Implementation/HTTP.c:1676
+#: WWW/Library/Implementation/HTTP.c:1710
 msgid "Show the 401 message body?"
 msgstr "Mutassam a 401-es üzenet szövegét?"
 
-#: WWW/Library/Implementation/HTTP.c:1719
+#: WWW/Library/Implementation/HTTP.c:1753
 msgid "Show the 407 message body?"
 msgstr "Mutassam a 407-es üzenet szövegét?"
 
@@ -3165,7 +3165,7 @@ msgstr "Mutassam a 407-es üzenet szövegét?"
 #. * Bad or unknown server_status number.  Take a chance and hope
 #. * there is something to display.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1819
+#: WWW/Library/Implementation/HTTP.c:1853
 msgid "Unknown status reply from server!"
 msgstr "A szerver válasza: Ismeretlen állapot!"
 
@@ -3429,30 +3429,30 @@ msgstr "kulcsgeneráló mezõ"
 msgid "unknown form field"
 msgstr "ismeretlen ûrlap mezõ"
 
-#: src/GridText.c:10020
+#: src/GridText.c:10015
 msgid "Can't open file for uploading"
 msgstr "Nem lehet megnyitni a fájlt a feltöltéshez"
 
-#: src/GridText.c:11170
+#: src/GridText.c:11165
 #, c-format
 msgid "Submitting %s"
 msgstr "%s továbbítása"
 
 #. ugliness has happened; inform user and do the best we can
-#: src/GridText.c:12318
+#: src/GridText.c:12313
 msgid "Hang Detect: TextAnchor struct corrupted - suggest aborting!"
 msgstr "Akadásjelzés: A TextAnchor szerkezete sérült - javaslom a megszakítást!"
 
 #. don't show previous state
-#: src/GridText.c:12523
+#: src/GridText.c:12518
 msgid "Wrap lines to fit displayed area?"
 msgstr "Tördeljem a sorokat, hogy kiférjenek?"
 
-#: src/GridText.c:12575
+#: src/GridText.c:12570
 msgid "Very long lines have been wrapped!"
 msgstr "A hosszú sorokat új sorba tördeltem!"
 
-#: src/GridText.c:13016
+#: src/GridText.c:13011
 msgid "Very long lines have been truncated!"
 msgstr "A hosszú sorok végét levágtam!"
 
@@ -4675,116 +4675,120 @@ msgstr "minden típust elfogad"
 msgid "gzip"
 msgstr "gzip"
 
-#: src/LYOptions.c:2388
+#: src/LYOptions.c:2386
+msgid "deflate"
+msgstr ""
+
+#: src/LYOptions.c:2389
 msgid "compress"
 msgstr "compress"
 
-#: src/LYOptions.c:2391
+#: src/LYOptions.c:2392
 msgid "bzip2"
 msgstr "bzip2"
 
-#: src/LYOptions.c:2393
+#: src/LYOptions.c:2394
 msgid "All"
 msgstr "mindegyik"
 
-#: src/LYOptions.c:2658 src/LYOptions.c:2682
+#: src/LYOptions.c:2659 src/LYOptions.c:2683
 #, c-format
 msgid "Use %s to invoke the Options menu!"
 msgstr "Használja a(z) %s-t, hogy bejöjjön a Beállítások menü!"
 
-#: src/LYOptions.c:3421
+#: src/LYOptions.c:3422
 msgid "(options marked with (!) will not be saved)"
 msgstr "(a '!'-el jelölt opciók nem lesznek megõrizve!)"
 
-#: src/LYOptions.c:3429
+#: src/LYOptions.c:3430
 msgid "General Preferences"
 msgstr "Általános beállítások"
 
 #. ***************************************************************
 #. User Mode: SELECT
-#: src/LYOptions.c:3433
+#: src/LYOptions.c:3434
 msgid "User mode"
 msgstr "Felhasználói mód"
 
 #. Editor: INPUT
-#: src/LYOptions.c:3439
+#: src/LYOptions.c:3440
 msgid "Editor"
 msgstr "Szerkesztõ"
 
 #. Search Type: SELECT
-#: src/LYOptions.c:3444
+#: src/LYOptions.c:3445
 msgid "Type of Search"
 msgstr "Keresés típusa"
 
-#: src/LYOptions.c:3449
+#: src/LYOptions.c:3450
 msgid "Security and Privacy"
 msgstr "Biztonság és magánszféra"
 
 #. ***************************************************************
 #. Cookies: SELECT
-#: src/LYOptions.c:3453
+#: src/LYOptions.c:3454
 msgid "Cookies"
 msgstr "Sütik"
 
 #. Cookie Prompting: SELECT
-#: src/LYOptions.c:3467
+#: src/LYOptions.c:3468
 msgid "Invalid-Cookie Prompting"
 msgstr "Érvénytelen süti"
 
 #. SSL Prompting: SELECT
-#: src/LYOptions.c:3474
+#: src/LYOptions.c:3475
 msgid "SSL Prompting"
 msgstr "SSL választás"
 
-#: src/LYOptions.c:3480
+#: src/LYOptions.c:3481
 msgid "Keyboard Input"
 msgstr "Billentyûzet bevitel"
 
 #. ***************************************************************
 #. Keypad Mode: SELECT
-#: src/LYOptions.c:3484
+#: src/LYOptions.c:3485
 msgid "Keypad mode"
 msgstr "Numerikus pad módja"
 
 #. Emacs keys: ON/OFF
-#: src/LYOptions.c:3490
+#: src/LYOptions.c:3491
 msgid "Emacs keys"
 msgstr "Emacs billentyûk"
 
 #. VI Keys: ON/OFF
-#: src/LYOptions.c:3496
+#: src/LYOptions.c:3497
 msgid "VI keys"
 msgstr "vi billentyûk"
 
 #. Line edit style: SELECT
 #. well, at least 2 line edit styles available
-#: src/LYOptions.c:3503
+#: src/LYOptions.c:3504
 msgid "Line edit style"
 msgstr "Sorszerkesztõi stílus"
 
 #. Keyboard layout: SELECT
-#: src/LYOptions.c:3515
+#: src/LYOptions.c:3516
 msgid "Keyboard layout"
 msgstr "Billentyûzet kiosztás"
 
 #.
 #. * Display and Character Set
 #.
-#: src/LYOptions.c:3529
+#: src/LYOptions.c:3530
 msgid "Display and Character Set"
 msgstr "Képernyõ és karakterkészlet "
 
 #. Use locale-based character set: ON/OFF
-#: src/LYOptions.c:3534
+#: src/LYOptions.c:3535
 msgid "Use locale-based character set"
 msgstr "Helyi karakterkészlet használata"
 
 #. Display Character Set: SELECT
-#: src/LYOptions.c:3543
+#: src/LYOptions.c:3544
 msgid "Display character set"
 msgstr "Képernyõ karakterkészlet"
 
-#: src/LYOptions.c:3574
+#: src/LYOptions.c:3575
 msgid "Assumed document character set"
 msgstr "Feltételezett karakterkészlet"
 
@@ -4793,164 +4797,164 @@ msgstr "Feltételezett karakterkészlet"
 #. * we split the header to make it more readable:
 #. * "CJK mode" for CJK display charsets, and "Raw 8-bit" for others.
 #.
-#: src/LYOptions.c:3594
+#: src/LYOptions.c:3595
 msgid "CJK mode"
 msgstr "CJK mód"
 
-#: src/LYOptions.c:3596
+#: src/LYOptions.c:3597
 msgid "Raw 8-bit"
 msgstr "Nyers 8-bites mód"
 
 #. X Display: INPUT
-#: src/LYOptions.c:3604
+#: src/LYOptions.c:3605
 msgid "X Display"
 msgstr "X képernyõ"
 
 #.
 #. * Document Appearance
 #.
-#: src/LYOptions.c:3610
+#: src/LYOptions.c:3611
 msgid "Document Appearance"
 msgstr "Dokumentum megjelenése"
 
-#: src/LYOptions.c:3616
+#: src/LYOptions.c:3617
 msgid "Show color"
 msgstr "Színek mutatása"
 
 #. Show cursor: ON/OFF
-#: src/LYOptions.c:3640
+#: src/LYOptions.c:3641
 msgid "Show cursor"
 msgstr "Kurzor mutatása"
 
 #. Underline links: ON/OFF
-#: src/LYOptions.c:3646
+#: src/LYOptions.c:3647
 msgid "Underline links"
 msgstr "Rejtett hivatkozás"
 
 #. Show scrollbar: ON/OFF
-#: src/LYOptions.c:3653
+#: src/LYOptions.c:3654
 msgid "Show scrollbar"
 msgstr "Csúszka mutatása"
 
 #. Select Popups: ON/OFF
-#: src/LYOptions.c:3660
+#: src/LYOptions.c:3661
 msgid "Popups for select fields"
 msgstr "Felbukkanó ablakok használata"
 
 #. HTML error recovery: SELECT
-#: src/LYOptions.c:3666
+#: src/LYOptions.c:3667
 msgid "HTML error recovery"
 msgstr "HTML hiba helyreállítás"
 
 #. Show Images: SELECT
-#: src/LYOptions.c:3672
+#: src/LYOptions.c:3673
 msgid "Show images"
 msgstr "Képek mutatása"
 
 #. Verbose Images: ON/OFF
-#: src/LYOptions.c:3686
+#: src/LYOptions.c:3687
 msgid "Verbose images"
 msgstr "Tallózás a képek között"
 
-#: src/LYOptions.c:3695
+#: src/LYOptions.c:3696
 msgid "Headers Transferred to Remote Servers"
 msgstr "A távoli gépeknek átküldött fejlécek"
 
 #. ***************************************************************
 #. Mail Address: INPUT
-#: src/LYOptions.c:3699
+#: src/LYOptions.c:3700
 msgid "Personal mail address"
 msgstr "Személyes email cím"
 
 #. Preferred media type: SELECT
-#: src/LYOptions.c:3704
+#: src/LYOptions.c:3705
 msgid "Preferred media type"
 msgstr "Elsõdleges média-típus"
 
 #. Preferred encoding: SELECT
-#: src/LYOptions.c:3710
+#: src/LYOptions.c:3711
 msgid "Preferred encoding"
 msgstr "Elsõdleges kódolás"
 
 #. Preferred Document Character Set: INPUT
-#: src/LYOptions.c:3716
+#: src/LYOptions.c:3717
 msgid "Preferred document character set"
 msgstr "Elsõdleges karakterkészlet"
 
 #. Preferred Document Language: INPUT
-#: src/LYOptions.c:3721
+#: src/LYOptions.c:3722
 msgid "Preferred document language"
 msgstr "Elsõdleges nyelv"
 
-#: src/LYOptions.c:3727
+#: src/LYOptions.c:3728
 msgid "User-Agent header"
 msgstr "Böngészõ-azonosító fejléc"
 
 #.
 #. * Listing and Accessing Files
 #.
-#: src/LYOptions.c:3735
+#: src/LYOptions.c:3736
 msgid "Listing and Accessing Files"
 msgstr "Fájlok listázása és elérése"
 
 #. ***************************************************************
 #. FTP sort: SELECT
-#: src/LYOptions.c:3739
+#: src/LYOptions.c:3740
 msgid "FTP sort criteria"
 msgstr "FTP-s rendezés módja"
 
 #. Local Directory Sort: SELECT
-#: src/LYOptions.c:3746
+#: src/LYOptions.c:3747
 msgid "Local directory sort criteria"
 msgstr "Helyi könyvtárrendezés módja"
 
 #. Local Directory Order: SELECT
-#: src/LYOptions.c:3752
+#: src/LYOptions.c:3753
 msgid "Local directory sort order"
 msgstr "Helyi könyvtárrendezés sorrendje"
 
-#: src/LYOptions.c:3761
+#: src/LYOptions.c:3762
 msgid "Show dot files"
 msgstr "Rejtett fájlok mutatása"
 
-#: src/LYOptions.c:3769
+#: src/LYOptions.c:3770
 msgid "Execution links"
 msgstr "Futtatható hivatkozások"
 
 #. Show transfer rate: SELECT
-#: src/LYOptions.c:3789
+#: src/LYOptions.c:3790
 msgid "Show transfer rate"
 msgstr "Az átviteli sebesség megjelenítése"
 
 #.
 #. * Special Files and Screens
 #.
-#: src/LYOptions.c:3809
+#: src/LYOptions.c:3810
 msgid "Special Files and Screens"
 msgstr "Speciális fájlok és képernyõk"
 
-#: src/LYOptions.c:3814
+#: src/LYOptions.c:3815
 msgid "Multi-bookmarks"
 msgstr "Többszörös könyvjelzõk"
 
-#: src/LYOptions.c:3822
+#: src/LYOptions.c:3823
 msgid "Review/edit Bookmarks files"
 msgstr "Könyvjelzõk szerkesztése, átnézése"
 
-#: src/LYOptions.c:3824
+#: src/LYOptions.c:3825
 msgid "Goto multi-bookmark menu"
 msgstr "Ugrás a többszörös könyvjelzõi menübe"
 
-#: src/LYOptions.c:3826
+#: src/LYOptions.c:3827
 msgid "Bookmarks file"
 msgstr "Könyvjelzõ fájl"
 
 #. Visited Pages: SELECT
-#: src/LYOptions.c:3832
+#: src/LYOptions.c:3833
 msgid "Visited Pages"
 msgstr "Meglátogatott lapok"
 
-#: src/LYOptions.c:3837
+#: src/LYOptions.c:3838
 msgid "View the file "
 msgstr "A fájl nézése "
 
@@ -5070,38 +5074,38 @@ msgstr "Nem tud elindulni, a CERN szabály fájlja nem áll rendelkezésre (%s)\n"
 msgid "(no name)"
 msgstr "(névtelen)"
 
-#: src/LYReadCFG.c:1772
+#: src/LYReadCFG.c:1773
 #, c-format
 msgid "More than %d nested lynx.cfg includes -- perhaps there is a loop?!?\n"
 msgstr "Több mint %d egymásba-ágyazást találtam a lynx.cfg-ben -- hurok alakult ki???\n"
 
-#: src/LYReadCFG.c:1774
+#: src/LYReadCFG.c:1775
 #, c-format
 msgid "Last attempted include was '%s',\n"
 msgstr "Az utolsó beillesztés %s volt,\n"
 
-#: src/LYReadCFG.c:1775
+#: src/LYReadCFG.c:1776
 #, c-format
 msgid "included from '%s'.\n"
 msgstr "beszúrva innen: %s.\n"
 
-#: src/LYReadCFG.c:2181 src/LYReadCFG.c:2194 src/LYReadCFG.c:2252
+#: src/LYReadCFG.c:2183 src/LYReadCFG.c:2196 src/LYReadCFG.c:2254
 msgid "The following is read from your lynx.cfg file."
 msgstr "Az itt következõk a lynx.cfg fájlban olvashatók."
 
-#: src/LYReadCFG.c:2182 src/LYReadCFG.c:2195
+#: src/LYReadCFG.c:2184 src/LYReadCFG.c:2197
 msgid "Please read the distribution"
 msgstr "Kérem olvassa el az ide vonatkozó leírást ("
 
-#: src/LYReadCFG.c:2188 src/LYReadCFG.c:2198
+#: src/LYReadCFG.c:2190 src/LYReadCFG.c:2200
 msgid "for more comments."
 msgstr ") további információért."
 
-#: src/LYReadCFG.c:2234
+#: src/LYReadCFG.c:2236
 msgid "RELOAD THE CHANGES"
 msgstr "VÁLTOZÁSOK ÚJRATÖLTÉSE"
 
-#: src/LYReadCFG.c:2242
+#: src/LYReadCFG.c:2244
 msgid "Your primary configuration"
 msgstr "Az elsõdleges beállítás:"
 
@@ -5404,7 +5408,7 @@ msgstr "Nem találom a HOME könyvtárat"
 msgid "Normally disabled.  See ENABLE_LYNXRC in lynx.cfg\n"
 msgstr "Általában letiltva. Nézze meg az ENABLE_LYNXRC-t a lynx.cfg-ben\n"
 
-#: src/LYrcFile.c:317
+#: src/LYrcFile.c:318
 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"
@@ -5414,7 +5418,7 @@ msgstr ""
 "Az accept_all_cookies TRUE-ra állítása lehetõvé teszi a sütik automatikus\n"
 " fogadását. Alapban FALSE, így mindig rákérdez.\n"
 
-#: src/LYrcFile.c:324
+#: src/LYrcFile.c:325
 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"
@@ -5423,7 +5427,7 @@ msgstr ""
 "a bookmark_file eltárolja annak a fájlnak a nevét és helyét, amibe linkeket\n"
 " lehet felvenni, és késõbb felhasználni.\n"
 
-#: src/LYrcFile.c:329
+#: src/LYrcFile.c:330
 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"
@@ -5432,7 +5436,7 @@ msgstr ""
 "Ha a case_sensitive_searching \"on\", akkor a keresés megkülönbözteti\n"
 " a kis- és nagybetûket. Az alapbeállítás az \"off\" állapot.\n"
 
-#: src/LYrcFile.c:334
+#: src/LYrcFile.c:335
 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"
@@ -5445,7 +5449,7 @@ msgstr ""
 "használni a 7 bites karaktereket.\n"
 "A jelenlegi karakterkészletek:\n"
 
-#: src/LYrcFile.c:341
+#: src/LYrcFile.c:342
 msgid ""
 "cookie_accept_domains and cookie_reject_domains are comma-delimited\n"
 "lists of domains from which Lynx should automatically accept or reject\n"
@@ -5459,13 +5463,13 @@ msgstr ""
 "az elutasítás lép érvénybe. Az accept_all_cookies felülírja az itt megadott\n"
 "beállítást.\n"
 
-#: src/LYrcFile.c:349
+#: src/LYrcFile.c:350
 msgid ""
 "cookie_file specifies the file from which to read persistent cookies.\n"
 "The default is ~/.lynx_cookies.\n"
 msgstr "A cookie_file az a fájl, ahonnan az állandó sütiket be kell olvasni. Alaphelyzetben ez a ~/.lynx_cookies.\n"
 
-#: src/LYrcFile.c:354
+#: src/LYrcFile.c:355
 msgid ""
 "cookie_loose_invalid_domains, cookie_strict_invalid_domains, and\n"
 "cookie_query_invalid_domains are comma-delimited lists of which domains\n"
@@ -5483,7 +5487,7 @@ msgstr ""
 "való elfogadását. Alapbeállításban a felhasználó egy kérdést kap, melyben\n"
 "eldöntheti, hogy elfogadja-e az érvénytelen útvonalat vagy tartományt.\n"
 
-#: src/LYrcFile.c:368
+#: src/LYrcFile.c:369
 msgid ""
 "dir_list_order specifies the directory list order under DIRED_SUPPORT\n"
 "(if implemented).  The default is \"ORDER_BY_NAME\"\n"
@@ -5491,7 +5495,7 @@ msgstr ""
 "A dir_list_order határozza meg a könyvtárlista rendezését, a \n"
 "DIRED_SUPPORT-nál (ha rendelkezésre áll). Alaphelyzet: \"ORDER_BY_NAME\"\n"
 
-#: src/LYrcFile.c:373
+#: src/LYrcFile.c:374
 msgid ""
 "dir_list_styles specifies the directory list style under DIRED_SUPPORT\n"
 "(if implemented).  The default is \"MIXED_STYLE\", which sorts both\n"
@@ -5503,7 +5507,7 @@ msgstr ""
 "és a fájlok egy listában vannak. A \"FILES_FIRST\" elõször a fájlokat\n"
 " listázza, a \"DIRECTORIES_FIRST\" elõször a könyvtárakat.\n"
 
-#: src/LYrcFile.c:381
+#: src/LYrcFile.c:382
 msgid ""
 "If emacs_keys is to \"on\" then the normal EMACS movement keys:\n"
 "  ^N = down    ^P = up\n"
@@ -5515,7 +5519,7 @@ msgstr ""
 "  ^N = le      ^P = fel\n"
 "  ^B = balra   ^F = jobbra\n"
 
-#: src/LYrcFile.c:387
+#: src/LYrcFile.c:388
 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"
@@ -5527,7 +5531,7 @@ msgstr ""
 "parancssorból lett aktiválva, mert akkor a beépített szerkesztõt lehet\n"
 "használni a levélíráshoz.\n"
 
-#: src/LYrcFile.c:393
+#: src/LYrcFile.c:394
 msgid ""
 "The file_sorting_method specifies which value to sort on when viewing\n"
 "file lists such as FTP directories.  The options are:\n"
@@ -5543,7 +5547,7 @@ msgstr ""
 "   BY_SIZE     -- fájl mérete szerint rendez\n"
 "   BY_DATE     -- fájl dátuma szerint rendez\n"
 
-#: src/LYrcFile.c:411
+#: src/LYrcFile.c:412
 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"
@@ -5569,7 +5573,7 @@ msgstr ""
 "Szó törlése:         ^B      ^F    ^E = sor végére \n"
 "A pillanatnyi 'lineedit' módok:\n"
 
-#: src/LYrcFile.c:429
+#: src/LYrcFile.c:430
 msgid ""
 "The following allow you to define sub-bookmark files and descriptions.\n"
 "The format is multi_bookmark<capital_letter>=<filename>,<description>\n"
@@ -5581,7 +5585,7 @@ msgstr ""
 "Összesen 26 könyvjelzõt lehet létrehozni (az angol ABC nagy betûibõl)\n"
 "Kezdjük a \"multi_bookmarkB\"-vel, mivel az 'A' az alapbeállítás.\n"
 
-#: src/LYrcFile.c:435
+#: src/LYrcFile.c:436
 msgid ""
 "personal_mail_address specifies your personal mail address.  The\n"
 "address will be sent during HTTP file transfers for authorization and\n"
@@ -5599,7 +5603,7 @@ msgstr ""
 "a -nofrom parancssori kapcsolót. Üresen is hagyhatja a mezõt, akkor\n"
 "nem lesz benne az elküldött levélben.\n"
 
-#: src/LYrcFile.c:444
+#: src/LYrcFile.c:445
 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"
@@ -5625,7 +5629,7 @@ msgstr ""
 "ennek megfelelõ választ, akkor a szervernek hibaüzenetet\n"
 "kell küldenie, bár elfogadhatatlan válasz is lehetséges.\n"
 
-#: src/LYrcFile.c:460
+#: src/LYrcFile.c:461
 msgid ""
 "preferred_language specifies the language in MIME notation (e.g., en,\n"
 "fr, may be a comma-separated list in decreasing preference)\n"
@@ -5639,7 +5643,7 @@ msgstr ""
 "a fájl ezen a nyelven elérhetõ, akkor a szerver azt küldi vissza. \n"
 "Egyébként a szerver az általa alapértelmezettnek vett nyelven fog beszélni.\n"
 
-#: src/LYrcFile.c:471
+#: src/LYrcFile.c:472
 msgid ""
 "If run_all_execution_links is set \"on\" then all local execution links\n"
 "will be executed when they are selected.\n"
@@ -5661,7 +5665,7 @@ msgstr ""
 "           hozzáférhet a személyes adatainkhoz. Kizárólag abban az\n"
 "           esetben állítsuk \"on\"-ra, ha megbízható forrást használunk.\n"
 
-#: src/LYrcFile.c:482
+#: src/LYrcFile.c:483
 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"
@@ -5688,7 +5692,7 @@ msgstr ""
 "           hozzáférhet a személyes adatainkhoz. Kizárólag abban az\n"
 "           esetben állítsuk \"on\"-ra, ha megbízható forrást használunk.\n"
 
-#: src/LYrcFile.c:500
+#: src/LYrcFile.c:501
 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"
@@ -5707,7 +5711,7 @@ msgstr ""
 "pedig jelölõnégyzeteket.\n"
 "Az alapértelmezett beállítást a -popup paranccsal felül lehet bírálni.\n"
 
-#: src/LYrcFile.c:510
+#: src/LYrcFile.c:511
 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"
@@ -5739,7 +5743,7 @@ msgstr ""
 " -color és -nocolor kapcsolókkal.\n"
 "Az induláskori beállításokat meg lehet változtatni a \"színek mutatása\" opcióval.\n"
 
-#: src/LYrcFile.c:527
+#: src/LYrcFile.c:528
 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"
@@ -5760,7 +5764,7 @@ msgstr ""
 "\"balra\" pozicionálás érvényes, míg \"OFF\" állásban a kurzor elrejtésre\n"
 "kerül. Felülírható a \"-show_cursor\" parancssori opcióval.\n"
 
-#: src/LYrcFile.c:538
+#: src/LYrcFile.c:539
 msgid ""
 "show_dotfiles specifies that the directory listing should include\n"
 "\"hidden\" (dot) files/directories.  If set \"on\", this will be\n"
@@ -5775,7 +5779,7 @@ msgstr ""
 "fájlok megjelenítése le van tiltva, akkor az ilyen fájlok létrehozása sem \n"
 "lehetséges.\n"
 
-#: src/LYrcFile.c:549
+#: src/LYrcFile.c:550
 msgid ""
 "If sub_bookmarks is not turned \"off\", and multiple bookmarks have\n"
 "been defined (see below), then all bookmark operations will first\n"
@@ -5798,7 +5802,7 @@ msgstr ""
 "állítva, akkor a menü - felhasználói módra való tekintet nélkül -\n"
 "megjelenik.\n"
 
-#: src/LYrcFile.c:563
+#: src/LYrcFile.c:564
 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"
@@ -5813,7 +5817,7 @@ msgstr ""
 "kikapcsolja ezeket a sorokat. A \"HALADÓ\" szinten a képernyõ alján a\n"
 "kiválasztott link URL-je látható.\n"
 
-#: src/LYrcFile.c:572
+#: src/LYrcFile.c:573
 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"
@@ -5823,7 +5827,7 @@ msgstr ""
 "az [INLINE], [LINK] vagy [IMAGE] elõfordulásakor. (Lásd még:\n"
 "VERBOSE_IMAGES a lynx.cfg fájlban\n"
 
-#: src/LYrcFile.c:577
+#: src/LYrcFile.c:578
 msgid ""
 "If vi_keys is set to \"on\", then the normal VI movement keys:\n"
 "  j = down    k = up\n"
@@ -5839,7 +5843,7 @@ msgstr ""
 "A parancsok kisbetûsek! A nagy 'H', 'J' és 'K' segítséget, ugrást, és\n"
 "billentyû beállítást jelent.\n"
 
-#: src/LYrcFile.c:585
+#: src/LYrcFile.c:586
 msgid ""
 "The visited_links setting controls how Lynx organizes the information\n"
 "in the Visited Links Page.\n"
@@ -5847,7 +5851,7 @@ msgstr ""
 "A visited_links beállítás határozza meg, hogy a Lynx hogyan szervezi a\n"
 "meglátogatott oldalakkal kapcsolatos információkat.\n"
 
-#: src/LYrcFile.c:803
+#: src/LYrcFile.c:804
 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"
@@ -5868,7 +5872,7 @@ msgstr ""
 "Ugyanígy viselkednek a betûknél lévõ számok is, függetlenül a NumLock\n"
 "gomb állásától.\n"
 
-#: src/LYrcFile.c:812
+#: src/LYrcFile.c:813
 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"
@@ -5877,7 +5881,7 @@ msgstr ""
 "számozva lesznek\"), a hivatkozások mellett számok fognak megjelenni, amivel\n"
 "ki lehet választani az adott hivatkozást.\n"
 
-#: src/LYrcFile.c:816
+#: src/LYrcFile.c:817
 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"
@@ -5896,7 +5900,7 @@ msgstr ""
 "opció nem látható a képernyõn. Referencia listák és a listaparancsból\n"
 "származó kimenetek szintén beszámozzák az ûrlap bemeneteket.\n"
 
-#: src/LYrcFile.c:825
+#: src/LYrcFile.c:826
 msgid ""
 "NOTE: Some fixed format documents may look disfigured when\n"
 "\"LINKS_ARE_NUMBERED\" or \"LINKS_AND_FORM_FIELDS_ARE_NUMBERED\" are\n"
@@ -5906,7 +5910,7 @@ msgstr ""
 "ki, ha a LINKS_ARE_NUMBERED vagy a LINKS_AND_FORM_FIELDS_ARE_NUMBERED\n"
 "opció engedélyezve van.\n"
 
-#: src/LYrcFile.c:857
+#: src/LYrcFile.c:858
 msgid ""
 "Lynx User Defaults File\n"
 "\n"
diff --git a/po/it.po b/po/it.po
index 4e6d9b36..71f7d839 100644
--- a/po/it.po
+++ b/po/it.po
@@ -22,7 +22,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lynx 2.8.4.pre2\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-10-10 18:51-0400\n"
+"POT-Creation-Date: 2004-10-17 16:29-0400\n"
 "PO-Revision-Date: 2002-06-23 23:30 +02:00\n"
 "Last-Translator: Giuliano Artico <artico@math.unipd.it>\n"
 "Language-Team: Italian <tp@lists.linux.it>\n"
@@ -2852,7 +2852,7 @@ msgstr "Documento con contenuto POST non trovato in memoria. Ritentare?"
 msgid "Loading failed, use a previous copy."
 msgstr ""
 
-#: WWW/Library/Implementation/HTAccess.c:1045 src/GridText.c:8301
+#: WWW/Library/Implementation/HTAccess.c:1045 src/GridText.c:8296
 msgid "Loading incomplete."
 msgstr "Caricamento incompleto."
 
@@ -2921,7 +2921,7 @@ msgstr "Trasferiti %d byte (%5d)"
 msgid "connect for data"
 msgstr "connessione per dati"
 
-#: WWW/Library/Implementation/HTFTP.c:3738
+#: WWW/Library/Implementation/HTFTP.c:3741
 msgid "Receiving FTP file."
 msgstr "Ricezione del file FTP"
 
@@ -3080,7 +3080,7 @@ msgstr "L'indirizzo ha un numero di porta non valido."
 msgid "Address length looks invalid"
 msgstr "La lunghezza dell'indirizzo sembra non valida"
 
-#: WWW/Library/Implementation/HTTCP.c:1551 WWW/Library/Implementation/HTTCP.c:1569
+#: WWW/Library/Implementation/HTTCP.c:1552 WWW/Library/Implementation/HTTCP.c:1570
 #, c-format
 msgid "Unable to locate remote host %s."
 msgstr "Impossibile individuare l'host remoto %s"
@@ -3089,39 +3089,39 @@ msgstr "Impossibile individuare l'host remoto %s"
 #. * but not HTAlert, because typically there will be other
 #. * alerts from the callers.  - kw
 #.
-#: WWW/Library/Implementation/HTTCP.c:1566 WWW/Library/Implementation/HTTelnet.c:108
+#: WWW/Library/Implementation/HTTCP.c:1567 WWW/Library/Implementation/HTTelnet.c:108
 #, c-format
 msgid "Invalid hostname %s"
 msgstr "Nome di host non valido: %s"
 
 # First %s will be FTP, HTTP or other protocol and second %s will be hostname
-#: WWW/Library/Implementation/HTTCP.c:1580
+#: WWW/Library/Implementation/HTTCP.c:1581
 #, c-format
 msgid "Making %s connection to %s"
 msgstr "Connessione %s a %s "
 
-#: WWW/Library/Implementation/HTTCP.c:1591
+#: WWW/Library/Implementation/HTTCP.c:1592
 msgid "socket failed."
 msgstr "socket fallita."
 
-#: WWW/Library/Implementation/HTTCP.c:1604
+#: WWW/Library/Implementation/HTTCP.c:1605
 #, c-format
 msgid "socket failed: family %d addr %s port %s."
 msgstr "errore socket: famiglia %d indir. %s porta %s."
 
-#: WWW/Library/Implementation/HTTCP.c:1628
+#: WWW/Library/Implementation/HTTCP.c:1629
 msgid "Could not make connection non-blocking."
 msgstr "Impossibile stabilire connessione non bloccante."
 
-#: WWW/Library/Implementation/HTTCP.c:1697
+#: WWW/Library/Implementation/HTTCP.c:1698
 msgid "Connection failed (too many retries)."
 msgstr "Connessione fallita (troppi tentativi)."
 
-#: WWW/Library/Implementation/HTTCP.c:1896
+#: WWW/Library/Implementation/HTTCP.c:1897
 msgid "Could not restore socket to blocking."
 msgstr "Impossibile ripristinare socket bloccante."
 
-#: WWW/Library/Implementation/HTTCP.c:1962
+#: WWW/Library/Implementation/HTTCP.c:1963
 msgid "Socket read failed for 180,000 tries."
 msgstr "Falliti 180000 tentativi di lettura socket."
 
@@ -3130,49 +3130,49 @@ msgstr "Falliti 180000 tentativi di lettura socket."
 msgid "Address contains a username: %s"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:497
+#: WWW/Library/Implementation/HTTP.c:531
 msgid "This client does not contain support for HTTPS URLs."
 msgstr "Questo client non è predisposto per gestire gli URL HTTPS."
 
-#: WWW/Library/Implementation/HTTP.c:522
+#: WWW/Library/Implementation/HTTP.c:556
 msgid "Unable to connect to remote host."
 msgstr "Impossibile stabilire la connessione con l'host remoto."
 
 # First %s will be FTP, HTTP or other protocol and second %s will be hostname
-#: WWW/Library/Implementation/HTTP.c:544
+#: WWW/Library/Implementation/HTTP.c:578
 #, fuzzy
 msgid "Retrying connection without TLS."
 msgstr "Connessione %s a %s "
 
-#: WWW/Library/Implementation/HTTP.c:587
+#: WWW/Library/Implementation/HTTP.c:621
 msgid "SSL error:Can't find common name in certificate-Continue?"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:604
+#: WWW/Library/Implementation/HTTP.c:638
 #, c-format
 msgid "SSL error:host(%s)!=cert(%s)-Continue?"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:616
+#: WWW/Library/Implementation/HTTP.c:650
 #, c-format
 msgid "Secure %d-bit %s (%s) HTTP connection"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1086
+#: WWW/Library/Implementation/HTTP.c:1120
 msgid "Sending HTTP request."
 msgstr "Invio della richiesta HTTP"
 
-#: WWW/Library/Implementation/HTTP.c:1125
+#: WWW/Library/Implementation/HTTP.c:1159
 msgid "Unexpected network write error; connection aborted."
 msgstr "Errore inatteso di scrittura in rete; connessione annullata."
 
-#: WWW/Library/Implementation/HTTP.c:1131
+#: WWW/Library/Implementation/HTTP.c:1165
 msgid "HTTP request sent; waiting for response."
 msgstr "Richiesta HTTP inviata; in attesa di risposta."
 
 # END of Permit FORM
 # More progress strings follow
-#: WWW/Library/Implementation/HTTP.c:1199
+#: WWW/Library/Implementation/HTTP.c:1233
 msgid "Unexpected network read error; connection aborted."
 msgstr "Errore inatteso di lettura in rete; connessione annullata."
 
@@ -3185,7 +3185,7 @@ msgstr "Errore inatteso di lettura in rete; connessione annullata."
 #. * 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:1393
+#: WWW/Library/Implementation/HTTP.c:1427
 msgid "Got unexpected Informational Status."
 msgstr "Ricevuta informazione di stato inattesa."
 
@@ -3195,7 +3195,7 @@ msgstr "Ricevuta informazione di stato inattesa."
 #. * content.  We'll instruct the user to do that, and
 #. * restore the current document.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1427
+#: WWW/Library/Implementation/HTTP.c:1461
 msgid "Request fulfilled.  Reset Content."
 msgstr "Richiesta soddisfatta. Ripristino del contenuto."
 
@@ -3205,27 +3205,27 @@ msgstr "Richiesta soddisfatta. Ripristino del contenuto."
 #. * 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:1544
+#: WWW/Library/Implementation/HTTP.c:1578
 msgid "Got unexpected 304 Not Modified status."
 msgstr "Ricezione inattesa di stato non modificato 304"
 
-#: WWW/Library/Implementation/HTTP.c:1607
+#: WWW/Library/Implementation/HTTP.c:1641
 msgid "Redirection of POST content requires user approval."
 msgstr "Il reindirizzamento del contenuto POST richiede il consenso dell'utente."
 
-#: WWW/Library/Implementation/HTTP.c:1622
+#: WWW/Library/Implementation/HTTP.c:1656
 msgid "Have POST content.  Treating Permanent Redirection as Temporary.\n"
 msgstr "Contenuto POST. Il reindirizzamento permanente è trattato come temporaneo.\n"
 
-#: WWW/Library/Implementation/HTTP.c:1664
+#: WWW/Library/Implementation/HTTP.c:1698
 msgid "Retrying with access authorization information."
 msgstr "Nuovo tentativo con info di autorizzazione d'accesso."
 
-#: WWW/Library/Implementation/HTTP.c:1676
+#: WWW/Library/Implementation/HTTP.c:1710
 msgid "Show the 401 message body?"
 msgstr "Visualizzare il corpo del messaggio 401?"
 
-#: WWW/Library/Implementation/HTTP.c:1719
+#: WWW/Library/Implementation/HTTP.c:1753
 msgid "Show the 407 message body?"
 msgstr "Visualizzare il corpo del messaggio 407?"
 
@@ -3233,7 +3233,7 @@ msgstr "Visualizzare il corpo del messaggio 407?"
 #. * Bad or unknown server_status number.  Take a chance and hope
 #. * there is something to display.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1819
+#: WWW/Library/Implementation/HTTP.c:1853
 msgid "Unknown status reply from server!"
 msgstr "Risposta di stato sconosciuto ricevuta dal server!"
 
@@ -3501,30 +3501,30 @@ msgstr "campo di modulo sconosciuto"
 
 # WWW/Libary/Implementation/HTFile.c
 # #, fuzzy
-#: src/GridText.c:10020
+#: src/GridText.c:10015
 msgid "Can't open file for uploading"
 msgstr "Impossibile aprire il file per il caricamento"
 
-#: src/GridText.c:11170
+#: src/GridText.c:11165
 #, c-format
 msgid "Submitting %s"
 msgstr "Invio di %s"
 
 #. ugliness has happened; inform user and do the best we can
-#: src/GridText.c:12318
+#: src/GridText.c:12313
 msgid "Hang Detect: TextAnchor struct corrupted - suggest aborting!"
 msgstr "Interruzione: struttura TextAnchorrovinata - si suggerisce di abbandonare!"
 
 #. don't show previous state
-#: src/GridText.c:12523
+#: src/GridText.c:12518
 msgid "Wrap lines to fit displayed area?"
 msgstr "Accorciare le righe per adattarle all'area di visualizzazione?"
 
-#: src/GridText.c:12575
+#: src/GridText.c:12570
 msgid "Very long lines have been wrapped!"
 msgstr "Le righe molto lunghe sono state spezzate!"
 
-#: src/GridText.c:13016
+#: src/GridText.c:13011
 msgid "Very long lines have been truncated!"
 msgstr "Le righe molto lunghe sono state troncate!"
 
@@ -4768,118 +4768,122 @@ msgstr "Accetta modifiche"
 msgid "gzip"
 msgstr ""
 
-#: src/LYOptions.c:2388
+#: src/LYOptions.c:2386
+msgid "deflate"
+msgstr ""
+
+#: src/LYOptions.c:2389
 msgid "compress"
 msgstr ""
 
-#: src/LYOptions.c:2391
+#: src/LYOptions.c:2392
 msgid "bzip2"
 msgstr ""
 
-#: src/LYOptions.c:2393
+#: src/LYOptions.c:2394
 msgid "All"
 msgstr ""
 
-#: src/LYOptions.c:2658 src/LYOptions.c:2682
+#: src/LYOptions.c:2659 src/LYOptions.c:2683
 #, c-format
 msgid "Use %s to invoke the Options menu!"
 msgstr "Usare %s per richiamare il menù opzioni."
 
-#: src/LYOptions.c:3421
+#: src/LYOptions.c:3422
 msgid "(options marked with (!) will not be saved)"
 msgstr ""
 
-#: src/LYOptions.c:3429
+#: src/LYOptions.c:3430
 msgid "General Preferences"
 msgstr "Preferenze generali"
 
 #. ***************************************************************
 #. User Mode: SELECT
-#: src/LYOptions.c:3433
+#: src/LYOptions.c:3434
 msgid "User mode"
 msgstr "Modalità d'uso"
 
 #. Editor: INPUT
-#: src/LYOptions.c:3439
+#: src/LYOptions.c:3440
 msgid "Editor"
 msgstr "Editor"
 
 #. Search Type: SELECT
-#: src/LYOptions.c:3444
+#: src/LYOptions.c:3445
 msgid "Type of Search"
 msgstr " Modalità di ricerca"
 
-#: src/LYOptions.c:3449
+#: src/LYOptions.c:3450
 msgid "Security and Privacy"
 msgstr ""
 
 #. ***************************************************************
 #. Cookies: SELECT
-#: src/LYOptions.c:3453
+#: src/LYOptions.c:3454
 msgid "Cookies"
 msgstr "Cookie"
 
 #. Cookie Prompting: SELECT
-#: src/LYOptions.c:3467
+#: src/LYOptions.c:3468
 msgid "Invalid-Cookie Prompting"
 msgstr ""
 
 #. SSL Prompting: SELECT
-#: src/LYOptions.c:3474
+#: src/LYOptions.c:3475
 msgid "SSL Prompting"
 msgstr ""
 
-#: src/LYOptions.c:3480
+#: src/LYOptions.c:3481
 msgid "Keyboard Input"
 msgstr "Immissione da tastiera"
 
 #. ***************************************************************
 #. Keypad Mode: SELECT
-#: src/LYOptions.c:3484
+#: src/LYOptions.c:3485
 msgid "Keypad mode"
 msgstr "Tastierino numerico"
 
 #. Emacs keys: ON/OFF
-#: src/LYOptions.c:3490
+#: src/LYOptions.c:3491
 msgid "Emacs keys"
 msgstr "Tasti emacs"
 
 #. VI Keys: ON/OFF
-#: src/LYOptions.c:3496
+#: src/LYOptions.c:3497
 msgid "VI keys"
 msgstr "Tasti vi"
 
 #. Line edit style: SELECT
 #. well, at least 2 line edit styles available
-#: src/LYOptions.c:3503
+#: src/LYOptions.c:3504
 msgid "Line edit style"
 msgstr "Modo di elaborazione riga"
 
 # #, fuzzy
 #. Keyboard layout: SELECT
-#: src/LYOptions.c:3515
+#: src/LYOptions.c:3516
 msgid "Keyboard layout"
 msgstr "Tipo di tastiera"
 
 #.
 #. * Display and Character Set
 #.
-#: src/LYOptions.c:3529
+#: src/LYOptions.c:3530
 msgid "Display and Character Set"
 msgstr "Visualizzazione e set di caratteri (charset)"
 
 #. Use locale-based character set: ON/OFF
-#: src/LYOptions.c:3534
+#: src/LYOptions.c:3535
 #, fuzzy
 msgid "Use locale-based character set"
 msgstr "Charset presunto del documento"
 
 #. Display Character Set: SELECT
-#: src/LYOptions.c:3543
+#: src/LYOptions.c:3544
 msgid "Display character set"
 msgstr "Set di caratteri per lo schermo"
 
-#: src/LYOptions.c:3574
+#: src/LYOptions.c:3575
 msgid "Assumed document character set"
 msgstr "Charset presunto del documento"
 
@@ -4888,171 +4892,171 @@ msgstr "Charset presunto del documento"
 #. * we split the header to make it more readable:
 #. * "CJK mode" for CJK display charsets, and "Raw 8-bit" for others.
 #.
-#: src/LYOptions.c:3594
+#: src/LYOptions.c:3595
 msgid "CJK mode"
 msgstr "Modo CJK (lingue asiatiche)"
 
-#: src/LYOptions.c:3596
+#: src/LYOptions.c:3597
 msgid "Raw 8-bit"
 msgstr "Non convertito (raw 8-bit)"
 
 #. X Display: INPUT
-#: src/LYOptions.c:3604
+#: src/LYOptions.c:3605
 msgid "X Display"
 msgstr "X Display"
 
 #.
 #. * Document Appearance
 #.
-#: src/LYOptions.c:3610
+#: src/LYOptions.c:3611
 msgid "Document Appearance"
 msgstr "Aspetto del documento"
 
-#: src/LYOptions.c:3616
+#: src/LYOptions.c:3617
 msgid "Show color"
 msgstr "Mostrare i colori"
 
 #. Show cursor: ON/OFF
-#: src/LYOptions.c:3640
+#: src/LYOptions.c:3641
 msgid "Show cursor"
 msgstr "Mostrare il cursore"
 
 #. Underline links: ON/OFF
-#: src/LYOptions.c:3646
+#: src/LYOptions.c:3647
 #, fuzzy
 msgid "Underline links"
 msgstr "Link nascosti:"
 
 #. Show scrollbar: ON/OFF
-#: src/LYOptions.c:3653
+#: src/LYOptions.c:3654
 msgid "Show scrollbar"
 msgstr "Mostrare la barra di scorrimento"
 
 #. Select Popups: ON/OFF
-#: src/LYOptions.c:3660
+#: src/LYOptions.c:3661
 msgid "Popups for select fields"
 msgstr "Menù a comparsa per i campi «select»"
 
 #. HTML error recovery: SELECT
-#: src/LYOptions.c:3666
+#: src/LYOptions.c:3667
 msgid "HTML error recovery"
 msgstr "Ripristino da errori HTML"
 
 #. Show Images: SELECT
-#: src/LYOptions.c:3672
+#: src/LYOptions.c:3673
 msgid "Show images"
 msgstr "Mostrare le immagini"
 
 #. Verbose Images: ON/OFF
-#: src/LYOptions.c:3686
+#: src/LYOptions.c:3687
 msgid "Verbose images"
 msgstr "Immagini prolisse"
 
-#: src/LYOptions.c:3695
+#: src/LYOptions.c:3696
 msgid "Headers Transferred to Remote Servers"
 msgstr "Le intestazioni sono trasmesse ai server remoti"
 
 #. ***************************************************************
 #. Mail Address: INPUT
-#: src/LYOptions.c:3699
+#: src/LYOptions.c:3700
 msgid "Personal mail address"
 msgstr "Indirizzo E-mail personale"
 
 #. Preferred media type: SELECT
-#: src/LYOptions.c:3704
+#: src/LYOptions.c:3705
 #, fuzzy
 msgid "Preferred media type"
 msgstr "%d byte trasferiti"
 
 #. Preferred encoding: SELECT
-#: src/LYOptions.c:3710
+#: src/LYOptions.c:3711
 #, fuzzy
 msgid "Preferred encoding"
 msgstr "Lingua preferita"
 
 #. Preferred Document Character Set: INPUT
-#: src/LYOptions.c:3716
+#: src/LYOptions.c:3717
 msgid "Preferred document character set"
 msgstr "Charset preferito per i documenti"
 
 #. Preferred Document Language: INPUT
-#: src/LYOptions.c:3721
+#: src/LYOptions.c:3722
 msgid "Preferred document language"
 msgstr "Lingua preferita"
 
-#: src/LYOptions.c:3727
+#: src/LYOptions.c:3728
 msgid "User-Agent header"
 msgstr "Header 'User-Agent'"
 
 #.
 #. * Listing and Accessing Files
 #.
-#: src/LYOptions.c:3735
+#: src/LYOptions.c:3736
 msgid "Listing and Accessing Files"
 msgstr "Elencazione ed accesso ai file"
 
 #. ***************************************************************
 #. FTP sort: SELECT
-#: src/LYOptions.c:3739
+#: src/LYOptions.c:3740
 msgid "FTP sort criteria"
 msgstr "Criterio disposizione liste FTP"
 
 #. Local Directory Sort: SELECT
-#: src/LYOptions.c:3746
+#: src/LYOptions.c:3747
 msgid "Local directory sort criteria"
 msgstr "Criterio disposizione file locali"
 
 # NdT: added "manually" -GA
 #. Local Directory Order: SELECT
-#: src/LYOptions.c:3752
+#: src/LYOptions.c:3753
 msgid "Local directory sort order"
 msgstr "Criterio ordinamento file locali"
 
 # NdT: options menu phrase missing in po files -GA
 # msgid "(options marked with (!) will not be saved)\n"
 # msgstr "(le opzioni affiancate da (!) non saranno registrate)\n"
-#: src/LYOptions.c:3761
+#: src/LYOptions.c:3762
 msgid "Show dot files"
 msgstr "Mostrare i file nascosti"
 
-#: src/LYOptions.c:3769
+#: src/LYOptions.c:3770
 msgid "Execution links"
 msgstr "Esecuzione link"
 
 #. Show transfer rate: SELECT
-#: src/LYOptions.c:3789
+#: src/LYOptions.c:3790
 msgid "Show transfer rate"
 msgstr "Velocità di trasferimento"
 
 #.
 #. * Special Files and Screens
 #.
-#: src/LYOptions.c:3809
+#: src/LYOptions.c:3810
 msgid "Special Files and Screens"
 msgstr "File e schermate speciali"
 
-#: src/LYOptions.c:3814
+#: src/LYOptions.c:3815
 msgid "Multi-bookmarks"
 msgstr "Segnalibri multipli"
 
-#: src/LYOptions.c:3822
+#: src/LYOptions.c:3823
 msgid "Review/edit Bookmarks files"
 msgstr "Revisione file segnalibri"
 
-#: src/LYOptions.c:3824
+#: src/LYOptions.c:3825
 msgid "Goto multi-bookmark menu"
 msgstr "Andare al menù multi-bookmark"
 
-#: src/LYOptions.c:3826
+#: src/LYOptions.c:3827
 msgid "Bookmarks file"
 msgstr "File dei segnalibri (Bookmark)"
 
 #. Visited Pages: SELECT
-#: src/LYOptions.c:3832
+#: src/LYOptions.c:3833
 msgid "Visited Pages"
 msgstr "Pagine consultate"
 
-#: src/LYOptions.c:3837
+#: src/LYOptions.c:3838
 #, fuzzy
 msgid "View the file "
 msgstr "Spedire il file tramite mail"
@@ -5173,38 +5177,38 @@ msgstr "Lynx: impossibile iniziare. File di regole CERN %s non disponibile.\n"
 msgid "(no name)"
 msgstr "(nessun nome)"
 
-#: src/LYReadCFG.c:1772
+#: src/LYReadCFG.c:1773
 #, c-format
 msgid "More than %d nested lynx.cfg includes -- perhaps there is a loop?!?\n"
 msgstr "Oltre %d inclusioni annidate di lynx.cfg. Forse c'è un circolo vizioso?\n"
 
-#: src/LYReadCFG.c:1774
+#: src/LYReadCFG.c:1775
 #, c-format
 msgid "Last attempted include was '%s',\n"
 msgstr "L'ultima inclusione tentata era: '%s',\n"
 
-#: src/LYReadCFG.c:1775
+#: src/LYReadCFG.c:1776
 #, c-format
 msgid "included from '%s'.\n"
 msgstr "incluso da '%s'.\n"
 
-#: src/LYReadCFG.c:2181 src/LYReadCFG.c:2194 src/LYReadCFG.c:2252
+#: src/LYReadCFG.c:2183 src/LYReadCFG.c:2196 src/LYReadCFG.c:2254
 msgid "The following is read from your lynx.cfg file."
 msgstr "Quanto segue è tratto dal file lynx.cfg personale."
 
-#: src/LYReadCFG.c:2182 src/LYReadCFG.c:2195
+#: src/LYReadCFG.c:2184 src/LYReadCFG.c:2197
 msgid "Please read the distribution"
 msgstr "Consultare la distribuzione"
 
-#: src/LYReadCFG.c:2188 src/LYReadCFG.c:2198
+#: src/LYReadCFG.c:2190 src/LYReadCFG.c:2200
 msgid "for more comments."
 msgstr "per ulteriori commenti."
 
-#: src/LYReadCFG.c:2234
+#: src/LYReadCFG.c:2236
 msgid "RELOAD THE CHANGES"
 msgstr "RIACQUISIRE LE MODIFICHE"
 
-#: src/LYReadCFG.c:2242
+#: src/LYReadCFG.c:2244
 msgid "Your primary configuration"
 msgstr "La configurazione principale"
 
@@ -5509,7 +5513,7 @@ msgstr ""
 msgid "Normally disabled.  See ENABLE_LYNXRC in lynx.cfg\n"
 msgstr "Normalmente disattivato. Vedere ENABLE_LYNXRC in lynx.cfg\n"
 
-#: src/LYrcFile.c:317
+#: src/LYrcFile.c:318
 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"
@@ -5521,7 +5525,7 @@ msgstr ""
 "cosicché è chiesto il consenso per ogni cookie.Impostare accept_all_cookies\n"
 "a \"TRUE\" per accettare tutti i cookie.\n"
 
-#: src/LYrcFile.c:324
+#: src/LYrcFile.c:325
 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"
@@ -5531,7 +5535,7 @@ msgstr ""
 "nel quale l'utilizzatore può copiare i link cui accedere rapidamente\n"
 "in un momento successivo.\n"
 
-#: src/LYrcFile.c:329
+#: src/LYrcFile.c:330
 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"
@@ -5541,7 +5545,7 @@ msgstr ""
 "con i tasti 's' o '/' distingue caratteri maiuscoli e minuscoli presenti nel\n"
 "documento. Il valore predefinito è \"off\" (insensibile a maiusc/minusc).\n"
 
-#: src/LYrcFile.c:334
+#: src/LYrcFile.c:335
 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"
@@ -5555,7 +5559,7 @@ msgstr ""
 "oppure si possono utilizzare le approssimazioni a 7 bit.\n"
 "I set di caratteri attualmente validi sono:\n"
 
-#: src/LYrcFile.c:341
+#: src/LYrcFile.c:342
 msgid ""
 "cookie_accept_domains and cookie_reject_domains are comma-delimited\n"
 "lists of domains from which Lynx should automatically accept or reject\n"
@@ -5569,7 +5573,7 @@ msgstr ""
 "il rifiuto. Il parametro accept_all_cookies annulla\n"
 "qualunque impostazione fatta con queste due opzioni.\n"
 
-#: src/LYrcFile.c:349
+#: src/LYrcFile.c:350
 msgid ""
 "cookie_file specifies the file from which to read persistent cookies.\n"
 "The default is ~/.lynx_cookies.\n"
@@ -5577,7 +5581,7 @@ msgstr ""
 "cookie_file indica il file da cui rilevare i cookie permanenti.\n"
 "Il valore predefinito è ~/.lynx_cookies.\n"
 
-#: src/LYrcFile.c:354
+#: src/LYrcFile.c:355
 msgid ""
 "cookie_loose_invalid_domains, cookie_strict_invalid_domains, and\n"
 "cookie_query_invalid_domains are comma-delimited lists of which domains\n"
@@ -5595,13 +5599,13 @@ msgstr ""
 "cookie con attributi path o domain non validi. Per ogni dominio la condizione\n"
 "predefinita è di interpellare l'utente in caso di path o dominio non valido.\n"
 
-#: src/LYrcFile.c:368
+#: src/LYrcFile.c:369
 msgid ""
 "dir_list_order specifies the directory list order under DIRED_SUPPORT\n"
 "(if implemented).  The default is \"ORDER_BY_NAME\"\n"
 msgstr ""
 
-#: src/LYrcFile.c:373
+#: src/LYrcFile.c:374
 msgid ""
 "dir_list_styles specifies the directory list style under DIRED_SUPPORT\n"
 "(if implemented).  The default is \"MIXED_STYLE\", which sorts both\n"
@@ -5613,7 +5617,7 @@ msgstr ""
 "ordina file e directory insieme. Il valore \"FILES_FIRST\" elenca prima i file,\n"
 "mentre \"DIRECTORIES_FIRST\" elenca per prime le directory.\n"
 
-#: src/LYrcFile.c:381
+#: src/LYrcFile.c:382
 msgid ""
 "If emacs_keys is to \"on\" then the normal EMACS movement keys:\n"
 "  ^N = down    ^P = up\n"
@@ -5625,7 +5629,7 @@ msgstr ""
 "  ^B = sinistra    ^F = destra\n"
 "sono abilitati.\n"
 
-#: src/LYrcFile.c:387
+#: src/LYrcFile.c:388
 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"
@@ -5637,7 +5641,7 @@ msgstr ""
 "file è disabilitata (a meno che non la si attivi da linea di comando) e viene\n"
 "usato l'editor di riga incorporato per la preparazione dei messaggi di posta.\n"
 
-#: src/LYrcFile.c:393
+#: src/LYrcFile.c:394
 msgid ""
 "The file_sorting_method specifies which value to sort on when viewing\n"
 "file lists such as FTP directories.  The options are:\n"
@@ -5653,7 +5657,7 @@ msgstr ""
 "   BY_SIZE     -- ordina in base alla dimensione del file\n"
 "   BY_DATE     -- ordina in base alla data del file\n"
 
-#: src/LYrcFile.c:411
+#: src/LYrcFile.c:412
 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"
@@ -5680,7 +5684,7 @@ msgstr ""
 "\n"
 "I modi di correzione riga attuali sono:\n"
 
-#: src/LYrcFile.c:429
+#: src/LYrcFile.c:430
 msgid ""
 "The following allow you to define sub-bookmark files and descriptions.\n"
 "The format is multi_bookmark<capital_letter>=<filename>,<description>\n"
@@ -5692,7 +5696,7 @@ msgstr ""
 "Sono consentiti fino a 26 file di segnalibri (per le 26 lettere dell'alfabeto).\n"
 "Si parte da \"multi_bookmarkB\" perché 'A' è predefinito (vedi sopra).\n"
 
-#: src/LYrcFile.c:435
+#: src/LYrcFile.c:436
 msgid ""
 "personal_mail_address specifies your personal mail address.  The\n"
 "address will be sent during HTTP file transfers for authorization and\n"
@@ -5710,7 +5714,7 @@ msgstr ""
 "Si potrebbe anche lasciar vuoto questo campo, ma in tal caso l'indirizzo\n"
 "non comparirebbe nei commenti spediti.\n"
 
-#: src/LYrcFile.c:444
+#: src/LYrcFile.c:445
 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"
@@ -5738,7 +5742,7 @@ msgstr ""
 "di errore, malgrado l'invio di una risposta inaccettabile\n"
 "sia ugualmente consentito.\n"
 
-#: src/LYrcFile.c:460
+#: src/LYrcFile.c:461
 msgid ""
 "preferred_language specifies the language in MIME notation (e.g., en,\n"
 "fr, may be a comma-separated list in decreasing preference)\n"
@@ -5752,7 +5756,7 @@ msgstr ""
 "Se disponibile, il server invierà un file in tale lingua, altrimenti\n"
 "invierà il file nella sua lingua predefinita.\n"
 
-#: src/LYrcFile.c:471
+#: src/LYrcFile.c:472
 msgid ""
 "If run_all_execution_links is set \"on\" then all local execution links\n"
 "will be executed when they are selected.\n"
@@ -5774,7 +5778,7 @@ msgstr ""
 "            Questo parametro va posto a \"on\" solo nel caso in cui\n"
 "            si acceda a fonti completamente affidabili.\n"
 
-#: src/LYrcFile.c:482
+#: src/LYrcFile.c:483
 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"
@@ -5802,7 +5806,7 @@ msgstr ""
 "            Questo parametro va posto a \"on\" solo nel caso in cui\n"
 "            si acceda a fonti completamente affidabili.\n"
 
-#: src/LYrcFile.c:500
+#: src/LYrcFile.c:501
 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"
@@ -5820,7 +5824,7 @@ msgstr ""
 "predefiniti, mentre il valore \"off\" imposta l'uso delle caselle radio.\n"
 "Sul valore così impostato ha prevalenza l'opzione -popup da linea di comando.\n"
 
-#: src/LYrcFile.c:510
+#: src/LYrcFile.c:511
 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"
@@ -5854,7 +5858,7 @@ msgstr ""
 "sulla voce \"show color\" (Mostrare i colori). Se le impostazioni vengono\n"
 "registrate, i valori \"on\" e \"off\" di tale voce sono trattati come \"default\".\n"
 
-#: src/LYrcFile.c:527
+#: src/LYrcFile.c:528
 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"
@@ -5876,7 +5880,7 @@ msgstr ""
 "mentre \"off\" determina l'occultamento del cursore. Il valore\n"
 "preimpostato si può scavalcare con l'opzione -show_cursor da riga di comando.\n"
 
-#: src/LYrcFile.c:538
+#: src/LYrcFile.c:539
 msgid ""
 "show_dotfiles specifies that the directory listing should include\n"
 "\"hidden\" (dot) files/directories.  If set \"on\", this will be\n"
@@ -5890,7 +5894,7 @@ msgstr ""
 "un'opzione nella riga di comando. Se la visualizzazione dei file nascosti è\n"
 "disattivata, è disattivata anche la creazione di tali file da parte di Lynx.\n"
 
-#: src/LYrcFile.c:549
+#: src/LYrcFile.c:550
 msgid ""
 "If sub_bookmarks is not turned \"off\", and multiple bookmarks have\n"
 "been defined (see below), then all bookmark operations will first\n"
@@ -5912,7 +5916,7 @@ msgstr ""
 "(principiante) e \"intermediate\" (medio). Quando l'opzione è impostata come\n"
 "\"standard\", viene presentato il menù indipendentemente dalla modalità d'uso.\n"
 
-#: src/LYrcFile.c:563
+#: src/LYrcFile.c:564
 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"
@@ -5928,7 +5932,7 @@ msgstr ""
 "le informazioni supplementari. Usare \"ADVANCED\" per vedere in fondo allo\n"
 "schermo l'URL del link attualmente selezionato.\n"
 
-#: src/LYrcFile.c:572
+#: src/LYrcFile.c:573
 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"
@@ -5938,7 +5942,7 @@ msgstr ""
 "dell'immagine in luogo di [INLINE], [LINK] o [IMAGE]\n"
 "(vedere anche VERBOSE_IMAGES in lynx.cfg).\n"
 
-#: src/LYrcFile.c:577
+#: src/LYrcFile.c:578
 msgid ""
 "If vi_keys is set to \"on\", then the normal VI movement keys:\n"
 "  j = down    k = up\n"
@@ -5954,7 +5958,7 @@ msgstr ""
 "Le maiuscole 'H', 'J' e 'K' continuano a richiamare rispettivamente l'aiuto,\n"
 "le abbreviazioni (jump shortcuts) e la mappa di tastiera.\n"
 
-#: src/LYrcFile.c:585
+#: src/LYrcFile.c:586
 msgid ""
 "The visited_links setting controls how Lynx organizes the information\n"
 "in the Visited Links Page.\n"
@@ -5962,7 +5966,7 @@ msgstr ""
 "L'opzione visited_links determina il modo in cui Lynx organizza le\n"
 "informazioni nella pagina dei link consultati.\n"
 
-#: src/LYrcFile.c:803
+#: src/LYrcFile.c:804
 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"
@@ -5980,7 +5984,7 @@ msgstr ""
 "e i corrispondenti numeri della tastiera agiscono come le frecce,\n"
 "qualunque sia lo stato del numlock.\n"
 
-#: src/LYrcFile.c:812
+#: src/LYrcFile.c:813
 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"
@@ -5988,7 +5992,7 @@ msgstr ""
 "Se keypad_mode è impostato come \"LINKS_ARE_NUMBERED\", a fianco di ciascun\n"
 "link compare un numero e si usano i numeri per selezionare i link.\n"
 
-#: src/LYrcFile.c:816
+#: src/LYrcFile.c:817
 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"
@@ -6007,7 +6011,7 @@ msgstr ""
 "visibile sullo schermo. Gli elenchi di riferimenti e l'uscita del comando «l»\n"
 "enumerano anche i campi di immissione nei moduli.\n"
 
-#: src/LYrcFile.c:825
+#: src/LYrcFile.c:826
 msgid ""
 "NOTE: Some fixed format documents may look disfigured when\n"
 "\"LINKS_ARE_NUMBERED\" or \"LINKS_AND_FORM_FIELDS_ARE_NUMBERED\" are\n"
@@ -6016,7 +6020,7 @@ msgstr ""
 "Nota: alcuni documenti con formato fissato possono apparire sfigurati quando\n"
 "si usano i valori \"LINKS_ARE_NUMBERED\" o \"LINKS_AND_FORM_FIELDS_ARE_NUMBERED\".\n"
 
-#: src/LYrcFile.c:857
+#: src/LYrcFile.c:858
 msgid ""
 "Lynx User Defaults File\n"
 "\n"
diff --git a/po/ja.po b/po/ja.po
index cfb6c13e..6dcc3f38 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lynx 2.8.5pre9\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-10-10 18:51-0400\n"
+"POT-Creation-Date: 2004-10-17 16:29-0400\n"
 "PO-Revision-Date: 2003-04-19 20:40+0900\n"
 "Last-Translator: Masayuki Hatta <mhatta@po.airs.net>\n"
 "Language-Team: Japanese <translation-team-ja@lists.sourceforge.net>\n"
@@ -2790,7 +2790,7 @@ msgstr "POST ¥³¥ó¥Æ¥ó¥Ä¤ò´Þ¤à¥É¥­¥å¥á¥ó¥È¤Ï¥­¥ã¥Ã¥·¥å¤ÎÃæ¤Ë¤¢¤ê¤Þ¤»¤ó¤Ç¤·¤¿¡£ºÆÁ
 msgid "Loading failed, use a previous copy."
 msgstr ""
 
-#: WWW/Library/Implementation/HTAccess.c:1045 src/GridText.c:8301
+#: WWW/Library/Implementation/HTAccess.c:1045 src/GridText.c:8296
 msgid "Loading incomplete."
 msgstr "ÆÉ¤ß¹þ¤ß¤¬ÃæÃǤµ¤ì¤Þ¤·¤¿¡£"
 
@@ -2859,7 +2859,7 @@ msgstr "%d ¥Ð¥¤¥ÈžÁ÷ºÑ (%5d)"
 msgid "connect for data"
 msgstr "¥Ç¡¼¥¿¤ËÀܳ"
 
-#: WWW/Library/Implementation/HTFTP.c:3738
+#: WWW/Library/Implementation/HTFTP.c:3741
 msgid "Receiving FTP file."
 msgstr "FTP ¥Õ¥¡¥¤¥ë¤ò¼õ¿®Ãæ"
 
@@ -3018,7 +3018,7 @@ msgstr "¥¢¥É¥ì¥¹¤ËÉÔÀµ¤Ê¥Ý¡¼¥È¤¬»ØÄꤵ¤ì¤Æ¤¤¤Þ¤¹"
 msgid "Address length looks invalid"
 msgstr "¥¢¥É¥ì¥¹Ä¹¤¬ÉÔÀµ¤Î¤è¤¦¤Ç¤¹"
 
-#: WWW/Library/Implementation/HTTCP.c:1551 WWW/Library/Implementation/HTTCP.c:1569
+#: WWW/Library/Implementation/HTTCP.c:1552 WWW/Library/Implementation/HTTCP.c:1570
 #, c-format
 msgid "Unable to locate remote host %s."
 msgstr "¥ê¥â¡¼¥È¥Û¥¹¥È %s ¤Î°ÌÃÖ¤òÆÃÄê¤Ç¤­¤Þ¤»¤ó¡£"
@@ -3027,38 +3027,38 @@ msgstr "¥ê¥â¡¼¥È¥Û¥¹¥È %s ¤Î°ÌÃÖ¤òÆÃÄê¤Ç¤­¤Þ¤»¤ó¡£"
 #. * but not HTAlert, because typically there will be other
 #. * alerts from the callers.  - kw
 #.
-#: WWW/Library/Implementation/HTTCP.c:1566 WWW/Library/Implementation/HTTelnet.c:108
+#: WWW/Library/Implementation/HTTCP.c:1567 WWW/Library/Implementation/HTTelnet.c:108
 #, c-format
 msgid "Invalid hostname %s"
 msgstr "%s ¤ÏÉÔÀµ¤Ê¥Û¥¹¥È̾¤Ç¤¹"
 
-#: WWW/Library/Implementation/HTTCP.c:1580
+#: WWW/Library/Implementation/HTTCP.c:1581
 #, c-format
 msgid "Making %s connection to %s"
 msgstr "%s ¤Ç %s ¤ËÀÜÂ³Ãæ"
 
-#: WWW/Library/Implementation/HTTCP.c:1591
+#: WWW/Library/Implementation/HTTCP.c:1592
 msgid "socket failed."
 msgstr "¥½¥±¥Ã¥È¤¬¼ºÇÔ¤·¤Þ¤·¤¿¡£"
 
-#: WWW/Library/Implementation/HTTCP.c:1604
+#: WWW/Library/Implementation/HTTCP.c:1605
 #, c-format
 msgid "socket failed: family %d addr %s port %s."
 msgstr "¥½¥±¥Ã¥È¤¬¼ºÇÔ¤·¤Þ¤·¤¿: ¥Õ¥¡¥ß¥ê %d ¥¢¥É¥ì¥¹ %s ¥Ý¡¼¥È %s¡£"
 
-#: WWW/Library/Implementation/HTTCP.c:1628
+#: WWW/Library/Implementation/HTTCP.c:1629
 msgid "Could not make connection non-blocking."
 msgstr "Àܳ¤òÈó¥Ö¥í¥Ã¥­¥ó¥°¤Ë¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿¡£"
 
-#: WWW/Library/Implementation/HTTCP.c:1697
+#: WWW/Library/Implementation/HTTCP.c:1698
 msgid "Connection failed (too many retries)."
 msgstr "Àܳ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿ (ºÆ»î¹Ô¤¬Â¿¤¹¤®¤Þ¤¹)"
 
-#: WWW/Library/Implementation/HTTCP.c:1896
+#: WWW/Library/Implementation/HTTCP.c:1897
 msgid "Could not restore socket to blocking."
 msgstr "¥Ö¥í¥Ã¥­¥ó¥°¤Î¤¿¤á¤Î¥½¥±¥Ã¥È¤òÉüµì¤Ç¤­¤Þ¤»¤ó¤Ç¤·¤¿¡£"
 
-#: WWW/Library/Implementation/HTTCP.c:1962
+#: WWW/Library/Implementation/HTTCP.c:1963
 msgid "Socket read failed for 180,000 tries."
 msgstr "180,000 ²ó»î¹Ô¤·¤Þ¤·¤¿¤¬¥½¥±¥Ã¥È¤ÎÆÉ¤ß¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡£"
 
@@ -3067,45 +3067,45 @@ msgstr "180,000 ²ó»î¹Ô¤·¤Þ¤·¤¿¤¬¥½¥±¥Ã¥È¤ÎÆÉ¤ß¹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡£"
 msgid "Address contains a username: %s"
 msgstr "¥¢¥É¥ì¥¹¤Ï¥æ¡¼¥¶Ì¾ %s ¤ò´Þ¤ó¤Ç¤¤¤Þ¤¹"
 
-#: WWW/Library/Implementation/HTTP.c:497
+#: WWW/Library/Implementation/HTTP.c:531
 msgid "This client does not contain support for HTTPS URLs."
 msgstr "¤³¤Î¥¯¥é¥¤¥¢¥ó¥È¤Ï HTTPS URL ¤ò¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤»¤ó¡£"
 
-#: WWW/Library/Implementation/HTTP.c:522
+#: WWW/Library/Implementation/HTTP.c:556
 msgid "Unable to connect to remote host."
 msgstr "¥ê¥â¡¼¥È¥Û¥¹¥È¤ËÀܳ¤Ç¤­¤Þ¤»¤ó¡£"
 
-#: WWW/Library/Implementation/HTTP.c:544
+#: WWW/Library/Implementation/HTTP.c:578
 msgid "Retrying connection without TLS."
 msgstr "TLS¤ò»È¤ï¤º¤ËÀܳ¤òºÆ»î¹Ô¤·¤Æ¤¤¤Þ¤¹¡£"
 
-#: WWW/Library/Implementation/HTTP.c:587
+#: WWW/Library/Implementation/HTTP.c:621
 msgid "SSL error:Can't find common name in certificate-Continue?"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:604
+#: WWW/Library/Implementation/HTTP.c:638
 #, c-format
 msgid "SSL error:host(%s)!=cert(%s)-Continue?"
 msgstr "SSL¥¨¥é¡¼: ¥Û¥¹¥È(%s) ¤¬ cert(%s) ¤È°ìÃפ·¤Þ¤»¤ó ³¤±¤Þ¤¹¤«?"
 
-#: WWW/Library/Implementation/HTTP.c:616
+#: WWW/Library/Implementation/HTTP.c:650
 #, c-format
 msgid "Secure %d-bit %s (%s) HTTP connection"
 msgstr "¥»¥­¥å¥¢¤Ê %d ¥Ó¥Ã¥È %s (%s) HTTP Àܳ"
 
-#: WWW/Library/Implementation/HTTP.c:1086
+#: WWW/Library/Implementation/HTTP.c:1120
 msgid "Sending HTTP request."
 msgstr "HTTP ¥ê¥¯¥¨¥¹¥È¤òÁ÷¿®Ãæ"
 
-#: WWW/Library/Implementation/HTTP.c:1125
+#: WWW/Library/Implementation/HTTP.c:1159
 msgid "Unexpected network write error; connection aborted."
 msgstr "ÆÍÁ³¤Î¥Í¥Ã¥È¥ï¡¼¥¯½ñ¤­¹þ¤ß¥¨¥é¡¼: Àܳ¤¬ÃæÃǤµ¤ì¤Þ¤·¤¿¡£"
 
-#: WWW/Library/Implementation/HTTP.c:1131
+#: WWW/Library/Implementation/HTTP.c:1165
 msgid "HTTP request sent; waiting for response."
 msgstr "HTTP ¥ê¥¯¥¨¥¹¥È¤òÁ÷¿®¤·¤Þ¤·¤¿: ±þÅú¤òÂԤäƤ¤¤Þ¤¹"
 
-#: WWW/Library/Implementation/HTTP.c:1199
+#: WWW/Library/Implementation/HTTP.c:1233
 msgid "Unexpected network read error; connection aborted."
 msgstr "ÆÍÁ³¤Î¥Í¥Ã¥È¥ï¡¼¥¯ÆÉ¤ß¹þ¤ß¥¨¥é¡¼: Àܳ¤¬ÃæÃǤµ¤ì¤Þ¤·¤¿¡£"
 
@@ -3118,7 +3118,7 @@ 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:1393
+#: WWW/Library/Implementation/HTTP.c:1427
 msgid "Got unexpected Informational Status."
 msgstr "ͽ´ü¤·¤Ê¤¤ Informational Status ¤ò¼õ¤±¼è¤ê¤Þ¤·¤¿¡£"
 
@@ -3128,7 +3128,7 @@ msgstr "ͽ´ü¤·¤Ê¤¤ Informational Status ¤ò¼õ¤±¼è¤ê¤Þ¤·¤¿¡£"
 #. * content.  We'll instruct the user to do that, and
 #. * restore the current document.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1427
+#: WWW/Library/Implementation/HTTP.c:1461
 msgid "Request fulfilled.  Reset Content."
 msgstr "¥ê¥¯¥¨¥¹¥È¤¬¼Â¹Ô¤µ¤ì¤Þ¤·¤¿¡£¥³¥ó¥Æ¥ó¥È¤ò¥ê¥»¥Ã¥È¤·¤Æ¤¯¤À¤µ¤¤¡£"
 
@@ -3138,27 +3138,27 @@ 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:1544
+#: WWW/Library/Implementation/HTTP.c:1578
 msgid "Got unexpected 304 Not Modified status."
 msgstr "ͽ´ü¤»¤Ì 304 Not Modified ¥¹¥Æ¡¼¥¿¥¹¤ò¼õ¤±¼è¤ê¤Þ¤·¤¿¡£"
 
-#: WWW/Library/Implementation/HTTP.c:1607
+#: WWW/Library/Implementation/HTTP.c:1641
 msgid "Redirection of POST content requires user approval."
 msgstr "POST ¥³¥ó¥Æ¥ó¥È¤Î¥ê¥À¥¤¥ì¥¯¥·¥ç¥ó¤Ë¤Ï¥æ¡¼¥¶¤Î¾µÇ§¤¬É¬ÍפǤ¹¡£"
 
-#: WWW/Library/Implementation/HTTP.c:1622
+#: WWW/Library/Implementation/HTTP.c:1656
 msgid "Have POST content.  Treating Permanent Redirection as Temporary.\n"
 msgstr "POST ¥³¥ó¥Æ¥ó¥È¤ò´Þ¤ó¤Ç¤¤¤Þ¤¹¡£±Ê³Ū¤Ê¥ê¥À¥¤¥ì¥¯¥·¥ç¥ó¤ò°ì»þŪ¤Ê¤â¤Î¤È¤·¤Æ°·¤¤¤Þ¤¹¡£\n"
 
-#: WWW/Library/Implementation/HTTP.c:1664
+#: WWW/Library/Implementation/HTTP.c:1698
 msgid "Retrying with access authorization information."
 msgstr "¥¢¥¯¥»¥¹Ç§¾Ú¾ðÊóÉÕ¤­¤ÇºÆ»î¹Ô¤·¤Æ¤¤¤Þ¤¹¡£"
 
-#: WWW/Library/Implementation/HTTP.c:1676
+#: WWW/Library/Implementation/HTTP.c:1710
 msgid "Show the 401 message body?"
 msgstr "401 ¥á¥Ã¥»¡¼¥¸ËÜÂΤò¸«¤Þ¤¹¤«?"
 
-#: WWW/Library/Implementation/HTTP.c:1719
+#: WWW/Library/Implementation/HTTP.c:1753
 msgid "Show the 407 message body?"
 msgstr "407 ¥á¥Ã¥»¡¼¥¸ËÜÂΤò¸«¤Þ¤¹¤«?"
 
@@ -3166,7 +3166,7 @@ msgstr "407 ¥á¥Ã¥»¡¼¥¸ËÜÂΤò¸«¤Þ¤¹¤«?"
 #. * Bad or unknown server_status number.  Take a chance and hope
 #. * there is something to display.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1819
+#: WWW/Library/Implementation/HTTP.c:1853
 msgid "Unknown status reply from server!"
 msgstr "¥µ¡¼¥Ð¤«¤é¤ÎÉÔÌÀ¤Ê¥¹¥Æ¡¼¥¿¥¹¥ê¥×¥é¥¤¤Ç¤¹!"
 
@@ -3430,30 +3430,30 @@ msgstr "keygen ¥Õ¥£¡¼¥ë¥É"
 msgid "unknown form field"
 msgstr "̤ÃΤΥե©¡¼¥à¥Õ¥£¡¼¥ë¥É"
 
-#: src/GridText.c:10020
+#: src/GridText.c:10015
 msgid "Can't open file for uploading"
 msgstr "¥¢¥Ã¥×¥í¡¼¥É¤¹¤ë¥Õ¥¡¥¤¥ë¤¬³«¤±¤Þ¤»¤ó¡£"
 
-#: src/GridText.c:11170
+#: src/GridText.c:11165
 #, c-format
 msgid "Submitting %s"
 msgstr "%s ¤òÁ÷¿®Ãæ"
 
 #. ugliness has happened; inform user and do the best we can
-#: src/GridText.c:12318
+#: src/GridText.c:12313
 msgid "Hang Detect: TextAnchor struct corrupted - suggest aborting!"
 msgstr "¥Ï¥ó¥°¸¡½Ð: TextAnchor ¹½Â¤ÂΤ¬²õ¤ì¤Þ¤·¤¿ - ½ªÎ»¤ò¤ª´«¤á¤·¤Þ¤¹!"
 
 #. don't show previous state
-#: src/GridText.c:12523
+#: src/GridText.c:12518
 msgid "Wrap lines to fit displayed area?"
 msgstr "ɽ¼¨Îΰè¤Ë¼ý¤Þ¤ë¤è¤¦¹Ô¤òÀÞ¤êÊÖ¤·¤Þ¤¹¤«?"
 
-#: src/GridText.c:12575
+#: src/GridText.c:12570
 msgid "Very long lines have been wrapped!"
 msgstr "Ť¹¤®¤ë¹Ô¤ÏÀÞ¤êÊÖ¤µ¤ì¤Þ¤¹!"
 
-#: src/GridText.c:13016
+#: src/GridText.c:13011
 msgid "Very long lines have been truncated!"
 msgstr "Ť¹¤®¤ë¹Ô¤ÏÀÚ¤êµÍ¤á¤é¤ì¤Þ¤¹!"
 
@@ -4692,117 +4692,121 @@ msgstr "Êѹ¹¤òÍ­¸ú¤Ë¤¹¤ë"
 msgid "gzip"
 msgstr ""
 
-#: src/LYOptions.c:2388
+#: src/LYOptions.c:2386
+msgid "deflate"
+msgstr ""
+
+#: src/LYOptions.c:2389
 msgid "compress"
 msgstr ""
 
-#: src/LYOptions.c:2391
+#: src/LYOptions.c:2392
 msgid "bzip2"
 msgstr ""
 
-#: src/LYOptions.c:2393
+#: src/LYOptions.c:2394
 msgid "All"
 msgstr ""
 
-#: src/LYOptions.c:2658 src/LYOptions.c:2682
+#: src/LYOptions.c:2659 src/LYOptions.c:2683
 #, c-format
 msgid "Use %s to invoke the Options menu!"
 msgstr "%s ¤ÇÀßÄê¥á¥Ë¥å¡¼¤òµ¯Æ°¤·¤Þ¤¹!"
 
-#: src/LYOptions.c:3421
+#: src/LYOptions.c:3422
 msgid "(options marked with (!) will not be saved)"
 msgstr "((!) ¤¬¤Ä¤¤¤¿¥ª¥×¥·¥ç¥ó¤ÏÊݸ¤µ¤ì¤Þ¤»¤ó)"
 
-#: src/LYOptions.c:3429
+#: src/LYOptions.c:3430
 msgid "General Preferences"
 msgstr "Á´ÈÌŪ¤ÊÀßÄê"
 
 #. ***************************************************************
 #. User Mode: SELECT
-#: src/LYOptions.c:3433
+#: src/LYOptions.c:3434
 msgid "User mode"
 msgstr "¥æ¡¼¥¶¥â¡¼¥É"
 
 #. Editor: INPUT
-#: src/LYOptions.c:3439
+#: src/LYOptions.c:3440
 msgid "Editor"
 msgstr "»ÈÍѤ¹¤ë¥¨¥Ç¥£¥¿"
 
 #. Search Type: SELECT
-#: src/LYOptions.c:3444
+#: src/LYOptions.c:3445
 msgid "Type of Search"
 msgstr "¸¡º÷¥¿¥¤¥×"
 
-#: src/LYOptions.c:3449
+#: src/LYOptions.c:3450
 msgid "Security and Privacy"
 msgstr ""
 
 #. ***************************************************************
 #. Cookies: SELECT
-#: src/LYOptions.c:3453
+#: src/LYOptions.c:3454
 msgid "Cookies"
 msgstr "¥¯¥Ã¥­¡¼"
 
 #. Cookie Prompting: SELECT
-#: src/LYOptions.c:3467
+#: src/LYOptions.c:3468
 msgid "Invalid-Cookie Prompting"
 msgstr ""
 
 #. SSL Prompting: SELECT
-#: src/LYOptions.c:3474
+#: src/LYOptions.c:3475
 msgid "SSL Prompting"
 msgstr ""
 
-#: src/LYOptions.c:3480
+#: src/LYOptions.c:3481
 msgid "Keyboard Input"
 msgstr "¥­¡¼¥Ü¡¼¥ÉÆþÎÏ"
 
 #. ***************************************************************
 #. Keypad Mode: SELECT
-#: src/LYOptions.c:3484
+#: src/LYOptions.c:3485
 msgid "Keypad mode"
 msgstr "¥­¡¼¥Ñ¥Ã¥É¤Î¥â¡¼¥É"
 
 #. Emacs keys: ON/OFF
-#: src/LYOptions.c:3490
+#: src/LYOptions.c:3491
 msgid "Emacs keys"
 msgstr "Emacs É÷¥­¡¼ÇÛÎó"
 
 #. VI Keys: ON/OFF
-#: src/LYOptions.c:3496
+#: src/LYOptions.c:3497
 msgid "VI keys"
 msgstr "VI É÷¥­¡¼ÇÛÎó"
 
 #. Line edit style: SELECT
 #. well, at least 2 line edit styles available
-#: src/LYOptions.c:3503
+#: src/LYOptions.c:3504
 msgid "Line edit style"
 msgstr "¹ÔÊÔ½¸¥¹¥¿¥¤¥ë"
 
 #. Keyboard layout: SELECT
-#: src/LYOptions.c:3515
+#: src/LYOptions.c:3516
 msgid "Keyboard layout"
 msgstr "¥­¡¼¥Ü¡¼¥É¥ì¥¤¥¢¥¦¥È"
 
 #.
 #. * Display and Character Set
 #.
-#: src/LYOptions.c:3529
+#: src/LYOptions.c:3530
 msgid "Display and Character Set"
 msgstr "ɽ¼¨¤È¥­¥ã¥é¥¯¥¿¥»¥Ã¥È"
 
 #. Use locale-based character set: ON/OFF
-#: src/LYOptions.c:3534
+#: src/LYOptions.c:3535
 #, fuzzy
 msgid "Use locale-based character set"
 msgstr "²¾Äꤹ¤ë¥­¥ã¥é¥¯¥¿¥»¥Ã¥È"
 
 #. Display Character Set: SELECT
-#: src/LYOptions.c:3543
+#: src/LYOptions.c:3544
 msgid "Display character set"
 msgstr "ɽ¼¨¤¹¤ë¥­¥ã¥é¥¯¥¿¥»¥Ã¥È"
 
-#: src/LYOptions.c:3574
+#: src/LYOptions.c:3575
 msgid "Assumed document character set"
 msgstr "²¾Äꤹ¤ë¥­¥ã¥é¥¯¥¿¥»¥Ã¥È"
 
@@ -4811,167 +4815,167 @@ msgstr "²¾Äꤹ¤ë¥­¥ã¥é¥¯¥¿¥»¥Ã¥È"
 #. * we split the header to make it more readable:
 #. * "CJK mode" for CJK display charsets, and "Raw 8-bit" for others.
 #.
-#: src/LYOptions.c:3594
+#: src/LYOptions.c:3595
 msgid "CJK mode"
 msgstr "CJK ¥â¡¼¥É"
 
-#: src/LYOptions.c:3596
+#: src/LYOptions.c:3597
 msgid "Raw 8-bit"
 msgstr "À¸ 8 ¥Ó¥Ã¥È"
 
 #. X Display: INPUT
-#: src/LYOptions.c:3604
+#: src/LYOptions.c:3605
 msgid "X Display"
 msgstr "X ¥Ç¥£¥¹¥×¥ì¥¤"
 
 #.
 #. * Document Appearance
 #.
-#: src/LYOptions.c:3610
+#: src/LYOptions.c:3611
 msgid "Document Appearance"
 msgstr "ʸ½ñ¤Î³°¸«"
 
-#: src/LYOptions.c:3616
+#: src/LYOptions.c:3617
 msgid "Show color"
 msgstr "¿§¤òÉÕ¤±¤ë"
 
 #. Show cursor: ON/OFF
-#: src/LYOptions.c:3640
+#: src/LYOptions.c:3641
 msgid "Show cursor"
 msgstr "¥«¡¼¥½¥ë¤ò¸«¤»¤ë"
 
 #. Underline links: ON/OFF
-#: src/LYOptions.c:3646
+#: src/LYOptions.c:3647
 #, fuzzy
 msgid "Underline links"
 msgstr "±£¤µ¤ì¤¿¥ê¥ó¥¯:"
 
 #. Show scrollbar: ON/OFF
-#: src/LYOptions.c:3653
+#: src/LYOptions.c:3654
 msgid "Show scrollbar"
 msgstr "¥¹¥¯¥í¡¼¥ë¥Ð¡¼¤òɽ¼¨"
 
 #. Select Popups: ON/OFF
-#: src/LYOptions.c:3660
+#: src/LYOptions.c:3661
 msgid "Popups for select fields"
 msgstr "¥Õ¥£¡¼¥ë¥ÉÁªÂò»þ¤Ë¥Ý¥Ã¥×¥¢¥Ã¥×"
 
 #. HTML error recovery: SELECT
-#: src/LYOptions.c:3666
+#: src/LYOptions.c:3667
 msgid "HTML error recovery"
 msgstr "HTML ¥¨¥é¡¼¤«¤é¤Î²óÉü"
 
 #. Show Images: SELECT
-#: src/LYOptions.c:3672
+#: src/LYOptions.c:3673
 msgid "Show images"
 msgstr "²èÁü¤Îɽ¼¨"
 
 #. Verbose Images: ON/OFF
-#: src/LYOptions.c:3686
+#: src/LYOptions.c:3687
 msgid "Verbose images"
 msgstr "¾éĹ¤Ê²èÁüɽ¼¨"
 
-#: src/LYOptions.c:3695
+#: src/LYOptions.c:3696
 msgid "Headers Transferred to Remote Servers"
 msgstr "¥ê¥â¡¼¥È¥µ¡¼¥Ð¤ËžÁ÷¤µ¤ì¤ë¥Ø¥Ã¥À"
 
 #. ***************************************************************
 #. Mail Address: INPUT
-#: src/LYOptions.c:3699
+#: src/LYOptions.c:3700
 msgid "Personal mail address"
 msgstr "¸Ä¿Í¤Î¥á¡¼¥ë¥¢¥É¥ì¥¹"
 
 #. Preferred media type: SELECT
-#: src/LYOptions.c:3704
+#: src/LYOptions.c:3705
 #, fuzzy
 msgid "Preferred media type"
 msgstr "%d ¥Ð¥¤¥ÈžÁ÷ºÑ"
 
 #. Preferred encoding: SELECT
-#: src/LYOptions.c:3710
+#: src/LYOptions.c:3711
 #, fuzzy
 msgid "Preferred encoding"
 msgstr "ɽ¼¨¤·¤¿¤¤¸À¸ì"
 
 #. Preferred Document Character Set: INPUT
-#: src/LYOptions.c:3716
+#: src/LYOptions.c:3717
 msgid "Preferred document character set"
 msgstr "ɽ¼¨¤·¤¿¤¤¥­¥ã¥é¥¯¥¿¡¼¥»¥Ã¥È"
 
 #. Preferred Document Language: INPUT
-#: src/LYOptions.c:3721
+#: src/LYOptions.c:3722
 msgid "Preferred document language"
 msgstr "ɽ¼¨¤·¤¿¤¤¸À¸ì"
 
-#: src/LYOptions.c:3727
+#: src/LYOptions.c:3728
 msgid "User-Agent header"
 msgstr "User-Agent ¥Ø¥Ã¥À"
 
 #.
 #. * Listing and Accessing Files
 #.
-#: src/LYOptions.c:3735
+#: src/LYOptions.c:3736
 msgid "Listing and Accessing Files"
 msgstr "¥ê¥¹¥Èɽ¼¨¤È¥Õ¥¡¥¤¥ë¤Ø¤Î¥¢¥¯¥»¥¹"
 
 #. ***************************************************************
 #. FTP sort: SELECT
-#: src/LYOptions.c:3739
+#: src/LYOptions.c:3740
 msgid "FTP sort criteria"
 msgstr "FTP ¥Ç¥£¥ì¥¯¥È¥ê¤Î¥½¡¼¥È´ð½à"
 
 #. Local Directory Sort: SELECT
-#: src/LYOptions.c:3746
+#: src/LYOptions.c:3747
 msgid "Local directory sort criteria"
 msgstr "¥í¡¼¥«¥ë¥Ç¥£¥ì¥¯¥È¥ê¤Î¥½¡¼¥È´ð½à"
 
 #. Local Directory Order: SELECT
-#: src/LYOptions.c:3752
+#: src/LYOptions.c:3753
 msgid "Local directory sort order"
 msgstr "¥í¡¼¥«¥ë¥Ç¥£¥ì¥¯¥È¥ê¤Î¥½¡¼¥È½ç"
 
-#: src/LYOptions.c:3761
+#: src/LYOptions.c:3762
 msgid "Show dot files"
 msgstr "¥É¥Ã¥È¥Õ¥¡¥¤¥ë¤òɽ¼¨"
 
-#: src/LYOptions.c:3769
+#: src/LYOptions.c:3770
 msgid "Execution links"
 msgstr "¥ê¥ó¥¯¤ò¼Â¹Ô"
 
 #. Show transfer rate: SELECT
-#: src/LYOptions.c:3789
+#: src/LYOptions.c:3790
 msgid "Show transfer rate"
 msgstr "žÁ÷¥ì¡¼¥È¤òɽ¼¨"
 
 #.
 #. * Special Files and Screens
 #.
-#: src/LYOptions.c:3809
+#: src/LYOptions.c:3810
 msgid "Special Files and Screens"
 msgstr "ÆÃÊÌ¥Õ¥¡¥¤¥ë¤È²èÌÌ"
 
-#: src/LYOptions.c:3814
+#: src/LYOptions.c:3815
 msgid "Multi-bookmarks"
 msgstr "¥Þ¥ë¥Á¥Ö¥Ã¥¯¥Þ¡¼¥¯¤ò»È¤¦"
 
-#: src/LYOptions.c:3822
+#: src/LYOptions.c:3823
 msgid "Review/edit Bookmarks files"
 msgstr "¥Ö¥Ã¥¯¥Þ¡¼¥¯¥Õ¥¡¥¤¥ë¤Î±ÜÍ÷/ÊÔ½¸"
 
-#: src/LYOptions.c:3824
+#: src/LYOptions.c:3825
 msgid "Goto multi-bookmark menu"
 msgstr "¥Þ¥ë¥Á¥Ö¥Ã¥¯¥Þ¡¼¥¯¥á¥Ë¥å¡¼¤Ø"
 
-#: src/LYOptions.c:3826
+#: src/LYOptions.c:3827
 msgid "Bookmarks file"
 msgstr "¥Ö¥Ã¥¯¥Þ¡¼¥¯¥Õ¥¡¥¤¥ë"
 
 #. Visited Pages: SELECT
-#: src/LYOptions.c:3832
+#: src/LYOptions.c:3833
 msgid "Visited Pages"
 msgstr "ˬ¤ì¤¿¥Ú¡¼¥¸"
 
-#: src/LYOptions.c:3837
+#: src/LYOptions.c:3838
 msgid "View the file "
 msgstr "¥Õ¥¡¥¤¥ë¤ò±ÜÍ÷"
 
@@ -5091,38 +5095,38 @@ msgstr "Lynx: ³«»Ï¤Ç¤­¤Þ¤»¤ó¡£CERN ¥ë¡¼¥ë¥Õ¥¡¥¤¥ë %s ¤¬ÍøÍѤǤ­¤Þ¤»¤ó\n"
 msgid "(no name)"
 msgstr "(̾Á°Ìµ¤·)"
 
-#: src/LYReadCFG.c:1772
+#: src/LYReadCFG.c:1773
 #, c-format
 msgid "More than %d nested lynx.cfg includes -- perhaps there is a loop?!?\n"
 msgstr "lynx.cfg ¥¤¥ó¥¯¥ë¡¼¥É¤¬ %d ²ó°Ê¾å¤ÎÆþ¤ì»Ò¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹ -- ¤ª¤½¤é¤¯¥ë¡¼¥×¤¬¤¢¤ë¤Î¤Ç¤Ï!?\n"
 
-#: src/LYReadCFG.c:1774
+#: src/LYReadCFG.c:1775
 #, c-format
 msgid "Last attempted include was '%s',\n"
 msgstr "ºÇ¸å¤Ë»î¤ß¤¿¥¤¥ó¥¯¥ë¡¼¥É¤Ï '%s' ¤Ç¡¢\n"
 
-#: src/LYReadCFG.c:1775
+#: src/LYReadCFG.c:1776
 #, c-format
 msgid "included from '%s'.\n"
 msgstr "'%s' ¤«¤é¥¤¥ó¥¯¥ë¡¼¥É¤µ¤ì¤Æ¤¤¤Þ¤¹¡£\n"
 
-#: src/LYReadCFG.c:2181 src/LYReadCFG.c:2194 src/LYReadCFG.c:2252
+#: src/LYReadCFG.c:2183 src/LYReadCFG.c:2196 src/LYReadCFG.c:2254
 msgid "The following is read from your lynx.cfg file."
 msgstr "°Ê²¼¤Ï¤¢¤Ê¤¿¤Î lynx.cfg ¥Õ¥¡¥¤¥ë¤«¤éÆÉ¤ß¹þ¤Þ¤ì¤¿¾ðÊó¤Ç¤¹¡£"
 
-#: src/LYReadCFG.c:2182 src/LYReadCFG.c:2195
+#: src/LYReadCFG.c:2184 src/LYReadCFG.c:2197
 msgid "Please read the distribution"
 msgstr "ÇÛÉÛ¤Î"
 
-#: src/LYReadCFG.c:2188 src/LYReadCFG.c:2198
+#: src/LYReadCFG.c:2190 src/LYReadCFG.c:2200
 msgid "for more comments."
 msgstr "¤Ë¤Ï¾ÜºÙ¤ÊÃí¤¬ÉÕ¤¤¤Æ¤¤¤Þ¤¹¤Î¤Ç»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£"
 
-#: src/LYReadCFG.c:2234
+#: src/LYReadCFG.c:2236
 msgid "RELOAD THE CHANGES"
 msgstr "Êѹ¹¤òºÆÆÉ¤ß¹þ¤ß"
 
-#: src/LYReadCFG.c:2242
+#: src/LYReadCFG.c:2244
 msgid "Your primary configuration"
 msgstr "ºÇ½é¤Ë»²¾È¤µ¤ì¤ëÀßÄê¥Õ¥¡¥¤¥ë¤Ï"
 
@@ -5425,7 +5429,7 @@ msgstr "HOME ¥Ç¥£¥ì¥¯¥È¥ê¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó"
 msgid "Normally disabled.  See ENABLE_LYNXRC in lynx.cfg\n"
 msgstr "Ä̾ï¤Ï̵¸ú¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹¡£lynx.cfg ¤Î ENABLE_LYNXRC ¤ÎÉôʬ¤ò»²¾È¤·¤Æ²¼¤µ¤¤\n"
 
-#: src/LYrcFile.c:317
+#: src/LYrcFile.c:318
 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"
@@ -5437,7 +5441,7 @@ msgstr ""
 "prompt for each cookie.  Set accept_all_cookies to \"TRUE\" to accept\n"
 "all cookies.\n"
 
-#: src/LYrcFile.c:324
+#: src/LYrcFile.c:325
 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"
@@ -5447,7 +5451,7 @@ msgstr ""
 "file into which the user can paste links for easy access at a later\n"
 "date.\n"
 
-#: src/LYrcFile.c:329
+#: src/LYrcFile.c:330
 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"
@@ -5457,7 +5461,7 @@ msgstr ""
 "using the 's' or '/' keys, the search performed will be case sensitive\n"
 "instead of case INsensitive.  The default is usually \"off\".\n"
 
-#: src/LYrcFile.c:334
+#: src/LYrcFile.c:335
 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"
@@ -5471,7 +5475,7 @@ msgstr ""
 "set or using the 7 bit character approximations.\n"
 "Current valid characters sets are:\n"
 
-#: src/LYrcFile.c:341
+#: src/LYrcFile.c:342
 msgid ""
 "cookie_accept_domains and cookie_reject_domains are comma-delimited\n"
 "lists of domains from which Lynx should automatically accept or reject\n"
@@ -5485,7 +5489,7 @@ msgstr ""
 "take precedence.  The accept_all_cookies parameter will override any\n"
 "settings made here.\n"
 
-#: src/LYrcFile.c:349
+#: src/LYrcFile.c:350
 msgid ""
 "cookie_file specifies the file from which to read persistent cookies.\n"
 "The default is ~/.lynx_cookies.\n"
@@ -5493,7 +5497,7 @@ msgstr ""
 "cookie_file specifies the file from which to read persistent cookies.\n"
 "The default is ~/.lynx_cookies.\n"
 
-#: src/LYrcFile.c:354
+#: src/LYrcFile.c:355
 msgid ""
 "cookie_loose_invalid_domains, cookie_strict_invalid_domains, and\n"
 "cookie_query_invalid_domains are comma-delimited lists of which domains\n"
@@ -5511,7 +5515,7 @@ msgstr ""
 "with an invalid path or domain attribute.  All domains will default to\n"
 "querying the user for an invalid path or domain.\n"
 
-#: src/LYrcFile.c:368
+#: src/LYrcFile.c:369
 msgid ""
 "dir_list_order specifies the directory list order under DIRED_SUPPORT\n"
 "(if implemented).  The default is \"ORDER_BY_NAME\"\n"
@@ -5519,7 +5523,7 @@ msgstr ""
 "dir_list_order specifies the directory list order under DIRED_SUPPORT\n"
 "(if implemented).  The default is \"ORDER_BY_NAME\"\n"
 
-#: src/LYrcFile.c:373
+#: src/LYrcFile.c:374
 msgid ""
 "dir_list_styles specifies the directory list style under DIRED_SUPPORT\n"
 "(if implemented).  The default is \"MIXED_STYLE\", which sorts both\n"
@@ -5531,7 +5535,7 @@ msgstr ""
 "files and directories together.  \"FILES_FIRST\" lists files first and\n"
 "\"DIRECTORIES_FIRST\" lists directories first.\n"
 
-#: src/LYrcFile.c:381
+#: src/LYrcFile.c:382
 msgid ""
 "If emacs_keys is to \"on\" then the normal EMACS movement keys:\n"
 "  ^N = down    ^P = up\n"
@@ -5543,7 +5547,7 @@ msgstr ""
 "  ^B = left    ^F = right\n"
 "will be enabled.\n"
 
-#: src/LYrcFile.c:387
+#: src/LYrcFile.c:388
 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"
@@ -5555,7 +5559,7 @@ msgstr ""
 "unless it is activated from the command line, and the built-in line editor\n"
 "will be used for sending mail.\n"
 
-#: src/LYrcFile.c:393
+#: src/LYrcFile.c:394
 msgid ""
 "The file_sorting_method specifies which value to sort on when viewing\n"
 "file lists such as FTP directories.  The options are:\n"
@@ -5571,7 +5575,7 @@ msgstr ""
 "   BY_SIZE     -- sorts on the size of the file\n"
 "   BY_DATE     -- sorts on the date of the file\n"
 
-#: src/LYrcFile.c:411
+#: src/LYrcFile.c:412
 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"
@@ -5597,7 +5601,7 @@ msgstr ""
 "\n"
 "Current lineedit modes are:\n"
 
-#: src/LYrcFile.c:429
+#: src/LYrcFile.c:430
 msgid ""
 "The following allow you to define sub-bookmark files and descriptions.\n"
 "The format is multi_bookmark<capital_letter>=<filename>,<description>\n"
@@ -5609,7 +5613,7 @@ msgstr ""
 "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"
 
-#: src/LYrcFile.c:435
+#: src/LYrcFile.c:436
 msgid ""
 "personal_mail_address specifies your personal mail address.  The\n"
 "address will be sent during HTTP file transfers for authorization and\n"
@@ -5627,7 +5631,7 @@ msgstr ""
 "could leave this field blank, but then you won't have it included in\n"
 "your mailed comments.\n"
 
-#: src/LYrcFile.c:444
+#: src/LYrcFile.c:445
 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"
@@ -5655,7 +5659,7 @@ msgstr ""
 "an error response, though the sending of an unacceptable response\n"
 "is also allowed.\n"
 
-#: src/LYrcFile.c:460
+#: src/LYrcFile.c:461
 msgid ""
 "preferred_language specifies the language in MIME notation (e.g., en,\n"
 "fr, may be a comma-separated list in decreasing preference)\n"
@@ -5664,7 +5668,7 @@ msgid ""
 "Otherwise, the server will send the file in its default language.\n"
 msgstr " ----\n"
 
-#: src/LYrcFile.c:471
+#: src/LYrcFile.c:472
 msgid ""
 "If run_all_execution_links is set \"on\" then all local execution links\n"
 "will be executed when they are selected.\n"
@@ -5686,7 +5690,7 @@ msgstr ""
 "          or compromise security.  This should only be set to \"on\" if\n"
 "          you are viewing trusted source information.\n"
 
-#: src/LYrcFile.c:482
+#: src/LYrcFile.c:483
 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"
@@ -5714,7 +5718,7 @@ msgstr ""
 "          or compromise security.  This should only be set to \"on\" if\n"
 "          you are viewing trusted source information.\n"
 
-#: src/LYrcFile.c:500
+#: src/LYrcFile.c:501
 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"
@@ -5732,7 +5736,7 @@ msgstr ""
 "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"
 
-#: src/LYrcFile.c:510
+#: src/LYrcFile.c:511
 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"
@@ -5766,7 +5770,7 @@ msgstr ""
 "the 'o'ptions menu.  If the option settings are saved, the \"on\" and\n"
 "\"off\" \"show color\" settings will be treated as \"default\".\n"
 
-#: src/LYrcFile.c:527
+#: src/LYrcFile.c:528
 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"
@@ -5788,7 +5792,7 @@ msgstr ""
 "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"
 
-#: src/LYrcFile.c:538
+#: src/LYrcFile.c:539
 msgid ""
 "show_dotfiles specifies that the directory listing should include\n"
 "\"hidden\" (dot) files/directories.  If set \"on\", this will be\n"
@@ -5802,7 +5806,7 @@ msgstr ""
 "restricted via a command line switch.  If display of hidden files\n"
 "is disabled, creation of such files via Lynx also is disabled.\n"
 
-#: src/LYrcFile.c:549
+#: src/LYrcFile.c:550
 msgid ""
 "If sub_bookmarks is not turned \"off\", and multiple bookmarks have\n"
 "been defined (see below), then all bookmark operations will first\n"
@@ -5824,7 +5828,7 @@ msgstr ""
 "user modes.  When this option is set to \"standard\", the menu will be\n"
 "presented regardless of user mode.\n"
 
-#: src/LYrcFile.c:563
+#: src/LYrcFile.c:564
 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"
@@ -5840,7 +5844,7 @@ msgstr ""
 "Use \"ADVANCED\" to see the URL of the currently selected link at the\n"
 "bottom of the screen.\n"
 
-#: src/LYrcFile.c:572
+#: src/LYrcFile.c:573
 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"
@@ -5850,7 +5854,7 @@ msgstr ""
 "source file in place of [INLINE], [LINK] or [IMAGE]\n"
 "See also VERBOSE_IMAGES in lynx.cfg\n"
 
-#: src/LYrcFile.c:577
+#: src/LYrcFile.c:578
 msgid ""
 "If vi_keys is set to \"on\", then the normal VI movement keys:\n"
 "  j = down    k = up\n"
@@ -5866,7 +5870,7 @@ msgstr ""
 "Capital 'H', 'J' and 'K will still activate help, jump shortcuts,\n"
 "and the keymap display, respectively.\n"
 
-#: src/LYrcFile.c:585
+#: src/LYrcFile.c:586
 msgid ""
 "The visited_links setting controls how Lynx organizes the information\n"
 "in the Visited Links Page.\n"
@@ -5874,7 +5878,7 @@ msgstr ""
 "The visited_links setting controls how Lynx organizes the information\n"
 "in the Visited Links Page.\n"
 
-#: src/LYrcFile.c:803
+#: src/LYrcFile.c:804
 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"
@@ -5892,7 +5896,7 @@ msgstr ""
 "and the corresponding keyboard numbers will act as arrow keys,\n"
 "regardless of whether numlock is on.\n"
 
-#: src/LYrcFile.c:812
+#: src/LYrcFile.c:813
 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"
@@ -5900,7 +5904,7 @@ msgstr ""
 "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"
 
-#: src/LYrcFile.c:816
+#: src/LYrcFile.c:817
 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"
@@ -5918,7 +5922,7 @@ msgstr ""
 "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"
 
-#: src/LYrcFile.c:825
+#: src/LYrcFile.c:826
 msgid ""
 "NOTE: Some fixed format documents may look disfigured when\n"
 "\"LINKS_ARE_NUMBERED\" or \"LINKS_AND_FORM_FIELDS_ARE_NUMBERED\" are\n"
@@ -5928,7 +5932,7 @@ msgstr ""
 "\"LINKS_ARE_NUMBERED\" or \"LINKS_AND_FORM_FIELDS_ARE_NUMBERED\" are\n"
 "enabled.\n"
 
-#: src/LYrcFile.c:857
+#: src/LYrcFile.c:858
 msgid ""
 "Lynx User Defaults File\n"
 "\n"
diff --git a/po/lynx.pot b/po/lynx.pot
index 439b2716..9440db8a 100644
--- a/po/lynx.pot
+++ b/po/lynx.pot
@@ -1,9 +1,9 @@
 #, fuzzy
 msgid ""
 msgstr ""
-"Project-Id-Version: lynx 2.8.6dev.5\n"
+"Project-Id-Version: lynx 2.8.6dev.6\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-10-10 18:51-0400\n"
+"POT-Creation-Date: 2004-10-17 16:29-0400\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
@@ -2780,7 +2780,7 @@ msgstr ""
 msgid "Loading failed, use a previous copy."
 msgstr ""
 
-#: WWW/Library/Implementation/HTAccess.c:1045 src/GridText.c:8301
+#: WWW/Library/Implementation/HTAccess.c:1045 src/GridText.c:8296
 msgid "Loading incomplete."
 msgstr ""
 
@@ -2852,7 +2852,7 @@ msgstr ""
 msgid "connect for data"
 msgstr ""
 
-#: WWW/Library/Implementation/HTFTP.c:3738
+#: WWW/Library/Implementation/HTFTP.c:3741
 msgid "Receiving FTP file."
 msgstr ""
 
@@ -3004,8 +3004,8 @@ msgstr ""
 msgid "Address length looks invalid"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1551
-#: WWW/Library/Implementation/HTTCP.c:1569
+#: WWW/Library/Implementation/HTTCP.c:1552
+#: WWW/Library/Implementation/HTTCP.c:1570
 #, c-format
 msgid "Unable to locate remote host %s."
 msgstr ""
@@ -3014,39 +3014,39 @@ msgstr ""
 #. * but not HTAlert, because typically there will be other
 #. * alerts from the callers.  - kw
 #.
-#: WWW/Library/Implementation/HTTCP.c:1566
+#: WWW/Library/Implementation/HTTCP.c:1567
 #: WWW/Library/Implementation/HTTelnet.c:108
 #, c-format
 msgid "Invalid hostname %s"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1580
+#: WWW/Library/Implementation/HTTCP.c:1581
 #, c-format
 msgid "Making %s connection to %s"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1591
+#: WWW/Library/Implementation/HTTCP.c:1592
 msgid "socket failed."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1604
+#: WWW/Library/Implementation/HTTCP.c:1605
 #, c-format
 msgid "socket failed: family %d addr %s port %s."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1628
+#: WWW/Library/Implementation/HTTCP.c:1629
 msgid "Could not make connection non-blocking."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1697
+#: WWW/Library/Implementation/HTTCP.c:1698
 msgid "Connection failed (too many retries)."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1896
+#: WWW/Library/Implementation/HTTCP.c:1897
 msgid "Could not restore socket to blocking."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1962
+#: WWW/Library/Implementation/HTTCP.c:1963
 msgid "Socket read failed for 180,000 tries."
 msgstr ""
 
@@ -3055,45 +3055,45 @@ msgstr ""
 msgid "Address contains a username: %s"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:497
+#: WWW/Library/Implementation/HTTP.c:531
 msgid "This client does not contain support for HTTPS URLs."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:522
+#: WWW/Library/Implementation/HTTP.c:556
 msgid "Unable to connect to remote host."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:544
+#: WWW/Library/Implementation/HTTP.c:578
 msgid "Retrying connection without TLS."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:587
+#: WWW/Library/Implementation/HTTP.c:621
 msgid "SSL error:Can't find common name in certificate-Continue?"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:604
+#: WWW/Library/Implementation/HTTP.c:638
 #, c-format
 msgid "SSL error:host(%s)!=cert(%s)-Continue?"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:616
+#: WWW/Library/Implementation/HTTP.c:650
 #, c-format
 msgid "Secure %d-bit %s (%s) HTTP connection"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1086
+#: WWW/Library/Implementation/HTTP.c:1120
 msgid "Sending HTTP request."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1125
+#: WWW/Library/Implementation/HTTP.c:1159
 msgid "Unexpected network write error; connection aborted."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1131
+#: WWW/Library/Implementation/HTTP.c:1165
 msgid "HTTP request sent; waiting for response."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1199
+#: WWW/Library/Implementation/HTTP.c:1233
 msgid "Unexpected network read error; connection aborted."
 msgstr ""
 
@@ -3106,7 +3106,7 @@ 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:1393
+#: WWW/Library/Implementation/HTTP.c:1427
 msgid "Got unexpected Informational Status."
 msgstr ""
 
@@ -3116,7 +3116,7 @@ msgstr ""
 #. * content.  We'll instruct the user to do that, and
 #. * restore the current document.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1427
+#: WWW/Library/Implementation/HTTP.c:1461
 msgid "Request fulfilled.  Reset Content."
 msgstr ""
 
@@ -3126,27 +3126,27 @@ 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:1544
+#: WWW/Library/Implementation/HTTP.c:1578
 msgid "Got unexpected 304 Not Modified status."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1607
+#: WWW/Library/Implementation/HTTP.c:1641
 msgid "Redirection of POST content requires user approval."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1622
+#: WWW/Library/Implementation/HTTP.c:1656
 msgid "Have POST content.  Treating Permanent Redirection as Temporary.\n"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1664
+#: WWW/Library/Implementation/HTTP.c:1698
 msgid "Retrying with access authorization information."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1676
+#: WWW/Library/Implementation/HTTP.c:1710
 msgid "Show the 401 message body?"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1719
+#: WWW/Library/Implementation/HTTP.c:1753
 msgid "Show the 407 message body?"
 msgstr ""
 
@@ -3154,7 +3154,7 @@ msgstr ""
 #. * Bad or unknown server_status number.  Take a chance and hope
 #. * there is something to display.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1819
+#: WWW/Library/Implementation/HTTP.c:1853
 msgid "Unknown status reply from server!"
 msgstr ""
 
@@ -3408,30 +3408,30 @@ msgstr ""
 msgid "unknown form field"
 msgstr ""
 
-#: src/GridText.c:10020
+#: src/GridText.c:10015
 msgid "Can't open file for uploading"
 msgstr ""
 
-#: src/GridText.c:11170
+#: src/GridText.c:11165
 #, c-format
 msgid "Submitting %s"
 msgstr ""
 
 #. ugliness has happened; inform user and do the best we can
-#: src/GridText.c:12318
+#: src/GridText.c:12313
 msgid "Hang Detect: TextAnchor struct corrupted - suggest aborting!"
 msgstr ""
 
 #. don't show previous state
-#: src/GridText.c:12523
+#: src/GridText.c:12518
 msgid "Wrap lines to fit displayed area?"
 msgstr ""
 
-#: src/GridText.c:12575
+#: src/GridText.c:12570
 msgid "Very long lines have been wrapped!"
 msgstr ""
 
-#: src/GridText.c:13016
+#: src/GridText.c:13011
 msgid "Very long lines have been truncated!"
 msgstr ""
 
@@ -4610,116 +4610,120 @@ msgstr ""
 msgid "gzip"
 msgstr ""
 
-#: src/LYOptions.c:2388
+#: src/LYOptions.c:2386
+msgid "deflate"
+msgstr ""
+
+#: src/LYOptions.c:2389
 msgid "compress"
 msgstr ""
 
-#: src/LYOptions.c:2391
+#: src/LYOptions.c:2392
 msgid "bzip2"
 msgstr ""
 
-#: src/LYOptions.c:2393
+#: src/LYOptions.c:2394
 msgid "All"
 msgstr ""
 
-#: src/LYOptions.c:2658 src/LYOptions.c:2682
+#: src/LYOptions.c:2659 src/LYOptions.c:2683
 #, c-format
 msgid "Use %s to invoke the Options menu!"
 msgstr ""
 
-#: src/LYOptions.c:3421
+#: src/LYOptions.c:3422
 msgid "(options marked with (!) will not be saved)"
 msgstr ""
 
-#: src/LYOptions.c:3429
+#: src/LYOptions.c:3430
 msgid "General Preferences"
 msgstr ""
 
 #. ***************************************************************
 #. User Mode: SELECT
-#: src/LYOptions.c:3433
+#: src/LYOptions.c:3434
 msgid "User mode"
 msgstr ""
 
 #. Editor: INPUT
-#: src/LYOptions.c:3439
+#: src/LYOptions.c:3440
 msgid "Editor"
 msgstr ""
 
 #. Search Type: SELECT
-#: src/LYOptions.c:3444
+#: src/LYOptions.c:3445
 msgid "Type of Search"
 msgstr ""
 
-#: src/LYOptions.c:3449
+#: src/LYOptions.c:3450
 msgid "Security and Privacy"
 msgstr ""
 
 #. ***************************************************************
 #. Cookies: SELECT
-#: src/LYOptions.c:3453
+#: src/LYOptions.c:3454
 msgid "Cookies"
 msgstr ""
 
 #. Cookie Prompting: SELECT
-#: src/LYOptions.c:3467
+#: src/LYOptions.c:3468
 msgid "Invalid-Cookie Prompting"
 msgstr ""
 
 #. SSL Prompting: SELECT
-#: src/LYOptions.c:3474
+#: src/LYOptions.c:3475
 msgid "SSL Prompting"
 msgstr ""
 
-#: src/LYOptions.c:3480
+#: src/LYOptions.c:3481
 msgid "Keyboard Input"
 msgstr ""
 
 #. ***************************************************************
 #. Keypad Mode: SELECT
-#: src/LYOptions.c:3484
+#: src/LYOptions.c:3485
 msgid "Keypad mode"
 msgstr ""
 
 #. Emacs keys: ON/OFF
-#: src/LYOptions.c:3490
+#: src/LYOptions.c:3491
 msgid "Emacs keys"
 msgstr ""
 
 #. VI Keys: ON/OFF
-#: src/LYOptions.c:3496
+#: src/LYOptions.c:3497
 msgid "VI keys"
 msgstr ""
 
 #. Line edit style: SELECT
 #. well, at least 2 line edit styles available
-#: src/LYOptions.c:3503
+#: src/LYOptions.c:3504
 msgid "Line edit style"
 msgstr ""
 
 #. Keyboard layout: SELECT
-#: src/LYOptions.c:3515
+#: src/LYOptions.c:3516
 msgid "Keyboard layout"
 msgstr ""
 
 #.
 #. * Display and Character Set
 #.
-#: src/LYOptions.c:3529
+#: src/LYOptions.c:3530
 msgid "Display and Character Set"
 msgstr ""
 
 #. Use locale-based character set: ON/OFF
-#: src/LYOptions.c:3534
+#: src/LYOptions.c:3535
 msgid "Use locale-based character set"
 msgstr ""
 
 #. Display Character Set: SELECT
-#: src/LYOptions.c:3543
+#: src/LYOptions.c:3544
 msgid "Display character set"
 msgstr ""
 
-#: src/LYOptions.c:3574
+#: src/LYOptions.c:3575
 msgid "Assumed document character set"
 msgstr ""
 
@@ -4728,164 +4732,164 @@ msgstr ""
 #. * we split the header to make it more readable:
 #. * "CJK mode" for CJK display charsets, and "Raw 8-bit" for others.
 #.
-#: src/LYOptions.c:3594
+#: src/LYOptions.c:3595
 msgid "CJK mode"
 msgstr ""
 
-#: src/LYOptions.c:3596
+#: src/LYOptions.c:3597
 msgid "Raw 8-bit"
 msgstr ""
 
 #. X Display: INPUT
-#: src/LYOptions.c:3604
+#: src/LYOptions.c:3605
 msgid "X Display"
 msgstr ""
 
 #.
 #. * Document Appearance
 #.
-#: src/LYOptions.c:3610
+#: src/LYOptions.c:3611
 msgid "Document Appearance"
 msgstr ""
 
-#: src/LYOptions.c:3616
+#: src/LYOptions.c:3617
 msgid "Show color"
 msgstr ""
 
 #. Show cursor: ON/OFF
-#: src/LYOptions.c:3640
+#: src/LYOptions.c:3641
 msgid "Show cursor"
 msgstr ""
 
 #. Underline links: ON/OFF
-#: src/LYOptions.c:3646
+#: src/LYOptions.c:3647
 msgid "Underline links"
 msgstr ""
 
 #. Show scrollbar: ON/OFF
-#: src/LYOptions.c:3653
+#: src/LYOptions.c:3654
 msgid "Show scrollbar"
 msgstr ""
 
 #. Select Popups: ON/OFF
-#: src/LYOptions.c:3660
+#: src/LYOptions.c:3661
 msgid "Popups for select fields"
 msgstr ""
 
 #. HTML error recovery: SELECT
-#: src/LYOptions.c:3666
+#: src/LYOptions.c:3667
 msgid "HTML error recovery"
 msgstr ""
 
 #. Show Images: SELECT
-#: src/LYOptions.c:3672
+#: src/LYOptions.c:3673
 msgid "Show images"
 msgstr ""
 
 #. Verbose Images: ON/OFF
-#: src/LYOptions.c:3686
+#: src/LYOptions.c:3687
 msgid "Verbose images"
 msgstr ""
 
-#: src/LYOptions.c:3695
+#: src/LYOptions.c:3696
 msgid "Headers Transferred to Remote Servers"
 msgstr ""
 
 #. ***************************************************************
 #. Mail Address: INPUT
-#: src/LYOptions.c:3699
+#: src/LYOptions.c:3700
 msgid "Personal mail address"
 msgstr ""
 
 #. Preferred media type: SELECT
-#: src/LYOptions.c:3704
+#: src/LYOptions.c:3705
 msgid "Preferred media type"
 msgstr ""
 
 #. Preferred encoding: SELECT
-#: src/LYOptions.c:3710
+#: src/LYOptions.c:3711
 msgid "Preferred encoding"
 msgstr ""
 
 #. Preferred Document Character Set: INPUT
-#: src/LYOptions.c:3716
+#: src/LYOptions.c:3717
 msgid "Preferred document character set"
 msgstr ""
 
 #. Preferred Document Language: INPUT
-#: src/LYOptions.c:3721
+#: src/LYOptions.c:3722
 msgid "Preferred document language"
 msgstr ""
 
-#: src/LYOptions.c:3727
+#: src/LYOptions.c:3728
 msgid "User-Agent header"
 msgstr ""
 
 #.
 #. * Listing and Accessing Files
 #.
-#: src/LYOptions.c:3735
+#: src/LYOptions.c:3736
 msgid "Listing and Accessing Files"
 msgstr ""
 
 #. ***************************************************************
 #. FTP sort: SELECT
-#: src/LYOptions.c:3739
+#: src/LYOptions.c:3740
 msgid "FTP sort criteria"
 msgstr ""
 
 #. Local Directory Sort: SELECT
-#: src/LYOptions.c:3746
+#: src/LYOptions.c:3747
 msgid "Local directory sort criteria"
 msgstr ""
 
 #. Local Directory Order: SELECT
-#: src/LYOptions.c:3752
+#: src/LYOptions.c:3753
 msgid "Local directory sort order"
 msgstr ""
 
-#: src/LYOptions.c:3761
+#: src/LYOptions.c:3762
 msgid "Show dot files"
 msgstr ""
 
-#: src/LYOptions.c:3769
+#: src/LYOptions.c:3770
 msgid "Execution links"
 msgstr ""
 
 #. Show transfer rate: SELECT
-#: src/LYOptions.c:3789
+#: src/LYOptions.c:3790
 msgid "Show transfer rate"
 msgstr ""
 
 #.
 #. * Special Files and Screens
 #.
-#: src/LYOptions.c:3809
+#: src/LYOptions.c:3810
 msgid "Special Files and Screens"
 msgstr ""
 
-#: src/LYOptions.c:3814
+#: src/LYOptions.c:3815
 msgid "Multi-bookmarks"
 msgstr ""
 
-#: src/LYOptions.c:3822
+#: src/LYOptions.c:3823
 msgid "Review/edit Bookmarks files"
 msgstr ""
 
-#: src/LYOptions.c:3824
+#: src/LYOptions.c:3825
 msgid "Goto multi-bookmark menu"
 msgstr ""
 
-#: src/LYOptions.c:3826
+#: src/LYOptions.c:3827
 msgid "Bookmarks file"
 msgstr ""
 
 #. Visited Pages: SELECT
-#: src/LYOptions.c:3832
+#: src/LYOptions.c:3833
 msgid "Visited Pages"
 msgstr ""
 
-#: src/LYOptions.c:3837
+#: src/LYOptions.c:3838
 msgid "View the file "
 msgstr ""
 
@@ -5000,38 +5004,38 @@ msgstr ""
 msgid "(no name)"
 msgstr ""
 
-#: src/LYReadCFG.c:1772
+#: src/LYReadCFG.c:1773
 #, c-format
 msgid "More than %d nested lynx.cfg includes -- perhaps there is a loop?!?\n"
 msgstr ""
 
-#: src/LYReadCFG.c:1774
+#: src/LYReadCFG.c:1775
 #, c-format
 msgid "Last attempted include was '%s',\n"
 msgstr ""
 
-#: src/LYReadCFG.c:1775
+#: src/LYReadCFG.c:1776
 #, c-format
 msgid "included from '%s'.\n"
 msgstr ""
 
-#: src/LYReadCFG.c:2181 src/LYReadCFG.c:2194 src/LYReadCFG.c:2252
+#: src/LYReadCFG.c:2183 src/LYReadCFG.c:2196 src/LYReadCFG.c:2254
 msgid "The following is read from your lynx.cfg file."
 msgstr ""
 
-#: src/LYReadCFG.c:2182 src/LYReadCFG.c:2195
+#: src/LYReadCFG.c:2184 src/LYReadCFG.c:2197
 msgid "Please read the distribution"
 msgstr ""
 
-#: src/LYReadCFG.c:2188 src/LYReadCFG.c:2198
+#: src/LYReadCFG.c:2190 src/LYReadCFG.c:2200
 msgid "for more comments."
 msgstr ""
 
-#: src/LYReadCFG.c:2234
+#: src/LYReadCFG.c:2236
 msgid "RELOAD THE CHANGES"
 msgstr ""
 
-#: src/LYReadCFG.c:2242
+#: src/LYReadCFG.c:2244
 msgid "Your primary configuration"
 msgstr ""
 
@@ -5323,7 +5327,7 @@ msgstr ""
 msgid "Normally disabled.  See ENABLE_LYNXRC in lynx.cfg\n"
 msgstr ""
 
-#: src/LYrcFile.c:317
+#: src/LYrcFile.c:318
 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"
@@ -5331,21 +5335,21 @@ msgid ""
 "all cookies.\n"
 msgstr ""
 
-#: src/LYrcFile.c:324
+#: src/LYrcFile.c:325
 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 ""
 
-#: src/LYrcFile.c:329
+#: src/LYrcFile.c:330
 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 ""
 
-#: src/LYrcFile.c:334
+#: src/LYrcFile.c:335
 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"
@@ -5354,7 +5358,7 @@ msgid ""
 "Current valid characters sets are:\n"
 msgstr ""
 
-#: src/LYrcFile.c:341
+#: src/LYrcFile.c:342
 msgid ""
 "cookie_accept_domains and cookie_reject_domains are comma-delimited\n"
 "lists of domains from which Lynx should automatically accept or reject\n"
@@ -5363,13 +5367,13 @@ msgid ""
 "settings made here.\n"
 msgstr ""
 
-#: src/LYrcFile.c:349
+#: src/LYrcFile.c:350
 msgid ""
 "cookie_file specifies the file from which to read persistent cookies.\n"
 "The default is ~/.lynx_cookies.\n"
 msgstr ""
 
-#: src/LYrcFile.c:354
+#: src/LYrcFile.c:355
 msgid ""
 "cookie_loose_invalid_domains, cookie_strict_invalid_domains, and\n"
 "cookie_query_invalid_domains are comma-delimited lists of which domains\n"
@@ -5380,13 +5384,13 @@ msgid ""
 "querying the user for an invalid path or domain.\n"
 msgstr ""
 
-#: src/LYrcFile.c:368
+#: src/LYrcFile.c:369
 msgid ""
 "dir_list_order specifies the directory list order under DIRED_SUPPORT\n"
 "(if implemented).  The default is \"ORDER_BY_NAME\"\n"
 msgstr ""
 
-#: src/LYrcFile.c:373
+#: src/LYrcFile.c:374
 msgid ""
 "dir_list_styles specifies the directory list style under DIRED_SUPPORT\n"
 "(if implemented).  The default is \"MIXED_STYLE\", which sorts both\n"
@@ -5394,7 +5398,7 @@ msgid ""
 "\"DIRECTORIES_FIRST\" lists directories first.\n"
 msgstr ""
 
-#: src/LYrcFile.c:381
+#: src/LYrcFile.c:382
 msgid ""
 "If emacs_keys is to \"on\" then the normal EMACS movement keys:\n"
 "  ^N = down    ^P = up\n"
@@ -5402,7 +5406,7 @@ msgid ""
 "will be enabled.\n"
 msgstr ""
 
-#: src/LYrcFile.c:387
+#: src/LYrcFile.c:388
 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"
@@ -5410,7 +5414,7 @@ msgid ""
 "will be used for sending mail.\n"
 msgstr ""
 
-#: src/LYrcFile.c:393
+#: src/LYrcFile.c:394
 msgid ""
 "The file_sorting_method specifies which value to sort on when viewing\n"
 "file lists such as FTP directories.  The options are:\n"
@@ -5420,7 +5424,7 @@ msgid ""
 "   BY_DATE     -- sorts on the date of the file\n"
 msgstr ""
 
-#: src/LYrcFile.c:411
+#: src/LYrcFile.c:412
 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"
@@ -5435,7 +5439,7 @@ msgid ""
 "Current lineedit modes are:\n"
 msgstr ""
 
-#: src/LYrcFile.c:429
+#: src/LYrcFile.c:430
 msgid ""
 "The following allow you to define sub-bookmark files and descriptions.\n"
 "The format is multi_bookmark<capital_letter>=<filename>,<description>\n"
@@ -5443,7 +5447,7 @@ msgid ""
 "We start with \"multi_bookmarkB\" since 'A' is the default (see above).\n"
 msgstr ""
 
-#: src/LYrcFile.c:435
+#: src/LYrcFile.c:436
 msgid ""
 "personal_mail_address specifies your personal mail address.  The\n"
 "address will be sent during HTTP file transfers for authorization and\n"
@@ -5454,7 +5458,7 @@ msgid ""
 "your mailed comments.\n"
 msgstr ""
 
-#: src/LYrcFile.c:444
+#: src/LYrcFile.c:445
 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"
@@ -5470,7 +5474,7 @@ msgid ""
 "is also allowed.\n"
 msgstr ""
 
-#: src/LYrcFile.c:460
+#: src/LYrcFile.c:461
 msgid ""
 "preferred_language specifies the language in MIME notation (e.g., en,\n"
 "fr, may be a comma-separated list in decreasing preference)\n"
@@ -5479,7 +5483,7 @@ msgid ""
 "Otherwise, the server will send the file in its default language.\n"
 msgstr ""
 
-#: src/LYrcFile.c:471
+#: src/LYrcFile.c:472
 msgid ""
 "If run_all_execution_links is set \"on\" then all local execution links\n"
 "will be executed when they are selected.\n"
@@ -5492,7 +5496,7 @@ msgid ""
 "          you are viewing trusted source information.\n"
 msgstr ""
 
-#: src/LYrcFile.c:482
+#: src/LYrcFile.c:483
 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"
@@ -5508,7 +5512,7 @@ msgid ""
 "          you are viewing trusted source information.\n"
 msgstr ""
 
-#: src/LYrcFile.c:500
+#: src/LYrcFile.c:501
 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"
@@ -5519,7 +5523,7 @@ msgid ""
 "The default can be overridden via the -popup command line toggle.\n"
 msgstr ""
 
-#: src/LYrcFile.c:510
+#: src/LYrcFile.c:511
 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"
@@ -5538,7 +5542,7 @@ msgid ""
 "\"off\" \"show color\" settings will be treated as \"default\".\n"
 msgstr ""
 
-#: src/LYrcFile.c:527
+#: src/LYrcFile.c:528
 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"
@@ -5551,7 +5555,7 @@ msgid ""
 "The default can be overridden via the -show_cursor command line toggle.\n"
 msgstr ""
 
-#: src/LYrcFile.c:538
+#: src/LYrcFile.c:539
 msgid ""
 "show_dotfiles specifies that the directory listing should include\n"
 "\"hidden\" (dot) files/directories.  If set \"on\", this will be\n"
@@ -5560,7 +5564,7 @@ msgid ""
 "is disabled, creation of such files via Lynx also is disabled.\n"
 msgstr ""
 
-#: src/LYrcFile.c:549
+#: src/LYrcFile.c:550
 msgid ""
 "If sub_bookmarks is not turned \"off\", and multiple bookmarks have\n"
 "been defined (see below), then all bookmark operations will first\n"
@@ -5573,7 +5577,7 @@ msgid ""
 "presented regardless of user mode.\n"
 msgstr ""
 
-#: src/LYrcFile.c:563
+#: src/LYrcFile.c:564
 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"
@@ -5583,14 +5587,14 @@ msgid ""
 "bottom of the screen.\n"
 msgstr ""
 
-#: src/LYrcFile.c:572
+#: src/LYrcFile.c:573
 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 ""
 
-#: src/LYrcFile.c:577
+#: src/LYrcFile.c:578
 msgid ""
 "If vi_keys is set to \"on\", then the normal VI movement keys:\n"
 "  j = down    k = up\n"
@@ -5600,13 +5604,13 @@ msgid ""
 "and the keymap display, respectively.\n"
 msgstr ""
 
-#: src/LYrcFile.c:585
+#: src/LYrcFile.c:586
 msgid ""
 "The visited_links setting controls how Lynx organizes the information\n"
 "in the Visited Links Page.\n"
 msgstr ""
 
-#: src/LYrcFile.c:803
+#: src/LYrcFile.c:804
 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"
@@ -5617,13 +5621,13 @@ msgid ""
 "regardless of whether numlock is on.\n"
 msgstr ""
 
-#: src/LYrcFile.c:812
+#: src/LYrcFile.c:813
 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 ""
 
-#: src/LYrcFile.c:816
+#: src/LYrcFile.c:817
 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"
@@ -5634,14 +5638,14 @@ msgid ""
 "lists and output from the list command also enumerate form inputs.\n"
 msgstr ""
 
-#: src/LYrcFile.c:825
+#: src/LYrcFile.c:826
 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 ""
 
-#: src/LYrcFile.c:857
+#: src/LYrcFile.c:858
 msgid ""
 "Lynx User Defaults File\n"
 "\n"
diff --git a/po/nl.po b/po/nl.po
index 458fe4ef..d5335fd3 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lynx 2.8.4\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-10-10 18:51-0400\n"
+"POT-Creation-Date: 2004-10-17 16:29-0400\n"
 "PO-Revision-Date: 2000-04-08 21:13+02:00\n"
 "Last-Translator: Tijs van Bakel <smoke@casema.net>\n"
 "Language-Team: Dutch <vertaling@nl.linux.org>\n"
@@ -2796,7 +2796,7 @@ msgstr "Document met POST inhoud niet gevonden in cache.  Nog eens verzenden?"
 msgid "Loading failed, use a previous copy."
 msgstr ""
 
-#: WWW/Library/Implementation/HTAccess.c:1045 src/GridText.c:8301
+#: WWW/Library/Implementation/HTAccess.c:1045 src/GridText.c:8296
 msgid "Loading incomplete."
 msgstr "Laden niet voltooid."
 
@@ -2865,7 +2865,7 @@ msgstr "%d bytes overgezet (%5d)"
 msgid "connect for data"
 msgstr "verbinden voor datastroom"
 
-#: WWW/Library/Implementation/HTFTP.c:3738
+#: WWW/Library/Implementation/HTFTP.c:3741
 msgid "Receiving FTP file."
 msgstr "Bezig met ophalen van FTP bestand."
 
@@ -3024,7 +3024,7 @@ msgstr "Adres heeft ongeldige poort"
 msgid "Address length looks invalid"
 msgstr "Adres-lengte ziet er verkeerd uit"
 
-#: WWW/Library/Implementation/HTTCP.c:1551 WWW/Library/Implementation/HTTCP.c:1569
+#: WWW/Library/Implementation/HTTCP.c:1552 WWW/Library/Implementation/HTTCP.c:1570
 #, c-format
 msgid "Unable to locate remote host %s."
 msgstr "Niet in staat om computer %s te vinden."
@@ -3033,38 +3033,38 @@ msgstr "Niet in staat om computer %s te vinden."
 #. * but not HTAlert, because typically there will be other
 #. * alerts from the callers.  - kw
 #.
-#: WWW/Library/Implementation/HTTCP.c:1566 WWW/Library/Implementation/HTTelnet.c:108
+#: WWW/Library/Implementation/HTTCP.c:1567 WWW/Library/Implementation/HTTelnet.c:108
 #, c-format
 msgid "Invalid hostname %s"
 msgstr "Ongeldige computernaam %s"
 
-#: WWW/Library/Implementation/HTTCP.c:1580
+#: WWW/Library/Implementation/HTTCP.c:1581
 #, c-format
 msgid "Making %s connection to %s"
 msgstr "%s verbinding met %s wordt gemaakt."
 
-#: WWW/Library/Implementation/HTTCP.c:1591
+#: WWW/Library/Implementation/HTTCP.c:1592
 msgid "socket failed."
 msgstr "socket mislukt."
 
-#: WWW/Library/Implementation/HTTCP.c:1604
+#: WWW/Library/Implementation/HTTCP.c:1605
 #, c-format
 msgid "socket failed: family %d addr %s port %s."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1628
+#: WWW/Library/Implementation/HTTCP.c:1629
 msgid "Could not make connection non-blocking."
 msgstr "Het is mislukt de verbinding niet-blokkerend maken."
 
-#: WWW/Library/Implementation/HTTCP.c:1697
+#: WWW/Library/Implementation/HTTCP.c:1698
 msgid "Connection failed (too many retries)."
 msgstr "Verbinden mislukt (te vaak opnieuw geprobeerd)."
 
-#: WWW/Library/Implementation/HTTCP.c:1896
+#: WWW/Library/Implementation/HTTCP.c:1897
 msgid "Could not restore socket to blocking."
 msgstr "Kon socket niet naar blokkerende modus herstellen."
 
-#: WWW/Library/Implementation/HTTCP.c:1962
+#: WWW/Library/Implementation/HTTCP.c:1963
 msgid "Socket read failed for 180,000 tries."
 msgstr "Lezen uit socket mislukt na 180,000 (!) pogingen."
 
@@ -3073,46 +3073,46 @@ msgstr "Lezen uit socket mislukt na 180,000 (!) pogingen."
 msgid "Address contains a username: %s"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:497
+#: WWW/Library/Implementation/HTTP.c:531
 msgid "This client does not contain support for HTTPS URLs."
 msgstr "Dit programma ondersteunt geen HTTPS URL's."
 
-#: WWW/Library/Implementation/HTTP.c:522
+#: WWW/Library/Implementation/HTTP.c:556
 msgid "Unable to connect to remote host."
 msgstr "Verbinding met server mislukt."
 
-#: WWW/Library/Implementation/HTTP.c:544
+#: WWW/Library/Implementation/HTTP.c:578
 #, fuzzy
 msgid "Retrying connection without TLS."
 msgstr "%s verbinding met %s wordt gemaakt."
 
-#: WWW/Library/Implementation/HTTP.c:587
+#: WWW/Library/Implementation/HTTP.c:621
 msgid "SSL error:Can't find common name in certificate-Continue?"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:604
+#: WWW/Library/Implementation/HTTP.c:638
 #, c-format
 msgid "SSL error:host(%s)!=cert(%s)-Continue?"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:616
+#: WWW/Library/Implementation/HTTP.c:650
 #, c-format
 msgid "Secure %d-bit %s (%s) HTTP connection"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1086
+#: WWW/Library/Implementation/HTTP.c:1120
 msgid "Sending HTTP request."
 msgstr "Bezig met zenden van HTTP verzoek."
 
-#: WWW/Library/Implementation/HTTP.c:1125
+#: WWW/Library/Implementation/HTTP.c:1159
 msgid "Unexpected network write error; connection aborted."
 msgstr "Onverwachte fout bij schrijven naar netwerk: verbinding verbroken."
 
-#: WWW/Library/Implementation/HTTP.c:1131
+#: WWW/Library/Implementation/HTTP.c:1165
 msgid "HTTP request sent; waiting for response."
 msgstr "HTTP verzoek verzonden; wacht op antwoord."
 
-#: WWW/Library/Implementation/HTTP.c:1199
+#: WWW/Library/Implementation/HTTP.c:1233
 msgid "Unexpected network read error; connection aborted."
 msgstr "Onverwachte fout bij lezen uit netwerk; verbinding verbroken."
 
@@ -3125,7 +3125,7 @@ msgstr "Onverwachte fout bij lezen uit netwerk; verbinding verbroken."
 #. * 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:1393
+#: WWW/Library/Implementation/HTTP.c:1427
 msgid "Got unexpected Informational Status."
 msgstr "Onverwachte informatieve status ontvangen."
 
@@ -3135,7 +3135,7 @@ msgstr "Onverwachte informatieve status ontvangen."
 #. * content.  We'll instruct the user to do that, and
 #. * restore the current document.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1427
+#: WWW/Library/Implementation/HTTP.c:1461
 msgid "Request fulfilled.  Reset Content."
 msgstr "Verzoek volbracht.  Herstel inhoud."
 
@@ -3145,27 +3145,27 @@ msgstr "Verzoek volbracht.  Herstel inhoud."
 #. * 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:1544
+#: WWW/Library/Implementation/HTTP.c:1578
 msgid "Got unexpected 304 Not Modified status."
 msgstr "Kreeg een onverwachte 304 Niet Gewijzigd statusmelding."
 
-#: WWW/Library/Implementation/HTTP.c:1607
+#: WWW/Library/Implementation/HTTP.c:1641
 msgid "Redirection of POST content requires user approval."
 msgstr "Doorverwijzing van POST inhoud vereist toestemming van de gebruiker."
 
-#: WWW/Library/Implementation/HTTP.c:1622
+#: WWW/Library/Implementation/HTTP.c:1656
 msgid "Have POST content.  Treating Permanent Redirection as Temporary.\n"
 msgstr "Heb POST inhoud.  Permanente doorverwijzing wordt behandeld als een tijdelijke.\n"
 
-#: WWW/Library/Implementation/HTTP.c:1664
+#: WWW/Library/Implementation/HTTP.c:1698
 msgid "Retrying with access authorization information."
 msgstr "Bezig opnieuw te proberen met informatie over toegangs-authorisatie."
 
-#: WWW/Library/Implementation/HTTP.c:1676
+#: WWW/Library/Implementation/HTTP.c:1710
 msgid "Show the 401 message body?"
 msgstr "Inhoud van het 401 bericht laten zien?"
 
-#: WWW/Library/Implementation/HTTP.c:1719
+#: WWW/Library/Implementation/HTTP.c:1753
 msgid "Show the 407 message body?"
 msgstr "Inhoud van het 407 bericht laten zien?"
 
@@ -3173,7 +3173,7 @@ msgstr "Inhoud van het 407 bericht laten zien?"
 #. * Bad or unknown server_status number.  Take a chance and hope
 #. * there is something to display.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1819
+#: WWW/Library/Implementation/HTTP.c:1853
 msgid "Unknown status reply from server!"
 msgstr "Onbekend status-antwoord van server!"
 
@@ -3437,31 +3437,31 @@ msgstr "sleutelaanmaak veld"
 msgid "unknown form field"
 msgstr "onbekend formulier veld"
 
-#: src/GridText.c:10020
+#: src/GridText.c:10015
 #, fuzzy
 msgid "Can't open file for uploading"
 msgstr "Kan bestand niet openen om te lezen."
 
-#: src/GridText.c:11170
+#: src/GridText.c:11165
 #, c-format
 msgid "Submitting %s"
 msgstr "Bezig met verzenden van %s"
 
 #. ugliness has happened; inform user and do the best we can
-#: src/GridText.c:12318
+#: src/GridText.c:12313
 msgid "Hang Detect: TextAnchor struct corrupted - suggest aborting!"
 msgstr ""
 
 #. don't show previous state
-#: src/GridText.c:12523
+#: src/GridText.c:12518
 msgid "Wrap lines to fit displayed area?"
 msgstr "Regels omvouwen zodat alles zichtbaar is?"
 
-#: src/GridText.c:12575
+#: src/GridText.c:12570
 msgid "Very long lines have been wrapped!"
 msgstr "Erg lange regels zijn omgevouwen!"
 
-#: src/GridText.c:13016
+#: src/GridText.c:13011
 msgid "Very long lines have been truncated!"
 msgstr "Erg lange regels zijn afgekapt!"
 
@@ -4703,117 +4703,121 @@ msgstr "Bevestigen"
 msgid "gzip"
 msgstr ""
 
-#: src/LYOptions.c:2388
+#: src/LYOptions.c:2386
+msgid "deflate"
+msgstr ""
+
+#: src/LYOptions.c:2389
 msgid "compress"
 msgstr ""
 
-#: src/LYOptions.c:2391
+#: src/LYOptions.c:2392
 msgid "bzip2"
 msgstr ""
 
-#: src/LYOptions.c:2393
+#: src/LYOptions.c:2394
 msgid "All"
 msgstr ""
 
-#: src/LYOptions.c:2658 src/LYOptions.c:2682
+#: src/LYOptions.c:2659 src/LYOptions.c:2683
 #, c-format
 msgid "Use %s to invoke the Options menu!"
 msgstr "Gebruik %s om naar het Opties-menu te gaan!"
 
-#: src/LYOptions.c:3421
+#: src/LYOptions.c:3422
 msgid "(options marked with (!) will not be saved)"
 msgstr ""
 
-#: src/LYOptions.c:3429
+#: src/LYOptions.c:3430
 msgid "General Preferences"
 msgstr "Persoonlijke voorkeuren"
 
 #. ***************************************************************
 #. User Mode: SELECT
-#: src/LYOptions.c:3433
+#: src/LYOptions.c:3434
 msgid "User mode"
 msgstr "Type gebruiker"
 
 #. Editor: INPUT
-#: src/LYOptions.c:3439
+#: src/LYOptions.c:3440
 msgid "Editor"
 msgstr "Editor"
 
 #. Search Type: SELECT
-#: src/LYOptions.c:3444
+#: src/LYOptions.c:3445
 msgid "Type of Search"
 msgstr "Zoekmethode"
 
-#: src/LYOptions.c:3449
+#: src/LYOptions.c:3450
 msgid "Security and Privacy"
 msgstr ""
 
 #. ***************************************************************
 #. Cookies: SELECT
-#: src/LYOptions.c:3453
+#: src/LYOptions.c:3454
 msgid "Cookies"
 msgstr "Cookies"
 
 #. Cookie Prompting: SELECT
-#: src/LYOptions.c:3467
+#: src/LYOptions.c:3468
 msgid "Invalid-Cookie Prompting"
 msgstr ""
 
 #. SSL Prompting: SELECT
-#: src/LYOptions.c:3474
+#: src/LYOptions.c:3475
 msgid "SSL Prompting"
 msgstr ""
 
-#: src/LYOptions.c:3480
+#: src/LYOptions.c:3481
 msgid "Keyboard Input"
 msgstr ""
 
 #. ***************************************************************
 #. Keypad Mode: SELECT
-#: src/LYOptions.c:3484
+#: src/LYOptions.c:3485
 msgid "Keypad mode"
 msgstr "Gedrag van numeriek eiland"
 
 #. Emacs keys: ON/OFF
-#: src/LYOptions.c:3490
+#: src/LYOptions.c:3491
 msgid "Emacs keys"
 msgstr "Emacs toetsen"
 
 #. VI Keys: ON/OFF
-#: src/LYOptions.c:3496
+#: src/LYOptions.c:3497
 msgid "VI keys"
 msgstr "VI toetsen"
 
 #. Line edit style: SELECT
 #. well, at least 2 line edit styles available
-#: src/LYOptions.c:3503
+#: src/LYOptions.c:3504
 msgid "Line edit style"
 msgstr ""
 
 #. Keyboard layout: SELECT
-#: src/LYOptions.c:3515
+#: src/LYOptions.c:3516
 msgid "Keyboard layout"
 msgstr ""
 
 #.
 #. * Display and Character Set
 #.
-#: src/LYOptions.c:3529
+#: src/LYOptions.c:3530
 msgid "Display and Character Set"
 msgstr "Karakterset op beeldscherm"
 
 #. Use locale-based character set: ON/OFF
-#: src/LYOptions.c:3534
+#: src/LYOptions.c:3535
 #, fuzzy
 msgid "Use locale-based character set"
 msgstr "Veronderstelde karakterset"
 
 #. Display Character Set: SELECT
-#: src/LYOptions.c:3543
+#: src/LYOptions.c:3544
 msgid "Display character set"
 msgstr "Karakterset op beeldscherm"
 
-#: src/LYOptions.c:3574
+#: src/LYOptions.c:3575
 msgid "Assumed document character set"
 msgstr "Veronderstelde karakterset"
 
@@ -4822,169 +4826,169 @@ msgstr "Veronderstelde karakterset"
 #. * we split the header to make it more readable:
 #. * "CJK mode" for CJK display charsets, and "Raw 8-bit" for others.
 #.
-#: src/LYOptions.c:3594
+#: src/LYOptions.c:3595
 msgid "CJK mode"
 msgstr "CJK modus"
 
-#: src/LYOptions.c:3596
+#: src/LYOptions.c:3597
 msgid "Raw 8-bit"
 msgstr "Kale 8-bit"
 
 #. X Display: INPUT
-#: src/LYOptions.c:3604
+#: src/LYOptions.c:3605
 msgid "X Display"
 msgstr "X Display"
 
 #.
 #. * Document Appearance
 #.
-#: src/LYOptions.c:3610
+#: src/LYOptions.c:3611
 msgid "Document Appearance"
 msgstr ""
 
-#: src/LYOptions.c:3616
+#: src/LYOptions.c:3617
 msgid "Show color"
 msgstr "Toon kleur"
 
 #. Show cursor: ON/OFF
-#: src/LYOptions.c:3640
+#: src/LYOptions.c:3641
 msgid "Show cursor"
 msgstr "Toon cursor"
 
 #. Underline links: ON/OFF
-#: src/LYOptions.c:3646
+#: src/LYOptions.c:3647
 #, fuzzy
 msgid "Underline links"
 msgstr "Verborgen links:"
 
 #. Show scrollbar: ON/OFF
-#: src/LYOptions.c:3653
+#: src/LYOptions.c:3654
 #, fuzzy
 msgid "Show scrollbar"
 msgstr "Toon kleur"
 
 #. Select Popups: ON/OFF
-#: src/LYOptions.c:3660
+#: src/LYOptions.c:3661
 msgid "Popups for select fields"
 msgstr "Menuutjes voor keuzevelden"
 
 #. HTML error recovery: SELECT
-#: src/LYOptions.c:3666
+#: src/LYOptions.c:3667
 msgid "HTML error recovery"
 msgstr "HTML foutcorrectie"
 
 #. Show Images: SELECT
-#: src/LYOptions.c:3672
+#: src/LYOptions.c:3673
 msgid "Show images"
 msgstr "Afbeeldingen laten zien als"
 
 #. Verbose Images: ON/OFF
-#: src/LYOptions.c:3686
+#: src/LYOptions.c:3687
 msgid "Verbose images"
 msgstr "Naam van afbeeldingen vermelden"
 
-#: src/LYOptions.c:3695
+#: src/LYOptions.c:3696
 msgid "Headers Transferred to Remote Servers"
 msgstr "Kopteksten die overgedragen worden naar andere computers"
 
 #. ***************************************************************
 #. Mail Address: INPUT
-#: src/LYOptions.c:3699
+#: src/LYOptions.c:3700
 msgid "Personal mail address"
 msgstr "Persoonlijk e-mail adres"
 
 #. Preferred media type: SELECT
-#: src/LYOptions.c:3704
+#: src/LYOptions.c:3705
 #, fuzzy
 msgid "Preferred media type"
 msgstr "%d bytes overgezet"
 
 #. Preferred encoding: SELECT
-#: src/LYOptions.c:3710
+#: src/LYOptions.c:3711
 #, fuzzy
 msgid "Preferred encoding"
 msgstr "Voorkeur voor taal van document"
 
 #. Preferred Document Character Set: INPUT
-#: src/LYOptions.c:3716
+#: src/LYOptions.c:3717
 msgid "Preferred document character set"
 msgstr "Voorkeur voor karakterset"
 
 #. Preferred Document Language: INPUT
-#: src/LYOptions.c:3721
+#: src/LYOptions.c:3722
 msgid "Preferred document language"
 msgstr "Voorkeur voor taal van document"
 
-#: src/LYOptions.c:3727
+#: src/LYOptions.c:3728
 msgid "User-Agent header"
 msgstr "User-Agent koptekst"
 
 #.
 #. * Listing and Accessing Files
 #.
-#: src/LYOptions.c:3735
+#: src/LYOptions.c:3736
 msgid "Listing and Accessing Files"
 msgstr ""
 
 #. ***************************************************************
 #. FTP sort: SELECT
-#: src/LYOptions.c:3739
+#: src/LYOptions.c:3740
 msgid "FTP sort criteria"
 msgstr "Sorteercriteria voor FTP"
 
 #. Local Directory Sort: SELECT
-#: src/LYOptions.c:3746
+#: src/LYOptions.c:3747
 msgid "Local directory sort criteria"
 msgstr "Sorteercriteria lokale mappen"
 
 #. Local Directory Order: SELECT
-#: src/LYOptions.c:3752
+#: src/LYOptions.c:3753
 #, fuzzy
 msgid "Local directory sort order"
 msgstr "Sorteercriteria lokale mappen"
 
-#: src/LYOptions.c:3761
+#: src/LYOptions.c:3762
 msgid "Show dot files"
 msgstr "Toon .-bestanden"
 
-#: src/LYOptions.c:3769
+#: src/LYOptions.c:3770
 msgid "Execution links"
 msgstr "verwijzingen die programma's starten"
 
 #. Show transfer rate: SELECT
-#: src/LYOptions.c:3789
+#: src/LYOptions.c:3790
 msgid "Show transfer rate"
 msgstr "Gegevensoverdracht voltooid"
 
 #.
 #. * Special Files and Screens
 #.
-#: src/LYOptions.c:3809
+#: src/LYOptions.c:3810
 msgid "Special Files and Screens"
 msgstr ""
 
-#: src/LYOptions.c:3814
+#: src/LYOptions.c:3815
 msgid "Multi-bookmarks"
 msgstr "Meervoudige boekenleggers"
 
-#: src/LYOptions.c:3822
+#: src/LYOptions.c:3823
 msgid "Review/edit Bookmarks files"
 msgstr "Bekijk/wijzig Boekenlegger bestanden"
 
-#: src/LYOptions.c:3824
+#: src/LYOptions.c:3825
 msgid "Goto multi-bookmark menu"
 msgstr "Ga naar multi-boekenlegger menu"
 
-#: src/LYOptions.c:3826
+#: src/LYOptions.c:3827
 msgid "Bookmarks file"
 msgstr "Boekenlegger bestand"
 
 #. Visited Pages: SELECT
-#: src/LYOptions.c:3832
+#: src/LYOptions.c:3833
 msgid "Visited Pages"
 msgstr "Bezochte Pagina's"
 
-#: src/LYOptions.c:3837
+#: src/LYOptions.c:3838
 #, fuzzy
 msgid "View the file "
 msgstr "Post het bestand"
@@ -5105,38 +5109,38 @@ msgstr "Lynx: kan niet starten, CERN reglement bestand %s is niet beschikbaar\n"
 msgid "(no name)"
 msgstr "(naamloos)"
 
-#: src/LYReadCFG.c:1772
+#: src/LYReadCFG.c:1773
 #, c-format
 msgid "More than %d nested lynx.cfg includes -- perhaps there is a loop?!?\n"
 msgstr "Meer dan %d geneste lynx.cfg insluitingen -- misschien een lus?!?\n"
 
-#: src/LYReadCFG.c:1774
+#: src/LYReadCFG.c:1775
 #, c-format
 msgid "Last attempted include was '%s',\n"
 msgstr "De laatste include die geprobeerd is, was '%s',\n"
 
-#: src/LYReadCFG.c:1775
+#: src/LYReadCFG.c:1776
 #, c-format
 msgid "included from '%s'.\n"
 msgstr "ingevoegd vanuit '%s'.\n"
 
-#: src/LYReadCFG.c:2181 src/LYReadCFG.c:2194 src/LYReadCFG.c:2252
+#: src/LYReadCFG.c:2183 src/LYReadCFG.c:2196 src/LYReadCFG.c:2254
 msgid "The following is read from your lynx.cfg file."
 msgstr "Het volgende wordt gelezen uit uw lynx.cfg bestand."
 
-#: src/LYReadCFG.c:2182 src/LYReadCFG.c:2195
+#: src/LYReadCFG.c:2184 src/LYReadCFG.c:2197
 msgid "Please read the distribution"
 msgstr "Lees a.u.b. de meegeleverde versie"
 
-#: src/LYReadCFG.c:2188 src/LYReadCFG.c:2198
+#: src/LYReadCFG.c:2190 src/LYReadCFG.c:2200
 msgid "for more comments."
 msgstr "voor meer opmerkingen."
 
-#: src/LYReadCFG.c:2234
+#: src/LYReadCFG.c:2236
 msgid "RELOAD THE CHANGES"
 msgstr "HERLAAD DE VERANDERINGEN"
 
-#: src/LYReadCFG.c:2242
+#: src/LYReadCFG.c:2244
 msgid "Your primary configuration"
 msgstr "Uw primaire configuratie"
 
@@ -5440,7 +5444,7 @@ msgstr ""
 msgid "Normally disabled.  See ENABLE_LYNXRC in lynx.cfg\n"
 msgstr "Normaliter uitgeschakeld.  Zie ENABLE_LYNXRC in lynx.cfg\n"
 
-#: src/LYrcFile.c:317
+#: src/LYrcFile.c:318
 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"
@@ -5452,7 +5456,7 @@ msgstr ""
 "\"FALSE\", zodat voor elk cookie om bevestiging zal worden gevraagd.\n"
 "Zet accept_all_cookies op \"TRUE\" om alle cookies te accepteren.\n"
 
-#: src/LYrcFile.c:324
+#: src/LYrcFile.c:325
 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"
@@ -5462,7 +5466,7 @@ msgstr ""
 "bestand, in welke de gebruiker links kan plaatsen om deze op een later\n"
 "tijdstip eenvoudig te kunnen bereiken.\n"
 
-#: src/LYrcFile.c:329
+#: src/LYrcFile.c:330
 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"
@@ -5473,7 +5477,7 @@ msgstr ""
 "en kleine letters, in plaats van ongevoelig voor kast.  De standaard is\n"
 "meestal \"off\".\n"
 
-#: src/LYrcFile.c:334
+#: src/LYrcFile.c:335
 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"
@@ -5486,7 +5490,7 @@ msgstr ""
 "scherm, kunt u een andere 8 bit verzameling proberen of 7 bit benaderingen.\n"
 "Huidig geldige tekenverzamelingen zijn:\n"
 
-#: src/LYrcFile.c:341
+#: src/LYrcFile.c:342
 msgid ""
 "cookie_accept_domains and cookie_reject_domains are comma-delimited\n"
 "lists of domains from which Lynx should automatically accept or reject\n"
@@ -5498,7 +5502,7 @@ msgstr ""
 "cookies respectievelijk toelaat of weigert.  Als een domein opgegeven wordt voor beide opties zal verwerping het winnen van "
 "toelaten.  De accept_all_cookies parameter doet deze instellingen teniet.\n"
 
-#: src/LYrcFile.c:349
+#: src/LYrcFile.c:350
 msgid ""
 "cookie_file specifies the file from which to read persistent cookies.\n"
 "The default is ~/.lynx_cookies.\n"
@@ -5506,7 +5510,7 @@ msgstr ""
 "cookie_file specificeert het bestand waarin blijvende cookies worden\n"
 "opgeslagen. Standaard is dit ~/.lynx_cookies.\n"
 
-#: src/LYrcFile.c:354
+#: src/LYrcFile.c:355
 msgid ""
 "cookie_loose_invalid_domains, cookie_strict_invalid_domains, and\n"
 "cookie_query_invalid_domains are comma-delimited lists of which domains\n"
@@ -5525,13 +5529,13 @@ msgstr ""
 "domein-attribuut te plaatsen.  Alle domeinen zullen standaard de\n"
 "gebruiker vragen (query) in geval van ongeldig pad of domein.\n"
 
-#: src/LYrcFile.c:368
+#: src/LYrcFile.c:369
 msgid ""
 "dir_list_order specifies the directory list order under DIRED_SUPPORT\n"
 "(if implemented).  The default is \"ORDER_BY_NAME\"\n"
 msgstr ""
 
-#: src/LYrcFile.c:373
+#: src/LYrcFile.c:374
 msgid ""
 "dir_list_styles specifies the directory list style under DIRED_SUPPORT\n"
 "(if implemented).  The default is \"MIXED_STYLE\", which sorts both\n"
@@ -5543,7 +5547,7 @@ msgstr ""
 "bestanden en mappen samen worden gesorteerd.  \"FILES_FIRST\" plaatst\n"
 "bestanden eerst, \"DIRECTORIES_FIRST\" plaatst mappen eerst.\n"
 
-#: src/LYrcFile.c:381
+#: src/LYrcFile.c:382
 msgid ""
 "If emacs_keys is to \"on\" then the normal EMACS movement keys:\n"
 "  ^N = down    ^P = up\n"
@@ -5555,7 +5559,7 @@ msgstr ""
 "  ^B = links (backward-char)   ^F = rechts (forward-char)\n"
 "in gebruik zijn.\n"
 
-#: src/LYrcFile.c:387
+#: src/LYrcFile.c:388
 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"
@@ -5568,7 +5572,7 @@ msgstr ""
 "wordt opgegeven. De ingebouwde editor zal worden gebruikt om email te\n"
 "verzenden.\n"
 
-#: src/LYrcFile.c:393
+#: src/LYrcFile.c:394
 msgid ""
 "The file_sorting_method specifies which value to sort on when viewing\n"
 "file lists such as FTP directories.  The options are:\n"
@@ -5584,7 +5588,7 @@ msgstr ""
 "  BY_SIZE     -- sorteert op de grootte van het bestand\n"
 "  BY_DATE     -- sorteert op de datum van het bestand\n"
 
-#: src/LYrcFile.c:411
+#: src/LYrcFile.c:412
 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"
@@ -5608,7 +5612,7 @@ msgstr ""
 "\n"
 "Huidige mogelijkheden voor lineedit_mode zijn:\n"
 
-#: src/LYrcFile.c:429
+#: src/LYrcFile.c:430
 msgid ""
 "The following allow you to define sub-bookmark files and descriptions.\n"
 "The format is multi_bookmark<capital_letter>=<filename>,<description>\n"
@@ -5621,7 +5625,7 @@ msgstr ""
 "Er kunnen 26 boekenleggerbestanden zijn, voor elke hoofdletter A-Z.\n"
 "We beginnen met \"multi_bookmarkB\" omdat 'A' de gewone is (zie boven).\n"
 
-#: src/LYrcFile.c:435
+#: src/LYrcFile.c:436
 msgid ""
 "personal_mail_address specifies your personal mail address.  The\n"
 "address will be sent during HTTP file transfers for authorization and\n"
@@ -5639,7 +5643,7 @@ msgstr ""
 "ook dit veld leeg laten, maar dan wordt het ook niet opgenomen in\n"
 "uw email commentaren.\n"
 
-#: src/LYrcFile.c:444
+#: src/LYrcFile.c:445
 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"
@@ -5667,7 +5671,7 @@ msgstr ""
 "moeten sturen, maar het verzenden van een onacceptabel antwoord is ook\n"
 "toegestaan.\n"
 
-#: src/LYrcFile.c:460
+#: src/LYrcFile.c:461
 msgid ""
 "preferred_language specifies the language in MIME notation (e.g., en,\n"
 "fr, may be a comma-separated list in decreasing preference)\n"
@@ -5682,7 +5686,7 @@ msgstr ""
 "server het verzenden.  Als dit niet het geval is, zal de server het\n"
 "bestand in zijn standaard taal verzenden.\n"
 
-#: src/LYrcFile.c:471
+#: src/LYrcFile.c:472
 msgid ""
 "If run_all_execution_links is set \"on\" then all local execution links\n"
 "will be executed when they are selected.\n"
@@ -5704,7 +5708,7 @@ msgstr ""
 "         omzeilen.  Deze optie moet enkel op \"on\" gezet worden als u\n"
 "         alleen maar informatie bekijkt uit een vertrouwde bron.\n"
 
-#: src/LYrcFile.c:482
+#: src/LYrcFile.c:483
 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"
@@ -5731,7 +5735,7 @@ msgstr ""
 "         omzeilen.  Deze optie moet enkel op \"on\" gezet worden als u\n"
 "         alleen maar informatie bekijkt uit een vertrouwde bron.\n"
 
-#: src/LYrcFile.c:500
+#: src/LYrcFile.c:501
 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"
@@ -5750,7 +5754,7 @@ msgstr ""
 "drukknoppen zorgt.\n"
 "De standaard kan worden tenietgedaan d.m.v. de `-popup' commandoregel optie.\n"
 
-#: src/LYrcFile.c:510
+#: src/LYrcFile.c:511
 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"
@@ -5785,7 +5789,7 @@ msgstr ""
 "'o'pties menu.  Als de optie-instellingen worden opgeslagen, zullen de\n"
 "\"on\" en \"off\" instellingen worden gezien als \"default\".\n"
 
-#: src/LYrcFile.c:527
+#: src/LYrcFile.c:528
 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"
@@ -5806,7 +5810,7 @@ msgstr ""
 "Een waarde \"on\" zal de positionering links van de links of opties\n"
 "zetten, en en waarde \"off\" probeert de cursor te 'verbergen'.\n"
 
-#: src/LYrcFile.c:538
+#: src/LYrcFile.c:539
 msgid ""
 "show_dotfiles specifies that the directory listing should include\n"
 "\"hidden\" (dot) files/directories.  If set \"on\", this will be\n"
@@ -5820,7 +5824,7 @@ msgstr ""
 "commando-regel optie.  Indien uitgezet wordt het ook onmogelijk gemaakt\n"
 "om verborgen bestanden aan te maken vanuit Lynx.\n"
 
-#: src/LYrcFile.c:549
+#: src/LYrcFile.c:550
 msgid ""
 "If sub_bookmarks is not turned \"off\", and multiple bookmarks have\n"
 "been defined (see below), then all bookmark operations will first\n"
@@ -5843,7 +5847,7 @@ msgstr ""
 "gebruikt.  Als deze optie op \"standaard\" gezet wordt, zal ongeacht de\n"
 "gebruikersmodus het volledige menu getoond worden.\n"
 
-#: src/LYrcFile.c:563
+#: src/LYrcFile.c:564
 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"
@@ -5859,7 +5863,7 @@ msgstr ""
 "schakelen.  Gebruik \"ADVANCED\" om onder in het scherm de URL van de\n"
 "geselecteerd link te zien.\n"
 
-#: src/LYrcFile.c:572
+#: src/LYrcFile.c:573
 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"
@@ -5869,7 +5873,7 @@ msgstr ""
 "afbeelding laten zien in plaats van [INLINE], [LINK] of [IMAGE].\n"
 "Zie ook VERBOSE_IMAGES in lynx.cfg\n"
 
-#: src/LYrcFile.c:577
+#: src/LYrcFile.c:578
 msgid ""
 "If vi_keys is set to \"on\", then the normal VI movement keys:\n"
 "  j = down    k = up\n"
@@ -5886,7 +5890,7 @@ msgstr ""
 "springen naar snelkoppelingen (j-ump) of the toetsenindeling laten\n"
 "zien (k-eymap display).\n"
 
-#: src/LYrcFile.c:585
+#: src/LYrcFile.c:586
 msgid ""
 "The visited_links setting controls how Lynx organizes the information\n"
 "in the Visited Links Page.\n"
@@ -5894,7 +5898,7 @@ msgstr ""
 "De visited_links optie bepaalt hoe Lynx de informatie weergeeft op de\n"
 "pagina met Bezochte Links.\n"
 
-#: src/LYrcFile.c:803
+#: src/LYrcFile.c:804
 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"
@@ -5912,7 +5916,7 @@ msgstr ""
 "De corresponderende nummers op het linkerdeel van het toetsenbord zullen\n"
 "ook als pijltjestoetsen functioneren, ongeacht de Numlock stand.\n"
 
-#: src/LYrcFile.c:812
+#: src/LYrcFile.c:813
 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"
@@ -5921,7 +5925,7 @@ msgstr ""
 "verschijnen naast elke link en nummers kunnen gebruikt worden om links\n"
 "te selecteren.\n"
 
-#: src/LYrcFile.c:816
+#: src/LYrcFile.c:817
 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"
@@ -5941,7 +5945,7 @@ msgstr ""
 "op het scherm zichtbaar is.  Referentielijsten en uitvoer van het\n"
 "lijst commando nummeren ook formulier-invoervelden.\n"
 
-#: src/LYrcFile.c:825
+#: src/LYrcFile.c:826
 msgid ""
 "NOTE: Some fixed format documents may look disfigured when\n"
 "\"LINKS_ARE_NUMBERED\" or \"LINKS_AND_FORM_FIELDS_ARE_NUMBERED\" are\n"
@@ -5951,7 +5955,7 @@ msgstr ""
 "verminkt uitzien als \"LINKS_ARE_NUMBERED\" of\n"
 "\"LINKS_AND_FORM_FIELDS_ARE_NUMBERED\" is aangezet.\n"
 
-#: src/LYrcFile.c:857
+#: src/LYrcFile.c:858
 msgid ""
 "Lynx User Defaults File\n"
 "\n"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 6b5f1e3c..8592fc55 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lynx 2.8.4\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-10-10 18:51-0400\n"
+"POT-Creation-Date: 2004-10-17 16:29-0400\n"
 "PO-Revision-Date: 1999-07-30 09:47-03:00\n"
 "Last-Translator: Ricardo Soares Guimarães <ricardo@conectiva.com.br>\n"
 "Language-Team: Brazilian Portuguese <ldp-br@bazar.conectiva.com.br>\n"
@@ -2794,7 +2794,7 @@ msgstr "Documento com ação de postagem não encontrado no cache. Reenviar?"
 msgid "Loading failed, use a previous copy."
 msgstr ""
 
-#: WWW/Library/Implementation/HTAccess.c:1045 src/GridText.c:8301
+#: WWW/Library/Implementation/HTAccess.c:1045 src/GridText.c:8296
 msgid "Loading incomplete."
 msgstr "Leitura incompleta"
 
@@ -2863,7 +2863,7 @@ msgstr "Transferidos %d bytes (%5d)."
 msgid "connect for data"
 msgstr "conectado para dados"
 
-#: WWW/Library/Implementation/HTFTP.c:3738
+#: WWW/Library/Implementation/HTFTP.c:3741
 msgid "Receiving FTP file."
 msgstr "Recebendo arquivo de FTP."
 
@@ -3022,7 +3022,7 @@ msgstr "Comprimento do endereço parece estar errado"
 msgid "Address length looks invalid"
 msgstr "Comprimento do endereço parece estar errado"
 
-#: WWW/Library/Implementation/HTTCP.c:1551 WWW/Library/Implementation/HTTCP.c:1569
+#: WWW/Library/Implementation/HTTCP.c:1552 WWW/Library/Implementation/HTTCP.c:1570
 #, c-format
 msgid "Unable to locate remote host %s."
 msgstr "Imposs;ivel localizar servidor remoto %s."
@@ -3031,38 +3031,38 @@ msgstr "Imposs;ivel localizar servidor remoto %s."
 #. * but not HTAlert, because typically there will be other
 #. * alerts from the callers.  - kw
 #.
-#: WWW/Library/Implementation/HTTCP.c:1566 WWW/Library/Implementation/HTTelnet.c:108
+#: WWW/Library/Implementation/HTTCP.c:1567 WWW/Library/Implementation/HTTelnet.c:108
 #, c-format
 msgid "Invalid hostname %s"
 msgstr "Servidor inválido %s"
 
-#: WWW/Library/Implementation/HTTCP.c:1580
+#: WWW/Library/Implementation/HTTCP.c:1581
 #, c-format
 msgid "Making %s connection to %s"
 msgstr "Conectando com %s em %s."
 
-#: WWW/Library/Implementation/HTTCP.c:1591
+#: WWW/Library/Implementation/HTTCP.c:1592
 msgid "socket failed."
 msgstr "Falha na conecção do socket."
 
-#: WWW/Library/Implementation/HTTCP.c:1604
+#: WWW/Library/Implementation/HTTCP.c:1605
 #, c-format
 msgid "socket failed: family %d addr %s port %s."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1628
+#: WWW/Library/Implementation/HTTCP.c:1629
 msgid "Could not make connection non-blocking."
 msgstr "Não foi possível criar conecção."
 
-#: WWW/Library/Implementation/HTTCP.c:1697
+#: WWW/Library/Implementation/HTTCP.c:1698
 msgid "Connection failed (too many retries)."
 msgstr "Conecção falhou apos 180,000 tentativas."
 
-#: WWW/Library/Implementation/HTTCP.c:1896
+#: WWW/Library/Implementation/HTTCP.c:1897
 msgid "Could not restore socket to blocking."
 msgstr "Impossível restaurar socket para blocagem."
 
-#: WWW/Library/Implementation/HTTCP.c:1962
+#: WWW/Library/Implementation/HTTCP.c:1963
 msgid "Socket read failed for 180,000 tries."
 msgstr "Leitura do socket falhou após 180,000 tentativas."
 
@@ -3071,46 +3071,46 @@ msgstr "Leitura do socket falhou após 180,000 tentativas."
 msgid "Address contains a username: %s"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:497
+#: WWW/Library/Implementation/HTTP.c:531
 msgid "This client does not contain support for HTTPS URLs."
 msgstr "Este programa não suporta URLs com HTTPS"
 
-#: WWW/Library/Implementation/HTTP.c:522
+#: WWW/Library/Implementation/HTTP.c:556
 msgid "Unable to connect to remote host."
 msgstr "Impossível conectar ao servidor remoto."
 
-#: WWW/Library/Implementation/HTTP.c:544
+#: WWW/Library/Implementation/HTTP.c:578
 #, fuzzy
 msgid "Retrying connection without TLS."
 msgstr "Conectando com %s em %s."
 
-#: WWW/Library/Implementation/HTTP.c:587
+#: WWW/Library/Implementation/HTTP.c:621
 msgid "SSL error:Can't find common name in certificate-Continue?"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:604
+#: WWW/Library/Implementation/HTTP.c:638
 #, c-format
 msgid "SSL error:host(%s)!=cert(%s)-Continue?"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:616
+#: WWW/Library/Implementation/HTTP.c:650
 #, c-format
 msgid "Secure %d-bit %s (%s) HTTP connection"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1086
+#: WWW/Library/Implementation/HTTP.c:1120
 msgid "Sending HTTP request."
 msgstr "Enviando requisição HTTP."
 
-#: WWW/Library/Implementation/HTTP.c:1125
+#: WWW/Library/Implementation/HTTP.c:1159
 msgid "Unexpected network write error; connection aborted."
 msgstr "Erro inesperado de gravação na rede; conecção abortada."
 
-#: WWW/Library/Implementation/HTTP.c:1131
+#: WWW/Library/Implementation/HTTP.c:1165
 msgid "HTTP request sent; waiting for response."
 msgstr "Enviada requisição HTTP; aguardando resposta."
 
-#: WWW/Library/Implementation/HTTP.c:1199
+#: WWW/Library/Implementation/HTTP.c:1233
 msgid "Unexpected network read error; connection aborted."
 msgstr "Erro inesperado de leitura na rede; conecção abortada."
 
@@ -3123,7 +3123,7 @@ msgstr "Erro inesperado de leitura na rede; conecção abortada."
 #. * 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:1393
+#: WWW/Library/Implementation/HTTP.c:1427
 msgid "Got unexpected Informational Status."
 msgstr "Recebido informação de estado não solicitada."
 
@@ -3133,7 +3133,7 @@ msgstr "Recebido informação de estado não solicitada."
 #. * content.  We'll instruct the user to do that, and
 #. * restore the current document.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1427
+#: WWW/Library/Implementation/HTTP.c:1461
 msgid "Request fulfilled.  Reset Content."
 msgstr "Estouro de requisição. Limpando pedido."
 
@@ -3143,27 +3143,27 @@ msgstr "Estouro de requisição. Limpando pedido."
 #. * 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:1544
+#: WWW/Library/Implementation/HTTP.c:1578
 msgid "Got unexpected 304 Not Modified status."
 msgstr "Recebida resposta de valor 304."
 
-#: WWW/Library/Implementation/HTTP.c:1607
+#: WWW/Library/Implementation/HTTP.c:1641
 msgid "Redirection of POST content requires user approval."
 msgstr "Redirecionamento de postagem requer autorização do usuário."
 
-#: WWW/Library/Implementation/HTTP.c:1622
+#: WWW/Library/Implementation/HTTP.c:1656
 msgid "Have POST content.  Treating Permanent Redirection as Temporary.\n"
 msgstr "Há uma ação de postagem.Tratando redirecionamento permanente como temporário.\n"
 
-#: WWW/Library/Implementation/HTTP.c:1664
+#: WWW/Library/Implementation/HTTP.c:1698
 msgid "Retrying with access authorization information."
 msgstr "Repetindo com informações de autorização de acesso."
 
-#: WWW/Library/Implementation/HTTP.c:1676
+#: WWW/Library/Implementation/HTTP.c:1710
 msgid "Show the 401 message body?"
 msgstr "Mostra o corpo da mensagem 401?"
 
-#: WWW/Library/Implementation/HTTP.c:1719
+#: WWW/Library/Implementation/HTTP.c:1753
 msgid "Show the 407 message body?"
 msgstr "Mostra o corpo da mensagem 407?"
 
@@ -3171,7 +3171,7 @@ msgstr "Mostra o corpo da mensagem 407?"
 #. * Bad or unknown server_status number.  Take a chance and hope
 #. * there is something to display.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1819
+#: WWW/Library/Implementation/HTTP.c:1853
 msgid "Unknown status reply from server!"
 msgstr "Resposta desconhecida de estado do servidor!"
 
@@ -3435,31 +3435,31 @@ msgstr "Campo de 'chave'"
 msgid "unknown form field"
 msgstr "Campo desconhecido"
 
-#: src/GridText.c:10020
+#: src/GridText.c:10015
 #, fuzzy
 msgid "Can't open file for uploading"
 msgstr "Impossóvel abrir arquivo para descompressão!"
 
-#: src/GridText.c:11170
+#: src/GridText.c:11165
 #, c-format
 msgid "Submitting %s"
 msgstr "Enviando %s"
 
 #. ugliness has happened; inform user and do the best we can
-#: src/GridText.c:12318
+#: src/GridText.c:12313
 msgid "Hang Detect: TextAnchor struct corrupted - suggest aborting!"
 msgstr ""
 
 #. don't show previous state
-#: src/GridText.c:12523
+#: src/GridText.c:12518
 msgid "Wrap lines to fit displayed area?"
 msgstr ""
 
-#: src/GridText.c:12575
+#: src/GridText.c:12570
 msgid "Very long lines have been wrapped!"
 msgstr ""
 
-#: src/GridText.c:13016
+#: src/GridText.c:13011
 msgid "Very long lines have been truncated!"
 msgstr ""
 
@@ -4695,117 +4695,121 @@ msgstr "Aceitar mudanças"
 msgid "gzip"
 msgstr ""
 
-#: src/LYOptions.c:2388
+#: src/LYOptions.c:2386
+msgid "deflate"
+msgstr ""
+
+#: src/LYOptions.c:2389
 msgid "compress"
 msgstr ""
 
-#: src/LYOptions.c:2391
+#: src/LYOptions.c:2392
 msgid "bzip2"
 msgstr ""
 
-#: src/LYOptions.c:2393
+#: src/LYOptions.c:2394
 msgid "All"
 msgstr ""
 
-#: src/LYOptions.c:2658 src/LYOptions.c:2682
+#: src/LYOptions.c:2659 src/LYOptions.c:2683
 #, c-format
 msgid "Use %s to invoke the Options menu!"
 msgstr ""
 
-#: src/LYOptions.c:3421
+#: src/LYOptions.c:3422
 msgid "(options marked with (!) will not be saved)"
 msgstr ""
 
-#: src/LYOptions.c:3429
+#: src/LYOptions.c:3430
 msgid "General Preferences"
 msgstr "Preferências pessoais"
 
 #. ***************************************************************
 #. User Mode: SELECT
-#: src/LYOptions.c:3433
+#: src/LYOptions.c:3434
 msgid "User mode"
 msgstr "Modo usuário"
 
 #. Editor: INPUT
-#: src/LYOptions.c:3439
+#: src/LYOptions.c:3440
 msgid "Editor"
 msgstr "Editor"
 
 #. Search Type: SELECT
-#: src/LYOptions.c:3444
+#: src/LYOptions.c:3445
 msgid "Type of Search"
 msgstr ""
 
-#: src/LYOptions.c:3449
+#: src/LYOptions.c:3450
 msgid "Security and Privacy"
 msgstr ""
 
 #. ***************************************************************
 #. Cookies: SELECT
-#: src/LYOptions.c:3453
+#: src/LYOptions.c:3454
 msgid "Cookies"
 msgstr "Cookies"
 
 #. Cookie Prompting: SELECT
-#: src/LYOptions.c:3467
+#: src/LYOptions.c:3468
 msgid "Invalid-Cookie Prompting"
 msgstr ""
 
 #. SSL Prompting: SELECT
-#: src/LYOptions.c:3474
+#: src/LYOptions.c:3475
 msgid "SSL Prompting"
 msgstr ""
 
-#: src/LYOptions.c:3480
+#: src/LYOptions.c:3481
 msgid "Keyboard Input"
 msgstr ""
 
 #. ***************************************************************
 #. Keypad Mode: SELECT
-#: src/LYOptions.c:3484
+#: src/LYOptions.c:3485
 msgid "Keypad mode"
 msgstr "Modo Keypad"
 
 #. Emacs keys: ON/OFF
-#: src/LYOptions.c:3490
+#: src/LYOptions.c:3491
 msgid "Emacs keys"
 msgstr "Teclas Emacs"
 
 #. VI Keys: ON/OFF
-#: src/LYOptions.c:3496
+#: src/LYOptions.c:3497
 msgid "VI keys"
 msgstr "Teclas VI"
 
 #. Line edit style: SELECT
 #. well, at least 2 line edit styles available
-#: src/LYOptions.c:3503
+#: src/LYOptions.c:3504
 msgid "Line edit style"
 msgstr ""
 
 #. Keyboard layout: SELECT
-#: src/LYOptions.c:3515
+#: src/LYOptions.c:3516
 msgid "Keyboard layout"
 msgstr ""
 
 #.
 #. * Display and Character Set
 #.
-#: src/LYOptions.c:3529
+#: src/LYOptions.c:3530
 msgid "Display and Character Set"
 msgstr "Mostra mapa de caracteres"
 
 #. Use locale-based character set: ON/OFF
-#: src/LYOptions.c:3534
+#: src/LYOptions.c:3535
 #, fuzzy
 msgid "Use locale-based character set"
 msgstr "Assumindo mapa de caracteres do documento"
 
 #. Display Character Set: SELECT
-#: src/LYOptions.c:3543
+#: src/LYOptions.c:3544
 msgid "Display character set"
 msgstr "Mostra mapa de caracteres"
 
-#: src/LYOptions.c:3574
+#: src/LYOptions.c:3575
 msgid "Assumed document character set"
 msgstr "Assumindo mapa de caracteres do documento"
 
@@ -4814,169 +4818,169 @@ msgstr "Assumindo mapa de caracteres do documento"
 #. * we split the header to make it more readable:
 #. * "CJK mode" for CJK display charsets, and "Raw 8-bit" for others.
 #.
-#: src/LYOptions.c:3594
+#: src/LYOptions.c:3595
 msgid "CJK mode"
 msgstr "Modo CJK"
 
-#: src/LYOptions.c:3596
+#: src/LYOptions.c:3597
 msgid "Raw 8-bit"
 msgstr "Raw 8-bit"
 
 #. X Display: INPUT
-#: src/LYOptions.c:3604
+#: src/LYOptions.c:3605
 msgid "X Display"
 msgstr "Visual X"
 
 #.
 #. * Document Appearance
 #.
-#: src/LYOptions.c:3610
+#: src/LYOptions.c:3611
 msgid "Document Appearance"
 msgstr ""
 
-#: src/LYOptions.c:3616
+#: src/LYOptions.c:3617
 msgid "Show color"
 msgstr "Mostra cor"
 
 #. Show cursor: ON/OFF
-#: src/LYOptions.c:3640
+#: src/LYOptions.c:3641
 msgid "Show cursor"
 msgstr "Mostra cursor"
 
 #. Underline links: ON/OFF
-#: src/LYOptions.c:3646
+#: src/LYOptions.c:3647
 #, fuzzy
 msgid "Underline links"
 msgstr "Ligações escondidas:"
 
 #. Show scrollbar: ON/OFF
-#: src/LYOptions.c:3653
+#: src/LYOptions.c:3654
 #, fuzzy
 msgid "Show scrollbar"
 msgstr "Mostra cor"
 
 #. Select Popups: ON/OFF
-#: src/LYOptions.c:3660
+#: src/LYOptions.c:3661
 msgid "Popups for select fields"
 msgstr "Pop-ups para os campos selecionados"
 
 #. HTML error recovery: SELECT
-#: src/LYOptions.c:3666
+#: src/LYOptions.c:3667
 msgid "HTML error recovery"
 msgstr "Erro recuperando HTML"
 
 #. Show Images: SELECT
-#: src/LYOptions.c:3672
+#: src/LYOptions.c:3673
 msgid "Show images"
 msgstr "Mostra imagens"
 
 #. Verbose Images: ON/OFF
-#: src/LYOptions.c:3686
+#: src/LYOptions.c:3687
 msgid "Verbose images"
 msgstr "Imagens explicitadas"
 
-#: src/LYOptions.c:3695
+#: src/LYOptions.c:3696
 msgid "Headers Transferred to Remote Servers"
 msgstr "Cabeçalhos tranferidos ao servidor remoto"
 
 #. ***************************************************************
 #. Mail Address: INPUT
-#: src/LYOptions.c:3699
+#: src/LYOptions.c:3700
 msgid "Personal mail address"
 msgstr "Endereço pessoal de email"
 
 #. Preferred media type: SELECT
-#: src/LYOptions.c:3704
+#: src/LYOptions.c:3705
 #, fuzzy
 msgid "Preferred media type"
 msgstr "Transferidos %d bytes."
 
 #. Preferred encoding: SELECT
-#: src/LYOptions.c:3710
+#: src/LYOptions.c:3711
 #, fuzzy
 msgid "Preferred encoding"
 msgstr "Preferência de linguagem do documento."
 
 #. Preferred Document Character Set: INPUT
-#: src/LYOptions.c:3716
+#: src/LYOptions.c:3717
 msgid "Preferred document character set"
 msgstr "Preferências de mapa de caracteres do documento"
 
 #. Preferred Document Language: INPUT
-#: src/LYOptions.c:3721
+#: src/LYOptions.c:3722
 msgid "Preferred document language"
 msgstr "Preferência de linguagem do documento."
 
-#: src/LYOptions.c:3727
+#: src/LYOptions.c:3728
 msgid "User-Agent header"
 msgstr "Cabeçalho de Agente de Usuário"
 
 #.
 #. * Listing and Accessing Files
 #.
-#: src/LYOptions.c:3735
+#: src/LYOptions.c:3736
 msgid "Listing and Accessing Files"
 msgstr ""
 
 #. ***************************************************************
 #. FTP sort: SELECT
-#: src/LYOptions.c:3739
+#: src/LYOptions.c:3740
 msgid "FTP sort criteria"
 msgstr "Critérios de organização do FTP"
 
 #. Local Directory Sort: SELECT
-#: src/LYOptions.c:3746
+#: src/LYOptions.c:3747
 msgid "Local directory sort criteria"
 msgstr "Critérios de organizações dos diretórios locais"
 
 #. Local Directory Order: SELECT
-#: src/LYOptions.c:3752
+#: src/LYOptions.c:3753
 #, fuzzy
 msgid "Local directory sort order"
 msgstr "Critérios de organizações dos diretórios locais"
 
-#: src/LYOptions.c:3761
+#: src/LYOptions.c:3762
 msgid "Show dot files"
 msgstr "Monstre arquivos de pontos"
 
-#: src/LYOptions.c:3769
+#: src/LYOptions.c:3770
 msgid "Execution links"
 msgstr "Ligações de execução"
 
 #. Show transfer rate: SELECT
-#: src/LYOptions.c:3789
+#: src/LYOptions.c:3790
 msgid "Show transfer rate"
 msgstr "Transferência completada"
 
 #.
 #. * Special Files and Screens
 #.
-#: src/LYOptions.c:3809
+#: src/LYOptions.c:3810
 msgid "Special Files and Screens"
 msgstr ""
 
-#: src/LYOptions.c:3814
+#: src/LYOptions.c:3815
 msgid "Multi-bookmarks"
 msgstr "Multiplos Livros de Marcações"
 
-#: src/LYOptions.c:3822
+#: src/LYOptions.c:3823
 msgid "Review/edit Bookmarks files"
 msgstr "Rever/editar arquivos de Livro de Marcações"
 
-#: src/LYOptions.c:3824
+#: src/LYOptions.c:3825
 msgid "Goto multi-bookmark menu"
 msgstr "Ir para menu de multiplos livros de marcações"
 
-#: src/LYOptions.c:3826
+#: src/LYOptions.c:3827
 msgid "Bookmarks file"
 msgstr "Arquivo de Livro de marcações"
 
 #. Visited Pages: SELECT
-#: src/LYOptions.c:3832
+#: src/LYOptions.c:3833
 msgid "Visited Pages"
 msgstr "Página de ligações visitadas"
 
-#: src/LYOptions.c:3837
+#: src/LYOptions.c:3838
 #, fuzzy
 msgid "View the file "
 msgstr "Enviar arquivo por email"
@@ -5097,38 +5101,38 @@ msgstr "Lynx: Impossível iniciar,CERN arquivo de regulamento %s não está disponí
 msgid "(no name)"
 msgstr "(sem nome)"
 
-#: src/LYReadCFG.c:1772
+#: src/LYReadCFG.c:1773
 #, c-format
 msgid "More than %d nested lynx.cfg includes -- perhaps there is a loop?!?\n"
 msgstr "Mais de %d aninhados nos arquivos incluídos do lynx.cfg -- talvez seja um loop???\n"
 
-#: src/LYReadCFG.c:1774
+#: src/LYReadCFG.c:1775
 #, c-format
 msgid "Last attempted include was '%s',\n"
 msgstr "Ultimo arquivo incluso chamado foi '%s',\n"
 
-#: src/LYReadCFG.c:1775
+#: src/LYReadCFG.c:1776
 #, c-format
 msgid "included from '%s'.\n"
 msgstr "incluído a partir de '%s'\n"
 
-#: src/LYReadCFG.c:2181 src/LYReadCFG.c:2194 src/LYReadCFG.c:2252
+#: src/LYReadCFG.c:2183 src/LYReadCFG.c:2196 src/LYReadCFG.c:2254
 msgid "The following is read from your lynx.cfg file."
 msgstr "O seguinte foi lido em seu arquivo lynx.cfg."
 
-#: src/LYReadCFG.c:2182 src/LYReadCFG.c:2195
+#: src/LYReadCFG.c:2184 src/LYReadCFG.c:2197
 msgid "Please read the distribution"
 msgstr "Por favor veja a distribuição"
 
-#: src/LYReadCFG.c:2188 src/LYReadCFG.c:2198
+#: src/LYReadCFG.c:2190 src/LYReadCFG.c:2200
 msgid "for more comments."
 msgstr "para mais comentários."
 
-#: src/LYReadCFG.c:2234
+#: src/LYReadCFG.c:2236
 msgid "RELOAD THE CHANGES"
 msgstr "RELER AS ALTERAÇÕES"
 
-#: src/LYReadCFG.c:2242
+#: src/LYReadCFG.c:2244
 msgid "Your primary configuration"
 msgstr "Sua configuração inicial"
 
@@ -5432,7 +5436,7 @@ msgstr ""
 msgid "Normally disabled.  See ENABLE_LYNXRC in lynx.cfg\n"
 msgstr ""
 
-#: src/LYrcFile.c:317
+#: src/LYrcFile.c:318
 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"
@@ -5444,7 +5448,7 @@ msgstr ""
 "cookie que for enviado. Ajuste para \"TRUE\" a fim de aceitar qualquer\n"
 "cookie.\n"
 
-#: src/LYrcFile.c:324
+#: src/LYrcFile.c:325
 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"
@@ -5454,7 +5458,7 @@ msgstr ""
 "onde o usuário pode inserir para acessar facilmente os endereços \n"
 "preferidos.\n"
 
-#: src/LYrcFile.c:329
+#: src/LYrcFile.c:330
 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"
@@ -5464,7 +5468,7 @@ msgstr ""
 "chama uma busca usando 's' ou '/', a performance da procura será\n"
 "não sensitiva a letras maiusculas e minusculas. O padrão é \"off\".\n"
 
-#: src/LYrcFile.c:334
+#: src/LYrcFile.c:335
 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"
@@ -5478,7 +5482,7 @@ msgstr ""
 "caracteres de 7 bits.\n"
 "Atualmente os caracteres válidos são:\n"
 
-#: src/LYrcFile.c:341
+#: src/LYrcFile.c:342
 msgid ""
 "cookie_accept_domains and cookie_reject_domains are comma-delimited\n"
 "lists of domains from which Lynx should automatically accept or reject\n"
@@ -5492,7 +5496,7 @@ msgstr ""
 "em ambos, rejeitar tem preferência. O parametro accept_all_cookies irá\n"
 "sobreescrever qualquer outro parâmetro feito aqui.\n"
 
-#: src/LYrcFile.c:349
+#: src/LYrcFile.c:350
 msgid ""
 "cookie_file specifies the file from which to read persistent cookies.\n"
 "The default is ~/.lynx_cookies.\n"
@@ -5500,7 +5504,7 @@ msgstr ""
 "cookie_file especifica o arquivo em que irão ser gravados os cookies.\n"
 "O padrão é ~/.lynx_cookies.\n"
 
-#: src/LYrcFile.c:354
+#: src/LYrcFile.c:355
 msgid ""
 "cookie_loose_invalid_domains, cookie_strict_invalid_domains, and\n"
 "cookie_query_invalid_domains are comma-delimited lists of which domains\n"
@@ -5519,13 +5523,13 @@ msgstr ""
 "Todos os domínios tem como padrão perguntar ao usuário sobre um caminho\n"
 "ou parâmetro inválido no cookie.\n"
 
-#: src/LYrcFile.c:368
+#: src/LYrcFile.c:369
 msgid ""
 "dir_list_order specifies the directory list order under DIRED_SUPPORT\n"
 "(if implemented).  The default is \"ORDER_BY_NAME\"\n"
 msgstr ""
 
-#: src/LYrcFile.c:373
+#: src/LYrcFile.c:374
 msgid ""
 "dir_list_styles specifies the directory list style under DIRED_SUPPORT\n"
 "(if implemented).  The default is \"MIXED_STYLE\", which sorts both\n"
@@ -5538,7 +5542,7 @@ msgstr ""
 "primeiro os arquivos, depois os diretórios.\"DIRECTORIES_FIRST\" lista\n"
 "primeiro os diretórios.\n"
 
-#: src/LYrcFile.c:381
+#: src/LYrcFile.c:382
 msgid ""
 "If emacs_keys is to \"on\" then the normal EMACS movement keys:\n"
 "  ^N = down    ^P = up\n"
@@ -5549,7 +5553,7 @@ msgstr ""
 "  ^N = para baixo  ^P = para cima\n"
 "  ^B = esquerda    ^F = para direita\n"
 
-#: src/LYrcFile.c:387
+#: src/LYrcFile.c:388
 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"
@@ -5562,7 +5566,7 @@ msgstr ""
 "seja ativado na linha de comando, então o editor será usado para enviar\n"
 "emails.\n"
 
-#: src/LYrcFile.c:393
+#: src/LYrcFile.c:394
 msgid ""
 "The file_sorting_method specifies which value to sort on when viewing\n"
 "file lists such as FTP directories.  The options are:\n"
@@ -5578,7 +5582,7 @@ msgstr ""
 "   BY_SIZE     -- classifica pelo Tamanho do arquivo\n"
 "   BY_DATE     -- classifica pela Data do arquivo\n"
 
-#: src/LYrcFile.c:411
+#: src/LYrcFile.c:412
 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"
@@ -5604,7 +5608,7 @@ msgstr ""
 "\n"
 "Atualmente os modos de edição de linha são:\n"
 
-#: src/LYrcFile.c:429
+#: src/LYrcFile.c:430
 msgid ""
 "The following allow you to define sub-bookmark files and descriptions.\n"
 "The format is multi_bookmark<capital_letter>=<filename>,<description>\n"
@@ -5617,7 +5621,7 @@ msgstr ""
 "ingles). Nós começamos com \"multi_bookmarkB\" desde que 'A' é o \n"
 "padrão. (veja abaixo).\n"
 
-#: src/LYrcFile.c:435
+#: src/LYrcFile.c:436
 msgid ""
 "personal_mail_address specifies your personal mail address.  The\n"
 "address will be sent during HTTP file transfers for authorization and\n"
@@ -5634,7 +5638,7 @@ msgstr ""
 "NO_FROM_HEADER para TRUE no lynx.cfg, ou use -nofrom na linha \n"
 "de comando. Você também pode deixar este campo em branco, mas então você não poderá incluir em seus comentários de email.\n"
 
-#: src/LYrcFile.c:444
+#: src/LYrcFile.c:445
 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"
@@ -5659,7 +5663,7 @@ msgstr ""
 "servidor não puder enviar uma resposta que seja aceitável de acordo com\n"
 "o cabeçalho solicitado, então você poderá receber uma mensagem de erro.\n"
 
-#: src/LYrcFile.c:460
+#: src/LYrcFile.c:461
 msgid ""
 "preferred_language specifies the language in MIME notation (e.g., en,\n"
 "fr, may be a comma-separated list in decreasing preference)\n"
@@ -5673,7 +5677,7 @@ msgstr ""
 "disponível, o servidor irá envia-lo a você. Do contrário, enviará o\n"
 "documento padrão.\n"
 
-#: src/LYrcFile.c:471
+#: src/LYrcFile.c:472
 msgid ""
 "If run_all_execution_links is set \"on\" then all local execution links\n"
 "will be executed when they are selected.\n"
@@ -5696,7 +5700,7 @@ msgstr ""
 "          como \"on\" se você tiver certeza das informações que estarão sendo \n"
 "          executadas ou gravadas em seu equipamento. \n"
 
-#: src/LYrcFile.c:482
+#: src/LYrcFile.c:483
 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"
@@ -5724,7 +5728,7 @@ msgstr ""
 "          como \"on\" se você tiver certeza das informações que estarão sendo \n"
 "          executadas ou gravadas em sei equipament.\n"
 
-#: src/LYrcFile.c:500
+#: src/LYrcFile.c:501
 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"
@@ -5740,7 +5744,7 @@ msgstr ""
 "e \"off\" forçará o uso de caixas de rádio. O valor pode ser alterado na\n"
 "linha de comando com -popup.\n"
 
-#: src/LYrcFile.c:510
+#: src/LYrcFile.c:511
 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"
@@ -5771,7 +5775,7 @@ msgstr ""
 "use o menu de opções. Se estiver salvo \"on\" ou \"off\" estes serão tratados\n"
 "como \"default\".\n"
 
-#: src/LYrcFile.c:527
+#: src/LYrcFile.c:528
 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"
@@ -5791,7 +5795,7 @@ msgstr ""
 "Um valor de \"on\" ira posiciona-lo no lado esquerdo e \"off\" irá oculta-lo\n"
 "O valor padrão pode ser sobreescrito via linha de comando -show_cursor.\n"
 
-#: src/LYrcFile.c:538
+#: src/LYrcFile.c:539
 msgid ""
 "show_dotfiles specifies that the directory listing should include\n"
 "\"hidden\" (dot) files/directories.  If set \"on\", this will be\n"
@@ -5805,7 +5809,7 @@ msgstr ""
 "Se a apresentação de arquivos ocultos estiver \"off\", a criação dos \n"
 "mesmos pelo lynx estará desabilitada.\n"
 
-#: src/LYrcFile.c:549
+#: src/LYrcFile.c:550
 msgid ""
 "If sub_bookmarks is not turned \"off\", and multiple bookmarks have\n"
 "been defined (see below), then all bookmark operations will first\n"
@@ -5827,7 +5831,7 @@ msgstr ""
 "esta opção estiver como \"standart\", o menu será apresentado respeitando o\n"
 "modo do usuário.\n"
 
-#: src/LYrcFile.c:563
+#: src/LYrcFile.c:564
 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"
@@ -5843,7 +5847,7 @@ msgstr ""
 "Use \"ADVANCED\" para ver a URL da ligação marcada atualmente na base\n"
 "da tela.\n"
 
-#: src/LYrcFile.c:572
+#: src/LYrcFile.c:573
 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"
@@ -5853,7 +5857,7 @@ msgstr ""
 "no local como [INLINE], [LINK], ou [IMAGE]\n"
 "Veja mais sobre em lynx.cfg\n"
 
-#: src/LYrcFile.c:577
+#: src/LYrcFile.c:578
 msgid ""
 "If vi_keys is set to \"on\", then the normal VI movement keys:\n"
 "  j = down    k = up\n"
@@ -5869,13 +5873,13 @@ msgstr ""
 "As letras 'H', 'J' e 'K continuam ativando a ajuda,pular atalhos e mostrar\n"
 "o mapa de caracteres.\n"
 
-#: src/LYrcFile.c:585
+#: src/LYrcFile.c:586
 msgid ""
 "The visited_links setting controls how Lynx organizes the information\n"
 "in the Visited Links Page.\n"
 msgstr ""
 
-#: src/LYrcFile.c:803
+#: src/LYrcFile.c:804
 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"
@@ -5893,7 +5897,7 @@ msgstr ""
 "e os números do teclado responderão da mesma forma, desde que o \n"
 "numlock estiver ligado.\n"
 
-#: src/LYrcFile.c:812
+#: src/LYrcFile.c:813
 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"
@@ -5901,7 +5905,7 @@ msgstr ""
 "Se keypad_mode estiver com \"LINKS_ARE_NUMBERED\", então números\n"
 "irão aparecer ao lado das ligações e serão usados para ativá-las.\n"
 
-#: src/LYrcFile.c:816
+#: src/LYrcFile.c:817
 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"
@@ -5919,7 +5923,7 @@ msgstr ""
 "que a opção não esteja visível. Listas de referências e saídas do comando\n"
 "de lista serão numeradas também.\n"
 
-#: src/LYrcFile.c:825
+#: src/LYrcFile.c:826
 msgid ""
 "NOTE: Some fixed format documents may look disfigured when\n"
 "\"LINKS_ARE_NUMBERED\" or \"LINKS_AND_FORM_FIELDS_ARE_NUMBERED\" are\n"
@@ -5929,7 +5933,7 @@ msgstr ""
 "\"LINKS_ARE_NUMBERED\" ou \"LINKS_AND_FORM_FIELDS_ARE_NUMBERED\" estiverem\n"
 "habilitados.\n"
 
-#: src/LYrcFile.c:857
+#: src/LYrcFile.c:858
 msgid ""
 "Lynx User Defaults File\n"
 "\n"
diff --git a/po/ru.po b/po/ru.po
index 1870226d..6396b384 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lynx 2.8.5pre15\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-10-10 18:51-0400\n"
+"POT-Creation-Date: 2004-10-17 16:29-0400\n"
 "PO-Revision-Date: 2003-06-03 17:40+0400\n"
 "Last-Translator: Dmitry S. Sivachenko <mitya@cavia.pp.ru>\n"
 "Language-Team: Russian <ru@li.org>\n"
@@ -2791,7 +2791,7 @@ msgstr "äÏËÕÍÅÎÔ Ó ÓÏÄÅÒÖÉÍÙÍ POST ÎÅ ÎÁÊÄÅÎ × ËÜÛÅ.  ðÏÓÌÁÔØ ÓÎÏ×Á?"
 msgid "Loading failed, use a previous copy."
 msgstr ""
 
-#: WWW/Library/Implementation/HTAccess.c:1045 src/GridText.c:8301
+#: WWW/Library/Implementation/HTAccess.c:1045 src/GridText.c:8296
 msgid "Loading incomplete."
 msgstr "úÁÇÒÕÚËÁ ÚÁ×ÅÒÛÅÎÁ ÎÅ ÐÏÌÎÏÓÔØÀ."
 
@@ -2860,7 +2860,7 @@ msgstr "ðÅÒÅÄÁÎÏ %d ÂÁÊÔ (%5d)"
 msgid "connect for data"
 msgstr "ÓÏÅÄÉÎÅÎÉÅ ÄÌÑ ÄÁÎÎÙÈ"
 
-#: WWW/Library/Implementation/HTFTP.c:3738
+#: WWW/Library/Implementation/HTFTP.c:3741
 msgid "Receiving FTP file."
 msgstr "ðÏÌÕÞÅÎÉÅ FTP-ÆÁÊÌÁ."
 
@@ -3019,7 +3019,7 @@ msgstr "îÅ×ÅÒÎÙÊ ÐÏÒÔ Õ ÁÄÒÅÓÁ"
 msgid "Address length looks invalid"
 msgstr "äÌÉÎÁ ÁÄÒÅÓÁ ×ÙÇÌÑÄÉÔ ÎÅ×ÅÒÎÏÊ"
 
-#: WWW/Library/Implementation/HTTCP.c:1551 WWW/Library/Implementation/HTTCP.c:1569
+#: WWW/Library/Implementation/HTTCP.c:1552 WWW/Library/Implementation/HTTCP.c:1570
 #, c-format
 msgid "Unable to locate remote host %s."
 msgstr "îÅ ÕÄÁÅÔÓÑ ÏÂÎÁÒÕÖÉÔØ ÕÄÁÌÅÎÎÕÀ ÍÁÛÉÎÕ %s."
@@ -3028,38 +3028,38 @@ msgstr "îÅ ÕÄÁÅÔÓÑ ÏÂÎÁÒÕÖÉÔØ ÕÄÁÌÅÎÎÕÀ ÍÁÛÉÎÕ %s."
 #. * but not HTAlert, because typically there will be other
 #. * alerts from the callers.  - kw
 #.
-#: WWW/Library/Implementation/HTTCP.c:1566 WWW/Library/Implementation/HTTelnet.c:108
+#: WWW/Library/Implementation/HTTCP.c:1567 WWW/Library/Implementation/HTTelnet.c:108
 #, c-format
 msgid "Invalid hostname %s"
 msgstr "îÅÐÒÁ×ÉÌØÎÏÅ ÉÍÑ ÍÁÛÉÎÙ %s"
 
-#: WWW/Library/Implementation/HTTCP.c:1580
+#: WWW/Library/Implementation/HTTCP.c:1581
 #, c-format
 msgid "Making %s connection to %s"
 msgstr "õÓÔÁÎÁ×ÌÉ×ÁÅÔÓÑ %s ÓÏÅÄÉÎÅÎÉÅ Ó %s"
 
-#: WWW/Library/Implementation/HTTCP.c:1591
+#: WWW/Library/Implementation/HTTCP.c:1592
 msgid "socket failed."
 msgstr "ÏÛÉÂËÁ ÓÏËÅÔÁ."
 
-#: WWW/Library/Implementation/HTTCP.c:1604
+#: WWW/Library/Implementation/HTTCP.c:1605
 #, c-format
 msgid "socket failed: family %d addr %s port %s."
 msgstr "ÏÛÉÂËÁ ÓÏËÅÔÁ: ÓÅÍÅÊÓÔ×Ï %d ÁÄÒÅÓ %s ÐÏÒÔ %s."
 
-#: WWW/Library/Implementation/HTTCP.c:1628
+#: WWW/Library/Implementation/HTTCP.c:1629
 msgid "Could not make connection non-blocking."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1697
+#: WWW/Library/Implementation/HTTCP.c:1698
 msgid "Connection failed (too many retries)."
 msgstr "îÅ ÕÄÁÅÔÓÑ ÕÓÔÁÎÏ×ÉÔØ ÓÏÅÄÉÎÅÎÉÅ (ÓÌÉÛËÏÍ ÍÎÏÇÏ ÐÏÐÙÔÏË)."
 
-#: WWW/Library/Implementation/HTTCP.c:1896
+#: WWW/Library/Implementation/HTTCP.c:1897
 msgid "Could not restore socket to blocking."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1962
+#: WWW/Library/Implementation/HTTCP.c:1963
 msgid "Socket read failed for 180,000 tries."
 msgstr "ïÛÉÂËÁ ÐÒÉ ÞÔÅÎÉÉ ÓÏËÅÔÁ × ÔÅÞÅÎÉÅ 180,000 ÐÏÐÙÔÏË."
 
@@ -3068,45 +3068,45 @@ msgstr "ïÛÉÂËÁ ÐÒÉ ÞÔÅÎÉÉ ÓÏËÅÔÁ × ÔÅÞÅÎÉÅ 180,000 ÐÏÐÙÔÏË."
 msgid "Address contains a username: %s"
 msgstr "áÄÒÅÓ ÓÏÄÅÒÖÉÔ ÉÍÑ ÐÏÌØÚÏ×ÁÔÅÌÑ: %s"
 
-#: WWW/Library/Implementation/HTTP.c:497
+#: WWW/Library/Implementation/HTTP.c:531
 msgid "This client does not contain support for HTTPS URLs."
 msgstr "üÔÏÔ ËÌÉÅÎÔ ÎÅ ÓÏÄÅÒÖÉÔ ÐÏÄÄÅÒÖËÉ ÄÌÑ URL HTTPS."
 
-#: WWW/Library/Implementation/HTTP.c:522
+#: WWW/Library/Implementation/HTTP.c:556
 msgid "Unable to connect to remote host."
 msgstr "îÅ ÕÄÁÅÔÓÑ ÕÓÔÁÎÏ×ÉÔØ ÓÏÅÄÉÎÅÎÉÅ Ó ÕÄÁÌÅÎÎÏÊ ÍÁÛÉÎÏÊ."
 
-#: WWW/Library/Implementation/HTTP.c:544
+#: WWW/Library/Implementation/HTTP.c:578
 msgid "Retrying connection without TLS."
 msgstr "ðÏÐÙÔËÁ ÕÓÔÁÎÏ×ÉÔØ ÓÏÅÄÉÎÅÎÉÅ ÂÅÚ TLS."
 
-#: WWW/Library/Implementation/HTTP.c:587
+#: WWW/Library/Implementation/HTTP.c:621
 msgid "SSL error:Can't find common name in certificate-Continue?"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:604
+#: WWW/Library/Implementation/HTTP.c:638
 #, c-format
 msgid "SSL error:host(%s)!=cert(%s)-Continue?"
 msgstr "ïÛÉÂËÁ SSL:host(%s)!=cert(%s)-ðÒÏÄÏÌÖÉÔØ?"
 
-#: WWW/Library/Implementation/HTTP.c:616
+#: WWW/Library/Implementation/HTTP.c:650
 #, c-format
 msgid "Secure %d-bit %s (%s) HTTP connection"
 msgstr "âÅÚÏÐÁÓÎÏÅ HTTP-ÓÏÅÄÉÎÅÎÉÅ: %d ÂÉÔ %s (%s)"
 
-#: WWW/Library/Implementation/HTTP.c:1086
+#: WWW/Library/Implementation/HTTP.c:1120
 msgid "Sending HTTP request."
 msgstr "ðÏÓÙÌËÁ HTTP-ÚÁÐÒÏÓÁ."
 
-#: WWW/Library/Implementation/HTTP.c:1125
+#: WWW/Library/Implementation/HTTP.c:1159
 msgid "Unexpected network write error; connection aborted."
 msgstr "îÅÏÖÉÄÁÎÎÁÑ ÏÛÉÂËÁ ÚÁÐÉÓÉ ÐÏ ÓÅÔÉ; ÓÏÅÄÉÎÅÎÉÅ ÐÒÅÒ×ÁÎÏ."
 
-#: WWW/Library/Implementation/HTTP.c:1131
+#: WWW/Library/Implementation/HTTP.c:1165
 msgid "HTTP request sent; waiting for response."
 msgstr "HTTP-ÚÁÐÒÏÓ ÐÏÓÌÁÎ; ÏÖÉÄÁÅÔÓÑ ÏÔ×ÅÔ."
 
-#: WWW/Library/Implementation/HTTP.c:1199
+#: WWW/Library/Implementation/HTTP.c:1233
 msgid "Unexpected network read error; connection aborted."
 msgstr "îÅÏÖÉÄÁÎÎÁÑ ÏÛÉÂËÁ ÞÔÅÎÉÑ ÐÏ ÓÅÔÉ; ÓÏÅÄÉÎÅÎÉÅ ÐÒÅÒ×ÁÎÏ."
 
@@ -3119,7 +3119,7 @@ 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:1393
+#: WWW/Library/Implementation/HTTP.c:1427
 msgid "Got unexpected Informational Status."
 msgstr "ðÏÌÕÞÅÎ ÎÅÏÖÉÄÁÎÎÙÊ éÎÆÏÒÍÁÃÉÏÎÎÙÊ óÔÁÔÕÓ."
 
@@ -3129,7 +3129,7 @@ msgstr "ðÏÌÕÞÅÎ ÎÅÏÖÉÄÁÎÎÙÊ éÎÆÏÒÍÁÃÉÏÎÎÙÊ óÔÁÔÕÓ."
 #. * content.  We'll instruct the user to do that, and
 #. * restore the current document.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1427
+#: WWW/Library/Implementation/HTTP.c:1461
 msgid "Request fulfilled.  Reset Content."
 msgstr "úÁÐÒÏÓ ×ÙÐÏÌÎÅÎ.  ïÂÎÏ×ÌÅÎÉÅ óÏÄÅÒÖÉÍÏÇÏ."
 
@@ -3139,27 +3139,27 @@ 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:1544
+#: WWW/Library/Implementation/HTTP.c:1578
 msgid "Got unexpected 304 Not Modified status."
 msgstr "ðÏÌÕÞÅÎ ÎÅÏÖÉÄÁÎÎÙÊ ÓÔÁÔÕÓ 304 (îÅ íÏÄÉÆÉÃÉÒÏ×ÁÎÏ)."
 
-#: WWW/Library/Implementation/HTTP.c:1607
+#: WWW/Library/Implementation/HTTP.c:1641
 msgid "Redirection of POST content requires user approval."
 msgstr "ðÅÒÅÎÁÐÒÁ×ÌÅÎÉÅ ÓÏÄÅÒÖÉÍÏÇÏ POST ÔÒÅÂÕÅÔ ÐÏÄÔ×ÅÒÖÄÅÎÉÑ ÐÏÌØÚÏ×ÁÔÅÌÑ."
 
-#: WWW/Library/Implementation/HTTP.c:1622
+#: WWW/Library/Implementation/HTTP.c:1656
 msgid "Have POST content.  Treating Permanent Redirection as Temporary.\n"
 msgstr "éÍÅÅÔÓÑ ÓÏÄÅÒÖÉÍÏÅ POST. ôÒÁËÔÏ×ËÁ ðÏÓÔÏÑÎÎÏÇÏ ðÅÒÅÎÁÐÒÁ×ÌÅÎÉÑ ËÁË ÷ÒÅÍÅÎÎÏÇÏ.\n"
 
-#: WWW/Library/Implementation/HTTP.c:1664
+#: WWW/Library/Implementation/HTTP.c:1698
 msgid "Retrying with access authorization information."
 msgstr "ðÏ×ÔÏÒÅÎÉÅ Ó ÉÎÆÏÒÍÁÃÉÅÊ Ï ÐÒÁ×ÁÈ ÄÏÓÔÕÐÁ."
 
-#: WWW/Library/Implementation/HTTP.c:1676
+#: WWW/Library/Implementation/HTTP.c:1710
 msgid "Show the 401 message body?"
 msgstr "ðÏËÁÚÙ×ÁÔØ ÔÅÌÏ ÓÏÏÂÝÅÎÉÑ 401?"
 
-#: WWW/Library/Implementation/HTTP.c:1719
+#: WWW/Library/Implementation/HTTP.c:1753
 msgid "Show the 407 message body?"
 msgstr "ðÏËÁÚÙ×ÁÔØ ÔÅÌÏ ÓÏÏÂÝÅÎÉÑ 407?"
 
@@ -3167,7 +3167,7 @@ msgstr "ðÏËÁÚÙ×ÁÔØ ÔÅÌÏ ÓÏÏÂÝÅÎÉÑ 407?"
 #. * Bad or unknown server_status number.  Take a chance and hope
 #. * there is something to display.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1819
+#: WWW/Library/Implementation/HTTP.c:1853
 msgid "Unknown status reply from server!"
 msgstr "îÅÉÚ×ÅÓÔÎÙÊ ÓÔÁÔÕÓ ÏÔ×ÅÔÁ ÏÔ ÓÅÒ×ÅÒÁ!"
 
@@ -3431,30 +3431,30 @@ msgstr "ÐÏÌÅ keygen"
 msgid "unknown form field"
 msgstr "ÎÅÉÚ×ÅÓÔÎÏÅ ÐÏÌÅ ÆÏÒÍÙ"
 
-#: src/GridText.c:10020
+#: src/GridText.c:10015
 msgid "Can't open file for uploading"
 msgstr "îÅ ÕÄÁÅÔÓÑ ÏÔËÒÙÔØ ÆÁÊÌ ÄÌÑ ÚÁÇÒÕÚËÉ!"
 
-#: src/GridText.c:11170
+#: src/GridText.c:11165
 #, c-format
 msgid "Submitting %s"
 msgstr "ðÏÓÙÌËÁ %s"
 
 #. ugliness has happened; inform user and do the best we can
-#: src/GridText.c:12318
+#: src/GridText.c:12313
 msgid "Hang Detect: TextAnchor struct corrupted - suggest aborting!"
 msgstr ""
 
 #. don't show previous state
-#: src/GridText.c:12523
+#: src/GridText.c:12518
 msgid "Wrap lines to fit displayed area?"
 msgstr "ðÅÒÅÎÅÓÔÉ ÓÔÒÏËÉ, ÞÔÏÂÙ ÐÏÐÁÓÔØ × ÏÂÌÁÓÔØ ÏÔÏÂÒÁÖÅÎÉÑ?"
 
-#: src/GridText.c:12575
+#: src/GridText.c:12570
 msgid "Very long lines have been wrapped!"
 msgstr "ïÞÅÎØ ÄÌÉÎÎÙÅ ÓÔÒÏËÉ ÂÙÌÉ ÐÅÒÅÎÅÓÅÎÙ!"
 
-#: src/GridText.c:13016
+#: src/GridText.c:13011
 msgid "Very long lines have been truncated!"
 msgstr "ïÞÅÎØ ÄÌÉÎÎÙÅ ÓÔÒÏËÉ ÂÙÌÉ ÕÓÅÞÅÎÙ!"
 
@@ -4691,117 +4691,121 @@ msgstr "ðÒÉÎÑÔØ ÉÚÍÅÎÅÎÉÑ"
 msgid "gzip"
 msgstr ""
 
-#: src/LYOptions.c:2388
+#: src/LYOptions.c:2386
+msgid "deflate"
+msgstr ""
+
+#: src/LYOptions.c:2389
 msgid "compress"
 msgstr ""
 
-#: src/LYOptions.c:2391
+#: src/LYOptions.c:2392
 msgid "bzip2"
 msgstr ""
 
-#: src/LYOptions.c:2393
+#: src/LYOptions.c:2394
 msgid "All"
 msgstr ""
 
-#: src/LYOptions.c:2658 src/LYOptions.c:2682
+#: src/LYOptions.c:2659 src/LYOptions.c:2683
 #, c-format
 msgid "Use %s to invoke the Options menu!"
 msgstr "éÓÐÏÌØÚÕÊÔÅ %s ÄÌÑ ×ÙÚÏ×Á ÍÅÎÀ ðÁÒÁÍÅÔÒÏ×!"
 
-#: src/LYOptions.c:3421
+#: src/LYOptions.c:3422
 msgid "(options marked with (!) will not be saved)"
 msgstr "(ÐÁÒÁÍÅÔÒÙ, ÏÔÍÅÞÅÎÎÙÅ (!) ÓÏÈÒÁÎÅÎÙ ÎÅ ÂÕÄÕÔ)"
 
-#: src/LYOptions.c:3429
+#: src/LYOptions.c:3430
 msgid "General Preferences"
 msgstr "ïÂÝÉÅ ðÒÅÄÐÏÞÔÅÎÉÑ"
 
 #. ***************************************************************
 #. User Mode: SELECT
-#: src/LYOptions.c:3433
+#: src/LYOptions.c:3434
 msgid "User mode"
 msgstr "òÅÖÉÍ ÐÏÌØÚÏ×ÁÔÅÌÑ"
 
 #. Editor: INPUT
-#: src/LYOptions.c:3439
+#: src/LYOptions.c:3440
 msgid "Editor"
 msgstr "òÅÄÁËÔÏÒ"
 
 #. Search Type: SELECT
-#: src/LYOptions.c:3444
+#: src/LYOptions.c:3445
 msgid "Type of Search"
 msgstr "ôÉÐ ÐÏÉÓËÁ"
 
-#: src/LYOptions.c:3449
+#: src/LYOptions.c:3450
 msgid "Security and Privacy"
 msgstr ""
 
 #. ***************************************************************
 #. Cookies: SELECT
-#: src/LYOptions.c:3453
+#: src/LYOptions.c:3454
 msgid "Cookies"
 msgstr "Cookie"
 
 #. Cookie Prompting: SELECT
-#: src/LYOptions.c:3467
+#: src/LYOptions.c:3468
 msgid "Invalid-Cookie Prompting"
 msgstr ""
 
 #. SSL Prompting: SELECT
-#: src/LYOptions.c:3474
+#: src/LYOptions.c:3475
 msgid "SSL Prompting"
 msgstr ""
 
-#: src/LYOptions.c:3480
+#: src/LYOptions.c:3481
 msgid "Keyboard Input"
 msgstr "÷×ÏÄ Ó ËÌÁ×ÉÁÔÕÒÙ"
 
 #. ***************************************************************
 #. Keypad Mode: SELECT
-#: src/LYOptions.c:3484
+#: src/LYOptions.c:3485
 msgid "Keypad mode"
 msgstr "òÅÖÉÍ ÄÏÐÏÌÎÉÔÅÌØÎÏÊ ËÌÁ×ÉÁÔÕÒÙ"
 
 #. Emacs keys: ON/OFF
-#: src/LYOptions.c:3490
+#: src/LYOptions.c:3491
 msgid "Emacs keys"
 msgstr "ëÌÁ×ÉÛÉ Emacs"
 
 #. VI Keys: ON/OFF
-#: src/LYOptions.c:3496
+#: src/LYOptions.c:3497
 msgid "VI keys"
 msgstr "ëÌÁ×ÉÛÉ VI"
 
 #. Line edit style: SELECT
 #. well, at least 2 line edit styles available
-#: src/LYOptions.c:3503
+#: src/LYOptions.c:3504
 msgid "Line edit style"
 msgstr "óÔÉÌØ ÒÅÄÁËÔÉÒÏ×ÁÎÉÑ ÓÔÒÏË"
 
 #. Keyboard layout: SELECT
-#: src/LYOptions.c:3515
+#: src/LYOptions.c:3516
 msgid "Keyboard layout"
 msgstr "òÁÓËÌÁÄËÁ ËÌÁ×ÉÁÔÕÒÙ"
 
 #.
 #. * Display and Character Set
 #.
-#: src/LYOptions.c:3529
+#: src/LYOptions.c:3530
 msgid "Display and Character Set"
 msgstr "ïÔÏÂÒÁÖÅÎÉÅ É îÁÂÏÒ óÉÍ×ÏÌÏ×"
 
 #. Use locale-based character set: ON/OFF
-#: src/LYOptions.c:3534
+#: src/LYOptions.c:3535
 #, fuzzy
 msgid "Use locale-based character set"
 msgstr "ðÏÄÒÁÚÕÍÅ×ÁÅÍÁÑ ËÏÄÉÒÏ×ËÁ ÄÏËÕÍÅÎÔÁ"
 
 #. Display Character Set: SELECT
-#: src/LYOptions.c:3543
+#: src/LYOptions.c:3544
 msgid "Display character set"
 msgstr "ëÏÄÉÒÏ×ËÁ ÏÔÏÂÒÁÖÅÎÉÑ"
 
-#: src/LYOptions.c:3574
+#: src/LYOptions.c:3575
 msgid "Assumed document character set"
 msgstr "ðÏÄÒÁÚÕÍÅ×ÁÅÍÁÑ ËÏÄÉÒÏ×ËÁ ÄÏËÕÍÅÎÔÁ"
 
@@ -4810,167 +4814,167 @@ msgstr "ðÏÄÒÁÚÕÍÅ×ÁÅÍÁÑ ËÏÄÉÒÏ×ËÁ ÄÏËÕÍÅÎÔÁ"
 #. * we split the header to make it more readable:
 #. * "CJK mode" for CJK display charsets, and "Raw 8-bit" for others.
 #.
-#: src/LYOptions.c:3594
+#: src/LYOptions.c:3595
 msgid "CJK mode"
 msgstr "òÅÖÉÍ CJK"
 
-#: src/LYOptions.c:3596
+#: src/LYOptions.c:3597
 msgid "Raw 8-bit"
 msgstr "îÅÏÂÒÁÂÏÔÁÎÎÙÊ 8-ÂÉÔÎÙÊ ÒÅÖÉÍ"
 
 #. X Display: INPUT
-#: src/LYOptions.c:3604
+#: src/LYOptions.c:3605
 msgid "X Display"
 msgstr "üËÒÁÎ X"
 
 #.
 #. * Document Appearance
 #.
-#: src/LYOptions.c:3610
+#: src/LYOptions.c:3611
 msgid "Document Appearance"
 msgstr "÷ÎÅÛÎÉÊ ×ÉÄ ÄÏËÕÍÅÎÔÁ"
 
-#: src/LYOptions.c:3616
+#: src/LYOptions.c:3617
 msgid "Show color"
 msgstr "ðÏËÁÚÙ×ÁÔØ Ã×ÅÔ"
 
 #. Show cursor: ON/OFF
-#: src/LYOptions.c:3640
+#: src/LYOptions.c:3641
 msgid "Show cursor"
 msgstr "ðÏËÁÚÙ×ÁÔØ ËÕÒÓÏÒ"
 
 #. Underline links: ON/OFF
-#: src/LYOptions.c:3646
+#: src/LYOptions.c:3647
 #, fuzzy
 msgid "Underline links"
 msgstr "óËÒÙÔÙÈ ÓÓÙÌÏË:"
 
 #. Show scrollbar: ON/OFF
-#: src/LYOptions.c:3653
+#: src/LYOptions.c:3654
 msgid "Show scrollbar"
 msgstr "ðÏËÁÚÙ×ÁÔØ ÐÏÌÏÓÕ ÐÒÏËÒÕÔËÉ"
 
 #. Select Popups: ON/OFF
-#: src/LYOptions.c:3660
+#: src/LYOptions.c:3661
 msgid "Popups for select fields"
 msgstr "÷ÓÐÌÙ×ÁÀÝÉÅ ÍÅÎÀ ÄÌÑ ×ÙÂÒÁÎÎÙÈ ÐÏÌÅÊ"
 
 #. HTML error recovery: SELECT
-#: src/LYOptions.c:3666
+#: src/LYOptions.c:3667
 msgid "HTML error recovery"
 msgstr "÷ÏÓÓÔÁÎÏ×ÌÅÎÉÅ ÏÔ ÏÛÉÂÏË × HTML"
 
 #. Show Images: SELECT
-#: src/LYOptions.c:3672
+#: src/LYOptions.c:3673
 msgid "Show images"
 msgstr "ðÏËÁÚÁÔØ ÉÚÏÂÒÁÖÅÎÉÑ"
 
 #. Verbose Images: ON/OFF
-#: src/LYOptions.c:3686
+#: src/LYOptions.c:3687
 msgid "Verbose images"
 msgstr "úÁÍÅÎÑÔØ ÉÚÏÂÒÁÖÅÎÉÑ ÎÁ ÁÄÒÅÓÁ"
 
-#: src/LYOptions.c:3695
+#: src/LYOptions.c:3696
 msgid "Headers Transferred to Remote Servers"
 msgstr "úÁÇÏÌÏ×ËÉ, ÐÅÒÅÄÁÎÎÙÅ ÎÁ ÕÄÁÌÅÎÎÙÅ ÓÅÒ×ÅÒÙ"
 
 #. ***************************************************************
 #. Mail Address: INPUT
-#: src/LYOptions.c:3699
+#: src/LYOptions.c:3700
 msgid "Personal mail address"
 msgstr "ðÅÒÓÏÎÁÌØÎÙÊ ÐÏÞÔÏ×ÙÊ ÁÄÒÅÓ"
 
 #. Preferred media type: SELECT
-#: src/LYOptions.c:3704
+#: src/LYOptions.c:3705
 #, fuzzy
 msgid "Preferred media type"
 msgstr "ðÅÒÅÄÁÎÏ %d ÂÁÊÔ"
 
 #. Preferred encoding: SELECT
-#: src/LYOptions.c:3710
+#: src/LYOptions.c:3711
 #, fuzzy
 msgid "Preferred encoding"
 msgstr "ðÒÅÄÐÏÞÉÔÁÅÍÙÊ ÑÚÙË ÄÏËÕÍÅÎÔÁ"
 
 #. Preferred Document Character Set: INPUT
-#: src/LYOptions.c:3716
+#: src/LYOptions.c:3717
 msgid "Preferred document character set"
 msgstr "ðÒÅÄÐÏÞÉÔÁÅÍÁÑ ËÏÄÉÒÏ×ËÁ ÄÏËÕÍÅÎÔÁ"
 
 #. Preferred Document Language: INPUT
-#: src/LYOptions.c:3721
+#: src/LYOptions.c:3722
 msgid "Preferred document language"
 msgstr "ðÒÅÄÐÏÞÉÔÁÅÍÙÊ ÑÚÙË ÄÏËÕÍÅÎÔÁ"
 
-#: src/LYOptions.c:3727
+#: src/LYOptions.c:3728
 msgid "User-Agent header"
 msgstr "úÁÇÏÌÏ×ÏË User-Agent"
 
 #.
 #. * Listing and Accessing Files
 #.
-#: src/LYOptions.c:3735
+#: src/LYOptions.c:3736
 msgid "Listing and Accessing Files"
 msgstr "÷Ù×ÏÄ ÓÐÉÓËÁ ÆÁÊÌÏ× É ÄÏÓÔÕÐ Ë ÎÉÍ"
 
 #. ***************************************************************
 #. FTP sort: SELECT
-#: src/LYOptions.c:3739
+#: src/LYOptions.c:3740
 msgid "FTP sort criteria"
 msgstr "ëÒÉÔÅÒÉÊ ÓÏÒÔÉÒÏ×ËÉ FTP"
 
 #. Local Directory Sort: SELECT
-#: src/LYOptions.c:3746
+#: src/LYOptions.c:3747
 msgid "Local directory sort criteria"
 msgstr "ëÒÉÔÅÒÉÊ ÓÏÒÔÉÒÏ×ËÉ ÌÏËÁÌØÎÏÇÏ ËÁÔÁÌÏÇÁ"
 
 #. Local Directory Order: SELECT
-#: src/LYOptions.c:3752
+#: src/LYOptions.c:3753
 msgid "Local directory sort order"
 msgstr "ëÒÉÔÅÒÉÊ ÓÏÒÔÉÒÏ×ËÉ ÌÏËÁÌØÎÏÇÏ ËÁÔÁÌÏÇÁ"
 
-#: src/LYOptions.c:3761
+#: src/LYOptions.c:3762
 msgid "Show dot files"
 msgstr "ðÏËÁÚÙ×ÁÔØ dot-ÆÁÊÌÙ"
 
-#: src/LYOptions.c:3769
+#: src/LYOptions.c:3770
 msgid "Execution links"
 msgstr "÷ÙÐÏÌÎÅÎÉÅ ÓÓÙÌÏË"
 
 #. Show transfer rate: SELECT
-#: src/LYOptions.c:3789
+#: src/LYOptions.c:3790
 msgid "Show transfer rate"
 msgstr "ðÏËÁÚÙ×ÁÔØ ÓËÏÒÏÓÔØ ÐÅÒÅÄÁÞÉ"
 
 #.
 #. * Special Files and Screens
 #.
-#: src/LYOptions.c:3809
+#: src/LYOptions.c:3810
 msgid "Special Files and Screens"
 msgstr "óÐÅÃÉÁÌØÎÙÅ ÆÁÊÌÙ É ÜËÒÁÎÙ"
 
-#: src/LYOptions.c:3814
+#: src/LYOptions.c:3815
 msgid "Multi-bookmarks"
 msgstr "íÎÏÖÅÓÔ×ÅÎÎÙÅ ÚÁËÌÁÄËÉ"
 
-#: src/LYOptions.c:3822
+#: src/LYOptions.c:3823
 msgid "Review/edit Bookmarks files"
 msgstr "ðÒÏÓÍÏÔÒÅÔØ/ÏÔÒÅÄÁËÔÉÒÏ×ÁÔØ ÆÁÊÌÁ ÚÁËÌÁÄÏË"
 
-#: src/LYOptions.c:3824
+#: src/LYOptions.c:3825
 msgid "Goto multi-bookmark menu"
 msgstr "ðÅÒÅÈÏÄ Ë ÍÅÎÀ ÍÎÏÖÅÓÔ×ÅÎÎÙÈ ÚÁËÌÁÄÏË"
 
-#: src/LYOptions.c:3826
+#: src/LYOptions.c:3827
 msgid "Bookmarks file"
 msgstr "æÁÊÌ ÚÁËÌÁÄÏË"
 
 #. Visited Pages: SELECT
-#: src/LYOptions.c:3832
+#: src/LYOptions.c:3833
 msgid "Visited Pages"
 msgstr "ðÏÓÅÝÅÎÎÙÅ ÓÔÒÁÎÉÃÙ"
 
-#: src/LYOptions.c:3837
+#: src/LYOptions.c:3838
 msgid "View the file "
 msgstr "ðÒÏÓÍÏÔÒÅÔØ ÆÁÊÌ"
 
@@ -5090,38 +5094,38 @@ msgstr "Lynx: ÏÛÉÂËÁ ÓÔÁÒÔÁ, ÆÁÊÌ Ó ÐÒÁ×ÉÌÁÍÉ CERN %s ÎÅ ÄÏÓÔÕÐÅÎ\n"
 msgid "(no name)"
 msgstr "(ÎÅÔ ÉÍÅÎÉ)"
 
-#: src/LYReadCFG.c:1772
+#: src/LYReadCFG.c:1773
 #, c-format
 msgid "More than %d nested lynx.cfg includes -- perhaps there is a loop?!?\n"
 msgstr "âÏÌØÛÅ ÞÅÍ %d ×ÌÏÖÅÎÎÙÈ ×ËÌÀÞÅÎÉÊ lynx.cfg -- ×ÏÚÍÏÖÎÏ ÃÉËÌ?!?\n"
 
-#: src/LYReadCFG.c:1774
+#: src/LYReadCFG.c:1775
 #, c-format
 msgid "Last attempted include was '%s',\n"
 msgstr "ðÏÓÌÅÄÎÑÑ ÐÏÐÙÔËÁ ×ËÌÀÞÅÎÉÑ ÂÙÌÁ '%s',\n"
 
-#: src/LYReadCFG.c:1775
+#: src/LYReadCFG.c:1776
 #, c-format
 msgid "included from '%s'.\n"
 msgstr "×ËÌÀÞÅÎÏ ÉÚ '%s'.\n"
 
-#: src/LYReadCFG.c:2181 src/LYReadCFG.c:2194 src/LYReadCFG.c:2252
+#: src/LYReadCFG.c:2183 src/LYReadCFG.c:2196 src/LYReadCFG.c:2254
 msgid "The following is read from your lynx.cfg file."
 msgstr "óÌÅÄÕÀÝÅÅ ÞÉÔÁÅÔÓÑ ÉÚ ×ÁÛÅÇÏ ÆÁÊÌÁ lynx.cfg."
 
-#: src/LYReadCFG.c:2182 src/LYReadCFG.c:2195
+#: src/LYReadCFG.c:2184 src/LYReadCFG.c:2197
 msgid "Please read the distribution"
 msgstr "ðÏÖÁÌÕÊÓÔÁ, ÐÒÏÞÉÔÁÊÔÅ ÉÓÈÏÄÎÙÊ"
 
-#: src/LYReadCFG.c:2188 src/LYReadCFG.c:2198
+#: src/LYReadCFG.c:2190 src/LYReadCFG.c:2200
 msgid "for more comments."
 msgstr "ÄÌÑ ÐÏÌÕÞÅÎÉÑ ÄÏÐÏÌÎÉÔÅÌØÎÙÈ ËÏÍÍÅÎÔÁÒÉÅ×."
 
-#: src/LYReadCFG.c:2234
+#: src/LYReadCFG.c:2236
 msgid "RELOAD THE CHANGES"
 msgstr "ïâîï÷éôø éúíåîåîéñ"
 
-#: src/LYReadCFG.c:2242
+#: src/LYReadCFG.c:2244
 msgid "Your primary configuration"
 msgstr "÷ÁÛÁ ÏÓÎÏ×ÎÁÑ ËÏÎÆÉÇÕÒÁÃÉÑ"
 
@@ -5424,7 +5428,7 @@ msgstr "äÏÍÁÛÎÉÊ ËÁÔÁÌÏÇ ÎÅ ÎÁÊÄÅÎ"
 msgid "Normally disabled.  See ENABLE_LYNXRC in lynx.cfg\n"
 msgstr "ïÂÙÞÎÏ ÏÔËÌÀÞÅÎÏ.  óÍ. ENABLE_LYNXRC × lynx.cfg\n"
 
-#: src/LYrcFile.c:317
+#: src/LYrcFile.c:318
 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"
@@ -5436,7 +5440,7 @@ msgstr ""
 "ÐÏÄÔ×ÅÒÖÄÅÎÉÅ ÄÌÑ ËÁÖÄÏÇÏ cookie.  õÓÔÁÎÏ×ÉÔÅ accept_all_cookies × \"TRUE\"\n"
 "ÞÔÏÂÙ ÐÒÉÎÉÍÁÔØ ×ÓÅ cookie.\n"
 
-#: src/LYrcFile.c:324
+#: src/LYrcFile.c:325
 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"
@@ -5446,7 +5450,7 @@ msgstr ""
 "× ËÏÔÏÒÙÊ ÐÏÌØÚÏ×ÁÔÅÌØ ÍÏÖÅÔ ÐÏÍÅÝÁÔØ ÓÓÙÌËÉ ÄÌÑ ÐÒÏÓÔÏÇÏ ÄÏÓÔÕÐÁ\n"
 "× ÂÕÄÕÝÅÍ.\n"
 
-#: src/LYrcFile.c:329
+#: src/LYrcFile.c:330
 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"
@@ -5457,7 +5461,7 @@ msgstr ""
 "ÂÕÄÅÔ ÐÒÏÉÚ×ÏÄÉÔØÓÑ Ó ÕÞÅÔÏÍ ÒÅÇÉÓÔÒÁ ÓÉÍ×ÏÌÏ×, ×ÍÅÓÔÏ ÐÏÉÓËÁ âåú ÕÞÅÔÁ\n"
 "ÒÅÇÉÓÔÒÁ.  úÎÁÞÅÎÉÅ ÐÏ ÕÍÏÌÞÁÎÉÀ ÏÂÙÞÎÏ \"off\".\n"
 
-#: src/LYrcFile.c:334
+#: src/LYrcFile.c:335
 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"
@@ -5471,7 +5475,7 @@ msgstr ""
 "ÎÁÂÏÒÕ ÉÌÉ ÉÓÐÏÌØÚÏ×ÁÔØ 7-ÂÉÔÎÙÅ ÐÒÉÂÌÉÖÅÎÉÑ ÓÉÍ×ÏÌÏ×.\n"
 "ôÅËÕÝÉÍÉ ÐÒÁ×ÉÌØÎÙÍÉ ËÏÄÉÒÏ×ËÁÍÉ Ñ×ÌÑÀÔÓÑ:\n"
 
-#: src/LYrcFile.c:341
+#: src/LYrcFile.c:342
 msgid ""
 "cookie_accept_domains and cookie_reject_domains are comma-delimited\n"
 "lists of domains from which Lynx should automatically accept or reject\n"
@@ -5485,7 +5489,7 @@ msgstr ""
 "ÐÒÉÏÒÉÔÅÔ ÉÍÅÅÔ ×ÔÏÒÏÊ ÓÐÉÓÏË (ÏÔ×ÅÒÇÁÔØ).  ðÁÒÁÍÅÔÒ accept_all_cookies\n"
 "ÚÁÍÅÝÁÅÔ ×ÓÅ ÕÓÔÁÎÏ×ËÉ, ÓÄÅÌÁÎÎÙÅ Ó ÐÏÍÏÝØÀ ÜÔÉÈ ÓÐÉÓËÏ×.\n"
 
-#: src/LYrcFile.c:349
+#: src/LYrcFile.c:350
 msgid ""
 "cookie_file specifies the file from which to read persistent cookies.\n"
 "The default is ~/.lynx_cookies.\n"
@@ -5493,7 +5497,7 @@ msgstr ""
 "cookie_file ÏÐÒÅÄÅÌÑÅÔ ÆÁÊÌ, ÉÚ ËÏÔÏÒÏÇÏ ÂÕÄÕÔ ÓÞÉÔÙ×ÁÔØÓÑ ÐÏÓÔÏÑÎÎÙÅ cookie.\n"
 "ðÏ ÕÍÏÌÞÁÎÉÀ ÉÓÐÏÌØÚÕÅÔÓÑ ~/.lynx_cookies.\n"
 
-#: src/LYrcFile.c:354
+#: src/LYrcFile.c:355
 msgid ""
 "cookie_loose_invalid_domains, cookie_strict_invalid_domains, and\n"
 "cookie_query_invalid_domains are comma-delimited lists of which domains\n"
@@ -5512,13 +5516,13 @@ msgstr ""
 "ÐÕÔÉ ÉÌÉ ÄÏÍÅÎÁ.  ðÏ ÕÍÏÌÞÁÎÉÀ ×ÓÅ ÄÏÍÅÎÙ ÚÁÐÒÁÛÉ×ÁÀÔ ÐÏÄÔ×ÅÒÖÄÅÎÉÅ Õ\n"
 "ÐÏÌØÚÏ×ÁÔÅÌÑ × ÓÌÕÞÁÅ ÎÅÐÒÁ×ÉÌØÎÏÇÏ ÚÎÁÞÅÎÉÑ ÐÕÔÉ ÉÌÉ ÄÏÍÅÎÁ.\n"
 
-#: src/LYrcFile.c:368
+#: src/LYrcFile.c:369
 msgid ""
 "dir_list_order specifies the directory list order under DIRED_SUPPORT\n"
 "(if implemented).  The default is \"ORDER_BY_NAME\"\n"
 msgstr ""
 
-#: src/LYrcFile.c:373
+#: src/LYrcFile.c:374
 msgid ""
 "dir_list_styles specifies the directory list style under DIRED_SUPPORT\n"
 "(if implemented).  The default is \"MIXED_STYLE\", which sorts both\n"
@@ -5530,7 +5534,7 @@ msgstr ""
 "ÞÔÏ ÓÏÒÔÉÒÕÅÔ ÆÁÊÌÙ É ËÁÔÁÌÏÇÉ ×ÍÅÓÔÅ.  \"FILES_FIRST\" ×Ù×ÏÄÉÔ ÓÎÁÞÁÌÁ ÆÁÊÌÙ,\n"
 "Á \"DIRECTORIES_FIRST\" ×Ù×ÏÄÉÔ ÓÎÁÞÁÌÁ ËÁÔÁÌÏÇÉ.\n"
 
-#: src/LYrcFile.c:381
+#: src/LYrcFile.c:382
 msgid ""
 "If emacs_keys is to \"on\" then the normal EMACS movement keys:\n"
 "  ^N = down    ^P = up\n"
@@ -5542,7 +5546,7 @@ msgstr ""
 "  ^N = ×ÎÉÚ    ^P = ××ÅÒÈ\n"
 "  ^B = ×ÌÅ×Ï   ^F = ×ÐÒÁ×Ï\n"
 
-#: src/LYrcFile.c:387
+#: src/LYrcFile.c:388
 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"
@@ -5555,7 +5559,7 @@ msgstr ""
 "ÓÔÒÏËÉ, Á ÐÒÉ ÐÏÓÙÌËÅ ÐÏÞÔÙ ÂÕÄÅÔ ÉÓÐÏÌØÚÏ×ÁÔØÓÑ ×ÓÔÒÏÅÎÎÙÊ\n"
 "ÓÔÒÏËÏ×ÙÊ ÒÅÄÁËÔÏÒ.\n"
 
-#: src/LYrcFile.c:393
+#: src/LYrcFile.c:394
 msgid ""
 "The file_sorting_method specifies which value to sort on when viewing\n"
 "file lists such as FTP directories.  The options are:\n"
@@ -5571,7 +5575,7 @@ msgstr ""
 "   BY_SIZE     -- ÓÏÒÔÉÒÏ×ÁÔØ ÐÏ ÒÁÚÍÅÒÕ ÆÁÊÌÁ\n"
 "   BY_DATE     -- ÓÏÒÔÉÒÏ×ÁÔØ ÐÏ ÄÁÔÅ ÐÏÓÌÅÄÎÅÊ ÍÏÄÉÆÉËÁÃÉÉ ÆÁÊÌÁ\n"
 
-#: src/LYrcFile.c:411
+#: src/LYrcFile.c:412
 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"
@@ -5597,7 +5601,7 @@ msgstr ""
 "          õÄÁÌÉÔØ ÓÌÏ×Ï: ^B    ^F       ^E    = ÷ ËÏÎÅà ÓÔÒÏËÉ\n"
 "ðÏÄÄÅÒÖÉ×ÁÅÍÙÅ ÒÅÖÉÍÙ ÒÅÄÁËÔÉÒÏ×ÁÎÉÑ ÓÔÒÏËÉ:\n"
 
-#: src/LYrcFile.c:429
+#: src/LYrcFile.c:430
 msgid ""
 "The following allow you to define sub-bookmark files and descriptions.\n"
 "The format is multi_bookmark<capital_letter>=<filename>,<description>\n"
@@ -5610,7 +5614,7 @@ msgstr ""
 "ÂÕË×).  óÌÅÄÕÅÔ ÎÁÞÉÎÁÔØ Ó \"multi_bookmarkB\", Ô.Ë. 'A' Ñ×ÌÑÅÔÓÑ ÚÎÁÞÅÎÉÅÍ\n"
 "ÐÏ ÕÍÏÌÞÁÎÉÀ (ÓÍ. ×ÙÛÅ).\n"
 
-#: src/LYrcFile.c:435
+#: src/LYrcFile.c:436
 msgid ""
 "personal_mail_address specifies your personal mail address.  The\n"
 "address will be sent during HTTP file transfers for authorization and\n"
@@ -5628,7 +5632,7 @@ msgstr ""
 "ÍÏÖÅÔÅ ÏÓÔÁ×ÉÔØ ÜÔÏ ÐÏÌÅ ÐÕÓÔÙÍ, ÎÏ × ÜÔÏÍ ÓÌÕÞÁÅ ÏÎÏ ÎÅ ÂÕÄÅÔ ×ËÌÀÞÁÔØÓÑ ×\n"
 "ÐÏÓÙÌÁÅÍÙÅ ËÏÍÍÅÎÔÁÒÉÉ.\n"
 
-#: src/LYrcFile.c:444
+#: src/LYrcFile.c:445
 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"
@@ -5655,7 +5659,7 @@ msgstr ""
 "ÔÏ ÓÅÒ×ÅÒ äïìöåî (SHOULD) ÐÏÓÌÁÔØ ÏÔ×ÅÔ, ÕËÁÚÙ×ÁÀÝÉÊ\n"
 "ÎÁ ÏÛÉÂËÕ, ÈÏÔÑ ÐÏÓÙÌËÁ ÏÔ×ÅÔÁ × ÎÅÐÒÉÅÍÌÅÍÏÊ ËÏÄÉÒÏ×ËÅ ÔÏÖÅ ÄÏÐÕÓËÁÅÔÓÑ.\n"
 
-#: src/LYrcFile.c:460
+#: src/LYrcFile.c:461
 msgid ""
 "preferred_language specifies the language in MIME notation (e.g., en,\n"
 "fr, may be a comma-separated list in decreasing preference)\n"
@@ -5669,7 +5673,7 @@ msgstr ""
 "åÓÌÉ ÆÁÊÌ ÎÁ ÜÔÏÍ ÑÚÙËÅ ÄÏÓÔÕÐÅÎ, ÓÅÒ×ÅÒ ÂÕÄÅÔ ÐÏÓÙÌÁÔØ ÅÇÏ.\n"
 "÷ ÐÒÏÔÉ×ÎÏÍ ÓÌÕÞÁÅ, ÓÅÒ×ÅÒ ÂÕÄÅÔ ÐÏÓÙÌÁÔØ ÆÁÊÌ ÎÁ Ó×ÏÅÍ ÑÚÙËÅ ÐÏ ÕÍÏÌÞÁÎÉÀ.\n"
 
-#: src/LYrcFile.c:471
+#: src/LYrcFile.c:472
 msgid ""
 "If run_all_execution_links is set \"on\" then all local execution links\n"
 "will be executed when they are selected.\n"
@@ -5691,7 +5695,7 @@ msgstr ""
 "       ÂÅÚÏÐÁÓÎÏÓÔÉ.  üÔÁ ÏÐÃÉÑ ÄÏÌÖÎÁ ÂÙÔØ ÕÓÔÁÎÏ×ÌÅÎÁ × \"on\" ÔÏÌØËÏ\n"
 "       ÅÓÌÉ ×Ù ÐÒÏÓÍÁÔÒÉ×ÁÅÔÅ ÐÒÏ×ÅÒÅÎÎÙÊ ÉÓÔÏÞÎÉË ÉÎÆÏÒÍÁÃÉÉ.\n"
 
-#: src/LYrcFile.c:482
+#: src/LYrcFile.c:483
 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"
@@ -5718,7 +5722,7 @@ msgstr ""
 "       ÂÅÚÏÐÁÓÎÏÓÔÉ.  üÔÁ ÏÐÃÉÑ ÄÏÌÖÎÁ ÂÙÔØ ÕÓÔÁÎÏ×ÌÅÎÁ × \"on\" ÔÏÌØËÏ\n"
 "       ÅÓÌÉ ×Ù ÐÒÏÓÍÁÔÒÉ×ÁÅÔÅ ÐÒÏ×ÅÒÅÎÎÙÊ ÉÓÔÏÞÎÉË ÉÎÆÏÒÍÁÃÉÉ.\n"
 
-#: src/LYrcFile.c:500
+#: src/LYrcFile.c:501
 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"
@@ -5737,7 +5741,7 @@ msgstr ""
 "ÐÏ ÕÍÏÌÞÁÎÉÀ ÍÏÖÅÔ ÂÙÔØ ÉÚÍÅÎÅÎÏ ÐÒÉ ÉÓÐÏÌØÚÏ×ÁÎÉÉ ËÌÀÞÁ ËÏÍÁÎÄÎÏÊ\n"
 "ÓÔÒÏËÉ -popup.\n"
 
-#: src/LYrcFile.c:510
+#: src/LYrcFile.c:511
 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"
@@ -5773,7 +5777,7 @@ msgstr ""
 "\"on\" É \"off\" ÐÁÒÁÍÅÔÒÁ \"ÐÏËÁÚÙ×ÁÔØ Ã×ÅÔ\" ÂÕÄÕÔ\n"
 "ÔÒÁËÔÏ×ÁÔØÓÑ ËÁË \"default\".\n"
 
-#: src/LYrcFile.c:527
+#: src/LYrcFile.c:528
 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"
@@ -5795,7 +5799,7 @@ msgstr ""
 "úÎÁÞÅÎÉÅ ÐÏ ÕÍÏÌÞÁÎÉÀ ÍÏÖÅÔ ÂÙÔØ ÐÅÒÅËÒÙÔÏ ÏÐÃÉÅÊ ËÏÍÁÎÄÎÏÊ\n"
 "ÓÔÒÏËÉ -show_cursor.\n"
 
-#: src/LYrcFile.c:538
+#: src/LYrcFile.c:539
 msgid ""
 "show_dotfiles specifies that the directory listing should include\n"
 "\"hidden\" (dot) files/directories.  If set \"on\", this will be\n"
@@ -5809,7 +5813,7 @@ msgstr ""
 "É ÎÅ ÚÁÐÒÅÝÅÎÏ Ó ÐÏÍÏÝØÀ ËÌÀÞÅÊ ËÏÍÁÎÄÎÏÊ ÓÔÒÏËÉ.  åÓÌÉ ÏÔÏÂÒÁÖÅÎÉÅ ÓËÒÙÔÙÈ\n"
 "ÆÁÊÌÏ× ÏÔËÌÀÞÅÎÏ, ÓÏÚÄÁÎÉÅ ÔÁËÉÈ ÆÁÊÌÏ× ÉÚ Lynx ÔÏÖÅ ÚÁÐÒÅÝÁÅÔÓÑ.\n"
 
-#: src/LYrcFile.c:549
+#: src/LYrcFile.c:550
 msgid ""
 "If sub_bookmarks is not turned \"off\", and multiple bookmarks have\n"
 "been defined (see below), then all bookmark operations will first\n"
@@ -5831,7 +5835,7 @@ msgstr ""
 "intermediate.  ëÏÇÄÁ ÜÔÁ ÏÐÃÉÑ ÕÓÔÁÎÏ×ÌÅÎÁ × \"standard\", ÍÅÎÀ ÂÕÄÅÔ\n"
 "×Ù×ÏÄÉÔØÓÑ ×ÎÅ ÚÁ×ÉÓÉÍÏÓÔÉ ÏÔ òÅÖÉÍÁ ðÏÌØÚÏ×ÁÔÅÌÑ.\n"
 
-#: src/LYrcFile.c:563
+#: src/LYrcFile.c:564
 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"
@@ -5847,7 +5851,7 @@ msgstr ""
 "ÉÎÆÏÒÍÁÃÉÀ.  éÓÐÏÌØÚÕÊÔÅ \"ADVANCED\" ÄÌÑ ÏÔÏÂÒÁÖÅÎÉÑ URL ÔÅËÕÝÅÊ ×ÙÂÒÁÎÎÏÊ\n"
 "ÓÓÙÌËÉ ×ÎÉÚÕ ÜËÒÁÎÁ.\n"
 
-#: src/LYrcFile.c:572
+#: src/LYrcFile.c:573
 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"
@@ -5857,7 +5861,7 @@ msgstr ""
 "ÉÓÈÏÄÎÏÇÏ ÆÁÊÌÁ Ó ËÁÒÔÉÎËÏÊ ÎÁ ÍÅÓÔÅ [INLINE], [LINK] ÉÌÉ [IMAGE]\n"
 "óÍ. ÔÁËÖÅ VERBOSE_IMAGES × lynx.cfg\n"
 
-#: src/LYrcFile.c:577
+#: src/LYrcFile.c:578
 msgid ""
 "If vi_keys is set to \"on\", then the normal VI movement keys:\n"
 "  j = down    k = up\n"
@@ -5874,7 +5878,7 @@ msgstr ""
 "úÁÇÌÁ×ÎÙÅ 'H', 'J' É 'K' ÂÕÄÕÔ ÐÏ-ÐÒÅÖÎÅÍÕ ÁËÔÉ×ÉÚÉÒÏ×ÁÔØ ÐÏÍÏÝØ, ÓÏËÒÁÝÅÎÉÑ\n"
 "ÐÅÒÅÈÏÄÁ É ×Ù×ÏÄ ÏÔÏÂÒÁÖÅÎÉÑ ËÌÁ×ÉÛ, ÓÏÏÔ×ÅÔÓÔ×ÅÎÎÏ.\n"
 
-#: src/LYrcFile.c:585
+#: src/LYrcFile.c:586
 msgid ""
 "The visited_links setting controls how Lynx organizes the information\n"
 "in the Visited Links Page.\n"
@@ -5882,7 +5886,7 @@ msgstr ""
 "õÓÔÁÎÏ×ËÁ visited_links ËÏÎÔÒÏÌÉÒÕÅÔ, ËÁË Lynx ÏÒÇÁÎÉÚÕÅÔ ÉÎÆÏÒÍÁÃÉÀ\n"
 "ÎÁ óÔÒÁÎÉÃÅ ðÏÓÅÝÅÎÎÙÈ óÓÙÌÏË.\n"
 
-#: src/LYrcFile.c:803
+#: src/LYrcFile.c:804
 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"
@@ -5901,7 +5905,7 @@ msgstr ""
 "É ÓÏÏÔ×ÅÔÓÔ×ÕÀÝÉÅ ÃÉÆÒÙ ÎÁ ÏÓÎÏ×ÎÏÊ ËÌÁ×ÉÁÔÕÒÅ ÂÕÄÕÔ ÄÅÊÓÔ×Ï×ÁÔØ ËÁË\n"
 "ËÌÁ×ÉÛÉ ÓÔÒÅÌÏË, ×ÎÅ ÚÁ×ÉÓÉÍÏÓÔÉ ÏÔ ÓÏÓÔÏÑÎÉÑ numlock.\n"
 
-#: src/LYrcFile.c:812
+#: src/LYrcFile.c:813
 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"
@@ -5910,7 +5914,7 @@ msgstr ""
 "ÂÕÄÕÔ ÐÏÑ×ÌÑÔØÓÑ ÓÌÅÄÏÍ ÚÁ ËÁÖÄÏÊ ÓÓÙÌËÏÊ É ÏÎÉ ÍÏÇÕÔ ÂÙÔØ ÉÓÐÏÌØÚÏ×ÁÎÙ ÄÌÑ\n"
 "×ÙÂÏÒÁ ÓÓÙÌËÉ.\n"
 
-#: src/LYrcFile.c:816
+#: src/LYrcFile.c:817
 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"
@@ -5928,7 +5932,7 @@ msgstr ""
 "ÎÏÍÅÒ ÏÐÃÉÉ, ÄÁÖÅ ÅÓÌÉ ÏÐÃÉÑ ÎÅ ×ÉÄÎÁ ÎÁ ÜËÒÁÎÅ.  óÐÉÓËÉ ÓÓÙÌÏË É ÒÅÚÕÌØÔÁÔ\n"
 "ËÏÍÁÎÄÙ ×Ù×ÏÄÁ ÓÐÉÓËÁ ÔÁËÖÅ ÎÕÍÅÒÕÀÔ ÐÏÌÑ ××ÏÄÁ ÆÏÒÍÙ.\n"
 
-#: src/LYrcFile.c:825
+#: src/LYrcFile.c:826
 msgid ""
 "NOTE: Some fixed format documents may look disfigured when\n"
 "\"LINKS_ARE_NUMBERED\" or \"LINKS_AND_FORM_FIELDS_ARE_NUMBERED\" are\n"
@@ -5938,7 +5942,7 @@ msgstr ""
 "ÏÔÏÂÒÁÖÁÔØÓÑ ÎÅÐÒÁ×ÉÌØÎÏ, ÅÓÌÉ ×ËÌÀÞÅÎÙ ÏÐÃÉÉ \"LINKS_ARE_NUMBERED\"\n"
 "ÉÌÉ \"LINKS_AND_FORM_FIELDS_ARE_NUMBERED\".\n"
 
-#: src/LYrcFile.c:857
+#: src/LYrcFile.c:858
 msgid ""
 "Lynx User Defaults File\n"
 "\n"
diff --git a/po/sl.po b/po/sl.po
index e4563ae3..8ccf787f 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -1,14 +1,14 @@
 # Slovenian translation of Lynx WWW browser.
 # Copyright (C) 1999 Free Software Foundation, Inc.
 # Roman Maurer <roman.maurer@hermes.si>, 1999.
-# @Id: sl.po 1.16 Sun, 10 Oct 2004 17:29:46 -0700 dickey @
+# @Id: sl.po 1.17 Sun, 17 Oct 2004 14:54:30 -0700 dickey @
 # @Source: po/sl.po @
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: lynx 2.8.4\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-10-10 18:51-0400\n"
+"POT-Creation-Date: 2004-10-17 16:29-0400\n"
 "PO-Revision-Date: 1999-12-29 12:30 +0200\n"
 "Last-Translator: Roman Maurer <roman.maurer@hermes.si>\n"
 "Language-Team: Slovenian <sl@li.org>\n"
@@ -2788,7 +2788,7 @@ msgstr ""
 msgid "Loading failed, use a previous copy."
 msgstr ""
 
-#: WWW/Library/Implementation/HTAccess.c:1045 src/GridText.c:8301
+#: WWW/Library/Implementation/HTAccess.c:1045 src/GridText.c:8296
 msgid "Loading incomplete."
 msgstr "Nalaganje nepopolno."
 
@@ -2857,7 +2857,7 @@ msgstr "Preneseno %d zlogov (%5d)"
 msgid "connect for data"
 msgstr "povezava za podatke"
 
-#: WWW/Library/Implementation/HTFTP.c:3738
+#: WWW/Library/Implementation/HTFTP.c:3741
 msgid "Receiving FTP file."
 msgstr "Jemljemo datoteko s FTP."
 
@@ -3011,7 +3011,7 @@ msgstr ""
 msgid "Address length looks invalid"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1551 WWW/Library/Implementation/HTTCP.c:1569
+#: WWW/Library/Implementation/HTTCP.c:1552 WWW/Library/Implementation/HTTCP.c:1570
 #, c-format
 msgid "Unable to locate remote host %s."
 msgstr ""
@@ -3020,38 +3020,38 @@ msgstr ""
 #. * but not HTAlert, because typically there will be other
 #. * alerts from the callers.  - kw
 #.
-#: WWW/Library/Implementation/HTTCP.c:1566 WWW/Library/Implementation/HTTelnet.c:108
+#: WWW/Library/Implementation/HTTCP.c:1567 WWW/Library/Implementation/HTTelnet.c:108
 #, c-format
 msgid "Invalid hostname %s"
 msgstr "Neveljavno ime gostitelja %s"
 
-#: WWW/Library/Implementation/HTTCP.c:1580
+#: WWW/Library/Implementation/HTTCP.c:1581
 #, c-format
 msgid "Making %s connection to %s"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1591
+#: WWW/Library/Implementation/HTTCP.c:1592
 msgid "socket failed."
 msgstr "vtiènici je spodletelo."
 
-#: WWW/Library/Implementation/HTTCP.c:1604
+#: WWW/Library/Implementation/HTTCP.c:1605
 #, c-format
 msgid "socket failed: family %d addr %s port %s."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1628
+#: WWW/Library/Implementation/HTTCP.c:1629
 msgid "Could not make connection non-blocking."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1697
+#: WWW/Library/Implementation/HTTCP.c:1698
 msgid "Connection failed (too many retries)."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1896
+#: WWW/Library/Implementation/HTTCP.c:1897
 msgid "Could not restore socket to blocking."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1962
+#: WWW/Library/Implementation/HTTCP.c:1963
 msgid "Socket read failed for 180,000 tries."
 msgstr ""
 
@@ -3060,45 +3060,45 @@ msgstr ""
 msgid "Address contains a username: %s"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:497
+#: WWW/Library/Implementation/HTTP.c:531
 msgid "This client does not contain support for HTTPS URLs."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:522
+#: WWW/Library/Implementation/HTTP.c:556
 msgid "Unable to connect to remote host."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:544
+#: WWW/Library/Implementation/HTTP.c:578
 msgid "Retrying connection without TLS."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:587
+#: WWW/Library/Implementation/HTTP.c:621
 msgid "SSL error:Can't find common name in certificate-Continue?"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:604
+#: WWW/Library/Implementation/HTTP.c:638
 #, c-format
 msgid "SSL error:host(%s)!=cert(%s)-Continue?"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:616
+#: WWW/Library/Implementation/HTTP.c:650
 #, c-format
 msgid "Secure %d-bit %s (%s) HTTP connection"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1086
+#: WWW/Library/Implementation/HTTP.c:1120
 msgid "Sending HTTP request."
 msgstr "Po¹iljamo zahtevek HTTP."
 
-#: WWW/Library/Implementation/HTTP.c:1125
+#: WWW/Library/Implementation/HTTP.c:1159
 msgid "Unexpected network write error; connection aborted."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1131
+#: WWW/Library/Implementation/HTTP.c:1165
 msgid "HTTP request sent; waiting for response."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1199
+#: WWW/Library/Implementation/HTTP.c:1233
 msgid "Unexpected network read error; connection aborted."
 msgstr ""
 
@@ -3111,7 +3111,7 @@ 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:1393
+#: WWW/Library/Implementation/HTTP.c:1427
 msgid "Got unexpected Informational Status."
 msgstr ""
 
@@ -3121,7 +3121,7 @@ msgstr ""
 #. * content.  We'll instruct the user to do that, and
 #. * restore the current document.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1427
+#: WWW/Library/Implementation/HTTP.c:1461
 msgid "Request fulfilled.  Reset Content."
 msgstr ""
 
@@ -3131,27 +3131,27 @@ 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:1544
+#: WWW/Library/Implementation/HTTP.c:1578
 msgid "Got unexpected 304 Not Modified status."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1607
+#: WWW/Library/Implementation/HTTP.c:1641
 msgid "Redirection of POST content requires user approval."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1622
+#: WWW/Library/Implementation/HTTP.c:1656
 msgid "Have POST content.  Treating Permanent Redirection as Temporary.\n"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1664
+#: WWW/Library/Implementation/HTTP.c:1698
 msgid "Retrying with access authorization information."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1676
+#: WWW/Library/Implementation/HTTP.c:1710
 msgid "Show the 401 message body?"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1719
+#: WWW/Library/Implementation/HTTP.c:1753
 msgid "Show the 407 message body?"
 msgstr ""
 
@@ -3159,7 +3159,7 @@ msgstr ""
 #. * Bad or unknown server_status number.  Take a chance and hope
 #. * there is something to display.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1819
+#: WWW/Library/Implementation/HTTP.c:1853
 msgid "Unknown status reply from server!"
 msgstr ""
 
@@ -3419,31 +3419,31 @@ msgstr "polje za generiranje kljuèa"
 msgid "unknown form field"
 msgstr ""
 
-#: src/GridText.c:10020
+#: src/GridText.c:10015
 #, fuzzy
 msgid "Can't open file for uploading"
 msgstr "Ne moremo odpreti izhodne datoteke!  Prekinitev!"
 
-#: src/GridText.c:11170
+#: src/GridText.c:11165
 #, c-format
 msgid "Submitting %s"
 msgstr ""
 
 #. ugliness has happened; inform user and do the best we can
-#: src/GridText.c:12318
+#: src/GridText.c:12313
 msgid "Hang Detect: TextAnchor struct corrupted - suggest aborting!"
 msgstr ""
 
 #. don't show previous state
-#: src/GridText.c:12523
+#: src/GridText.c:12518
 msgid "Wrap lines to fit displayed area?"
 msgstr ""
 
-#: src/GridText.c:12575
+#: src/GridText.c:12570
 msgid "Very long lines have been wrapped!"
 msgstr ""
 
-#: src/GridText.c:13016
+#: src/GridText.c:13011
 msgid "Very long lines have been truncated!"
 msgstr ""
 
@@ -4654,116 +4654,120 @@ msgstr "Sprejmimo spremembe"
 msgid "gzip"
 msgstr ""
 
-#: src/LYOptions.c:2388
+#: src/LYOptions.c:2386
+msgid "deflate"
+msgstr ""
+
+#: src/LYOptions.c:2389
 msgid "compress"
 msgstr ""
 
-#: src/LYOptions.c:2391
+#: src/LYOptions.c:2392
 msgid "bzip2"
 msgstr ""
 
-#: src/LYOptions.c:2393
+#: src/LYOptions.c:2394
 msgid "All"
 msgstr ""
 
-#: src/LYOptions.c:2658 src/LYOptions.c:2682
+#: src/LYOptions.c:2659 src/LYOptions.c:2683
 #, c-format
 msgid "Use %s to invoke the Options menu!"
 msgstr ""
 
-#: src/LYOptions.c:3421
+#: src/LYOptions.c:3422
 msgid "(options marked with (!) will not be saved)"
 msgstr ""
 
-#: src/LYOptions.c:3429
+#: src/LYOptions.c:3430
 msgid "General Preferences"
 msgstr "Sklici"
 
 #. ***************************************************************
 #. User Mode: SELECT
-#: src/LYOptions.c:3433
+#: src/LYOptions.c:3434
 msgid "User mode"
 msgstr ""
 
 #. Editor: INPUT
-#: src/LYOptions.c:3439
+#: src/LYOptions.c:3440
 msgid "Editor"
 msgstr ""
 
 #. Search Type: SELECT
-#: src/LYOptions.c:3444
+#: src/LYOptions.c:3445
 msgid "Type of Search"
 msgstr ""
 
-#: src/LYOptions.c:3449
+#: src/LYOptions.c:3450
 msgid "Security and Privacy"
 msgstr ""
 
 #. ***************************************************************
 #. Cookies: SELECT
-#: src/LYOptions.c:3453
+#: src/LYOptions.c:3454
 msgid "Cookies"
 msgstr ""
 
 #. Cookie Prompting: SELECT
-#: src/LYOptions.c:3467
+#: src/LYOptions.c:3468
 msgid "Invalid-Cookie Prompting"
 msgstr ""
 
 #. SSL Prompting: SELECT
-#: src/LYOptions.c:3474
+#: src/LYOptions.c:3475
 msgid "SSL Prompting"
 msgstr ""
 
-#: src/LYOptions.c:3480
+#: src/LYOptions.c:3481
 msgid "Keyboard Input"
 msgstr ""
 
 #. ***************************************************************
 #. Keypad Mode: SELECT
-#: src/LYOptions.c:3484
+#: src/LYOptions.c:3485
 msgid "Keypad mode"
 msgstr ""
 
 #. Emacs keys: ON/OFF
-#: src/LYOptions.c:3490
+#: src/LYOptions.c:3491
 msgid "Emacs keys"
 msgstr ""
 
 #. VI Keys: ON/OFF
-#: src/LYOptions.c:3496
+#: src/LYOptions.c:3497
 msgid "VI keys"
 msgstr ""
 
 #. Line edit style: SELECT
 #. well, at least 2 line edit styles available
-#: src/LYOptions.c:3503
+#: src/LYOptions.c:3504
 msgid "Line edit style"
 msgstr ""
 
 #. Keyboard layout: SELECT
-#: src/LYOptions.c:3515
+#: src/LYOptions.c:3516
 msgid "Keyboard layout"
 msgstr ""
 
 #.
 #. * Display and Character Set
 #.
-#: src/LYOptions.c:3529
+#: src/LYOptions.c:3530
 msgid "Display and Character Set"
 msgstr ""
 
 #. Use locale-based character set: ON/OFF
-#: src/LYOptions.c:3534
+#: src/LYOptions.c:3535
 msgid "Use locale-based character set"
 msgstr ""
 
 #. Display Character Set: SELECT
-#: src/LYOptions.c:3543
+#: src/LYOptions.c:3544
 msgid "Display character set"
 msgstr ""
 
-#: src/LYOptions.c:3574
+#: src/LYOptions.c:3575
 msgid "Assumed document character set"
 msgstr ""
 
@@ -4772,167 +4776,167 @@ msgstr ""
 #. * we split the header to make it more readable:
 #. * "CJK mode" for CJK display charsets, and "Raw 8-bit" for others.
 #.
-#: src/LYOptions.c:3594
+#: src/LYOptions.c:3595
 msgid "CJK mode"
 msgstr ""
 
-#: src/LYOptions.c:3596
+#: src/LYOptions.c:3597
 msgid "Raw 8-bit"
 msgstr ""
 
 #. X Display: INPUT
-#: src/LYOptions.c:3604
+#: src/LYOptions.c:3605
 msgid "X Display"
 msgstr ""
 
 #.
 #. * Document Appearance
 #.
-#: src/LYOptions.c:3610
+#: src/LYOptions.c:3611
 msgid "Document Appearance"
 msgstr ""
 
-#: src/LYOptions.c:3616
+#: src/LYOptions.c:3617
 msgid "Show color"
 msgstr ""
 
 #. Show cursor: ON/OFF
-#: src/LYOptions.c:3640
+#: src/LYOptions.c:3641
 msgid "Show cursor"
 msgstr ""
 
 #. Underline links: ON/OFF
-#: src/LYOptions.c:3646
+#: src/LYOptions.c:3647
 #, fuzzy
 msgid "Underline links"
 msgstr "Skrite povezave:"
 
 #. Show scrollbar: ON/OFF
-#: src/LYOptions.c:3653
+#: src/LYOptions.c:3654
 msgid "Show scrollbar"
 msgstr ""
 
 #. Select Popups: ON/OFF
-#: src/LYOptions.c:3660
+#: src/LYOptions.c:3661
 msgid "Popups for select fields"
 msgstr ""
 
 #. HTML error recovery: SELECT
-#: src/LYOptions.c:3666
+#: src/LYOptions.c:3667
 msgid "HTML error recovery"
 msgstr ""
 
 #. Show Images: SELECT
-#: src/LYOptions.c:3672
+#: src/LYOptions.c:3673
 msgid "Show images"
 msgstr ""
 
 #. Verbose Images: ON/OFF
-#: src/LYOptions.c:3686
+#: src/LYOptions.c:3687
 msgid "Verbose images"
 msgstr ""
 
-#: src/LYOptions.c:3695
+#: src/LYOptions.c:3696
 msgid "Headers Transferred to Remote Servers"
 msgstr ""
 
 #. ***************************************************************
 #. Mail Address: INPUT
-#: src/LYOptions.c:3699
+#: src/LYOptions.c:3700
 msgid "Personal mail address"
 msgstr ""
 
 #. Preferred media type: SELECT
-#: src/LYOptions.c:3704
+#: src/LYOptions.c:3705
 #, fuzzy
 msgid "Preferred media type"
 msgstr "Preneseno %d zlogov"
 
 #. Preferred encoding: SELECT
-#: src/LYOptions.c:3710
+#: src/LYOptions.c:3711
 msgid "Preferred encoding"
 msgstr ""
 
 #. Preferred Document Character Set: INPUT
-#: src/LYOptions.c:3716
+#: src/LYOptions.c:3717
 msgid "Preferred document character set"
 msgstr ""
 
 #. Preferred Document Language: INPUT
-#: src/LYOptions.c:3721
+#: src/LYOptions.c:3722
 msgid "Preferred document language"
 msgstr ""
 
-#: src/LYOptions.c:3727
+#: src/LYOptions.c:3728
 msgid "User-Agent header"
 msgstr ""
 
 #.
 #. * Listing and Accessing Files
 #.
-#: src/LYOptions.c:3735
+#: src/LYOptions.c:3736
 msgid "Listing and Accessing Files"
 msgstr ""
 
 #. ***************************************************************
 #. FTP sort: SELECT
-#: src/LYOptions.c:3739
+#: src/LYOptions.c:3740
 msgid "FTP sort criteria"
 msgstr ""
 
 #. Local Directory Sort: SELECT
-#: src/LYOptions.c:3746
+#: src/LYOptions.c:3747
 msgid "Local directory sort criteria"
 msgstr ""
 
 #. Local Directory Order: SELECT
-#: src/LYOptions.c:3752
+#: src/LYOptions.c:3753
 #, fuzzy
 msgid "Local directory sort order"
 msgstr "Tega imenika ni mogoèe brati."
 
-#: src/LYOptions.c:3761
+#: src/LYOptions.c:3762
 msgid "Show dot files"
 msgstr ""
 
-#: src/LYOptions.c:3769
+#: src/LYOptions.c:3770
 msgid "Execution links"
 msgstr ""
 
 #. Show transfer rate: SELECT
-#: src/LYOptions.c:3789
+#: src/LYOptions.c:3790
 msgid "Show transfer rate"
 msgstr "Prenos podatkov konèan"
 
 #.
 #. * Special Files and Screens
 #.
-#: src/LYOptions.c:3809
+#: src/LYOptions.c:3810
 msgid "Special Files and Screens"
 msgstr ""
 
-#: src/LYOptions.c:3814
+#: src/LYOptions.c:3815
 msgid "Multi-bookmarks"
 msgstr ""
 
-#: src/LYOptions.c:3822
+#: src/LYOptions.c:3823
 msgid "Review/edit Bookmarks files"
 msgstr ""
 
-#: src/LYOptions.c:3824
+#: src/LYOptions.c:3825
 msgid "Goto multi-bookmark menu"
 msgstr ""
 
-#: src/LYOptions.c:3826
+#: src/LYOptions.c:3827
 msgid "Bookmarks file"
 msgstr ""
 
 #. Visited Pages: SELECT
-#: src/LYOptions.c:3832
+#: src/LYOptions.c:3833
 msgid "Visited Pages"
 msgstr "Stran z obiskanimi povezavami"
 
-#: src/LYOptions.c:3837
+#: src/LYOptions.c:3838
 msgid "View the file "
 msgstr ""
 
@@ -5046,38 +5050,38 @@ msgstr ""
 msgid "(no name)"
 msgstr "(brez imena)"
 
-#: src/LYReadCFG.c:1772
+#: src/LYReadCFG.c:1773
 #, c-format
 msgid "More than %d nested lynx.cfg includes -- perhaps there is a loop?!?\n"
 msgstr ""
 
-#: src/LYReadCFG.c:1774
+#: src/LYReadCFG.c:1775
 #, c-format
 msgid "Last attempted include was '%s',\n"
 msgstr ""
 
-#: src/LYReadCFG.c:1775
+#: src/LYReadCFG.c:1776
 #, c-format
 msgid "included from '%s'.\n"
 msgstr ""
 
-#: src/LYReadCFG.c:2181 src/LYReadCFG.c:2194 src/LYReadCFG.c:2252
+#: src/LYReadCFG.c:2183 src/LYReadCFG.c:2196 src/LYReadCFG.c:2254
 msgid "The following is read from your lynx.cfg file."
 msgstr ""
 
-#: src/LYReadCFG.c:2182 src/LYReadCFG.c:2195
+#: src/LYReadCFG.c:2184 src/LYReadCFG.c:2197
 msgid "Please read the distribution"
 msgstr "Prosim, preberite dokumentacijo v distribuciji"
 
-#: src/LYReadCFG.c:2188 src/LYReadCFG.c:2198
+#: src/LYReadCFG.c:2190 src/LYReadCFG.c:2200
 msgid "for more comments."
 msgstr "za veè pripomb."
 
-#: src/LYReadCFG.c:2234
+#: src/LYReadCFG.c:2236
 msgid "RELOAD THE CHANGES"
 msgstr ""
 
-#: src/LYReadCFG.c:2242
+#: src/LYReadCFG.c:2244
 msgid "Your primary configuration"
 msgstr ""
 
@@ -5373,7 +5377,7 @@ msgstr ""
 msgid "Normally disabled.  See ENABLE_LYNXRC in lynx.cfg\n"
 msgstr ""
 
-#: src/LYrcFile.c:317
+#: src/LYrcFile.c:318
 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"
@@ -5381,21 +5385,21 @@ msgid ""
 "all cookies.\n"
 msgstr ""
 
-#: src/LYrcFile.c:324
+#: src/LYrcFile.c:325
 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 ""
 
-#: src/LYrcFile.c:329
+#: src/LYrcFile.c:330
 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 ""
 
-#: src/LYrcFile.c:334
+#: src/LYrcFile.c:335
 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"
@@ -5404,7 +5408,7 @@ msgid ""
 "Current valid characters sets are:\n"
 msgstr ""
 
-#: src/LYrcFile.c:341
+#: src/LYrcFile.c:342
 msgid ""
 "cookie_accept_domains and cookie_reject_domains are comma-delimited\n"
 "lists of domains from which Lynx should automatically accept or reject\n"
@@ -5413,7 +5417,7 @@ msgid ""
 "settings made here.\n"
 msgstr ""
 
-#: src/LYrcFile.c:349
+#: src/LYrcFile.c:350
 msgid ""
 "cookie_file specifies the file from which to read persistent cookies.\n"
 "The default is ~/.lynx_cookies.\n"
@@ -5421,7 +5425,7 @@ msgstr ""
 "cookie_file doloèa datoteko, v kateri naj se hranijo obstojni pi¹koti.\n"
 "Privzeta je ~/.lynx_cookies.\n"
 
-#: src/LYrcFile.c:354
+#: src/LYrcFile.c:355
 msgid ""
 "cookie_loose_invalid_domains, cookie_strict_invalid_domains, and\n"
 "cookie_query_invalid_domains are comma-delimited lists of which domains\n"
@@ -5432,13 +5436,13 @@ msgid ""
 "querying the user for an invalid path or domain.\n"
 msgstr ""
 
-#: src/LYrcFile.c:368
+#: src/LYrcFile.c:369
 msgid ""
 "dir_list_order specifies the directory list order under DIRED_SUPPORT\n"
 "(if implemented).  The default is \"ORDER_BY_NAME\"\n"
 msgstr ""
 
-#: src/LYrcFile.c:373
+#: src/LYrcFile.c:374
 msgid ""
 "dir_list_styles specifies the directory list style under DIRED_SUPPORT\n"
 "(if implemented).  The default is \"MIXED_STYLE\", which sorts both\n"
@@ -5446,7 +5450,7 @@ msgid ""
 "\"DIRECTORIES_FIRST\" lists directories first.\n"
 msgstr ""
 
-#: src/LYrcFile.c:381
+#: src/LYrcFile.c:382
 msgid ""
 "If emacs_keys is to \"on\" then the normal EMACS movement keys:\n"
 "  ^N = down    ^P = up\n"
@@ -5454,7 +5458,7 @@ msgid ""
 "will be enabled.\n"
 msgstr ""
 
-#: src/LYrcFile.c:387
+#: src/LYrcFile.c:388
 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"
@@ -5462,7 +5466,7 @@ msgid ""
 "will be used for sending mail.\n"
 msgstr ""
 
-#: src/LYrcFile.c:393
+#: src/LYrcFile.c:394
 msgid ""
 "The file_sorting_method specifies which value to sort on when viewing\n"
 "file lists such as FTP directories.  The options are:\n"
@@ -5472,7 +5476,7 @@ msgid ""
 "   BY_DATE     -- sorts on the date of the file\n"
 msgstr ""
 
-#: src/LYrcFile.c:411
+#: src/LYrcFile.c:412
 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"
@@ -5487,7 +5491,7 @@ msgid ""
 "Current lineedit modes are:\n"
 msgstr ""
 
-#: src/LYrcFile.c:429
+#: src/LYrcFile.c:430
 msgid ""
 "The following allow you to define sub-bookmark files and descriptions.\n"
 "The format is multi_bookmark<capital_letter>=<filename>,<description>\n"
@@ -5495,7 +5499,7 @@ msgid ""
 "We start with \"multi_bookmarkB\" since 'A' is the default (see above).\n"
 msgstr ""
 
-#: src/LYrcFile.c:435
+#: src/LYrcFile.c:436
 msgid ""
 "personal_mail_address specifies your personal mail address.  The\n"
 "address will be sent during HTTP file transfers for authorization and\n"
@@ -5506,7 +5510,7 @@ msgid ""
 "your mailed comments.\n"
 msgstr ""
 
-#: src/LYrcFile.c:444
+#: src/LYrcFile.c:445
 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"
@@ -5522,7 +5526,7 @@ msgid ""
 "is also allowed.\n"
 msgstr ""
 
-#: src/LYrcFile.c:460
+#: src/LYrcFile.c:461
 msgid ""
 "preferred_language specifies the language in MIME notation (e.g., en,\n"
 "fr, may be a comma-separated list in decreasing preference)\n"
@@ -5531,7 +5535,7 @@ msgid ""
 "Otherwise, the server will send the file in its default language.\n"
 msgstr ""
 
-#: src/LYrcFile.c:471
+#: src/LYrcFile.c:472
 msgid ""
 "If run_all_execution_links is set \"on\" then all local execution links\n"
 "will be executed when they are selected.\n"
@@ -5553,7 +5557,7 @@ msgstr ""
 "        bilo nastavljeno na \"on\" le, èe pregledujete zaupen vir\n"
 "        informacij.\n"
 
-#: src/LYrcFile.c:482
+#: src/LYrcFile.c:483
 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"
@@ -5580,7 +5584,7 @@ msgstr ""
 "        pobri¹ejo datoteke ali ogrozijo varnost.  To naj bi bilo\n"
 "        nastavljeno na \"on\" le, èe pregledujete zaupen vir informacij.\n"
 
-#: src/LYrcFile.c:500
+#: src/LYrcFile.c:501
 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"
@@ -5591,7 +5595,7 @@ msgid ""
 "The default can be overridden via the -popup command line toggle.\n"
 msgstr ""
 
-#: src/LYrcFile.c:510
+#: src/LYrcFile.c:511
 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"
@@ -5610,7 +5614,7 @@ msgid ""
 "\"off\" \"show color\" settings will be treated as \"default\".\n"
 msgstr ""
 
-#: src/LYrcFile.c:527
+#: src/LYrcFile.c:528
 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"
@@ -5623,7 +5627,7 @@ msgid ""
 "The default can be overridden via the -show_cursor command line toggle.\n"
 msgstr ""
 
-#: src/LYrcFile.c:538
+#: src/LYrcFile.c:539
 msgid ""
 "show_dotfiles specifies that the directory listing should include\n"
 "\"hidden\" (dot) files/directories.  If set \"on\", this will be\n"
@@ -5632,7 +5636,7 @@ msgid ""
 "is disabled, creation of such files via Lynx also is disabled.\n"
 msgstr ""
 
-#: src/LYrcFile.c:549
+#: src/LYrcFile.c:550
 msgid ""
 "If sub_bookmarks is not turned \"off\", and multiple bookmarks have\n"
 "been defined (see below), then all bookmark operations will first\n"
@@ -5645,7 +5649,7 @@ msgid ""
 "presented regardless of user mode.\n"
 msgstr ""
 
-#: src/LYrcFile.c:563
+#: src/LYrcFile.c:564
 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"
@@ -5655,14 +5659,14 @@ msgid ""
 "bottom of the screen.\n"
 msgstr ""
 
-#: src/LYrcFile.c:572
+#: src/LYrcFile.c:573
 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 ""
 
-#: src/LYrcFile.c:577
+#: src/LYrcFile.c:578
 msgid ""
 "If vi_keys is set to \"on\", then the normal VI movement keys:\n"
 "  j = down    k = up\n"
@@ -5672,13 +5676,13 @@ msgid ""
 "and the keymap display, respectively.\n"
 msgstr ""
 
-#: src/LYrcFile.c:585
+#: src/LYrcFile.c:586
 msgid ""
 "The visited_links setting controls how Lynx organizes the information\n"
 "in the Visited Links Page.\n"
 msgstr ""
 
-#: src/LYrcFile.c:803
+#: src/LYrcFile.c:804
 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"
@@ -5689,13 +5693,13 @@ msgid ""
 "regardless of whether numlock is on.\n"
 msgstr ""
 
-#: src/LYrcFile.c:812
+#: src/LYrcFile.c:813
 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 ""
 
-#: src/LYrcFile.c:816
+#: src/LYrcFile.c:817
 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"
@@ -5706,14 +5710,14 @@ msgid ""
 "lists and output from the list command also enumerate form inputs.\n"
 msgstr ""
 
-#: src/LYrcFile.c:825
+#: src/LYrcFile.c:826
 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 ""
 
-#: src/LYrcFile.c:857
+#: src/LYrcFile.c:858
 msgid ""
 "Lynx User Defaults File\n"
 "\n"
diff --git a/po/sv.po b/po/sv.po
index 95e27973..089e4455 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lynx 2.8.6-dev4\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-10-10 18:51-0400\n"
+"POT-Creation-Date: 2004-10-17 16:29-0400\n"
 "PO-Revision-Date: 2004-06-05 21:02+0100\n"
 "Last-Translator: Peter Karlsson <peter@softwolves.pp.se>\n"
 "Language-Team: Swedish <sv@li.org>\n"
@@ -2788,7 +2788,7 @@ msgstr "Dokument med POST-data hittades ej i cache. Skicka in igen?"
 msgid "Loading failed, use a previous copy."
 msgstr "Hämtningen misslyckades, använder tidigare exemplar."
 
-#: WWW/Library/Implementation/HTAccess.c:1045 src/GridText.c:8301
+#: WWW/Library/Implementation/HTAccess.c:1045 src/GridText.c:8296
 msgid "Loading incomplete."
 msgstr "Hämtning ej komplett."
 
@@ -2857,7 +2857,7 @@ msgstr "Överförde %d byte (%5d)"
 msgid "connect for data"
 msgstr "ansluter för data"
 
-#: WWW/Library/Implementation/HTFTP.c:3738
+#: WWW/Library/Implementation/HTFTP.c:3741
 msgid "Receiving FTP file."
 msgstr "Hämtar ftp-fil."
 
@@ -3016,7 +3016,7 @@ msgstr "Adressen har en ogiltig port"
 msgid "Address length looks invalid"
 msgstr "Adresslängden verkar ogiltig"
 
-#: WWW/Library/Implementation/HTTCP.c:1551 WWW/Library/Implementation/HTTCP.c:1569
+#: WWW/Library/Implementation/HTTCP.c:1552 WWW/Library/Implementation/HTTCP.c:1570
 #, c-format
 msgid "Unable to locate remote host %s."
 msgstr "Kan inte hitta värd %s."
@@ -3025,38 +3025,38 @@ msgstr "Kan inte hitta värd %s."
 #. * but not HTAlert, because typically there will be other
 #. * alerts from the callers.  - kw
 #.
-#: WWW/Library/Implementation/HTTCP.c:1566 WWW/Library/Implementation/HTTelnet.c:108
+#: WWW/Library/Implementation/HTTCP.c:1567 WWW/Library/Implementation/HTTelnet.c:108
 #, c-format
 msgid "Invalid hostname %s"
 msgstr "Ogiltigt värdnamn %s"
 
-#: WWW/Library/Implementation/HTTCP.c:1580
+#: WWW/Library/Implementation/HTTCP.c:1581
 #, c-format
 msgid "Making %s connection to %s"
 msgstr "Kopplar upp %s-anslutning till %s"
 
-#: WWW/Library/Implementation/HTTCP.c:1591
+#: WWW/Library/Implementation/HTTCP.c:1592
 msgid "socket failed."
 msgstr "uttag misslyckades."
 
-#: WWW/Library/Implementation/HTTCP.c:1604
+#: WWW/Library/Implementation/HTTCP.c:1605
 #, c-format
 msgid "socket failed: family %d addr %s port %s."
 msgstr "uttag misslyckades: familj %d adress %s port %s."
 
-#: WWW/Library/Implementation/HTTCP.c:1628
+#: WWW/Library/Implementation/HTTCP.c:1629
 msgid "Could not make connection non-blocking."
 msgstr "Kunde inte koppla upp icke-blockerande anslutning."
 
-#: WWW/Library/Implementation/HTTCP.c:1697
+#: WWW/Library/Implementation/HTTCP.c:1698
 msgid "Connection failed (too many retries)."
 msgstr "Uppkoppling misslyckades (för många försök)."
 
-#: WWW/Library/Implementation/HTTCP.c:1896
+#: WWW/Library/Implementation/HTTCP.c:1897
 msgid "Could not restore socket to blocking."
 msgstr "Kunde inte återställa blockering i uttag."
 
-#: WWW/Library/Implementation/HTTCP.c:1962
+#: WWW/Library/Implementation/HTTCP.c:1963
 msgid "Socket read failed for 180,000 tries."
 msgstr "Läsning från uttag misslyckades 180.000 gånger."
 
@@ -3065,23 +3065,23 @@ msgstr "Läsning från uttag misslyckades 180.000 gånger."
 msgid "Address contains a username: %s"
 msgstr "Adress innehåller användar-id: %s"
 
-#: WWW/Library/Implementation/HTTP.c:497
+#: WWW/Library/Implementation/HTTP.c:531
 msgid "This client does not contain support for HTTPS URLs."
 msgstr "Denna klient innehåller inte stöd för HTTPS-adresser."
 
-#: WWW/Library/Implementation/HTTP.c:522
+#: WWW/Library/Implementation/HTTP.c:556
 msgid "Unable to connect to remote host."
 msgstr "Kan inte ansluta till värd."
 
-#: WWW/Library/Implementation/HTTP.c:544
+#: WWW/Library/Implementation/HTTP.c:578
 msgid "Retrying connection without TLS."
 msgstr "Gör nytt försök; ansluter utan TLS."
 
-#: WWW/Library/Implementation/HTTP.c:587
+#: WWW/Library/Implementation/HTTP.c:621
 msgid "SSL error:Can't find common name in certificate-Continue?"
 msgstr "SSL-fel:Hittar inte vanligt namn i certifikat-Fortsätta?"
 
-#: WWW/Library/Implementation/HTTP.c:604
+#: WWW/Library/Implementation/HTTP.c:638
 #, c-format
 msgid "SSL error:host(%s)!=cert(%s)-Continue?"
 msgstr "SSL-fel:värd(%s)!=cert(%s)-Fortsätta?"
@@ -3089,24 +3089,24 @@ msgstr "SSL-fel:värd(%s)!=cert(%s)-Fortsätta?"
 # %d = SSL_get_cipher_bits(handle,NULL)
 # %s = SSL_get_cipher_version(handle)
 # %s = SSL_get_cipher(handle)
-#: WWW/Library/Implementation/HTTP.c:616
+#: WWW/Library/Implementation/HTTP.c:650
 #, c-format
 msgid "Secure %d-bit %s (%s) HTTP connection"
 msgstr "Säker %d-bitars HTTP-anslutning med %s (%s)"
 
-#: WWW/Library/Implementation/HTTP.c:1086
+#: WWW/Library/Implementation/HTTP.c:1120
 msgid "Sending HTTP request."
 msgstr "Sänder HTTP-fråga."
 
-#: WWW/Library/Implementation/HTTP.c:1125
+#: WWW/Library/Implementation/HTTP.c:1159
 msgid "Unexpected network write error; connection aborted."
 msgstr "Oväntat skrivfel på nätverket; uppkopplingen avbröts."
 
-#: WWW/Library/Implementation/HTTP.c:1131
+#: WWW/Library/Implementation/HTTP.c:1165
 msgid "HTTP request sent; waiting for response."
 msgstr "HTTP-fråga sänd; väntar på svar."
 
-#: WWW/Library/Implementation/HTTP.c:1199
+#: WWW/Library/Implementation/HTTP.c:1233
 msgid "Unexpected network read error; connection aborted."
 msgstr "Oväntat läsfel på nätverket; uppkopplingen avbröts."
 
@@ -3119,7 +3119,7 @@ msgstr "Oväntat läsfel på nätverket; uppkopplingen avbröts."
 #. * 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:1393
+#: WWW/Library/Implementation/HTTP.c:1427
 msgid "Got unexpected Informational Status."
 msgstr "Fick oväntad informationsstatus."
 
@@ -3129,7 +3129,7 @@ msgstr "Fick oväntad informationsstatus."
 #. * content.  We'll instruct the user to do that, and
 #. * restore the current document.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1427
+#: WWW/Library/Implementation/HTTP.c:1461
 msgid "Request fulfilled.  Reset Content."
 msgstr "Frågan slutförd. Nollställ innehåll."
 
@@ -3139,27 +3139,27 @@ msgstr "Frågan slutförd. Nollställ innehåll."
 #. * 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:1544
+#: WWW/Library/Implementation/HTTP.c:1578
 msgid "Got unexpected 304 Not Modified status."
 msgstr "Fick oväntad \"ej modifierad\"-(304)-status."
 
-#: WWW/Library/Implementation/HTTP.c:1607
+#: WWW/Library/Implementation/HTTP.c:1641
 msgid "Redirection of POST content requires user approval."
 msgstr "Omdirigering av POST-innehåll kräver användarens samtycke."
 
-#: WWW/Library/Implementation/HTTP.c:1622
+#: WWW/Library/Implementation/HTTP.c:1656
 msgid "Have POST content.  Treating Permanent Redirection as Temporary.\n"
 msgstr "Har POST-innehåll. Behandlar permanent omdirigering som temporär.\n"
 
-#: WWW/Library/Implementation/HTTP.c:1664
+#: WWW/Library/Implementation/HTTP.c:1698
 msgid "Retrying with access authorization information."
 msgstr "Försöker igen med auktoriseringsinformation."
 
-#: WWW/Library/Implementation/HTTP.c:1676
+#: WWW/Library/Implementation/HTTP.c:1710
 msgid "Show the 401 message body?"
 msgstr "Visa kroppen för 401-meddelandet?"
 
-#: WWW/Library/Implementation/HTTP.c:1719
+#: WWW/Library/Implementation/HTTP.c:1753
 msgid "Show the 407 message body?"
 msgstr "Via kroppen för 407-meddelandet?"
 
@@ -3167,7 +3167,7 @@ msgstr "Via kroppen för 407-meddelandet?"
 #. * Bad or unknown server_status number.  Take a chance and hope
 #. * there is something to display.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1819
+#: WWW/Library/Implementation/HTTP.c:1853
 msgid "Unknown status reply from server!"
 msgstr "Okänt statussvar från server!"
 
@@ -3431,30 +3431,30 @@ msgstr "nyckelgenerering misslyckades"
 msgid "unknown form field"
 msgstr "okänt formulärfält"
 
-#: src/GridText.c:10020
+#: src/GridText.c:10015
 msgid "Can't open file for uploading"
 msgstr "Kan inte öppna fil för sändning"
 
-#: src/GridText.c:11170
+#: src/GridText.c:11165
 #, c-format
 msgid "Submitting %s"
 msgstr "Skickar %s"
 
 #. ugliness has happened; inform user and do the best we can
-#: src/GridText.c:12318
+#: src/GridText.c:12313
 msgid "Hang Detect: TextAnchor struct corrupted - suggest aborting!"
 msgstr "Hängning upptäckt: TextAnchor-struktur förstörd - föreslår avbrott!"
 
 #. don't show previous state
-#: src/GridText.c:12523
+#: src/GridText.c:12518
 msgid "Wrap lines to fit displayed area?"
 msgstr "Ombryt rader så att de passar i visat fält?"
 
-#: src/GridText.c:12575
+#: src/GridText.c:12570
 msgid "Very long lines have been wrapped!"
 msgstr "Mycket långa rader har ombrutits!"
 
-#: src/GridText.c:13016
+#: src/GridText.c:13011
 msgid "Very long lines have been truncated!"
 msgstr "mycket långa rader har trunkerats!"
 
@@ -4682,116 +4682,120 @@ msgstr "Godta alla typer"
 msgid "gzip"
 msgstr "gzip"
 
-#: src/LYOptions.c:2388
+#: src/LYOptions.c:2386
+msgid "deflate"
+msgstr ""
+
+#: src/LYOptions.c:2389
 msgid "compress"
 msgstr "compress"
 
-#: src/LYOptions.c:2391
+#: src/LYOptions.c:2392
 msgid "bzip2"
 msgstr "bzip2"
 
-#: src/LYOptions.c:2393
+#: src/LYOptions.c:2394
 msgid "All"
 msgstr "Alla"
 
-#: src/LYOptions.c:2658 src/LYOptions.c:2682
+#: src/LYOptions.c:2659 src/LYOptions.c:2683
 #, c-format
 msgid "Use %s to invoke the Options menu!"
 msgstr "Använd %s för att nå alternativmenyn!"
 
-#: src/LYOptions.c:3421
+#: src/LYOptions.c:3422
 msgid "(options marked with (!) will not be saved)"
 msgstr "(inställningar markerade med (!) kommer ej att sparas)"
 
-#: src/LYOptions.c:3429
+#: src/LYOptions.c:3430
 msgid "General Preferences"
 msgstr "Allmänna inställningar"
 
 #. ***************************************************************
 #. User Mode: SELECT
-#: src/LYOptions.c:3433
+#: src/LYOptions.c:3434
 msgid "User mode"
 msgstr "Användarläge"
 
 #. Editor: INPUT
-#: src/LYOptions.c:3439
+#: src/LYOptions.c:3440
 msgid "Editor"
 msgstr "Redigeringsprogram"
 
 #. Search Type: SELECT
-#: src/LYOptions.c:3444
+#: src/LYOptions.c:3445
 msgid "Type of Search"
 msgstr "Söktyp"
 
-#: src/LYOptions.c:3449
+#: src/LYOptions.c:3450
 msgid "Security and Privacy"
 msgstr "Säkerhet och personlig integritet"
 
 #. ***************************************************************
 #. Cookies: SELECT
-#: src/LYOptions.c:3453
+#: src/LYOptions.c:3454
 msgid "Cookies"
 msgstr "Kakor"
 
 #. Cookie Prompting: SELECT
-#: src/LYOptions.c:3467
+#: src/LYOptions.c:3468
 msgid "Invalid-Cookie Prompting"
 msgstr "Fråga för ogiltiga kakor"
 
 #. SSL Prompting: SELECT
-#: src/LYOptions.c:3474
+#: src/LYOptions.c:3475
 msgid "SSL Prompting"
 msgstr "Fråga för SSL"
 
-#: src/LYOptions.c:3480
+#: src/LYOptions.c:3481
 msgid "Keyboard Input"
 msgstr "Tangentbordsindata"
 
 #. ***************************************************************
 #. Keypad Mode: SELECT
-#: src/LYOptions.c:3484
+#: src/LYOptions.c:3485
 msgid "Keypad mode"
 msgstr "Numeriskt tangentbord"
 
 #. Emacs keys: ON/OFF
-#: src/LYOptions.c:3490
+#: src/LYOptions.c:3491
 msgid "Emacs keys"
 msgstr "Emacstangenter"
 
 #. VI Keys: ON/OFF
-#: src/LYOptions.c:3496
+#: src/LYOptions.c:3497
 msgid "VI keys"
 msgstr "VI-tangenter"
 
 #. Line edit style: SELECT
 #. well, at least 2 line edit styles available
-#: src/LYOptions.c:3503
+#: src/LYOptions.c:3504
 msgid "Line edit style"
 msgstr "Radredigeringsstil"
 
 #. Keyboard layout: SELECT
-#: src/LYOptions.c:3515
+#: src/LYOptions.c:3516
 msgid "Keyboard layout"
 msgstr "Tangentbordsmall"
 
 #.
 #. * Display and Character Set
 #.
-#: src/LYOptions.c:3529
+#: src/LYOptions.c:3530
 msgid "Display and Character Set"
 msgstr "Visning och teckenuppsättning"
 
 #. Use locale-based character set: ON/OFF
-#: src/LYOptions.c:3534
+#: src/LYOptions.c:3535
 msgid "Use locale-based character set"
 msgstr "Lokalbaserad teckenuppsättning"
 
 #. Display Character Set: SELECT
-#: src/LYOptions.c:3543
+#: src/LYOptions.c:3544
 msgid "Display character set"
 msgstr "Teckenuppsättning för visning"
 
-#: src/LYOptions.c:3574
+#: src/LYOptions.c:3575
 msgid "Assumed document character set"
 msgstr "Förvald dokumentteckenuppsättning"
 
@@ -4800,164 +4804,164 @@ msgstr "Förvald dokumentteckenuppsättning"
 #. * we split the header to make it more readable:
 #. * "CJK mode" for CJK display charsets, and "Raw 8-bit" for others.
 #.
-#: src/LYOptions.c:3594
+#: src/LYOptions.c:3595
 msgid "CJK mode"
 msgstr "CJK-läge"
 
-#: src/LYOptions.c:3596
+#: src/LYOptions.c:3597
 msgid "Raw 8-bit"
 msgstr "Rå 8-bitars"
 
 #. X Display: INPUT
-#: src/LYOptions.c:3604
+#: src/LYOptions.c:3605
 msgid "X Display"
 msgstr "X-display"
 
 #.
 #. * Document Appearance
 #.
-#: src/LYOptions.c:3610
+#: src/LYOptions.c:3611
 msgid "Document Appearance"
 msgstr "Dokumentutseende"
 
-#: src/LYOptions.c:3616
+#: src/LYOptions.c:3617
 msgid "Show color"
 msgstr "Visa färg"
 
 #. Show cursor: ON/OFF
-#: src/LYOptions.c:3640
+#: src/LYOptions.c:3641
 msgid "Show cursor"
 msgstr "Visa markör"
 
 #. Underline links: ON/OFF
-#: src/LYOptions.c:3646
+#: src/LYOptions.c:3647
 msgid "Underline links"
 msgstr "Stryk under länkar"
 
 #. Show scrollbar: ON/OFF
-#: src/LYOptions.c:3653
+#: src/LYOptions.c:3654
 msgid "Show scrollbar"
 msgstr "Visa rullningslist"
 
 #. Select Popups: ON/OFF
-#: src/LYOptions.c:3660
+#: src/LYOptions.c:3661
 msgid "Popups for select fields"
 msgstr "Popup för valfält"
 
 #. HTML error recovery: SELECT
-#: src/LYOptions.c:3666
+#: src/LYOptions.c:3667
 msgid "HTML error recovery"
 msgstr "HTML-felåterhämtning"
 
 #. Show Images: SELECT
-#: src/LYOptions.c:3672
+#: src/LYOptions.c:3673
 msgid "Show images"
 msgstr "Visa bilder"
 
 #. Verbose Images: ON/OFF
-#: src/LYOptions.c:3686
+#: src/LYOptions.c:3687
 msgid "Verbose images"
 msgstr "Pratsamma bilder"
 
-#: src/LYOptions.c:3695
+#: src/LYOptions.c:3696
 msgid "Headers Transferred to Remote Servers"
 msgstr "Frågehuvud överfört till fjärrservrar"
 
 #. ***************************************************************
 #. Mail Address: INPUT
-#: src/LYOptions.c:3699
+#: src/LYOptions.c:3700
 msgid "Personal mail address"
 msgstr "Egen e-postadress"
 
 #. Preferred media type: SELECT
-#: src/LYOptions.c:3704
+#: src/LYOptions.c:3705
 msgid "Preferred media type"
 msgstr "Önskad mediatyp"
 
 #. Preferred encoding: SELECT
-#: src/LYOptions.c:3710
+#: src/LYOptions.c:3711
 msgid "Preferred encoding"
 msgstr "Önskade kodningsform"
 
 #. Preferred Document Character Set: INPUT
-#: src/LYOptions.c:3716
+#: src/LYOptions.c:3717
 msgid "Preferred document character set"
 msgstr "Önskad dokumentteckenuppsättning"
 
 #. Preferred Document Language: INPUT
-#: src/LYOptions.c:3721
+#: src/LYOptions.c:3722
 msgid "Preferred document language"
 msgstr "Önskade dokumentspråk"
 
-#: src/LYOptions.c:3727
+#: src/LYOptions.c:3728
 msgid "User-Agent header"
 msgstr "Webbläsaridentifiering"
 
 #.
 #. * Listing and Accessing Files
 #.
-#: src/LYOptions.c:3735
+#: src/LYOptions.c:3736
 msgid "Listing and Accessing Files"
 msgstr "Visning av och åtkomst till filer"
 
 #. ***************************************************************
 #. FTP sort: SELECT
-#: src/LYOptions.c:3739
+#: src/LYOptions.c:3740
 msgid "FTP sort criteria"
 msgstr "Sortering för ftp-kataloger"
 
 #. Local Directory Sort: SELECT
-#: src/LYOptions.c:3746
+#: src/LYOptions.c:3747
 msgid "Local directory sort criteria"
 msgstr "Sortering för lokala kataloger"
 
 #. Local Directory Order: SELECT
-#: src/LYOptions.c:3752
+#: src/LYOptions.c:3753
 msgid "Local directory sort order"
 msgstr "Sortering för lokala kataloger"
 
-#: src/LYOptions.c:3761
+#: src/LYOptions.c:3762
 msgid "Show dot files"
 msgstr "Visa punktfiler"
 
-#: src/LYOptions.c:3769
+#: src/LYOptions.c:3770
 msgid "Execution links"
 msgstr "Exekveringslänkar"
 
 #. Show transfer rate: SELECT
-#: src/LYOptions.c:3789
+#: src/LYOptions.c:3790
 msgid "Show transfer rate"
 msgstr "Visa överföringshastighet"
 
 #.
 #. * Special Files and Screens
 #.
-#: src/LYOptions.c:3809
+#: src/LYOptions.c:3810
 msgid "Special Files and Screens"
 msgstr "Speciella filer och skärmar"
 
-#: src/LYOptions.c:3814
+#: src/LYOptions.c:3815
 msgid "Multi-bookmarks"
 msgstr "Multibokmärken"
 
-#: src/LYOptions.c:3822
+#: src/LYOptions.c:3823
 msgid "Review/edit Bookmarks files"
 msgstr "Se/ändra bokmärkesfiler"
 
-#: src/LYOptions.c:3824
+#: src/LYOptions.c:3825
 msgid "Goto multi-bookmark menu"
 msgstr "Gå till multibokmärkesmenyn"
 
-#: src/LYOptions.c:3826
+#: src/LYOptions.c:3827
 msgid "Bookmarks file"
 msgstr "Bokmärkesfil"
 
 #. Visited Pages: SELECT
-#: src/LYOptions.c:3832
+#: src/LYOptions.c:3833
 msgid "Visited Pages"
 msgstr "Besökta sidor"
 
-#: src/LYOptions.c:3837
+#: src/LYOptions.c:3838
 msgid "View the file "
 msgstr "Visa filen "
 
@@ -5077,38 +5081,38 @@ msgstr "Lynx: kan inte börja, CERN-regelfilen %s ej tillgänglig\n"
 msgid "(no name)"
 msgstr "(inget namn)"
 
-#: src/LYReadCFG.c:1772
+#: src/LYReadCFG.c:1773
 #, c-format
 msgid "More than %d nested lynx.cfg includes -- perhaps there is a loop?!?\n"
 msgstr "Mer än %d staplade lynx.cfg-inkluderingar -- kanske en slinga?!?\n"
 
-#: src/LYReadCFG.c:1774
+#: src/LYReadCFG.c:1775
 #, c-format
 msgid "Last attempted include was '%s',\n"
 msgstr "Sista försökta inkludering var \"%s\",\n"
 
-#: src/LYReadCFG.c:1775
+#: src/LYReadCFG.c:1776
 #, c-format
 msgid "included from '%s'.\n"
 msgstr "inkluderad från \"%s\".\n"
 
-#: src/LYReadCFG.c:2181 src/LYReadCFG.c:2194 src/LYReadCFG.c:2252
+#: src/LYReadCFG.c:2183 src/LYReadCFG.c:2196 src/LYReadCFG.c:2254
 msgid "The following is read from your lynx.cfg file."
 msgstr "Följande läses från din lynx.cfg-fil."
 
-#: src/LYReadCFG.c:2182 src/LYReadCFG.c:2195
+#: src/LYReadCFG.c:2184 src/LYReadCFG.c:2197
 msgid "Please read the distribution"
 msgstr "Se distributionens"
 
-#: src/LYReadCFG.c:2188 src/LYReadCFG.c:2198
+#: src/LYReadCFG.c:2190 src/LYReadCFG.c:2200
 msgid "for more comments."
 msgstr "för ytterligare kommentarer."
 
-#: src/LYReadCFG.c:2234
+#: src/LYReadCFG.c:2236
 msgid "RELOAD THE CHANGES"
 msgstr "HÄMTA OM ÄNDRINGARNA"
 
-#: src/LYReadCFG.c:2242
+#: src/LYReadCFG.c:2244
 msgid "Your primary configuration"
 msgstr "Din primära konfiguration"
 
@@ -5411,7 +5415,7 @@ msgstr "Hittar inte hemkatalogen (HOME)"
 msgid "Normally disabled.  See ENABLE_LYNXRC in lynx.cfg\n"
 msgstr "Vanligtvis avstängd. Se ENABLE_LYNXRC i lynx.cfg\n"
 
-#: src/LYrcFile.c:317
+#: src/LYrcFile.c:318
 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"
@@ -5423,7 +5427,7 @@ msgstr ""
 "varje kaka. Sätt accept_all_cookies till \"TRUE\" för att acceptera\n"
 "alla kakor.\n"
 
-#: src/LYrcFile.c:324
+#: src/LYrcFile.c:325
 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"
@@ -5432,7 +5436,7 @@ msgstr ""
 "bookmark_file anger namn och plats för standardbokmärkesfilen, i vilken\n"
 "användaren kan klistra in länkar för att lätt komma åt dem senare.\n"
 
-#: src/LYrcFile.c:329
+#: src/LYrcFile.c:330
 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"
@@ -5442,7 +5446,7 @@ msgstr ""
 "med \"s\" eller \"/\" kommer sökningen som genomförs att göra skillnad på\n"
 "gemener och versaler. Förvalet är normalt sett av (\"off\").\n"
 
-#: src/LYrcFile.c:334
+#: src/LYrcFile.c:335
 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"
@@ -5456,7 +5460,7 @@ msgstr ""
 "använda sjubitarstolkningarna.\n"
 "Giltiga teckenuppsättningar är:\n"
 
-#: src/LYrcFile.c:341
+#: src/LYrcFile.c:342
 msgid ""
 "cookie_accept_domains and cookie_reject_domains are comma-delimited\n"
 "lists of domains from which Lynx should automatically accept or reject\n"
@@ -5470,7 +5474,7 @@ msgstr ""
 "att gå före. Flaggan accept_all_cookies går före alla inställningar\n"
 "som görs här.\n"
 
-#: src/LYrcFile.c:349
+#: src/LYrcFile.c:350
 msgid ""
 "cookie_file specifies the file from which to read persistent cookies.\n"
 "The default is ~/.lynx_cookies.\n"
@@ -5478,7 +5482,7 @@ msgstr ""
 "cookie_file anger filen som varaktiga kakor skall läsas från.\n"
 "Förval är ~/.lynx_cookies.\n"
 
-#: src/LYrcFile.c:354
+#: src/LYrcFile.c:355
 msgid ""
 "cookie_loose_invalid_domains, cookie_strict_invalid_domains, and\n"
 "cookie_query_invalid_domains are comma-delimited lists of which domains\n"
@@ -5496,7 +5500,7 @@ msgstr ""
 "sökväg- eller domänattribut. Alla domäner får som förval frågor till\n"
 "användaren för felaktiga sökvägar eller domäner.\n"
 
-#: src/LYrcFile.c:368
+#: src/LYrcFile.c:369
 msgid ""
 "dir_list_order specifies the directory list order under DIRED_SUPPORT\n"
 "(if implemented).  The default is \"ORDER_BY_NAME\"\n"
@@ -5504,7 +5508,7 @@ msgstr ""
 "dir_list_order anger kataloglistesortering i DIRED_SUPPORT (om det är\n"
 "implementerat). Förvalet är \"ORDER_BY_NAME\"\n"
 
-#: src/LYrcFile.c:373
+#: src/LYrcFile.c:374
 msgid ""
 "dir_list_styles specifies the directory list style under DIRED_SUPPORT\n"
 "(if implemented).  The default is \"MIXED_STYLE\", which sorts both\n"
@@ -5516,7 +5520,7 @@ msgstr ""
 "och kataloger tillsammanns. \"FILES_FIRST\" listar filer först, och\n"
 "\"DIRECTORIES_FIRST\" listar kataloger först.\n"
 
-#: src/LYrcFile.c:381
+#: src/LYrcFile.c:382
 msgid ""
 "If emacs_keys is to \"on\" then the normal EMACS movement keys:\n"
 "  ^N = down    ^P = up\n"
@@ -5528,7 +5532,7 @@ msgstr ""
 "  ^N = ned      ^P = upp\n"
 "  ^B = vänster  ^F = höger\n"
 
-#: src/LYrcFile.c:387
+#: src/LYrcFile.c:388
 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"
@@ -5540,7 +5544,7 @@ msgstr ""
 "filredigering, såvida det inte aktiveras från kommandoraden, och den inbyggda\n"
 "radredigeraren används för e-post.\n"
 
-#: src/LYrcFile.c:393
+#: src/LYrcFile.c:394
 msgid ""
 "The file_sorting_method specifies which value to sort on when viewing\n"
 "file lists such as FTP directories.  The options are:\n"
@@ -5556,7 +5560,7 @@ msgstr ""
 "   BY_SIZE     -- sorterar efter filstorlek\n"
 "   BY_DATE     -- sorterar efter fildatum\n"
 
-#: src/LYrcFile.c:411
+#: src/LYrcFile.c:412
 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"
@@ -5582,7 +5586,7 @@ msgstr ""
 "    Radera ord: ^B    ^F        ^E    = Radslut\n"
 "\n"
 
-#: src/LYrcFile.c:429
+#: src/LYrcFile.c:430
 msgid ""
 "The following allow you to define sub-bookmark files and descriptions.\n"
 "The format is multi_bookmark<capital_letter>=<filename>,<description>\n"
@@ -5595,7 +5599,7 @@ msgstr ""
 "Upp till 26 bokmärkesfiler (de stora bokstäverna A-Z) tillåts.\n"
 "Vi börjar med \"multi_bookmarkB\" eftersom \"A\" är förvalet (se ovan).\n"
 
-#: src/LYrcFile.c:435
+#: src/LYrcFile.c:436
 msgid ""
 "personal_mail_address specifies your personal mail address.  The\n"
 "address will be sent during HTTP file transfers for authorization and\n"
@@ -5613,7 +5617,7 @@ msgstr ""
 "även lämna detta fält blankt, men då inkluderas det inte i kommentarer\n"
 "du sänder.\n"
 
-#: src/LYrcFile.c:444
+#: src/LYrcFile.c:445
 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"
@@ -5640,7 +5644,7 @@ msgstr ""
 "servern sända ett felmeddelande, även om det är tillåtet att sända även\n"
 "ett icke-acceptabelt svar.\n"
 
-#: src/LYrcFile.c:460
+#: src/LYrcFile.c:461
 msgid ""
 "preferred_language specifies the language in MIME notation (e.g., en,\n"
 "fr, may be a comma-separated list in decreasing preference)\n"
@@ -5654,7 +5658,7 @@ msgstr ""
 "Om en fil i det språket finns att tillgå kommer servern sända den.\n"
 "Annars kommer servern sända filen i sitt standardspråk.\n"
 
-#: src/LYrcFile.c:471
+#: src/LYrcFile.c:472
 msgid ""
 "If run_all_execution_links is set \"on\" then all local execution links\n"
 "will be executed when they are selected.\n"
@@ -5676,7 +5680,7 @@ msgstr ""
 "          Detta bör endast aktiveras (\"on\") om du visar information från\n"
 "          tillförlitliga källor.\n"
 
-#: src/LYrcFile.c:482
+#: src/LYrcFile.c:483
 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"
@@ -5704,7 +5708,7 @@ msgstr ""
 "          Detta bör endast aktiveras (\"on\") om du visar information från\n"
 "          tillförlitliga källor.\n"
 
-#: src/LYrcFile.c:500
+#: src/LYrcFile.c:501
 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"
@@ -5722,7 +5726,7 @@ msgstr ""
 "värdet \"off\" väljer radioknappar. Förvalet kan gås förbi via\n"
 "kommandoradsflaggan -popup.\n"
 
-#: src/LYrcFile.c:510
+#: src/LYrcFile.c:511
 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"
@@ -5755,7 +5759,7 @@ msgstr ""
 "alternativmenyn. Om alternativen sparas kommer inställningarna \"on\" och\n"
 "\"off\" att tolkas som \"default\".\n"
 
-#: src/LYrcFile.c:527
+#: src/LYrcFile.c:528
 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"
@@ -5776,7 +5780,7 @@ msgstr ""
 "\"on\" placerar markören till vänster som förval, medan \"off\" \"gömmer\"\n"
 "markören. Förvalet kan gås förbi via kommandoradsflaggan -show_cursor.\n"
 
-#: src/LYrcFile.c:538
+#: src/LYrcFile.c:539
 msgid ""
 "show_dotfiles specifies that the directory listing should include\n"
 "\"hidden\" (dot) files/directories.  If set \"on\", this will be\n"
@@ -5791,7 +5795,7 @@ msgstr ""
 "filer är deaktiverat kommer skapandet av sådana filer via Lynx\n"
 "också att deaktiveras.\n"
 
-#: src/LYrcFile.c:549
+#: src/LYrcFile.c:550
 msgid ""
 "If sub_bookmarks is not turned \"off\", and multiple bookmarks have\n"
 "been defined (see below), then all bookmark operations will first\n"
@@ -5813,7 +5817,7 @@ msgstr ""
 "mellannivåer. Om detta alternativ sätts till \"standard\" visas menyn\n"
 "oavsett användarläge.\n"
 
-#: src/LYrcFile.c:563
+#: src/LYrcFile.c:564
 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"
@@ -5829,7 +5833,7 @@ msgstr ""
 "stänga av extrainformationen. Använd \"ADVANCED\" för att se adressen\n"
 "för den markerade länken nederst på skärmen.\n"
 
-#: src/LYrcFile.c:572
+#: src/LYrcFile.c:573
 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"
@@ -5839,7 +5843,7 @@ msgstr ""
 "istället för [INLINE], [LINK] eller [IMAGE]\n"
 "Se även VERBOSE_IMAGES i lynx.cfg\n"
 
-#: src/LYrcFile.c:577
+#: src/LYrcFile.c:578
 msgid ""
 "If vi_keys is set to \"on\", then the normal VI movement keys:\n"
 "  j = down    k = up\n"
@@ -5855,7 +5859,7 @@ msgstr ""
 "Versala \"H\", \"J\" och \"K\" aktiverar hjälp, hoppgenvägar respektiva\n"
 "tangentbordsinställningarna.\n"
 
-#: src/LYrcFile.c:585
+#: src/LYrcFile.c:586
 msgid ""
 "The visited_links setting controls how Lynx organizes the information\n"
 "in the Visited Links Page.\n"
@@ -5863,7 +5867,7 @@ msgstr ""
 "Inställningen visited_links anger hur Lynx organiserar informationen\n"
 "på sidan Använda länkar.\n"
 
-#: src/LYrcFile.c:803
+#: src/LYrcFile.c:804
 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"
@@ -5881,7 +5885,7 @@ msgstr ""
 "och motsvarande siffertangenter på tangentbordet fungerar som\n"
 "piltangetner, oavsett om NumLock är aktivt eller inte.\n"
 
-#: src/LYrcFile.c:812
+#: src/LYrcFile.c:813
 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"
@@ -5889,7 +5893,7 @@ msgstr ""
 "Om keypad_mode sätts till \"LINKS_ARE_NUMBERED\" kommer siffror\n"
 "att visas vid varje länk, och siffror används för att välja länk.\n"
 
-#: src/LYrcFile.c:816
+#: src/LYrcFile.c:817
 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"
@@ -5908,7 +5912,7 @@ msgstr ""
 "alternativet inte är synligt på skärmen. Referenslistor och utdata från\n"
 "listkommandot kommer även de att numrera formulärindatafält.\n"
 
-#: src/LYrcFile.c:825
+#: src/LYrcFile.c:826
 msgid ""
 "NOTE: Some fixed format documents may look disfigured when\n"
 "\"LINKS_ARE_NUMBERED\" or \"LINKS_AND_FORM_FIELDS_ARE_NUMBERED\" are\n"
@@ -5918,7 +5922,7 @@ msgstr ""
 "\"LINKS_ARE_NUMBERED\" eller \"LINKS_AND_FORM_FILES_ARE_NUMBERED\" är\n"
 "aktiva.\n"
 
-#: src/LYrcFile.c:857
+#: src/LYrcFile.c:858
 msgid ""
 "Lynx User Defaults File\n"
 "\n"
diff --git a/po/tr.po b/po/tr.po
index a6406967..c062d73c 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lynx-2.8.6-dev4\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-10-10 18:51-0400\n"
+"POT-Creation-Date: 2004-10-17 16:29-0400\n"
 "PO-Revision-Date: 2004-05-31 23:02+0300\n"
 "Last-Translator: Eyüp Hakan Duran <hakan_duran@hotmail.com>\n"
 "Language-Team: Turkish <gnu-tr-u12a@lists.sourceforge.net>\n"
@@ -2790,7 +2790,7 @@ msgstr "Önbellekte POST içerikli belge bulunmadý.  Yeniden gönderilsin mi?"
 msgid "Loading failed, use a previous copy."
 msgstr "Yükleme baþarýsýz, önceki bir kopyayý kullanýn."
 
-#: WWW/Library/Implementation/HTAccess.c:1045 src/GridText.c:8301
+#: WWW/Library/Implementation/HTAccess.c:1045 src/GridText.c:8296
 msgid "Loading incomplete."
 msgstr "Yükleme tamamlanmadý."
 
@@ -2859,7 +2859,7 @@ msgstr "%d bayt aktarýldý (%5d)"
 msgid "connect for data"
 msgstr "veri için baðlan"
 
-#: WWW/Library/Implementation/HTFTP.c:3738
+#: WWW/Library/Implementation/HTFTP.c:3741
 msgid "Receiving FTP file."
 msgstr "FTP dosyasý alýnýyor"
 
@@ -3018,7 +3018,7 @@ msgstr "Adres portu geçersiz"
 msgid "Address length looks invalid"
 msgstr "Adres uzunluðu geçersiz görünüyor"
 
-#: WWW/Library/Implementation/HTTCP.c:1551 WWW/Library/Implementation/HTTCP.c:1569
+#: WWW/Library/Implementation/HTTCP.c:1552 WWW/Library/Implementation/HTTCP.c:1570
 #, c-format
 msgid "Unable to locate remote host %s."
 msgstr "%s adlý karþý makina konumlandýrýlamýyor."
@@ -3027,38 +3027,38 @@ msgstr "%s adlý karþý makina konumlandýrýlamýyor."
 #. * but not HTAlert, because typically there will be other
 #. * alerts from the callers.  - kw
 #.
-#: WWW/Library/Implementation/HTTCP.c:1566 WWW/Library/Implementation/HTTelnet.c:108
+#: WWW/Library/Implementation/HTTCP.c:1567 WWW/Library/Implementation/HTTelnet.c:108
 #, c-format
 msgid "Invalid hostname %s"
 msgstr "Geçersiz makina adý %s"
 
-#: WWW/Library/Implementation/HTTCP.c:1580
+#: WWW/Library/Implementation/HTTCP.c:1581
 #, c-format
 msgid "Making %s connection to %s"
 msgstr "%2$s'e %1$s baðlantýsý kuruluyor"
 
-#: WWW/Library/Implementation/HTTCP.c:1591
+#: WWW/Library/Implementation/HTTCP.c:1592
 msgid "socket failed."
 msgstr "soket baþarýsýz."
 
-#: WWW/Library/Implementation/HTTCP.c:1604
+#: WWW/Library/Implementation/HTTCP.c:1605
 #, c-format
 msgid "socket failed: family %d addr %s port %s."
 msgstr "soket baþarýsýz: aile %d adres %s port %s."
 
-#: WWW/Library/Implementation/HTTCP.c:1628
+#: WWW/Library/Implementation/HTTCP.c:1629
 msgid "Could not make connection non-blocking."
 msgstr "Baðlantý engelsizleþtirilemedi (non-blocking)."
 
-#: WWW/Library/Implementation/HTTCP.c:1697
+#: WWW/Library/Implementation/HTTCP.c:1698
 msgid "Connection failed (too many retries)."
 msgstr "Baðlantý baþarýsýz (çok sayýda yeniden deneme)."
 
-#: WWW/Library/Implementation/HTTCP.c:1896
+#: WWW/Library/Implementation/HTTCP.c:1897
 msgid "Could not restore socket to blocking."
 msgstr "Soket engellemeye (blocking) geri yüklenemedi."
 
-#: WWW/Library/Implementation/HTTCP.c:1962
+#: WWW/Library/Implementation/HTTCP.c:1963
 msgid "Socket read failed for 180,000 tries."
 msgstr "Soket okunmasý 180,000 kez baþarýsýz."
 
@@ -3067,45 +3067,45 @@ msgstr "Soket okunmasý 180,000 kez baþarýsýz."
 msgid "Address contains a username: %s"
 msgstr "Adres bir kullanýcý adý içeriyor: %s"
 
-#: WWW/Library/Implementation/HTTP.c:497
+#: WWW/Library/Implementation/HTTP.c:531
 msgid "This client does not contain support for HTTPS URLs."
 msgstr "Bu istemci HTTPS URL'ler için destek içermiyor."
 
-#: WWW/Library/Implementation/HTTP.c:522
+#: WWW/Library/Implementation/HTTP.c:556
 msgid "Unable to connect to remote host."
 msgstr "Karþý makinaya baðlanýlamadý."
 
-#: WWW/Library/Implementation/HTTP.c:544
+#: WWW/Library/Implementation/HTTP.c:578
 msgid "Retrying connection without TLS."
 msgstr "Baðlantý, TLS'siz tekrar deneniyor."
 
-#: WWW/Library/Implementation/HTTP.c:587
+#: WWW/Library/Implementation/HTTP.c:621
 msgid "SSL error:Can't find common name in certificate-Continue?"
 msgstr "SSL hatasý:sertifikada ortak ad bulunamadý-Devam?"
 
-#: WWW/Library/Implementation/HTTP.c:604
+#: WWW/Library/Implementation/HTTP.c:638
 #, c-format
 msgid "SSL error:host(%s)!=cert(%s)-Continue?"
 msgstr "SSL hatasý:makina(%s)!=sert(%s)-Devam edilsin mi?"
 
-#: WWW/Library/Implementation/HTTP.c:616
+#: WWW/Library/Implementation/HTTP.c:650
 #, c-format
 msgid "Secure %d-bit %s (%s) HTTP connection"
 msgstr "Güvenli %d-bit %s (%s) HTTP baðlantýsý"
 
-#: WWW/Library/Implementation/HTTP.c:1086
+#: WWW/Library/Implementation/HTTP.c:1120
 msgid "Sending HTTP request."
 msgstr "HTTP istemi gönderiliyor."
 
-#: WWW/Library/Implementation/HTTP.c:1125
+#: WWW/Library/Implementation/HTTP.c:1159
 msgid "Unexpected network write error; connection aborted."
 msgstr "Umulmadýk aða yazma hatasý; baðlantý yarýda kesildi."
 
-#: WWW/Library/Implementation/HTTP.c:1131
+#: WWW/Library/Implementation/HTTP.c:1165
 msgid "HTTP request sent; waiting for response."
 msgstr "HTTP istemi gönderildi; yanýt bekleniyor."
 
-#: WWW/Library/Implementation/HTTP.c:1199
+#: WWW/Library/Implementation/HTTP.c:1233
 msgid "Unexpected network read error; connection aborted."
 msgstr "Umulmadýk aða yazma hatasý; baðlantý yarýda kesildi."
 
@@ -3118,7 +3118,7 @@ msgstr "Umulmadýk aða yazma hatasý; baðlantý yarýda kesildi."
 #. * 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:1393
+#: WWW/Library/Implementation/HTTP.c:1427
 msgid "Got unexpected Informational Status."
 msgstr "Umulmadýk Bilgisel Durum alýndý."
 
@@ -3128,7 +3128,7 @@ msgstr "Umulmadýk Bilgisel Durum alýndý."
 #. * content.  We'll instruct the user to do that, and
 #. * restore the current document.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1427
+#: WWW/Library/Implementation/HTTP.c:1461
 msgid "Request fulfilled.  Reset Content."
 msgstr "Ýstem karþýlandý.  Ýçeriði temizle."
 
@@ -3138,27 +3138,27 @@ msgstr "Ýstem karþýlandý.  Ýçeriði temizle."
 #. * 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:1544
+#: WWW/Library/Implementation/HTTP.c:1578
 msgid "Got unexpected 304 Not Modified status."
 msgstr "Umulmadýk 304 Deðiþtirilmedi durumu alýndý."
 
-#: WWW/Library/Implementation/HTTP.c:1607
+#: WWW/Library/Implementation/HTTP.c:1641
 msgid "Redirection of POST content requires user approval."
 msgstr "POST içeriðinin yeniden yönlendirilmesi kullanýcý onayý gerektirir."
 
-#: WWW/Library/Implementation/HTTP.c:1622
+#: WWW/Library/Implementation/HTTP.c:1656
 msgid "Have POST content.  Treating Permanent Redirection as Temporary.\n"
 msgstr "POST içeriði mevcut.  Kalýcý Yeniden Yönlendirmeye Geçici muamelesi yapýlýyor.\n"
 
-#: WWW/Library/Implementation/HTTP.c:1664
+#: WWW/Library/Implementation/HTTP.c:1698
 msgid "Retrying with access authorization information."
 msgstr "Eriþim yetkilendirme bilgisiyle yeniden deneniyor."
 
-#: WWW/Library/Implementation/HTTP.c:1676
+#: WWW/Library/Implementation/HTTP.c:1710
 msgid "Show the 401 message body?"
 msgstr "401 mesaj gövdesi gösterilsin mi?"
 
-#: WWW/Library/Implementation/HTTP.c:1719
+#: WWW/Library/Implementation/HTTP.c:1753
 msgid "Show the 407 message body?"
 msgstr "407 mesaj gövdesi gösterilsin mi?"
 
@@ -3166,7 +3166,7 @@ msgstr "407 mesaj gövdesi gösterilsin mi?"
 #. * Bad or unknown server_status number.  Take a chance and hope
 #. * there is something to display.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1819
+#: WWW/Library/Implementation/HTTP.c:1853
 msgid "Unknown status reply from server!"
 msgstr "Sunucudan bilinmeyen durum yanýtý!"
 
@@ -3430,30 +3430,30 @@ msgstr "keygen alaný"
 msgid "unknown form field"
 msgstr "bilinmeyen form alaný"
 
-#: src/GridText.c:10020
+#: src/GridText.c:10015
 msgid "Can't open file for uploading"
 msgstr "Yüklemek için dosya açýlamýyor."
 
-#: src/GridText.c:11170
+#: src/GridText.c:11165
 #, c-format
 msgid "Submitting %s"
 msgstr "%s gönderiliyor"
 
 #. ugliness has happened; inform user and do the best we can
-#: src/GridText.c:12318
+#: src/GridText.c:12313
 msgid "Hang Detect: TextAnchor struct corrupted - suggest aborting!"
 msgstr "Takýlma Saptandý: TextAnchor struct bozuk - sonlandýrmanýz önerilir!"
 
 #. don't show previous state
-#: src/GridText.c:12523
+#: src/GridText.c:12518
 msgid "Wrap lines to fit displayed area?"
 msgstr "Görüntülenen alana sýðmak üzere satýrlar sarmalansýn mý?"
 
-#: src/GridText.c:12575
+#: src/GridText.c:12570
 msgid "Very long lines have been wrapped!"
 msgstr "Çok uzun satýrlar sarmalandý!"
 
-#: src/GridText.c:13016
+#: src/GridText.c:13011
 msgid "Very long lines have been truncated!"
 msgstr "Çok uzun satýrlarýn sonundan kýrpýldý!"
 
@@ -4677,116 +4677,120 @@ msgstr "Tüm türleri kabul et"
 msgid "gzip"
 msgstr "gzip"
 
-#: src/LYOptions.c:2388
+#: src/LYOptions.c:2386
+msgid "deflate"
+msgstr ""
+
+#: src/LYOptions.c:2389
 msgid "compress"
 msgstr "sýkýþtýr"
 
-#: src/LYOptions.c:2391
+#: src/LYOptions.c:2392
 msgid "bzip2"
 msgstr "bzip2"
 
-#: src/LYOptions.c:2393
+#: src/LYOptions.c:2394
 msgid "All"
 msgstr "Tümü"
 
-#: src/LYOptions.c:2658 src/LYOptions.c:2682
+#: src/LYOptions.c:2659 src/LYOptions.c:2683
 #, c-format
 msgid "Use %s to invoke the Options menu!"
 msgstr "Seçenekler menüsünü çaðýrmak için %s kullanýnýz!"
 
-#: src/LYOptions.c:3421
+#: src/LYOptions.c:3422
 msgid "(options marked with (!) will not be saved)"
 msgstr "((!) ile iþaretlenmiþ seçenekler kaydedilmeyecek)"
 
-#: src/LYOptions.c:3429
+#: src/LYOptions.c:3430
 msgid "General Preferences"
 msgstr "Genel Tercihler"
 
 #. ***************************************************************
 #. User Mode: SELECT
-#: src/LYOptions.c:3433
+#: src/LYOptions.c:3434
 msgid "User mode"
 msgstr "Kullanýcý kipi"
 
 #. Editor: INPUT
-#: src/LYOptions.c:3439
+#: src/LYOptions.c:3440
 msgid "Editor"
 msgstr "Düzenleyici"
 
 #. Search Type: SELECT
-#: src/LYOptions.c:3444
+#: src/LYOptions.c:3445
 msgid "Type of Search"
 msgstr "Arama Tipi"
 
-#: src/LYOptions.c:3449
+#: src/LYOptions.c:3450
 msgid "Security and Privacy"
 msgstr "Güvenlik ve Mahremiyet"
 
 #. ***************************************************************
 #. Cookies: SELECT
-#: src/LYOptions.c:3453
+#: src/LYOptions.c:3454
 msgid "Cookies"
 msgstr "Çerezler"
 
 #. Cookie Prompting: SELECT
-#: src/LYOptions.c:3467
+#: src/LYOptions.c:3468
 msgid "Invalid-Cookie Prompting"
 msgstr "Geçersiz Çerez Bilgi Ýstemi"
 
 #. SSL Prompting: SELECT
-#: src/LYOptions.c:3474
+#: src/LYOptions.c:3475
 msgid "SSL Prompting"
 msgstr "SSL Bilgi Ýstemi"
 
-#: src/LYOptions.c:3480
+#: src/LYOptions.c:3481
 msgid "Keyboard Input"
 msgstr "Klavye Girdisi"
 
 #. ***************************************************************
 #. Keypad Mode: SELECT
-#: src/LYOptions.c:3484
+#: src/LYOptions.c:3485
 msgid "Keypad mode"
 msgstr "Mini klavye(keypad) kipi"
 
 #. Emacs keys: ON/OFF
-#: src/LYOptions.c:3490
+#: src/LYOptions.c:3491
 msgid "Emacs keys"
 msgstr "Emacs tuþlarý"
 
 #. VI Keys: ON/OFF
-#: src/LYOptions.c:3496
+#: src/LYOptions.c:3497
 msgid "VI keys"
 msgstr "VI tuþlarý"
 
 #. Line edit style: SELECT
 #. well, at least 2 line edit styles available
-#: src/LYOptions.c:3503
+#: src/LYOptions.c:3504
 msgid "Line edit style"
 msgstr "Satýr düzenleme stili"
 
 #. Keyboard layout: SELECT
-#: src/LYOptions.c:3515
+#: src/LYOptions.c:3516
 msgid "Keyboard layout"
 msgstr "Klavye yerleþimi"
 
 #.
 #. * Display and Character Set
 #.
-#: src/LYOptions.c:3529
+#: src/LYOptions.c:3530
 msgid "Display and Character Set"
 msgstr "Görüntüleme ve Karakter Kümesi"
 
 #. Use locale-based character set: ON/OFF
-#: src/LYOptions.c:3534
+#: src/LYOptions.c:3535
 msgid "Use locale-based character set"
 msgstr "Yerel tabanlý karakter kümesini kullan"
 
 #. Display Character Set: SELECT
-#: src/LYOptions.c:3543
+#: src/LYOptions.c:3544
 msgid "Display character set"
 msgstr "Karakter kümesini görüntüle"
 
-#: src/LYOptions.c:3574
+#: src/LYOptions.c:3575
 msgid "Assumed document character set"
 msgstr "Varsayýlan belge karakter kümesi"
 
@@ -4795,164 +4799,164 @@ msgstr "Varsayýlan belge karakter kümesi"
 #. * we split the header to make it more readable:
 #. * "CJK mode" for CJK display charsets, and "Raw 8-bit" for others.
 #.
-#: src/LYOptions.c:3594
+#: src/LYOptions.c:3595
 msgid "CJK mode"
 msgstr "CJK kipi"
 
-#: src/LYOptions.c:3596
+#: src/LYOptions.c:3597
 msgid "Raw 8-bit"
 msgstr "Ham 8-bit"
 
 #. X Display: INPUT
-#: src/LYOptions.c:3604
+#: src/LYOptions.c:3605
 msgid "X Display"
 msgstr "X Görüntüleme"
 
 #.
 #. * Document Appearance
 #.
-#: src/LYOptions.c:3610
+#: src/LYOptions.c:3611
 msgid "Document Appearance"
 msgstr "Belge Görünümü"
 
-#: src/LYOptions.c:3616
+#: src/LYOptions.c:3617
 msgid "Show color"
 msgstr "Renkleri göster"
 
 #. Show cursor: ON/OFF
-#: src/LYOptions.c:3640
+#: src/LYOptions.c:3641
 msgid "Show cursor"
 msgstr "Ýmleci göster"
 
 #. Underline links: ON/OFF
-#: src/LYOptions.c:3646
+#: src/LYOptions.c:3647
 msgid "Underline links"
 msgstr "Linklerin altý çizili"
 
 #. Show scrollbar: ON/OFF
-#: src/LYOptions.c:3653
+#: src/LYOptions.c:3654
 msgid "Show scrollbar"
 msgstr "Kaydýrma çubuðunu göster"
 
 #. Select Popups: ON/OFF
-#: src/LYOptions.c:3660
+#: src/LYOptions.c:3661
 msgid "Popups for select fields"
 msgstr "Seçme alanlar için açýlýrlar(popups)"
 
 #. HTML error recovery: SELECT
-#: src/LYOptions.c:3666
+#: src/LYOptions.c:3667
 msgid "HTML error recovery"
 msgstr "HTML hata kurtarma"
 
 #. Show Images: SELECT
-#: src/LYOptions.c:3672
+#: src/LYOptions.c:3673
 msgid "Show images"
 msgstr "Resimleri göster"
 
 #. Verbose Images: ON/OFF
-#: src/LYOptions.c:3686
+#: src/LYOptions.c:3687
 msgid "Verbose images"
 msgstr "Resimleri dillendir"
 
-#: src/LYOptions.c:3695
+#: src/LYOptions.c:3696
 msgid "Headers Transferred to Remote Servers"
 msgstr "Baþlýklar Karþý Sunuculara Aktarýldý"
 
 #. ***************************************************************
 #. Mail Address: INPUT
-#: src/LYOptions.c:3699
+#: src/LYOptions.c:3700
 msgid "Personal mail address"
 msgstr "Kiþisel mektup adresi"
 
 #. Preferred media type: SELECT
-#: src/LYOptions.c:3704
+#: src/LYOptions.c:3705
 msgid "Preferred media type"
 msgstr "Tercih edilen ortam türü"
 
 #. Preferred encoding: SELECT
-#: src/LYOptions.c:3710
+#: src/LYOptions.c:3711
 msgid "Preferred encoding"
 msgstr "Tercih edilen kodlama"
 
 #. Preferred Document Character Set: INPUT
-#: src/LYOptions.c:3716
+#: src/LYOptions.c:3717
 msgid "Preferred document character set"
 msgstr "Tercih edilen belge karakter kümesi"
 
 #. Preferred Document Language: INPUT
-#: src/LYOptions.c:3721
+#: src/LYOptions.c:3722
 msgid "Preferred document language"
 msgstr "Tercih edilen belge dili"
 
-#: src/LYOptions.c:3727
+#: src/LYOptions.c:3728
 msgid "User-Agent header"
 msgstr "Kullanýcý-Ajaný baþlýðý"
 
 #.
 #. * Listing and Accessing Files
 #.
-#: src/LYOptions.c:3735
+#: src/LYOptions.c:3736
 msgid "Listing and Accessing Files"
 msgstr "Dosya Listeleme ve Eriþim"
 
 #. ***************************************************************
 #. FTP sort: SELECT
-#: src/LYOptions.c:3739
+#: src/LYOptions.c:3740
 msgid "FTP sort criteria"
 msgstr "FTP sýralama ölçütleri"
 
 #. Local Directory Sort: SELECT
-#: src/LYOptions.c:3746
+#: src/LYOptions.c:3747
 msgid "Local directory sort criteria"
 msgstr "Yerel dizin sýralama ölçütleri"
 
 #. Local Directory Order: SELECT
-#: src/LYOptions.c:3752
+#: src/LYOptions.c:3753
 msgid "Local directory sort order"
 msgstr "Yerel dizin sýralama ölçütleri"
 
-#: src/LYOptions.c:3761
+#: src/LYOptions.c:3762
 msgid "Show dot files"
 msgstr "Nokta dosyalarý göster"
 
-#: src/LYOptions.c:3769
+#: src/LYOptions.c:3770
 msgid "Execution links"
 msgstr "Ýcra linkleri"
 
 #. Show transfer rate: SELECT
-#: src/LYOptions.c:3789
+#: src/LYOptions.c:3790
 msgid "Show transfer rate"
 msgstr "Aktarým hýzýný göster"
 
 #.
 #. * Special Files and Screens
 #.
-#: src/LYOptions.c:3809
+#: src/LYOptions.c:3810
 msgid "Special Files and Screens"
 msgstr "Özel Dosyalar ve Ekranlar"
 
-#: src/LYOptions.c:3814
+#: src/LYOptions.c:3815
 msgid "Multi-bookmarks"
 msgstr "Çoklu-yer imleri"
 
-#: src/LYOptions.c:3822
+#: src/LYOptions.c:3823
 msgid "Review/edit Bookmarks files"
 msgstr "Yer Ými dosyalarýný gözden geçir/düzenle"
 
-#: src/LYOptions.c:3824
+#: src/LYOptions.c:3825
 msgid "Goto multi-bookmark menu"
 msgstr "Çoklu-yer imi menüsüne git"
 
-#: src/LYOptions.c:3826
+#: src/LYOptions.c:3827
 msgid "Bookmarks file"
 msgstr "Yer Ýmleri dosyasý"
 
 #. Visited Pages: SELECT
-#: src/LYOptions.c:3832
+#: src/LYOptions.c:3833
 msgid "Visited Pages"
 msgstr "Uðranan Sayfalar"
 
-#: src/LYOptions.c:3837
+#: src/LYOptions.c:3838
 msgid "View the file "
 msgstr "Dosyayý görüntüle"
 
@@ -5072,38 +5076,38 @@ msgstr "Lynx: baþlayamýyor, CERN kurallarý dosyasý %s temin edilemiyor\n"
 msgid "(no name)"
 msgstr "(isimsiz)"
 
-#: src/LYReadCFG.c:1772
+#: src/LYReadCFG.c:1773
 #, c-format
 msgid "More than %d nested lynx.cfg includes -- perhaps there is a loop?!?\n"
 msgstr "lynx.cfg içermeleri, %d'den çok içiçe geçmiþ -- belki bir döngü olmasýn?\n"
 
-#: src/LYReadCFG.c:1774
+#: src/LYReadCFG.c:1775
 #, c-format
 msgid "Last attempted include was '%s',\n"
 msgstr "Son kalkýþýlan içerme '%s' idi,\n"
 
-#: src/LYReadCFG.c:1775
+#: src/LYReadCFG.c:1776
 #, c-format
 msgid "included from '%s'.\n"
 msgstr "'%s'den içerilmiþti.\n"
 
-#: src/LYReadCFG.c:2181 src/LYReadCFG.c:2194 src/LYReadCFG.c:2252
+#: src/LYReadCFG.c:2183 src/LYReadCFG.c:2196 src/LYReadCFG.c:2254
 msgid "The following is read from your lynx.cfg file."
 msgstr "Aþaðýdaki, lynx.cfg dosyanýzdan okunmuþtur."
 
-#: src/LYReadCFG.c:2182 src/LYReadCFG.c:2195
+#: src/LYReadCFG.c:2184 src/LYReadCFG.c:2197
 msgid "Please read the distribution"
 msgstr "Lütfen daha fazla yorum için"
 
-#: src/LYReadCFG.c:2188 src/LYReadCFG.c:2198
+#: src/LYReadCFG.c:2190 src/LYReadCFG.c:2200
 msgid "for more comments."
 msgstr "daðýtýmý okuyunuz."
 
-#: src/LYReadCFG.c:2234
+#: src/LYReadCFG.c:2236
 msgid "RELOAD THE CHANGES"
 msgstr "DEÐÝÞÝKLÝKLERÝ YENÝDEN YÜKLE"
 
-#: src/LYReadCFG.c:2242
+#: src/LYReadCFG.c:2244
 msgid "Your primary configuration"
 msgstr "Birincil ayarlarýnýz"
 
@@ -5406,7 +5410,7 @@ msgstr "EV dizini bulunamýyor"
 msgid "Normally disabled.  See ENABLE_LYNXRC in lynx.cfg\n"
 msgstr "Normalde devre dýþýdýr.  Bkz. lynx.cfg'de ENABLE_LYNXRC\n"
 
-#: src/LYrcFile.c:317
+#: src/LYrcFile.c:318
 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"
@@ -5418,7 +5422,7 @@ msgstr ""
 "olup, her çerez için sorulmasýný saðlar.  Tüm çerezleri kabul etmek için\n"
 "accept_all_cookies'i \"TRUE\" (doðru)ya ayarlayýn.\n"
 
-#: src/LYrcFile.c:324
+#: src/LYrcFile.c:325
 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"
@@ -5428,7 +5432,7 @@ msgstr ""
 "için linkleri içine yapýþtýrdýðý öntanýmlý yer imi dosyasýnýn adý\n"
 "ve konumunu belirtir.\n"
 
-#: src/LYrcFile.c:329
+#: src/LYrcFile.c:330
 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"
@@ -5438,7 +5442,7 @@ msgstr ""
 "bir arama baþlattýðýnda, arama büyük/küçük harfe duyarSIZ olmak yerine duyarlý\n"
 "olarak yapýlacaktýr.  Öntanýmlýsý genellikle \"off\" (kapalý)dýr.\n"
 
-#: src/LYrcFile.c:334
+#: src/LYrcFile.c:335
 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"
@@ -5452,7 +5456,7 @@ msgstr ""
 "yaklaþýklýklarýný deneyebilirsiniz.\n"
 "Mevcut geçerli karakter kümeleri þunlardýr:\n"
 
-#: src/LYrcFile.c:341
+#: src/LYrcFile.c:342
 msgid ""
 "cookie_accept_domains and cookie_reject_domains are comma-delimited\n"
 "lists of domains from which Lynx should automatically accept or reject\n"
@@ -5466,7 +5470,7 @@ msgstr ""
 "öncelik taþýr.  accept_all_cookies parametresi, burada yapýlan tüm ayarlarý\n"
 "geçersiz kýlar.\n"
 
-#: src/LYrcFile.c:349
+#: src/LYrcFile.c:350
 msgid ""
 "cookie_file specifies the file from which to read persistent cookies.\n"
 "The default is ~/.lynx_cookies.\n"
@@ -5474,7 +5478,7 @@ msgstr ""
 "cookie_file kalýcý çerezlerin okunacaðý dosyayý belirler.\n"
 "Öntanýmlýsý ~/.lynx_cookies'dir.\n"
 
-#: src/LYrcFile.c:354
+#: src/LYrcFile.c:355
 msgid ""
 "cookie_loose_invalid_domains, cookie_strict_invalid_domains, and\n"
 "cookie_query_invalid_domains are comma-delimited lists of which domains\n"
@@ -5492,7 +5496,7 @@ msgstr ""
 "yol ya da yöre öznitelikli çerez kurma izni verilir.  Tüm yöreler, öntanýmlý\n"
 "olarak, geçersiz bir yol ya da yöre (özniteliðini) kullanýcýya sorgulatýr.\n"
 
-#: src/LYrcFile.c:368
+#: src/LYrcFile.c:369
 msgid ""
 "dir_list_order specifies the directory list order under DIRED_SUPPORT\n"
 "(if implemented).  The default is \"ORDER_BY_NAME\"\n"
@@ -5500,7 +5504,7 @@ msgstr ""
 "dir_list_order (eðer mevcutsa) DIRED_SUPPORT altýndaki dizin listesi\n"
 "sýrasýný belirler.  Öntanýmlýsý \"ORDER_BY_NAME\"'dir\n"
 
-#: src/LYrcFile.c:373
+#: src/LYrcFile.c:374
 msgid ""
 "dir_list_styles specifies the directory list style under DIRED_SUPPORT\n"
 "(if implemented).  The default is \"MIXED_STYLE\", which sorts both\n"
@@ -5512,7 +5516,7 @@ msgstr ""
 "ve dizinleri birlikte sýralar.  \"FILES_FIRST\" önce dosyalarý,\n"
 "\"DIRECTORIES_FIRST\" önce dizinleri sýralar.\n"
 
-#: src/LYrcFile.c:381
+#: src/LYrcFile.c:382
 msgid ""
 "If emacs_keys is to \"on\" then the normal EMACS movement keys:\n"
 "  ^N = down    ^P = up\n"
@@ -5524,7 +5528,7 @@ msgstr ""
 "  ^B = sol      ^F = sað\n"
 "etkinleþtirilecektir.\n"
 
-#: src/LYrcFile.c:387
+#: src/LYrcFile.c:388
 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"
@@ -5536,7 +5540,7 @@ msgstr ""
 "etkinleþtirilmedikçe dosya düzenleme devre dýþý kalýr ve posta göndermek için yerleþik satýr\n"
 "düzenleyici kullanýlýr.\n"
 
-#: src/LYrcFile.c:393
+#: src/LYrcFile.c:394
 msgid ""
 "The file_sorting_method specifies which value to sort on when viewing\n"
 "file lists such as FTP directories.  The options are:\n"
@@ -5552,7 +5556,7 @@ msgstr ""
 "   BY_SIZE     -- dosya boyutuna göre sýralar\n"
 "   BY_DATE     -- dosyanýn tarihine göre sýralar\n"
 
-#: src/LYrcFile.c:411
+#: src/LYrcFile.c:412
 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"
@@ -5578,7 +5582,7 @@ msgstr ""
 "\n"
 "Mevcut satýr düzenleme kipleri þunlardýr:\n"
 
-#: src/LYrcFile.c:429
+#: src/LYrcFile.c:430
 msgid ""
 "The following allow you to define sub-bookmark files and descriptions.\n"
 "The format is multi_bookmark<capital_letter>=<filename>,<description>\n"
@@ -5590,7 +5594,7 @@ msgstr ""
 "26 yer imi dosyasýna (Ýngilizce'deki büyük harfler) kadar izin verilir.\n"
 "\"multi_bookmarkB\" ile baþlanýr, zira 'A' öntanýmlý olandýr (yukarýya bkz).\n"
 
-#: src/LYrcFile.c:435
+#: src/LYrcFile.c:436
 msgid ""
 "personal_mail_address specifies your personal mail address.  The\n"
 "address will be sent during HTTP file transfers for authorization and\n"
@@ -5609,7 +5613,7 @@ msgstr ""
 "boþ da býrakabilirsiniz, ama o zaman gönderilmiþ yorumlarýnýzda da\n"
 "bu alan içerilmeyecektir.\n"
 
-#: src/LYrcFile.c:444
+#: src/LYrcFile.c:445
 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"
@@ -5637,7 +5641,7 @@ msgstr ""
 "gönderimine de izin verilir.\n"
 "\n"
 
-#: src/LYrcFile.c:460
+#: src/LYrcFile.c:461
 msgid ""
 "preferred_language specifies the language in MIME notation (e.g., en,\n"
 "fr, may be a comma-separated list in decreasing preference)\n"
@@ -5651,7 +5655,7 @@ msgstr ""
 "O dilde bir dosya mevcutsa, sunucu onu gönderecektir.\n"
 "Aksi halde, sunucu öntanýmlý dilindeki dosyayý gönderir.\n"
 
-#: src/LYrcFile.c:471
+#: src/LYrcFile.c:472
 msgid ""
 "If run_all_execution_links is set \"on\" then all local execution links\n"
 "will be executed when they are selected.\n"
@@ -5673,7 +5677,7 @@ msgstr ""
 "        yalnýzca güvenilir kaynak bilgisi görüntülediðiniz koþulda \"on\" (açýk)a\n"
 "        ayarlanmalýdýr.\n"
 
-#: src/LYrcFile.c:482
+#: src/LYrcFile.c:483
 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"
@@ -5700,7 +5704,7 @@ msgstr ""
 "        yalnýzca güvenilir kaynak bilgisi görüntülediðiniz koþulda \"on\" (açýk)a\n"
 "        ayarlanmalýdýr.\n"
 
-#: src/LYrcFile.c:500
+#: src/LYrcFile.c:501
 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"
@@ -5718,7 +5722,7 @@ msgstr ""
 "olarak açýlýr menüler kurarken, \"off\" (kapalý), radyo kutularý kullanýmýný kuracaktýr.\n"
 "Öntanýmlý, -popup komut satýr anahtarýyla geçersiz kýlýnabilir.\n"
 
-#: src/LYrcFile.c:510
+#: src/LYrcFile.c:511
 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"
@@ -5752,7 +5756,7 @@ msgstr ""
 "\"on\" (açýk) \"off\" (kapalý) ve \"show color\" (renk göster) ayarlarý \"default\"\n"
 "(öntanýmlý) olarak muamele görecektir.\n"
 
-#: src/LYrcFile.c:527
+#: src/LYrcFile.c:528
 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"
@@ -5774,7 +5778,7 @@ msgstr ""
 "imlecin gizlenmesini saðlar.\n"
 "Öntanýmlý, -show_cursor komut satýr anahtarýyla geçersiz kýlýnabilir.\n"
 
-#: src/LYrcFile.c:538
+#: src/LYrcFile.c:539
 msgid ""
 "show_dotfiles specifies that the directory listing should include\n"
 "\"hidden\" (dot) files/directories.  If set \"on\", this will be\n"
@@ -5788,7 +5792,7 @@ msgstr ""
 "satýr seçeneðiyle kýsýtlanmayacaktýr.  Eðer gizli dosyalarýn gösterimi devre dýþý\n"
 "býrakýlýrsa, Lynx aracýlýðýyla bu tür dosyalarýn oluþturulmasý da devre dýþý kalacaktýr.\n"
 
-#: src/LYrcFile.c:549
+#: src/LYrcFile.c:550
 msgid ""
 "If sub_bookmarks is not turned \"off\", and multiple bookmarks have\n"
 "been defined (see below), then all bookmark operations will first\n"
@@ -5810,7 +5814,7 @@ msgstr ""
 "\"standard\"a ayarlandýðýnda menü, kullanýcý kipinden baðýmsýz olarak\n"
 "görüntülenecektir.\n"
 
-#: src/LYrcFile.c:563
+#: src/LYrcFile.c:564
 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"
@@ -5826,7 +5830,7 @@ msgstr ""
 "ayarlayýnýz.  Ekranýn en altýnda mevcut seçilmiþ linkin URL'sini görmek için\n"
 "\"ADVANCED\" (ileri düzey)i kullanýn.\n"
 
-#: src/LYrcFile.c:572
+#: src/LYrcFile.c:573
 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"
@@ -5836,7 +5840,7 @@ msgstr ""
 "[IMAGE] yerine resim kaynak dosyasýnýn ismini yazacaktýr.\n"
 "Ayrýca lynx.cfg'deki VERBOSE_IMAGES'a bkz\n"
 
-#: src/LYrcFile.c:577
+#: src/LYrcFile.c:578
 msgid ""
 "If vi_keys is set to \"on\", then the normal VI movement keys:\n"
 "  j = down    k = up\n"
@@ -5852,7 +5856,7 @@ msgstr ""
 "Büyük 'H', 'J' ve 'K', hâlâ sýrasýyla yardým, kýsayollara\n"
 "sýçrama ve tuþeþlem görüntülemeyi etkinleþtireceklerdir.\n"
 
-#: src/LYrcFile.c:585
+#: src/LYrcFile.c:586
 msgid ""
 "The visited_links setting controls how Lynx organizes the information\n"
 "in the Visited Links Page.\n"
@@ -5860,7 +5864,7 @@ msgstr ""
 "visited_links ayarý, Lynx'in Uðranmýþ Linkler Sayfasý'ndaki bilgiyi\n"
 "nasýl düzenleyeceðini denetler.\n"
 
-#: src/LYrcFile.c:803
+#: src/LYrcFile.c:804
 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"
@@ -5878,7 +5882,7 @@ msgstr ""
 "ve karþýlýk gelen klavye rakamlarý, numlock'ýn açýk olup olmadýðýndan\n"
 "baðýmsýz olarak ok tuþlarý gibi davranacaktýr.\n"
 
-#: src/LYrcFile.c:812
+#: src/LYrcFile.c:813
 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"
@@ -5886,7 +5890,7 @@ msgstr ""
 "Eðer keypad_mode \"LINKS_ARE_NUMBERED\"e ayarlanýrsa, her linkin yanýnda\n"
 "numaralar belirecek ve bu numaralar linkleri seçmekte kullanýlacaktýr.\n"
 
-#: src/LYrcFile.c:816
+#: src/LYrcFile.c:817
 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"
@@ -5904,7 +5908,7 @@ msgstr ""
 "bir seçenek no'su tuþlayarak seçeneði seçebilir.  Referans listeleri ve\n"
 "list komutu çýktýsý da form girdilerini numaralandýrýr.\n"
 
-#: src/LYrcFile.c:825
+#: src/LYrcFile.c:826
 msgid ""
 "NOTE: Some fixed format documents may look disfigured when\n"
 "\"LINKS_ARE_NUMBERED\" or \"LINKS_AND_FORM_FIELDS_ARE_NUMBERED\" are\n"
@@ -5914,7 +5918,7 @@ msgstr ""
 "etkinleþtirildiðinde, bazý sabit biçemli belgeler bozuk þekilde\n"
 "görünebilir.\n"
 
-#: src/LYrcFile.c:857
+#: src/LYrcFile.c:858
 msgid ""
 "Lynx User Defaults File\n"
 "\n"
diff --git a/po/uk.po b/po/uk.po
index 461c86b9..fb21e05f 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -3,13 +3,13 @@
 # Volodymyr M. Lisivka <lvm@mystery.lviv.net>, 2003
 # Dmytro O. Redchuk <dor@kiev-online.net>, 2001-2002
 # Olexander Kunytsa <kunia@snark.ukma.kiev.ua>, 2000-2001
-# @Id: uk.po 1.9 Sun, 10 Oct 2004 17:29:46 -0700 dickey @
+# @Id: uk.po 1.10 Sun, 17 Oct 2004 14:54:30 -0700 dickey @
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: lynx 2.8.5pre9\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-10-10 18:51-0400\n"
+"POT-Creation-Date: 2004-10-17 16:29-0400\n"
 "PO-Revision-Date: 2003-01-22 18:21EEST\n"
 "Last-Translator: Volodymyr M. Lisivka <lvm@mystery.lviv.net>\n"
 "Language-Team: Ukrainian <translation-team-uk@lists.sourceforge.net>\n"
@@ -2865,7 +2865,7 @@ msgstr ""
 msgid "Loading failed, use a previous copy."
 msgstr ""
 
-#: WWW/Library/Implementation/HTAccess.c:1045 src/GridText.c:8301
+#: WWW/Library/Implementation/HTAccess.c:1045 src/GridText.c:8296
 msgid "Loading incomplete."
 msgstr "úÁ×ÁÎÔÁÖÅÎÎÑ ÎÅ ÚÁ×ÅÒÛÅÎÏ."
 
@@ -2938,7 +2938,7 @@ msgstr "ðÅÒÅËÁÞÁÎÏ %d ÂÁÊÔ¦× (%5d)"
 msgid "connect for data"
 msgstr ""
 
-#: WWW/Library/Implementation/HTFTP.c:3738
+#: WWW/Library/Implementation/HTFTP.c:3741
 msgid "Receiving FTP file."
 msgstr "ïÔÒÉÍÕ¤ÍÏ ÆÁÊÌ FTP."
 
@@ -3097,7 +3097,7 @@ msgstr "áÄÒÅÓÁ ÍÁ¤ ÎÅצÒÎÏÇÏ ÐÏÒÔÕ"
 msgid "Address length looks invalid"
 msgstr "äÏ×ÖÉÎÁ ÁÄÒÅÓÉ, ÓÈÏÖÅ, ÎÅצÒÎÁ"
 
-#: WWW/Library/Implementation/HTTCP.c:1551 WWW/Library/Implementation/HTTCP.c:1569
+#: WWW/Library/Implementation/HTTCP.c:1552 WWW/Library/Implementation/HTTCP.c:1570
 #, c-format
 msgid "Unable to locate remote host %s."
 msgstr "îÅ ÍÏÖÕ ÚÎÁÊÔÉ ×¦ÄÄÁÌÅÎÉÊ ÓÅÒ×ÅÒ %s."
@@ -3106,38 +3106,38 @@ msgstr "îÅ ÍÏÖÕ ÚÎÁÊÔÉ ×¦ÄÄÁÌÅÎÉÊ ÓÅÒ×ÅÒ %s."
 #. * but not HTAlert, because typically there will be other
 #. * alerts from the callers.  - kw
 #.
-#: WWW/Library/Implementation/HTTCP.c:1566 WWW/Library/Implementation/HTTelnet.c:108
+#: WWW/Library/Implementation/HTTCP.c:1567 WWW/Library/Implementation/HTTelnet.c:108
 #, c-format
 msgid "Invalid hostname %s"
 msgstr "îÅÐÒÁ×ÉÌØÎÅ ¦Í'Ñ ÍÁÛÉÎÉ %s"
 
-#: WWW/Library/Implementation/HTTCP.c:1580
+#: WWW/Library/Implementation/HTTCP.c:1581
 #, c-format
 msgid "Making %s connection to %s"
 msgstr "÷ÓÔÁÎÏ×ÌÀ¤ÍÏ %s Ú'¤ÄÎÁÎÎÑ ÄÏ %s"
 
-#: WWW/Library/Implementation/HTTCP.c:1591
+#: WWW/Library/Implementation/HTTCP.c:1592
 msgid "socket failed."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1604
+#: WWW/Library/Implementation/HTTCP.c:1605
 #, c-format
 msgid "socket failed: family %d addr %s port %s."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1628
+#: WWW/Library/Implementation/HTTCP.c:1629
 msgid "Could not make connection non-blocking."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1697
+#: WWW/Library/Implementation/HTTCP.c:1698
 msgid "Connection failed (too many retries)."
 msgstr "ú'¤ÄÎÁÔÉÓÑ ÎÅ ×ÄÁÌÏÓÑ (ÚÁÂÁÇÁÔÏ ÓÐÒÏÂ)."
 
-#: WWW/Library/Implementation/HTTCP.c:1896
+#: WWW/Library/Implementation/HTTCP.c:1897
 msgid "Could not restore socket to blocking."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1962
+#: WWW/Library/Implementation/HTTCP.c:1963
 msgid "Socket read failed for 180,000 tries."
 msgstr ""
 
@@ -3146,45 +3146,45 @@ msgstr ""
 msgid "Address contains a username: %s"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:497
+#: WWW/Library/Implementation/HTTP.c:531
 msgid "This client does not contain support for HTTPS URLs."
 msgstr "ãÅÊ Ë̦¤ÎÔ ÎÅ ÍÁ¤ ЦÄÔÒÉÍËÉ ÄÌÑ HTTPS URL'¦×."
 
-#: WWW/Library/Implementation/HTTP.c:522
+#: WWW/Library/Implementation/HTTP.c:556
 msgid "Unable to connect to remote host."
 msgstr "îÅÍÏÖÌÉ×Ï Ð¦Ä'¤ÄÎÁÔÉÓÑ ÄÏ ×¦ÄÄÁÌÅÎÏÇÏ ÓÅÒ×ÅÒÁ."
 
-#: WWW/Library/Implementation/HTTP.c:544
+#: WWW/Library/Implementation/HTTP.c:578
 msgid "Retrying connection without TLS."
 msgstr "÷ÓÔÁÎÏ×ÌÀ¤ÍÏ %s Ú'¤ÄÎÁÎÎÑ ÄÏ %s"
 
-#: WWW/Library/Implementation/HTTP.c:587
+#: WWW/Library/Implementation/HTTP.c:621
 msgid "SSL error:Can't find common name in certificate-Continue?"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:604
+#: WWW/Library/Implementation/HTTP.c:638
 #, c-format
 msgid "SSL error:host(%s)!=cert(%s)-Continue?"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:616
+#: WWW/Library/Implementation/HTTP.c:650
 #, c-format
 msgid "Secure %d-bit %s (%s) HTTP connection"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1086
+#: WWW/Library/Implementation/HTTP.c:1120
 msgid "Sending HTTP request."
 msgstr "îÁÄÓÉÌÁ¤ÍÏ ÚÁÐÉÔ HTTP."
 
-#: WWW/Library/Implementation/HTTP.c:1125
+#: WWW/Library/Implementation/HTTP.c:1159
 msgid "Unexpected network write error; connection aborted."
 msgstr "îÅÓÐÏĦ×ÁÎÁ ÐÏÍÉÌËÁ ÚÁÐÉÓÕ ÄÏ ÍÅÒÅÖ¦; Ú'¤ÄÎÁÎÎÑ Ï¦Ò×ÁÎÅ."
 
-#: WWW/Library/Implementation/HTTP.c:1131
+#: WWW/Library/Implementation/HTTP.c:1165
 msgid "HTTP request sent; waiting for response."
 msgstr "HTTP ÚÁÐÉÔÁ ÎÁĦÓÌÁÎÏ; ÞÅËÁ¤ÍÏ ÎÁ צÄÐÏצĨ."
 
-#: WWW/Library/Implementation/HTTP.c:1199
+#: WWW/Library/Implementation/HTTP.c:1233
 msgid "Unexpected network read error; connection aborted."
 msgstr "îÅÓÐÏĦ×ÁÎÁ ÐÏÍÉÌËÁ ÞÉÔÁÎÎÑ ¦Ú ÍÅÒÅÖ¦; Ú'¤ÄÎÁÎÎÑ Ï¦Ò×ÁÎÅ."
 
@@ -3197,7 +3197,7 @@ 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:1393
+#: WWW/Library/Implementation/HTTP.c:1427
 msgid "Got unexpected Informational Status."
 msgstr ""
 
@@ -3207,7 +3207,7 @@ msgstr ""
 #. * content.  We'll instruct the user to do that, and
 #. * restore the current document.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1427
+#: WWW/Library/Implementation/HTTP.c:1461
 msgid "Request fulfilled.  Reset Content."
 msgstr ""
 
@@ -3217,27 +3217,27 @@ 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:1544
+#: WWW/Library/Implementation/HTTP.c:1578
 msgid "Got unexpected 304 Not Modified status."
 msgstr "ïÔÒÉÍÁÎÏ ÎÅÓÐÏĦ×ÁÎÏÇÏ ÓÔÁÔÕÓÁ 304 Not Modified."
 
-#: WWW/Library/Implementation/HTTP.c:1607
+#: WWW/Library/Implementation/HTTP.c:1641
 msgid "Redirection of POST content requires user approval."
 msgstr "ðÅÒÅÎÁÐÒÁ×ÌÅÎÎÑ ×ͦÓÔÕ POST ×ÉÍÁÇÁ¤ ÄÏÚ×ÏÌÕ ËÏÒÉÓÔÕ×ÁÞÁ."
 
-#: WWW/Library/Implementation/HTTP.c:1622
+#: WWW/Library/Implementation/HTTP.c:1656
 msgid "Have POST content.  Treating Permanent Redirection as Temporary.\n"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1664
+#: WWW/Library/Implementation/HTTP.c:1698
 msgid "Retrying with access authorization information."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1676
+#: WWW/Library/Implementation/HTTP.c:1710
 msgid "Show the 401 message body?"
 msgstr "ðÏËÁÚÁÔÉ ÐÏצÄÏÍÌÅÎÎÑ ËÏÄÕ 401?"
 
-#: WWW/Library/Implementation/HTTP.c:1719
+#: WWW/Library/Implementation/HTTP.c:1753
 msgid "Show the 407 message body?"
 msgstr "ðÏËÁÚÁÔÉ ÐÏצÄÏÍÌÅÎÎÑ ËÏÄÕ 407?"
 
@@ -3245,7 +3245,7 @@ msgstr "ðÏËÁÚÁÔÉ ÐÏצÄÏÍÌÅÎÎÑ ËÏÄÕ 407?"
 #. * Bad or unknown server_status number.  Take a chance and hope
 #. * there is something to display.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1819
+#: WWW/Library/Implementation/HTTP.c:1853
 msgid "Unknown status reply from server!"
 msgstr "îÅצÄÏÍÉÊ ×¦ÄÇÕË ÓÔÁÔÕÓÕ ×¦Ä ÓÅÒ×ÅÒÁ!"
 
@@ -3511,30 +3511,30 @@ msgstr ""
 msgid "unknown form field"
 msgstr "ÎÅצÄÏÍÅ ÐÏÌÅ ÆÏÒÍÉ"
 
-#: src/GridText.c:10020
+#: src/GridText.c:10015
 msgid "Can't open file for uploading"
 msgstr "îÅÍÏÖÌÉ×Ï ×¦ÄËÒÉÔÉ ÆÁÊÌ ÄÌÑ ÞÉÔÁÎÎÑ."
 
-#: src/GridText.c:11170
+#: src/GridText.c:11165
 #, c-format
 msgid "Submitting %s"
 msgstr "úÁÔ×ÅÒÄÖÕ¤ÍÏ %s"
 
 #. ugliness has happened; inform user and do the best we can
-#: src/GridText.c:12318
+#: src/GridText.c:12313
 msgid "Hang Detect: TextAnchor struct corrupted - suggest aborting!"
 msgstr ""
 
 #. don't show previous state
-#: src/GridText.c:12523
+#: src/GridText.c:12518
 msgid "Wrap lines to fit displayed area?"
 msgstr ""
 
-#: src/GridText.c:12575
+#: src/GridText.c:12570
 msgid "Very long lines have been wrapped!"
 msgstr "äÕÖÅ ÄÏ×Ǧ ÒÑÄËÉ ÂÕÌÉ ÚÁ×ÅÒÎÕÔ¦!"
 
-#: src/GridText.c:13016
+#: src/GridText.c:13011
 msgid "Very long lines have been truncated!"
 msgstr ""
 
@@ -4807,30 +4807,34 @@ msgstr "úÁÐÒÏ×ÁÄÉÔÉ ÚͦÎÉ"
 msgid "gzip"
 msgstr ""
 
-#: src/LYOptions.c:2388
+#: src/LYOptions.c:2386
+msgid "deflate"
+msgstr ""
+
+#: src/LYOptions.c:2389
 msgid "compress"
 msgstr ""
 
-#: src/LYOptions.c:2391
+#: src/LYOptions.c:2392
 msgid "bzip2"
 msgstr ""
 
-#: src/LYOptions.c:2393
+#: src/LYOptions.c:2394
 msgid "All"
 msgstr ""
 
-#: src/LYOptions.c:2658 src/LYOptions.c:2682
+#: src/LYOptions.c:2659 src/LYOptions.c:2683
 #, c-format
 msgid "Use %s to invoke the Options menu!"
 msgstr "%s ×ÉËÌÉËÁ¤ íÅÎÀ îÁÌÁÛÔÕ×ÁÎØ!"
 
-#: src/LYOptions.c:3421
+#: src/LYOptions.c:3422
 msgid "(options marked with (!) will not be saved)"
 msgstr "(ÐÁÒÁÍÅÔÒÉ ×¦ÄͦÅΦ (!) ÎÅ ÂÕÄÕÔØ ÚÁÐÉÓÁΦ)"
 
 # @ GIMP lynx
 # * Yuri Syrota <rasta@renome.rovno.ua>
-#: src/LYOptions.c:3429
+#: src/LYOptions.c:3430
 msgid "General Preferences"
 msgstr "úÁÇÁÌØÎ¦ ÎÁÌÁÛÔÕ×ÁÎÎÑ"
 
@@ -4838,82 +4842,82 @@ msgstr "úÁÇÁÌØÎ¦ ÎÁÌÁÛÔÕ×ÁÎÎÑ"
 # Â¦ÌØÛÅ ÐÏÄÏÂÁ¤ÔØÓÑ "ËÏÒÉÓÔÕ×ÁÎÎÑ"
 #. ***************************************************************
 #. User Mode: SELECT
-#: src/LYOptions.c:3433
+#: src/LYOptions.c:3434
 msgid "User mode"
 msgstr "òÅÖÉÍ ËÏÒÉÓÔÕ×ÁÎÎÑ"
 
 #. Editor: INPUT
-#: src/LYOptions.c:3439
+#: src/LYOptions.c:3440
 msgid "Editor"
 msgstr "òÅÄÁËÔÏÒ"
 
 #. Search Type: SELECT
-#: src/LYOptions.c:3444
+#: src/LYOptions.c:3445
 msgid "Type of Search"
 msgstr "ôÉÐ ÐÏÛÕËÕ"
 
-#: src/LYOptions.c:3449
+#: src/LYOptions.c:3450
 msgid "Security and Privacy"
 msgstr ""
 
 #. ***************************************************************
 #. Cookies: SELECT
-#: src/LYOptions.c:3453
+#: src/LYOptions.c:3454
 msgid "Cookies"
 msgstr "ëÏÒÖÉËÉ"
 
 #. Cookie Prompting: SELECT
-#: src/LYOptions.c:3467
+#: src/LYOptions.c:3468
 msgid "Invalid-Cookie Prompting"
 msgstr ""
 
 #. SSL Prompting: SELECT
-#: src/LYOptions.c:3474
+#: src/LYOptions.c:3475
 msgid "SSL Prompting"
 msgstr ""
 
-#: src/LYOptions.c:3480
+#: src/LYOptions.c:3481
 msgid "Keyboard Input"
 msgstr "÷×¦Ä Ú ËÌÁצÁÔÕÒÉ"
 
 #. ***************************************************************
 #. Keypad Mode: SELECT
-#: src/LYOptions.c:3484
+#: src/LYOptions.c:3485
 msgid "Keypad mode"
 msgstr "ãÉÆÒÏ×Á ËÌÁצÁÔÕÒÁ"
 
 # msgstr "ëÌÁצۦ Emacs"
 # msgstr "ëÌÁצۦ Emacs"
 #. Emacs keys: ON/OFF
-#: src/LYOptions.c:3490
+#: src/LYOptions.c:3491
 msgid "Emacs keys"
 msgstr "ëÌÀÞ¦ Emacs"
 
 #. VI Keys: ON/OFF
-#: src/LYOptions.c:3496
+#: src/LYOptions.c:3497
 msgid "VI keys"
 msgstr "ëÌÀÞ¦ VI"
 
 #. Line edit style: SELECT
 #. well, at least 2 line edit styles available
-#: src/LYOptions.c:3503
+#: src/LYOptions.c:3504
 msgid "Line edit style"
 msgstr ""
 
 #. Keyboard layout: SELECT
-#: src/LYOptions.c:3515
+#: src/LYOptions.c:3516
 msgid "Keyboard layout"
 msgstr "òÏÚËÌÁÄËÁ ËÌÁצÁÔÕÒÉ"
 
 #.
 #. * Display and Character Set
 #.
-#: src/LYOptions.c:3529
+#: src/LYOptions.c:3530
 msgid "Display and Character Set"
 msgstr "äÉÓÐÌÅÊ ÔÁ ÎÁÂ¦Ò ÓÉÍ×Ï̦×"
 
 #. Use locale-based character set: ON/OFF
-#: src/LYOptions.c:3534
+#: src/LYOptions.c:3535
 #, fuzzy
 msgid "Use locale-based character set"
 msgstr "÷×ÁÖÁÔÉ ËÏÄÕ×ÁÎÎÑÍ ÄÏËÕÍÅÎÔÁ"
@@ -4923,11 +4927,11 @@ msgstr "÷×ÁÖÁÔÉ ËÏÄÕ×ÁÎÎÑÍ ÄÏËÕÍÅÎÔÁ"
 # ???
 # msgstr "îÁÂ¦Ò ÓÉÍ×ÏÌ¦× ÄÉÓÐÌÅÀ"
 #. Display Character Set: SELECT
-#: src/LYOptions.c:3543
+#: src/LYOptions.c:3544
 msgid "Display character set"
 msgstr "îÁÂ¦Ò ÓÉÍ×ÏÌ¦× ÄÉÓÐÌÅÑ"
 
-#: src/LYOptions.c:3574
+#: src/LYOptions.c:3575
 msgid "Assumed document character set"
 msgstr "÷×ÁÖÁÔÉ ËÏÄÕ×ÁÎÎÑÍ ÄÏËÕÍÅÎÔÁ"
 
@@ -4936,69 +4940,69 @@ msgstr "÷×ÁÖÁÔÉ ËÏÄÕ×ÁÎÎÑÍ ÄÏËÕÍÅÎÔÁ"
 #. * we split the header to make it more readable:
 #. * "CJK mode" for CJK display charsets, and "Raw 8-bit" for others.
 #.
-#: src/LYOptions.c:3594
+#: src/LYOptions.c:3595
 msgid "CJK mode"
 msgstr "òÅÖÉÍ CJK"
 
 # msgstr "óÐÒÁ×ÖΦ 8¦Ô"
 # ÍÏÖÅ "8-bit - ÑË ¤" ?-)
-#: src/LYOptions.c:3596
+#: src/LYOptions.c:3597
 msgid "Raw 8-bit"
 msgstr "òÅÖÉÍ Raw 8-bit"
 
 #. X Display: INPUT
-#: src/LYOptions.c:3604
+#: src/LYOptions.c:3605
 msgid "X Display"
 msgstr "X äÉÓÐÌÅÊ"
 
 #.
 #. * Document Appearance
 #.
-#: src/LYOptions.c:3610
+#: src/LYOptions.c:3611
 msgid "Document Appearance"
 msgstr "÷ÉÇÌÑÄ ÄÏËÕÍÅÎÔÁ"
 
-#: src/LYOptions.c:3616
+#: src/LYOptions.c:3617
 msgid "Show color"
 msgstr "ðÏËÁÚÕ×ÁÔÉ ËÏÌØÏÒÉ"
 
 #. Show cursor: ON/OFF
-#: src/LYOptions.c:3640
+#: src/LYOptions.c:3641
 msgid "Show cursor"
 msgstr "ðÏËÁÚÕ×ÁÔÉ ËÕÒÓÏÒ"
 
 #. Underline links: ON/OFF
-#: src/LYOptions.c:3646
+#: src/LYOptions.c:3647
 #, fuzzy
 msgid "Underline links"
 msgstr "ðÒÉÈÏ×ÁΦ ÐÏÓÉÌÁÎÎÑ:"
 
 #. Show scrollbar: ON/OFF
-#: src/LYOptions.c:3653
+#: src/LYOptions.c:3654
 msgid "Show scrollbar"
 msgstr "ðÏËÁÚÕ×ÁÔÉ ËÏÌØÏÒÉ"
 
 #. Select Popups: ON/OFF
-#: src/LYOptions.c:3660
+#: src/LYOptions.c:3661
 msgid "Popups for select fields"
 msgstr "òÏÚËÒÉÔÔÑ ÐÏÌ¦× ×ÉÂÏÒÕ"
 
 #. HTML error recovery: SELECT
-#: src/LYOptions.c:3666
+#: src/LYOptions.c:3667
 msgid "HTML error recovery"
 msgstr "÷ÉÐÒÁ×ÌÑÎÎÑ ÐÏÍÉÌÏË HTML"
 
 #. Show Images: SELECT
-#: src/LYOptions.c:3672
+#: src/LYOptions.c:3673
 msgid "Show images"
 msgstr "ðÏËÁÚÕ×ÁÔÉ ÚÏÂÒÁÖÅÎÎÑ"
 
 #. Verbose Images: ON/OFF
-#: src/LYOptions.c:3686
+#: src/LYOptions.c:3687
 msgid "Verbose images"
 msgstr "äÏÄÁÔËÏ×Ï ÐÒÏ ÚÏÂÒÁÖÅÎÎÑ"
 
-#: src/LYOptions.c:3695
+#: src/LYOptions.c:3696
 msgid "Headers Transferred to Remote Servers"
 msgstr "úÁÇÏÌÏ×ËÉ ÄÌÑ îÁÄÓÉÌÁÎÎÑ ÎÁ óÅÒ×ÅÒÉ"
 
@@ -5008,35 +5012,35 @@ msgstr "úÁÇÏÌÏ×ËÉ ÄÌÑ îÁÄÓÉÌÁÎÎÑ ÎÁ óÅÒ×ÅÒÉ"
 # msgstr "áÄÒÅÓÁ ÅÌÅËÔÒÏÎÎϧ ÐÏÛÔÉ"
 #. ***************************************************************
 #. Mail Address: INPUT
-#: src/LYOptions.c:3699
+#: src/LYOptions.c:3700
 msgid "Personal mail address"
 msgstr "ðÅÒÓÏÎÁÌØÎÁ ÐÏÛÔÏ×Á ÁÄÒÅÓÁ"
 
 # ÐÅÒÅËÁÞÁÎÏ - ÂÏ ÎÅ ÚÎÁÀ, ËÕÄÉ, Õ ÑËÉÊ Â¦Ë.
 # ÐÅÒÅËÁÞÁÎÏ - ÂÏ ÎÅ ÚÎÁÀ, ËÕÄÉ, Õ ÑËÉÊ Â¦Ë.
 #. Preferred media type: SELECT
-#: src/LYOptions.c:3704
+#: src/LYOptions.c:3705
 #, fuzzy
 msgid "Preferred media type"
 msgstr "ðÅÒÅËÁÞÁÎÏ %d ÂÁÊÔ¦×"
 
 #. Preferred encoding: SELECT
-#: src/LYOptions.c:3710
+#: src/LYOptions.c:3711
 #, fuzzy
 msgid "Preferred encoding"
 msgstr "õÌÀÂÌÅÎÁ ÍÏ×Á ÄÏËÕÍÅÎÔÁ"
 
 #. Preferred Document Character Set: INPUT
-#: src/LYOptions.c:3716
+#: src/LYOptions.c:3717
 msgid "Preferred document character set"
 msgstr "õÌÀÂÌÅÎÉÊ ÎÁÂ¦Ò ÓÉÍ×Ï̦×"
 
 #. Preferred Document Language: INPUT
-#: src/LYOptions.c:3721
+#: src/LYOptions.c:3722
 msgid "Preferred document language"
 msgstr "õÌÀÂÌÅÎÁ ÍÏ×Á ÄÏËÕÍÅÎÔÁ"
 
-#: src/LYOptions.c:3727
+#: src/LYOptions.c:3728
 msgid "User-Agent header"
 msgstr "úÁÇÏÌÏ×ÏË User-Agent"
 
@@ -5047,70 +5051,70 @@ msgstr "úÁÇÏÌÏ×ÏË User-Agent"
 #.
 #. * Listing and Accessing Files
 #.
-#: src/LYOptions.c:3735
+#: src/LYOptions.c:3736
 msgid "Listing and Accessing Files"
 msgstr "óÐÉÓËÉ ÔÁ äÏÓÔÕÐ ÄÏ æÁÊ̦×"
 
 #. ***************************************************************
 #. FTP sort: SELECT
-#: src/LYOptions.c:3739
+#: src/LYOptions.c:3740
 msgid "FTP sort criteria"
 msgstr "ëÒÉÔÅÒ¦Ê ÓÏÒÔÕ×ÁÎÎÑ ËÁÔÁÌÏÇ¦× FTP"
 
 #. Local Directory Sort: SELECT
-#: src/LYOptions.c:3746
+#: src/LYOptions.c:3747
 msgid "Local directory sort criteria"
 msgstr "ëÒÉÔÅÒ¦Ê ÓÏÒÔÕ×ÁÎÎÑ ÌÏËÁÌØÎÉÈ ËÁÔÁÌÏǦ×"
 
 #. Local Directory Order: SELECT
-#: src/LYOptions.c:3752
+#: src/LYOptions.c:3753
 msgid "Local directory sort order"
 msgstr "ðÏÒÑÄÏË ÓÏÒÔÕ×ÁÎÎÑ ÌÏËÁÌØÎÉÈ ËÁÔÁÌÏǦ×"
 
-#: src/LYOptions.c:3761
+#: src/LYOptions.c:3762
 msgid "Show dot files"
 msgstr "ðÏËÁÚÕ×ÁÔÉ ÐÒÉÈÏ×ÁΦ ÆÁÊÌÉ"
 
-#: src/LYOptions.c:3769
+#: src/LYOptions.c:3770
 msgid "Execution links"
 msgstr "úÁÐÕÓËÁÎÎÑ ÐÒÏÇÒÁÍ ÚÁ ÐÏÓÉÌÁÎÎÑÍÉ"
 
 # ÐÅÒÅËÁÞÕ×ÁÎÎÑ - ÂÏ ÎÅ ÚÎÁÀ, ËÕÄÉ, Õ ÑËÉÊ Â¦Ë.
 # (×ÖÅ ËÒÁÝÅ "ÐÅÒÅÄÁ×ÁÎÎÑ", ÂÏ ÐÅÒÅÄÁÞÁ - ÎÅ ÚÏ×Ó¦Í ÐÒÏÃÅÓ, ÎÁÞÅ)
 #. Show transfer rate: SELECT
-#: src/LYOptions.c:3789
+#: src/LYOptions.c:3790
 msgid "Show transfer rate"
 msgstr "ðÅÒÅËÁÞÕ×ÁÎÎÑ ÄÁÎÉÈ ÚÁ×ÅÒÛÅÎÏ."
 
 #.
 #. * Special Files and Screens
 #.
-#: src/LYOptions.c:3809
+#: src/LYOptions.c:3810
 msgid "Special Files and Screens"
 msgstr "óÐÅæÁÌØÎ¦ æÁÊÌÉ ÔÁ åËÒÁÎÉ"
 
-#: src/LYOptions.c:3814
+#: src/LYOptions.c:3815
 msgid "Multi-bookmarks"
 msgstr "þÉÓÅÌØÎ¦ ÆÁÊÌÉ ÚÁËÌÁÄÉÎÏË"
 
-#: src/LYOptions.c:3822
+#: src/LYOptions.c:3823
 msgid "Review/edit Bookmarks files"
 msgstr "ðÒÏÄÉ×ÉÔÉÓÑ/òÅÄÁÇÕ×ÁÔÉ ÚÁËÌÁÄÉÎËÉ"
 
-#: src/LYOptions.c:3824
+#: src/LYOptions.c:3825
 msgid "Goto multi-bookmark menu"
 msgstr "ðÅÒÅÊÔÉ ÄÏ ÍÅÎÀ multi-bookmar"
 
-#: src/LYOptions.c:3826
+#: src/LYOptions.c:3827
 msgid "Bookmarks file"
 msgstr "æÁÊÌ ÚÁËÌÁÄÉÎÏË"
 
 #. Visited Pages: SELECT
-#: src/LYOptions.c:3832
+#: src/LYOptions.c:3833
 msgid "Visited Pages"
 msgstr "ðÒÏÇÌÑÎÕÔ¦ ÓÔÏÒ¦ÎËÉ"
 
-#: src/LYOptions.c:3837
+#: src/LYOptions.c:3838
 msgid "View the file "
 msgstr "ðÅÒÅÇÌÑÎÕÔÉ ÆÁÊÌ "
 
@@ -5224,38 +5228,38 @@ msgstr ""
 msgid "(no name)"
 msgstr "(ÎÅÍÁ ¦ÍÅΦ)"
 
-#: src/LYReadCFG.c:1772
+#: src/LYReadCFG.c:1773
 #, c-format
 msgid "More than %d nested lynx.cfg includes -- perhaps there is a loop?!?\n"
 msgstr ""
 
-#: src/LYReadCFG.c:1774
+#: src/LYReadCFG.c:1775
 #, c-format
 msgid "Last attempted include was '%s',\n"
 msgstr ""
 
-#: src/LYReadCFG.c:1775
+#: src/LYReadCFG.c:1776
 #, c-format
 msgid "included from '%s'.\n"
 msgstr "×ËÌÀÞÅÎÏÍÕ Ú '%s'.\n"
 
-#: src/LYReadCFG.c:2181 src/LYReadCFG.c:2194 src/LYReadCFG.c:2252
+#: src/LYReadCFG.c:2183 src/LYReadCFG.c:2196 src/LYReadCFG.c:2254
 msgid "The following is read from your lynx.cfg file."
 msgstr "ïÓØ ÔÁËÅ ÂÕÌÏ ÚÎÁÊÄÅÎÏ Õ ×ÁÛÏÍÕ ÆÁÊ̦ lynx.cfg."
 
-#: src/LYReadCFG.c:2182 src/LYReadCFG.c:2195
+#: src/LYReadCFG.c:2184 src/LYReadCFG.c:2197
 msgid "Please read the distribution"
 msgstr "ú×ÅÒÎ¦ÔØÓÑ ÄÏ ÄÉÓÔÒÉÂÕÔÉ×Á"
 
-#: src/LYReadCFG.c:2188 src/LYReadCFG.c:2198
+#: src/LYReadCFG.c:2190 src/LYReadCFG.c:2200
 msgid "for more comments."
 msgstr "ÐÏ ÄÏÄÁÔËÏ×Õ ¦ÎÆÏÒÍÁæÀ."
 
-#: src/LYReadCFG.c:2234
+#: src/LYReadCFG.c:2236
 msgid "RELOAD THE CHANGES"
 msgstr "ðåòåþéôáôé"
 
-#: src/LYReadCFG.c:2242
+#: src/LYReadCFG.c:2244
 msgid "Your primary configuration"
 msgstr "÷ÁÛÁ ÏÓÎÏ×ÎÁ ËÏÎÆ¦ÇÕÒÁæÑ"
 
@@ -5565,7 +5569,7 @@ msgstr "îÅ ÍÏÖÕ ÚÎÁÊÔÉ ÄÏÍÁÛÎ¦Ê ËÁÔÁÌÏÇ"
 msgid "Normally disabled.  See ENABLE_LYNXRC in lynx.cfg\n"
 msgstr ""
 
-#: src/LYrcFile.c:317
+#: src/LYrcFile.c:318
 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"
@@ -5573,7 +5577,7 @@ msgid ""
 "all cookies.\n"
 msgstr ""
 
-#: src/LYrcFile.c:324
+#: src/LYrcFile.c:325
 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"
@@ -5583,14 +5587,14 @@ msgstr ""
 "ÄÏ ÑËÏÇÏ ËÏÒÉÓÔÕ×ÁÞ ÍÏÖÅ ÄÏÄÁ×ÁÔÉ ÐÏÓÉÌÁÎÎÑ ÄÌÑ Û×ÉÄËÏÇÏ ×¦ÄÎÁÊÄÅÎÎÑ\n"
 "ЦÚΦÛÅ.\n"
 
-#: src/LYrcFile.c:329
+#: src/LYrcFile.c:330
 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 ""
 
-#: src/LYrcFile.c:334
+#: src/LYrcFile.c:335
 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"
@@ -5599,7 +5603,7 @@ msgid ""
 "Current valid characters sets are:\n"
 msgstr ""
 
-#: src/LYrcFile.c:341
+#: src/LYrcFile.c:342
 msgid ""
 "cookie_accept_domains and cookie_reject_domains are comma-delimited\n"
 "lists of domains from which Lynx should automatically accept or reject\n"
@@ -5608,13 +5612,13 @@ msgid ""
 "settings made here.\n"
 msgstr ""
 
-#: src/LYrcFile.c:349
+#: src/LYrcFile.c:350
 msgid ""
 "cookie_file specifies the file from which to read persistent cookies.\n"
 "The default is ~/.lynx_cookies.\n"
 msgstr ""
 
-#: src/LYrcFile.c:354
+#: src/LYrcFile.c:355
 msgid ""
 "cookie_loose_invalid_domains, cookie_strict_invalid_domains, and\n"
 "cookie_query_invalid_domains are comma-delimited lists of which domains\n"
@@ -5625,13 +5629,13 @@ msgid ""
 "querying the user for an invalid path or domain.\n"
 msgstr ""
 
-#: src/LYrcFile.c:368
+#: src/LYrcFile.c:369
 msgid ""
 "dir_list_order specifies the directory list order under DIRED_SUPPORT\n"
 "(if implemented).  The default is \"ORDER_BY_NAME\"\n"
 msgstr ""
 
-#: src/LYrcFile.c:373
+#: src/LYrcFile.c:374
 msgid ""
 "dir_list_styles specifies the directory list style under DIRED_SUPPORT\n"
 "(if implemented).  The default is \"MIXED_STYLE\", which sorts both\n"
@@ -5639,7 +5643,7 @@ msgid ""
 "\"DIRECTORIES_FIRST\" lists directories first.\n"
 msgstr ""
 
-#: src/LYrcFile.c:381
+#: src/LYrcFile.c:382
 msgid ""
 "If emacs_keys is to \"on\" then the normal EMACS movement keys:\n"
 "  ^N = down    ^P = up\n"
@@ -5647,7 +5651,7 @@ msgid ""
 "will be enabled.\n"
 msgstr ""
 
-#: src/LYrcFile.c:387
+#: src/LYrcFile.c:388
 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"
@@ -5659,7 +5663,7 @@ msgstr ""
 "ÞÅÒÅÚ ×ÉËÌÉË ÒÅÄÁËÔÏÒÁ Ú ËÏÍÁÎÄÎÏÇÏ ÒÑÄËÁ; ¦ ÄÌÑ ÎÁÐÉÓÁÎÎÑ ÌÉÓÔ¦× ÂÕÄÅÍÏ\n"
 "×ÉËÏÒÉÓÔÏ×Õ×ÁÔÉ ×ÍÏÎÔÏ×ÁÎÏÇÏ ÏÄÎÏÒÑÄËÏ×ÏÇÏ ÒÅÄÁËÔÏÒÁ.\n"
 
-#: src/LYrcFile.c:393
+#: src/LYrcFile.c:394
 msgid ""
 "The file_sorting_method specifies which value to sort on when viewing\n"
 "file lists such as FTP directories.  The options are:\n"
@@ -5675,7 +5679,7 @@ msgstr ""
 "   BY_SIZE     -- ÓÏÒÔÕ×ÁÔÉ ÚÁ ÒÏÚͦÒÏÍ ÆÁÊÌÕ\n"
 "   BY_DATE     -- ÓÏÒÔÕ×ÁÔÉ ÚÁ ÄÁÔÏÀ ÆÁÊÌÕ\n"
 
-#: src/LYrcFile.c:411
+#: src/LYrcFile.c:412
 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"
@@ -5690,7 +5694,7 @@ msgid ""
 "Current lineedit modes are:\n"
 msgstr ""
 
-#: src/LYrcFile.c:429
+#: src/LYrcFile.c:430
 msgid ""
 "The following allow you to define sub-bookmark files and descriptions.\n"
 "The format is multi_bookmark<capital_letter>=<filename>,<description>\n"
@@ -5702,7 +5706,7 @@ msgstr ""
 "íÏÖÌÉ×Ï ×ÉÚÎÁÞÉÔÉ ÄÏ 26 ÆÁÊÌ¦× ÚÁËÌÁÄÉÎÏË (ÄÌÑ ÁÎÇ̦ÊÓØËÉÈ ×ÅÌÉËÉÈ Ì¦ÔÅÒ).\n"
 "íÉ ÐÏÞÉÎÁ¤ÍÏ Ú \"multi_bookmarkB\", ÂÏ 'A' ¤ ÓÔÁÒÔÏ×ÉÍ (ÄÉ×. ×ÉÝÅ).\n"
 
-#: src/LYrcFile.c:435
+#: src/LYrcFile.c:436
 msgid ""
 "personal_mail_address specifies your personal mail address.  The\n"
 "address will be sent during HTTP file transfers for authorization and\n"
@@ -5720,7 +5724,7 @@ msgstr ""
 "ÍÏÖÅÔÅ ÚÁÌÉÛÉÔÉ ÃÅ ÐÏÌÅ ÐÏÒÏÖΦÍ, ÁÌÅ ÔÏĦ ×ÏÎÏ ÎÅ ×ËÌÀÞÁÔÉÍÅÔØÓÑ Õ ×ÁÛ¦\n"
 "ËÏÍÅÎÔÁÒ¦ ÐÒÉ ÌÉÓÔÕ×ÁÎΦ.\n"
 
-#: src/LYrcFile.c:444
+#: src/LYrcFile.c:445
 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"
@@ -5736,7 +5740,7 @@ msgid ""
 "is also allowed.\n"
 msgstr ""
 
-#: src/LYrcFile.c:460
+#: src/LYrcFile.c:461
 msgid ""
 "preferred_language specifies the language in MIME notation (e.g., en,\n"
 "fr, may be a comma-separated list in decreasing preference)\n"
@@ -5745,7 +5749,7 @@ msgid ""
 "Otherwise, the server will send the file in its default language.\n"
 msgstr ""
 
-#: src/LYrcFile.c:471
+#: src/LYrcFile.c:472
 msgid ""
 "If run_all_execution_links is set \"on\" then all local execution links\n"
 "will be executed when they are selected.\n"
@@ -5758,7 +5762,7 @@ msgid ""
 "          you are viewing trusted source information.\n"
 msgstr ""
 
-#: src/LYrcFile.c:482
+#: src/LYrcFile.c:483
 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"
@@ -5774,7 +5778,7 @@ msgid ""
 "          you are viewing trusted source information.\n"
 msgstr ""
 
-#: src/LYrcFile.c:500
+#: src/LYrcFile.c:501
 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"
@@ -5785,7 +5789,7 @@ msgid ""
 "The default can be overridden via the -popup command line toggle.\n"
 msgstr ""
 
-#: src/LYrcFile.c:510
+#: src/LYrcFile.c:511
 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"
@@ -5804,7 +5808,7 @@ msgid ""
 "\"off\" \"show color\" settings will be treated as \"default\".\n"
 msgstr ""
 
-#: src/LYrcFile.c:527
+#: src/LYrcFile.c:528
 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"
@@ -5817,7 +5821,7 @@ msgid ""
 "The default can be overridden via the -show_cursor command line toggle.\n"
 msgstr ""
 
-#: src/LYrcFile.c:538
+#: src/LYrcFile.c:539
 msgid ""
 "show_dotfiles specifies that the directory listing should include\n"
 "\"hidden\" (dot) files/directories.  If set \"on\", this will be\n"
@@ -5826,7 +5830,7 @@ msgid ""
 "is disabled, creation of such files via Lynx also is disabled.\n"
 msgstr ""
 
-#: src/LYrcFile.c:549
+#: src/LYrcFile.c:550
 msgid ""
 "If sub_bookmarks is not turned \"off\", and multiple bookmarks have\n"
 "been defined (see below), then all bookmark operations will first\n"
@@ -5848,7 +5852,7 @@ msgstr ""
 "ëÏÌÉ ÃÀ ÏÐæÀ ×ÓÔÁÎÏ×ÌÅÎÏ Õ \"standard\", ÂÕÄÅ ÎÁÄÁÎÏ ÍÅÎÀ, ÎÅÚÁÌÅÖÎÏ\n"
 "×¦Ä ÒÅÖÉÍÕ ËÏÒÉÓÔÕ×ÁÎÎÑ.\n"
 
-#: src/LYrcFile.c:563
+#: src/LYrcFile.c:564
 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"
@@ -5858,14 +5862,14 @@ msgid ""
 "bottom of the screen.\n"
 msgstr ""
 
-#: src/LYrcFile.c:572
+#: src/LYrcFile.c:573
 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 ""
 
-#: src/LYrcFile.c:577
+#: src/LYrcFile.c:578
 msgid ""
 "If vi_keys is set to \"on\", then the normal VI movement keys:\n"
 "  j = down    k = up\n"
@@ -5875,7 +5879,7 @@ msgid ""
 "and the keymap display, respectively.\n"
 msgstr ""
 
-#: src/LYrcFile.c:585
+#: src/LYrcFile.c:586
 msgid ""
 "The visited_links setting controls how Lynx organizes the information\n"
 "in the Visited Links Page.\n"
@@ -5883,7 +5887,7 @@ msgstr ""
 "õÓÔÁÎÏ×ËÁ visted_links ×ÉÚÎÁÞÁ¤, ÑË Lynx צÄÏÂÒÁÖÁ¤ ¦ÎÆÏÒÍÁæÀ\n"
 "ÎÁ óÔÏÒ¦Îæ ÷¦ÄצÄÁÎÉÈ ðÏÓÉÌÁÎØ.\n"
 
-#: src/LYrcFile.c:803
+#: src/LYrcFile.c:804
 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"
@@ -5894,13 +5898,13 @@ msgid ""
 "regardless of whether numlock is on.\n"
 msgstr ""
 
-#: src/LYrcFile.c:812
+#: src/LYrcFile.c:813
 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 ""
 
-#: src/LYrcFile.c:816
+#: src/LYrcFile.c:817
 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"
@@ -5911,14 +5915,14 @@ msgid ""
 "lists and output from the list command also enumerate form inputs.\n"
 msgstr ""
 
-#: src/LYrcFile.c:825
+#: src/LYrcFile.c:826
 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 ""
 
-#: src/LYrcFile.c:857
+#: src/LYrcFile.c:858
 msgid ""
 "Lynx User Defaults File\n"
 "\n"
diff --git a/po/zh_CN.po b/po/zh_CN.po
index 84f34d1f..8f342e7e 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lynx-2.8.5pre9\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-10-10 18:51-0400\n"
+"POT-Creation-Date: 2004-10-17 16:29-0400\n"
 "PO-Revision-Date: 2002-10-15 15:13+0800\n"
 "Last-Translator: Wang Jian <lark@linux.net.cn>\n"
 "Language-Team: Chinese (simplified) <i18n-translation@lists.linux.net.cn>\n"
@@ -2740,7 +2740,7 @@ msgstr ""
 msgid "Loading failed, use a previous copy."
 msgstr ""
 
-#: WWW/Library/Implementation/HTAccess.c:1045 src/GridText.c:8301
+#: WWW/Library/Implementation/HTAccess.c:1045 src/GridText.c:8296
 msgid "Loading incomplete."
 msgstr ""
 
@@ -2809,7 +2809,7 @@ msgstr ""
 msgid "connect for data"
 msgstr ""
 
-#: WWW/Library/Implementation/HTFTP.c:3738
+#: WWW/Library/Implementation/HTFTP.c:3741
 msgid "Receiving FTP file."
 msgstr ""
 
@@ -2961,7 +2961,7 @@ msgstr ""
 msgid "Address length looks invalid"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1551 WWW/Library/Implementation/HTTCP.c:1569
+#: WWW/Library/Implementation/HTTCP.c:1552 WWW/Library/Implementation/HTTCP.c:1570
 #, c-format
 msgid "Unable to locate remote host %s."
 msgstr ""
@@ -2970,38 +2970,38 @@ msgstr ""
 #. * but not HTAlert, because typically there will be other
 #. * alerts from the callers.  - kw
 #.
-#: WWW/Library/Implementation/HTTCP.c:1566 WWW/Library/Implementation/HTTelnet.c:108
+#: WWW/Library/Implementation/HTTCP.c:1567 WWW/Library/Implementation/HTTelnet.c:108
 #, c-format
 msgid "Invalid hostname %s"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1580
+#: WWW/Library/Implementation/HTTCP.c:1581
 #, c-format
 msgid "Making %s connection to %s"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1591
+#: WWW/Library/Implementation/HTTCP.c:1592
 msgid "socket failed."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1604
+#: WWW/Library/Implementation/HTTCP.c:1605
 #, c-format
 msgid "socket failed: family %d addr %s port %s."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1628
+#: WWW/Library/Implementation/HTTCP.c:1629
 msgid "Could not make connection non-blocking."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1697
+#: WWW/Library/Implementation/HTTCP.c:1698
 msgid "Connection failed (too many retries)."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1896
+#: WWW/Library/Implementation/HTTCP.c:1897
 msgid "Could not restore socket to blocking."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1962
+#: WWW/Library/Implementation/HTTCP.c:1963
 msgid "Socket read failed for 180,000 tries."
 msgstr ""
 
@@ -3010,45 +3010,45 @@ msgstr ""
 msgid "Address contains a username: %s"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:497
+#: WWW/Library/Implementation/HTTP.c:531
 msgid "This client does not contain support for HTTPS URLs."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:522
+#: WWW/Library/Implementation/HTTP.c:556
 msgid "Unable to connect to remote host."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:544
+#: WWW/Library/Implementation/HTTP.c:578
 msgid "Retrying connection without TLS."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:587
+#: WWW/Library/Implementation/HTTP.c:621
 msgid "SSL error:Can't find common name in certificate-Continue?"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:604
+#: WWW/Library/Implementation/HTTP.c:638
 #, c-format
 msgid "SSL error:host(%s)!=cert(%s)-Continue?"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:616
+#: WWW/Library/Implementation/HTTP.c:650
 #, c-format
 msgid "Secure %d-bit %s (%s) HTTP connection"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1086
+#: WWW/Library/Implementation/HTTP.c:1120
 msgid "Sending HTTP request."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1125
+#: WWW/Library/Implementation/HTTP.c:1159
 msgid "Unexpected network write error; connection aborted."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1131
+#: WWW/Library/Implementation/HTTP.c:1165
 msgid "HTTP request sent; waiting for response."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1199
+#: WWW/Library/Implementation/HTTP.c:1233
 msgid "Unexpected network read error; connection aborted."
 msgstr ""
 
@@ -3061,7 +3061,7 @@ 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:1393
+#: WWW/Library/Implementation/HTTP.c:1427
 msgid "Got unexpected Informational Status."
 msgstr ""
 
@@ -3071,7 +3071,7 @@ msgstr ""
 #. * content.  We'll instruct the user to do that, and
 #. * restore the current document.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1427
+#: WWW/Library/Implementation/HTTP.c:1461
 msgid "Request fulfilled.  Reset Content."
 msgstr ""
 
@@ -3081,27 +3081,27 @@ 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:1544
+#: WWW/Library/Implementation/HTTP.c:1578
 msgid "Got unexpected 304 Not Modified status."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1607
+#: WWW/Library/Implementation/HTTP.c:1641
 msgid "Redirection of POST content requires user approval."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1622
+#: WWW/Library/Implementation/HTTP.c:1656
 msgid "Have POST content.  Treating Permanent Redirection as Temporary.\n"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1664
+#: WWW/Library/Implementation/HTTP.c:1698
 msgid "Retrying with access authorization information."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1676
+#: WWW/Library/Implementation/HTTP.c:1710
 msgid "Show the 401 message body?"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1719
+#: WWW/Library/Implementation/HTTP.c:1753
 msgid "Show the 407 message body?"
 msgstr ""
 
@@ -3109,7 +3109,7 @@ msgstr ""
 #. * Bad or unknown server_status number.  Take a chance and hope
 #. * there is something to display.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1819
+#: WWW/Library/Implementation/HTTP.c:1853
 msgid "Unknown status reply from server!"
 msgstr ""
 
@@ -3363,30 +3363,30 @@ msgstr ""
 msgid "unknown form field"
 msgstr ""
 
-#: src/GridText.c:10020
+#: src/GridText.c:10015
 msgid "Can't open file for uploading"
 msgstr ""
 
-#: src/GridText.c:11170
+#: src/GridText.c:11165
 #, c-format
 msgid "Submitting %s"
 msgstr ""
 
 #. ugliness has happened; inform user and do the best we can
-#: src/GridText.c:12318
+#: src/GridText.c:12313
 msgid "Hang Detect: TextAnchor struct corrupted - suggest aborting!"
 msgstr ""
 
 #. don't show previous state
-#: src/GridText.c:12523
+#: src/GridText.c:12518
 msgid "Wrap lines to fit displayed area?"
 msgstr ""
 
-#: src/GridText.c:12575
+#: src/GridText.c:12570
 msgid "Very long lines have been wrapped!"
 msgstr ""
 
-#: src/GridText.c:13016
+#: src/GridText.c:13011
 msgid "Very long lines have been truncated!"
 msgstr ""
 
@@ -4565,116 +4565,120 @@ msgstr ""
 msgid "gzip"
 msgstr ""
 
-#: src/LYOptions.c:2388
+#: src/LYOptions.c:2386
+msgid "deflate"
+msgstr ""
+
+#: src/LYOptions.c:2389
 msgid "compress"
 msgstr ""
 
-#: src/LYOptions.c:2391
+#: src/LYOptions.c:2392
 msgid "bzip2"
 msgstr ""
 
-#: src/LYOptions.c:2393
+#: src/LYOptions.c:2394
 msgid "All"
 msgstr ""
 
-#: src/LYOptions.c:2658 src/LYOptions.c:2682
+#: src/LYOptions.c:2659 src/LYOptions.c:2683
 #, c-format
 msgid "Use %s to invoke the Options menu!"
 msgstr ""
 
-#: src/LYOptions.c:3421
+#: src/LYOptions.c:3422
 msgid "(options marked with (!) will not be saved)"
 msgstr ""
 
-#: src/LYOptions.c:3429
+#: src/LYOptions.c:3430
 msgid "General Preferences"
 msgstr ""
 
 #. ***************************************************************
 #. User Mode: SELECT
-#: src/LYOptions.c:3433
+#: src/LYOptions.c:3434
 msgid "User mode"
 msgstr ""
 
 #. Editor: INPUT
-#: src/LYOptions.c:3439
+#: src/LYOptions.c:3440
 msgid "Editor"
 msgstr ""
 
 #. Search Type: SELECT
-#: src/LYOptions.c:3444
+#: src/LYOptions.c:3445
 msgid "Type of Search"
 msgstr ""
 
-#: src/LYOptions.c:3449
+#: src/LYOptions.c:3450
 msgid "Security and Privacy"
 msgstr ""
 
 #. ***************************************************************
 #. Cookies: SELECT
-#: src/LYOptions.c:3453
+#: src/LYOptions.c:3454
 msgid "Cookies"
 msgstr ""
 
 #. Cookie Prompting: SELECT
-#: src/LYOptions.c:3467
+#: src/LYOptions.c:3468
 msgid "Invalid-Cookie Prompting"
 msgstr ""
 
 #. SSL Prompting: SELECT
-#: src/LYOptions.c:3474
+#: src/LYOptions.c:3475
 msgid "SSL Prompting"
 msgstr ""
 
-#: src/LYOptions.c:3480
+#: src/LYOptions.c:3481
 msgid "Keyboard Input"
 msgstr ""
 
 #. ***************************************************************
 #. Keypad Mode: SELECT
-#: src/LYOptions.c:3484
+#: src/LYOptions.c:3485
 msgid "Keypad mode"
 msgstr ""
 
 #. Emacs keys: ON/OFF
-#: src/LYOptions.c:3490
+#: src/LYOptions.c:3491
 msgid "Emacs keys"
 msgstr ""
 
 #. VI Keys: ON/OFF
-#: src/LYOptions.c:3496
+#: src/LYOptions.c:3497
 msgid "VI keys"
 msgstr ""
 
 #. Line edit style: SELECT
 #. well, at least 2 line edit styles available
-#: src/LYOptions.c:3503
+#: src/LYOptions.c:3504
 msgid "Line edit style"
 msgstr ""
 
 #. Keyboard layout: SELECT
-#: src/LYOptions.c:3515
+#: src/LYOptions.c:3516
 msgid "Keyboard layout"
 msgstr ""
 
 #.
 #. * Display and Character Set
 #.
-#: src/LYOptions.c:3529
+#: src/LYOptions.c:3530
 msgid "Display and Character Set"
 msgstr ""
 
 #. Use locale-based character set: ON/OFF
-#: src/LYOptions.c:3534
+#: src/LYOptions.c:3535
 msgid "Use locale-based character set"
 msgstr ""
 
 #. Display Character Set: SELECT
-#: src/LYOptions.c:3543
+#: src/LYOptions.c:3544
 msgid "Display character set"
 msgstr ""
 
-#: src/LYOptions.c:3574
+#: src/LYOptions.c:3575
 msgid "Assumed document character set"
 msgstr ""
 
@@ -4683,164 +4687,164 @@ msgstr ""
 #. * we split the header to make it more readable:
 #. * "CJK mode" for CJK display charsets, and "Raw 8-bit" for others.
 #.
-#: src/LYOptions.c:3594
+#: src/LYOptions.c:3595
 msgid "CJK mode"
 msgstr ""
 
-#: src/LYOptions.c:3596
+#: src/LYOptions.c:3597
 msgid "Raw 8-bit"
 msgstr ""
 
 #. X Display: INPUT
-#: src/LYOptions.c:3604
+#: src/LYOptions.c:3605
 msgid "X Display"
 msgstr ""
 
 #.
 #. * Document Appearance
 #.
-#: src/LYOptions.c:3610
+#: src/LYOptions.c:3611
 msgid "Document Appearance"
 msgstr ""
 
-#: src/LYOptions.c:3616
+#: src/LYOptions.c:3617
 msgid "Show color"
 msgstr ""
 
 #. Show cursor: ON/OFF
-#: src/LYOptions.c:3640
+#: src/LYOptions.c:3641
 msgid "Show cursor"
 msgstr ""
 
 #. Underline links: ON/OFF
-#: src/LYOptions.c:3646
+#: src/LYOptions.c:3647
 msgid "Underline links"
 msgstr ""
 
 #. Show scrollbar: ON/OFF
-#: src/LYOptions.c:3653
+#: src/LYOptions.c:3654
 msgid "Show scrollbar"
 msgstr ""
 
 #. Select Popups: ON/OFF
-#: src/LYOptions.c:3660
+#: src/LYOptions.c:3661
 msgid "Popups for select fields"
 msgstr ""
 
 #. HTML error recovery: SELECT
-#: src/LYOptions.c:3666
+#: src/LYOptions.c:3667
 msgid "HTML error recovery"
 msgstr ""
 
 #. Show Images: SELECT
-#: src/LYOptions.c:3672
+#: src/LYOptions.c:3673
 msgid "Show images"
 msgstr ""
 
 #. Verbose Images: ON/OFF
-#: src/LYOptions.c:3686
+#: src/LYOptions.c:3687
 msgid "Verbose images"
 msgstr ""
 
-#: src/LYOptions.c:3695
+#: src/LYOptions.c:3696
 msgid "Headers Transferred to Remote Servers"
 msgstr ""
 
 #. ***************************************************************
 #. Mail Address: INPUT
-#: src/LYOptions.c:3699
+#: src/LYOptions.c:3700
 msgid "Personal mail address"
 msgstr ""
 
 #. Preferred media type: SELECT
-#: src/LYOptions.c:3704
+#: src/LYOptions.c:3705
 msgid "Preferred media type"
 msgstr ""
 
 #. Preferred encoding: SELECT
-#: src/LYOptions.c:3710
+#: src/LYOptions.c:3711
 msgid "Preferred encoding"
 msgstr ""
 
 #. Preferred Document Character Set: INPUT
-#: src/LYOptions.c:3716
+#: src/LYOptions.c:3717
 msgid "Preferred document character set"
 msgstr ""
 
 #. Preferred Document Language: INPUT
-#: src/LYOptions.c:3721
+#: src/LYOptions.c:3722
 msgid "Preferred document language"
 msgstr ""
 
-#: src/LYOptions.c:3727
+#: src/LYOptions.c:3728
 msgid "User-Agent header"
 msgstr ""
 
 #.
 #. * Listing and Accessing Files
 #.
-#: src/LYOptions.c:3735
+#: src/LYOptions.c:3736
 msgid "Listing and Accessing Files"
 msgstr ""
 
 #. ***************************************************************
 #. FTP sort: SELECT
-#: src/LYOptions.c:3739
+#: src/LYOptions.c:3740
 msgid "FTP sort criteria"
 msgstr ""
 
 #. Local Directory Sort: SELECT
-#: src/LYOptions.c:3746
+#: src/LYOptions.c:3747
 msgid "Local directory sort criteria"
 msgstr ""
 
 #. Local Directory Order: SELECT
-#: src/LYOptions.c:3752
+#: src/LYOptions.c:3753
 msgid "Local directory sort order"
 msgstr ""
 
-#: src/LYOptions.c:3761
+#: src/LYOptions.c:3762
 msgid "Show dot files"
 msgstr ""
 
-#: src/LYOptions.c:3769
+#: src/LYOptions.c:3770
 msgid "Execution links"
 msgstr ""
 
 #. Show transfer rate: SELECT
-#: src/LYOptions.c:3789
+#: src/LYOptions.c:3790
 msgid "Show transfer rate"
 msgstr ""
 
 #.
 #. * Special Files and Screens
 #.
-#: src/LYOptions.c:3809
+#: src/LYOptions.c:3810
 msgid "Special Files and Screens"
 msgstr ""
 
-#: src/LYOptions.c:3814
+#: src/LYOptions.c:3815
 msgid "Multi-bookmarks"
 msgstr ""
 
-#: src/LYOptions.c:3822
+#: src/LYOptions.c:3823
 msgid "Review/edit Bookmarks files"
 msgstr ""
 
-#: src/LYOptions.c:3824
+#: src/LYOptions.c:3825
 msgid "Goto multi-bookmark menu"
 msgstr ""
 
-#: src/LYOptions.c:3826
+#: src/LYOptions.c:3827
 msgid "Bookmarks file"
 msgstr ""
 
 #. Visited Pages: SELECT
-#: src/LYOptions.c:3832
+#: src/LYOptions.c:3833
 msgid "Visited Pages"
 msgstr ""
 
-#: src/LYOptions.c:3837
+#: src/LYOptions.c:3838
 msgid "View the file "
 msgstr ""
 
@@ -4954,38 +4958,38 @@ msgstr ""
 msgid "(no name)"
 msgstr ""
 
-#: src/LYReadCFG.c:1772
+#: src/LYReadCFG.c:1773
 #, c-format
 msgid "More than %d nested lynx.cfg includes -- perhaps there is a loop?!?\n"
 msgstr ""
 
-#: src/LYReadCFG.c:1774
+#: src/LYReadCFG.c:1775
 #, c-format
 msgid "Last attempted include was '%s',\n"
 msgstr ""
 
-#: src/LYReadCFG.c:1775
+#: src/LYReadCFG.c:1776
 #, c-format
 msgid "included from '%s'.\n"
 msgstr ""
 
-#: src/LYReadCFG.c:2181 src/LYReadCFG.c:2194 src/LYReadCFG.c:2252
+#: src/LYReadCFG.c:2183 src/LYReadCFG.c:2196 src/LYReadCFG.c:2254
 msgid "The following is read from your lynx.cfg file."
 msgstr ""
 
-#: src/LYReadCFG.c:2182 src/LYReadCFG.c:2195
+#: src/LYReadCFG.c:2184 src/LYReadCFG.c:2197
 msgid "Please read the distribution"
 msgstr ""
 
-#: src/LYReadCFG.c:2188 src/LYReadCFG.c:2198
+#: src/LYReadCFG.c:2190 src/LYReadCFG.c:2200
 msgid "for more comments."
 msgstr ""
 
-#: src/LYReadCFG.c:2234
+#: src/LYReadCFG.c:2236
 msgid "RELOAD THE CHANGES"
 msgstr ""
 
-#: src/LYReadCFG.c:2242
+#: src/LYReadCFG.c:2244
 msgid "Your primary configuration"
 msgstr ""
 
@@ -5277,7 +5281,7 @@ msgstr ""
 msgid "Normally disabled.  See ENABLE_LYNXRC in lynx.cfg\n"
 msgstr ""
 
-#: src/LYrcFile.c:317
+#: src/LYrcFile.c:318
 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"
@@ -5285,21 +5289,21 @@ msgid ""
 "all cookies.\n"
 msgstr ""
 
-#: src/LYrcFile.c:324
+#: src/LYrcFile.c:325
 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 ""
 
-#: src/LYrcFile.c:329
+#: src/LYrcFile.c:330
 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 ""
 
-#: src/LYrcFile.c:334
+#: src/LYrcFile.c:335
 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"
@@ -5308,7 +5312,7 @@ msgid ""
 "Current valid characters sets are:\n"
 msgstr ""
 
-#: src/LYrcFile.c:341
+#: src/LYrcFile.c:342
 msgid ""
 "cookie_accept_domains and cookie_reject_domains are comma-delimited\n"
 "lists of domains from which Lynx should automatically accept or reject\n"
@@ -5317,13 +5321,13 @@ msgid ""
 "settings made here.\n"
 msgstr ""
 
-#: src/LYrcFile.c:349
+#: src/LYrcFile.c:350
 msgid ""
 "cookie_file specifies the file from which to read persistent cookies.\n"
 "The default is ~/.lynx_cookies.\n"
 msgstr ""
 
-#: src/LYrcFile.c:354
+#: src/LYrcFile.c:355
 msgid ""
 "cookie_loose_invalid_domains, cookie_strict_invalid_domains, and\n"
 "cookie_query_invalid_domains are comma-delimited lists of which domains\n"
@@ -5334,13 +5338,13 @@ msgid ""
 "querying the user for an invalid path or domain.\n"
 msgstr ""
 
-#: src/LYrcFile.c:368
+#: src/LYrcFile.c:369
 msgid ""
 "dir_list_order specifies the directory list order under DIRED_SUPPORT\n"
 "(if implemented).  The default is \"ORDER_BY_NAME\"\n"
 msgstr ""
 
-#: src/LYrcFile.c:373
+#: src/LYrcFile.c:374
 msgid ""
 "dir_list_styles specifies the directory list style under DIRED_SUPPORT\n"
 "(if implemented).  The default is \"MIXED_STYLE\", which sorts both\n"
@@ -5348,7 +5352,7 @@ msgid ""
 "\"DIRECTORIES_FIRST\" lists directories first.\n"
 msgstr ""
 
-#: src/LYrcFile.c:381
+#: src/LYrcFile.c:382
 msgid ""
 "If emacs_keys is to \"on\" then the normal EMACS movement keys:\n"
 "  ^N = down    ^P = up\n"
@@ -5356,7 +5360,7 @@ msgid ""
 "will be enabled.\n"
 msgstr ""
 
-#: src/LYrcFile.c:387
+#: src/LYrcFile.c:388
 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"
@@ -5364,7 +5368,7 @@ msgid ""
 "will be used for sending mail.\n"
 msgstr ""
 
-#: src/LYrcFile.c:393
+#: src/LYrcFile.c:394
 msgid ""
 "The file_sorting_method specifies which value to sort on when viewing\n"
 "file lists such as FTP directories.  The options are:\n"
@@ -5374,7 +5378,7 @@ msgid ""
 "   BY_DATE     -- sorts on the date of the file\n"
 msgstr ""
 
-#: src/LYrcFile.c:411
+#: src/LYrcFile.c:412
 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"
@@ -5389,7 +5393,7 @@ msgid ""
 "Current lineedit modes are:\n"
 msgstr ""
 
-#: src/LYrcFile.c:429
+#: src/LYrcFile.c:430
 msgid ""
 "The following allow you to define sub-bookmark files and descriptions.\n"
 "The format is multi_bookmark<capital_letter>=<filename>,<description>\n"
@@ -5397,7 +5401,7 @@ msgid ""
 "We start with \"multi_bookmarkB\" since 'A' is the default (see above).\n"
 msgstr ""
 
-#: src/LYrcFile.c:435
+#: src/LYrcFile.c:436
 msgid ""
 "personal_mail_address specifies your personal mail address.  The\n"
 "address will be sent during HTTP file transfers for authorization and\n"
@@ -5408,7 +5412,7 @@ msgid ""
 "your mailed comments.\n"
 msgstr ""
 
-#: src/LYrcFile.c:444
+#: src/LYrcFile.c:445
 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"
@@ -5424,7 +5428,7 @@ msgid ""
 "is also allowed.\n"
 msgstr ""
 
-#: src/LYrcFile.c:460
+#: src/LYrcFile.c:461
 msgid ""
 "preferred_language specifies the language in MIME notation (e.g., en,\n"
 "fr, may be a comma-separated list in decreasing preference)\n"
@@ -5433,7 +5437,7 @@ msgid ""
 "Otherwise, the server will send the file in its default language.\n"
 msgstr ""
 
-#: src/LYrcFile.c:471
+#: src/LYrcFile.c:472
 msgid ""
 "If run_all_execution_links is set \"on\" then all local execution links\n"
 "will be executed when they are selected.\n"
@@ -5446,7 +5450,7 @@ msgid ""
 "          you are viewing trusted source information.\n"
 msgstr ""
 
-#: src/LYrcFile.c:482
+#: src/LYrcFile.c:483
 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"
@@ -5462,7 +5466,7 @@ msgid ""
 "          you are viewing trusted source information.\n"
 msgstr ""
 
-#: src/LYrcFile.c:500
+#: src/LYrcFile.c:501
 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"
@@ -5473,7 +5477,7 @@ msgid ""
 "The default can be overridden via the -popup command line toggle.\n"
 msgstr ""
 
-#: src/LYrcFile.c:510
+#: src/LYrcFile.c:511
 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"
@@ -5492,7 +5496,7 @@ msgid ""
 "\"off\" \"show color\" settings will be treated as \"default\".\n"
 msgstr ""
 
-#: src/LYrcFile.c:527
+#: src/LYrcFile.c:528
 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"
@@ -5505,7 +5509,7 @@ msgid ""
 "The default can be overridden via the -show_cursor command line toggle.\n"
 msgstr ""
 
-#: src/LYrcFile.c:538
+#: src/LYrcFile.c:539
 msgid ""
 "show_dotfiles specifies that the directory listing should include\n"
 "\"hidden\" (dot) files/directories.  If set \"on\", this will be\n"
@@ -5514,7 +5518,7 @@ msgid ""
 "is disabled, creation of such files via Lynx also is disabled.\n"
 msgstr ""
 
-#: src/LYrcFile.c:549
+#: src/LYrcFile.c:550
 msgid ""
 "If sub_bookmarks is not turned \"off\", and multiple bookmarks have\n"
 "been defined (see below), then all bookmark operations will first\n"
@@ -5527,7 +5531,7 @@ msgid ""
 "presented regardless of user mode.\n"
 msgstr ""
 
-#: src/LYrcFile.c:563
+#: src/LYrcFile.c:564
 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"
@@ -5537,14 +5541,14 @@ msgid ""
 "bottom of the screen.\n"
 msgstr ""
 
-#: src/LYrcFile.c:572
+#: src/LYrcFile.c:573
 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 ""
 
-#: src/LYrcFile.c:577
+#: src/LYrcFile.c:578
 msgid ""
 "If vi_keys is set to \"on\", then the normal VI movement keys:\n"
 "  j = down    k = up\n"
@@ -5554,13 +5558,13 @@ msgid ""
 "and the keymap display, respectively.\n"
 msgstr ""
 
-#: src/LYrcFile.c:585
+#: src/LYrcFile.c:586
 msgid ""
 "The visited_links setting controls how Lynx organizes the information\n"
 "in the Visited Links Page.\n"
 msgstr ""
 
-#: src/LYrcFile.c:803
+#: src/LYrcFile.c:804
 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"
@@ -5571,13 +5575,13 @@ msgid ""
 "regardless of whether numlock is on.\n"
 msgstr ""
 
-#: src/LYrcFile.c:812
+#: src/LYrcFile.c:813
 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 ""
 
-#: src/LYrcFile.c:816
+#: src/LYrcFile.c:817
 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"
@@ -5588,14 +5592,14 @@ msgid ""
 "lists and output from the list command also enumerate form inputs.\n"
 msgstr ""
 
-#: src/LYrcFile.c:825
+#: src/LYrcFile.c:826
 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 ""
 
-#: src/LYrcFile.c:857
+#: src/LYrcFile.c:858
 msgid ""
 "Lynx User Defaults File\n"
 "\n"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index 29824297..3f0058c0 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: lynx 2.8.5pre9\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2004-10-10 18:51-0400\n"
+"POT-Creation-Date: 2004-10-17 16:29-0400\n"
 "PO-Revision-Date: 2003-02-11 19:44+0800\n"
 "Last-Translator: Abel Cheung <maddog@linux.org.hk>\n"
 "Language-Team: Chinese (traditional) <zh-l10n@linux.org.tw>\n"
@@ -2766,7 +2766,7 @@ msgstr ""
 msgid "Loading failed, use a previous copy."
 msgstr ""
 
-#: WWW/Library/Implementation/HTAccess.c:1045 src/GridText.c:8301
+#: WWW/Library/Implementation/HTAccess.c:1045 src/GridText.c:8296
 msgid "Loading incomplete."
 msgstr "¥¼§¹¦¨¸ü¤J¤º®e¡C"
 
@@ -2835,7 +2835,7 @@ msgstr "¤w¶Ç°e %d ¦ì¤¸²Õ (%5d)"
 msgid "connect for data"
 msgstr ""
 
-#: WWW/Library/Implementation/HTFTP.c:3738
+#: WWW/Library/Implementation/HTFTP.c:3741
 msgid "Receiving FTP file."
 msgstr "¥¿¦b±µ¦¬ FTP ¥Ø¿ý¡C"
 
@@ -2989,7 +2989,7 @@ msgstr "¦a§}¤¤ªº³s±µ°ðµL®Ä"
 msgid "Address length looks invalid"
 msgstr "¦a§}ªø«×¦ü¥GµL®Ä"
 
-#: WWW/Library/Implementation/HTTCP.c:1551 WWW/Library/Implementation/HTTCP.c:1569
+#: WWW/Library/Implementation/HTTCP.c:1552 WWW/Library/Implementation/HTTCP.c:1570
 #, c-format
 msgid "Unable to locate remote host %s."
 msgstr "§ä¤£¨ì»·ºÝ¥D¾÷ %s¡C"
@@ -2998,38 +2998,38 @@ msgstr "§ä¤£¨ì»·ºÝ¥D¾÷ %s¡C"
 #. * but not HTAlert, because typically there will be other
 #. * alerts from the callers.  - kw
 #.
-#: WWW/Library/Implementation/HTTCP.c:1566 WWW/Library/Implementation/HTTelnet.c:108
+#: WWW/Library/Implementation/HTTCP.c:1567 WWW/Library/Implementation/HTTelnet.c:108
 #, c-format
 msgid "Invalid hostname %s"
 msgstr "µL®Äªº¥D¾÷¦WºÙ %s"
 
-#: WWW/Library/Implementation/HTTCP.c:1580
+#: WWW/Library/Implementation/HTTCP.c:1581
 #, c-format
 msgid "Making %s connection to %s"
 msgstr "¥¿¦b«Ø¥ß %s ³s½u¡A³s¦Ü %s"
 
-#: WWW/Library/Implementation/HTTCP.c:1591
+#: WWW/Library/Implementation/HTTCP.c:1592
 msgid "socket failed."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1604
+#: WWW/Library/Implementation/HTTCP.c:1605
 #, c-format
 msgid "socket failed: family %d addr %s port %s."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1628
+#: WWW/Library/Implementation/HTTCP.c:1629
 msgid "Could not make connection non-blocking."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1697
+#: WWW/Library/Implementation/HTTCP.c:1698
 msgid "Connection failed (too many retries)."
 msgstr "³s½u¥¢±Ñ (­«¸Õ¦¸¼Æ¤Ó¦h)¡C"
 
-#: WWW/Library/Implementation/HTTCP.c:1896
+#: WWW/Library/Implementation/HTTCP.c:1897
 msgid "Could not restore socket to blocking."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTCP.c:1962
+#: WWW/Library/Implementation/HTTCP.c:1963
 msgid "Socket read failed for 180,000 tries."
 msgstr ""
 
@@ -3038,45 +3038,45 @@ msgstr ""
 msgid "Address contains a username: %s"
 msgstr "¦a¤î¤¤§t¦³±b¤á¦WºÙ¡G%s"
 
-#: WWW/Library/Implementation/HTTP.c:497
+#: WWW/Library/Implementation/HTTP.c:531
 msgid "This client does not contain support for HTTPS URLs."
 msgstr "¦¹ÂsÄý¾¹¤£¤ä´© HTTPS URL¡C"
 
-#: WWW/Library/Implementation/HTTP.c:522
+#: WWW/Library/Implementation/HTTP.c:556
 msgid "Unable to connect to remote host."
 msgstr "µLªkÁpµ¸»·ºÝ¥D¾÷¡C"
 
-#: WWW/Library/Implementation/HTTP.c:544
+#: WWW/Library/Implementation/HTTP.c:578
 msgid "Retrying connection without TLS."
 msgstr "¹Á¸Õ¥H¤£¥Î TLS ªº¤è¦¡³s½u¡C"
 
-#: WWW/Library/Implementation/HTTP.c:587
+#: WWW/Library/Implementation/HTTP.c:621
 msgid "SSL error:Can't find common name in certificate-Continue?"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:604
+#: WWW/Library/Implementation/HTTP.c:638
 #, c-format
 msgid "SSL error:host(%s)!=cert(%s)-Continue?"
 msgstr "SSL ¿ù»~¡G¥D¾÷(%s)¤£²Å¦XÃÒ®Ñ(%s)¡C¬O§_Ä~Äò¡H"
 
-#: WWW/Library/Implementation/HTTP.c:616
+#: WWW/Library/Implementation/HTTP.c:650
 #, c-format
 msgid "Secure %d-bit %s (%s) HTTP connection"
 msgstr "%d ¦ì¤¸ %s (%s) ¦w¥þ HTTP ³s½u"
 
-#: WWW/Library/Implementation/HTTP.c:1086
+#: WWW/Library/Implementation/HTTP.c:1120
 msgid "Sending HTTP request."
 msgstr "¥¿¦b°e¥X HTTP ­n¨D¡C"
 
-#: WWW/Library/Implementation/HTTP.c:1125
+#: WWW/Library/Implementation/HTTP.c:1159
 msgid "Unexpected network write error; connection aborted."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1131
+#: WWW/Library/Implementation/HTTP.c:1165
 msgid "HTTP request sent; waiting for response."
 msgstr "¤w¶i¥X HTTP ­n¨D¡F¥¿¦bµ¥«Ý¦^À³¡C"
 
-#: WWW/Library/Implementation/HTTP.c:1199
+#: WWW/Library/Implementation/HTTP.c:1233
 msgid "Unexpected network read error; connection aborted."
 msgstr ""
 
@@ -3089,7 +3089,7 @@ 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:1393
+#: WWW/Library/Implementation/HTTP.c:1427
 msgid "Got unexpected Informational Status."
 msgstr ""
 
@@ -3099,7 +3099,7 @@ msgstr ""
 #. * content.  We'll instruct the user to do that, and
 #. * restore the current document.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1427
+#: WWW/Library/Implementation/HTTP.c:1461
 msgid "Request fulfilled.  Reset Content."
 msgstr ""
 
@@ -3109,27 +3109,27 @@ 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:1544
+#: WWW/Library/Implementation/HTTP.c:1578
 msgid "Got unexpected 304 Not Modified status."
 msgstr "¥X²{¹w®Æ¤§¥~ªº 304 Not Modified ª¬ºA¡C"
 
-#: WWW/Library/Implementation/HTTP.c:1607
+#: WWW/Library/Implementation/HTTP.c:1641
 msgid "Redirection of POST content requires user approval."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1622
+#: WWW/Library/Implementation/HTTP.c:1656
 msgid "Have POST content.  Treating Permanent Redirection as Temporary.\n"
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1664
+#: WWW/Library/Implementation/HTTP.c:1698
 msgid "Retrying with access authorization information."
 msgstr ""
 
-#: WWW/Library/Implementation/HTTP.c:1676
+#: WWW/Library/Implementation/HTTP.c:1710
 msgid "Show the 401 message body?"
 msgstr "¬O§_Åã¥Ü 401 ¿ù»~°T®§ªººô­¶¤º®e¡H"
 
-#: WWW/Library/Implementation/HTTP.c:1719
+#: WWW/Library/Implementation/HTTP.c:1753
 msgid "Show the 407 message body?"
 msgstr "¬O§_Åã¥Ü 407 ¿ù»~°T®§ªººô­¶¤º®e¡H"
 
@@ -3137,7 +3137,7 @@ msgstr "¬O§_Åã¥Ü 407 ¿ù»~°T®§ªººô­¶¤º®e¡H"
 #. * Bad or unknown server_status number.  Take a chance and hope
 #. * there is something to display.  - FM
 #.
-#: WWW/Library/Implementation/HTTP.c:1819
+#: WWW/Library/Implementation/HTTP.c:1853
 msgid "Unknown status reply from server!"
 msgstr "¦øªA¾¹µo¥X¤£©úªºª¬ºA¦^À³°T®§¡I"
 
@@ -3391,30 +3391,30 @@ msgstr ""
 msgid "unknown form field"
 msgstr ""
 
-#: src/GridText.c:10020
+#: src/GridText.c:10015
 msgid "Can't open file for uploading"
 msgstr "µLªk¶}±Ò·Ç³Æ¤W¶ÇªºÀÉ®×"
 
-#: src/GridText.c:11170
+#: src/GridText.c:11165
 #, c-format
 msgid "Submitting %s"
 msgstr ""
 
 #. ugliness has happened; inform user and do the best we can
-#: src/GridText.c:12318
+#: src/GridText.c:12313
 msgid "Hang Detect: TextAnchor struct corrupted - suggest aborting!"
 msgstr ""
 
 #. don't show previous state
-#: src/GridText.c:12523
+#: src/GridText.c:12518
 msgid "Wrap lines to fit displayed area?"
 msgstr "¬O§_¶i¦æ¦Û°Ê´«¦æ¨Ó²Å¦Xµe­±¤Ø¤o¡H"
 
-#: src/GridText.c:12575
+#: src/GridText.c:12570
 msgid "Very long lines have been wrapped!"
 msgstr ""
 
-#: src/GridText.c:13016
+#: src/GridText.c:13011
 msgid "Very long lines have been truncated!"
 msgstr ""
 
@@ -4639,117 +4639,121 @@ msgstr "±µ¨ü§ó§ï"
 msgid "gzip"
 msgstr ""
 
-#: src/LYOptions.c:2388
+#: src/LYOptions.c:2386
+msgid "deflate"
+msgstr ""
+
+#: src/LYOptions.c:2389
 msgid "compress"
 msgstr ""
 
-#: src/LYOptions.c:2391
+#: src/LYOptions.c:2392
 msgid "bzip2"
 msgstr ""
 
-#: src/LYOptions.c:2393
+#: src/LYOptions.c:2394
 msgid "All"
 msgstr ""
 
-#: src/LYOptions.c:2658 src/LYOptions.c:2682
+#: src/LYOptions.c:2659 src/LYOptions.c:2683
 #, c-format
 msgid "Use %s to invoke the Options menu!"
 msgstr ""
 
-#: src/LYOptions.c:3421
+#: src/LYOptions.c:3422
 msgid "(options marked with (!) will not be saved)"
 msgstr ""
 
-#: src/LYOptions.c:3429
+#: src/LYOptions.c:3430
 msgid "General Preferences"
 msgstr "¤@¯ë°¾¦n³]©w"
 
 #. ***************************************************************
 #. User Mode: SELECT
-#: src/LYOptions.c:3433
+#: src/LYOptions.c:3434
 msgid "User mode"
 msgstr "¨Ï¥ÎªÌ¼Ò¦¡"
 
 #. Editor: INPUT
-#: src/LYOptions.c:3439
+#: src/LYOptions.c:3440
 msgid "Editor"
 msgstr "½s¿è¾¹"
 
 #. Search Type: SELECT
-#: src/LYOptions.c:3444
+#: src/LYOptions.c:3445
 msgid "Type of Search"
 msgstr "·j´M¤è¦¡"
 
-#: src/LYOptions.c:3449
+#: src/LYOptions.c:3450
 msgid "Security and Privacy"
 msgstr ""
 
 #. ***************************************************************
 #. Cookies: SELECT
-#: src/LYOptions.c:3453
+#: src/LYOptions.c:3454
 msgid "Cookies"
 msgstr "Cookie"
 
 #. Cookie Prompting: SELECT
-#: src/LYOptions.c:3467
+#: src/LYOptions.c:3468
 msgid "Invalid-Cookie Prompting"
 msgstr ""
 
 #. SSL Prompting: SELECT
-#: src/LYOptions.c:3474
+#: src/LYOptions.c:3475
 msgid "SSL Prompting"
 msgstr ""
 
-#: src/LYOptions.c:3480
+#: src/LYOptions.c:3481
 msgid "Keyboard Input"
 msgstr "Áä½L¿é¤J"
 
 #. ***************************************************************
 #. Keypad Mode: SELECT
-#: src/LYOptions.c:3484
+#: src/LYOptions.c:3485
 msgid "Keypad mode"
 msgstr "¼Æ¦rÁä½L¼Ò¦¡"
 
 #. Emacs keys: ON/OFF
-#: src/LYOptions.c:3490
+#: src/LYOptions.c:3491
 msgid "Emacs keys"
 msgstr "Emacs ²Õ¦XÁä"
 
 #. VI Keys: ON/OFF
-#: src/LYOptions.c:3496
+#: src/LYOptions.c:3497
 msgid "VI keys"
 msgstr "VI ²Õ¦XÁä"
 
 #. Line edit style: SELECT
 #. well, at least 2 line edit styles available
-#: src/LYOptions.c:3503
+#: src/LYOptions.c:3504
 msgid "Line edit style"
 msgstr "¤å¦r½s¿è¼Ò¦¡"
 
 #. Keyboard layout: SELECT
-#: src/LYOptions.c:3515
+#: src/LYOptions.c:3516
 msgid "Keyboard layout"
 msgstr "Áä½L°t¸m"
 
 #.
 #. * Display and Character Set
 #.
-#: src/LYOptions.c:3529
+#: src/LYOptions.c:3530
 msgid "Display and Character Set"
 msgstr "Åã¥Ü¤Î¦r¤¸¶°"
 
 #. Use locale-based character set: ON/OFF
-#: src/LYOptions.c:3534
+#: src/LYOptions.c:3535
 #, fuzzy
 msgid "Use locale-based character set"
 msgstr "«á³Æªº¦r¤¸¶°"
 
 #. Display Character Set: SELECT
-#: src/LYOptions.c:3543
+#: src/LYOptions.c:3544
 msgid "Display character set"
 msgstr "¹w³]Åã¥Üªº¦r¤¸¶°"
 
-#: src/LYOptions.c:3574
+#: src/LYOptions.c:3575
 msgid "Assumed document character set"
 msgstr "«á³Æªº¦r¤¸¶°"
 
@@ -4758,167 +4762,167 @@ msgstr "«á³Æªº¦r¤¸¶°"
 #. * we split the header to make it more readable:
 #. * "CJK mode" for CJK display charsets, and "Raw 8-bit" for others.
 #.
-#: src/LYOptions.c:3594
+#: src/LYOptions.c:3595
 msgid "CJK mode"
 msgstr "CJK ¼Ò¦¡"
 
-#: src/LYOptions.c:3596
+#: src/LYOptions.c:3597
 msgid "Raw 8-bit"
 msgstr "8-bit ­ì©l¼Ò¦¡"
 
 #. X Display: INPUT
-#: src/LYOptions.c:3604
+#: src/LYOptions.c:3605
 msgid "X Display"
 msgstr "X µe­±"
 
 #.
 #. * Document Appearance
 #.
-#: src/LYOptions.c:3610
+#: src/LYOptions.c:3611
 msgid "Document Appearance"
 msgstr "¤å¥ó¥~Æ["
 
-#: src/LYOptions.c:3616
+#: src/LYOptions.c:3617
 msgid "Show color"
 msgstr "Åã¥Ü¦â±m"
 
 #. Show cursor: ON/OFF
-#: src/LYOptions.c:3640
+#: src/LYOptions.c:3641
 msgid "Show cursor"
 msgstr "Åã¥Ü´å¼Ð"
 
 #. Underline links: ON/OFF
-#: src/LYOptions.c:3646
+#: src/LYOptions.c:3647
 #, fuzzy
 msgid "Underline links"
 msgstr "ÁôÂêºÃìµ²¡G"
 
 #. Show scrollbar: ON/OFF
-#: src/LYOptions.c:3653
+#: src/LYOptions.c:3654
 msgid "Show scrollbar"
 msgstr "Åã¥Ü±²°Ê¦C"
 
 #. Select Popups: ON/OFF
-#: src/LYOptions.c:3660
+#: src/LYOptions.c:3661
 msgid "Popups for select fields"
 msgstr ""
 
 #. HTML error recovery: SELECT
-#: src/LYOptions.c:3666
+#: src/LYOptions.c:3667
 msgid "HTML error recovery"
 msgstr ""
 
 #. Show Images: SELECT
-#: src/LYOptions.c:3672
+#: src/LYOptions.c:3673
 msgid "Show images"
 msgstr "Åã¥Ü¹Ï¹³"
 
 #. Verbose Images: ON/OFF
-#: src/LYOptions.c:3686
+#: src/LYOptions.c:3687
 msgid "Verbose images"
 msgstr "¹Ï¹³¸Ô²Ó¸ê®Æ"
 
-#: src/LYOptions.c:3695
+#: src/LYOptions.c:3696
 msgid "Headers Transferred to Remote Servers"
 msgstr "¶Ç°e¦Ü»·ºÝ¦øªA¾¹ªº¼ÐÀY¸ê®Æ"
 
 #. ***************************************************************
 #. Mail Address: INPUT
-#: src/LYOptions.c:3699
+#: src/LYOptions.c:3700
 msgid "Personal mail address"
 msgstr "­Ó¤H¹q¶l¦a§}"
 
 #. Preferred media type: SELECT
-#: src/LYOptions.c:3704
+#: src/LYOptions.c:3705
 #, fuzzy
 msgid "Preferred media type"
 msgstr "¤w¶Ç¿é %d ¦ì¤¸²Õ"
 
 #. Preferred encoding: SELECT
-#: src/LYOptions.c:3710
+#: src/LYOptions.c:3711
 #, fuzzy
 msgid "Preferred encoding"
 msgstr "Àu¥ý¨Ï¥Îªº»y¨¥"
 
 #. Preferred Document Character Set: INPUT
-#: src/LYOptions.c:3716
+#: src/LYOptions.c:3717
 msgid "Preferred document character set"
 msgstr "Àu¥ý¨Ï¥Îªº¦r¤¸¶°"
 
 #. Preferred Document Language: INPUT
-#: src/LYOptions.c:3721
+#: src/LYOptions.c:3722
 msgid "Preferred document language"
 msgstr "Àu¥ý¨Ï¥Îªº»y¨¥"
 
-#: src/LYOptions.c:3727
+#: src/LYOptions.c:3728
 msgid "User-Agent header"
 msgstr "User-Agent ¼ÐÀY"
 
 #.
 #. * Listing and Accessing Files
 #.
-#: src/LYOptions.c:3735
+#: src/LYOptions.c:3736
 msgid "Listing and Accessing Files"
 msgstr "¦C¥X¤Î¦s¨úÀÉ®×"
 
 #. ***************************************************************
 #. FTP sort: SELECT
-#: src/LYOptions.c:3739
+#: src/LYOptions.c:3740
 msgid "FTP sort criteria"
 msgstr "FTP ¶µ¥Ø±Æ§Ç±ø¥ó"
 
 #. Local Directory Sort: SELECT
-#: src/LYOptions.c:3746
+#: src/LYOptions.c:3747
 msgid "Local directory sort criteria"
 msgstr "¥»¦aºÝ¥Ø¿ý±Æ§Ç±ø¥ó"
 
 #. Local Directory Order: SELECT
-#: src/LYOptions.c:3752
+#: src/LYOptions.c:3753
 msgid "Local directory sort order"
 msgstr "¥»¦aºÝ¥Ø¿ý±Æ¦C¦¸§Ç"
 
-#: src/LYOptions.c:3761
+#: src/LYOptions.c:3762
 msgid "Show dot files"
 msgstr "Åã¥ÜÁôÂÃÀÉ"
 
-#: src/LYOptions.c:3769
+#: src/LYOptions.c:3770
 msgid "Execution links"
 msgstr ""
 
 #. Show transfer rate: SELECT
-#: src/LYOptions.c:3789
+#: src/LYOptions.c:3790
 msgid "Show transfer rate"
 msgstr "Åã¥Ü¶Ç¿é³t²v"
 
 #.
 #. * Special Files and Screens
 #.
-#: src/LYOptions.c:3809
+#: src/LYOptions.c:3810
 msgid "Special Files and Screens"
 msgstr "¯S®íÀɮפεe­±"
 
-#: src/LYOptions.c:3814
+#: src/LYOptions.c:3815
 msgid "Multi-bookmarks"
 msgstr "¦h®ÑÅÒÀɼҦ¡"
 
-#: src/LYOptions.c:3822
+#: src/LYOptions.c:3823
 msgid "Review/edit Bookmarks files"
 msgstr "¥iÂsÄý©Î½s¿è®ÑÅÒÀÉ"
 
-#: src/LYOptions.c:3824
+#: src/LYOptions.c:3825
 msgid "Goto multi-bookmark menu"
 msgstr "¶i¤J¦h®ÑÅÒÀɼҦ¡¿ï³æ"
 
-#: src/LYOptions.c:3826
+#: src/LYOptions.c:3827
 msgid "Bookmarks file"
 msgstr "®ÑÅÒÀÉ"
 
 #. Visited Pages: SELECT
-#: src/LYOptions.c:3832
+#: src/LYOptions.c:3833
 msgid "Visited Pages"
 msgstr "´¿¸gÂsÄýªººô­¶"
 
-#: src/LYOptions.c:3837
+#: src/LYOptions.c:3838
 msgid "View the file "
 msgstr ""
 
@@ -5032,38 +5036,38 @@ msgstr ""
 msgid "(no name)"
 msgstr ""
 
-#: src/LYReadCFG.c:1772
+#: src/LYReadCFG.c:1773
 #, c-format
 msgid "More than %d nested lynx.cfg includes -- perhaps there is a loop?!?\n"
 msgstr ""
 
-#: src/LYReadCFG.c:1774
+#: src/LYReadCFG.c:1775
 #, c-format
 msgid "Last attempted include was '%s',\n"
 msgstr ""
 
-#: src/LYReadCFG.c:1775
+#: src/LYReadCFG.c:1776
 #, c-format
 msgid "included from '%s'.\n"
 msgstr ""
 
-#: src/LYReadCFG.c:2181 src/LYReadCFG.c:2194 src/LYReadCFG.c:2252
+#: src/LYReadCFG.c:2183 src/LYReadCFG.c:2196 src/LYReadCFG.c:2254
 msgid "The following is read from your lynx.cfg file."
 msgstr "¥H¤U¬O±q»Õ¤Uªº lynx.cfg ÀÉ®×Ū¨úªº³]©w¡C"
 
-#: src/LYReadCFG.c:2182 src/LYReadCFG.c:2195
+#: src/LYReadCFG.c:2184 src/LYReadCFG.c:2197
 msgid "Please read the distribution"
 msgstr ""
 
-#: src/LYReadCFG.c:2188 src/LYReadCFG.c:2198
+#: src/LYReadCFG.c:2190 src/LYReadCFG.c:2200
 msgid "for more comments."
 msgstr ""
 
-#: src/LYReadCFG.c:2234
+#: src/LYReadCFG.c:2236
 msgid "RELOAD THE CHANGES"
 msgstr "­«·s¸ü¤J§ó§ï«áªº³]©w"
 
-#: src/LYReadCFG.c:2242
+#: src/LYReadCFG.c:2244
 msgid "Your primary configuration"
 msgstr "¥D­n²ÕºA"
 
@@ -5359,7 +5363,7 @@ msgstr "§ä¤£¨ì­Ó¤H¥Ø¿ý"
 msgid "Normally disabled.  See ENABLE_LYNXRC in lynx.cfg\n"
 msgstr "¤@¯ë¤£·|±Ò¥Î¡C½Ð°Ñ¦Ò lynx.cfg ¤¤ªº ENABLE_LYNXRC\n"
 
-#: src/LYrcFile.c:317
+#: src/LYrcFile.c:318
 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"
@@ -5367,21 +5371,21 @@ msgid ""
 "all cookies.\n"
 msgstr ""
 
-#: src/LYrcFile.c:324
+#: src/LYrcFile.c:325
 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 ""
 
-#: src/LYrcFile.c:329
+#: src/LYrcFile.c:330
 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 ""
 
-#: src/LYrcFile.c:334
+#: src/LYrcFile.c:335
 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"
@@ -5390,7 +5394,7 @@ msgid ""
 "Current valid characters sets are:\n"
 msgstr ""
 
-#: src/LYrcFile.c:341
+#: src/LYrcFile.c:342
 msgid ""
 "cookie_accept_domains and cookie_reject_domains are comma-delimited\n"
 "lists of domains from which Lynx should automatically accept or reject\n"
@@ -5399,13 +5403,13 @@ msgid ""
 "settings made here.\n"
 msgstr ""
 
-#: src/LYrcFile.c:349
+#: src/LYrcFile.c:350
 msgid ""
 "cookie_file specifies the file from which to read persistent cookies.\n"
 "The default is ~/.lynx_cookies.\n"
 msgstr ""
 
-#: src/LYrcFile.c:354
+#: src/LYrcFile.c:355
 msgid ""
 "cookie_loose_invalid_domains, cookie_strict_invalid_domains, and\n"
 "cookie_query_invalid_domains are comma-delimited lists of which domains\n"
@@ -5416,13 +5420,13 @@ msgid ""
 "querying the user for an invalid path or domain.\n"
 msgstr ""
 
-#: src/LYrcFile.c:368
+#: src/LYrcFile.c:369
 msgid ""
 "dir_list_order specifies the directory list order under DIRED_SUPPORT\n"
 "(if implemented).  The default is \"ORDER_BY_NAME\"\n"
 msgstr ""
 
-#: src/LYrcFile.c:373
+#: src/LYrcFile.c:374
 msgid ""
 "dir_list_styles specifies the directory list style under DIRED_SUPPORT\n"
 "(if implemented).  The default is \"MIXED_STYLE\", which sorts both\n"
@@ -5430,7 +5434,7 @@ msgid ""
 "\"DIRECTORIES_FIRST\" lists directories first.\n"
 msgstr ""
 
-#: src/LYrcFile.c:381
+#: src/LYrcFile.c:382
 msgid ""
 "If emacs_keys is to \"on\" then the normal EMACS movement keys:\n"
 "  ^N = down    ^P = up\n"
@@ -5441,7 +5445,7 @@ msgstr ""
 "  ^N = ¤U²¾    ^P = ¤W²¾\n"
 "  ^B = ¥ª²¾    ^F = ¥k²¾\n"
 
-#: src/LYrcFile.c:387
+#: src/LYrcFile.c:388
 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"
@@ -5449,7 +5453,7 @@ msgid ""
 "will be used for sending mail.\n"
 msgstr ""
 
-#: src/LYrcFile.c:393
+#: src/LYrcFile.c:394
 msgid ""
 "The file_sorting_method specifies which value to sort on when viewing\n"
 "file lists such as FTP directories.  The options are:\n"
@@ -5459,7 +5463,7 @@ msgid ""
 "   BY_DATE     -- sorts on the date of the file\n"
 msgstr ""
 
-#: src/LYrcFile.c:411
+#: src/LYrcFile.c:412
 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"
@@ -5474,7 +5478,7 @@ msgid ""
 "Current lineedit modes are:\n"
 msgstr ""
 
-#: src/LYrcFile.c:429
+#: src/LYrcFile.c:430
 msgid ""
 "The following allow you to define sub-bookmark files and descriptions.\n"
 "The format is multi_bookmark<capital_letter>=<filename>,<description>\n"
@@ -5482,7 +5486,7 @@ msgid ""
 "We start with \"multi_bookmarkB\" since 'A' is the default (see above).\n"
 msgstr ""
 
-#: src/LYrcFile.c:435
+#: src/LYrcFile.c:436
 msgid ""
 "personal_mail_address specifies your personal mail address.  The\n"
 "address will be sent during HTTP file transfers for authorization and\n"
@@ -5493,7 +5497,7 @@ msgid ""
 "your mailed comments.\n"
 msgstr ""
 
-#: src/LYrcFile.c:444
+#: src/LYrcFile.c:445
 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"
@@ -5509,7 +5513,7 @@ msgid ""
 "is also allowed.\n"
 msgstr ""
 
-#: src/LYrcFile.c:460
+#: src/LYrcFile.c:461
 msgid ""
 "preferred_language specifies the language in MIME notation (e.g., en,\n"
 "fr, may be a comma-separated list in decreasing preference)\n"
@@ -5518,7 +5522,7 @@ msgid ""
 "Otherwise, the server will send the file in its default language.\n"
 msgstr ""
 
-#: src/LYrcFile.c:471
+#: src/LYrcFile.c:472
 msgid ""
 "If run_all_execution_links is set \"on\" then all local execution links\n"
 "will be executed when they are selected.\n"
@@ -5531,7 +5535,7 @@ msgid ""
 "          you are viewing trusted source information.\n"
 msgstr ""
 
-#: src/LYrcFile.c:482
+#: src/LYrcFile.c:483
 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"
@@ -5547,7 +5551,7 @@ msgid ""
 "          you are viewing trusted source information.\n"
 msgstr ""
 
-#: src/LYrcFile.c:500
+#: src/LYrcFile.c:501
 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"
@@ -5558,7 +5562,7 @@ msgid ""
 "The default can be overridden via the -popup command line toggle.\n"
 msgstr ""
 
-#: src/LYrcFile.c:510
+#: src/LYrcFile.c:511
 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"
@@ -5577,7 +5581,7 @@ msgid ""
 "\"off\" \"show color\" settings will be treated as \"default\".\n"
 msgstr ""
 
-#: src/LYrcFile.c:527
+#: src/LYrcFile.c:528
 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"
@@ -5590,7 +5594,7 @@ msgid ""
 "The default can be overridden via the -show_cursor command line toggle.\n"
 msgstr ""
 
-#: src/LYrcFile.c:538
+#: src/LYrcFile.c:539
 msgid ""
 "show_dotfiles specifies that the directory listing should include\n"
 "\"hidden\" (dot) files/directories.  If set \"on\", this will be\n"
@@ -5599,7 +5603,7 @@ msgid ""
 "is disabled, creation of such files via Lynx also is disabled.\n"
 msgstr ""
 
-#: src/LYrcFile.c:549
+#: src/LYrcFile.c:550
 msgid ""
 "If sub_bookmarks is not turned \"off\", and multiple bookmarks have\n"
 "been defined (see below), then all bookmark operations will first\n"
@@ -5612,7 +5616,7 @@ msgid ""
 "presented regardless of user mode.\n"
 msgstr ""
 
-#: src/LYrcFile.c:563
+#: src/LYrcFile.c:564
 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"
@@ -5622,14 +5626,14 @@ msgid ""
 "bottom of the screen.\n"
 msgstr ""
 
-#: src/LYrcFile.c:572
+#: src/LYrcFile.c:573
 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 ""
 
-#: src/LYrcFile.c:577
+#: src/LYrcFile.c:578
 msgid ""
 "If vi_keys is set to \"on\", then the normal VI movement keys:\n"
 "  j = down    k = up\n"
@@ -5639,13 +5643,13 @@ msgid ""
 "and the keymap display, respectively.\n"
 msgstr ""
 
-#: src/LYrcFile.c:585
+#: src/LYrcFile.c:586
 msgid ""
 "The visited_links setting controls how Lynx organizes the information\n"
 "in the Visited Links Page.\n"
 msgstr ""
 
-#: src/LYrcFile.c:803
+#: src/LYrcFile.c:804
 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"
@@ -5656,13 +5660,13 @@ msgid ""
 "regardless of whether numlock is on.\n"
 msgstr ""
 
-#: src/LYrcFile.c:812
+#: src/LYrcFile.c:813
 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 ""
 
-#: src/LYrcFile.c:816
+#: src/LYrcFile.c:817
 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"
@@ -5673,14 +5677,14 @@ msgid ""
 "lists and output from the list command also enumerate form inputs.\n"
 msgstr ""
 
-#: src/LYrcFile.c:825
+#: src/LYrcFile.c:826
 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 ""
 
-#: src/LYrcFile.c:857
+#: src/LYrcFile.c:858
 msgid ""
 "Lynx User Defaults File\n"
 "\n"
diff --git a/src/GridText.c b/src/GridText.c
index a10322a1..4e5e3ba8 100644
--- a/src/GridText.c
+++ b/src/GridText.c
@@ -6737,8 +6737,9 @@ void HTCheckFnameForCompression(char **fname,
 				BOOL strip_ok)
 {
     char *fn = *fname;
-    char *dot = NULL, *cp = NULL;
-    char *suffix;
+    char *dot = NULL;
+    char *cp = NULL;
+    char *suffix = "";
     const char *ct = NULL;
     const char *ce = NULL;
     CompressFileType method = cftNone;
@@ -6778,16 +6779,7 @@ void HTCheckFnameForCompression(char **fname,
 	    method = cftBzip2;
 	}
     } else if (ce != 0) {
-	if (!strcasecomp(ce, "gzip") ||
-	    !strcasecomp(ce, "x-gzip")) {
-	    method = cftGzip;
-	} else if (!strcasecomp(ce, "compress") ||
-		   !strcasecomp(ce, "x-compress")) {
-	    method = cftCompress;
-	} else if (!strcasecomp(ce, "bzip2") ||
-		   !strcasecomp(ce, "x-bzip2")) {
-	    method = cftBzip2;
-	}
+	method = HTEncodingToCompressType(ce);
     }
 
     /*
@@ -6856,12 +6848,15 @@ void HTCheckFnameForCompression(char **fname,
     }
 
     switch (method) {
-    default:
+    case cftNone:
 	suffix = "";
 	break;
     case cftCompress:
 	suffix = ".Z";
 	break;
+    case cftDeflate:
+	suffix = ".zz";
+	break;
     case cftGzip:
 	suffix = ".gz";
 	break;
diff --git a/src/HTFWriter.c b/src/HTFWriter.c
index f494b1e7..4b3b98c1 100644
--- a/src/HTFWriter.c
+++ b/src/HTFWriter.c
@@ -172,7 +172,8 @@ static void HTFWriter_free(HTStream *me)
 		 */
 		StrAllocCopy(path, me->anchor->FileCache);
 		if ((len = strlen(path)) > 3 &&
-		    !strcasecomp(&path[len - 2], "gz")) {
+		    (!strcasecomp(&path[len - 2], "gz") ||
+		     !strcasecomp(&path[len - 2], "zz"))) {
 #ifdef USE_ZLIB
 		    if (!skip_loadfile) {
 			use_zread = YES;
@@ -955,11 +956,11 @@ HTStream *HTCompressed(HTPresentation *pres,
     HTFormat format;
     char *type = NULL;
     HTPresentation *Pres = NULL;
+    HTPresentation *Pnow = NULL;
     int n, i;
     BOOL can_present = FALSE;
     char fnam[LY_MAXPATH];
     char temp[LY_MAXPATH];	/* actually stores just a suffix */
-    const char *program;
     const char *suffix;
     char *uncompress_mask = NULL;
     char *compress_suffix = "";
@@ -980,44 +981,67 @@ HTStream *HTCompressed(HTPresentation *pres,
     }
     n = HTList_count(HTPresentations);
     for (i = 0; i < n; i++) {
-	Pres = (HTPresentation *) HTList_objectAt(HTPresentations, i);
-	if (!strcasecomp(Pres->rep->name, anchor->content_type) &&
-	    Pres->rep_out == WWW_PRESENT) {
+	Pnow = (HTPresentation *) HTList_objectAt(HTPresentations, i);
+	if (!strcasecomp(Pnow->rep->name, anchor->content_type) &&
+	    Pnow->rep_out == WWW_PRESENT) {
+	    const char *program = "";
+
+	    /*
+	     * Pick the best presentation.  User-defined mappings are at the
+	     * end of the list, and unless the quality is lower, we prefer
+	     * those.
+	     */
+	    if (Pres == 0)
+		Pres = Pnow;
+	    else if (Pres->quality > Pnow->quality)
+		continue;
+	    else
+		Pres = Pnow;
 	    /*
 	     * We have a presentation mapping for it.  - FM
 	     */
 	    can_present = TRUE;
-	    if ((!strcasecomp(anchor->content_encoding, "x-gzip") ||
-		 !strcasecomp(anchor->content_encoding, "gzip")) &&
-		(program = HTGetProgramPath(ppGZIP)) != NULL) {
-		/*
-		 * It's compressed with the modern gzip.  - FM
-		 */
-		StrAllocCopy(uncompress_mask, program);
-		StrAllocCat(uncompress_mask, " -d --no-name %s");
-		compress_suffix = "gz";
+	    switch (HTEncodingToCompressType(anchor->content_encoding)) {
+	    case cftGzip:
+		if ((program = HTGetProgramPath(ppGZIP)) != NULL) {
+		    /*
+		     * It's compressed with the modern gzip.  - FM
+		     */
+		    StrAllocCopy(uncompress_mask, program);
+		    StrAllocCat(uncompress_mask, " -d --no-name %s");
+		    compress_suffix = "gz";
+		}
 		break;
-	    }
-	    if ((!strcasecomp(anchor->content_encoding, "x-bzip2") ||
-		 !strcasecomp(anchor->content_encoding, "bzip2")) &&
-		(program = HTGetProgramPath(ppBZIP2)) != NULL) {
-		StrAllocCopy(uncompress_mask, program);
-		StrAllocCat(uncompress_mask, " -d %s");
-		compress_suffix = "bz2";
+	    case cftDeflate:
+		if ((program = HTGetProgramPath(ppINFLATE)) != NULL) {
+		    /*
+		     * It's compressed with a zlib wrapper.
+		     */
+		    StrAllocCopy(uncompress_mask, program);
+		    StrAllocCat(uncompress_mask, " %s");
+		    compress_suffix = "zz";
+		}
 		break;
-	    }
-	    if ((!strcasecomp(anchor->content_encoding, "x-compress") ||
-		 !strcasecomp(anchor->content_encoding, "compress")) &&
-		(program = HTGetProgramPath(ppUNCOMPRESS)) != NULL) {
-		/*
-		 * It's compressed the old fashioned Unix way.  - FM
-		 */
-		StrAllocCopy(uncompress_mask, program);
-		StrAllocCat(uncompress_mask, " %s");
-		compress_suffix = "Z";
+	    case cftBzip2:
+		if ((program = HTGetProgramPath(ppBZIP2)) != NULL) {
+		    StrAllocCopy(uncompress_mask, program);
+		    StrAllocCat(uncompress_mask, " -d %s");
+		    compress_suffix = "bz2";
+		}
+		break;
+	    case cftCompress:
+		if ((program = HTGetProgramPath(ppUNCOMPRESS)) != NULL) {
+		    /*
+		     * It's compressed the old fashioned Unix way.  - FM
+		     */
+		    StrAllocCopy(uncompress_mask, program);
+		    StrAllocCat(uncompress_mask, " %s");
+		    compress_suffix = "Z";
+		}
+		break;
+	    case cftNone:
 		break;
 	    }
-	    break;
 	}
     }
     if (can_present == FALSE ||	/* no presentation mapping */
@@ -1087,6 +1111,7 @@ HTStream *HTCompressed(HTPresentation *pres,
     } else if (!strncasecomp(anchor->content_type, "text/", 5)) {
 	middle = TEXT_SUFFIX + 1;
     } else if (!strncasecomp(anchor->content_type, "application/", 12)) {
+	/* FIXME: why is this BEFORE HTFileSuffix? */
 	middle = BIN_SUFFIX + 1;
     } else if ((suffix =
 		HTFileSuffix(HTAtom_for(anchor->content_type), NULL)) &&
@@ -1158,6 +1183,7 @@ HTStream *HTCompressed(HTPresentation *pres,
     } else
 #endif
 #ifdef USE_ZLIB
+	/* FIXME: allow deflate here, e.g., 'z' */
 	if (compress_suffix[0] == 'g'	/* must be gzip */
 	    && !me->viewer_command) {
 	/*
diff --git a/src/HTInit.c b/src/HTInit.c
index a1380cd7..85ef10de 100644
--- a/src/HTInit.c
+++ b/src/HTInit.c
@@ -1093,8 +1093,10 @@ void HTFileInit(void)
 
 	SET_SUFFIX5(".zip",	"application/zip",		"binary", "Zip File");
 
-	SET_SUFFIX1(".bz2",	"application/x-bzip2",		"binary");
+	SET_SUFFIX1(".zz",	"application/x-deflate",	"binary");
+	SET_SUFFIX1(".zz",	"application/deflate",		"binary");
 
+	SET_SUFFIX1(".bz2",	"application/x-bzip2",		"binary");
 	SET_SUFFIX1(".bz2",	"application/bzip2",		"binary");
 
 #ifdef TRADITIONAL_SUFFIXES
diff --git a/src/LYMain.c b/src/LYMain.c
index 38a4fc0f..5bfa4ac0 100644
--- a/src/LYMain.c
+++ b/src/LYMain.c
@@ -4140,7 +4140,7 @@ static BOOL parse_arg(char **argv,
 		if ((countp != 0) && (next_arg != 0))
 		    (*countp)++;
 	    }
-	    CTRACE((tfp, "...arg:%s\n", next_arg != 0 ? next_arg : "<null>"));
+	    CTRACE((tfp, "...arg:%s\n", NONNULL(next_arg)));
 	}
 
 	/* ignore option if it's not our turn */
diff --git a/src/LYOptions.c b/src/LYOptions.c
index 99f0140d..25f995fa 100644
--- a/src/LYOptions.c
+++ b/src/LYOptions.c
@@ -2383,6 +2383,7 @@ static OptValues encoding_values[] =
     {encodingNONE, N_("None"), "encoding_none"},
 #if defined(USE_ZLIB) || defined(GZIP_PATH)
     {encodingGZIP, N_("gzip"), "encoding_gzip"},
+    {encodingDEFLATE, N_("deflate"), "encoding_deflate"},
 #endif
 #if defined(USE_ZLIB) || defined(COMPRESS_PATH)
     {encodingCOMPRESS, N_("compress"), "encoding_compress"},
diff --git a/src/LYReadCFG.c b/src/LYReadCFG.c
index 83fd3def..0ce9e480 100644
--- a/src/LYReadCFG.c
+++ b/src/LYReadCFG.c
@@ -1331,6 +1331,7 @@ static Config_Type Config_Table [] =
      PARSE_Env(RC_HTTP_PROXY,           0),
      PARSE_Env(RC_HTTPS_PROXY,          0),
      PARSE_REQ(RC_INCLUDE,              0),
+     PARSE_PRG(RC_INFLATE_PATH,         ppINFLATE),
      PARSE_TIM(RC_INFOSECS,             InfoSecs),
      PARSE_PRG(RC_INSTALL_PATH,         ppINSTALL),
      PARSE_STR(RC_JUMP_PROMPT,          jumpprompt),
@@ -1662,7 +1663,7 @@ void LYSetConfigValue(char *name,
 {
     Config_Type *tbl = lookup_config(name);
     ParseUnionPtr q = ParseUnionOf(tbl);
-    char *temp;
+    char *temp = 0;
 
     switch (tbl->type) {
     case CONF_BOOL:
@@ -1878,6 +1879,7 @@ static void do_read_cfg(char *cfg_filename,
 	case CONF_STR:
 	case CONF_ENV:
 	case CONF_ENV2:
+	case CONF_PRG:
 	case CONF_ADD_ITEM:
 	case CONF_ADD_TRUSTED:
 	    LYSetConfigValue(name, value);
diff --git a/src/LYUtils.c b/src/LYUtils.c
index 448575c4..7f456979 100644
--- a/src/LYUtils.c
+++ b/src/LYUtils.c
@@ -2665,7 +2665,7 @@ BOOLEAN inlocaldomain(void)
     } else {
 	CTRACE((tfp,
 		"Could not get ttyname (returned %s) or open UTMP file %s\n",
-		((cp != 0) ? cp : "<null>"), UTMP_FILE));
+		NONNULL(cp), UTMP_FILE));
     }
 
     return (FALSE);
@@ -7490,9 +7490,9 @@ void LYmsec_delay(unsigned msec)
     struct timeval tv;
     unsigned long usec = 1000UL * msec;
 
-    tv.tv_sec  = usec / 1000000UL;
+    tv.tv_sec = usec / 1000000UL;
     tv.tv_usec = usec % 1000000UL;
-    select (0, NULL, NULL, NULL, &tv);
+    select(0, NULL, NULL, NULL, &tv);
 #endif
 }
 
diff --git a/src/LYrcFile.c b/src/LYrcFile.c
index e47b99e5..c7437d92 100644
--- a/src/LYrcFile.c
+++ b/src/LYrcFile.c
@@ -86,6 +86,7 @@ Config_Enum tbl_preferred_encoding[] = {
     { "none",		encodingNONE },
 #if defined(USE_ZLIB) || defined(GZIP_PATH)
     { "gzip",		encodingGZIP },
+    { "deflate",	encodingDEFLATE },
 #endif
 #if defined(USE_ZLIB) || defined(COMPRESS_PATH)
     { "compress",	encodingCOMPRESS },
diff --git a/src/LYrcFile.h b/src/LYrcFile.h
index 8b7df5c4..22b18b15 100644
--- a/src/LYrcFile.h
+++ b/src/LYrcFile.h
@@ -91,6 +91,7 @@
 #define RC_HTTPS_PROXY                  "https_proxy"
 #define RC_HTTP_PROXY                   "http_proxy"
 #define RC_INCLUDE                      "include"
+#define RC_INFLATE_PATH                 "inflate_path"
 #define RC_INFOSECS                     "infosecs"
 #define RC_INSTALL_PATH                 "install_path"
 #define RC_JUMPBUFFER                   "jumpbuffer"
diff --git a/userdefs.h b/userdefs.h
index e2e2f7d3..63ff3af1 100644
--- a/userdefs.h
+++ b/userdefs.h
@@ -1360,11 +1360,11 @@
  * the version definition with the Project Version on checkout.  Just
  * ignore it. - kw */
 /* $Format: "#define LYNX_VERSION \"$ProjectVersion$\""$ */
-#define LYNX_VERSION "2.8.6dev.6"
+#define LYNX_VERSION "2.8.6dev.7"
 #define LYNX_WWW_HOME "http://lynx.isc.org/"
 #define LYNX_WWW_DIST "http://lynx.isc.org/current/"
 /* $Format: "#define LYNX_DATE \"$ProjectDate$\""$ */
-#define LYNX_DATE "Sun, 10 Oct 2004 17:29:46 -0700"
+#define LYNX_DATE "Sun, 17 Oct 2004 14:54:30 -0700"
 #define LYNX_DATE_OFF 5		/* truncate the automatically-generated date */
 #define LYNX_DATE_LEN 11	/* truncate the automatically-generated date */