diff options
-rw-r--r-- | CHANGES | 19 | ||||
-rw-r--r-- | WWW/Library/Implementation/HTParse.c | 53 | ||||
-rw-r--r-- | WWW/Library/Implementation/HTParse.h | 17 | ||||
-rw-r--r-- | aclocal.m4 | 26 | ||||
-rwxr-xr-x | config.guess | 1053 | ||||
-rw-r--r-- | config.hin | 3 | ||||
-rwxr-xr-x | config.sub | 4 | ||||
-rwxr-xr-x | configure | 2019 | ||||
-rw-r--r-- | lynx.cfg | 3 | ||||
-rw-r--r-- | lynx_help/Lynx_users_guide.html | 478 | ||||
-rw-r--r-- | src/LYMain.c | 5 | ||||
-rw-r--r-- | src/LYOptions.c | 39 | ||||
-rw-r--r-- | src/LYrcFile.c | 16 | ||||
-rw-r--r-- | src/LYrcFile.h | 7 | ||||
-rw-r--r-- | test/idna-tr46.html | 54 |
15 files changed, 2397 insertions, 1399 deletions
diff --git a/CHANGES b/CHANGES index f5d88ecd..326a285b 100644 --- a/CHANGES +++ b/CHANGES @@ -1,10 +1,23 @@ --- $LynxId: CHANGES,v 1.1078 2021/07/02 00:15:34 tom Exp $ +-- $LynxId: CHANGES,v 1.1083 2021/07/09 00:00:24 tom Exp $ =============================================================================== Changes since Lynx 2.8 release =============================================================================== -2021-07-01 (2.9.0dev.7) -* add euc-kr charset support to the chinese-utf8 option -TD +2021-07-08 (2.9.0dev.7) +* modify configure script to check for libidn2, add options menu setting for + selecting old/new/compat behavior (prompted by patch by Robert Scheck, Redhat + #1910971) -TD + Further reading: + https://nikmav.blogspot.com/2017/04/the-mess-with-internationalized-domain.html + https://unicode.org/reports/tr46/ + https://datatracker.ietf.org/doc/html/rfc5890 + https://datatracker.ietf.org/doc/html/draft-iab-protocol-transitions-01 +* add euc-kr charset support to the chinese-utf8 option, noting issue with + the charset here: + https://lists.w3.org/Archives/Public/ietf-charsets/2001AprJun/0030.html + http://unicode.org/mail-arch/unicode-ml/y2002-m03/0641.html + https://docs.microsoft.com/en-us/previous-versions/office/developer/office-2003/aa171439(v=office.11) + i.e., "ks_c_5601-1987" -TD * add chinese-utf8 optional feature for big5 charset -TD * add chinese-utf8 optional feature for gb2312 charset -TD * enable cjk and japanese-utf8 features by default, renaming the symbol diff --git a/WWW/Library/Implementation/HTParse.c b/WWW/Library/Implementation/HTParse.c index dd121ce4..99dd5835 100644 --- a/WWW/Library/Implementation/HTParse.c +++ b/WWW/Library/Implementation/HTParse.c @@ -1,5 +1,5 @@ /* - * $LynxId: HTParse.c,v 1.92 2021/06/09 19:30:55 tom Exp $ + * $LynxId: HTParse.c,v 1.95 2021/07/08 22:54:00 tom Exp $ * * Parse HyperText Document Address HTParse.c * ================================ @@ -22,9 +22,12 @@ #endif /* __MINGW32__ */ #endif -#ifdef USE_IDNA -#include <idna.h> -#include <idn-free.h> +#ifdef USE_IDN2 +#include <idn2.h> +#define FreeIdna(out) idn2_free(out) +#elif defined(USE_IDNA) +#include <idn2.h> +#define FreeIdna(out) idn_free(out) #endif #define HEX_ESCAPE '%' @@ -242,7 +245,7 @@ char *HTParsePort(char *host, int *portp) return result; } -#ifdef USE_IDNA +#if defined(USE_IDNA) || defined(USE_IDN2) static int hex_decode(int ch) { int result = -1; @@ -299,8 +302,42 @@ static void convert_to_idna(char *host) } if (code) { *dst = '\0'; +#ifdef USE_IDN2 +#if (!defined(IDN2_VERSION_NUMBER) || IDN2_VERSION_NUMBER < 0x02000003) + /* + * Older libidn2 mishandles STD3, stripping underscores. + */ + if (strchr(buffer, '_') != NULL) { + code = -1; + } else +#endif + switch (LYidnaMode) { + case LYidna2003: + code = idn2_to_ascii_8z(buffer, &output, IDN2_TRANSITIONAL); + break; + case LYidna2008: + /* IDNA2008 rules without the TR46 amendments */ + code = idn2_to_ascii_8z(buffer, &output, 0); + break; + case LYidnaTR46: + code = idn2_to_ascii_8z(buffer, &output, IDN2_NONTRANSITIONAL + | IDN2_NFC_INPUT); + break; + case LYidnaCompat: + /* IDNA2008 */ + code = idn2_to_ascii_8z(buffer, &output, IDN2_NONTRANSITIONAL + | IDN2_NFC_INPUT); + if (code == IDN2_DISALLOWED) { + /* IDNA2003 - compatible */ + code = idn2_to_ascii_8z(buffer, &output, IDN2_TRANSITIONAL); + } + break; + } +#else code = idna_to_ascii_8z(buffer, &output, IDNA_USE_STD3_ASCII_RULES); - if (code == IDNA_SUCCESS) { +#endif + if (code == IDN2_OK) { + CTRACE((tfp, "convert_to_idna: `%s' -> `%s': OK\n", buffer, output)); strcpy(host, output); strcat(host, params); } else { @@ -309,7 +346,7 @@ static void convert_to_idna(char *host) idna_strerror((Idna_rc) code))); } if (output) - idn_free(output); + FreeIdna(output); } } free(buffer); @@ -541,7 +578,7 @@ char *HTParse(const char *aName, } } } -#ifdef USE_IDNA +#if defined(USE_IDNA) || defined(USE_IDN2) /* * Depending on locale-support, we could have a literal UTF-8 * string as a host name, or a URL-encoded form of that. diff --git a/WWW/Library/Implementation/HTParse.h b/WWW/Library/Implementation/HTParse.h index a1aa2e25..49b40b34 100644 --- a/WWW/Library/Implementation/HTParse.h +++ b/WWW/Library/Implementation/HTParse.h @@ -1,5 +1,5 @@ /* - * $LynxId: HTParse.h,v 1.23 2019/08/16 22:42:06 tom Exp $ + * $LynxId: HTParse.h,v 1.26 2021/07/05 20:56:50 tom Exp $ * HTParse: URL parsing in the WWW Library * HTPARSE * @@ -49,13 +49,26 @@ extern "C" { #define URL_XALPHAS UCH(1) #define URL_XPALPHAS UCH(2) #define URL_PATH UCH(4) + +#ifdef USE_IDN2 + typedef enum { + LYidna2003 = 1, + LYidna2008, + LYidnaTR46, + LYidnaCompat + } HTIdnaModes; + + extern int LYidnaMode; +#endif + /* Strip white space off a string. HTStrip() * ------------------------------- * * On exit, * Return value points to first non-white character, or to 0 if none. * All trailing white space is OVERWRITTEN with zero. - */ extern char *HTStrip(char *s); + */ + extern char *HTStrip(char *s); /* * Parse a port number diff --git a/aclocal.m4 b/aclocal.m4 index 87dcb15b..3f248af5 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -1,4 +1,4 @@ -dnl $LynxId: aclocal.m4,v 1.302 2021/06/13 23:45:41 tom Exp $ +dnl $LynxId: aclocal.m4,v 1.303 2021/07/05 13:09:42 tom Exp $ dnl Macros for auto-configure script. dnl by Thomas E. Dickey <dickey@invisible-island.net> dnl and Jim Spath <jspath@mail.bcpl.lib.md.us> @@ -7232,23 +7232,39 @@ fi dnl --------------------------------------------------------------------------- dnl CF_WITH_IDNA version: 10 updated: 2015/04/15 19:08:48 dnl ------------ -dnl Check for libidn, use it if found. +dnl Check for libidn2, use it if found. Otherwise, check for libidn, use that. dnl dnl $1 = optional path for headers/library AC_DEFUN([CF_WITH_IDNA],[ - CF_ADD_OPTIONAL_PATH($1) +CF_ADD_OPTIONAL_PATH($1) - CF_FIND_LINKAGE([ +CF_FIND_LINKAGE([ +#include <stdio.h> +#include <idn2.h> +],[ + char *output = 0; + int code = idn2_to_ascii_8z("name", &output, IDN2_USE_STD3_ASCII_RULES); + (void) code; +],idn2,,[CF_VERBOSE([unsuccessful, will try idn (older)])],,[$LIBICONV]) + +if test "x$cf_cv_find_linkage_idn2" = xyes ; then + CF_VERBOSE(found idn2 library) + AC_DEFINE(USE_IDN2,1,[Define to 1 if we should use IDN2 library]) +else + CF_FIND_LINKAGE([ #include <stdio.h> #include <idna.h> ],[ char *output = 0; - int code = idna_to_ascii_8z("name", &output, IDNA_USE_STD3_ASCII_RULES); + int code = idna_to_ascii_8z("name", &output, IDNA_USE_STD3_ASCII_RULES); + (void) code; ],idn,,,,[$LIBICONV]) if test "x$cf_cv_find_linkage_idn" = xyes ; then + CF_VERBOSE(found idn library) AC_DEFINE(USE_IDNA,1,[Define to 1 if we should use IDNA library]) fi +fi ])dnl dnl --------------------------------------------------------------------------- dnl CF_WITH_PATH version: 11 updated: 2012/09/29 15:04:19 diff --git a/config.guess b/config.guess index 9c65c6c1..e81d3ae7 100755 --- a/config.guess +++ b/config.guess @@ -1,9 +1,10 @@ #! /bin/sh # Attempt to guess a canonical system name. -# Copyright 2021 Thomas E. Dickey # Copyright 1992-2021 Free Software Foundation, Inc. -timestamp='2021-05-24' +# shellcheck disable=SC2006,SC2268 # see below for rationale + +timestamp='2021-06-03' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -33,6 +34,14 @@ timestamp='2021-05-24' # Please send patches to <config-patches@gnu.org>. +# The "shellcheck disable" line above the timestamp inhibits complaints +# about features and limitations of the classic Bourne shell that were +# superseded or lifted in POSIX. However, this script identifies a wide +# variety of pre-POSIX systems that do not have POSIX shells at all, and +# even some reasonably current systems (Solaris 10 as case-in-point) still +# have a pre-POSIX /bin/sh. + + me=`echo "$0" | sed -e 's,.*/,,'` usage="\ @@ -85,6 +94,9 @@ if test $# != 0; then exit 1 fi +# Just in case it came from the environment. +GUESS= + # CC_FOR_BUILD -- compiler used by this script. Note that the use of a # compiler to aid in system detection is discouraged as it requires # temporary files to be created and, as you can see below, it is a @@ -103,7 +115,7 @@ set_cc_for_build() { # prevent multiple calls if $tmp is already set test "$tmp" && return 0 : "${TMPDIR=/tmp}" - # shellcheck disable=SC2039 + # shellcheck disable=SC2039,SC3028 { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir "$tmp" 2>/dev/null) ; } || { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir "$tmp" 2>/dev/null) && echo "Warning: creating insecure temp directory" >&2 ; } || @@ -113,7 +125,7 @@ set_cc_for_build() { ,,) echo "int x;" > "$dummy.c" for driver in cc gcc c89 c99 ; do if ($driver -c -o "$dummy.o" "$dummy.c") >/dev/null 2>&1 ; then - CC_FOR_BUILD="$driver" + CC_FOR_BUILD=$driver break fi done @@ -158,7 +170,8 @@ Linux|GNU|GNU/*) #endif #endif EOF - eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^LIBC' | sed 's, ,,g'`" + cc_set_libc=`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^LIBC' | sed 's, ,,g'` + eval "$cc_set_libc" # Second heuristic to detect musl libc. if [ "$LIBC" = unknown ] && @@ -203,9 +216,9 @@ case $UNAME_MACHINE:$UNAME_SYSTEM:$UNAME_RELEASE:$UNAME_VERSION in earmv*) arch=`echo "$UNAME_MACHINE_ARCH" | sed -e 's,^e\(armv[0-9]\).*$,\1,'` endian=`echo "$UNAME_MACHINE_ARCH" | sed -ne 's,^.*\(eb\)$,\1,p'` - machine="${arch}${endian}"-unknown + machine=${arch}${endian}-unknown ;; - *) machine="$UNAME_MACHINE_ARCH"-unknown ;; + *) machine=$UNAME_MACHINE_ARCH-unknown ;; esac # The Operating System including object format, if it has switched # to ELF recently (or will in the future) and ABI. @@ -252,54 +265,54 @@ case $UNAME_MACHINE:$UNAME_SYSTEM:$UNAME_RELEASE:$UNAME_VERSION in # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: # contains redundant information, the shorter form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. - echo "$machine-${os}${release}${abi-}" - exit ;; + GUESS=$machine-${os}${release}${abi-} + ;; *:Bitrig:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/Bitrig.//'` - echo "$UNAME_MACHINE_ARCH"-unknown-bitrig"$UNAME_RELEASE" - exit ;; + GUESS=$UNAME_MACHINE_ARCH-unknown-bitrig$UNAME_RELEASE + ;; *:OpenBSD:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` - echo "$UNAME_MACHINE_ARCH"-unknown-openbsd"$UNAME_RELEASE" - exit ;; + GUESS=$UNAME_MACHINE_ARCH-unknown-openbsd$UNAME_RELEASE + ;; *:SecBSD:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/SecBSD.//'` - echo "$UNAME_MACHINE_ARCH"-unknown-secbsd"$UNAME_RELEASE" - exit ;; + GUESS=$UNAME_MACHINE_ARCH-unknown-secbsd$UNAME_RELEASE + ;; *:LibertyBSD:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/^.*BSD\.//'` - echo "$UNAME_MACHINE_ARCH"-unknown-libertybsd"$UNAME_RELEASE" - exit ;; + GUESS=$UNAME_MACHINE_ARCH-unknown-libertybsd$UNAME_RELEASE + ;; *:MidnightBSD:*:*) - echo "$UNAME_MACHINE"-unknown-midnightbsd"$UNAME_RELEASE" - exit ;; + GUESS=$UNAME_MACHINE-unknown-midnightbsd$UNAME_RELEASE + ;; *:ekkoBSD:*:*) - echo "$UNAME_MACHINE"-unknown-ekkobsd"$UNAME_RELEASE" - exit ;; + GUESS=$UNAME_MACHINE-unknown-ekkobsd$UNAME_RELEASE + ;; *:SolidBSD:*:*) - echo "$UNAME_MACHINE"-unknown-solidbsd"$UNAME_RELEASE" - exit ;; + GUESS=$UNAME_MACHINE-unknown-solidbsd$UNAME_RELEASE + ;; *:OS108:*:*) - echo "$UNAME_MACHINE"-unknown-os108_"$UNAME_RELEASE" - exit ;; + GUESS=$UNAME_MACHINE-unknown-os108_$UNAME_RELEASE + ;; macppc:MirBSD:*:*) - echo powerpc-unknown-mirbsd"$UNAME_RELEASE" - exit ;; + GUESS=powerpc-unknown-mirbsd$UNAME_RELEASE + ;; *:MirBSD:*:*) - echo "$UNAME_MACHINE"-unknown-mirbsd"$UNAME_RELEASE" - exit ;; + GUESS=$UNAME_MACHINE-unknown-mirbsd$UNAME_RELEASE + ;; *:Sortix:*:*) - echo "$UNAME_MACHINE"-unknown-sortix - exit ;; + GUESS=$UNAME_MACHINE-unknown-sortix + ;; *:Twizzler:*:*) - echo "$UNAME_MACHINE"-unknown-twizzler - exit ;; + GUESS=$UNAME_MACHINE-unknown-twizzler + ;; *:Redox:*:*) - echo "$UNAME_MACHINE"-unknown-redox - exit ;; + GUESS=$UNAME_MACHINE-unknown-redox + ;; mips:OSF1:*.*) - echo mips-dec-osf1 - exit ;; + GUESS=mips-dec-osf1 + ;; alpha:OSF1:*:*) # Reset EXIT trap before exiting to avoid spurious non-zero exit code. trap '' 0 @@ -353,65 +366,69 @@ case $UNAME_MACHINE:$UNAME_SYSTEM:$UNAME_RELEASE:$UNAME_VERSION in # A Tn.n version is a released field test version. # A Xn.n version is an unreleased experimental baselevel. # 1.2 uses "1.2" for uname -r. - echo "$UNAME_MACHINE"-dec-osf"`echo "$UNAME_RELEASE" | sed -e 's/^[PVTX]//' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz`" - exit ;; + OSF_REL=`echo "$UNAME_RELEASE" | sed -e 's/^[PVTX]//' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz` + GUESS=$UNAME_MACHINE-dec-osf$OSF_REL + ;; Amiga*:UNIX_System_V:4.0:*) - echo m68k-unknown-sysv4 - exit ;; + GUESS=m68k-unknown-sysv4 + ;; *:[Aa]miga[Oo][Ss]:*:*) - echo "$UNAME_MACHINE"-unknown-amigaos - exit ;; + GUESS=$UNAME_MACHINE-unknown-amigaos + ;; *:[Mm]orph[Oo][Ss]:*:*) - echo "$UNAME_MACHINE"-unknown-morphos - exit ;; + GUESS=$UNAME_MACHINE-unknown-morphos + ;; *:OS/390:*:*) - echo i370-ibm-openedition - exit ;; + GUESS=i370-ibm-openedition + ;; *:z/VM:*:*) - echo s390-ibm-zvmoe - exit ;; + GUESS=s390-ibm-zvmoe + ;; *:OS400:*:*) - echo powerpc-ibm-os400 - exit ;; + GUESS=powerpc-ibm-os400 + ;; arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) - echo arm-acorn-riscix"$UNAME_RELEASE" - exit ;; + GUESS=arm-acorn-riscix$UNAME_RELEASE + ;; arm*:riscos:*:*|arm*:RISCOS:*:*) - echo arm-unknown-riscos - exit ;; + GUESS=arm-unknown-riscos + ;; SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) - echo hppa1.1-hitachi-hiuxmpp - exit ;; + GUESS=hppa1.1-hitachi-hiuxmpp + ;; Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. - if test "`(/bin/universe) 2>/dev/null`" = att ; then - echo pyramid-pyramid-sysv3 - else - echo pyramid-pyramid-bsd - fi - exit ;; + case `(/bin/universe) 2>/dev/null` in + att) GUESS=pyramid-pyramid-sysv3 ;; + *) GUESS=pyramid-pyramid-bsd ;; + esac + ;; NILE*:*:*:dcosx) - echo pyramid-pyramid-svr4 - exit ;; + GUESS=pyramid-pyramid-svr4 + ;; DRS?6000:unix:4.0:6*) - echo sparc-icl-nx6 - exit ;; + GUESS=sparc-icl-nx6 + ;; DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) case `/usr/bin/uname -p` in - sparc) echo sparc-icl-nx7; exit ;; - esac ;; + sparc) GUESS=sparc-icl-nx7 ;; + esac + ;; s390x:SunOS:*:*) - echo "$UNAME_MACHINE"-ibm-solaris2"`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`" - exit ;; + SUN_REL=`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'` + GUESS=$UNAME_MACHINE-ibm-solaris2$SUN_REL + ;; sun4H:SunOS:5.*:*) - echo sparc-hal-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" - exit ;; + SUN_REL=`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'` + GUESS=sparc-hal-solaris2$SUN_REL + ;; sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) - echo sparc-sun-solaris2"`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'`" - exit ;; + SUN_REL=`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'` + GUESS=sparc-sun-solaris2$SUN_REL + ;; i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*) - echo i386-pc-auroraux"$UNAME_RELEASE" - exit ;; + GUESS=i386-pc-auroraux$UNAME_RELEASE + ;; i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) set_cc_for_build SUN_ARCH=i386 @@ -426,14 +443,16 @@ case $UNAME_MACHINE:$UNAME_SYSTEM:$UNAME_RELEASE:$UNAME_VERSION in SUN_ARCH=x86_64 fi fi - echo "$SUN_ARCH"-pc-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" - exit ;; + SUN_REL=`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'` + GUESS=$SUN_ARCH-pc-solaris2$SUN_REL + ;; sun4*:SunOS:6*:*) # According to config.sub, this is the proper way to canonicalize # SunOS6. Hard to guess exactly what SunOS6 will be like, but # it's likely to be more like Solaris than SunOS4. - echo sparc-sun-solaris3"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" - exit ;; + SUN_REL=`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'` + GUESS=sparc-sun-solaris3$SUN_REL + ;; sun4*:SunOS:*:*) case `/usr/bin/arch -k` in Series*|S4*) @@ -441,26 +460,27 @@ case $UNAME_MACHINE:$UNAME_SYSTEM:$UNAME_RELEASE:$UNAME_VERSION in ;; esac # Japanese Language versions have a version number like `4.1.3-JL'. - echo sparc-sun-sunos"`echo "$UNAME_RELEASE"|sed -e 's/-/_/'`" - exit ;; + SUN_REL=`echo "$UNAME_RELEASE" | sed -e 's/-/_/'` + GUESS=sparc-sun-sunos$SUN_REL + ;; sun3*:SunOS:*:*) - echo m68k-sun-sunos"$UNAME_RELEASE" - exit ;; + GUESS=m68k-sun-sunos$UNAME_RELEASE + ;; sun*:*:4.2BSD:*) UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` test "x$UNAME_RELEASE" = x && UNAME_RELEASE=3 case `/bin/arch` in sun3) - echo m68k-sun-sunos"$UNAME_RELEASE" + GUESS=m68k-sun-sunos$UNAME_RELEASE ;; sun4) - echo sparc-sun-sunos"$UNAME_RELEASE" + GUESS=sparc-sun-sunos$UNAME_RELEASE ;; esac - exit ;; + ;; aushp:SunOS:*:*) - echo sparc-auspex-sunos"$UNAME_RELEASE" - exit ;; + GUESS=sparc-auspex-sunos$UNAME_RELEASE + ;; # The situation for MiNT is a little confusing. The machine name # can be virtually everything (everything which is not # "atarist" or "atariste" at least should have a processor @@ -470,41 +490,41 @@ case $UNAME_MACHINE:$UNAME_SYSTEM:$UNAME_RELEASE:$UNAME_VERSION in # MiNT. But MiNT is downward compatible to TOS, so this should # be no problem. atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) - echo m68k-atari-mint"$UNAME_RELEASE" - exit ;; + GUESS=m68k-atari-mint$UNAME_RELEASE + ;; atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) - echo m68k-atari-mint"$UNAME_RELEASE" - exit ;; + GUESS=m68k-atari-mint$UNAME_RELEASE + ;; *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) - echo m68k-atari-mint"$UNAME_RELEASE" - exit ;; + GUESS=m68k-atari-mint$UNAME_RELEASE + ;; milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) - echo m68k-milan-mint"$UNAME_RELEASE" - exit ;; + GUESS=m68k-milan-mint$UNAME_RELEASE + ;; hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) - echo m68k-hades-mint"$UNAME_RELEASE" - exit ;; + GUESS=m68k-hades-mint$UNAME_RELEASE + ;; *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) - echo m68k-unknown-mint"$UNAME_RELEASE" - exit ;; + GUESS=m68k-unknown-mint$UNAME_RELEASE + ;; m68k:machten:*:*) - echo m68k-apple-machten"$UNAME_RELEASE" - exit ;; + GUESS=m68k-apple-machten$UNAME_RELEASE + ;; powerpc:machten:*:*) - echo powerpc-apple-machten"$UNAME_RELEASE" - exit ;; + GUESS=powerpc-apple-machten$UNAME_RELEASE + ;; RISC*:Mach:*:*) - echo mips-dec-mach_bsd4.3 - exit ;; + GUESS=mips-dec-mach_bsd4.3 + ;; RISC*:ULTRIX:*:*) - echo mips-dec-ultrix"$UNAME_RELEASE" - exit ;; + GUESS=mips-dec-ultrix$UNAME_RELEASE + ;; VAX*:ULTRIX*:*:*) - echo vax-dec-ultrix"$UNAME_RELEASE" - exit ;; + GUESS=vax-dec-ultrix$UNAME_RELEASE + ;; 2020:CLIX:*:* | 2430:CLIX:*:*) - echo clipper-intergraph-clix"$UNAME_RELEASE" - exit ;; + GUESS=clipper-intergraph-clix$UNAME_RELEASE + ;; mips:*:*:UMIPS | mips:*:*:RISCos) set_cc_for_build sed 's/^ //' << EOF > "$dummy.c" @@ -532,29 +552,29 @@ EOF dummyarg=`echo "$UNAME_RELEASE" | sed -n 's/\([0-9]*\).*/\1/p'` && SYSTEM_NAME=`"$dummy" "$dummyarg"` && { echo "$SYSTEM_NAME"; exit; } - echo mips-mips-riscos"$UNAME_RELEASE" - exit ;; + GUESS=mips-mips-riscos$UNAME_RELEASE + ;; Motorola:PowerMAX_OS:*:*) - echo powerpc-motorola-powermax - exit ;; + GUESS=powerpc-motorola-powermax + ;; Motorola:*:4.3:PL8-*) - echo powerpc-harris-powermax - exit ;; + GUESS=powerpc-harris-powermax + ;; Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) - echo powerpc-harris-powermax - exit ;; + GUESS=powerpc-harris-powermax + ;; Night_Hawk:Power_UNIX:*:*) - echo powerpc-harris-powerunix - exit ;; + GUESS=powerpc-harris-powerunix + ;; m88k:CX/UX:7*:*) - echo m88k-harris-cxux7 - exit ;; + GUESS=m88k-harris-cxux7 + ;; m88k:*:4*:R4*) - echo m88k-motorola-sysv4 - exit ;; + GUESS=m88k-motorola-sysv4 + ;; m88k:*:3*:R3*) - echo m88k-motorola-sysv3 - exit ;; + GUESS=m88k-motorola-sysv3 + ;; AViiON:dgux:*:*) # DG/UX returns AViiON for all architectures UNAME_PROCESSOR=`/usr/bin/uname -p` @@ -563,44 +583,45 @@ EOF if test "$TARGET_BINARY_INTERFACE"x = m88kdguxelfx || \ test "$TARGET_BINARY_INTERFACE"x = x then - echo m88k-dg-dgux"$UNAME_RELEASE" + GUESS=m88k-dg-dgux$UNAME_RELEASE else - echo m88k-dg-dguxbcs"$UNAME_RELEASE" + GUESS=m88k-dg-dguxbcs$UNAME_RELEASE fi else - echo i586-dg-dgux"$UNAME_RELEASE" + GUESS=i586-dg-dgux$UNAME_RELEASE fi - exit ;; + ;; M88*:DolphinOS:*:*) # DolphinOS (SVR3) - echo m88k-dolphin-sysv3 - exit ;; + GUESS=m88k-dolphin-sysv3 + ;; M88*:*:R3*:*) # Delta 88k system running SVR3 - echo m88k-motorola-sysv3 - exit ;; + GUESS=m88k-motorola-sysv3 + ;; XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) - echo m88k-tektronix-sysv3 - exit ;; + GUESS=m88k-tektronix-sysv3 + ;; Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) - echo m68k-tektronix-bsd - exit ;; + GUESS=m68k-tektronix-bsd + ;; *:IRIX*:*:*) - echo mips-sgi-irix"`echo "$UNAME_RELEASE"|sed -e 's/-/_/g'`" - exit ;; + IRIX_REL=`echo "$UNAME_RELEASE" | sed -e 's/-/_/g'` + GUESS=mips-sgi-irix$IRIX_REL + ;; ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. - echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id - exit ;; # Note that: echo "'$(uname -s)'" gives 'AIX ' + GUESS=romp-ibm-aix # uname -m gives an 8 hex-code CPU id + ;; # Note that: echo "'`uname -s`'" gives 'AIX ' i*86:AIX:*:*) - echo i386-ibm-aix - exit ;; + GUESS=i386-ibm-aix + ;; ia64:AIX:*:*) if test -x /usr/bin/oslevel ; then IBM_REV=`/usr/bin/oslevel` else - IBM_REV="$UNAME_VERSION.$UNAME_RELEASE" + IBM_REV=$UNAME_VERSION.$UNAME_RELEASE fi - echo "$UNAME_MACHINE"-ibm-aix"$IBM_REV" - exit ;; + GUESS=$UNAME_MACHINE-ibm-aix$IBM_REV + ;; *:AIX:2:3) if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then set_cc_for_build @@ -617,16 +638,16 @@ EOF EOF if $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"` then - echo "$SYSTEM_NAME" + GUESS=$SYSTEM_NAME else - echo rs6000-ibm-aix3.2.5 + GUESS=rs6000-ibm-aix3.2.5 fi elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then - echo rs6000-ibm-aix3.2.4 + GUESS=rs6000-ibm-aix3.2.4 else - echo rs6000-ibm-aix3.2 + GUESS=rs6000-ibm-aix3.2 fi - exit ;; + ;; *:AIX:*:[4567]) IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` if /usr/sbin/lsattr -El "$IBM_CPU_ID" | grep ' POWER' >/dev/null 2>&1; then @@ -635,36 +656,36 @@ EOF IBM_ARCH=powerpc fi if test -x /usr/bin/lslpp ; then - IBM_REV=`/usr/bin/lslpp -Lqc bos.rte.libc | + IBM_REV=`/usr/bin/lslpp -Lqc bos.rte.libc | \ awk -F: '{ print $3 }' | sed s/[0-9]*$/0/` else - IBM_REV="$UNAME_VERSION.$UNAME_RELEASE" + IBM_REV=$UNAME_VERSION.$UNAME_RELEASE fi - echo "$IBM_ARCH"-ibm-aix"$IBM_REV" - exit ;; + GUESS=$IBM_ARCH-ibm-aix$IBM_REV + ;; *:AIX:*:*) - echo rs6000-ibm-aix - exit ;; + GUESS=rs6000-ibm-aix + ;; ibmrt:4.4BSD:*|romp-ibm:4.4BSD:*) - echo romp-ibm-bsd4.4 - exit ;; + GUESS=romp-ibm-bsd4.4 + ;; ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and - echo romp-ibm-bsd"$UNAME_RELEASE" # 4.3 with uname added to - exit ;; # report: romp-ibm BSD 4.3 + GUESS=romp-ibm-bsd$UNAME_RELEASE # 4.3 with uname added to + ;; # report: romp-ibm BSD 4.3 *:BOSX:*:*) - echo rs6000-bull-bosx - exit ;; + GUESS=rs6000-bull-bosx + ;; DPX/2?00:B.O.S.:*:*) - echo m68k-bull-sysv3 - exit ;; + GUESS=m68k-bull-sysv3 + ;; 9000/[34]??:4.3bsd:1.*:*) - echo m68k-hp-bsd - exit ;; + GUESS=m68k-hp-bsd + ;; hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) - echo m68k-hp-bsd4.4 - exit ;; + GUESS=m68k-hp-bsd4.4 + ;; 9000/[34678]??:HP-UX:*:*) - HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'` + HPUX_REV=`echo "$UNAME_RELEASE" | sed -e 's/[^.]*.[0B]*//'` case $UNAME_MACHINE in 9000/31?) HP_ARCH=m68000 ;; 9000/[34]??) HP_ARCH=m68k ;; @@ -743,12 +764,12 @@ EOF HP_ARCH=hppa64 fi fi - echo "$HP_ARCH"-hp-hpux"$HPUX_REV" - exit ;; + GUESS=$HP_ARCH-hp-hpux$HPUX_REV + ;; ia64:HP-UX:*:*) - HPUX_REV=`echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//'` - echo ia64-hp-hpux"$HPUX_REV" - exit ;; + HPUX_REV=`echo "$UNAME_RELEASE" | sed -e 's/[^.]*.[0B]*//'` + GUESS=ia64-hp-hpux$HPUX_REV + ;; 3050*:HI-UX:*:*) set_cc_for_build sed 's/^ //' << EOF > "$dummy.c" @@ -778,36 +799,36 @@ EOF EOF $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=`"$dummy"` && { echo "$SYSTEM_NAME"; exit; } - echo unknown-hitachi-hiuxwe2 - exit ;; + GUESS=unknown-hitachi-hiuxwe2 + ;; 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:*) - echo hppa1.1-hp-bsd - exit ;; + GUESS=hppa1.1-hp-bsd + ;; 9000/8??:4.3bsd:*:*) - echo hppa1.0-hp-bsd - exit ;; + GUESS=hppa1.0-hp-bsd + ;; *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) - echo hppa1.0-hp-mpeix - exit ;; + GUESS=hppa1.0-hp-mpeix + ;; hp7??:OSF1:*:* | hp8?[79]:OSF1:*:*) - echo hppa1.1-hp-osf - exit ;; + GUESS=hppa1.1-hp-osf + ;; hp8??:OSF1:*:*) - echo hppa1.0-hp-osf - exit ;; + GUESS=hppa1.0-hp-osf + ;; i*86:OSF1:*:*) if test -x /usr/sbin/sysversion ; then - echo "$UNAME_MACHINE"-unknown-osf1mk + GUESS=$UNAME_MACHINE-unknown-osf1mk else - echo "$UNAME_MACHINE"-unknown-osf1 + GUESS=$UNAME_MACHINE-unknown-osf1 fi - exit ;; + ;; parisc*:Lites*:*:*) - echo hppa1.1-hp-lites - exit ;; + GUESS=hppa1.1-hp-lites + ;; C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) - echo c1-convex-bsd - exit ;; + GUESS=c1-convex-bsd + ;; C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) if getsysinfo -f scalar_acc then echo c32-convex-bsd @@ -815,17 +836,18 @@ EOF fi exit ;; C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) - echo c34-convex-bsd - exit ;; + GUESS=c34-convex-bsd + ;; C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) - echo c38-convex-bsd - exit ;; + GUESS=c38-convex-bsd + ;; C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) - echo c4-convex-bsd - exit ;; + GUESS=c4-convex-bsd + ;; CRAY*Y-MP:*:*:*) - echo ymp-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' - exit ;; + CRAY_REL=`echo "$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/'` + GUESS=ymp-cray-unicos$CRAY_REL + ;; CRAY*[A-Z]90:*:*:*) echo "$UNAME_MACHINE"-cray-unicos"$UNAME_RELEASE" \ | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ @@ -833,48 +855,54 @@ EOF -e 's/\.[^.]*$/.X/' exit ;; CRAY*TS:*:*:*) - echo t90-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' - exit ;; + CRAY_REL=`echo "$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/'` + GUESS=t90-cray-unicos$CRAY_REL + ;; CRAY*T3E:*:*:*) - echo alphaev5-cray-unicosmk"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' - exit ;; + CRAY_REL=`echo "$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/'` + GUESS=alphaev5-cray-unicosmk$CRAY_REL + ;; CRAY*SV1:*:*:*) - echo sv1-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' - exit ;; + CRAY_REL=`echo "$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/'` + GUESS=sv1-cray-unicos$CRAY_REL + ;; *:UNICOS/mp:*:*) - echo craynv-cray-unicosmp"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' - exit ;; + CRAY_REL=`echo "$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/'` + GUESS=craynv-cray-unicosmp$CRAY_REL + ;; F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) FUJITSU_PROC=`uname -m | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz` FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'` FUJITSU_REL=`echo "$UNAME_RELEASE" | sed -e 's/ /_/'` - echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" - exit ;; + GUESS=${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL} + ;; 5000:UNIX_System_V:4.*:*) FUJITSU_SYS=`uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///'` FUJITSU_REL=`echo "$UNAME_RELEASE" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/ /_/'` - echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" - exit ;; + GUESS=sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL} + ;; i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) - echo "$UNAME_MACHINE"-pc-bsdi"$UNAME_RELEASE" - exit ;; + GUESS=$UNAME_MACHINE-pc-bsdi$UNAME_RELEASE + ;; sparc*:BSD/OS:*:*) - echo sparc-unknown-bsdi"$UNAME_RELEASE" - exit ;; + GUESS=sparc-unknown-bsdi$UNAME_RELEASE + ;; *:BSD/OS:*:*) - echo "$UNAME_MACHINE"-unknown-bsdi"$UNAME_RELEASE" - exit ;; + GUESS=$UNAME_MACHINE-unknown-bsdi$UNAME_RELEASE + ;; arm:FreeBSD:*:*) UNAME_PROCESSOR=`uname -p` set_cc_for_build if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_PCS_VFP then - echo "${UNAME_PROCESSOR}"-unknown-freebsd"`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`"-gnueabi + FREEBSD_REL=`echo "$UNAME_RELEASE" | sed -e 's/[-(].*//'` + GUESS=$UNAME_PROCESSOR-unknown-freebsd$FREEBSD_REL-gnueabi else - echo "${UNAME_PROCESSOR}"-unknown-freebsd"`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`"-gnueabihf + FREEBSD_REL=`echo "$UNAME_RELEASE" | sed -e 's/[-(].*//'` + GUESS=$UNAME_PROCESSOR-unknown-freebsd$FREEBSD_REL-gnueabihf fi - exit ;; + ;; *:FreeBSD:*:*) UNAME_PROCESSOR=`/usr/bin/uname -p` case $UNAME_PROCESSOR in @@ -883,62 +911,68 @@ EOF i386) UNAME_PROCESSOR=i586 ;; esac - echo "$UNAME_PROCESSOR"-unknown-freebsd"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`" - exit ;; + FREEBSD_REL=`echo "$UNAME_RELEASE" | sed -e 's/[-(].*//'` + GUESS=$UNAME_PROCESSOR-unknown-freebsd$FREEBSD_REL + ;; i*:CYGWIN*:*) - echo "$UNAME_MACHINE"-pc-cygwin - exit ;; + GUESS=$UNAME_MACHINE-pc-cygwin + ;; *:MINGW64*:*) - echo "$UNAME_MACHINE"-pc-mingw64 - exit ;; + GUESS=$UNAME_MACHINE-pc-mingw64 + ;; *:MINGW*:*) - echo "$UNAME_MACHINE"-pc-mingw32 - exit ;; + GUESS=$UNAME_MACHINE-pc-mingw32 + ;; *:MSYS*:*) - echo "$UNAME_MACHINE"-pc-msys - exit ;; + GUESS=$UNAME_MACHINE-pc-msys + ;; i*:PW*:*) - echo "$UNAME_MACHINE"-pc-pw32 - exit ;; + GUESS=$UNAME_MACHINE-pc-pw32 + ;; *:Interix*:*) case $UNAME_MACHINE in x86) - echo i586-pc-interix"$UNAME_RELEASE" - exit ;; + GUESS=i586-pc-interix$UNAME_RELEASE + ;; authenticamd | genuineintel | EM64T) - echo x86_64-unknown-interix"$UNAME_RELEASE" - exit ;; + GUESS=x86_64-unknown-interix$UNAME_RELEASE + ;; IA64) - echo ia64-unknown-interix"$UNAME_RELEASE" - exit ;; + GUESS=ia64-unknown-interix$UNAME_RELEASE + ;; esac ;; i*:UWIN*:*) - echo "$UNAME_MACHINE"-pc-uwin - exit ;; + GUESS=$UNAME_MACHINE-pc-uwin + ;; amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) - echo x86_64-pc-cygwin - exit ;; + GUESS=x86_64-pc-cygwin + ;; prep*:SunOS:5.*:*) - echo powerpcle-unknown-solaris2"`echo "$UNAME_RELEASE"|sed -e 's/[^.]*//'`" - exit ;; + SUN_REL=`echo "$UNAME_RELEASE" | sed -e 's/[^.]*//'` + GUESS=powerpcle-unknown-solaris2$SUN_REL + ;; *:GNU:*:*) # the GNU system - echo "`echo "$UNAME_MACHINE"|sed -e 's,[-/].*$,,'`-unknown-$LIBC`echo "$UNAME_RELEASE"|sed -e 's,/.*$,,'`" - exit ;; + GNU_ARCH=`echo "$UNAME_MACHINE" | sed -e 's,[-/].*$,,'` + GNU_REL=`echo "$UNAME_RELEASE" | sed -e 's,/.*$,,'` + GUESS=$GNU_ARCH-unknown-$LIBC$GNU_REL + ;; *:GNU/*:*:*) # other systems with GNU libc and userland - echo "$UNAME_MACHINE-unknown-`echo "$UNAME_SYSTEM" | sed 's,^[^/]*/,,' | tr "[:upper:]" "[:lower:]"``echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`-$LIBC" - exit ;; + GNU_SYS=`echo "$UNAME_SYSTEM" | sed 's,^[^/]*/,,' | tr "[:upper:]" "[:lower:]"` + GNU_REL=`echo "$UNAME_RELEASE" | sed -e 's/[-(].*//'` + GUESS=$UNAME_MACHINE-unknown-$GNU_SYS$GNU_REL-$LIBC + ;; *:Minix:*:*) - echo "$UNAME_MACHINE"-unknown-minix - exit ;; + GUESS=$UNAME_MACHINE-unknown-minix + ;; aarch64:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" - exit ;; + GUESS=$UNAME_MACHINE-unknown-linux-$LIBC + ;; aarch64_be:Linux:*:*) UNAME_MACHINE=aarch64_be - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" - exit ;; + GUESS=$UNAME_MACHINE-unknown-linux-$LIBC + ;; alpha:Linux:*:*) case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' /proc/cpuinfo 2>/dev/null` in EV5) UNAME_MACHINE=alphaev5 ;; @@ -951,63 +985,63 @@ EOF esac objdump --private-headers /bin/sh | grep -q ld.so.1 if test "$?" = 0 ; then LIBC=gnulibc1 ; fi - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" - exit ;; - arc:Linux:*:* | arceb:Linux:*:* | arc64:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" - exit ;; + GUESS=$UNAME_MACHINE-unknown-linux-$LIBC + ;; + arc:Linux:*:* | arceb:Linux:*:* | arc32:Linux:*:* | arc64:Linux:*:*) + GUESS=$UNAME_MACHINE-unknown-linux-$LIBC + ;; arm*:Linux:*:*) set_cc_for_build if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_EABI__ then - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" + GUESS=$UNAME_MACHINE-unknown-linux-$LIBC else if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_PCS_VFP then - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"eabi + GUESS=$UNAME_MACHINE-unknown-linux-${LIBC}eabi else - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"eabihf + GUESS=$UNAME_MACHINE-unknown-linux-${LIBC}eabihf fi fi - exit ;; + ;; avr32*:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" - exit ;; + GUESS=$UNAME_MACHINE-unknown-linux-$LIBC + ;; cris:Linux:*:*) - echo "$UNAME_MACHINE"-axis-linux-"$LIBC" - exit ;; + GUESS=$UNAME_MACHINE-axis-linux-$LIBC + ;; crisv32:Linux:*:*) - echo "$UNAME_MACHINE"-axis-linux-"$LIBC" - exit ;; + GUESS=$UNAME_MACHINE-axis-linux-$LIBC + ;; e2k:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" - exit ;; + GUESS=$UNAME_MACHINE-unknown-linux-$LIBC + ;; frv:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" - exit ;; + GUESS=$UNAME_MACHINE-unknown-linux-$LIBC + ;; hexagon:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" - exit ;; + GUESS=$UNAME_MACHINE-unknown-linux-$LIBC + ;; i*86:Linux:*:*) - echo "$UNAME_MACHINE"-pc-linux-"$LIBC" - exit ;; + GUESS=$UNAME_MACHINE-pc-linux-$LIBC + ;; ia64:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" - exit ;; + GUESS=$UNAME_MACHINE-unknown-linux-$LIBC + ;; k1om:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" - exit ;; + GUESS=$UNAME_MACHINE-unknown-linux-$LIBC + ;; loongarch32:Linux:*:* | loongarch64:Linux:*:* | loongarchx32:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" - exit ;; + GUESS=$UNAME_MACHINE-unknown-linux-$LIBC + ;; m32r*:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" - exit ;; + GUESS=$UNAME_MACHINE-unknown-linux-$LIBC + ;; m68*:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" - exit ;; + GUESS=$UNAME_MACHINE-unknown-linux-$LIBC + ;; mips:Linux:*:* | mips64:Linux:*:*) set_cc_for_build IS_GLIBC=0 @@ -1052,65 +1086,66 @@ EOF #endif #endif EOF - eval "`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^CPU\|^MIPS_ENDIAN\|^LIBCABI'`" + cc_set_vars=`$CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^CPU\|^MIPS_ENDIAN\|^LIBCABI'` + eval "$cc_set_vars" test "x$CPU" != x && { echo "$CPU${MIPS_ENDIAN}-unknown-linux-$LIBCABI"; exit; } ;; mips64el:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" - exit ;; + GUESS=$UNAME_MACHINE-unknown-linux-$LIBC + ;; openrisc*:Linux:*:*) - echo or1k-unknown-linux-"$LIBC" - exit ;; + GUESS=or1k-unknown-linux-$LIBC + ;; or32:Linux:*:* | or1k*:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" - exit ;; + GUESS=$UNAME_MACHINE-unknown-linux-$LIBC + ;; padre:Linux:*:*) - echo sparc-unknown-linux-"$LIBC" - exit ;; + GUESS=sparc-unknown-linux-$LIBC + ;; parisc64:Linux:*:* | hppa64:Linux:*:*) - echo hppa64-unknown-linux-"$LIBC" - exit ;; + GUESS=hppa64-unknown-linux-$LIBC + ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in - PA7*) echo hppa1.1-unknown-linux-"$LIBC" ;; - PA8*) echo hppa2.0-unknown-linux-"$LIBC" ;; - *) echo hppa-unknown-linux-"$LIBC" ;; + PA7*) GUESS=hppa1.1-unknown-linux-$LIBC ;; + PA8*) GUESS=hppa2.0-unknown-linux-$LIBC ;; + *) GUESS=hppa-unknown-linux-$LIBC ;; esac - exit ;; + ;; ppc64:Linux:*:*) - echo powerpc64-unknown-linux-"$LIBC" - exit ;; + GUESS=powerpc64-unknown-linux-$LIBC + ;; ppc:Linux:*:*) - echo powerpc-unknown-linux-"$LIBC" - exit ;; + GUESS=powerpc-unknown-linux-$LIBC + ;; ppc64le:Linux:*:*) - echo powerpc64le-unknown-linux-"$LIBC" - exit ;; + GUESS=powerpc64le-unknown-linux-$LIBC + ;; ppcle:Linux:*:*) - echo powerpcle-unknown-linux-"$LIBC" - exit ;; + GUESS=powerpcle-unknown-linux-$LIBC + ;; riscv32:Linux:*:* | riscv32be:Linux:*:* | riscv64:Linux:*:* | riscv64be:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" - exit ;; + GUESS=$UNAME_MACHINE-unknown-linux-$LIBC + ;; s390:Linux:*:* | s390x:Linux:*:*) - echo "$UNAME_MACHINE"-ibm-linux-"$LIBC" - exit ;; + GUESS=$UNAME_MACHINE-ibm-linux-$LIBC + ;; sh64*:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" - exit ;; + GUESS=$UNAME_MACHINE-unknown-linux-$LIBC + ;; sh*:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" - exit ;; + GUESS=$UNAME_MACHINE-unknown-linux-$LIBC + ;; sparc:Linux:*:* | sparc64:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" - exit ;; + GUESS=$UNAME_MACHINE-unknown-linux-$LIBC + ;; tile*:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" - exit ;; + GUESS=$UNAME_MACHINE-unknown-linux-$LIBC + ;; vax:Linux:*:*) - echo "$UNAME_MACHINE"-dec-linux-"$LIBC" - exit ;; + GUESS=$UNAME_MACHINE-dec-linux-$LIBC + ;; x86_64:Linux:*:*) set_cc_for_build LIBCABI=$LIBC @@ -1119,56 +1154,56 @@ EOF (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_X32 >/dev/null then - LIBCABI="$LIBC"x32 + LIBCABI=${LIBC}x32 fi fi - echo "$UNAME_MACHINE"-pc-linux-"$LIBCABI" - exit ;; + GUESS=$UNAME_MACHINE-pc-linux-$LIBCABI + ;; xtensa*:Linux:*:*) - echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" - exit ;; + GUESS=$UNAME_MACHINE-unknown-linux-$LIBC + ;; i*86:DYNIX/ptx:4*:*) # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. # earlier versions are messed up and put the nodename in both # sysname and nodename. - echo i386-sequent-sysv4 - exit ;; + GUESS=i386-sequent-sysv4 + ;; i*86:UNIX_SV:4.2MP:2.*) # Unixware is an offshoot of SVR4, but it has its own version # number series starting with 2... # I am not positive that other SVR4 systems won't match this, # I just have to hope. -- rms. # Use sysv4.2uw... so that sysv4* matches it. - echo "$UNAME_MACHINE"-pc-sysv4.2uw"$UNAME_VERSION" - exit ;; + GUESS=$UNAME_MACHINE-pc-sysv4.2uw$UNAME_VERSION + ;; i*86:OS/2:*:*) # If we were able to find `uname', then EMX Unix compatibility # is probably installed. - echo "$UNAME_MACHINE"-pc-os2-emx - exit ;; + GUESS=$UNAME_MACHINE-pc-os2-emx + ;; i*86:XTS-300:*:STOP) - echo "$UNAME_MACHINE"-unknown-stop - exit ;; + GUESS=$UNAME_MACHINE-unknown-stop + ;; i*86:atheos:*:*) - echo "$UNAME_MACHINE"-unknown-atheos - exit ;; + GUESS=$UNAME_MACHINE-unknown-atheos + ;; i*86:syllable:*:*) - echo "$UNAME_MACHINE"-pc-syllable - exit ;; + GUESS=$UNAME_MACHINE-pc-syllable + ;; i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*) - echo i386-unknown-lynxos"$UNAME_RELEASE" - exit ;; + GUESS=i386-unknown-lynxos$UNAME_RELEASE + ;; i*86:*DOS:*:*) - echo "$UNAME_MACHINE"-pc-msdosdjgpp - exit ;; + GUESS=$UNAME_MACHINE-pc-msdosdjgpp + ;; i*86:*:4.*:*) UNAME_REL=`echo "$UNAME_RELEASE" | sed 's/\/MP$//'` if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then - echo "$UNAME_MACHINE"-univel-sysv"$UNAME_REL" + GUESS=$UNAME_MACHINE-univel-sysv$UNAME_REL else - echo "$UNAME_MACHINE"-pc-sysv"$UNAME_REL" + GUESS=$UNAME_MACHINE-pc-sysv$UNAME_REL fi - exit ;; + ;; i*86:*:5:[678]*) # UnixWare 7.x, OpenUNIX and OpenServer 6. case `/bin/uname -X | grep "^Machine"` in @@ -1176,12 +1211,12 @@ EOF *Pentium) UNAME_MACHINE=i586 ;; *Pent*|*Celeron) UNAME_MACHINE=i686 ;; esac - echo "$UNAME_MACHINE-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION}" - exit ;; + GUESS=$UNAME_MACHINE-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} + ;; i*86:*:3.2:*) if test -f /usr/options/cb.name; then UNAME_REL=`sed -n 's/.*Version //p' </usr/options/cb.name` - echo "$UNAME_MACHINE"-pc-isc"$UNAME_REL" + GUESS=$UNAME_MACHINE-pc-isc$UNAME_REL elif /bin/uname -X 2>/dev/null >/dev/null ; then UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 @@ -1191,11 +1226,11 @@ EOF && UNAME_MACHINE=i686 (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ && UNAME_MACHINE=i686 - echo "$UNAME_MACHINE"-pc-sco"$UNAME_REL" + GUESS=$UNAME_MACHINE-pc-sco$UNAME_REL else - echo "$UNAME_MACHINE"-pc-sysv32 + GUESS=$UNAME_MACHINE-pc-sysv32 fi - exit ;; + ;; pc:*:*:*) # Left here for compatibility: # uname -m prints for DJGPP always 'pc', but it prints nothing about @@ -1203,31 +1238,31 @@ EOF # Note: whatever this is, it MUST be the same as what config.sub # prints for the "djgpp" host, or else GDB configure will decide that # this is a cross-build. - echo i586-pc-msdosdjgpp - exit ;; + GUESS=i586-pc-msdosdjgpp + ;; Intel:Mach:3*:*) - echo i386-pc-mach3 - exit ;; + GUESS=i386-pc-mach3 + ;; paragon:*:*:*) - echo i860-intel-osf1 - exit ;; + GUESS=i860-intel-osf1 + ;; i860:*:4.*:*) # i860-SVR4 if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then - echo i860-stardent-sysv"$UNAME_RELEASE" # Stardent Vistra i860-SVR4 + GUESS=i860-stardent-sysv$UNAME_RELEASE # Stardent Vistra i860-SVR4 else # Add other i860-SVR4 vendors below as they are discovered. - echo i860-unknown-sysv"$UNAME_RELEASE" # Unknown i860-SVR4 + GUESS=i860-unknown-sysv$UNAME_RELEASE # Unknown i860-SVR4 fi - exit ;; + ;; mini*:CTIX:SYS*5:*) # "miniframe" - echo m68010-convergent-sysv - exit ;; + GUESS=m68010-convergent-sysv + ;; mc68k:UNIX:SYSTEM5:3.51m) - echo m68k-convergent-sysv - exit ;; + GUESS=m68k-convergent-sysv + ;; M680?0:D-NIX:5.3:*) - echo m68k-diab-dnix - exit ;; + GUESS=m68k-diab-dnix + ;; M68*:*:R3V[5678]*:*) test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;; 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) @@ -1252,116 +1287,116 @@ EOF /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \ && { echo i586-ncr-sysv4.3"$OS_REL"; exit; } ;; m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) - echo m68k-unknown-lynxos"$UNAME_RELEASE" - exit ;; + GUESS=m68k-unknown-lynxos$UNAME_RELEASE + ;; mc68030:UNIX_System_V:4.*:*) - echo m68k-atari-sysv4 - exit ;; + GUESS=m68k-atari-sysv4 + ;; TSUNAMI:LynxOS:2.*:*) - echo sparc-unknown-lynxos"$UNAME_RELEASE" - exit ;; + GUESS=sparc-unknown-lynxos$UNAME_RELEASE + ;; rs6000:LynxOS:2.*:*) - echo rs6000-unknown-lynxos"$UNAME_RELEASE" - exit ;; + GUESS=rs6000-unknown-lynxos$UNAME_RELEASE + ;; PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*) - echo powerpc-unknown-lynxos"$UNAME_RELEASE" - exit ;; + GUESS=powerpc-unknown-lynxos$UNAME_RELEASE + ;; SM[BE]S:UNIX_SV:*:*) - echo mips-dde-sysv"$UNAME_RELEASE" - exit ;; + GUESS=mips-dde-sysv$UNAME_RELEASE + ;; RM*:ReliantUNIX-*:*:*) - echo mips-sni-sysv4 - exit ;; + GUESS=mips-sni-sysv4 + ;; RM*:SINIX-*:*:*) - echo mips-sni-sysv4 - exit ;; + GUESS=mips-sni-sysv4 + ;; *:SINIX-*:*:*) if uname -p 2>/dev/null >/dev/null ; then UNAME_MACHINE=`(uname -p) 2>/dev/null` - echo "$UNAME_MACHINE"-sni-sysv4 + GUESS=$UNAME_MACHINE-sni-sysv4 else - echo ns32k-sni-sysv + GUESS=ns32k-sni-sysv fi - exit ;; + ;; PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort # says <Richard.M.Bartel@ccMail.Census.GOV> - echo i586-unisys-sysv4 - exit ;; + GUESS=i586-unisys-sysv4 + ;; *:UNIX_System_V:4*:FTX*) # From Gerald Hewes <hewes@openmarket.com>. # How about differentiating between stratus architectures? -djm - echo hppa1.1-stratus-sysv4 - exit ;; + GUESS=hppa1.1-stratus-sysv4 + ;; *:*:*:FTX*) # From seanf@swdc.stratus.com. - echo i860-stratus-sysv4 - exit ;; + GUESS=i860-stratus-sysv4 + ;; i*86:VOS:*:*) # From Paul.Green@stratus.com. - echo "$UNAME_MACHINE"-stratus-vos - exit ;; + GUESS=$UNAME_MACHINE-stratus-vos + ;; *:VOS:*:*) # From Paul.Green@stratus.com. - echo hppa1.1-stratus-vos - exit ;; + GUESS=hppa1.1-stratus-vos + ;; mc68*:A/UX:*:*) - echo m68k-apple-aux"$UNAME_RELEASE" - exit ;; + GUESS=m68k-apple-aux$UNAME_RELEASE + ;; news*:NEWS-OS:6*:*) - echo mips-sony-newsos6 - exit ;; + GUESS=mips-sony-newsos6 + ;; R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) if test -d /usr/nec; then - echo mips-nec-sysv"$UNAME_RELEASE" + GUESS=mips-nec-sysv$UNAME_RELEASE else - echo mips-unknown-sysv"$UNAME_RELEASE" + GUESS=mips-unknown-sysv$UNAME_RELEASE fi - exit ;; + ;; BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. - echo powerpc-be-beos - exit ;; + GUESS=powerpc-be-beos + ;; BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. - echo powerpc-apple-beos - exit ;; + GUESS=powerpc-apple-beos + ;; BePC:BeOS:*:*) # BeOS running on Intel PC compatible. - echo i586-pc-beos - exit ;; + GUESS=i586-pc-beos + ;; BePC:Haiku:*:*) # Haiku running on Intel PC compatible. - echo i586-pc-haiku - exit ;; + GUESS=i586-pc-haiku + ;; x86_64:Haiku:*:*) - echo x86_64-unknown-haiku - exit ;; + GUESS=x86_64-unknown-haiku + ;; SX-4:SUPER-UX:*:*) - echo sx4-nec-superux"$UNAME_RELEASE" - exit ;; + GUESS=sx4-nec-superux$UNAME_RELEASE + ;; SX-5:SUPER-UX:*:*) - echo sx5-nec-superux"$UNAME_RELEASE" - exit ;; + GUESS=sx5-nec-superux$UNAME_RELEASE + ;; SX-6:SUPER-UX:*:*) - echo sx6-nec-superux"$UNAME_RELEASE" - exit ;; + GUESS=sx6-nec-superux$UNAME_RELEASE + ;; SX-7:SUPER-UX:*:*) - echo sx7-nec-superux"$UNAME_RELEASE" - exit ;; + GUESS=sx7-nec-superux$UNAME_RELEASE + ;; SX-8:SUPER-UX:*:*) - echo sx8-nec-superux"$UNAME_RELEASE" - exit ;; + GUESS=sx8-nec-superux$UNAME_RELEASE + ;; SX-8R:SUPER-UX:*:*) - echo sx8r-nec-superux"$UNAME_RELEASE" - exit ;; + GUESS=sx8r-nec-superux$UNAME_RELEASE + ;; SX-ACE:SUPER-UX:*:*) - echo sxace-nec-superux"$UNAME_RELEASE" - exit ;; + GUESS=sxace-nec-superux$UNAME_RELEASE + ;; Power*:Rhapsody:*:*) - echo powerpc-apple-rhapsody"$UNAME_RELEASE" - exit ;; + GUESS=powerpc-apple-rhapsody$UNAME_RELEASE + ;; *:Rhapsody:*:*) - echo "$UNAME_MACHINE"-apple-rhapsody"$UNAME_RELEASE" - exit ;; + GUESS=$UNAME_MACHINE-apple-rhapsody$UNAME_RELEASE + ;; arm64:Darwin:*:*) - echo aarch64-apple-darwin"$UNAME_RELEASE" - exit ;; + GUESS=aarch64-apple-darwin$UNAME_RELEASE + ;; *:Darwin:*:*) UNAME_PROCESSOR=`uname -p` case $UNAME_PROCESSOR in @@ -1397,43 +1432,43 @@ EOF # uname -m returns i386 or x86_64 UNAME_PROCESSOR=$UNAME_MACHINE fi - echo "$UNAME_PROCESSOR"-apple-darwin"$UNAME_RELEASE" - exit ;; + GUESS=$UNAME_PROCESSOR-apple-darwin$UNAME_RELEASE + ;; *:procnto*:*:* | *:QNX:[0123456789]*:*) UNAME_PROCESSOR=`uname -p` if test "$UNAME_PROCESSOR" = x86; then UNAME_PROCESSOR=i386 UNAME_MACHINE=pc fi - echo "$UNAME_PROCESSOR"-"$UNAME_MACHINE"-nto-qnx"$UNAME_RELEASE" - exit ;; + GUESS=$UNAME_PROCESSOR-$UNAME_MACHINE-nto-qnx$UNAME_RELEASE + ;; *:QNX:*:4*) - echo i386-pc-qnx - exit ;; + GUESS=i386-pc-qnx + ;; NEO-*:NONSTOP_KERNEL:*:*) - echo neo-tandem-nsk"$UNAME_RELEASE" - exit ;; + GUESS=neo-tandem-nsk$UNAME_RELEASE + ;; NSE-*:NONSTOP_KERNEL:*:*) - echo nse-tandem-nsk"$UNAME_RELEASE" - exit ;; + GUESS=nse-tandem-nsk$UNAME_RELEASE + ;; NSR-*:NONSTOP_KERNEL:*:*) - echo nsr-tandem-nsk"$UNAME_RELEASE" - exit ;; + GUESS=nsr-tandem-nsk$UNAME_RELEASE + ;; NSV-*:NONSTOP_KERNEL:*:*) - echo nsv-tandem-nsk"$UNAME_RELEASE" - exit ;; + GUESS=nsv-tandem-nsk$UNAME_RELEASE + ;; NSX-*:NONSTOP_KERNEL:*:*) - echo nsx-tandem-nsk"$UNAME_RELEASE" - exit ;; + GUESS=nsx-tandem-nsk$UNAME_RELEASE + ;; *:NonStop-UX:*:*) - echo mips-compaq-nonstopux - exit ;; + GUESS=mips-compaq-nonstopux + ;; BS2000:POSIX*:*:*) - echo bs2000-siemens-sysv - exit ;; + GUESS=bs2000-siemens-sysv + ;; DS/*:UNIX_System_V:*:*) - echo "$UNAME_MACHINE"-"$UNAME_SYSTEM"-"$UNAME_RELEASE" - exit ;; + GUESS=$UNAME_MACHINE-$UNAME_SYSTEM-$UNAME_RELEASE + ;; *:Plan9:*:*) # "uname -m" is not consistent, so use $cputype instead. 386 # is converted to i386 for consistency with other x86 @@ -1441,64 +1476,72 @@ EOF if test "${cputype-}" = 386; then UNAME_MACHINE=i386 elif test "x${cputype-}" != x; then - UNAME_MACHINE="$cputype" + UNAME_MACHINE=$cputype fi - echo "$UNAME_MACHINE"-unknown-plan9 - exit ;; + GUESS=$UNAME_MACHINE-unknown-plan9 + ;; *:TOPS-10:*:*) - echo pdp10-unknown-tops10 - exit ;; + GUESS=pdp10-unknown-tops10 + ;; *:TENEX:*:*) - echo pdp10-unknown-tenex - exit ;; + GUESS=pdp10-unknown-tenex + ;; KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) - echo pdp10-dec-tops20 - exit ;; + GUESS=pdp10-dec-tops20 + ;; XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) - echo pdp10-xkl-tops20 - exit ;; + GUESS=pdp10-xkl-tops20 + ;; *:TOPS-20:*:*) - echo pdp10-unknown-tops20 - exit ;; + GUESS=pdp10-unknown-tops20 + ;; *:ITS:*:*) - echo pdp10-unknown-its - exit ;; + GUESS=pdp10-unknown-its + ;; SEI:*:*:SEIUX) - echo mips-sei-seiux"$UNAME_RELEASE" - exit ;; + GUESS=mips-sei-seiux$UNAME_RELEASE + ;; *:DragonFly:*:*) - echo "$UNAME_MACHINE"-unknown-dragonfly"`echo "$UNAME_RELEASE"|sed -e 's/[-(].*//'`" - exit ;; + DRAGONFLY_REL=`echo "$UNAME_RELEASE" | sed -e 's/[-(].*//'` + GUESS=$UNAME_MACHINE-unknown-dragonfly$DRAGONFLY_REL + ;; *:*VMS:*:*) UNAME_MACHINE=`(uname -p) 2>/dev/null` case $UNAME_MACHINE in - A*) echo alpha-dec-vms ; exit ;; - I*) echo ia64-dec-vms ; exit ;; - V*) echo vax-dec-vms ; exit ;; + A*) GUESS=alpha-dec-vms ;; + I*) GUESS=ia64-dec-vms ;; + V*) GUESS=vax-dec-vms ;; esac ;; *:XENIX:*:SysV) - echo i386-pc-xenix - exit ;; + GUESS=i386-pc-xenix + ;; i*86:skyos:*:*) - echo "$UNAME_MACHINE"-pc-skyos"`echo "$UNAME_RELEASE" | sed -e 's/ .*$//'`" - exit ;; + SKYOS_REL=`echo "$UNAME_RELEASE" | sed -e 's/ .*$//'` + GUESS=$UNAME_MACHINE-pc-skyos$SKYOS_REL + ;; i*86:rdos:*:*) - echo "$UNAME_MACHINE"-pc-rdos - exit ;; + GUESS=$UNAME_MACHINE-pc-rdos + ;; *:AROS:*:*) - echo "$UNAME_MACHINE"-unknown-aros - exit ;; + GUESS=$UNAME_MACHINE-unknown-aros + ;; x86_64:VMkernel:*:*) - echo "$UNAME_MACHINE"-unknown-esx - exit ;; + GUESS=$UNAME_MACHINE-unknown-esx + ;; amd64:Isilon\ OneFS:*:*) - echo x86_64-unknown-onefs - exit ;; + GUESS=x86_64-unknown-onefs + ;; *:Unleashed:*:*) - echo "$UNAME_MACHINE"-unknown-unleashed"$UNAME_RELEASE" - exit ;; + GUESS=$UNAME_MACHINE-unknown-unleashed$UNAME_RELEASE + ;; esac +# Do we have a guess based on uname results? +if test "x$GUESS" != x; then + echo "$GUESS" + exit +fi + # No uname command or uname output not recognized. set_cc_for_build cat > "$dummy.c" <<EOF @@ -1630,7 +1673,7 @@ main () } EOF -$CC_FOR_BUILD -o "$dummy" "$dummy.c" 2>/dev/null && SYSTEM_NAME=`$dummy` && +$CC_FOR_BUILD -o "$dummy" "$dummy.c" 2>/dev/null && SYSTEM_NAME=`"$dummy"` && { echo "$SYSTEM_NAME"; exit; } # Apollos put the system type in the environment. @@ -1660,9 +1703,11 @@ and https://git.savannah.gnu.org/cgit/config.git/plain/config.sub EOF -year=`echo $timestamp | sed 's,-.*,,'` +our_year=`echo $timestamp | sed 's,-.*,,'` +thisyear=`date +%Y` # shellcheck disable=SC2003 -if test "`expr "\`date +%Y\`" - "$year"`" -lt 3 ; then +script_age=`expr "$thisyear" - "$our_year"` +if test "$script_age" -lt 3 ; then cat >&2 <<EOF If $0 has already been updated, send the following data and any diff --git a/config.hin b/config.hin index eaed6233..057fa548 100644 --- a/config.hin +++ b/config.hin @@ -1,5 +1,5 @@ /* - * $LynxId: config.hin,v 1.150 2021/06/29 23:02:57 tom Exp $ + * $LynxId: config.hin,v 1.151 2021/07/05 13:25:57 tom Exp $ * vile:cmode * * The configure script translates "config.hin" into "lynx_cfg.h" @@ -279,6 +279,7 @@ #undef USE_FILE_UPLOAD /* CF_ARG_DISABLE(file-upload) */ #undef USE_GNUTLS_FUNCS /* CF_GNUTLS */ #undef USE_GNUTLS_INCL /* CF_GNUTLS */ +#undef USE_IDN2 /* CF_ARG_DISABLE(idna) */ #undef USE_IDNA /* CF_ARG_DISABLE(idna) */ #undef USE_JAPANESEUTF8_SUPPORT /* CF_ARG_DISABLE(japanese-utf8) */ #undef USE_JUSTIFY_ELTS /* CF_ARG_DISABLE(justify-elts) */ diff --git a/config.sub b/config.sub index 3eda71f2..a84a451b 100755 --- a/config.sub +++ b/config.sub @@ -3,7 +3,7 @@ # Copyright 2021 Thomas E. Dickey # Copyright 1992-2021 Free Software Foundation, Inc. -timestamp='2021-04-30' +timestamp='2021-06-03' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -1166,7 +1166,7 @@ case $cpu-$vendor in | alphapca5[67] | alpha64pca5[67] \ | am33_2.0 \ | amdgcn \ - | arc | arceb | arc64 \ + | arc | arceb | arc32 | arc64 \ | arm | arm[lb]e | arme[lb] | armv* \ | avr | avr32 \ | asmjs \ diff --git a/configure b/configure index 73e9cc44..440a561a 100755 --- a/configure +++ b/configure @@ -38397,15 +38397,556 @@ esac # If the linkage is not already in the $CPPFLAGS/$LDFLAGS configuration, these # will be set on completion of the AC_TRY_LINK below. +cf_cv_header_path_idn2= +cf_cv_library_path_idn2= + +echo "${as_me:-configure}:38403: testing Starting FIND_LINKAGE(idn2,) ..." 1>&5 + +cf_save_LIBS="$LIBS" + +cat >"conftest.$ac_ext" <<_ACEOF +#line 38408 "configure" +#include "confdefs.h" + +#include <stdio.h> +#include <idn2.h> + +int +main (void) +{ + + char *output = 0; + int code = idn2_to_ascii_8z("name", &output, IDN2_USE_STD3_ASCII_RULES); + (void) code; + + ; + return 0; +} +_ACEOF +rm -f "conftest.$ac_objext" "conftest$ac_exeext" +if { (eval echo "$as_me:38427: \"$ac_link\"") >&5 + (eval $ac_link) 2>&5 + ac_status=$? + echo "$as_me:38430: \$? = $ac_status" >&5 + (exit "$ac_status"); } && + { ac_try='test -s "conftest$ac_exeext"' + { (eval echo "$as_me:38433: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:38436: \$? = $ac_status" >&5 + (exit "$ac_status"); }; }; then + + cf_cv_find_linkage_idn2=yes + cf_cv_header_path_idn2=/usr/include + cf_cv_library_path_idn2=/usr/lib + +else + echo "$as_me: failed program was:" >&5 +cat "conftest.$ac_ext" >&5 + +LIBS="-lidn2 $LIBICONV $cf_save_LIBS" + +cat >"conftest.$ac_ext" <<_ACEOF +#line 38450 "configure" +#include "confdefs.h" + +#include <stdio.h> +#include <idn2.h> + +int +main (void) +{ + + char *output = 0; + int code = idn2_to_ascii_8z("name", &output, IDN2_USE_STD3_ASCII_RULES); + (void) code; + + ; + return 0; +} +_ACEOF +rm -f "conftest.$ac_objext" "conftest$ac_exeext" +if { (eval echo "$as_me:38469: \"$ac_link\"") >&5 + (eval $ac_link) 2>&5 + ac_status=$? + echo "$as_me:38472: \$? = $ac_status" >&5 + (exit "$ac_status"); } && + { ac_try='test -s "conftest$ac_exeext"' + { (eval echo "$as_me:38475: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:38478: \$? = $ac_status" >&5 + (exit "$ac_status"); }; }; then + + cf_cv_find_linkage_idn2=yes + cf_cv_header_path_idn2=/usr/include + cf_cv_library_path_idn2=/usr/lib + cf_cv_library_file_idn2="-lidn2" + +else + echo "$as_me: failed program was:" >&5 +cat "conftest.$ac_ext" >&5 + + cf_cv_find_linkage_idn2=no + LIBS="$cf_save_LIBS" + + test -n "$verbose" && echo " find linkage for idn2 library" 1>&6 + +echo "${as_me:-configure}:38495: testing find linkage for idn2 library ..." 1>&5 + +echo "${as_me:-configure}:38497: testing Searching for headers in FIND_LINKAGE(idn2,) ..." 1>&5 + + cf_save_CPPFLAGS="$CPPFLAGS" + cf_test_CPPFLAGS="$CPPFLAGS" + +cf_search= + +# collect the current set of include-directories from compiler flags +cf_header_path_list="" +if test -n "${CFLAGS}${CPPFLAGS}" ; then + for cf_header_path in $CPPFLAGS $CFLAGS + do + case "$cf_header_path" in + (-I*) + cf_header_path=`echo ".$cf_header_path" |sed -e 's/^...//' -e 's,/include$,,'` + +test "x$cf_header_path" != "xNONE" && \ +test -d "$cf_header_path" && \ + { + test -n "$verbose" && echo " ... testing for include-directories under $cf_header_path" + test -d "$cf_header_path/include" && cf_search="$cf_search $cf_header_path/include" + test -d "$cf_header_path/include/idn2" && cf_search="$cf_search $cf_header_path/include/idn2" + test -d "$cf_header_path/include/idn2/include" && cf_search="$cf_search $cf_header_path/include/idn2/include" + test -d "$cf_header_path/idn2/include" && cf_search="$cf_search $cf_header_path/idn2/include" + test -d "$cf_header_path/idn2/include/idn2" && cf_search="$cf_search $cf_header_path/idn2/include/idn2" +} + + cf_header_path_list="$cf_header_path_list $cf_search" + ;; + esac + done +fi + +# add the variations for the package we are looking for + +cf_search= + +test "x$prefix" != "xNONE" && \ +test -d "$prefix" && \ + { + test -n "$verbose" && echo " ... testing for include-directories under $prefix" + test -d "$prefix/include" && cf_search="$cf_search $prefix/include" + test -d "$prefix/include/idn2" && cf_search="$cf_search $prefix/include/idn2" + test -d "$prefix/include/idn2/include" && cf_search="$cf_search $prefix/include/idn2/include" + test -d "$prefix/idn2/include" && cf_search="$cf_search $prefix/idn2/include" + test -d "$prefix/idn2/include/idn2" && cf_search="$cf_search $prefix/idn2/include/idn2" +} + +for cf_subdir_prefix in \ + /usr \ + /usr/local \ + /usr/pkg \ + /opt \ + /opt/local \ + $HOME +do + +test "x$cf_subdir_prefix" != "x$prefix" && \ +test -d "$cf_subdir_prefix" && \ +{ test -z "$prefix" || test "x$prefix" = xNONE || test "x$cf_subdir_prefix" != "x$prefix"; } && { + test -n "$verbose" && echo " ... testing for include-directories under $cf_subdir_prefix" + test -d "$cf_subdir_prefix/include" && cf_search="$cf_search $cf_subdir_prefix/include" + test -d "$cf_subdir_prefix/include/idn2" && cf_search="$cf_search $cf_subdir_prefix/include/idn2" + test -d "$cf_subdir_prefix/include/idn2/include" && cf_search="$cf_search $cf_subdir_prefix/include/idn2/include" + test -d "$cf_subdir_prefix/idn2/include" && cf_search="$cf_search $cf_subdir_prefix/idn2/include" + test -d "$cf_subdir_prefix/idn2/include/idn2" && cf_search="$cf_search $cf_subdir_prefix/idn2/include/idn2" +} + +done + +test "$includedir" != NONE && \ +test "$includedir" != "/usr/include" && \ +test -d "$includedir" && { + test -d "$includedir" && cf_search="$cf_search $includedir" + test -d "$includedir/idn2" && cf_search="$cf_search $includedir/idn2" +} + +test "$oldincludedir" != NONE && \ +test "$oldincludedir" != "/usr/include" && \ +test -d "$oldincludedir" && { + test -d "$oldincludedir" && cf_search="$cf_search $oldincludedir" + test -d "$oldincludedir/idn2" && cf_search="$cf_search $oldincludedir/idn2" +} + +cf_search="$cf_search $cf_header_path_list" + + for cf_cv_header_path_idn2 in $cf_search + do + if test -d "$cf_cv_header_path_idn2" ; then + test -n "$verbose" && echo " ... testing $cf_cv_header_path_idn2" 1>&6 + +echo "${as_me:-configure}:38588: testing ... testing $cf_cv_header_path_idn2 ..." 1>&5 + + CPPFLAGS="$cf_save_CPPFLAGS" + + test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS " + CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_idn2" + + cat >"conftest.$ac_ext" <<_ACEOF +#line 38596 "configure" +#include "confdefs.h" + +#include <stdio.h> +#include <idn2.h> + +int +main (void) +{ + + char *output = 0; + int code = idn2_to_ascii_8z("name", &output, IDN2_USE_STD3_ASCII_RULES); + (void) code; + + ; + return 0; +} +_ACEOF +rm -f "conftest.$ac_objext" +if { (eval echo "$as_me:38615: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + echo "$as_me:38618: \$? = $ac_status" >&5 + (exit "$ac_status"); } && + { ac_try='test -s "conftest.$ac_objext"' + { (eval echo "$as_me:38621: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:38624: \$? = $ac_status" >&5 + (exit "$ac_status"); }; }; then + + test -n "$verbose" && echo " ... found idn2 headers in $cf_cv_header_path_idn2" 1>&6 + +echo "${as_me:-configure}:38629: testing ... found idn2 headers in $cf_cv_header_path_idn2 ..." 1>&5 + + cf_cv_find_linkage_idn2=maybe + cf_test_CPPFLAGS="$CPPFLAGS" + break +else + echo "$as_me: failed program was:" >&5 +cat "conftest.$ac_ext" >&5 + + CPPFLAGS="$cf_save_CPPFLAGS" + +fi +rm -f "conftest.$ac_objext" "conftest.$ac_ext" + fi + done + + if test "$cf_cv_find_linkage_idn2" = maybe ; then + +echo "${as_me:-configure}:38647: testing Searching for idn2 library in FIND_LINKAGE(idn2,) ..." 1>&5 + + cf_save_LIBS="$LIBS" + cf_save_LDFLAGS="$LDFLAGS" + + if test "$cf_cv_find_linkage_idn2" != yes ; then + +cf_search= +cf_library_path_list="" +if test -n "${LDFLAGS}${LIBS}" ; then + for cf_library_path in $LDFLAGS $LIBS + do + case "$cf_library_path" in + (-L*) + cf_library_path=`echo ".$cf_library_path" |sed -e 's/^...//' -e 's,/lib$,,'` + +test "x$cf_library_path" != "xNONE" && \ +test -d "$cf_library_path" && \ + { + test -n "$verbose" && echo " ... testing for lib-directories under $cf_library_path" + test -d "$cf_library_path/lib" && cf_search="$cf_search $cf_library_path/lib" + test -d "$cf_library_path/lib/idn2" && cf_search="$cf_search $cf_library_path/lib/idn2" + test -d "$cf_library_path/lib/idn2/lib" && cf_search="$cf_search $cf_library_path/lib/idn2/lib" + test -d "$cf_library_path/idn2/lib" && cf_search="$cf_search $cf_library_path/idn2/lib" + test -d "$cf_library_path/idn2/lib/idn2" && cf_search="$cf_search $cf_library_path/idn2/lib/idn2" +} + + cf_library_path_list="$cf_library_path_list $cf_search" + ;; + esac + done +fi + +cf_search= + +test "x$prefix" != "xNONE" && \ +test -d "$prefix" && \ + { + test -n "$verbose" && echo " ... testing for lib-directories under $prefix" + test -d "$prefix/lib" && cf_search="$cf_search $prefix/lib" + test -d "$prefix/lib/idn2" && cf_search="$cf_search $prefix/lib/idn2" + test -d "$prefix/lib/idn2/lib" && cf_search="$cf_search $prefix/lib/idn2/lib" + test -d "$prefix/idn2/lib" && cf_search="$cf_search $prefix/idn2/lib" + test -d "$prefix/idn2/lib/idn2" && cf_search="$cf_search $prefix/idn2/lib/idn2" +} + +for cf_subdir_prefix in \ + /usr \ + /usr/local \ + /usr/pkg \ + /opt \ + /opt/local \ + $HOME +do + +test "x$cf_subdir_prefix" != "x$prefix" && \ +test -d "$cf_subdir_prefix" && \ +{ test -z "$prefix" || test "x$prefix" = xNONE || test "x$cf_subdir_prefix" != "x$prefix"; } && { + test -n "$verbose" && echo " ... testing for lib-directories under $cf_subdir_prefix" + test -d "$cf_subdir_prefix/lib" && cf_search="$cf_search $cf_subdir_prefix/lib" + test -d "$cf_subdir_prefix/lib/idn2" && cf_search="$cf_search $cf_subdir_prefix/lib/idn2" + test -d "$cf_subdir_prefix/lib/idn2/lib" && cf_search="$cf_search $cf_subdir_prefix/lib/idn2/lib" + test -d "$cf_subdir_prefix/idn2/lib" && cf_search="$cf_search $cf_subdir_prefix/idn2/lib" + test -d "$cf_subdir_prefix/idn2/lib/idn2" && cf_search="$cf_search $cf_subdir_prefix/idn2/lib/idn2" +} + +done + +cf_search="$cf_library_path_list $cf_search" + + for cf_cv_library_path_idn2 in $cf_search + do + if test -d "$cf_cv_library_path_idn2" ; then + test -n "$verbose" && echo " ... testing $cf_cv_library_path_idn2" 1>&6 + +echo "${as_me:-configure}:38722: testing ... testing $cf_cv_library_path_idn2 ..." 1>&5 + + CPPFLAGS="$cf_test_CPPFLAGS" + LIBS="-lidn2 $LIBICONV $cf_save_LIBS" + LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_idn2" + cat >"conftest.$ac_ext" <<_ACEOF +#line 38728 "configure" +#include "confdefs.h" + +#include <stdio.h> +#include <idn2.h> + +int +main (void) +{ + + char *output = 0; + int code = idn2_to_ascii_8z("name", &output, IDN2_USE_STD3_ASCII_RULES); + (void) code; + + ; + return 0; +} +_ACEOF +rm -f "conftest.$ac_objext" "conftest$ac_exeext" +if { (eval echo "$as_me:38747: \"$ac_link\"") >&5 + (eval $ac_link) 2>&5 + ac_status=$? + echo "$as_me:38750: \$? = $ac_status" >&5 + (exit "$ac_status"); } && + { ac_try='test -s "conftest$ac_exeext"' + { (eval echo "$as_me:38753: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:38756: \$? = $ac_status" >&5 + (exit "$ac_status"); }; }; then + + test -n "$verbose" && echo " ... found idn2 library in $cf_cv_library_path_idn2" 1>&6 + +echo "${as_me:-configure}:38761: testing ... found idn2 library in $cf_cv_library_path_idn2 ..." 1>&5 + + cf_cv_find_linkage_idn2=yes + cf_cv_library_file_idn2="-lidn2" + break +else + echo "$as_me: failed program was:" >&5 +cat "conftest.$ac_ext" >&5 + + CPPFLAGS="$cf_save_CPPFLAGS" + LIBS="$cf_save_LIBS" + LDFLAGS="$cf_save_LDFLAGS" + +fi +rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" + fi + done + CPPFLAGS="$cf_save_CPPFLAGS" + LDFLAGS="$cf_save_LDFLAGS" + fi + + else + cf_cv_find_linkage_idn2=no + fi + +fi +rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" + +fi +rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" + +LIBS="$cf_save_LIBS" + +if test "$cf_cv_find_linkage_idn2" = yes ; then + +if test -n "$cf_cv_header_path_idn2" ; then + for cf_add_incdir in $cf_cv_header_path_idn2 + do + while test "$cf_add_incdir" != /usr/include + do + if test -d "$cf_add_incdir" + then + cf_have_incdir=no + if test -n "$CFLAGS$CPPFLAGS" ; then + # a loop is needed to ensure we can add subdirs of existing dirs + for cf_test_incdir in $CFLAGS $CPPFLAGS ; do + if test ".$cf_test_incdir" = ".-I$cf_add_incdir" ; then + cf_have_incdir=yes; break + fi + done + fi + + if test "$cf_have_incdir" = no ; then + if test "$cf_add_incdir" = /usr/local/include ; then + if test "$GCC" = yes + then + cf_save_CPPFLAGS=$CPPFLAGS + + test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS " + CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" + + cat >"conftest.$ac_ext" <<_ACEOF +#line 38823 "configure" +#include "confdefs.h" +#include <stdio.h> +int +main (void) +{ +printf("Hello") + ; + return 0; +} +_ACEOF +rm -f "conftest.$ac_objext" +if { (eval echo "$as_me:38835: \"$ac_compile\"") >&5 + (eval $ac_compile) 2>&5 + ac_status=$? + echo "$as_me:38838: \$? = $ac_status" >&5 + (exit "$ac_status"); } && + { ac_try='test -s "conftest.$ac_objext"' + { (eval echo "$as_me:38841: \"$ac_try\"") >&5 + (eval $ac_try) 2>&5 + ac_status=$? + echo "$as_me:38844: \$? = $ac_status" >&5 + (exit "$ac_status"); }; }; then + : +else + echo "$as_me: failed program was:" >&5 +cat "conftest.$ac_ext" >&5 +cf_have_incdir=yes +fi +rm -f "conftest.$ac_objext" "conftest.$ac_ext" + CPPFLAGS=$cf_save_CPPFLAGS + fi + fi + fi + + if test "$cf_have_incdir" = no ; then + test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 + +echo "${as_me:-configure}:38861: testing adding $cf_add_incdir to include-path ..." 1>&5 + + CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" + + cf_top_incdir=`echo "$cf_add_incdir" | sed -e 's%/include/.*$%/include%'` + test "$cf_top_incdir" = "$cf_add_incdir" && break + cf_add_incdir="$cf_top_incdir" + else + break + fi + else + break + fi + done + done +fi + +if test -n "$cf_cv_library_path_idn2" ; then + for cf_add_libdir in $cf_cv_library_path_idn2 + do + if test "$cf_add_libdir" = /usr/lib ; then + : + elif test -d "$cf_add_libdir" + then + cf_have_libdir=no + if test -n "$LDFLAGS$LIBS" ; then + # a loop is needed to ensure we can add subdirs of existing dirs + for cf_test_libdir in $LDFLAGS $LIBS ; do + if test ".$cf_test_libdir" = ".-L$cf_add_libdir" ; then + cf_have_libdir=yes; break + fi + done + fi + if test "$cf_have_libdir" = no ; then + test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 + +echo "${as_me:-configure}:38897: testing adding $cf_add_libdir to library-path ..." 1>&5 + + LDFLAGS="-L$cf_add_libdir $LDFLAGS" + fi + fi + done +fi + +cf_add_libs="$LIBS" +# reverse order +cf_add_0lib= +for cf_add_1lib in -lidn2; do cf_add_0lib="$cf_add_1lib $cf_add_0lib"; done +# filter duplicates +for cf_add_1lib in $cf_add_0lib; do + for cf_add_2lib in $cf_add_libs; do + if test "x$cf_add_1lib" = "x$cf_add_2lib"; then + cf_add_1lib= + break + fi + done + test -n "$cf_add_1lib" && cf_add_libs="$cf_add_1lib $cf_add_libs" +done +LIBS="$cf_add_libs" + +else +test -n "$verbose" && echo " unsuccessful, will try idn (older)" 1>&6 + +echo "${as_me:-configure}:38924: testing unsuccessful, will try idn (older) ..." 1>&5 + +fi + +if test "x$cf_cv_find_linkage_idn2" = xyes ; then + test -n "$verbose" && echo " found idn2 library" 1>&6 + +echo "${as_me:-configure}:38931: testing found idn2 library ..." 1>&5 + +cat >>confdefs.h <<\EOF +#define USE_IDN2 1 +EOF + +else + +# If the linkage is not already in the $CPPFLAGS/$LDFLAGS configuration, these +# will be set on completion of the AC_TRY_LINK below. cf_cv_header_path_idn= cf_cv_library_path_idn= -echo "${as_me:-configure}:38403: testing Starting FIND_LINKAGE(idn,) ..." 1>&5 +echo "${as_me:-configure}:38944: testing Starting FIND_LINKAGE(idn,) ..." 1>&5 cf_save_LIBS="$LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 38408 "configure" +#line 38949 "configure" #include "confdefs.h" #include <stdio.h> @@ -38416,23 +38957,24 @@ main (void) { char *output = 0; - int code = idna_to_ascii_8z("name", &output, IDNA_USE_STD3_ASCII_RULES); + int code = idna_to_ascii_8z("name", &output, IDNA_USE_STD3_ASCII_RULES); + (void) code; ; return 0; } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:38426: \"$ac_link\"") >&5 +if { (eval echo "$as_me:38968: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38429: \$? = $ac_status" >&5 + echo "$as_me:38971: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:38432: \"$ac_try\"") >&5 + { (eval echo "$as_me:38974: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38435: \$? = $ac_status" >&5 + echo "$as_me:38977: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_idn=yes @@ -38446,7 +38988,7 @@ cat "conftest.$ac_ext" >&5 LIBS="-lidn $LIBICONV $cf_save_LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 38449 "configure" +#line 38991 "configure" #include "confdefs.h" #include <stdio.h> @@ -38457,23 +38999,24 @@ main (void) { char *output = 0; - int code = idna_to_ascii_8z("name", &output, IDNA_USE_STD3_ASCII_RULES); + int code = idna_to_ascii_8z("name", &output, IDNA_USE_STD3_ASCII_RULES); + (void) code; ; return 0; } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:38467: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39010: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38470: \$? = $ac_status" >&5 + echo "$as_me:39013: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:38473: \"$ac_try\"") >&5 + { (eval echo "$as_me:39016: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38476: \$? = $ac_status" >&5 + echo "$as_me:39019: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_idn=yes @@ -38490,9 +39033,9 @@ cat "conftest.$ac_ext" >&5 test -n "$verbose" && echo " find linkage for idn library" 1>&6 -echo "${as_me:-configure}:38493: testing find linkage for idn library ..." 1>&5 +echo "${as_me:-configure}:39036: testing find linkage for idn library ..." 1>&5 -echo "${as_me:-configure}:38495: testing Searching for headers in FIND_LINKAGE(idn,) ..." 1>&5 +echo "${as_me:-configure}:39038: testing Searching for headers in FIND_LINKAGE(idn,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -38583,7 +39126,7 @@ cf_search="$cf_search $cf_header_path_list" if test -d "$cf_cv_header_path_idn" ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_idn" 1>&6 -echo "${as_me:-configure}:38586: testing ... testing $cf_cv_header_path_idn ..." 1>&5 +echo "${as_me:-configure}:39129: testing ... testing $cf_cv_header_path_idn ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS" @@ -38591,7 +39134,7 @@ echo "${as_me:-configure}:38586: testing ... testing $cf_cv_header_path_idn ..." CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_idn" cat >"conftest.$ac_ext" <<_ACEOF -#line 38594 "configure" +#line 39137 "configure" #include "confdefs.h" #include <stdio.h> @@ -38602,28 +39145,29 @@ main (void) { char *output = 0; - int code = idna_to_ascii_8z("name", &output, IDNA_USE_STD3_ASCII_RULES); + int code = idna_to_ascii_8z("name", &output, IDNA_USE_STD3_ASCII_RULES); + (void) code; ; return 0; } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:38612: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:39156: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:38615: \$? = $ac_status" >&5 + echo "$as_me:39159: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:38618: \"$ac_try\"") >&5 + { (eval echo "$as_me:39162: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38621: \$? = $ac_status" >&5 + echo "$as_me:39165: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then test -n "$verbose" && echo " ... found idn headers in $cf_cv_header_path_idn" 1>&6 -echo "${as_me:-configure}:38626: testing ... found idn headers in $cf_cv_header_path_idn ..." 1>&5 +echo "${as_me:-configure}:39170: testing ... found idn headers in $cf_cv_header_path_idn ..." 1>&5 cf_cv_find_linkage_idn=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -38641,7 +39185,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" if test "$cf_cv_find_linkage_idn" = maybe ; then -echo "${as_me:-configure}:38644: testing Searching for idn library in FIND_LINKAGE(idn,) ..." 1>&5 +echo "${as_me:-configure}:39188: testing Searching for idn library in FIND_LINKAGE(idn,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -38716,13 +39260,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d "$cf_cv_library_path_idn" ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_idn" 1>&6 -echo "${as_me:-configure}:38719: testing ... testing $cf_cv_library_path_idn ..." 1>&5 +echo "${as_me:-configure}:39263: testing ... testing $cf_cv_library_path_idn ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lidn $LIBICONV $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_idn" cat >"conftest.$ac_ext" <<_ACEOF -#line 38725 "configure" +#line 39269 "configure" #include "confdefs.h" #include <stdio.h> @@ -38733,28 +39277,29 @@ main (void) { char *output = 0; - int code = idna_to_ascii_8z("name", &output, IDNA_USE_STD3_ASCII_RULES); + int code = idna_to_ascii_8z("name", &output, IDNA_USE_STD3_ASCII_RULES); + (void) code; ; return 0; } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:38743: \"$ac_link\"") >&5 +if { (eval echo "$as_me:39288: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:38746: \$? = $ac_status" >&5 + echo "$as_me:39291: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:38749: \"$ac_try\"") >&5 + { (eval echo "$as_me:39294: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38752: \$? = $ac_status" >&5 + echo "$as_me:39297: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then test -n "$verbose" && echo " ... found idn library in $cf_cv_library_path_idn" 1>&6 -echo "${as_me:-configure}:38757: testing ... found idn library in $cf_cv_library_path_idn ..." 1>&5 +echo "${as_me:-configure}:39302: testing ... found idn library in $cf_cv_library_path_idn ..." 1>&5 cf_cv_find_linkage_idn=yes cf_cv_library_file_idn="-lidn" @@ -38816,7 +39361,7 @@ if test -n "$cf_cv_header_path_idn" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 38819 "configure" +#line 39364 "configure" #include "confdefs.h" #include <stdio.h> int @@ -38828,16 +39373,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:38831: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:39376: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:38834: \$? = $ac_status" >&5 + echo "$as_me:39379: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:38837: \"$ac_try\"") >&5 + { (eval echo "$as_me:39382: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:38840: \$? = $ac_status" >&5 + echo "$as_me:39385: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -38854,7 +39399,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:38857: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:39402: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -38890,7 +39435,7 @@ if test -n "$cf_cv_library_path_idn" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:38893: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:39438: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -38915,21 +39460,25 @@ done LIBS="$cf_add_libs" else -{ echo "$as_me:38918: WARNING: Cannot find idn library" >&5 +{ echo "$as_me:39463: WARNING: Cannot find idn library" >&5 echo "$as_me: WARNING: Cannot find idn library" >&2;} fi if test "x$cf_cv_find_linkage_idn" = xyes ; then + test -n "$verbose" && echo " found idn library" 1>&6 + +echo "${as_me:-configure}:39470: testing found idn library ..." 1>&5 cat >>confdefs.h <<\EOF #define USE_IDNA 1 EOF fi +fi fi -echo "$as_me:38932: checking if element-justification logic should be used" >&5 +echo "$as_me:39481: checking if element-justification logic should be used" >&5 echo $ECHO_N "checking if element-justification logic should be used... $ECHO_C" >&6 # Check whether --enable-justify-elts or --disable-justify-elts was given. @@ -38946,14 +39495,14 @@ else use_justify_elts=yes fi; -echo "$as_me:38949: result: $use_justify_elts" >&5 +echo "$as_me:39498: result: $use_justify_elts" >&5 echo "${ECHO_T}$use_justify_elts" >&6 test "$use_justify_elts" != no && cat >>confdefs.h <<\EOF #define USE_JUSTIFY_ELTS 1 EOF -echo "$as_me:38956: checking if partial-display should be used" >&5 +echo "$as_me:39505: 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. @@ -38970,14 +39519,14 @@ else use_partial_display=yes fi; -echo "$as_me:38973: result: $use_partial_display" >&5 +echo "$as_me:39522: 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:38980: checking if persistent-cookie logic should be used" >&5 +echo "$as_me:39529: 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. @@ -38994,14 +39543,14 @@ else use_filed_cookies=yes fi; -echo "$as_me:38997: result: $use_filed_cookies" >&5 +echo "$as_me:39546: 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:39004: checking if html source should be colorized" >&5 +echo "$as_me:39553: 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. @@ -39018,14 +39567,14 @@ else use_prettysrc=yes fi; -echo "$as_me:39021: result: $use_prettysrc" >&5 +echo "$as_me:39570: 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:39028: checking if progress-bar code should be used" >&5 +echo "$as_me:39577: checking if progress-bar code should be used" >&5 echo $ECHO_N "checking if progress-bar code should be used... $ECHO_C" >&6 # Check whether --enable-progressbar or --disable-progressbar was given. @@ -39042,14 +39591,14 @@ else use_progressbar=yes fi; -echo "$as_me:39045: result: $use_progressbar" >&5 +echo "$as_me:39594: result: $use_progressbar" >&5 echo "${ECHO_T}$use_progressbar" >&6 test "$use_progressbar" != no && cat >>confdefs.h <<\EOF #define USE_PROGRESSBAR 1 EOF -echo "$as_me:39052: checking if read-progress message should show ETA" >&5 +echo "$as_me:39601: 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. @@ -39066,14 +39615,14 @@ else use_read_eta=yes fi; -echo "$as_me:39069: result: $use_read_eta" >&5 +echo "$as_me:39618: 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:39076: checking if source caching should be used" >&5 +echo "$as_me:39625: 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. @@ -39090,14 +39639,14 @@ else use_source_cache=yes fi; -echo "$as_me:39093: result: $use_source_cache" >&5 +echo "$as_me:39642: 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:39100: checking if scrollbar code should be used" >&5 +echo "$as_me:39649: 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. @@ -39114,10 +39663,10 @@ else use_scrollbar=yes fi; -echo "$as_me:39117: result: $use_scrollbar" >&5 +echo "$as_me:39666: result: $use_scrollbar" >&5 echo "${ECHO_T}$use_scrollbar" >&6 -echo "$as_me:39120: checking if charset-selection logic should be used" >&5 +echo "$as_me:39669: checking if charset-selection logic should be used" >&5 echo $ECHO_N "checking if charset-selection logic should be used... $ECHO_C" >&6 # Check whether --enable-charset-choice or --disable-charset-choice was given. @@ -39134,14 +39683,14 @@ else use_charset_choice=no fi; -echo "$as_me:39137: result: $use_charset_choice" >&5 +echo "$as_me:39686: result: $use_charset_choice" >&5 echo "${ECHO_T}$use_charset_choice" >&6 test "$use_charset_choice" != no && cat >>confdefs.h <<\EOF #define USE_CHARSET_CHOICE 1 EOF -echo "$as_me:39144: checking if you want to use external commands" >&5 +echo "$as_me:39693: 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. @@ -39158,7 +39707,7 @@ else use_externs=no fi; -echo "$as_me:39161: result: $use_externs" >&5 +echo "$as_me:39710: result: $use_externs" >&5 echo "${ECHO_T}$use_externs" >&6 if test "$use_externs" != "no" ; then @@ -39169,7 +39718,7 @@ EOF EXTRA_OBJS="$EXTRA_OBJS LYExtern\$o" fi -echo "$as_me:39172: checking if you want to use setfont support" >&5 +echo "$as_me:39721: 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. @@ -39186,7 +39735,7 @@ else use_setfont=no fi; -echo "$as_me:39189: result: $use_setfont" >&5 +echo "$as_me:39738: result: $use_setfont" >&5 echo "${ECHO_T}$use_setfont" >&6 if test "$use_setfont" = yes ; then case "$host_os" in @@ -39197,7 +39746,7 @@ for ac_prog in $SETFONT consolechars setfont do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:39200: checking for $ac_word" >&5 +echo "$as_me:39749: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_SETFONT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -39214,7 +39763,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_SETFONT="$ac_dir/$ac_word" - echo "$as_me:39217: found $ac_dir/$ac_word" >&5 + echo "$as_me:39766: found $ac_dir/$ac_word" >&5 break fi done @@ -39225,10 +39774,10 @@ fi SETFONT=$ac_cv_path_SETFONT if test -n "$SETFONT"; then - echo "$as_me:39228: result: $SETFONT" >&5 + echo "$as_me:39777: result: $SETFONT" >&5 echo "${ECHO_T}$SETFONT" >&6 else - echo "$as_me:39231: result: no" >&5 + echo "$as_me:39780: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -39287,7 +39836,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:39290: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:39839: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define SETFONT_PATH "$cf_path_prog" @@ -39305,19 +39854,19 @@ fi SETFONT=built-in test -n "$verbose" && echo " Assume $host_os has font-switching" 1>&6 -echo "${as_me:-configure}:39308: testing Assume $host_os has font-switching ..." 1>&5 +echo "${as_me:-configure}:39857: testing Assume $host_os has font-switching ..." 1>&5 ;; (*) SETFONT=unknown test -n "$verbose" && echo " Assume $host_os has no font-switching" 1>&6 -echo "${as_me:-configure}:39315: testing Assume $host_os has no font-switching ..." 1>&5 +echo "${as_me:-configure}:39864: testing Assume $host_os has no font-switching ..." 1>&5 ;; esac if test -z "$SETFONT" ; then - { echo "$as_me:39320: WARNING: Cannot find a font-setting program" >&5 + { echo "$as_me:39869: WARNING: Cannot find a font-setting program" >&5 echo "$as_me: WARNING: Cannot find a font-setting program" >&2;} elif test "$SETFONT" != unknown ; then @@ -39328,7 +39877,7 @@ EOF fi fi -echo "$as_me:39331: checking if you want cgi-link support" >&5 +echo "$as_me:39880: 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. @@ -39345,10 +39894,10 @@ EOF else enableval=no fi; -echo "$as_me:39348: result: $enableval" >&5 +echo "$as_me:39897: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 -echo "$as_me:39351: checking if you want change-exec support" >&5 +echo "$as_me:39900: 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. @@ -39365,14 +39914,14 @@ else use_change_exec=no fi; -echo "$as_me:39368: result: $use_change_exec" >&5 +echo "$as_me:39917: 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:39375: checking if you want exec-links support" >&5 +echo "$as_me:39924: 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. @@ -39389,14 +39938,14 @@ else use_exec_links=$enableval fi; -echo "$as_me:39392: result: $use_exec_links" >&5 +echo "$as_me:39941: 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:39399: checking if you want exec-scripts support" >&5 +echo "$as_me:39948: 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. @@ -39413,14 +39962,14 @@ else use_exec_scripts=$enableval fi; -echo "$as_me:39416: result: $use_exec_scripts" >&5 +echo "$as_me:39965: 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:39423: checking if you want internal-links feature" >&5 +echo "$as_me:39972: 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. @@ -39437,14 +39986,14 @@ else use_internal_links=no fi; -echo "$as_me:39440: result: $use_internal_links" >&5 +echo "$as_me:39989: result: $use_internal_links" >&5 echo "${ECHO_T}$use_internal_links" >&6 test "$use_internal_links" = yes && cat >>confdefs.h <<\EOF #define TRACK_INTERNAL_LINKS 1 EOF -echo "$as_me:39447: checking if you want to fork NSL requests" >&5 +echo "$as_me:39996: 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. @@ -39461,7 +40010,7 @@ else use_nsl_fork=no fi; -echo "$as_me:39464: result: $use_nsl_fork" >&5 +echo "$as_me:40013: result: $use_nsl_fork" >&5 echo "${ECHO_T}$use_nsl_fork" >&6 if test "$use_nsl_fork" = yes ; then case "$host_os" in @@ -39482,7 +40031,7 @@ EOF esac fi -echo "$as_me:39485: checking if you want to log URL requests via syslog" >&5 +echo "$as_me:40034: 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. @@ -39499,14 +40048,14 @@ else use_syslog=no fi; -echo "$as_me:39502: result: $use_syslog" >&5 +echo "$as_me:40051: 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:39509: checking if you want to underline links" >&5 +echo "$as_me:40058: 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. @@ -39523,7 +40072,7 @@ else use_underline=no fi; -echo "$as_me:39526: result: $use_underline" >&5 +echo "$as_me:40075: result: $use_underline" >&5 echo "${ECHO_T}$use_underline" >&6 test "$use_underline" = yes && cat >>confdefs.h <<\EOF @@ -39535,7 +40084,7 @@ cat >>confdefs.h <<\EOF #define UNDERLINE_LINKS 0 EOF -echo "$as_me:39538: checking if help files should be gzip'ed" >&5 +echo "$as_me:40087: 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. @@ -39552,10 +40101,10 @@ else use_gzip_help=no fi; -echo "$as_me:39555: result: $use_gzip_help" >&5 +echo "$as_me:40104: result: $use_gzip_help" >&5 echo "${ECHO_T}$use_gzip_help" >&6 -echo "$as_me:39558: checking if you want to use libbz2 for decompression of some bzip2 files" >&5 +echo "$as_me:40107: 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. @@ -39565,7 +40114,7 @@ if test "${with_bzlib+set}" = set; then else use_bzlib=no fi; -echo "$as_me:39568: result: $use_bzlib" >&5 +echo "$as_me:40117: result: $use_bzlib" >&5 echo "${ECHO_T}$use_bzlib" >&6 if test ".$use_bzlib" != ".no" ; then @@ -39607,7 +40156,7 @@ if test -n "$cf_searchpath/include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 39610 "configure" +#line 40159 "configure" #include "confdefs.h" #include <stdio.h> int @@ -39619,16 +40168,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:39622: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:40171: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:39625: \$? = $ac_status" >&5 + echo "$as_me:40174: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:39628: \"$ac_try\"") >&5 + { (eval echo "$as_me:40177: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39631: \$? = $ac_status" >&5 + echo "$as_me:40180: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -39645,7 +40194,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:39648: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:40197: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -39691,7 +40240,7 @@ if test -n "$cf_searchpath/../include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 39694 "configure" +#line 40243 "configure" #include "confdefs.h" #include <stdio.h> int @@ -39703,16 +40252,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:39706: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:40255: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:39709: \$? = $ac_status" >&5 + echo "$as_me:40258: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:39712: \"$ac_try\"") >&5 + { (eval echo "$as_me:40261: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39715: \$? = $ac_status" >&5 + echo "$as_me:40264: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -39729,7 +40278,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:39732: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:40281: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -39747,7 +40296,7 @@ echo "${as_me:-configure}:39732: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:39750: error: cannot find under $use_bzlib" >&5 +{ { echo "$as_me:40299: error: cannot find under $use_bzlib" >&5 echo "$as_me: error: cannot find under $use_bzlib" >&2;} { (exit 1); exit 1; }; } fi @@ -39772,7 +40321,7 @@ if test -n "$cf_searchpath/lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:39775: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:40324: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -39801,7 +40350,7 @@ if test -n "$cf_searchpath" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:39804: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:40353: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -39810,7 +40359,7 @@ echo "${as_me:-configure}:39804: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:39813: error: cannot find under $use_bzlib" >&5 +{ { echo "$as_me:40362: error: cannot find under $use_bzlib" >&5 echo "$as_me: error: cannot find under $use_bzlib" >&2;} { (exit 1); exit 1; }; } fi @@ -39824,12 +40373,12 @@ esac cf_cv_header_path_bz2= cf_cv_library_path_bz2= -echo "${as_me:-configure}:39827: testing Starting FIND_LINKAGE(bz2,bzlib) ..." 1>&5 +echo "${as_me:-configure}:40376: testing Starting FIND_LINKAGE(bz2,bzlib) ..." 1>&5 cf_save_LIBS="$LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 39832 "configure" +#line 40381 "configure" #include "confdefs.h" #include <stdio.h> @@ -39846,16 +40395,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:39849: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40398: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39852: \$? = $ac_status" >&5 + echo "$as_me:40401: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:39855: \"$ac_try\"") >&5 + { (eval echo "$as_me:40404: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39858: \$? = $ac_status" >&5 + echo "$as_me:40407: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_bz2=yes @@ -39869,7 +40418,7 @@ cat "conftest.$ac_ext" >&5 LIBS="-lbz2 $cf_save_LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 39872 "configure" +#line 40421 "configure" #include "confdefs.h" #include <stdio.h> @@ -39886,16 +40435,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:39889: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40438: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:39892: \$? = $ac_status" >&5 + echo "$as_me:40441: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:39895: \"$ac_try\"") >&5 + { (eval echo "$as_me:40444: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:39898: \$? = $ac_status" >&5 + echo "$as_me:40447: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_bz2=yes @@ -39912,9 +40461,9 @@ cat "conftest.$ac_ext" >&5 test -n "$verbose" && echo " find linkage for bz2 library" 1>&6 -echo "${as_me:-configure}:39915: testing find linkage for bz2 library ..." 1>&5 +echo "${as_me:-configure}:40464: testing find linkage for bz2 library ..." 1>&5 -echo "${as_me:-configure}:39917: testing Searching for headers in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 +echo "${as_me:-configure}:40466: testing Searching for headers in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -40005,7 +40554,7 @@ cf_search="$cf_search $cf_header_path_list" if test -d "$cf_cv_header_path_bz2" ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_bz2" 1>&6 -echo "${as_me:-configure}:40008: testing ... testing $cf_cv_header_path_bz2 ..." 1>&5 +echo "${as_me:-configure}:40557: testing ... testing $cf_cv_header_path_bz2 ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS" @@ -40013,7 +40562,7 @@ echo "${as_me:-configure}:40008: testing ... testing $cf_cv_header_path_bz2 ..." CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_bz2" cat >"conftest.$ac_ext" <<_ACEOF -#line 40016 "configure" +#line 40565 "configure" #include "confdefs.h" #include <stdio.h> @@ -40030,21 +40579,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:40033: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:40582: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:40036: \$? = $ac_status" >&5 + echo "$as_me:40585: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:40039: \"$ac_try\"") >&5 + { (eval echo "$as_me:40588: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40042: \$? = $ac_status" >&5 + echo "$as_me:40591: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then test -n "$verbose" && echo " ... found bz2 headers in $cf_cv_header_path_bz2" 1>&6 -echo "${as_me:-configure}:40047: testing ... found bz2 headers in $cf_cv_header_path_bz2 ..." 1>&5 +echo "${as_me:-configure}:40596: testing ... found bz2 headers in $cf_cv_header_path_bz2 ..." 1>&5 cf_cv_find_linkage_bz2=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -40062,7 +40611,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" if test "$cf_cv_find_linkage_bz2" = maybe ; then -echo "${as_me:-configure}:40065: testing Searching for bz2 library in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 +echo "${as_me:-configure}:40614: testing Searching for bz2 library in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -40070,7 +40619,7 @@ echo "${as_me:-configure}:40065: testing Searching for bz2 library in FIND_LINKA CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lbz2 $cf_save_LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 40073 "configure" +#line 40622 "configure" #include "confdefs.h" #include <stdio.h> @@ -40087,21 +40636,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:40090: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40639: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40093: \$? = $ac_status" >&5 + echo "$as_me:40642: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:40096: \"$ac_try\"") >&5 + { (eval echo "$as_me:40645: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40099: \$? = $ac_status" >&5 + echo "$as_me:40648: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then test -n "$verbose" && echo " ... found bz2 library in system" 1>&6 -echo "${as_me:-configure}:40104: testing ... found bz2 library in system ..." 1>&5 +echo "${as_me:-configure}:40653: testing ... found bz2 library in system ..." 1>&5 cf_cv_find_linkage_bz2=yes else @@ -40182,13 +40731,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d "$cf_cv_library_path_bz2" ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_bz2" 1>&6 -echo "${as_me:-configure}:40185: testing ... testing $cf_cv_library_path_bz2 ..." 1>&5 +echo "${as_me:-configure}:40734: testing ... testing $cf_cv_library_path_bz2 ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lbz2 $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_bz2" cat >"conftest.$ac_ext" <<_ACEOF -#line 40191 "configure" +#line 40740 "configure" #include "confdefs.h" #include <stdio.h> @@ -40205,21 +40754,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:40208: \"$ac_link\"") >&5 +if { (eval echo "$as_me:40757: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40211: \$? = $ac_status" >&5 + echo "$as_me:40760: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:40214: \"$ac_try\"") >&5 + { (eval echo "$as_me:40763: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40217: \$? = $ac_status" >&5 + echo "$as_me:40766: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then test -n "$verbose" && echo " ... found bz2 library in $cf_cv_library_path_bz2" 1>&6 -echo "${as_me:-configure}:40222: testing ... found bz2 library in $cf_cv_library_path_bz2 ..." 1>&5 +echo "${as_me:-configure}:40771: testing ... found bz2 library in $cf_cv_library_path_bz2 ..." 1>&5 cf_cv_find_linkage_bz2=yes cf_cv_library_file_bz2="-lbz2" @@ -40281,7 +40830,7 @@ if test -n "$cf_cv_header_path_bz2" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 40284 "configure" +#line 40833 "configure" #include "confdefs.h" #include <stdio.h> int @@ -40293,16 +40842,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:40296: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:40845: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:40299: \$? = $ac_status" >&5 + echo "$as_me:40848: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:40302: \"$ac_try\"") >&5 + { (eval echo "$as_me:40851: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40305: \$? = $ac_status" >&5 + echo "$as_me:40854: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -40319,7 +40868,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:40322: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:40871: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -40355,7 +40904,7 @@ if test -n "$cf_cv_library_path_bz2" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:40358: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:40907: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -40380,7 +40929,7 @@ done LIBS="$cf_add_libs" else -{ echo "$as_me:40383: WARNING: Cannot find bz2 library" >&5 +{ echo "$as_me:40932: WARNING: Cannot find bz2 library" >&5 echo "$as_me: WARNING: Cannot find bz2 library" >&2;} fi @@ -40391,7 +40940,7 @@ EOF fi -echo "$as_me:40394: checking if you want to use zlib for decompression of some gzip files" >&5 +echo "$as_me:40943: 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. @@ -40401,7 +40950,7 @@ if test "${with_zlib+set}" = set; then else use_zlib=no fi; -echo "$as_me:40404: result: $use_zlib" >&5 +echo "$as_me:40953: result: $use_zlib" >&5 echo "${ECHO_T}$use_zlib" >&6 if test ".$use_zlib" != ".no" ; then @@ -40443,7 +40992,7 @@ if test -n "$cf_searchpath/include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 40446 "configure" +#line 40995 "configure" #include "confdefs.h" #include <stdio.h> int @@ -40455,16 +41004,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:40458: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:41007: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:40461: \$? = $ac_status" >&5 + echo "$as_me:41010: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:40464: \"$ac_try\"") >&5 + { (eval echo "$as_me:41013: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40467: \$? = $ac_status" >&5 + echo "$as_me:41016: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -40481,7 +41030,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:40484: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:41033: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -40527,7 +41076,7 @@ if test -n "$cf_searchpath/../include" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 40530 "configure" +#line 41079 "configure" #include "confdefs.h" #include <stdio.h> int @@ -40539,16 +41088,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:40542: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:41091: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:40545: \$? = $ac_status" >&5 + echo "$as_me:41094: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:40548: \"$ac_try\"") >&5 + { (eval echo "$as_me:41097: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40551: \$? = $ac_status" >&5 + echo "$as_me:41100: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -40565,7 +41114,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:40568: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:41117: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -40583,7 +41132,7 @@ echo "${as_me:-configure}:40568: testing adding $cf_add_incdir to include-path . fi else -{ { echo "$as_me:40586: error: cannot find under $use_zlib" >&5 +{ { echo "$as_me:41135: error: cannot find under $use_zlib" >&5 echo "$as_me: error: cannot find under $use_zlib" >&2;} { (exit 1); exit 1; }; } fi @@ -40608,7 +41157,7 @@ if test -n "$cf_searchpath/lib" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:40611: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:41160: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -40637,7 +41186,7 @@ if test -n "$cf_searchpath" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:40640: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:41189: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -40646,7 +41195,7 @@ echo "${as_me:-configure}:40640: testing adding $cf_add_libdir to library-path . fi else -{ { echo "$as_me:40649: error: cannot find under $use_zlib" >&5 +{ { echo "$as_me:41198: error: cannot find under $use_zlib" >&5 echo "$as_me: error: cannot find under $use_zlib" >&2;} { (exit 1); exit 1; }; } fi @@ -40660,12 +41209,12 @@ esac cf_cv_header_path_z= cf_cv_library_path_z= -echo "${as_me:-configure}:40663: testing Starting FIND_LINKAGE(z,zlib) ..." 1>&5 +echo "${as_me:-configure}:41212: testing Starting FIND_LINKAGE(z,zlib) ..." 1>&5 cf_save_LIBS="$LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 40668 "configure" +#line 41217 "configure" #include "confdefs.h" #include <zlib.h> @@ -40681,16 +41230,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:40684: \"$ac_link\"") >&5 +if { (eval echo "$as_me:41233: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40687: \$? = $ac_status" >&5 + echo "$as_me:41236: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:40690: \"$ac_try\"") >&5 + { (eval echo "$as_me:41239: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40693: \$? = $ac_status" >&5 + echo "$as_me:41242: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_z=yes @@ -40704,7 +41253,7 @@ cat "conftest.$ac_ext" >&5 LIBS="-lz $cf_save_LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 40707 "configure" +#line 41256 "configure" #include "confdefs.h" #include <zlib.h> @@ -40720,16 +41269,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:40723: \"$ac_link\"") >&5 +if { (eval echo "$as_me:41272: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40726: \$? = $ac_status" >&5 + echo "$as_me:41275: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:40729: \"$ac_try\"") >&5 + { (eval echo "$as_me:41278: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40732: \$? = $ac_status" >&5 + echo "$as_me:41281: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_find_linkage_z=yes @@ -40746,9 +41295,9 @@ cat "conftest.$ac_ext" >&5 test -n "$verbose" && echo " find linkage for z library" 1>&6 -echo "${as_me:-configure}:40749: testing find linkage for z library ..." 1>&5 +echo "${as_me:-configure}:41298: testing find linkage for z library ..." 1>&5 -echo "${as_me:-configure}:40751: testing Searching for headers in FIND_LINKAGE(z,zlib) ..." 1>&5 +echo "${as_me:-configure}:41300: testing Searching for headers in FIND_LINKAGE(z,zlib) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -40839,7 +41388,7 @@ cf_search="$cf_search $cf_header_path_list" if test -d "$cf_cv_header_path_z" ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_z" 1>&6 -echo "${as_me:-configure}:40842: testing ... testing $cf_cv_header_path_z ..." 1>&5 +echo "${as_me:-configure}:41391: testing ... testing $cf_cv_header_path_z ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS" @@ -40847,7 +41396,7 @@ echo "${as_me:-configure}:40842: testing ... testing $cf_cv_header_path_z ..." 1 CPPFLAGS="${CPPFLAGS}-I$cf_cv_header_path_z" cat >"conftest.$ac_ext" <<_ACEOF -#line 40850 "configure" +#line 41399 "configure" #include "confdefs.h" #include <zlib.h> @@ -40863,21 +41412,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:40866: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:41415: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:40869: \$? = $ac_status" >&5 + echo "$as_me:41418: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:40872: \"$ac_try\"") >&5 + { (eval echo "$as_me:41421: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40875: \$? = $ac_status" >&5 + echo "$as_me:41424: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then test -n "$verbose" && echo " ... found z headers in $cf_cv_header_path_z" 1>&6 -echo "${as_me:-configure}:40880: testing ... found z headers in $cf_cv_header_path_z ..." 1>&5 +echo "${as_me:-configure}:41429: testing ... found z headers in $cf_cv_header_path_z ..." 1>&5 cf_cv_find_linkage_z=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -40895,7 +41444,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" if test "$cf_cv_find_linkage_z" = maybe ; then -echo "${as_me:-configure}:40898: testing Searching for z library in FIND_LINKAGE(z,zlib) ..." 1>&5 +echo "${as_me:-configure}:41447: testing Searching for z library in FIND_LINKAGE(z,zlib) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -40903,7 +41452,7 @@ echo "${as_me:-configure}:40898: testing Searching for z library in FIND_LINKAGE CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lz $cf_save_LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 40906 "configure" +#line 41455 "configure" #include "confdefs.h" #include <zlib.h> @@ -40919,21 +41468,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:40922: \"$ac_link\"") >&5 +if { (eval echo "$as_me:41471: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:40925: \$? = $ac_status" >&5 + echo "$as_me:41474: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:40928: \"$ac_try\"") >&5 + { (eval echo "$as_me:41477: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:40931: \$? = $ac_status" >&5 + echo "$as_me:41480: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then test -n "$verbose" && echo " ... found z library in system" 1>&6 -echo "${as_me:-configure}:40936: testing ... found z library in system ..." 1>&5 +echo "${as_me:-configure}:41485: testing ... found z library in system ..." 1>&5 cf_cv_find_linkage_z=yes else @@ -41014,13 +41563,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d "$cf_cv_library_path_z" ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_z" 1>&6 -echo "${as_me:-configure}:41017: testing ... testing $cf_cv_library_path_z ..." 1>&5 +echo "${as_me:-configure}:41566: testing ... testing $cf_cv_library_path_z ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lz $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_z" cat >"conftest.$ac_ext" <<_ACEOF -#line 41023 "configure" +#line 41572 "configure" #include "confdefs.h" #include <zlib.h> @@ -41036,21 +41585,21 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:41039: \"$ac_link\"") >&5 +if { (eval echo "$as_me:41588: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:41042: \$? = $ac_status" >&5 + echo "$as_me:41591: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:41045: \"$ac_try\"") >&5 + { (eval echo "$as_me:41594: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41048: \$? = $ac_status" >&5 + echo "$as_me:41597: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then test -n "$verbose" && echo " ... found z library in $cf_cv_library_path_z" 1>&6 -echo "${as_me:-configure}:41053: testing ... found z library in $cf_cv_library_path_z ..." 1>&5 +echo "${as_me:-configure}:41602: testing ... found z library in $cf_cv_library_path_z ..." 1>&5 cf_cv_find_linkage_z=yes cf_cv_library_file_z="-lz" @@ -41112,7 +41661,7 @@ if test -n "$cf_cv_header_path_z" ; then CPPFLAGS="${CPPFLAGS}-I$cf_add_incdir" cat >"conftest.$ac_ext" <<_ACEOF -#line 41115 "configure" +#line 41664 "configure" #include "confdefs.h" #include <stdio.h> int @@ -41124,16 +41673,16 @@ printf("Hello") } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:41127: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:41676: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:41130: \$? = $ac_status" >&5 + echo "$as_me:41679: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:41133: \"$ac_try\"") >&5 + { (eval echo "$as_me:41682: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41136: \$? = $ac_status" >&5 + echo "$as_me:41685: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -41150,7 +41699,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" if test "$cf_have_incdir" = no ; then test -n "$verbose" && echo " adding $cf_add_incdir to include-path" 1>&6 -echo "${as_me:-configure}:41153: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me:-configure}:41702: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -41186,7 +41735,7 @@ if test -n "$cf_cv_library_path_z" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me:-configure}:41189: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me:-configure}:41738: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -41211,7 +41760,7 @@ done LIBS="$cf_add_libs" else -{ echo "$as_me:41214: WARNING: Cannot find z library" >&5 +{ echo "$as_me:41763: WARNING: Cannot find z library" >&5 echo "$as_me: WARNING: Cannot find z library" >&2;} fi @@ -41220,13 +41769,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:41223: checking for $ac_func" >&5 +echo "$as_me:41772: 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 41229 "configure" +#line 41778 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -41257,16 +41806,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:41260: \"$ac_link\"") >&5 +if { (eval echo "$as_me:41809: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:41263: \$? = $ac_status" >&5 + echo "$as_me:41812: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:41266: \"$ac_try\"") >&5 + { (eval echo "$as_me:41815: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41269: \$? = $ac_status" >&5 + echo "$as_me:41818: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -41276,7 +41825,7 @@ eval "$as_ac_var=no" fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:41279: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:41828: 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 @@ -41293,7 +41842,7 @@ EOF fi -echo "$as_me:41296: checking if you want to exclude FINGER code" >&5 +echo "$as_me:41845: 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. @@ -41310,14 +41859,14 @@ else use_finger=no fi; -echo "$as_me:41313: result: $use_finger" >&5 +echo "$as_me:41862: 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:41320: checking if you want to exclude GOPHER code" >&5 +echo "$as_me:41869: 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. @@ -41334,14 +41883,14 @@ else use_gopher=no fi; -echo "$as_me:41337: result: $use_gopher" >&5 +echo "$as_me:41886: 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:41344: checking if you want to exclude NEWS code" >&5 +echo "$as_me:41893: 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. @@ -41358,14 +41907,14 @@ else use_news=no fi; -echo "$as_me:41361: result: $use_news" >&5 +echo "$as_me:41910: 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:41368: checking if you want to exclude FTP code" >&5 +echo "$as_me:41917: 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. @@ -41382,14 +41931,14 @@ else use_ftp=no fi; -echo "$as_me:41385: result: $use_ftp" >&5 +echo "$as_me:41934: result: $use_ftp" >&5 echo "${ECHO_T}$use_ftp" >&6 test "$use_ftp" != "no" && cat >>confdefs.h <<\EOF #define DISABLE_FTP 1 EOF -echo "$as_me:41392: checking if you want to include WAIS code" >&5 +echo "$as_me:41941: checking if you want to include WAIS code" >&5 echo $ECHO_N "checking if you want to include WAIS code... $ECHO_C" >&6 # Check whether --enable-wais or --disable-wais was given. @@ -41406,13 +41955,13 @@ else use_wais=no fi; -echo "$as_me:41409: result: $use_wais" >&5 +echo "$as_me:41958: result: $use_wais" >&5 echo "${ECHO_T}$use_wais" >&6 MAKE_WAIS="#" if test "$use_wais" != "no" then - echo "$as_me:41415: checking for fs_free in -lwais" >&5 + echo "$as_me:41964: checking for fs_free in -lwais" >&5 echo $ECHO_N "checking for fs_free in -lwais... $ECHO_C" >&6 if test "${ac_cv_lib_wais_fs_free+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -41420,7 +41969,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lwais $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 41423 "configure" +#line 41972 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -41439,16 +41988,16 @@ fs_free (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:41442: \"$ac_link\"") >&5 +if { (eval echo "$as_me:41991: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:41445: \$? = $ac_status" >&5 + echo "$as_me:41994: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:41448: \"$ac_try\"") >&5 + { (eval echo "$as_me:41997: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41451: \$? = $ac_status" >&5 + echo "$as_me:42000: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_wais_fs_free=yes else @@ -41459,18 +42008,18 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:41462: result: $ac_cv_lib_wais_fs_free" >&5 +echo "$as_me:42011: result: $ac_cv_lib_wais_fs_free" >&5 echo "${ECHO_T}$ac_cv_lib_wais_fs_free" >&6 if test "$ac_cv_lib_wais_fs_free" = yes; then -echo "$as_me:41466: checking if -lm needed for math functions" >&5 +echo "$as_me:42015: checking if -lm needed for math functions" >&5 echo $ECHO_N "checking if -lm needed for math functions... $ECHO_C" >&6 if test "${cf_cv_need_libm+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 41473 "configure" +#line 42022 "configure" #include "confdefs.h" #include <stdio.h> @@ -41486,16 +42035,16 @@ double x = rand(); printf("result = %g\\n", sin(x)) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:41489: \"$ac_link\"") >&5 +if { (eval echo "$as_me:42038: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:41492: \$? = $ac_status" >&5 + echo "$as_me:42041: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:41495: \"$ac_try\"") >&5 + { (eval echo "$as_me:42044: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:41498: \$? = $ac_status" >&5 + echo "$as_me:42047: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_need_libm=no else @@ -41505,7 +42054,7 @@ cf_cv_need_libm=yes fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:41508: result: $cf_cv_need_libm" >&5 +echo "$as_me:42057: result: $cf_cv_need_libm" >&5 echo "${ECHO_T}$cf_cv_need_libm" >&6 if test "$cf_cv_need_libm" = yes then @@ -41547,23 +42096,23 @@ LIBS="$cf_add_libs" for ac_header in wais.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:41550: checking for $ac_header" >&5 +echo "$as_me:42099: 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 41556 "configure" +#line 42105 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:41560: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:42109: \"$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:41566: \$? = $ac_status" >&5 + echo "$as_me:42115: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -41582,7 +42131,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:41585: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:42134: 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 @@ -41595,7 +42144,7 @@ done MAKE_WAIS= else - { echo "$as_me:41598: WARNING: could not find WAIS library" >&5 + { echo "$as_me:42147: WARNING: could not find WAIS library" >&5 echo "$as_me: WARNING: could not find WAIS library" >&2;} fi @@ -41603,7 +42152,7 @@ fi # All DirEd functions that were enabled on compilation can be disabled # or modified at run time via DIRED_MENU symbols in lynx.cfg. -echo "$as_me:41606: checking if directory-editor code should be used" >&5 +echo "$as_me:42155: 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. @@ -41620,7 +42169,7 @@ else use_dired=yes fi; -echo "$as_me:41623: result: $use_dired" >&5 +echo "$as_me:42172: result: $use_dired" >&5 echo "${ECHO_T}$use_dired" >&6 if test ".$use_dired" != ".no" ; then @@ -41630,7 +42179,7 @@ cat >>confdefs.h <<\EOF #define DIRED_SUPPORT 1 EOF - echo "$as_me:41633: checking if you wish to allow extracting from archives via DirEd" >&5 + echo "$as_me:42182: 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. @@ -41647,10 +42196,10 @@ EOF else enableval=yes fi; - echo "$as_me:41650: result: $enableval" >&5 + echo "$as_me:42199: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:41653: checking if DirEd mode should override keys" >&5 + echo "$as_me:42202: 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. @@ -41674,10 +42223,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:41677: result: $enableval" >&5 + echo "$as_me:42226: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:41680: checking if you wish to allow permissions commands via DirEd" >&5 + echo "$as_me:42229: 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. @@ -41701,10 +42250,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:41704: result: $enableval" >&5 + echo "$as_me:42253: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:41707: checking if you wish to allow executable-permission commands via DirEd" >&5 + echo "$as_me:42256: 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. @@ -41721,10 +42270,10 @@ EOF else enableval=yes fi; - echo "$as_me:41724: result: $enableval" >&5 + echo "$as_me:42273: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:41727: checking if you wish to allow \"tar\" commands from DirEd" >&5 + echo "$as_me:42276: 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. @@ -41748,10 +42297,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:41751: result: $enableval" >&5 + echo "$as_me:42300: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:41754: checking if you wish to allow \"uudecode\" commands from DirEd" >&5 + echo "$as_me:42303: 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. @@ -41775,10 +42324,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:41778: result: $enableval" >&5 + echo "$as_me:42327: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:41781: checking if you wish to allow \"zip\" and \"unzip\" commands from DirEd" >&5 + echo "$as_me:42330: 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. @@ -41802,10 +42351,10 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:41805: result: $enableval" >&5 + echo "$as_me:42354: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:41808: checking if you wish to allow \"gzip\" and \"gunzip\" commands from DirEd" >&5 + echo "$as_me:42357: 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. @@ -41829,11 +42378,11 @@ cat >>confdefs.h <<\EOF EOF fi; - echo "$as_me:41832: result: $enableval" >&5 + echo "$as_me:42381: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 fi -echo "$as_me:41836: checking if you want long-directory listings" >&5 +echo "$as_me:42385: 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. @@ -41857,10 +42406,10 @@ cat >>confdefs.h <<\EOF EOF fi; -echo "$as_me:41860: result: $enableval" >&5 +echo "$as_me:42409: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 -echo "$as_me:41863: checking if parent-directory references are permitted" >&5 +echo "$as_me:42412: 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. @@ -41877,7 +42426,7 @@ EOF else enableval=yes fi; -echo "$as_me:41880: result: $enableval" >&5 +echo "$as_me:42429: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 test -z "$TELNET" && TELNET="telnet" @@ -41885,7 +42434,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:41888: checking for $ac_word" >&5 +echo "$as_me:42437: 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 @@ -41902,7 +42451,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:41905: found $ac_dir/$ac_word" >&5 + echo "$as_me:42454: found $ac_dir/$ac_word" >&5 break fi done @@ -41913,10 +42462,10 @@ fi TELNET=$ac_cv_path_TELNET if test -n "$TELNET"; then - echo "$as_me:41916: result: $TELNET" >&5 + echo "$as_me:42465: result: $TELNET" >&5 echo "${ECHO_T}$TELNET" >&6 else - echo "$as_me:41919: result: no" >&5 + echo "$as_me:42468: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -41975,7 +42524,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:41978: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:42527: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define TELNET_PATH "$cf_path_prog" @@ -41993,7 +42542,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:41996: checking for $ac_word" >&5 +echo "$as_me:42545: 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 @@ -42010,7 +42559,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:42013: found $ac_dir/$ac_word" >&5 + echo "$as_me:42562: found $ac_dir/$ac_word" >&5 break fi done @@ -42021,10 +42570,10 @@ fi TN3270=$ac_cv_path_TN3270 if test -n "$TN3270"; then - echo "$as_me:42024: result: $TN3270" >&5 + echo "$as_me:42573: result: $TN3270" >&5 echo "${ECHO_T}$TN3270" >&6 else - echo "$as_me:42027: result: no" >&5 + echo "$as_me:42576: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -42083,7 +42632,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:42086: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:42635: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define TN3270_PATH "$cf_path_prog" @@ -42101,7 +42650,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:42104: checking for $ac_word" >&5 +echo "$as_me:42653: 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 @@ -42118,7 +42667,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:42121: found $ac_dir/$ac_word" >&5 + echo "$as_me:42670: found $ac_dir/$ac_word" >&5 break fi done @@ -42129,10 +42678,10 @@ fi RLOGIN=$ac_cv_path_RLOGIN if test -n "$RLOGIN"; then - echo "$as_me:42132: result: $RLOGIN" >&5 + echo "$as_me:42681: result: $RLOGIN" >&5 echo "${ECHO_T}$RLOGIN" >&6 else - echo "$as_me:42135: result: no" >&5 + echo "$as_me:42684: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -42191,7 +42740,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:42194: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:42743: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define RLOGIN_PATH "$cf_path_prog" @@ -42209,7 +42758,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:42212: checking for $ac_word" >&5 +echo "$as_me:42761: 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 @@ -42226,7 +42775,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:42229: found $ac_dir/$ac_word" >&5 + echo "$as_me:42778: found $ac_dir/$ac_word" >&5 break fi done @@ -42237,10 +42786,10 @@ fi MV=$ac_cv_path_MV if test -n "$MV"; then - echo "$as_me:42240: result: $MV" >&5 + echo "$as_me:42789: result: $MV" >&5 echo "${ECHO_T}$MV" >&6 else - echo "$as_me:42243: result: no" >&5 + echo "$as_me:42792: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -42299,7 +42848,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:42302: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:42851: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define MV_PATH "$cf_path_prog" @@ -42317,7 +42866,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:42320: checking for $ac_word" >&5 +echo "$as_me:42869: 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 @@ -42334,7 +42883,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:42337: found $ac_dir/$ac_word" >&5 + echo "$as_me:42886: found $ac_dir/$ac_word" >&5 break fi done @@ -42345,10 +42894,10 @@ fi GZIP=$ac_cv_path_GZIP if test -n "$GZIP"; then - echo "$as_me:42348: result: $GZIP" >&5 + echo "$as_me:42897: result: $GZIP" >&5 echo "${ECHO_T}$GZIP" >&6 else - echo "$as_me:42351: result: no" >&5 + echo "$as_me:42900: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -42407,7 +42956,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:42410: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:42959: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define GZIP_PATH "$cf_path_prog" @@ -42425,7 +42974,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:42428: checking for $ac_word" >&5 +echo "$as_me:42977: 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 @@ -42442,7 +42991,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:42445: found $ac_dir/$ac_word" >&5 + echo "$as_me:42994: found $ac_dir/$ac_word" >&5 break fi done @@ -42453,10 +43002,10 @@ fi UNCOMPRESS=$ac_cv_path_UNCOMPRESS if test -n "$UNCOMPRESS"; then - echo "$as_me:42456: result: $UNCOMPRESS" >&5 + echo "$as_me:43005: result: $UNCOMPRESS" >&5 echo "${ECHO_T}$UNCOMPRESS" >&6 else - echo "$as_me:42459: result: no" >&5 + echo "$as_me:43008: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -42515,7 +43064,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:42518: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:43067: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UNCOMPRESS_PATH "$cf_path_prog" @@ -42533,7 +43082,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:42536: checking for $ac_word" >&5 +echo "$as_me:43085: 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 @@ -42550,7 +43099,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:42553: found $ac_dir/$ac_word" >&5 + echo "$as_me:43102: found $ac_dir/$ac_word" >&5 break fi done @@ -42561,10 +43110,10 @@ fi UNZIP=$ac_cv_path_UNZIP if test -n "$UNZIP"; then - echo "$as_me:42564: result: $UNZIP" >&5 + echo "$as_me:43113: result: $UNZIP" >&5 echo "${ECHO_T}$UNZIP" >&6 else - echo "$as_me:42567: result: no" >&5 + echo "$as_me:43116: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -42623,7 +43172,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:42626: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:43175: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UNZIP_PATH "$cf_path_prog" @@ -42641,7 +43190,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:42644: checking for $ac_word" >&5 +echo "$as_me:43193: 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 @@ -42658,7 +43207,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:42661: found $ac_dir/$ac_word" >&5 + echo "$as_me:43210: found $ac_dir/$ac_word" >&5 break fi done @@ -42669,10 +43218,10 @@ fi BZIP2=$ac_cv_path_BZIP2 if test -n "$BZIP2"; then - echo "$as_me:42672: result: $BZIP2" >&5 + echo "$as_me:43221: result: $BZIP2" >&5 echo "${ECHO_T}$BZIP2" >&6 else - echo "$as_me:42675: result: no" >&5 + echo "$as_me:43224: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -42731,7 +43280,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:42734: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:43283: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define BZIP2_PATH "$cf_path_prog" @@ -42749,7 +43298,7 @@ for ac_prog in $TAR tar pax gtar gnutar bsdtar star do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:42752: checking for $ac_word" >&5 +echo "$as_me:43301: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_TAR+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -42766,7 +43315,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_TAR="$ac_dir/$ac_word" - echo "$as_me:42769: found $ac_dir/$ac_word" >&5 + echo "$as_me:43318: found $ac_dir/$ac_word" >&5 break fi done @@ -42777,10 +43326,10 @@ fi TAR=$ac_cv_path_TAR if test -n "$TAR"; then - echo "$as_me:42780: result: $TAR" >&5 + echo "$as_me:43329: result: $TAR" >&5 echo "${ECHO_T}$TAR" >&6 else - echo "$as_me:42783: result: no" >&5 + echo "$as_me:43332: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -42839,7 +43388,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:42842: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:43391: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define TAR_PATH "$cf_path_prog" @@ -42897,7 +43446,7 @@ for ac_prog in $COMPRESS compress do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:42900: checking for $ac_word" >&5 +echo "$as_me:43449: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_COMPRESS+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -42914,7 +43463,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_COMPRESS="$ac_dir/$ac_word" - echo "$as_me:42917: found $ac_dir/$ac_word" >&5 + echo "$as_me:43466: found $ac_dir/$ac_word" >&5 break fi done @@ -42925,10 +43474,10 @@ fi COMPRESS=$ac_cv_path_COMPRESS if test -n "$COMPRESS"; then - echo "$as_me:42928: result: $COMPRESS" >&5 + echo "$as_me:43477: result: $COMPRESS" >&5 echo "${ECHO_T}$COMPRESS" >&6 else - echo "$as_me:42931: result: no" >&5 + echo "$as_me:43480: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -42987,7 +43536,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:42990: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:43539: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define COMPRESS_PATH "$cf_path_prog" @@ -43005,7 +43554,7 @@ for ac_prog in $RM rm do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:43008: checking for $ac_word" >&5 +echo "$as_me:43557: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_RM+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -43022,7 +43571,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_RM="$ac_dir/$ac_word" - echo "$as_me:43025: found $ac_dir/$ac_word" >&5 + echo "$as_me:43574: found $ac_dir/$ac_word" >&5 break fi done @@ -43033,10 +43582,10 @@ fi RM=$ac_cv_path_RM if test -n "$RM"; then - echo "$as_me:43036: result: $RM" >&5 + echo "$as_me:43585: result: $RM" >&5 echo "${ECHO_T}$RM" >&6 else - echo "$as_me:43039: result: no" >&5 + echo "$as_me:43588: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -43095,7 +43644,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:43098: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:43647: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define RM_PATH "$cf_path_prog" @@ -43113,7 +43662,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:43116: checking for $ac_word" >&5 +echo "$as_me:43665: 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 @@ -43130,7 +43679,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:43133: found $ac_dir/$ac_word" >&5 + echo "$as_me:43682: found $ac_dir/$ac_word" >&5 break fi done @@ -43141,10 +43690,10 @@ fi UUDECODE=$ac_cv_path_UUDECODE if test -n "$UUDECODE"; then - echo "$as_me:43144: result: $UUDECODE" >&5 + echo "$as_me:43693: result: $UUDECODE" >&5 echo "${ECHO_T}$UUDECODE" >&6 else - echo "$as_me:43147: result: no" >&5 + echo "$as_me:43696: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -43203,7 +43752,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:43206: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:43755: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UUDECODE_PATH "$cf_path_prog" @@ -43221,7 +43770,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:43224: checking for $ac_word" >&5 +echo "$as_me:43773: 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 @@ -43238,7 +43787,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:43241: found $ac_dir/$ac_word" >&5 + echo "$as_me:43790: found $ac_dir/$ac_word" >&5 break fi done @@ -43249,10 +43798,10 @@ fi ZCAT=$ac_cv_path_ZCAT if test -n "$ZCAT"; then - echo "$as_me:43252: result: $ZCAT" >&5 + echo "$as_me:43801: result: $ZCAT" >&5 echo "${ECHO_T}$ZCAT" >&6 else - echo "$as_me:43255: result: no" >&5 + echo "$as_me:43804: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -43311,7 +43860,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:43314: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:43863: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define ZCAT_PATH "$cf_path_prog" @@ -43329,7 +43878,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:43332: checking for $ac_word" >&5 +echo "$as_me:43881: 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 @@ -43346,7 +43895,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:43349: found $ac_dir/$ac_word" >&5 + echo "$as_me:43898: found $ac_dir/$ac_word" >&5 break fi done @@ -43357,10 +43906,10 @@ fi ZIP=$ac_cv_path_ZIP if test -n "$ZIP"; then - echo "$as_me:43360: result: $ZIP" >&5 + echo "$as_me:43909: result: $ZIP" >&5 echo "${ECHO_T}$ZIP" >&6 else - echo "$as_me:43363: result: no" >&5 + echo "$as_me:43912: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -43419,7 +43968,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:43422: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:43971: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define ZIP_PATH "$cf_path_prog" @@ -43447,7 +43996,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:43450: checking for $ac_word" >&5 +echo "$as_me:43999: 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 @@ -43464,7 +44013,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:43467: found $ac_dir/$ac_word" >&5 + echo "$as_me:44016: found $ac_dir/$ac_word" >&5 break fi done @@ -43475,10 +44024,10 @@ fi INSTALL=$ac_cv_path_INSTALL if test -n "$INSTALL"; then - echo "$as_me:43478: result: $INSTALL" >&5 + echo "$as_me:44027: result: $INSTALL" >&5 echo "${ECHO_T}$INSTALL" >&6 else - echo "$as_me:43481: result: no" >&5 + echo "$as_me:44030: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -43537,7 +44086,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me:-configure}:43540: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me:-configure}:44089: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define INSTALL_PATH "$cf_path_prog" @@ -43567,7 +44116,7 @@ if test "$cf_cv_screen" = pdcurses ; then case "$host_os" in (mingw*) -echo "$as_me:43570: checking for initscr in -lpdcurses" >&5 +echo "$as_me:44119: checking for initscr in -lpdcurses" >&5 echo $ECHO_N "checking for initscr in -lpdcurses... $ECHO_C" >&6 if test "${ac_cv_lib_pdcurses_initscr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -43575,7 +44124,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lpdcurses $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 43578 "configure" +#line 44127 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -43594,16 +44143,16 @@ initscr (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:43597: \"$ac_link\"") >&5 +if { (eval echo "$as_me:44146: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:43600: \$? = $ac_status" >&5 + echo "$as_me:44149: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:43603: \"$ac_try\"") >&5 + { (eval echo "$as_me:44152: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43606: \$? = $ac_status" >&5 + echo "$as_me:44155: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_pdcurses_initscr=yes else @@ -43614,7 +44163,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:43617: result: $ac_cv_lib_pdcurses_initscr" >&5 +echo "$as_me:44166: result: $ac_cv_lib_pdcurses_initscr" >&5 echo "${ECHO_T}$ac_cv_lib_pdcurses_initscr" >&6 if test "$ac_cv_lib_pdcurses_initscr" = yes; then @@ -43636,13 +44185,13 @@ LIBS="$cf_add_libs" cf_cv_term_header=no cf_cv_unctrl_header=no - echo "$as_me:43639: checking for winwstr" >&5 + echo "$as_me:44188: checking for winwstr" >&5 echo $ECHO_N "checking for winwstr... $ECHO_C" >&6 if test "${ac_cv_func_winwstr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 43645 "configure" +#line 44194 "configure" #include "confdefs.h" #define winwstr autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -43673,16 +44222,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:43676: \"$ac_link\"") >&5 +if { (eval echo "$as_me:44225: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:43679: \$? = $ac_status" >&5 + echo "$as_me:44228: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:43682: \"$ac_try\"") >&5 + { (eval echo "$as_me:44231: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43685: \$? = $ac_status" >&5 + echo "$as_me:44234: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_winwstr=yes else @@ -43692,7 +44241,7 @@ ac_cv_func_winwstr=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:43695: result: $ac_cv_func_winwstr" >&5 +echo "$as_me:44244: result: $ac_cv_func_winwstr" >&5 echo "${ECHO_T}$ac_cv_func_winwstr" >&6 if test "$ac_cv_func_winwstr" = yes; then @@ -43702,13 +44251,13 @@ EOF fi - echo "$as_me:43705: checking for pdcurses_dll_iname" >&5 + echo "$as_me:44254: checking for pdcurses_dll_iname" >&5 echo $ECHO_N "checking for pdcurses_dll_iname... $ECHO_C" >&6 if test "${ac_cv_func_pdcurses_dll_iname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 43711 "configure" +#line 44260 "configure" #include "confdefs.h" #define pdcurses_dll_iname autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -43739,16 +44288,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:43742: \"$ac_link\"") >&5 +if { (eval echo "$as_me:44291: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:43745: \$? = $ac_status" >&5 + echo "$as_me:44294: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:43748: \"$ac_try\"") >&5 + { (eval echo "$as_me:44297: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:43751: \$? = $ac_status" >&5 + echo "$as_me:44300: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_pdcurses_dll_iname=yes else @@ -43758,7 +44307,7 @@ ac_cv_func_pdcurses_dll_iname=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:43761: result: $ac_cv_func_pdcurses_dll_iname" >&5 +echo "$as_me:44310: result: $ac_cv_func_pdcurses_dll_iname" >&5 echo "${ECHO_T}$ac_cv_func_pdcurses_dll_iname" >&6 if test "$ac_cv_func_pdcurses_dll_iname" = yes; then @@ -43775,7 +44324,7 @@ fi cf_x_athena=${cf_x_athena:-Xaw} -echo "$as_me:43778: checking if you want to link with Xaw 3d library" >&5 +echo "$as_me:44327: 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= @@ -43786,14 +44335,14 @@ if test "${with_Xaw3d+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=Xaw3d - echo "$as_me:43789: result: yes" >&5 + echo "$as_me:44338: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:43792: result: no" >&5 + echo "$as_me:44341: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:43796: checking if you want to link with Xaw 3d xft library" >&5 +echo "$as_me:44345: checking if you want to link with Xaw 3d xft library" >&5 echo $ECHO_N "checking if you want to link with Xaw 3d xft library... $ECHO_C" >&6 withval= @@ -43804,14 +44353,14 @@ if test "${with_Xaw3dxft+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=Xaw3dxft - echo "$as_me:43807: result: yes" >&5 + echo "$as_me:44356: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:43810: result: no" >&5 + echo "$as_me:44359: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:43814: checking if you want to link with neXT Athena library" >&5 +echo "$as_me:44363: 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= @@ -43822,14 +44371,14 @@ if test "${with_neXtaw+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=neXtaw - echo "$as_me:43825: result: yes" >&5 + echo "$as_me:44374: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:43828: result: no" >&5 + echo "$as_me:44377: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:43832: checking if you want to link with Athena-Plus library" >&5 +echo "$as_me:44381: 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= @@ -43840,10 +44389,10 @@ if test "${with_XawPlus+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=XawPlus - echo "$as_me:43843: result: yes" >&5 + echo "$as_me:44392: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:43846: result: no" >&5 + echo "$as_me:44395: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -43863,17 +44412,17 @@ if test "$PKG_CONFIG" != none ; then if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists "$cf_athena_pkg"; then test -n "$verbose" && echo " found package $cf_athena_pkg" 1>&6 -echo "${as_me:-configure}:43866: testing found package $cf_athena_pkg ..." 1>&5 +echo "${as_me:-configure}:44415: testing found package $cf_athena_pkg ..." 1>&5 cf_pkgconfig_incs="`$PKG_CONFIG --cflags "$cf_athena_pkg" 2>/dev/null`" cf_pkgconfig_libs="`$PKG_CONFIG --libs "$cf_athena_pkg" 2>/dev/null`" test -n "$verbose" && echo " package $cf_athena_pkg CFLAGS: $cf_pkgconfig_incs" 1>&6 -echo "${as_me:-configure}:43872: testing package $cf_athena_pkg CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:44421: testing package $cf_athena_pkg CFLAGS: $cf_pkgconfig_incs ..." 1>&5 test -n "$verbose" && echo " package $cf_athena_pkg LIBS: $cf_pkgconfig_libs" 1>&6 -echo "${as_me:-configure}:43876: testing package $cf_athena_pkg LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:44425: testing package $cf_athena_pkg LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -44004,20 +44553,20 @@ EOF LIBS=`echo "$LIBS " | sed -e 's/ / /g' -e 's%-l'"$cf_trim_lib"' %%' -e 's/ $//'` test -n "$verbose" && echo " ..trimmed $LIBS" 1>&6 -echo "${as_me:-configure}:44007: testing ..trimmed $LIBS ..." 1>&5 +echo "${as_me:-configure}:44556: testing ..trimmed $LIBS ..." 1>&5 ;; esac done -echo "$as_me:44013: checking for usable $cf_x_athena/Xmu package" >&5 +echo "$as_me:44562: checking for usable $cf_x_athena/Xmu package" >&5 echo $ECHO_N "checking for usable $cf_x_athena/Xmu package... $ECHO_C" >&6 if test "${cf_cv_xaw_compat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 44020 "configure" +#line 44569 "configure" #include "confdefs.h" #include <X11/Xmu/CharSet.h> @@ -44034,16 +44583,16 @@ int check = XmuCompareISOLatin1("big", "small"); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:44037: \"$ac_link\"") >&5 +if { (eval echo "$as_me:44586: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:44040: \$? = $ac_status" >&5 + echo "$as_me:44589: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:44043: \"$ac_try\"") >&5 + { (eval echo "$as_me:44592: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:44046: \$? = $ac_status" >&5 + echo "$as_me:44595: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_xaw_compat=yes else @@ -44053,7 +44602,7 @@ cf_cv_xaw_compat=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:44056: result: $cf_cv_xaw_compat" >&5 +echo "$as_me:44605: result: $cf_cv_xaw_compat" >&5 echo "${ECHO_T}$cf_cv_xaw_compat" >&6 if test "$cf_cv_xaw_compat" = no @@ -44065,7 +44614,7 @@ echo "${ECHO_T}$cf_cv_xaw_compat" >&6 (*) test -n "$verbose" && echo " work around broken package" 1>&6 -echo "${as_me:-configure}:44068: testing work around broken package ..." 1>&5 +echo "${as_me:-configure}:44617: testing work around broken package ..." 1>&5 cf_save_xmu="$LIBS" cf_first_lib=`echo "$cf_save_xmu" | sed -e 's/^ *//' -e 's/ .*//'` @@ -44073,17 +44622,17 @@ echo "${as_me:-configure}:44068: testing work around broken package ..." 1>&5 if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists "xmu"; then test -n "$verbose" && echo " found package xmu" 1>&6 -echo "${as_me:-configure}:44076: testing found package xmu ..." 1>&5 +echo "${as_me:-configure}:44625: testing found package xmu ..." 1>&5 cf_pkgconfig_incs="`$PKG_CONFIG --cflags "xmu" 2>/dev/null`" cf_pkgconfig_libs="`$PKG_CONFIG --libs "xmu" 2>/dev/null`" test -n "$verbose" && echo " package xmu CFLAGS: $cf_pkgconfig_incs" 1>&6 -echo "${as_me:-configure}:44082: testing package xmu CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:44631: testing package xmu CFLAGS: $cf_pkgconfig_incs ..." 1>&5 test -n "$verbose" && echo " package xmu LIBS: $cf_pkgconfig_libs" 1>&6 -echo "${as_me:-configure}:44086: testing package xmu LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:44635: testing package xmu LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -44203,12 +44752,12 @@ LIBS="$cf_add_libs" test -n "$verbose" && echo " ...before $LIBS" 1>&6 -echo "${as_me:-configure}:44206: testing ...before $LIBS ..." 1>&5 +echo "${as_me:-configure}:44755: testing ...before $LIBS ..." 1>&5 LIBS=`echo "$LIBS" | sed -e "s/[ ][ ]*/ /g" -e "s%$cf_first_lib %$cf_first_lib $cf_pkgconfig_libs %" -e 's% % %g'` test -n "$verbose" && echo " ...after $LIBS" 1>&6 -echo "${as_me:-configure}:44211: testing ...after $LIBS ..." 1>&5 +echo "${as_me:-configure}:44760: testing ...after $LIBS ..." 1>&5 else cf_pkgconfig_incs= @@ -44216,12 +44765,12 @@ else test -n "$verbose" && echo " ...before $LIBS" 1>&6 -echo "${as_me:-configure}:44219: testing ...before $LIBS ..." 1>&5 +echo "${as_me:-configure}:44768: testing ...before $LIBS ..." 1>&5 LIBS=`echo "$LIBS" | sed -e "s/[ ][ ]*/ /g" -e "s%$cf_first_lib %$cf_first_lib -lXmu %" -e 's% % %g'` test -n "$verbose" && echo " ...after $LIBS" 1>&6 -echo "${as_me:-configure}:44224: testing ...after $LIBS ..." 1>&5 +echo "${as_me:-configure}:44773: testing ...after $LIBS ..." 1>&5 fi @@ -44232,7 +44781,7 @@ fi LIBS=`echo "$LIBS " | sed -e 's/ / /g' -e 's%-l'"$cf_trim_lib"' %%' -e 's/ $//'` test -n "$verbose" && echo " ..trimmed $LIBS" 1>&6 -echo "${as_me:-configure}:44235: testing ..trimmed $LIBS ..." 1>&5 +echo "${as_me:-configure}:44784: testing ..trimmed $LIBS ..." 1>&5 ;; esac @@ -44257,17 +44806,17 @@ if test -z "$cf_x_athena_lib" ; then if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists "Xext"; then test -n "$verbose" && echo " found package Xext" 1>&6 -echo "${as_me:-configure}:44260: testing found package Xext ..." 1>&5 +echo "${as_me:-configure}:44809: testing found package Xext ..." 1>&5 cf_pkgconfig_incs="`$PKG_CONFIG --cflags "Xext" 2>/dev/null`" cf_pkgconfig_libs="`$PKG_CONFIG --libs "Xext" 2>/dev/null`" test -n "$verbose" && echo " package Xext CFLAGS: $cf_pkgconfig_incs" 1>&6 -echo "${as_me:-configure}:44266: testing package Xext CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:44815: testing package Xext CFLAGS: $cf_pkgconfig_incs ..." 1>&5 test -n "$verbose" && echo " package Xext LIBS: $cf_pkgconfig_libs" 1>&6 -echo "${as_me:-configure}:44270: testing package Xext LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:44819: testing package Xext LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -44388,7 +44937,7 @@ else cf_pkgconfig_incs= cf_pkgconfig_libs= - echo "$as_me:44391: checking for XextCreateExtension in -lXext" >&5 + echo "$as_me:44940: 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 @@ -44396,7 +44945,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lXext $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 44399 "configure" +#line 44948 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -44415,16 +44964,16 @@ XextCreateExtension (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:44418: \"$ac_link\"") >&5 +if { (eval echo "$as_me:44967: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:44421: \$? = $ac_status" >&5 + echo "$as_me:44970: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:44424: \"$ac_try\"") >&5 + { (eval echo "$as_me:44973: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:44427: \$? = $ac_status" >&5 + echo "$as_me:44976: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_Xext_XextCreateExtension=yes else @@ -44435,7 +44984,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:44438: result: $ac_cv_lib_Xext_XextCreateExtension" >&5 +echo "$as_me:44987: 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 @@ -44471,17 +45020,17 @@ then if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists "x11"; then test -n "$verbose" && echo " found package x11" 1>&6 -echo "${as_me:-configure}:44474: testing found package x11 ..." 1>&5 +echo "${as_me:-configure}:45023: testing found package x11 ..." 1>&5 cf_pkgconfig_incs="`$PKG_CONFIG --cflags "x11" 2>/dev/null`" cf_pkgconfig_libs="`$PKG_CONFIG --libs "x11" 2>/dev/null`" test -n "$verbose" && echo " package x11 CFLAGS: $cf_pkgconfig_incs" 1>&6 -echo "${as_me:-configure}:44480: testing package x11 CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:45029: testing package x11 CFLAGS: $cf_pkgconfig_incs ..." 1>&5 test -n "$verbose" && echo " package x11 LIBS: $cf_pkgconfig_libs" 1>&6 -echo "${as_me:-configure}:44484: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:45033: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -44601,24 +45150,24 @@ LIBS="$cf_add_libs" else cf_pkgconfig_incs= cf_pkgconfig_libs= - { echo "$as_me:44604: WARNING: unable to find X11 library" >&5 + { echo "$as_me:45153: WARNING: unable to find X11 library" >&5 echo "$as_me: WARNING: unable to find X11 library" >&2;} fi if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists "ice"; then test -n "$verbose" && echo " found package ice" 1>&6 -echo "${as_me:-configure}:44611: testing found package ice ..." 1>&5 +echo "${as_me:-configure}:45160: testing found package ice ..." 1>&5 cf_pkgconfig_incs="`$PKG_CONFIG --cflags "ice" 2>/dev/null`" cf_pkgconfig_libs="`$PKG_CONFIG --libs "ice" 2>/dev/null`" test -n "$verbose" && echo " package ice CFLAGS: $cf_pkgconfig_incs" 1>&6 -echo "${as_me:-configure}:44617: testing package ice CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:45166: testing package ice CFLAGS: $cf_pkgconfig_incs ..." 1>&5 test -n "$verbose" && echo " package ice LIBS: $cf_pkgconfig_libs" 1>&6 -echo "${as_me:-configure}:44621: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:45170: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -44738,24 +45287,24 @@ LIBS="$cf_add_libs" else cf_pkgconfig_incs= cf_pkgconfig_libs= - { echo "$as_me:44741: WARNING: unable to find ICE library" >&5 + { echo "$as_me:45290: WARNING: unable to find ICE library" >&5 echo "$as_me: WARNING: unable to find ICE library" >&2;} fi if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists "sm"; then test -n "$verbose" && echo " found package sm" 1>&6 -echo "${as_me:-configure}:44748: testing found package sm ..." 1>&5 +echo "${as_me:-configure}:45297: testing found package sm ..." 1>&5 cf_pkgconfig_incs="`$PKG_CONFIG --cflags "sm" 2>/dev/null`" cf_pkgconfig_libs="`$PKG_CONFIG --libs "sm" 2>/dev/null`" test -n "$verbose" && echo " package sm CFLAGS: $cf_pkgconfig_incs" 1>&6 -echo "${as_me:-configure}:44754: testing package sm CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:45303: testing package sm CFLAGS: $cf_pkgconfig_incs ..." 1>&5 test -n "$verbose" && echo " package sm LIBS: $cf_pkgconfig_libs" 1>&6 -echo "${as_me:-configure}:44758: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:45307: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -44875,24 +45424,24 @@ LIBS="$cf_add_libs" else cf_pkgconfig_incs= cf_pkgconfig_libs= - { echo "$as_me:44878: WARNING: unable to find SM library" >&5 + { echo "$as_me:45427: WARNING: unable to find SM library" >&5 echo "$as_me: WARNING: unable to find SM library" >&2;} fi if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists "xt"; then test -n "$verbose" && echo " found package xt" 1>&6 -echo "${as_me:-configure}:44885: testing found package xt ..." 1>&5 +echo "${as_me:-configure}:45434: testing found package xt ..." 1>&5 cf_pkgconfig_incs="`$PKG_CONFIG --cflags "xt" 2>/dev/null`" cf_pkgconfig_libs="`$PKG_CONFIG --libs "xt" 2>/dev/null`" test -n "$verbose" && echo " package xt CFLAGS: $cf_pkgconfig_incs" 1>&6 -echo "${as_me:-configure}:44891: testing package xt CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:45440: testing package xt CFLAGS: $cf_pkgconfig_incs ..." 1>&5 test -n "$verbose" && echo " package xt LIBS: $cf_pkgconfig_libs" 1>&6 -echo "${as_me:-configure}:44895: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:45444: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -45012,7 +45561,7 @@ LIBS="$cf_add_libs" else cf_pkgconfig_incs= cf_pkgconfig_libs= - { echo "$as_me:45015: WARNING: unable to find Xt library" >&5 + { echo "$as_me:45564: WARNING: unable to find Xt library" >&5 echo "$as_me: WARNING: unable to find Xt library" >&2;} fi @@ -45025,17 +45574,17 @@ cf_have_X_LIBS=no if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists "xt"; then test -n "$verbose" && echo " found package xt" 1>&6 -echo "${as_me:-configure}:45028: testing found package xt ..." 1>&5 +echo "${as_me:-configure}:45577: testing found package xt ..." 1>&5 cf_pkgconfig_incs="`$PKG_CONFIG --cflags "xt" 2>/dev/null`" cf_pkgconfig_libs="`$PKG_CONFIG --libs "xt" 2>/dev/null`" test -n "$verbose" && echo " package xt CFLAGS: $cf_pkgconfig_incs" 1>&6 -echo "${as_me:-configure}:45034: testing package xt CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:45583: testing package xt CFLAGS: $cf_pkgconfig_incs ..." 1>&5 test -n "$verbose" && echo " package xt LIBS: $cf_pkgconfig_libs" 1>&6 -echo "${as_me:-configure}:45038: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:45587: testing package xt LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -45156,14 +45705,14 @@ LIBS="$cf_add_libs" ;; (*) # we have an "xt" package, but it may omit Xt's dependency on X11 -echo "$as_me:45159: checking for usable X dependency" >&5 +echo "$as_me:45708: checking for usable X dependency" >&5 echo $ECHO_N "checking for usable X dependency... $ECHO_C" >&6 if test "${cf_cv_xt_x11_compat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 45166 "configure" +#line 45715 "configure" #include "confdefs.h" #include <X11/Xlib.h> @@ -45182,16 +45731,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:45185: \"$ac_link\"") >&5 +if { (eval echo "$as_me:45734: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:45188: \$? = $ac_status" >&5 + echo "$as_me:45737: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:45191: \"$ac_try\"") >&5 + { (eval echo "$as_me:45740: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:45194: \$? = $ac_status" >&5 + echo "$as_me:45743: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_xt_x11_compat=yes else @@ -45201,30 +45750,30 @@ cf_cv_xt_x11_compat=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:45204: result: $cf_cv_xt_x11_compat" >&5 +echo "$as_me:45753: result: $cf_cv_xt_x11_compat" >&5 echo "${ECHO_T}$cf_cv_xt_x11_compat" >&6 if test "$cf_cv_xt_x11_compat" = no then test -n "$verbose" && echo " work around broken X11 dependency" 1>&6 -echo "${as_me:-configure}:45210: testing work around broken X11 dependency ..." 1>&5 +echo "${as_me:-configure}:45759: testing work around broken X11 dependency ..." 1>&5 # 2010/11/19 - good enough until a working Xt on Xcb is delivered. if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists "x11"; then test -n "$verbose" && echo " found package x11" 1>&6 -echo "${as_me:-configure}:45217: testing found package x11 ..." 1>&5 +echo "${as_me:-configure}:45766: testing found package x11 ..." 1>&5 cf_pkgconfig_incs="`$PKG_CONFIG --cflags "x11" 2>/dev/null`" cf_pkgconfig_libs="`$PKG_CONFIG --libs "x11" 2>/dev/null`" test -n "$verbose" && echo " package x11 CFLAGS: $cf_pkgconfig_incs" 1>&6 -echo "${as_me:-configure}:45223: testing package x11 CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:45772: testing package x11 CFLAGS: $cf_pkgconfig_incs ..." 1>&5 test -n "$verbose" && echo " package x11 LIBS: $cf_pkgconfig_libs" 1>&6 -echo "${as_me:-configure}:45227: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:45776: testing package x11 LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -45347,12 +45896,12 @@ else test -n "$verbose" && echo " ...before $LIBS" 1>&6 -echo "${as_me:-configure}:45350: testing ...before $LIBS ..." 1>&5 +echo "${as_me:-configure}:45899: testing ...before $LIBS ..." 1>&5 LIBS=`echo "$LIBS" | sed -e "s/[ ][ ]*/ /g" -e "s%-lXt %-lXt -lX11 %" -e 's% % %g'` test -n "$verbose" && echo " ...after $LIBS" 1>&6 -echo "${as_me:-configure}:45355: testing ...after $LIBS ..." 1>&5 +echo "${as_me:-configure}:45904: testing ...after $LIBS ..." 1>&5 fi @@ -45360,14 +45909,14 @@ fi ;; esac -echo "$as_me:45363: checking for usable X Toolkit package" >&5 +echo "$as_me:45912: checking for usable X Toolkit package" >&5 echo $ECHO_N "checking for usable X Toolkit package... $ECHO_C" >&6 if test "${cf_cv_xt_ice_compat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 45370 "configure" +#line 45919 "configure" #include "confdefs.h" #include <X11/Shell.h> @@ -45382,16 +45931,16 @@ int num = IceConnectionNumber(0); (void) num } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:45385: \"$ac_link\"") >&5 +if { (eval echo "$as_me:45934: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:45388: \$? = $ac_status" >&5 + echo "$as_me:45937: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:45391: \"$ac_try\"") >&5 + { (eval echo "$as_me:45940: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:45394: \$? = $ac_status" >&5 + echo "$as_me:45943: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_xt_ice_compat=yes else @@ -45401,7 +45950,7 @@ cf_cv_xt_ice_compat=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:45404: result: $cf_cv_xt_ice_compat" >&5 +echo "$as_me:45953: result: $cf_cv_xt_ice_compat" >&5 echo "${ECHO_T}$cf_cv_xt_ice_compat" >&6 if test "$cf_cv_xt_ice_compat" = no @@ -45415,22 +45964,22 @@ echo "${ECHO_T}$cf_cv_xt_ice_compat" >&6 (*) test -n "$verbose" && echo " work around broken ICE dependency" 1>&6 -echo "${as_me:-configure}:45418: testing work around broken ICE dependency ..." 1>&5 +echo "${as_me:-configure}:45967: testing work around broken ICE dependency ..." 1>&5 if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists "ice"; then test -n "$verbose" && echo " found package ice" 1>&6 -echo "${as_me:-configure}:45423: testing found package ice ..." 1>&5 +echo "${as_me:-configure}:45972: testing found package ice ..." 1>&5 cf_pkgconfig_incs="`$PKG_CONFIG --cflags "ice" 2>/dev/null`" cf_pkgconfig_libs="`$PKG_CONFIG --libs "ice" 2>/dev/null`" test -n "$verbose" && echo " package ice CFLAGS: $cf_pkgconfig_incs" 1>&6 -echo "${as_me:-configure}:45429: testing package ice CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:45978: testing package ice CFLAGS: $cf_pkgconfig_incs ..." 1>&5 test -n "$verbose" && echo " package ice LIBS: $cf_pkgconfig_libs" 1>&6 -echo "${as_me:-configure}:45433: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:45982: testing package ice LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -45549,17 +46098,17 @@ LIBS="$cf_add_libs" if test "$PKG_CONFIG" != none && "$PKG_CONFIG" --exists "sm"; then test -n "$verbose" && echo " found package sm" 1>&6 -echo "${as_me:-configure}:45552: testing found package sm ..." 1>&5 +echo "${as_me:-configure}:46101: testing found package sm ..." 1>&5 cf_pkgconfig_incs="`$PKG_CONFIG --cflags "sm" 2>/dev/null`" cf_pkgconfig_libs="`$PKG_CONFIG --libs "sm" 2>/dev/null`" test -n "$verbose" && echo " package sm CFLAGS: $cf_pkgconfig_incs" 1>&6 -echo "${as_me:-configure}:45558: testing package sm CFLAGS: $cf_pkgconfig_incs ..." 1>&5 +echo "${as_me:-configure}:46107: testing package sm CFLAGS: $cf_pkgconfig_incs ..." 1>&5 test -n "$verbose" && echo " package sm LIBS: $cf_pkgconfig_libs" 1>&6 -echo "${as_me:-configure}:45562: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5 +echo "${as_me:-configure}:46111: testing package sm LIBS: $cf_pkgconfig_libs ..." 1>&5 cf_fix_cppflags=no cf_new_cflags= @@ -45688,12 +46237,12 @@ else test -n "$verbose" && echo " ...before $LIBS" 1>&6 -echo "${as_me:-configure}:45691: testing ...before $LIBS ..." 1>&5 +echo "${as_me:-configure}:46240: testing ...before $LIBS ..." 1>&5 LIBS=`echo "$LIBS" | sed -e "s/[ ][ ]*/ /g" -e "s%-lXt %-lXt $X_PRE_LIBS %" -e 's% % %g'` test -n "$verbose" && echo " ...after $LIBS" 1>&6 -echo "${as_me:-configure}:45696: testing ...after $LIBS ..." 1>&5 +echo "${as_me:-configure}:46245: testing ...after $LIBS ..." 1>&5 fi @@ -45713,7 +46262,7 @@ else test -n "$verbose" && echo " checking additions to CFLAGS" 1>&6 -echo "${as_me:-configure}:45716: testing checking additions to CFLAGS ..." 1>&5 +echo "${as_me:-configure}:46265: testing checking additions to CFLAGS ..." 1>&5 cf_check_cflags="$CFLAGS" cf_check_cppflags="$CPPFLAGS" @@ -45798,7 +46347,7 @@ done if test -n "$cf_new_cflags" ; then test -n "$verbose" && echo " add to \$CFLAGS $cf_new_cflags" 1>&6 -echo "${as_me:-configure}:45801: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 +echo "${as_me:-configure}:46350: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 test -n "$CFLAGS" && CFLAGS="$CFLAGS " CFLAGS="${CFLAGS}$cf_new_cflags" @@ -45808,7 +46357,7 @@ fi if test -n "$cf_new_cppflags" ; then test -n "$verbose" && echo " add to \$CPPFLAGS $cf_new_cppflags" 1>&6 -echo "${as_me:-configure}:45811: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 +echo "${as_me:-configure}:46360: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS " CPPFLAGS="${CPPFLAGS}$cf_new_cppflags" @@ -45818,7 +46367,7 @@ fi if test -n "$cf_new_extra_cppflags" ; then test -n "$verbose" && echo " add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags" 1>&6 -echo "${as_me:-configure}:45821: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 +echo "${as_me:-configure}:46370: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 test -n "$EXTRA_CPPFLAGS" && EXTRA_CPPFLAGS="$EXTRA_CPPFLAGS " EXTRA_CPPFLAGS="${EXTRA_CPPFLAGS}$cf_new_extra_cppflags" @@ -45827,7 +46376,7 @@ fi if test "x$cf_check_cflags" != "x$CFLAGS" ; then cat >"conftest.$ac_ext" <<_ACEOF -#line 45830 "configure" +#line 46379 "configure" #include "confdefs.h" #include <stdio.h> int @@ -45839,16 +46388,16 @@ printf("Hello world"); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:45842: \"$ac_link\"") >&5 +if { (eval echo "$as_me:46391: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:45845: \$? = $ac_status" >&5 + echo "$as_me:46394: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:45848: \"$ac_try\"") >&5 + { (eval echo "$as_me:46397: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:45851: \$? = $ac_status" >&5 + echo "$as_me:46400: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -45856,12 +46405,12 @@ else cat "conftest.$ac_ext" >&5 test -n "$verbose" && echo " test-compile failed. Undoing change to \$CFLAGS" 1>&6 -echo "${as_me:-configure}:45859: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 +echo "${as_me:-configure}:46408: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 if test "x$cf_check_cppflags" != "x$CPPFLAGS" ; then test -n "$verbose" && echo " but keeping change to \$CPPFLAGS" 1>&6 -echo "${as_me:-configure}:45864: testing but keeping change to \$CPPFLAGS ..." 1>&5 +echo "${as_me:-configure}:46413: testing but keeping change to \$CPPFLAGS ..." 1>&5 fi CFLAGS="$cf_check_cflags" @@ -45869,13 +46418,13 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi - echo "$as_me:45872: checking for XOpenDisplay" >&5 + echo "$as_me:46421: 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 45878 "configure" +#line 46427 "configure" #include "confdefs.h" #define XOpenDisplay autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -45906,16 +46455,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:45909: \"$ac_link\"") >&5 +if { (eval echo "$as_me:46458: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:45912: \$? = $ac_status" >&5 + echo "$as_me:46461: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:45915: \"$ac_try\"") >&5 + { (eval echo "$as_me:46464: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:45918: \$? = $ac_status" >&5 + echo "$as_me:46467: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_XOpenDisplay=yes else @@ -45925,13 +46474,13 @@ ac_cv_func_XOpenDisplay=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:45928: result: $ac_cv_func_XOpenDisplay" >&5 +echo "$as_me:46477: 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:45934: checking for XOpenDisplay in -lX11" >&5 + echo "$as_me:46483: 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 @@ -45939,7 +46488,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lX11 $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 45942 "configure" +#line 46491 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -45958,16 +46507,16 @@ XOpenDisplay (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:45961: \"$ac_link\"") >&5 +if { (eval echo "$as_me:46510: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:45964: \$? = $ac_status" >&5 + echo "$as_me:46513: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:45967: \"$ac_try\"") >&5 + { (eval echo "$as_me:46516: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:45970: \$? = $ac_status" >&5 + echo "$as_me:46519: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_X11_XOpenDisplay=yes else @@ -45978,7 +46527,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:45981: result: $ac_cv_lib_X11_XOpenDisplay" >&5 +echo "$as_me:46530: 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 @@ -46002,13 +46551,13 @@ fi fi - echo "$as_me:46005: checking for XtAppInitialize" >&5 + echo "$as_me:46554: 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 46011 "configure" +#line 46560 "configure" #include "confdefs.h" #define XtAppInitialize autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -46039,16 +46588,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:46042: \"$ac_link\"") >&5 +if { (eval echo "$as_me:46591: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:46045: \$? = $ac_status" >&5 + echo "$as_me:46594: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:46048: \"$ac_try\"") >&5 + { (eval echo "$as_me:46597: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46051: \$? = $ac_status" >&5 + echo "$as_me:46600: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_func_XtAppInitialize=yes else @@ -46058,13 +46607,13 @@ ac_cv_func_XtAppInitialize=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:46061: result: $ac_cv_func_XtAppInitialize" >&5 +echo "$as_me:46610: 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:46067: checking for XtAppInitialize in -lXt" >&5 + echo "$as_me:46616: 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 @@ -46072,7 +46621,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lXt $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 46075 "configure" +#line 46624 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -46091,16 +46640,16 @@ XtAppInitialize (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:46094: \"$ac_link\"") >&5 +if { (eval echo "$as_me:46643: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:46097: \$? = $ac_status" >&5 + echo "$as_me:46646: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:46100: \"$ac_try\"") >&5 + { (eval echo "$as_me:46649: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46103: \$? = $ac_status" >&5 + echo "$as_me:46652: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_Xt_XtAppInitialize=yes else @@ -46111,7 +46660,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:46114: result: $ac_cv_lib_Xt_XtAppInitialize" >&5 +echo "$as_me:46663: 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 @@ -46128,7 +46677,7 @@ fi fi if test "$cf_have_X_LIBS" = no ; then - { echo "$as_me:46131: WARNING: Unable to successfully link X Toolkit library (-lXt) with + { echo "$as_me:46680: 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 @@ -46169,14 +46718,14 @@ done test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS " CPPFLAGS="${CPPFLAGS}-I$cf_path/include" - echo "$as_me:46172: checking for $cf_test in $cf_path" >&5 + echo "$as_me:46721: 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:46175: checking for $cf_test" >&5 + echo "$as_me:46724: checking for $cf_test" >&5 echo $ECHO_N "checking for $cf_test... $ECHO_C" >&6 fi cat >"conftest.$ac_ext" <<_ACEOF -#line 46179 "configure" +#line 46728 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> @@ -46190,16 +46739,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:46193: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:46742: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:46196: \$? = $ac_status" >&5 + echo "$as_me:46745: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:46199: \"$ac_try\"") >&5 + { (eval echo "$as_me:46748: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46202: \$? = $ac_status" >&5 + echo "$as_me:46751: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_result=yes else @@ -46208,7 +46757,7 @@ cat "conftest.$ac_ext" >&5 cf_result=no fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" - echo "$as_me:46211: result: $cf_result" >&5 + echo "$as_me:46760: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 LIBS="$cf_save_LIBS_CF_X_ATHENA_CPPFLAGS" @@ -46224,7 +46773,7 @@ CPPFLAGS="$cf_save_CPPFLAGS_CF_X_ATHENA_CPPFLAGS" done if test -z "$cf_x_athena_inc" ; then - { echo "$as_me:46227: WARNING: Unable to find Athena header files" >&5 + { echo "$as_me:46776: WARNING: Unable to find Athena header files" >&5 echo "$as_me: WARNING: Unable to find Athena header files" >&2;} elif test "$cf_x_athena_inc" != default ; then @@ -46289,10 +46838,10 @@ for cf_add_1lib in $cf_add_0lib; do done LIBS="$cf_add_libs" - echo "$as_me:46292: checking for $cf_test in $cf_libs" >&5 + echo "$as_me:46841: checking for $cf_test in $cf_libs" >&5 echo $ECHO_N "checking for $cf_test in $cf_libs... $ECHO_C" >&6 cat >"conftest.$ac_ext" <<_ACEOF -#line 46295 "configure" +#line 46844 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> @@ -46308,16 +46857,16 @@ $cf_test((XtAppContext) 0) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:46311: \"$ac_link\"") >&5 +if { (eval echo "$as_me:46860: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:46314: \$? = $ac_status" >&5 + echo "$as_me:46863: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:46317: \"$ac_try\"") >&5 + { (eval echo "$as_me:46866: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46320: \$? = $ac_status" >&5 + echo "$as_me:46869: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_result=yes else @@ -46326,7 +46875,7 @@ cat "conftest.$ac_ext" >&5 cf_result=no fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" - echo "$as_me:46329: result: $cf_result" >&5 + echo "$as_me:46878: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 LIBS="$cf_save_LIBS_CF_X_ATHENA_LIBS" @@ -46343,7 +46892,7 @@ CPPFLAGS="$cf_save_CPPFLAGS_CF_X_ATHENA_LIBS" done if test -z "$cf_x_athena_lib" ; then - { { echo "$as_me:46346: error: Unable to successfully link Athena library (-l$cf_x_athena_root) with test program" >&5 + { { echo "$as_me:46895: 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 @@ -46377,7 +46926,7 @@ if test -n "$ac_tool_prefix"; then do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 -echo "$as_me:46380: checking for $ac_word" >&5 +echo "$as_me:46929: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_XCURSES_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -46392,7 +46941,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_XCURSES_CONFIG="$ac_tool_prefix$ac_prog" -echo "$as_me:46395: found $ac_dir/$ac_word" >&5 +echo "$as_me:46944: found $ac_dir/$ac_word" >&5 break done @@ -46400,10 +46949,10 @@ fi fi XCURSES_CONFIG=$ac_cv_prog_XCURSES_CONFIG if test -n "$XCURSES_CONFIG"; then - echo "$as_me:46403: result: $XCURSES_CONFIG" >&5 + echo "$as_me:46952: result: $XCURSES_CONFIG" >&5 echo "${ECHO_T}$XCURSES_CONFIG" >&6 else - echo "$as_me:46406: result: no" >&5 + echo "$as_me:46955: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -46416,7 +46965,7 @@ if test -z "$XCURSES_CONFIG"; then do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:46419: checking for $ac_word" >&5 +echo "$as_me:46968: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_XCURSES_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -46431,7 +46980,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_XCURSES_CONFIG="$ac_prog" -echo "$as_me:46434: found $ac_dir/$ac_word" >&5 +echo "$as_me:46983: found $ac_dir/$ac_word" >&5 break done @@ -46439,10 +46988,10 @@ fi fi ac_ct_XCURSES_CONFIG=$ac_cv_prog_ac_ct_XCURSES_CONFIG if test -n "$ac_ct_XCURSES_CONFIG"; then - echo "$as_me:46442: result: $ac_ct_XCURSES_CONFIG" >&5 + echo "$as_me:46991: result: $ac_ct_XCURSES_CONFIG" >&5 echo "${ECHO_T}$ac_ct_XCURSES_CONFIG" >&6 else - echo "$as_me:46445: result: no" >&5 + echo "$as_me:46994: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -46577,7 +47126,7 @@ LDFLAGS="$LDFLAGS $X_LIBS" test -n "$verbose" && echo " checking additions to CFLAGS" 1>&6 -echo "${as_me:-configure}:46580: testing checking additions to CFLAGS ..." 1>&5 +echo "${as_me:-configure}:47129: testing checking additions to CFLAGS ..." 1>&5 cf_check_cflags="$CFLAGS" cf_check_cppflags="$CPPFLAGS" @@ -46662,7 +47211,7 @@ done if test -n "$cf_new_cflags" ; then test -n "$verbose" && echo " add to \$CFLAGS $cf_new_cflags" 1>&6 -echo "${as_me:-configure}:46665: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 +echo "${as_me:-configure}:47214: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 test -n "$CFLAGS" && CFLAGS="$CFLAGS " CFLAGS="${CFLAGS}$cf_new_cflags" @@ -46672,7 +47221,7 @@ fi if test -n "$cf_new_cppflags" ; then test -n "$verbose" && echo " add to \$CPPFLAGS $cf_new_cppflags" 1>&6 -echo "${as_me:-configure}:46675: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 +echo "${as_me:-configure}:47224: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 test -n "$CPPFLAGS" && CPPFLAGS="$CPPFLAGS " CPPFLAGS="${CPPFLAGS}$cf_new_cppflags" @@ -46682,7 +47231,7 @@ fi if test -n "$cf_new_extra_cppflags" ; then test -n "$verbose" && echo " add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags" 1>&6 -echo "${as_me:-configure}:46685: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 +echo "${as_me:-configure}:47234: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 test -n "$EXTRA_CPPFLAGS" && EXTRA_CPPFLAGS="$EXTRA_CPPFLAGS " EXTRA_CPPFLAGS="${EXTRA_CPPFLAGS}$cf_new_extra_cppflags" @@ -46691,7 +47240,7 @@ fi if test "x$cf_check_cflags" != "x$CFLAGS" ; then cat >"conftest.$ac_ext" <<_ACEOF -#line 46694 "configure" +#line 47243 "configure" #include "confdefs.h" #include <stdio.h> int @@ -46703,16 +47252,16 @@ printf("Hello world"); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:46706: \"$ac_link\"") >&5 +if { (eval echo "$as_me:47255: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:46709: \$? = $ac_status" >&5 + echo "$as_me:47258: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:46712: \"$ac_try\"") >&5 + { (eval echo "$as_me:47261: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46715: \$? = $ac_status" >&5 + echo "$as_me:47264: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then : else @@ -46720,12 +47269,12 @@ else cat "conftest.$ac_ext" >&5 test -n "$verbose" && echo " test-compile failed. Undoing change to \$CFLAGS" 1>&6 -echo "${as_me:-configure}:46723: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 +echo "${as_me:-configure}:47272: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 if test "x$cf_check_cppflags" != "x$CPPFLAGS" ; then test -n "$verbose" && echo " but keeping change to \$CPPFLAGS" 1>&6 -echo "${as_me:-configure}:46728: testing but keeping change to \$CPPFLAGS ..." 1>&5 +echo "${as_me:-configure}:47277: testing but keeping change to \$CPPFLAGS ..." 1>&5 fi CFLAGS="$cf_check_cflags" @@ -46733,7 +47282,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:46736: checking for XOpenDisplay in -lX11" >&5 +echo "$as_me:47285: 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 @@ -46741,7 +47290,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lX11 $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS" cat >"conftest.$ac_ext" <<_ACEOF -#line 46744 "configure" +#line 47293 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -46760,16 +47309,16 @@ XOpenDisplay (); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:46763: \"$ac_link\"") >&5 +if { (eval echo "$as_me:47312: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:46766: \$? = $ac_status" >&5 + echo "$as_me:47315: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:46769: \"$ac_try\"") >&5 + { (eval echo "$as_me:47318: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46772: \$? = $ac_status" >&5 + echo "$as_me:47321: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then ac_cv_lib_X11_XOpenDisplay=yes else @@ -46780,7 +47329,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:46783: result: $ac_cv_lib_X11_XOpenDisplay" >&5 +echo "$as_me:47332: 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 @@ -46802,7 +47351,7 @@ LIBS="$cf_add_libs" fi -echo "$as_me:46805: checking for XCurses library" >&5 +echo "$as_me:47354: 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 @@ -46825,7 +47374,7 @@ done LIBS="$cf_add_libs" cat >"conftest.$ac_ext" <<_ACEOF -#line 46828 "configure" +#line 47377 "configure" #include "confdefs.h" #include <xcurses.h> @@ -46840,16 +47389,16 @@ XCursesExit(); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:46843: \"$ac_link\"") >&5 +if { (eval echo "$as_me:47392: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:46846: \$? = $ac_status" >&5 + echo "$as_me:47395: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:46849: \"$ac_try\"") >&5 + { (eval echo "$as_me:47398: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46852: \$? = $ac_status" >&5 + echo "$as_me:47401: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_lib_XCurses=yes else @@ -46860,7 +47409,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:46863: result: $cf_cv_lib_XCurses" >&5 +echo "$as_me:47412: result: $cf_cv_lib_XCurses" >&5 echo "${ECHO_T}$cf_cv_lib_XCurses" >&6 fi @@ -46875,23 +47424,23 @@ cat >>confdefs.h <<\EOF #define XCURSES 1 EOF - echo "$as_me:46878: checking for xcurses.h" >&5 + echo "$as_me:47427: checking for xcurses.h" >&5 echo $ECHO_N "checking for xcurses.h... $ECHO_C" >&6 if test "${ac_cv_header_xcurses_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >"conftest.$ac_ext" <<_ACEOF -#line 46884 "configure" +#line 47433 "configure" #include "confdefs.h" #include <xcurses.h> _ACEOF -if { (eval echo "$as_me:46888: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:47437: \"$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:46894: \$? = $ac_status" >&5 + echo "$as_me:47443: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -46910,7 +47459,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:46913: result: $ac_cv_header_xcurses_h" >&5 +echo "$as_me:47462: result: $ac_cv_header_xcurses_h" >&5 echo "${ECHO_T}$ac_cv_header_xcurses_h" >&6 if test "$ac_cv_header_xcurses_h" = yes; then @@ -46921,7 +47470,7 @@ EOF fi else - { { echo "$as_me:46924: error: Cannot link with XCurses" >&5 + { { echo "$as_me:47473: error: Cannot link with XCurses" >&5 echo "$as_me: error: Cannot link with XCurses" >&2;} { (exit 1); exit 1; }; } fi @@ -46930,7 +47479,7 @@ fi esac else -echo "$as_me:46933: checking if we can include termio.h with curses" >&5 +echo "$as_me:47482: 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 @@ -46940,7 +47489,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 46943 "configure" +#line 47492 "configure" #include "confdefs.h" #include <LYCurses.h> @@ -46954,16 +47503,16 @@ putchar(0x0a) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:46957: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:47506: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:46960: \$? = $ac_status" >&5 + echo "$as_me:47509: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:46963: \"$ac_try\"") >&5 + { (eval echo "$as_me:47512: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:46966: \$? = $ac_status" >&5 + echo "$as_me:47515: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_termio_and_curses=yes else @@ -46976,7 +47525,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" rm -f lynx_cfg.h fi -echo "$as_me:46979: result: $cf_cv_termio_and_curses" >&5 +echo "$as_me:47528: result: $cf_cv_termio_and_curses" >&5 echo "${ECHO_T}$cf_cv_termio_and_curses" >&6 test "$cf_cv_termio_and_curses" = yes && @@ -46993,23 +47542,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:46996: checking for $ac_header" >&5 +echo "$as_me:47545: 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 47002 "configure" +#line 47551 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:47006: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:47555: \"$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:47012: \$? = $ac_status" >&5 + echo "$as_me:47561: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -47028,7 +47577,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:47031: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:47580: 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 @@ -47040,7 +47589,7 @@ done fi -echo "$as_me:47043: checking if curses supports alternate-character set" >&5 +echo "$as_me:47592: 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 @@ -47049,7 +47598,7 @@ else for mapname in acs_map _acs_map do cat >"conftest.$ac_ext" <<_ACEOF -#line 47052 "configure" +#line 47601 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -47063,16 +47612,16 @@ chtype x = ${mapname}['l']; ${mapname}['m'] = 0; (void)x } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:47066: \"$ac_link\"") >&5 +if { (eval echo "$as_me:47615: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:47069: \$? = $ac_status" >&5 + echo "$as_me:47618: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:47072: \"$ac_try\"") >&5 + { (eval echo "$as_me:47621: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:47075: \$? = $ac_status" >&5 + echo "$as_me:47624: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_alt_char_set=$mapname break @@ -47086,21 +47635,21 @@ done fi -echo "$as_me:47089: result: $cf_cv_alt_char_set" >&5 +echo "$as_me:47638: 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:47096: checking if curses supports fancy attributes" >&5 +echo "$as_me:47645: 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 47103 "configure" +#line 47652 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -47118,16 +47667,16 @@ attrset(A_UNDERLINE|A_BOLD|A_REVERSE); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:47121: \"$ac_link\"") >&5 +if { (eval echo "$as_me:47670: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:47124: \$? = $ac_status" >&5 + echo "$as_me:47673: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:47127: \"$ac_try\"") >&5 + { (eval echo "$as_me:47676: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:47130: \$? = $ac_status" >&5 + echo "$as_me:47679: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_fancy_curses=yes else @@ -47139,14 +47688,14 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:47142: result: $cf_cv_fancy_curses" >&5 +echo "$as_me:47691: 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:47149: checking for function curses_version" >&5 +echo "$as_me:47698: 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 @@ -47156,7 +47705,7 @@ if test "$cross_compiling" = yes; then cf_cv_func_curses_version=unknown else cat >"conftest.$ac_ext" <<_ACEOF -#line 47159 "configure" +#line 47708 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -47169,15 +47718,15 @@ int main(void) _ACEOF rm -f "conftest$ac_exeext" -if { (eval echo "$as_me:47172: \"$ac_link\"") >&5 +if { (eval echo "$as_me:47721: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:47175: \$? = $ac_status" >&5 + echo "$as_me:47724: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='"./conftest$ac_exeext"' - { (eval echo "$as_me:47177: \"$ac_try\"") >&5 + { (eval echo "$as_me:47726: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:47180: \$? = $ac_status" >&5 + echo "$as_me:47729: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_func_curses_version=yes @@ -47192,7 +47741,7 @@ rm -f core ./core.* ./*.core "conftest$ac_exeext" "conftest.$ac_objext" "conftes fi rm -f core fi -echo "$as_me:47195: result: $cf_cv_func_curses_version" >&5 +echo "$as_me:47744: 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 @@ -47200,14 +47749,14 @@ cat >>confdefs.h <<\EOF EOF if test "$cf_cv_ncurses_version" != no ; then -echo "$as_me:47203: checking for obsolete/broken version of ncurses" >&5 +echo "$as_me:47752: 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 47210 "configure" +#line 47759 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -47226,16 +47775,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:47229: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:47778: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:47232: \$? = $ac_status" >&5 + echo "$as_me:47781: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:47235: \"$ac_try\"") >&5 + { (eval echo "$as_me:47784: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:47238: \$? = $ac_status" >&5 + echo "$as_me:47787: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_ncurses_broken=no else @@ -47247,10 +47796,10 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:47250: result: $cf_cv_ncurses_broken" >&5 +echo "$as_me:47799: 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:47253: WARNING: hmm... you should get an up-to-date version of ncurses" >&5 + { echo "$as_me:47802: 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 @@ -47260,14 +47809,14 @@ EOF fi fi -echo "$as_me:47263: checking if curses supports color attributes" >&5 +echo "$as_me:47812: 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 47270 "configure" +#line 47819 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -47287,16 +47836,16 @@ chtype x = COLOR_BLUE; } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:47290: \"$ac_link\"") >&5 +if { (eval echo "$as_me:47839: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:47293: \$? = $ac_status" >&5 + echo "$as_me:47842: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:47296: \"$ac_try\"") >&5 + { (eval echo "$as_me:47845: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:47299: \$? = $ac_status" >&5 + echo "$as_me:47848: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_color_curses=yes else @@ -47308,7 +47857,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:47311: result: $cf_cv_color_curses" >&5 +echo "$as_me:47860: result: $cf_cv_color_curses" >&5 echo "${ECHO_T}$cf_cv_color_curses" >&6 if test "$cf_cv_color_curses" = yes ; then @@ -47332,23 +47881,23 @@ sys/termio.h \ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:47335: checking for $ac_header" >&5 +echo "$as_me:47884: 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 47341 "configure" +#line 47890 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:47345: \"$ac_cpp "conftest.$ac_ext"\"") >&5 +if { (eval echo "$as_me:47894: \"$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:47351: \$? = $ac_status" >&5 + echo "$as_me:47900: \$? = $ac_status" >&5 (exit "$ac_status"); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -47367,7 +47916,7 @@ else fi rm -f conftest.err "conftest.$ac_ext" fi -echo "$as_me:47370: result: `eval echo '${'"$as_ac_Header"'}'`" >&5 +echo "$as_me:47919: 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 @@ -47384,10 +47933,10 @@ if test "$ac_cv_header_termios_h" = yes ; then (*) termios_bad=maybe ;; esac if test "$termios_bad" = maybe ; then - echo "$as_me:47387: checking whether termios.h needs _POSIX_SOURCE" >&5 + echo "$as_me:47936: 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 47390 "configure" +#line 47939 "configure" #include "confdefs.h" #include <termios.h> int @@ -47399,16 +47948,16 @@ struct termios foo; int x = foo.c_iflag = 1; (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:47402: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:47951: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:47405: \$? = $ac_status" >&5 + echo "$as_me:47954: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:47408: \"$ac_try\"") >&5 + { (eval echo "$as_me:47957: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:47411: \$? = $ac_status" >&5 + echo "$as_me:47960: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then termios_bad=no else @@ -47416,7 +47965,7 @@ else cat "conftest.$ac_ext" >&5 cat >"conftest.$ac_ext" <<_ACEOF -#line 47419 "configure" +#line 47968 "configure" #include "confdefs.h" #define _POSIX_SOURCE @@ -47430,16 +47979,16 @@ struct termios foo; int x = foo.c_iflag = 2; (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:47433: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:47982: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:47436: \$? = $ac_status" >&5 + echo "$as_me:47985: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:47439: \"$ac_try\"") >&5 + { (eval echo "$as_me:47988: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:47442: \$? = $ac_status" >&5 + echo "$as_me:47991: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then termios_bad=unknown else @@ -47455,12 +48004,12 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" - echo "$as_me:47458: result: $termios_bad" >&5 + echo "$as_me:48007: result: $termios_bad" >&5 echo "${ECHO_T}$termios_bad" >&6 fi fi -echo "$as_me:47463: checking declaration of size-change" >&5 +echo "$as_me:48012: 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 @@ -47481,7 +48030,7 @@ do fi cat >"conftest.$ac_ext" <<_ACEOF -#line 47484 "configure" +#line 48033 "configure" #include "confdefs.h" #include <sys/types.h> #ifdef HAVE_TERMIOS_H @@ -47531,16 +48080,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:47534: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:48083: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:47537: \$? = $ac_status" >&5 + echo "$as_me:48086: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:47540: \"$ac_try\"") >&5 + { (eval echo "$as_me:48089: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:47543: \$? = $ac_status" >&5 + echo "$as_me:48092: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_sizechange=yes else @@ -47559,7 +48108,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" done fi -echo "$as_me:47562: result: $cf_cv_sizechange" >&5 +echo "$as_me:48111: result: $cf_cv_sizechange" >&5 echo "${ECHO_T}$cf_cv_sizechange" >&6 if test "$cf_cv_sizechange" != no ; then @@ -47577,14 +48126,14 @@ EOF esac fi -echo "$as_me:47580: checking if ttytype is declared in curses library" >&5 +echo "$as_me:48129: 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 47587 "configure" +#line 48136 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> int @@ -47596,16 +48145,16 @@ char *x = &ttytype[1]; *x = 1 } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:47599: \"$ac_link\"") >&5 +if { (eval echo "$as_me:48148: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:47602: \$? = $ac_status" >&5 + echo "$as_me:48151: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:47605: \"$ac_try\"") >&5 + { (eval echo "$as_me:48154: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:47608: \$? = $ac_status" >&5 + echo "$as_me:48157: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_have_ttytype=yes else @@ -47617,7 +48166,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:47620: result: $cf_cv_have_ttytype" >&5 +echo "$as_me:48169: result: $cf_cv_have_ttytype" >&5 echo "${ECHO_T}$cf_cv_have_ttytype" >&6 test "$cf_cv_have_ttytype" = yes && cat >>confdefs.h <<\EOF @@ -47626,14 +48175,14 @@ EOF if test "$use_wide_curses" = yes ; then -echo "$as_me:47629: checking if curses supports wide characters" >&5 +echo "$as_me:48178: 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 47636 "configure" +#line 48185 "configure" #include "confdefs.h" #include <stdlib.h> @@ -47652,16 +48201,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:47655: \"$ac_link\"") >&5 +if { (eval echo "$as_me:48204: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:47658: \$? = $ac_status" >&5 + echo "$as_me:48207: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:47661: \"$ac_try\"") >&5 + { (eval echo "$as_me:48210: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:47664: \$? = $ac_status" >&5 + echo "$as_me:48213: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_widec_curses=yes else @@ -47672,7 +48221,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:47675: result: $cf_cv_widec_curses" >&5 +echo "$as_me:48224: result: $cf_cv_widec_curses" >&5 echo "${ECHO_T}$cf_cv_widec_curses" >&6 if test "$cf_cv_widec_curses" = yes ; then @@ -47682,14 +48231,14 @@ cat >>confdefs.h <<\EOF EOF # This is needed on Tru64 5.0 to declare mbstate_t - echo "$as_me:47685: checking if we must include wchar.h to declare mbstate_t" >&5 + echo "$as_me:48234: 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 47692 "configure" +#line 48241 "configure" #include "confdefs.h" #include <stdlib.h> @@ -47703,23 +48252,23 @@ mbstate_t state; (void)state } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:47706: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:48255: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:47709: \$? = $ac_status" >&5 + echo "$as_me:48258: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:47712: \"$ac_try\"") >&5 + { (eval echo "$as_me:48261: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:47715: \$? = $ac_status" >&5 + echo "$as_me:48264: \$? = $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 47722 "configure" +#line 48271 "configure" #include "confdefs.h" #include <stdlib.h> @@ -47734,16 +48283,16 @@ mbstate_t state; (void)state } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:47737: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:48286: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:47740: \$? = $ac_status" >&5 + echo "$as_me:48289: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:47743: \"$ac_try\"") >&5 + { (eval echo "$as_me:48292: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:47746: \$? = $ac_status" >&5 + echo "$as_me:48295: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_widec_mbstate=yes else @@ -47755,7 +48304,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi rm -f "conftest.$ac_objext" "conftest.$ac_ext" fi -echo "$as_me:47758: result: $cf_cv_widec_mbstate" >&5 +echo "$as_me:48307: result: $cf_cv_widec_mbstate" >&5 echo "${ECHO_T}$cf_cv_widec_mbstate" >&6 if test "$cf_cv_widec_mbstate" = yes ; then @@ -47778,7 +48327,7 @@ fi fi -echo "$as_me:47781: checking definition to turn on extended curses functions" >&5 +echo "$as_me:48330: checking definition to turn on extended curses functions" >&5 echo $ECHO_N "checking definition to turn on extended curses functions... $ECHO_C" >&6 if test "${cf_cv_need_xopen_extension+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -47786,7 +48335,7 @@ else cf_cv_need_xopen_extension=unknown cat >"conftest.$ac_ext" <<_ACEOF -#line 47789 "configure" +#line 48338 "configure" #include "confdefs.h" #include <stdlib.h> @@ -47819,16 +48368,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:47822: \"$ac_link\"") >&5 +if { (eval echo "$as_me:48371: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:47825: \$? = $ac_status" >&5 + echo "$as_me:48374: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:47828: \"$ac_try\"") >&5 + { (eval echo "$as_me:48377: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:47831: \$? = $ac_status" >&5 + echo "$as_me:48380: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_need_xopen_extension=none else @@ -47838,7 +48387,7 @@ cat "conftest.$ac_ext" >&5 for cf_try_xopen_extension in _XOPEN_SOURCE_EXTENDED NCURSES_WIDECHAR do cat >"conftest.$ac_ext" <<_ACEOF -#line 47841 "configure" +#line 48390 "configure" #include "confdefs.h" #define $cf_try_xopen_extension 1 @@ -47867,16 +48416,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:47870: \"$ac_link\"") >&5 +if { (eval echo "$as_me:48419: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:47873: \$? = $ac_status" >&5 + echo "$as_me:48422: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:47876: \"$ac_try\"") >&5 + { (eval echo "$as_me:48425: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:47879: \$? = $ac_status" >&5 + echo "$as_me:48428: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_need_xopen_extension=$cf_try_xopen_extension; break else @@ -47890,7 +48439,7 @@ fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:47893: result: $cf_cv_need_xopen_extension" >&5 +echo "$as_me:48442: result: $cf_cv_need_xopen_extension" >&5 echo "${ECHO_T}$cf_cv_need_xopen_extension" >&6 case "$cf_cv_need_xopen_extension" in @@ -47902,7 +48451,7 @@ case "$cf_cv_need_xopen_extension" in ;; esac -echo "$as_me:47905: checking for term.h" >&5 +echo "$as_me:48454: 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 @@ -47923,7 +48472,7 @@ esac for cf_header in $cf_header_list do cat >"conftest.$ac_ext" <<_ACEOF -#line 47926 "configure" +#line 48475 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -47937,16 +48486,16 @@ WINDOW *x; (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:47940: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:48489: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:47943: \$? = $ac_status" >&5 + echo "$as_me:48492: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:47946: \"$ac_try\"") >&5 + { (eval echo "$as_me:48495: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:47949: \$? = $ac_status" >&5 + echo "$as_me:48498: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_term_header=$cf_header break @@ -47965,7 +48514,7 @@ case "$cf_cv_term_header" in for cf_header in ncurses/term.h ncursesw/term.h do cat >"conftest.$ac_ext" <<_ACEOF -#line 47968 "configure" +#line 48517 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -47983,16 +48532,16 @@ WINDOW *x; (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:47986: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:48535: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:47989: \$? = $ac_status" >&5 + echo "$as_me:48538: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:47992: \"$ac_try\"") >&5 + { (eval echo "$as_me:48541: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:47995: \$? = $ac_status" >&5 + echo "$as_me:48544: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_term_header=$cf_header break @@ -48007,7 +48556,7 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" esac fi -echo "$as_me:48010: result: $cf_cv_term_header" >&5 +echo "$as_me:48559: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 case "$cf_cv_term_header" in @@ -48034,7 +48583,7 @@ EOF ;; esac -echo "$as_me:48037: checking for unctrl.h" >&5 +echo "$as_me:48586: checking for unctrl.h" >&5 echo $ECHO_N "checking for unctrl.h... $ECHO_C" >&6 if test "${cf_cv_unctrl_header+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -48055,7 +48604,7 @@ esac for cf_header in $cf_header_list do cat >"conftest.$ac_ext" <<_ACEOF -#line 48058 "configure" +#line 48607 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header:-curses.h}> @@ -48069,16 +48618,16 @@ WINDOW *x; (void)x } _ACEOF rm -f "conftest.$ac_objext" -if { (eval echo "$as_me:48072: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:48621: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:48075: \$? = $ac_status" >&5 + echo "$as_me:48624: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest.$ac_objext"' - { (eval echo "$as_me:48078: \"$ac_try\"") >&5 + { (eval echo "$as_me:48627: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:48081: \$? = $ac_status" >&5 + echo "$as_me:48630: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_cv_unctrl_header=$cf_header break @@ -48091,12 +48640,12 @@ rm -f "conftest.$ac_objext" "conftest.$ac_ext" done fi -echo "$as_me:48094: result: $cf_cv_unctrl_header" >&5 +echo "$as_me:48643: result: $cf_cv_unctrl_header" >&5 echo "${ECHO_T}$cf_cv_unctrl_header" >&6 case "$cf_cv_unctrl_header" in (no) - { echo "$as_me:48099: WARNING: unctrl.h header not found" >&5 + { echo "$as_me:48648: WARNING: unctrl.h header not found" >&5 echo "$as_me: WARNING: unctrl.h header not found" >&2;} ;; esac @@ -48152,10 +48701,10 @@ do cf_tr_func=`echo "$cf_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` - echo "$as_me:48155: checking for ${cf_func}" >&5 + echo "$as_me:48704: checking for ${cf_func}" >&5 echo $ECHO_N "checking for ${cf_func}... $ECHO_C" >&6 -echo "${as_me:-configure}:48158: testing ${cf_func} ..." 1>&5 +echo "${as_me:-configure}:48707: testing ${cf_func} ..." 1>&5 if eval "test \"\${cf_cv_func_$cf_func+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -48164,7 +48713,7 @@ else eval cf_result='$ac_cv_func_'$cf_func if test ".$cf_result" != ".no"; then cat >"conftest.$ac_ext" <<_ACEOF -#line 48167 "configure" +#line 48716 "configure" #include "confdefs.h" #ifdef HAVE_XCURSES @@ -48197,16 +48746,16 @@ if (foo + 1234L > 5678L) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:48200: \"$ac_link\"") >&5 +if { (eval echo "$as_me:48749: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:48203: \$? = $ac_status" >&5 + echo "$as_me:48752: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:48206: \"$ac_try\"") >&5 + { (eval echo "$as_me:48755: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:48209: \$? = $ac_status" >&5 + echo "$as_me:48758: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_result=yes else @@ -48222,7 +48771,7 @@ fi # use the computed/retrieved cache-value: eval 'cf_result=$cf_cv_func_'$cf_func - echo "$as_me:48225: result: $cf_result" >&5 + echo "$as_me:48774: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" != no; then cat >>confdefs.h <<EOF @@ -48239,13 +48788,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:48242: checking for $ac_func" >&5 +echo "$as_me:48791: 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 48248 "configure" +#line 48797 "configure" #include "confdefs.h" #define $ac_func autoconf_temporary #include <limits.h> /* least-intrusive standard header which defines gcc2 __stub macros */ @@ -48276,16 +48825,16 @@ main (void) } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:48279: \"$ac_link\"") >&5 +if { (eval echo "$as_me:48828: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:48282: \$? = $ac_status" >&5 + echo "$as_me:48831: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:48285: \"$ac_try\"") >&5 + { (eval echo "$as_me:48834: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:48288: \$? = $ac_status" >&5 + echo "$as_me:48837: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then eval "$as_ac_var=yes" else @@ -48295,7 +48844,7 @@ eval "$as_ac_var=no" fi rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" fi -echo "$as_me:48298: result: `eval echo '${'"$as_ac_var"'}'`" >&5 +echo "$as_me:48847: 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 @@ -48309,12 +48858,12 @@ fi if test "$use_color_style" != no ; then if test .$cf_cv_color_curses != .yes ; then - { { echo "$as_me:48312: error: Configuration does not support color-styles" >&5 + { { echo "$as_me:48861: 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:48317: error: Configuration does not support color-styles" >&5 + { { echo "$as_me:48866: error: Configuration does not support color-styles" >&5 echo "$as_me: error: Configuration does not support color-styles" >&2;} { (exit 1); exit 1; }; } fi @@ -48322,7 +48871,7 @@ fi if test "$use_scrollbar" != no ; then if test .$cf_cv_fancy_curses != .yes ; then - { echo "$as_me:48325: WARNING: Configuration does not support ACS_xxx definitions" >&5 + { echo "$as_me:48874: WARNING: Configuration does not support ACS_xxx definitions" >&5 echo "$as_me: WARNING: Configuration does not support ACS_xxx definitions" >&2;} else @@ -48335,7 +48884,7 @@ fi # use rpath for libraries in unusual places -echo "$as_me:48338: checking if rpath-hack should be disabled" >&5 +echo "$as_me:48887: checking if rpath-hack should be disabled" >&5 echo $ECHO_N "checking if rpath-hack should be disabled... $ECHO_C" >&6 # Check whether --enable-rpath-hack or --disable-rpath-hack was given. @@ -48353,22 +48902,22 @@ else fi; if test "x$enable_rpath_hack" = xno; then cf_disable_rpath_hack=yes; else cf_disable_rpath_hack=no; fi -echo "$as_me:48356: result: $cf_disable_rpath_hack" >&5 +echo "$as_me:48905: result: $cf_disable_rpath_hack" >&5 echo "${ECHO_T}$cf_disable_rpath_hack" >&6 if test "$enable_rpath_hack" = yes ; then -echo "$as_me:48361: checking for updated LDFLAGS" >&5 +echo "$as_me:48910: checking for updated LDFLAGS" >&5 echo $ECHO_N "checking for updated LDFLAGS... $ECHO_C" >&6 if test -n "$LD_RPATH_OPT" ; then - echo "$as_me:48364: result: maybe" >&5 + echo "$as_me:48913: result: maybe" >&5 echo "${ECHO_T}maybe" >&6 for ac_prog in ldd do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:48371: checking for $ac_word" >&5 +echo "$as_me:48920: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_cf_ldd_prog+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -48383,7 +48932,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_cf_ldd_prog="$ac_prog" -echo "$as_me:48386: found $ac_dir/$ac_word" >&5 +echo "$as_me:48935: found $ac_dir/$ac_word" >&5 break done @@ -48391,10 +48940,10 @@ fi fi cf_ldd_prog=$ac_cv_prog_cf_ldd_prog if test -n "$cf_ldd_prog"; then - echo "$as_me:48394: result: $cf_ldd_prog" >&5 + echo "$as_me:48943: result: $cf_ldd_prog" >&5 echo "${ECHO_T}$cf_ldd_prog" >&6 else - echo "$as_me:48397: result: no" >&5 + echo "$as_me:48946: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -48408,7 +48957,7 @@ test -n "$cf_ldd_prog" || cf_ldd_prog="no" cf_rpath_oops= cat >"conftest.$ac_ext" <<_ACEOF -#line 48411 "configure" +#line 48960 "configure" #include "confdefs.h" #include <stdio.h> int @@ -48420,16 +48969,16 @@ printf("Hello"); } _ACEOF rm -f "conftest.$ac_objext" "conftest$ac_exeext" -if { (eval echo "$as_me:48423: \"$ac_link\"") >&5 +if { (eval echo "$as_me:48972: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:48426: \$? = $ac_status" >&5 + echo "$as_me:48975: \$? = $ac_status" >&5 (exit "$ac_status"); } && { ac_try='test -s "conftest$ac_exeext"' - { (eval echo "$as_me:48429: \"$ac_try\"") >&5 + { (eval echo "$as_me:48978: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:48432: \$? = $ac_status" >&5 + echo "$as_me:48981: \$? = $ac_status" >&5 (exit "$ac_status"); }; }; then cf_rpath_oops=`"$cf_ldd_prog" "conftest$ac_exeext" | ${FGREP-fgrep} ' not found' | sed -e 's% =>.*$%%' |sort | uniq` cf_rpath_list=`"$cf_ldd_prog" "conftest$ac_exeext" | ${FGREP-fgrep} / | sed -e 's%^.*[ ]/%/%' -e 's%/[^/][^/]*$%%' |sort | uniq` @@ -48457,7 +49006,7 @@ rm -f "conftest.$ac_objext" "conftest$ac_exeext" "conftest.$ac_ext" then test -n "$verbose" && echo " ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src" 1>&6 -echo "${as_me:-configure}:48460: testing ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src ..." 1>&5 +echo "${as_me:-configure}:49009: testing ...adding -L$cf_rpath_dir/lib to LDFLAGS for $cf_rpath_src ..." 1>&5 LDFLAGS="$LDFLAGS -L$cf_rpath_dir/lib" break @@ -48469,11 +49018,11 @@ echo "${as_me:-configure}:48460: testing ...adding -L$cf_rpath_dir/lib to LDFLAG test -n "$verbose" && echo " ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS" 1>&6 -echo "${as_me:-configure}:48472: testing ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:49021: testing ...checking EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 test -n "$verbose" && echo " ...checking LDFLAGS $LDFLAGS" 1>&6 -echo "${as_me:-configure}:48476: testing ...checking LDFLAGS $LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:49025: testing ...checking LDFLAGS $LDFLAGS ..." 1>&5 cf_rpath_dst= for cf_rpath_src in $LDFLAGS @@ -48510,7 +49059,7 @@ do then test -n "$verbose" && echo " ...Filter $cf_rpath_src ->$cf_rpath_tmp" 1>&6 -echo "${as_me:-configure}:48513: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 +echo "${as_me:-configure}:49062: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS" fi @@ -48523,11 +49072,11 @@ LDFLAGS=$cf_rpath_dst test -n "$verbose" && echo " ...checked LDFLAGS $LDFLAGS" 1>&6 -echo "${as_me:-configure}:48526: testing ...checked LDFLAGS $LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:49075: testing ...checked LDFLAGS $LDFLAGS ..." 1>&5 test -n "$verbose" && echo " ...checking LIBS $LIBS" 1>&6 -echo "${as_me:-configure}:48530: testing ...checking LIBS $LIBS ..." 1>&5 +echo "${as_me:-configure}:49079: testing ...checking LIBS $LIBS ..." 1>&5 cf_rpath_dst= for cf_rpath_src in $LIBS @@ -48564,7 +49113,7 @@ do then test -n "$verbose" && echo " ...Filter $cf_rpath_src ->$cf_rpath_tmp" 1>&6 -echo "${as_me:-configure}:48567: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 +echo "${as_me:-configure}:49116: testing ...Filter $cf_rpath_src ->$cf_rpath_tmp ..." 1>&5 EXTRA_LDFLAGS="$cf_rpath_tmp $EXTRA_LDFLAGS" fi @@ -48577,14 +49126,14 @@ LIBS=$cf_rpath_dst test -n "$verbose" && echo " ...checked LIBS $LIBS" 1>&6 -echo "${as_me:-configure}:48580: testing ...checked LIBS $LIBS ..." 1>&5 +echo "${as_me:-configure}:49129: testing ...checked LIBS $LIBS ..." 1>&5 test -n "$verbose" && echo " ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS" 1>&6 -echo "${as_me:-configure}:48584: testing ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 +echo "${as_me:-configure}:49133: testing ...checked EXTRA_LDFLAGS $EXTRA_LDFLAGS ..." 1>&5 else - echo "$as_me:48587: result: no" >&5 + echo "$as_me:49136: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -48699,7 +49248,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:48702: creating $CONFIG_STATUS" >&5 +{ echo "$as_me:49251: creating $CONFIG_STATUS" >&5 echo "$as_me: creating $CONFIG_STATUS" >&6;} cat >"$CONFIG_STATUS" <<_ACEOF #! $SHELL @@ -48878,7 +49427,7 @@ cat >>"$CONFIG_STATUS" <<\EOF echo "$ac_cs_version"; exit 0 ;; --he | --h) # Conflict between --help and --header - { { echo "$as_me:48881: error: ambiguous option: $1 + { { echo "$as_me:49430: 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;} @@ -48897,7 +49446,7 @@ Try \`$0 --help' for more information." >&2;} ac_need_defaults=false;; # This is an error. - -*) { { echo "$as_me:48900: error: unrecognized option: $1 + -*) { { echo "$as_me:49449: 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;} @@ -48950,7 +49499,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:48953: error: invalid argument: $ac_config_target" >&5 + *) { { echo "$as_me:49502: error: invalid argument: $ac_config_target" >&5 echo "$as_me: error: invalid argument: $ac_config_target" >&2;} { (exit 1); exit 1; }; };; esac @@ -49312,7 +49861,7 @@ done; } esac if test x"$ac_file" != x-; then - { echo "$as_me:49315: creating $ac_file" >&5 + { echo "$as_me:49864: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} rm -f "$ac_file" fi @@ -49330,7 +49879,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:49333: error: cannot find input file: $f" >&5 + test -f "$f" || { { echo "$as_me:49882: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo $f;; @@ -49343,7 +49892,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;} echo "$srcdir/$f" else # /dev/null tree - { { echo "$as_me:49346: error: cannot find input file: $f" >&5 + { { echo "$as_me:49895: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; @@ -49359,7 +49908,7 @@ cat >>"$CONFIG_STATUS" <<\EOF if test -n "$ac_seen"; then ac_used=`grep '@datarootdir@' "$ac_item"` if test -z "$ac_used"; then - { echo "$as_me:49362: WARNING: datarootdir was used implicitly but not set: + { echo "$as_me:49911: WARNING: datarootdir was used implicitly but not set: $ac_seen" >&5 echo "$as_me: WARNING: datarootdir was used implicitly but not set: $ac_seen" >&2;} @@ -49368,7 +49917,7 @@ $ac_seen" >&2;} fi ac_seen=`grep '${datarootdir}' "$ac_item"` if test -n "$ac_seen"; then - { echo "$as_me:49371: WARNING: datarootdir was used explicitly but not set: + { echo "$as_me:49920: WARNING: datarootdir was used explicitly but not set: $ac_seen" >&5 echo "$as_me: WARNING: datarootdir was used explicitly but not set: $ac_seen" >&2;} @@ -49405,7 +49954,7 @@ s,@INSTALL@,$ac_INSTALL,;t t ac_init=`${EGREP-egrep} '[ ]*'$ac_name'[ ]*=' "$ac_file"` if test -z "$ac_init"; then ac_seen=`echo "$ac_seen" |sed -e 's,^,'$ac_file':,'` - { echo "$as_me:49408: WARNING: Variable $ac_name is used but was not set: + { echo "$as_me:49957: WARNING: Variable $ac_name is used but was not set: $ac_seen" >&5 echo "$as_me: WARNING: Variable $ac_name is used but was not set: $ac_seen" >&2;} @@ -49416,7 +49965,7 @@ $ac_seen" >&2;} ${EGREP-egrep} -n '@[A-Z_][A-Z_0-9]+@' "$ac_file" >>$tmp/out if test -s $tmp/out; then ac_seen=`sed -e 's,^,'$ac_file':,' < $tmp/out` - { echo "$as_me:49419: WARNING: Some variables may not be substituted: + { echo "$as_me:49968: WARNING: Some variables may not be substituted: $ac_seen" >&5 echo "$as_me: WARNING: Some variables may not be substituted: $ac_seen" >&2;} @@ -49465,7 +50014,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:49468: creating $ac_file" >&5 + test x"$ac_file" != x- && { echo "$as_me:50017: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} # First look for the input files in the build tree, otherwise in the @@ -49476,7 +50025,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:49479: error: cannot find input file: $f" >&5 + test -f "$f" || { { echo "$as_me:50028: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo $f;; @@ -49489,7 +50038,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;} echo "$srcdir/$f" else # /dev/null tree - { { echo "$as_me:49492: error: cannot find input file: $f" >&5 + { { echo "$as_me:50041: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; @@ -49607,7 +50156,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:49610: $ac_file is unchanged" >&5 + { echo "$as_me:50159: $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/lynx.cfg b/lynx.cfg index 0fce8287..a51f3384 100644 --- a/lynx.cfg +++ b/lynx.cfg @@ -1,4 +1,4 @@ -# $LynxId: lynx.cfg,v 1.319 2021/03/14 20:44:15 tom Exp $ +# $LynxId: lynx.cfg,v 1.320 2021/07/05 21:21:49 tom Exp $ # lynx.cfg file. # The default placement for this file is /usr/local/lib/lynx.cfg (Unix) # or Lynx_Dir:lynx.cfg (VMS) @@ -3434,6 +3434,7 @@ COLOR:6:brightred:black #ENABLE_LYNXRC:FTP_PASSIVE:OFF #ENABLE_LYNXRC:HTML5_CHARSETS:OFF #ENABLE_LYNXRC:HTTP_PROTOCOL:1.0 +#ENABLE_LYNXRC:IDNA_MODE:TR46 #ENABLE_LYNXRC:KBLAYOUT:ON #ENABLE_LYNXRC:KEYPAD_MODE:ON #ENABLE_LYNXRC:LINEEDIT_MODE:ON diff --git a/lynx_help/Lynx_users_guide.html b/lynx_help/Lynx_users_guide.html index 61d3b3af..a58355cd 100644 --- a/lynx_help/Lynx_users_guide.html +++ b/lynx_help/Lynx_users_guide.html @@ -1,4 +1,4 @@ -<!-- $LynxId: Lynx_users_guide.html,v 1.148 2021/07/01 20:55:09 tom Exp $ --> +<!-- $LynxId: Lynx_users_guide.html,v 1.155 2021/07/09 00:27:04 tom Exp $ --> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"> <html> <head> @@ -735,13 +735,27 @@ the form-based menu (as below). Many other options are stored in the <a href="#lynx.cfg">lynx.cfg</a> file.</p> - <p>Lynx supports two styles of Options Menu, key-based & - form-based. The form-based menu shown below is an HTML file - generated at runtime, in which the user fills in choices as in - any ordinary HTML form.</p> + <p>Lynx supports two styles of Options Menu:</p> + + <ul> + <li><a name="item-form_based_options" href= + "#explain-form_based_options" id= + "item-form_based_options">form-based</a></li> + + <li><a name="item-key_based_options" href= + "#explain-key_based_options" id= + "item-key_based_options">key-based</a></li> + </ul> + + <p id="explain-form_based_options">The form-based menu shown + below is an HTML file generated at runtime, in which the user + fills in choices as in any ordinary HTML form.</p> <pre> - Options Menu (Lynx Version 2.8.9dev.15) + + <a href="#item-form_based_options" name= +"example-form_based_options" id= +"example-form_based_options">Options Menu (Lynx Version 2.9.0dev.7)</a> Accept Changes - Reset Changes - Left Arrow cancels changes - HELP! @@ -749,103 +763,176 @@ (options marked with (!) will not be saved) General Preferences - User mode : [Advanced____] - Editor : vile______________________________________ - Type of Search : [Case insensitive] + User mode : <a href= +"#optinfo-user_mode">[Advanced____]</a> + Editor : <a href= +"#optinfo-editor">vile______________________________________</a> + Type of Search : <a href= +"#optinfo-type_of_search">[Case insensitive]</a> Security and Privacy - Cookies : [ask user__] - Invalid-Cookie Prompting (!) : [prompt normally___] - SSL Prompting (!) : [prompt normally___] + Cookies : <a href= +"#optinfo-cookies">[ask user__]</a> + Invalid-Cookie Prompting (!) : <a href= +"#optinfo-invalid_cookie_prompting">[prompt normally___]</a> + SSL Prompting (!) : <a href= +"#optinfo-ssl_prompting">[prompt normally___]</a> Keyboard Input - Keypad mode : [Numbers act as arrows_____________] - Emacs keys : [OFF] - VI keys : [OFF] - Line edit style : [Bash-like Bindings] + Keypad mode : <a href= +"#optinfo-keypad_mode">[Numbers act as arrows_____________]</a> + Emacs keys : <a href= +"#optinfo-emacs_keys">[OFF]</a> + VI keys : <a href= +"#optinfo-vi_keys">[OFF]</a> + Line edit style : <a href= +"#optinfo-line_edit_style">[Bash-like Bindings]</a> Display and Character Set - Use locale-based character set : [ON_] - Use HTML5 charset replacements(!): [OFF] - Display character set : [UNICODE (UTF-8)________________] - Assumed document character set(!): [iso-8859-1______] - Raw 8-bit : [OFF] - X Display : localhost:0.0_____________________________ + Use locale-based character set : <a href= +"#optinfo-locale_based_charset">[ON_]</a> + Use HTML5 charset replacements(!): <a href= +"#optinfo-use_html5_charset">[OFF]</a> + Display character set : <a href= +"#optinfo-display_charset">[UNICODE (UTF-8)________________]</a> + Assumed document character set(!): <a href= +"#optinfo-assumed_document_charset">[iso-8859-1______]</a> + Internationalized domain names(!): <a href= +"#optinfo-idna_mode">[IDNA TR46______]</a> + Raw 8-bit : <a href= +"#optinfo-raw_8_bit">[OFF]</a> + X Display : <a href= +"#optinfo-x_display">localhost:0.0_____________________________</a> Document Appearance - Show color : [ON____] + Show color : <a href= +"#optinfo-show_color">[ON____]</a> Color style (!) : [lynx.lss___________] Default colors (!) : [ON_] - Show cursor : [OFF] - Underline links (!) : [OFF] - Show scrollbar : [ON_] - Popups for select fields : [ON_] - HTML error recovery : [strict (SortaSGML mode)] - Bad HTML messages (!) : [Warn, point to trace-file] - Show images : [ignore___] - Verbose images : [OFF__________] - Collapse BR tags (!) : [OFF_____] - Trim blank lines (!) : [trim-lines] + Show cursor : <a href= +"#optinfo-show_cursor">[OFF]</a> + Underline links (!) : <a href= +"#optinfo-underline_links">[OFF]</a> + Show scrollbar : <a href= +"#optinfo-show_scrollbar">[ON_]</a> + Popups for select fields : <a href= +"#optinfo-popups_for_select">[ON_]</a> + HTML error recovery : <a href= +"#optinfo-html_error_recovery">[strict (SortaSGML mode)]</a> + Bad HTML messages (!) : <a href= +"#optinfo-bad_html_messages">[Warn, point to trace-file]</a> + Show images : <a href= +"#optinfo-show_images">[ignore___]</a> + Verbose images : <a href= +"#optinfo-verbose_images">[OFF__________]</a> + Collapse BR tags (!) : <a href= +"#optinfo-collapse_br_tags">[OFF_____]</a> + Trim blank lines (!) : <a href= +"#optinfo-trim_blank_lines">[trim-lines]</a> Headers Transferred to Remote Servers - Personal mail address : __________________________________________ - Personal name for mail : __________________________________________ - Password for anonymous ftp : __________________________________________ - Preferred media type (!) : [Accept lynx's internal types] - Preferred encoding (!) : [All_____] - Preferred document character set : _________________________________ - Preferred document language : en_______________________________ - HTTP protocol (!) : [HTTP 1.0] - Send User-Agent header (!) : [X] - User-Agent header (!) : Lynx/2.8.9rel.1 libwww-FM/2.14 SSL-MM/1.4. + Personal mail address : <a href= +"#optinfo-personal_mail_address">__________________________________________</a> + Personal name for mail : <a href= +"#optinfo-personal_name_for_mail">__________________________________________</a> + Password for anonymous ftp : <a href= +"#optinfo-password_for_anon_ftp">__________________________________________</a> + Preferred media type (!) : <a href= +"#optinfo-preferred_media_type">[Accept lynx's internal types]</a> + Preferred encoding (!) : <a href= +"#optinfo-preferred_encoding">[All_____]</a> + Preferred document character set : <a href= +"#optinfo-preferred_doc_charset">_________________________________</a> + Preferred document language : <a href= +"#optinfo-preferred_doc_language">en_______________________________</a> + HTTP protocol (!) : <a href= +"#optinfo-http_protocol">[HTTP 1.0]</a> + Send User-Agent header (!) : <a href= +"#optinfo-send_user_agent">[X]</a> + User-Agent header (!) : <a href= +"#optinfo-user_agent">Lynx/2.8.9rel.1 libwww-FM/2.14 SSL-MM/1.4.</a> Listing and Accessing Files - Use Passive FTP (!) : [ON_] - FTP sort criteria : [By Date] - Local directory sort criteria : [Directories first] - Local directory sort order : [By Date_] - Show dot files : [OFF] - Pause when showing message (!) : [ON_] - Show transfer rate : [Show KiB/sec (2-digits), ETA__] + Use Passive FTP (!) : <a href= +"#optinfo-use_passive_ftp">[ON_]</a> + FTP sort criteria : <a href= +"#optinfo-ftp_sort_criteria">[By Date]</a> + Local directory sort criteria : <a href= +"#optinfo-local_directory_sort_criteria">[Directories first]</a> + Local directory sort order : <a href= +"#optinfo-local_directory_sort_order">[By Date_]</a> + Show dot files : <a href= +"#optinfo-show_dot_files">[OFF]</a> + Pause when showing message (!) : <a href= +"#optinfo-pause_when_showing_message">[ON_]</a> + Show transfer rate : <a href= +"#optinfo-show_transfer_rate">[Show KiB/sec (2-digits), ETA__]</a> Special Files and Screens - Multi-bookmarks : [ADVANCED] + Multi-bookmarks : <a href= +"#optinfo-multi_bookmarks">[ADVANCED]</a> Review/edit Bookmarks files : Goto multi-bookmark menu - Auto Session (!) : [OFF] - Session file (!) : __________________________________________ - Visited Pages : [By Last Visit Reversed_] + Auto Session (!) : <a href= +"#optinfo-auto_session">[OFF]</a> + Session file (!) : <a href= +"#optinfo-session_file">__________________________________________</a> + Visited Pages : <a href= +"#optinfo-visited_pages">[By Last Visit Reversed_]</a> View the file lynx.cfg. Accept Changes - Reset Changes - Left Arrow cancels changes - </pre> - <p>The key-based menu depends on key-strokes to identify options - which the user wants to change. It is compiled into Lynx and is - accessed by setting FORMS_OPTIONS to TRUE in <a href= - "#lynx.cfg">lynx.cfg</a>.</p> + <p id="explain-key_based_options">The key-based menu depends on + key-strokes to identify options which the user wants to change. + It is compiled into Lynx and is accessed by setting FORMS_OPTIONS + to TRUE in <code>lynx.cfg</code>.</p> <pre> - Options Menu (Lynx Version 2.8.9dev.15) - - (E)ditor : emacs - (D)ISPLAY variable : aixtest.cc.ukans.edu:0.0 - mu(L)ti-bookmarks: OFF B)ookmark file: lynx_bookmarks.html - (F)TP sort criteria : By Filename - (P)ersonal mail address : montulli@netscape.com - (S)earching type : CASE INSENSITIVE - preferred document lan(G)uage: en - preferred document c(H)arset : NONE - display (C)haracter set : Western (ISO-8859-1) - raw 8-bit or CJK m(O)de : ON show color (&) : OFF - (V)I keys: OFF e(M)acs keys: OFF sho(W) dot files: OFF - popups for selec(T) fields : ON show cursor (@) : OFF - (K)eypad mode : Numbers act as arrows - li(N)e edit style : Default Binding - l(I)st directory style : Mixed style - (U)ser mode : Advanced verbose images (!) : ON - user (A)gent : [User-Agent header] - local e(X)ecution links : FOR LOCAL FILES ONLY + + <a href="#item-key_based_options" name= +"example-key_based_options" id= +"example-key_based_options">Options Menu (Lynx Version 2.9.0dev.7)</a> + + <a href= +"#optinfo-editor">(E)</a>ditor : emacs + <a href= +"#optinfo-x_display">(D)</a>ISPLAY variable : aixtest.cc.ukans.edu:0.0 + mu<a href= +"#optinfo-multi_bookmarks">(L)</a>ti-bookmarks: OFF <a href= +"#optinfo-bookmark_file">B)</a>ookmark file: lynx_bookmarks.html + <a href= +"#optinfo-ftp_sort_criteria">(F)</a>TP sort criteria : By Filename + <a href= +"#optinfo-personal_mail_address">(P)</a>ersonal mail address : montulli@netscape.com + <a href= +"#optinfo-type_of_search">(S)</a>earching type : CASE INSENSITIVE + preferred document lan<a href= +"#optinfo-preferred_doc_language">(G)</a>uage: en + preferred document c<a href= +"#optinfo-preferred_doc_charset">(H)</a>arset : NONE + display <a href= +"#optinfo-display_charset">(C)</a>haracter set : Western (ISO-8859-1) + raw 8-bit or CJK m<a href= +"#optinfo-raw_8_bit">(O)</a>de : ON show color <a href= +"#optinfo-show_color">(&)</a> : OFF + <a href="#optinfo-vi_keys">(V)</a>I keys: OFF e<a href= +"#optinfo-emacs_keys">(M)</a>acs keys: OFF sho<a href= +"#optinfo-show_dot_files">(W)</a> dot files: OFF + popups for selec<a href= +"#optinfo-popups_for_select">(T)</a> fields : ON show cursor <a href="#optinfo-show_cursor">(@)</a> : OFF + <a href= +"#optinfo-keypad_mode">(K)</a>eypad mode : Numbers act as arrows + li<a href= +"#optinfo-line_edit_style">(N)</a>e edit style : Default Binding + l<a href= +"#optinfo-local_directory_sort_criteria">(I)</a>st directory style : Mixed style + <a href= +"#optinfo-user_mode">(U)</a>ser mode : Advanced verbose images <a href="#optinfo-verbose_images">(!)</a> : ON + user <a href= +"#optinfo-user_agent">(A)</a>gent : [User-Agent header] + local e<a href= +"#optinfo-execution_links">(X)</a>ecution links : FOR LOCAL FILES ONLY </pre> <p>An option can be changed by entering the capital letter or character in parentheses for the option you wish to change (e.g., @@ -880,7 +967,10 @@ <em>Options Menu</em>:</p> <dl> - <dt>Assumed document character set</dt> + <dt><a name="optinfo-assumed_document_charset" id= + "optinfo-assumed_document_charset">Assumed document character + set</a> + </dt> <dd> <p>This option changes the handling of documents which do not @@ -898,7 +988,9 @@ 8-bit or CJK Mode” is OFF.</p> </dd> - <dt>Auto Session</dt> + <dt><a name="optinfo-auto_session" id= + "optinfo-auto_session">Auto Session</a> + </dt> <dd> <p>Lynx can save and restore useful information about your @@ -906,7 +998,9 @@ feature.</p> </dd> - <dt>Bad HTML messages</dt> + <dt><a name="optinfo-bad_html_messages" id= + "optinfo-bad_html_messages">Bad HTML messages</a> + </dt> <dd> <p>Suppress or redirect Lynx's messages about "Bad HTML":</p> @@ -942,7 +1036,9 @@ </dl> </dd> - <dt>Bookmark file</dt> + <dt><a name="optinfo-bookmark_file" id= + "optinfo-bookmark_file">Bookmark file</a> + </dt> <dd> <p>When multi-bookmarks is OFF, this is the filename and @@ -975,7 +1071,9 @@ [.BM]lynx_bookmarks.html).</p> </dd> - <dt>Collapse BR tags</dt> + <dt><a name="optinfo-collapse_br_tags" id= + "optinfo-collapse_br_tags">Collapse BR tags</a> + </dt> <dd> <p>If <em>Collapse BR tags</em> is turned off, Lynx will not @@ -987,7 +1085,8 @@ block.</p> </dd> - <dt>Cookies</dt> + <dt><a name="optinfo-cookies" id="optinfo-cookies">Cookies</a> + </dt> <dd> <p>This option allows you to tell how to handle cookies: @@ -995,7 +1094,9 @@ all</em>.</p> </dd> - <dt>Display Character set</dt> + <dt><a name="optinfo-display_charset" id= + "optinfo-display_charset">Display Character set</a> + </dt> <dd> <p>This option allows you to set up the default character set @@ -1011,7 +1112,8 @@ windows-xxxx within native MS-Windows apps.)</p> </dd> - <dt>Editor</dt> + <dt><a name="optinfo-editor" id="optinfo-editor">Editor</a> + </dt> <dd> <p>The editor to be invoked when editing browsable files, @@ -1027,7 +1129,9 @@ confuse the shell which starts the editor program.</p> </dd> - <dt>Emacs keys</dt> + <dt><a name="optinfo-emacs_keys" id="optinfo-emacs_keys">Emacs + keys</a> + </dt> <dd> <p>If set to ON then the CTRL-P, CTRL-N, CTRL-F, and CTRL-B @@ -1040,7 +1144,9 @@ bindings.</p> </dd> - <dt>Execution links<br></dt> + <dt><a name="optinfo-execution_links" id= + "optinfo-execution_links">Execution links</a> + </dt> <dd> <p>This deals with execution of local scripts or links. Local @@ -1084,7 +1190,9 @@ executed and will ask the user to check his/her options.</p> </dd> - <dt>FTP sort criteria</dt> + <dt><a name="optinfo-ftp_sort_criteria" id= + "optinfo-ftp_sort_criteria">FTP sort criteria</a> + </dt> <dd> <p>This option allows you to specify how files will be sorted @@ -1093,7 +1201,9 @@ Type</code>", and "<code>By Date</code>".</p> </dd> - <dt>HTML error recovery</dt> + <dt><a name="optinfo-html_error_recovery" id= + "optinfo-html_error_recovery">HTML error recovery</a> + </dt> <dd> <p>Select the <a href= @@ -1101,7 +1211,9 @@ by Lynx.</p> </dd> - <dt>HTTP protocol</dt> + <dt><a name="optinfo-http_protocol" id= + "optinfo-http_protocol">HTTP protocol</a> + </dt> <dd> <p>Normally Lynx negotiates HTTP/1.0, because it does not @@ -1112,7 +1224,39 @@ protocol.</p> </dd> - <dt>Invalid-Cookie Prompting</dt> + <dt><a name="optinfo-idna_mode" id= + "optinfo-idna_mode">Internationalized domain names</a> + </dt> + + <dd> + Convert internationalized domain names to and from ASCII. + <dl> + <dt>IDNA 2003</dt> + + <dd>Convert using the older “transitional” + scheme.</dd> + + <dt>IDNA 2008</dt> + + <dd>Convert using the newer “non-transitional” + scheme.</dd> + + <dt>IDNA TR46</dt> + + <dd>Use IDNA 2008 with the amendments from Unicode <a href= + "http://www.unicode.org/reports/tr46">Technical Report + 46</a>.</dd> + + <dt>IDNA Compatible</dt> + + <dd>First try converting using IDNA 2008, and if + unsuccessful, try IDNA 2003.</dd> + </dl> + </dd> + + <dt><a name="optinfo-invalid_cookie_prompting" id= + "optinfo-invalid_cookie_prompting">Invalid-Cookie Prompting</a> + </dt> <dd> <p>This allows you to tell how to handle invalid cookies: @@ -1121,7 +1265,9 @@ no-response</em> to reply "no" to each prompt.</p> </dd> - <dt>Keypad mode</dt> + <dt><a name="optinfo-keypad_mode" id= + "optinfo-keypad_mode">Keypad mode</a> + </dt> <dd> <p>This option gives the choice among navigating with the @@ -1138,7 +1284,9 @@ help for more information.</p> </dd> - <dt>Line edit style</dt> + <dt><a name="optinfo-line_edit_style" id= + "optinfo-line_edit_style">Line edit style</a> + </dt> <dd> <p>This option allows you to set alternative key bindings for @@ -1147,7 +1295,10 @@ "keystrokes/edit_help.html">Default Binding</a>.</p> </dd> - <dt>Local directory sort criteria</dt> + <dt><a name="optinfo-local_directory_sort_criteria" id= + "optinfo-local_directory_sort_criteria">Local directory sort + criteria</a> + </dt> <dd> <p>This applies to directory editing. Files and directories @@ -1177,7 +1328,10 @@ </dl> </dd> - <dt>Local directory sort order</dt> + <dt><a name="optinfo-local_directory_sort_order" id= + "optinfo-local_directory_sort_order">Local directory sort + order</a> + </dt> <dd> <p>The Options Form also allows you to sort by the file @@ -1229,7 +1383,9 @@ </dl> </dd> - <dt>Multi-bookmarks</dt> + <dt><a name="optinfo-multi_bookmarks" id= + "optinfo-multi_bookmarks">Multi-bookmarks</a> + </dt> <dd> <p>Lynx supports a default bookmark file, and up to 26 total @@ -1249,7 +1405,9 @@ the default bookmark file.</p> </dd> - <dt>Password for anonymous ftp</dt> + <dt><a name="optinfo-password_for_anon_ftp" id= + "optinfo-password_for_anon_ftp">Password for anonymous ftp</a> + </dt> <dd> <p>If this is blank, Lynx will use your personal mail address @@ -1262,7 +1420,10 @@ even the environment variable is unset.</p> </dd> - <dt>Pause when showing message</dt> + <dt><a name="optinfo-pause_when_showing_message" id= + "optinfo-pause_when_showing_message">Pause when showing + message</a> + </dt> <dd> <p>If set to "off", this overrides the INFOSECS setting in @@ -1270,7 +1431,9 @@ messages, like the "-nopause" command line option.</p> </dd> - <dt>Personal mail address</dt> + <dt><a name="optinfo-personal_mail_address" id= + "optinfo-personal_mail_address">Personal mail address</a> + </dt> <dd> <p>This mail address will be used to help you send files to @@ -1283,7 +1446,9 @@ line toggle.</p> </dd> - <dt>Personal mail name</dt> + <dt><a name="optinfo-personal_name_for_mail" id= + "optinfo-personal_name_for_mail">Personal mail name</a> + </dt> <dd> <p>This mail name will be included as the "X-Personal_Name" @@ -1292,7 +1457,9 @@ in <a href="#lynx.cfg">lynx.cfg</a>.</p> </dd> - <dt>Popups for select fields</dt> + <dt><a name="optinfo-popups_for_select" id= + "optinfo-popups_for_select">Popups for select fields</a> + </dt> <dd> <p>Lynx normally uses a popup window for the OPTIONs in form @@ -1305,7 +1472,10 @@ OPTIONs always are rendered as a list of checkboxes.</p> </dd> - <dt>Preferred document language</dt> + <dt><a name="optinfo-preferred_doc_language" id= + "optinfo-preferred_doc_language">Preferred document + language</a> + </dt> <dd> <p>The language you prefer if multi-language files are @@ -1318,7 +1488,9 @@ da, en-gb;q=0.8, en;q=0.7</p> </dd> - <dt>Preferred document charset</dt> + <dt><a name="optinfo-preferred_doc_charset" id= + "optinfo-preferred_doc_charset">Preferred document charset</a> + </dt> <dd> <p>The character set you prefer if sets in addition to @@ -1332,7 +1504,9 @@ it, for example: iso-8859-5, utf-8;q=0.8</p> </dd> - <dt>Preferred encoding</dt> + <dt><a name="optinfo-preferred_encoding" id= + "optinfo-preferred_encoding">Preferred encoding</a> + </dt> <dd> <p>When doing a GET, lynx tells what types of compressed data @@ -1342,7 +1516,9 @@ none, one or all of the supported decompression types.</p> </dd> - <dt>Preferred media type</dt> + <dt><a name="optinfo-preferred_media_type" id= + "optinfo-preferred_media_type">Preferred media type</a> + </dt> <dd> <p>When doing a GET, lynx lists the MIME types which it knows @@ -1391,7 +1567,9 @@ </dl> </dd> - <dt>Raw 8-bit or CJK Mode</dt> + <dt><a name="optinfo-raw_8_bit" id="optinfo-raw_8_bit">Raw + 8-bit or CJK Mode</a> + </dt> <dd> <p>Tells Lynx whether 8-bit characters are assumed to @@ -1421,13 +1599,17 @@ at startup via the <em>-raw</em> switch.</p> </dd> - <dt>Send User-Agent header</dt> + <dt><a name="optinfo-send_user_agent" id= + "optinfo-send_user_agent">Send User-Agent header</a> + </dt> <dd> <p>Controls whether the user-agent string will be sent.</p> </dd> - <dt>Session file</dt> + <dt><a name="optinfo-session_file" id= + "optinfo-session_file">Session file</a> + </dt> <dd> <p>Define the file name where lynx will store user sessions. @@ -1435,7 +1617,9 @@ enabled.</p> </dd> - <dt>Show color</dt> + <dt><a name="optinfo-show_color" id="optinfo-show_color">Show + color</a> + </dt> <dd> <p>This option will be present if color support is available. @@ -1476,7 +1660,9 @@ appropriately on or off via this option.</p> </dd> - <dt>Show cursor</dt> + <dt><a name="optinfo-show_cursor" id="optinfo-show_cursor">Show + cursor</a> + </dt> <dd> <p>Lynx normally hides the cursor by positioning it to the @@ -1491,7 +1677,9 @@ others in the screen display.</p> </dd> - <dt>Show dot files</dt> + <dt><a name="optinfo-show_dot_files" id= + "optinfo-show_dot_files">Show dot files</a> + </dt> <dd> <p>If display/creation of hidden (dot) files/directories is @@ -1499,7 +1687,9 @@ setting.</p> </dd> - <dt>Show images</dt> + <dt><a name="optinfo-show_images" id="optinfo-show_images">Show + images</a> + </dt> <dd> <p>This allows you to select the way in which Lynx shows @@ -1517,7 +1707,9 @@ <br> </dd> - <dt>Show scrollbar</dt> + <dt><a name="optinfo-show_scrollbar" id= + "optinfo-show_scrollbar">Show scrollbar</a> + </dt> <dd> <p>This allows you to enable (show) or disable (hide) the @@ -1525,7 +1717,9 @@ available with ncurses or slang libraries.</p> </dd> - <dt>Show transfer rate</dt> + <dt><a name="optinfo-show_transfer_rate" id= + "optinfo-show_transfer_rate">Show transfer rate</a> + </dt> <dd> <p>This allows you to select the way in which Lynx shows its @@ -1548,7 +1742,9 @@ <br> </dd> - <dt>SSL Prompting</dt> + <dt><a name="optinfo-ssl_prompting" id= + "optinfo-ssl_prompting">SSL Prompting</a> + </dt> <dd> <p>This allows you to tell how to handle errors detected in @@ -1558,7 +1754,9 @@ prompt.</p> </dd> - <dt>Trim blank lines</dt> + <dt><a name="optinfo-trim_blank_lines" id= + "optinfo-trim_blank_lines">Trim blank lines</a> + </dt> <dd> <p>If <em>Trim blank lines</em> is turned off, Lynx will not @@ -1568,7 +1766,9 @@ tags</em> feature.</p> </dd> - <dt>Type of Search</dt> + <dt><a name="optinfo-type_of_search" id= + "optinfo-type_of_search">Type of Search</a> + </dt> <dd> <p>Searching type has two possible values: CASE INSENSITIVE @@ -1578,7 +1778,9 @@ or case-insensitive manner.</p> </dd> - <dt>Use HTML5 charset replacements</dt> + <dt><a name="optinfo-use_html5_charset" id= + "optinfo-use_html5_charset">Use HTML5 charset replacements</a> + </dt> <dd> <p>This option allows lynx to treat pages with ISO-8859-1 @@ -1586,7 +1788,10 @@ allows a few punctuation characters to be shown.</p> </dd> - <dt>Use locale-based character set</dt> + <dt><a name="optinfo-locale_based_charset" id= + "optinfo-locale_based_charset">Use locale-based character + set</a> + </dt> <dd> <p>This option allows you to request lynx to obtain a MIME @@ -1595,20 +1800,26 @@ setting of the display character set.</p> </dd> - <dt>Underline links</dt> + <dt><a name="optinfo-underline_links" id= + "optinfo-underline_links">Underline links</a> + </dt> <dd> <p>Use underline-attribute rather than bold for links.</p> </dd> - <dt>Use Passive FTP</dt> + <dt><a name="optinfo-use_passive_ftp" id= + "optinfo-use_passive_ftp">Use Passive FTP</a> + </dt> <dd> <p>This allows you to change whether Lynx uses passive ftp connections.</p> </dd> - <dt>User Agent header</dt> + <dt><a name="optinfo-user_agent" id= + "optinfo-user_agent">User-Agent header</a> + </dt> <dd> <p>The header string which Lynx sends to HTTP servers to @@ -1637,7 +1848,9 @@ "Lynx" or "L_y_n_x".</p> </dd> - <dt>User Mode</dt> + <dt><a name="optinfo-user_mode" id="optinfo-user_mode">User + Mode</a> + </dt> <dd> <p>There are three possible choices: Novice, Intermediate, @@ -1666,7 +1879,9 @@ </dl> </dd> - <dt>Verbose Images</dt> + <dt><a name="optinfo-verbose_images" id= + "optinfo-verbose_images">Verbose Images</a> + </dt> <dd> <p>Controls whether or not Lynx replaces the [LINK], [INLINE] @@ -1678,7 +1893,8 @@ <em>-verbose</em> switch.</p> </dd> - <dt>VI keys</dt> + <dt><a name="optinfo-vi_keys" id="optinfo-vi_keys">VI keys</a> + </dt> <dd> <p>If set to ON then the lowercase h, j, k, and l keys will @@ -1691,7 +1907,9 @@ bindings.</p> </dd> - <dt>Visited Pages</dt> + <dt><a name="optinfo-visited_pages" id= + "optinfo-visited_pages">Visited Pages</a> + </dt> <dd> <p>Enable several different views of the visited links:</p> @@ -1710,7 +1928,9 @@ <br> </dd> - <dt>X Display</dt> + <dt><a name="optinfo-x_display" id="optinfo-x_display">X + Display</a> + </dt> <dd> <p>This option is only relevant to X Window users. The diff --git a/src/LYMain.c b/src/LYMain.c index 14e015ec..af78ef78 100644 --- a/src/LYMain.c +++ b/src/LYMain.c @@ -1,5 +1,5 @@ /* - * $LynxId: LYMain.c,v 1.293 2021/06/09 20:55:53 tom Exp $ + * $LynxId: LYMain.c,v 1.295 2021/07/05 20:26:11 tom Exp $ */ #include <HTUtils.h> #include <HTTP.h> @@ -178,6 +178,9 @@ lynx_list_item_type *externals = NULL; /* linked list of external options */ #endif +#ifdef USE_IDN2 +int LYidnaMode = LYidnaTR46; +#endif lynx_list_item_type *uploaders = NULL; int LYShowColor = SHOW_COLOR_UNKNOWN; /* to show or not */ diff --git a/src/LYOptions.c b/src/LYOptions.c index 698224ca..9208d994 100644 --- a/src/LYOptions.c +++ b/src/LYOptions.c @@ -1,4 +1,4 @@ -/* $LynxId: LYOptions.c,v 1.182 2020/01/21 21:36:31 tom Exp $ */ +/* $LynxId: LYOptions.c,v 1.183 2021/07/05 21:17:42 tom Exp $ */ #include <HTUtils.h> #include <HTFTP.h> #include <HTTP.h> /* 'reloading' flag */ @@ -2367,6 +2367,18 @@ static const char *assume_char_set_string = RC_ASSUME_CHARSET; static const char *display_char_set_string = RC_CHARACTER_SET; static const char *raw_mode_string = RC_RAW_MODE; +#ifdef USE_IDN2 +static const char *idna_mode_string = RC_IDNA_MODE; +static OptValues idna_values[] = +{ + {LYidna2003, N_("IDNA 2003"), "idna2003"}, + {LYidna2008, N_("IDNA 2008"), "idna2008"}, + {LYidnaTR46, N_("IDNA TR46"), "idnaTR46"}, + {LYidnaCompat, N_("IDNA Compatible"), "idnaCompat"}, + END_OPTIONS +}; +#endif + #ifdef USE_LOCALE_CHARSET static const char *locale_charset_string = RC_LOCALE_CHARSET; #endif @@ -3248,6 +3260,13 @@ int postoptions(DocInfo *newdoc) current_char_set = newval; } } +#ifdef USE_IDN2 + /* Internationalized Domain Names: SELECT */ + if (!strcmp(data[i].tag, idna_mode_string) + && GetOptValues(idna_values, data[i].value, &code)) { + LYidnaMode = code; + } +#endif /* Raw Mode: ON/OFF */ if (!strcmp(data[i].tag, raw_mode_string) @@ -3418,9 +3437,7 @@ int postoptions(DocInfo *newdoc) need_reload = TRUE; } /* end of charset settings */ - /* - * FIXME: Golly gee, we need to write all of this out now, don't we? - */ + BStrFree(newdoc->post_data); FREE(data); if (save_all) { @@ -3954,6 +3971,20 @@ static int gen_options(char **newfile) EndSelect(fp0); } +#ifdef USE_IDN2 + /* Internationalized Domain Names: SELECT */ + { + PutLabel(fp0, gettext("Internationalized domain names"), idna_mode_string); + BeginSelect(fp0, idna_mode_string); + for (i = 0; idna_values[i].value != 0; i++) { + PutOption(fp0, idna_values[i].value == LYidnaMode, + idna_values[i].HtmlName, + idna_values[i].LongName); + } + EndSelect(fp0); + } +#endif + /* Raw Mode: ON/OFF */ if (LYHaveCJKCharacterSet) { /* diff --git a/src/LYrcFile.c b/src/LYrcFile.c index 8cdec2b4..06b843a5 100644 --- a/src/LYrcFile.c +++ b/src/LYrcFile.c @@ -1,4 +1,4 @@ -/* $LynxId: LYrcFile.c,v 1.104 2019/01/25 01:47:06 tom Exp $ */ +/* $LynxId: LYrcFile.c,v 1.105 2021/07/05 20:29:10 tom Exp $ */ #include <HTUtils.h> #include <HTFTP.h> #include <LYUtils.h> @@ -71,6 +71,16 @@ static Config_Enum tbl_file_sort[] = { { NULL, -1 }, }; +#ifdef USE_IDN2 +static Config_Enum tbl_idna_mode[] = { + { "IDNA2003", LYidna2003 }, + { "IDNA2008", LYidna2008 }, + { "TR46", LYidnaTR46 }, + { "Compatible", LYidnaCompat }, + { NULL, -1 }, +}; +#endif + Config_Enum tbl_keypad_mode[] = { { "FIELDS_ARE_NUMBERED", FIELDS_ARE_NUMBERED }, { "LINKS_AND_FIELDS_ARE_NUMBERED", LINKS_AND_FIELDS_ARE_NUMBERED }, @@ -471,6 +481,10 @@ file lists such as FTP directories. The options are:\n\ MAYBE_SET(RC_HTML5_CHARSETS, html5_charsets, MSG_ENABLE_LYNXRC), MAYBE_FUN(RC_HTTP_PROTOCOL, get_http_protocol, put_http_protocol, MSG_ENABLE_LYNXRC), +#ifdef USE_IDN2 + MAYBE_ENU(RC_IDNA_MODE, LYidnaMode, tbl_idna_mode, + MSG_ENABLE_LYNXRC), +#endif #ifdef EXP_KEYBOARD_LAYOUT PARSE_ARY(RC_KBLAYOUT, current_layout, LYKbLayoutNames, NULL), #endif diff --git a/src/LYrcFile.h b/src/LYrcFile.h index da45fbf3..f23c87ff 100644 --- a/src/LYrcFile.h +++ b/src/LYrcFile.h @@ -1,5 +1,5 @@ /* - * $LynxId: LYrcFile.h,v 1.56 2020/02/23 23:08:55 Keith.Bowes Exp $ + * $LynxId: LYrcFile.h,v 1.58 2021/07/05 20:23:51 tom Exp $ */ #ifndef LYRCFILE_H #define LYRCFILE_H @@ -99,8 +99,8 @@ #define RC_GLOBAL_MAILCAP "global_mailcap" #define RC_GOPHER_PROXY "gopher_proxy" #define RC_GOTOBUFFER "gotobuffer" -#define RC_GZIP_PATH "gzip_path" #define RC_GUESS_SCHEME "guess_scheme" +#define RC_GZIP_PATH "gzip_path" #define RC_HELPFILE "helpfile" #define RC_HIDDENLINKS "hiddenlinks" #define RC_HIDDEN_LINK_MARKER "hidden_link_marker" @@ -111,6 +111,7 @@ #define RC_HTTPS_PROXY "https_proxy" #define RC_HTTP_PROTOCOL "http_protocol" #define RC_HTTP_PROXY "http_proxy" +#define RC_IDNA_MODE "idna_mode" #define RC_INCLUDE "include" #define RC_INFLATE_PATH "inflate_path" #define RC_INFOSECS "infosecs" @@ -179,7 +180,6 @@ #define RC_NO_REFERER_HEADER "no_referer_header" #define RC_NO_TABLE_CENTER "no_table_center" #define RC_NO_TITLE "no_title" -#define RC_UPDATE_TERM_TITLE "update_term_title" #define RC_NUMBER_FIELDS_ON_LEFT "number_fields_on_left" #define RC_NUMBER_LINKS_ON_LEFT "number_links_on_left" #define RC_OUTGOING_MAIL_CHARSET "outgoing_mail_charset" @@ -271,6 +271,7 @@ #define RC_UNDERLINE_LINKS "underline_links" #define RC_UNIQUE_URLS "unique_urls" #define RC_UNZIP_PATH "unzip_path" +#define RC_UPDATE_TERM_TITLE "update_term_title" #define RC_UPLOADER "uploader" #define RC_URL_DOMAIN_PREFIXES "url_domain_prefixes" #define RC_URL_DOMAIN_SUFFIXES "url_domain_suffixes" diff --git a/test/idna-tr46.html b/test/idna-tr46.html new file mode 100644 index 00000000..e67f2875 --- /dev/null +++ b/test/idna-tr46.html @@ -0,0 +1,54 @@ +<!DOCTYPE HTML> +<!-- + https://unicode.org/reports/tr46/ +--> +<html lang="en"> +<head> +<title>Sample URLs from TR-46</title> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> +</head> + +<body> +<p>Samples from <em>Table 1. Deviation Characters</em></p> +<ul> +<li> +<p> +<a href="http://faß.de">test</a> +faß.de +</p> +<ul> +<li>2003: xn--bcher-kva.de</li> +<li>2008: xn--bcher-kva.de</li> +</ul> +</li> +<li> +<p><a href="http://βόλος.com">test</a> +βόλος.com +</p> +<ul> +<li>2003: http://xn--nxasmq6b.com</li> +<li>2008: http://xn--nxasmm1c.com</li> +</ul> +</li> +<li> +<p> +<a href="http://ශ්‍රී.com">test</a> +ශ්‍රී.com +</p> +<ul> +<li>2003: http://xn--10cl1a0b.com</li> +<li>2008: http://xn--10cl1a0b660p.com/</li> +</ul> +</li> +<li> +<p><a href="http://نامه‌ای.com">test</a> +نامه‌ای.com +</p> +<ul> +<li>2003: http://xn--mgba3gch31f.com/</li> +<li>2008: http://xn--mgba3gch31f060k.com/</li> +</ul> +</li> +</ul> +</body> +</html> |