about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--CHANGES20
-rw-r--r--WWW/Library/Implementation/HTAAProt.c42
-rw-r--r--WWW/Library/Implementation/HTAAProt.h32
-rw-r--r--WWW/Library/Implementation/HTTP.c9
-rw-r--r--WWW/Library/Implementation/SGML.c69
-rw-r--r--WWW/Library/Implementation/UCAux.h4
-rw-r--r--WWW/Library/Implementation/UCDefs.h56
-rw-r--r--WWW/Library/Implementation/www_tcp.h5
-rw-r--r--config.hin4
-rwxr-xr-xconfigure5917
-rw-r--r--configure.in18
-rw-r--r--makefile.msc12
-rw-r--r--samples/lynx.icobin0 -> 5174 bytes
-rwxr-xr-xscripts/conf.mingw.sh32
-rwxr-xr-xscripts/config.djgpp.sh24
-rw-r--r--src/HTAlert.c14
-rw-r--r--src/LYCgi.c4
-rw-r--r--src/LYCurses.c51
-rw-r--r--src/LYGlobalDefs.h10
-rw-r--r--src/LYIcon.rc1
-rw-r--r--src/LYMain.c12
-rw-r--r--src/LYPrettySrc.c6
-rw-r--r--src/LYPrettySrc.h7
-rw-r--r--src/LYStrings.c4
-rw-r--r--src/LYexit.c5
-rw-r--r--src/UCAux.c7
-rw-r--r--src/Xsystem.c18
-rw-r--r--src/makefile.in5
28 files changed, 3261 insertions, 3127 deletions
diff --git a/CHANGES b/CHANGES
index 28511694..8a04cbf8 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,14 +1,30 @@
--- $LynxId: CHANGES,v 1.374 2009/02/02 01:50:56 tom Exp $
+-- $LynxId: CHANGES,v 1.379 2009/03/11 00:39:22 tom Exp $
 ===============================================================================
 Changes since Lynx 2.8 release
 ===============================================================================
 
+2009-03-?? (2.8.7dev.14)
+* modify SGML_write() to check for UCS-2 BOMs, to provide support for UCS-2
+  pages (prompted by comment by TG) -TD
+* modify SGML_write() to check for UTF-8 BOM, using that as a hint to set the
+  default document charset to UTF-8 (prompted by mailing list comments) -TD
+* modify stop_curses() function to fix missing DJGPP and MinGW code -DK, TD
+* modify config.hin to fix prototype for getttimeofday() with MinGW -DK
+* ifdef to avoid conflicting definition of set_timeout() in DJGPP -DK
+* modify ifdef in LYMain.c to avoid possible conflict between libintl.h and
+  locale.h -DK
+* modify configure script to avoid using symbolic links for MinGW, in case
+  the script is run in Cygwin -DK
+* modify makefile.msc to add LYIcon object -TD
+* modify configure script to add LYIcon object for MinGW -DK
+* add sample scripts for configuring MinGW version using Cygwin -DK
+
 2009-02-01 (2.8.7dev.13)
 * modify definitions in LYStructs.h for union to cast to a void* rather than
   a long, to help with 64-bit ports -TD
 * modify CF_SSL configure macro to check for -ldl needed for recent OpenSSL
   versions -TD
-* modify CF_SSL configure macro to build with msys for mingw configuration -TD
+* modify CF_SSL configure macro to build with MSYS for MinGW configuration -TD
 * modify scanning of floats from lynx.cfg to allow Lynx to read POSIX values
   in non-POSIX locales -TD
 * modify configure script to check for msginit, needed to generate "en" po
diff --git a/WWW/Library/Implementation/HTAAProt.c b/WWW/Library/Implementation/HTAAProt.c
index 263b4a2c..224723c7 100644
--- a/WWW/Library/Implementation/HTAAProt.c
+++ b/WWW/Library/Implementation/HTAAProt.c
@@ -1,5 +1,5 @@
 /*
- * $LynxId: HTAAProt.c,v 1.30 2009/02/01 21:19:48 tom Exp $
+ * $LynxId: HTAAProt.c,v 1.31 2009/03/10 00:27:20 tom Exp $
  *
  * MODULE							HTAAProt.c
  *		PROTECTION FILE PARSING MODULE
@@ -75,44 +75,6 @@ static BOOL isNumber(const char *s)
     }
     return YES;
 }
-#endif /* !NOUSERS */
-
-#if defined (NOUSERS)
-/* PUBLIC							HTAA_getUidName()
- *		GET THE USER ID NAME (VMS ONLY)
- * ON ENTRY:
- *	No arguments.
- *
- * ON EXIT:
- *	returns	the user name
- *		Default is "" (nobody).
- */
-const char *HTAA_getUidName(void)
-{
-    if (current_prot && current_prot->uid_name
-	&& (0 != strcmp(current_prot->uid_name, "nobody")))
-	return (current_prot->uid_name);
-    else
-	return ("");
-}
-
-/* PUBLIC							HTAA_getFileName
- *		GET THE FILENAME (VMS ONLY)
- * ON ENTRY:
- *	No arguments.
- *
- * ON EXIT:
- *	returns	the filename
- */
-const char *HTAA_getFileName(void)
-{
-    if (current_prot && current_prot->filename)
-	return (current_prot->filename);
-    else
-	return ("");
-}
-
-#else /* not VMS */
 
 /* PUBLIC							HTAA_getUid()
  *		GET THE USER ID TO CHANGE THE PROCESS UID TO
@@ -187,7 +149,7 @@ int HTAA_getGid(void)
      */
     return NOBODY;		/* nogroup */
 }
-#endif /* not VMS */
+#endif /* !NOUSERS */
 
 /* static							HTAA_setIds()
  *		SET UID AND GID (AS NAMES OR NUMBERS)
diff --git a/WWW/Library/Implementation/HTAAProt.h b/WWW/Library/Implementation/HTAAProt.h
index 8595ca66..22e3d928 100644
--- a/WWW/Library/Implementation/HTAAProt.h
+++ b/WWW/Library/Implementation/HTAAProt.h
@@ -156,7 +156,7 @@ Get User and Group IDs to Which Set to
 
  */
 
-#ifndef VMS
+#ifndef NOUSERS
 /* PUBLIC                                                       HTAA_getUid()
  *              GET THE USER ID TO CHANGE THE PROCESS UID TO
  * ON ENTRY:
@@ -178,35 +178,7 @@ Get User and Group IDs to Which Set to
  *              Default is 65534 (nogroup).
  */
     extern int HTAA_getGid(void);
-#endif				/* not VMS */
-/*
-
-   For VMS:
-
- */
-
-#ifdef VMS
-/* PUBLIC                                                       HTAA_getUidName()
- *              GET THE USER ID NAME (VMS ONLY)
- * ON ENTRY:
- *      No arguments.
- *
- * ON EXIT:
- *      returns the user name
- *              Default is "" (nobody).
- */
-    extern const char *HTAA_getUidName(void);
-
-/* PUBLIC                                                       HTAA_getFileName
- *              GET THE FILENAME (VMS ONLY)
- * ON ENTRY:
- *      No arguments.
- *
- * ON EXIT:
- *      returns the filename
- */
-    extern const char *HTAA_getFileName(void);
-#endif				/* VMS */
+#endif				/* !NOUSERS */
 
 /* PUBLIC                                                       HTAA_UidToName
  *              GET THE USER NAME
diff --git a/WWW/Library/Implementation/HTTP.c b/WWW/Library/Implementation/HTTP.c
index d1be845d..3d87d441 100644
--- a/WWW/Library/Implementation/HTTP.c
+++ b/WWW/Library/Implementation/HTTP.c
@@ -1,5 +1,5 @@
 /*
- * $LynxId: HTTP.c,v 1.105 2009/02/01 21:22:22 tom Exp $
+ * $LynxId: HTTP.c,v 1.106 2009/03/10 15:31:22 tom Exp $
  *
  * HyperText Tranfer Protocol	- Client implementation		HTTP.c
  * ==========================
@@ -285,9 +285,6 @@ int ws_netread(int fd, char *buf, int len)
 
     static recv_data_t para;
 
-    extern int lynx_timeout;	/* LYMain.c */
-    extern CRITICAL_SECTION critSec_READ;	/* LYMain.c */
-
 #define TICK	5
 #define STACK_SIZE	0x2000uL
 
@@ -1032,12 +1029,12 @@ static int HTLoadHTTP(const char *arg,
 		if (pres->quality < 1.0) {
 		    if (pres->maxbytes > 0) {
 			sprintf(temp, ";q=%4.3f;mxb=%" PRI_off_t "",
-				pres->quality, pres->maxbytes);
+				pres->quality, CAST_off_t(pres->maxbytes));
 		    } else {
 			sprintf(temp, ";q=%4.3f", pres->quality);
 		    }
 		} else if (pres->maxbytes > 0) {
-		    sprintf(temp, ";mxb=%" PRI_off_t "", pres->maxbytes);
+		    sprintf(temp, ";mxb=%" PRI_off_t "", CAST_off_t(pres->maxbytes));
 		} else {
 		    temp[0] = '\0';
 		}
diff --git a/WWW/Library/Implementation/SGML.c b/WWW/Library/Implementation/SGML.c
index 709586e5..5fd3a09e 100644
--- a/WWW/Library/Implementation/SGML.c
+++ b/WWW/Library/Implementation/SGML.c
@@ -1,5 +1,5 @@
 /*
- * $LynxId: SGML.c,v 1.120 2009/01/03 01:12:28 tom Exp $
+ * $LynxId: SGML.c,v 1.122 2009/03/10 21:16:57 tom Exp $
  *
  *			General SGML Parser code		SGML.c
  *			========================
@@ -4382,12 +4382,23 @@ static void SGML_character(HTStream *context, char c_in)
     }
 }				/* SGML_character */
 
-static void SGML_string(HTStream *context, const char *str)
+static void InferUtfFromBom(HTStream *context, int chndl)
 {
-    const char *p;
+    HTAnchor_setUCInfoStage(context->node_anchor, chndl,
+			    UCT_STAGE_PARSER,
+			    UCT_SETBY_PARSER);
+    change_chartrans_handling(context);
+}
 
-    for (p = str; *p; p++)
-	SGML_character(context, *p);
+/*
+ * Avoid rewrite of SGML_character() to handle hypothetical case of UTF-16
+ * webpages, by pretending that the data is UTF-8.
+ */
+static void SGML_widechar(HTStream *context, long ch)
+{
+    if (!UCPutUtf8_charstring(context, SGML_character, ch)) {
+	SGML_character(context, UCH(ch));
+    }
 }
 
 static void SGML_write(HTStream *context, const char *str, int l)
@@ -4395,8 +4406,45 @@ static void SGML_write(HTStream *context, const char *str, int l)
     const char *p;
     const char *e = str + l;
 
-    for (p = str; p < e; p++)
-	SGML_character(context, *p);
+    if (sgml_offset == 0) {
+	if (l > 3
+	    && !memcmp(str, "\357\273\277", 3)) {
+	    CTRACE((tfp, "SGML_write found UTF-8 BOM\n"));
+	    InferUtfFromBom(context, UTF8_handle);
+	    str += 3;
+	} else if (l > 2) {
+	    if (!memcmp(str, "\377\376", 2)) {
+		CTRACE((tfp, "SGML_write found UCS-2 LE BOM\n"));
+		InferUtfFromBom(context, UTF8_handle);
+		str += 2;
+		context->T.ucs_mode = -1;
+	    } else if (!memcmp(str, "\376\377", 2)) {
+		CTRACE((tfp, "SGML_write found UCS-2 BE BOM\n"));
+		InferUtfFromBom(context, UTF8_handle);
+		str += 2;
+		context->T.ucs_mode = 1;
+	    }
+	}
+    }
+    switch (context->T.ucs_mode) {
+    case -1:
+	for (p = str; p < e; p += 2)
+	    SGML_widechar(context, (UCH(p[1]) << 8) | UCH(p[0]));
+	break;
+    case 1:
+	for (p = str; p < e; p += 2)
+	    SGML_widechar(context, (UCH(p[0]) << 8) | UCH(p[1]));
+	break;
+    default:
+	for (p = str; p < e; p++)
+	    SGML_character(context, *p);
+	break;
+    }
+}
+
+static void SGML_string(HTStream *context, const char *str)
+{
+    SGML_write(context, str, strlen(str));
 }
 
 /*_______________________________________________________________________
@@ -4507,11 +4555,12 @@ HTStream *SGML_new(const SGML_dtd * dtd,
  */
 int SGML_offset(void)
 {
+    int result = sgml_offset;
+
 #ifdef USE_PRETTYSRC
-    return sgml_offset + psrc_view;
-#else
-    return sgml_offset;
+    result += psrc_view;
 #endif
+    return result;
 }
 
 /*		Asian character conversion functions
diff --git a/WWW/Library/Implementation/UCAux.h b/WWW/Library/Implementation/UCAux.h
index c962095e..4d4bd84e 100644
--- a/WWW/Library/Implementation/UCAux.h
+++ b/WWW/Library/Implementation/UCAux.h
@@ -1,3 +1,6 @@
+/*
+ * $LynxId: UCAux.h,v 1.16 2009/03/10 21:17:21 tom Exp $
+ */
 #ifndef UCAUX_H
 #define UCAUX_H
 
@@ -39,6 +42,7 @@ extern "C" {
 	BOOL trans_C0_to_uni;
 	BOOL repl_translated_C0;
 	BOOL trans_from_uni;
+	int ucs_mode;
     };
     typedef struct _UCTransParams UCTransParams;
 
diff --git a/WWW/Library/Implementation/UCDefs.h b/WWW/Library/Implementation/UCDefs.h
index 8677824c..7555beaa 100644
--- a/WWW/Library/Implementation/UCDefs.h
+++ b/WWW/Library/Implementation/UCDefs.h
@@ -1,4 +1,8 @@
-/* Definitions for Unicode character-translations */
+/*
+ * $LynxId: UCDefs.h,v 1.17 2009/03/10 20:02:44 tom Exp $
+ *
+ * Definitions for Unicode character-translations
+ */
 
 #ifndef UCDEFS_H
 #define UCDEFS_H
@@ -27,14 +31,16 @@ typedef struct _LYUCcharset {
 				   "for which ranges is it like 8859-1" */
 } LYUCcharset;
 
-#define UCT_ENC_7BIT 0
-#define UCT_ENC_8BIT 1
-#define UCT_ENC_8859 2		/* no displayable chars in 0x80-0x9F */
-#define UCT_ENC_8BIT_C0 3	/* 8-bit + some chars in C0 control area */
-#define UCT_ENC_MAYBE2022 4
-#define UCT_ENC_CJK 5
-#define UCT_ENC_16BIT 6
-#define UCT_ENC_UTF8 7
+typedef enum {
+    UCT_ENC_7BIT,
+    UCT_ENC_8BIT,
+    UCT_ENC_8859,		/* no displayable chars in 0x80-0x9F */
+    UCT_ENC_8BIT_C0,		/* 8-bit + some chars in C0 control area */
+    UCT_ENC_MAYBE2022,
+    UCT_ENC_CJK,
+    UCT_ENC_16BIT,
+    UCT_ENC_UTF8
+} eUCT_ENC;
 
 #define UCT_REP_SUBSETOF_LAT1 0x01
 #define UCT_REP_SUPERSETOF_LAT1 0x02
@@ -64,24 +70,28 @@ typedef struct _LYUCcharset {
 #define UCT_R_HIGH8BIT 0x100	/* rest of 0xA0-0xFF range */
 
 #define UCT_R_ASCII UCT_R_7BITINV | UCT_R_7BITNAT	/* displayable US-ASCII */
-#define UCT_R_LAT1 UCT_R_ASCII | UCT_R_8859SPECL | UCT_R_HIGH8BIT
-#define UCT_R_8BIT UCT_R_LAT1 | UCT_R_HIGHCTRL	/* full 8bit range */
+#define UCT_R_LAT1  UCT_R_ASCII   | UCT_R_8859SPECL | UCT_R_HIGH8BIT
+#define UCT_R_8BIT  UCT_R_LAT1    | UCT_R_HIGHCTRL	/* full 8bit range */
 
 /*
  *  For the following some comments are in HTAnchor.c.
  */
-#define UCT_STAGE_MIME 0
-#define UCT_STAGE_PARSER 1	/* What the parser (SGML.c) gets to see */
-#define UCT_STAGE_STRUCTURED 2	/* What the structured stream (HTML) gets fed */
-#define UCT_STAGE_HTEXT 3	/* What gets fed to the HText_* functions */
-#define UCT_STAGEMAX 4
-
-#define UCT_SETBY_NONE 0
-#define UCT_SETBY_DEFAULT 1
-#define UCT_SETBY_LINK 2	/* set by A or LINK CHARSET= hint */
-#define UCT_SETBY_STRUCTURED 3	/* structured stream stage (HTML.c) */
-#define UCT_SETBY_PARSER 4	/* set by SGML parser or similar */
-#define UCT_SETBY_MIME 5	/* set explicitly by MIME charset parameter */
+typedef enum {
+    UCT_STAGE_MIME,
+    UCT_STAGE_PARSER,		/* What the parser (SGML.c) gets to see */
+    UCT_STAGE_STRUCTURED,	/* What the structured stream (HTML) gets fed */
+    UCT_STAGE_HTEXT,		/* What gets fed to the HText_* functions */
+    UCT_STAGEMAX
+} eUCT_STAGE;
+
+typedef enum {
+    UCT_SETBY_NONE,
+    UCT_SETBY_DEFAULT,
+    UCT_SETBY_LINK,		/* set by A or LINK CHARSET= hint */
+    UCT_SETBY_STRUCTURED,	/* structured stream stage (HTML.c) */
+    UCT_SETBY_PARSER,		/* set by SGML parser or similar */
+    UCT_SETBY_MIME		/* set explicitly by MIME charset parameter */
+} eUCT_SETBY;
 
 typedef struct _UCStageInfo {
     int lock;			/* by what it has been set */
diff --git a/WWW/Library/Implementation/www_tcp.h b/WWW/Library/Implementation/www_tcp.h
index 45216f7f..392fbd99 100644
--- a/WWW/Library/Implementation/www_tcp.h
+++ b/WWW/Library/Implementation/www_tcp.h
@@ -1,5 +1,5 @@
 /*                System dependencies in the W3 library
- * $LynxId: www_tcp.h,v 1.38 2008/12/30 01:01:34 Paul.Gilmartin Exp $
+ * $LynxId: www_tcp.h,v 1.39 2009/03/09 22:43:29 Doug.Kaufman Exp $
  *
                                    SYSTEM DEPENDENCIES
 
@@ -632,6 +632,9 @@ extern int errno;
 #ifdef word
 #undef word
 #endif /* word */
+#ifdef set_timeout
+#undef set_timeout
+#endif /* set_timeout */
 #define select select_s
 
 #undef NETWRITE
diff --git a/config.hin b/config.hin
index 9592a085..f40ace3d 100644
--- a/config.hin
+++ b/config.hin
@@ -1,5 +1,5 @@
 /*
- * $LynxId: config.hin,v 1.111 2009/01/03 16:02:07 tom Exp $
+ * $LynxId: config.hin,v 1.112 2009/03/09 22:43:29 Doug.Kaufman Exp $
  * vile:cmode
  *
  * The configure script translates "config.hin" into "lynx_cfg.h"
@@ -141,6 +141,7 @@
 #undef HAVE_SYS_IOCTL_H		/* have <sys/ioctl.h> */
 #undef HAVE_SYS_NDIR_H		/* AC_HEADER_DIRENT */
 #undef HAVE_SYS_PARAM_H		/* AM_GNU_GETTEXT */
+#undef HAVE_SYS_TIME_H		/* have <sys/time.h> */
 #undef HAVE_SYS_TIMEB_H		/* have <sys/timeb.h> */
 #undef HAVE_SYS_WAIT_H		/* have <sys/wait.h> */
 #undef HAVE_TERMIOS_H		/* have <termios.h> */
@@ -237,6 +238,7 @@
 #undef TELNET_PATH		/* CF_PATH_PROG(telnet) */
 #undef TERMIO_AND_CURSES	/* CF_TERMIO_AND_CURSES workaround */
 #undef TERMIO_AND_TERMIOS	/* CF_TERMIO_AND_TERMIOS workaround */
+#undef TIME_WITH_SYS_TIME	/* AC_HEADER_TIME */
 #undef TN3270_PATH		/* CF_PATH_PROG(tn3270) */
 #undef TOUCH_PATH		/* CF_PATH_PROG(touch) */
 #undef ULTRIX			/* config.sub */
diff --git a/configure b/configure
index 5d5dcb2f..15543ef6 100755
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
 #! /bin/sh
-# From configure.in 2.8.7dev.12.
+# From configure.in 2.8.7dev.13.
 # Guess values for system-dependent variables and create Makefiles.
 # Generated by Autoconf 2.52.20081225.
 #
@@ -2207,7 +2207,16 @@ else
 echo "${ECHO_T}no, using $LN_S" >&6
 fi
 
-echo "$as_me:2210: checking whether ${MAKE-make} sets \${MAKE}" >&5
+case $host_os in
+mingw*)
+LN_S="cp -p"
+echo "$as_me:2213: result: Override: No symbolic links in mingw." >&5
+echo "${ECHO_T}Override: No symbolic links in mingw." >&6
+	;;
+*)
+	;;
+esac
+echo "$as_me:2219: checking whether ${MAKE-make} sets \${MAKE}" >&5
 echo $ECHO_N "checking whether ${MAKE-make} sets \${MAKE}... $ECHO_C" >&6
 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,./+-,__p_,'`
 if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then
@@ -2227,11 +2236,11 @@ fi
 rm -f conftest.make
 fi
 if eval "test \"`echo '$ac_cv_prog_make_'${ac_make}_set`\" = yes"; then
-  echo "$as_me:2230: result: yes" >&5
+  echo "$as_me:2239: result: yes" >&5
 echo "${ECHO_T}yes" >&6
   SET_MAKE=
 else
-  echo "$as_me:2234: result: no" >&5
+  echo "$as_me:2243: result: no" >&5
 echo "${ECHO_T}no" >&6
   SET_MAKE="MAKE=${MAKE-make}"
 fi
@@ -2248,7 +2257,7 @@ fi
 # AFS /usr/afsws/bin/install, which mishandles nonexistent args
 # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
 # ./install, which can be erroneously created by make from ./install.sh.
-echo "$as_me:2251: checking for a BSD compatible install" >&5
+echo "$as_me:2260: checking for a BSD compatible install" >&5
 echo $ECHO_N "checking for a BSD compatible install... $ECHO_C" >&6
 if test -z "$INSTALL"; then
 if test "${ac_cv_path_install+set}" = set; then
@@ -2297,7 +2306,7 @@ fi
     INSTALL=$ac_install_sh
   fi
 fi
-echo "$as_me:2300: result: $INSTALL" >&5
+echo "$as_me:2309: result: $INSTALL" >&5
 echo "${ECHO_T}$INSTALL" >&6
 
 # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
@@ -2312,7 +2321,7 @@ for ac_prog in 'bison -y' byacc
 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:2315: checking for $ac_word" >&5
+echo "$as_me:2324: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_prog_YACC+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -2327,7 +2336,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_YACC="$ac_prog"
-echo "$as_me:2330: found $ac_dir/$ac_word" >&5
+echo "$as_me:2339: found $ac_dir/$ac_word" >&5
 break
 done
 
@@ -2335,10 +2344,10 @@ fi
 fi
 YACC=$ac_cv_prog_YACC
 if test -n "$YACC"; then
-  echo "$as_me:2338: result: $YACC" >&5
+  echo "$as_me:2347: result: $YACC" >&5
 echo "${ECHO_T}$YACC" >&6
 else
-  echo "$as_me:2341: result: no" >&5
+  echo "$as_me:2350: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -2350,7 +2359,7 @@ for ac_prog in lint alint lclint tdlint
 do
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
-echo "$as_me:2353: checking for $ac_word" >&5
+echo "$as_me:2362: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_prog_LINT+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -2365,7 +2374,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   $as_executable_p "$ac_dir/$ac_word" || continue
 ac_cv_prog_LINT="$ac_prog"
-echo "$as_me:2368: found $ac_dir/$ac_word" >&5
+echo "$as_me:2377: found $ac_dir/$ac_word" >&5
 break
 done
 
@@ -2373,20 +2382,20 @@ fi
 fi
 LINT=$ac_cv_prog_LINT
 if test -n "$LINT"; then
-  echo "$as_me:2376: result: $LINT" >&5
+  echo "$as_me:2385: result: $LINT" >&5
 echo "${ECHO_T}$LINT" >&6
 else
-  echo "$as_me:2379: result: no" >&5
+  echo "$as_me:2388: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
   test -n "$LINT" && break
 done
 
-echo "$as_me:2386: checking for AIX" >&5
+echo "$as_me:2395: checking for AIX" >&5
 echo $ECHO_N "checking for AIX... $ECHO_C" >&6
 cat >conftest.$ac_ext <<_ACEOF
-#line 2389 "configure"
+#line 2398 "configure"
 #include "confdefs.h"
 #ifdef _AIX
   yes
@@ -2395,24 +2404,24 @@ cat >conftest.$ac_ext <<_ACEOF
 _ACEOF
 if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
   egrep "yes" >/dev/null 2>&1; then
-  echo "$as_me:2398: result: yes" >&5
+  echo "$as_me:2407: result: yes" >&5
 echo "${ECHO_T}yes" >&6
 cat >>confdefs.h <<\EOF
 #define _ALL_SOURCE 1
 EOF
 
 else
-  echo "$as_me:2405: result: no" >&5
+  echo "$as_me:2414: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 rm -f conftest*
 
-echo "$as_me:2410: checking for POSIXized ISC" >&5
+echo "$as_me:2419: checking for POSIXized ISC" >&5
 echo $ECHO_N "checking for POSIXized ISC... $ECHO_C" >&6
 if test -d /etc/conf/kconfig.d &&
    grep _POSIX_VERSION /usr/include/sys/unistd.h >/dev/null 2>&1
 then
-  echo "$as_me:2415: result: yes" >&5
+  echo "$as_me:2424: result: yes" >&5
 echo "${ECHO_T}yes" >&6
   ISC=yes # If later tests want to check for ISC.
 
@@ -2426,7 +2435,7 @@ EOF
     CC="$CC -Xp"
   fi
 else
-  echo "$as_me:2429: result: no" >&5
+  echo "$as_me:2438: result: no" >&5
 echo "${ECHO_T}no" >&6
   ISC=
 fi
@@ -2467,7 +2476,7 @@ else
 do
   # Extract the first word of "$ac_prog", so it can be a program name with args.
 set dummy $ac_prog; ac_word=$2
-echo "$as_me:2470: checking for $ac_word" >&5
+echo "$as_me:2479: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_prog_BUILD_CC+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -2482,7 +2491,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   $as_executable_p "$ac_dir/$ac_word" || continue
 ac_cv_prog_BUILD_CC="$ac_prog"
-echo "$as_me:2485: found $ac_dir/$ac_word" >&5
+echo "$as_me:2494: found $ac_dir/$ac_word" >&5
 break
 done
 
@@ -2490,10 +2499,10 @@ fi
 fi
 BUILD_CC=$ac_cv_prog_BUILD_CC
 if test -n "$BUILD_CC"; then
-  echo "$as_me:2493: result: $BUILD_CC" >&5
+  echo "$as_me:2502: result: $BUILD_CC" >&5
 echo "${ECHO_T}$BUILD_CC" >&6
 else
-  echo "$as_me:2496: result: no" >&5
+  echo "$as_me:2505: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -2501,12 +2510,12 @@ fi
 done
 
 fi;
-	echo "$as_me:2504: checking for native build C compiler" >&5
+	echo "$as_me:2513: checking for native build C compiler" >&5
 echo $ECHO_N "checking for native build C compiler... $ECHO_C" >&6
-	echo "$as_me:2506: result: $BUILD_CC" >&5
+	echo "$as_me:2515: result: $BUILD_CC" >&5
 echo "${ECHO_T}$BUILD_CC" >&6
 
-	echo "$as_me:2509: checking for native build C preprocessor" >&5
+	echo "$as_me:2518: checking for native build C preprocessor" >&5
 echo $ECHO_N "checking for native build C preprocessor... $ECHO_C" >&6
 
 # Check whether --with-build-cpp or --without-build-cpp was given.
@@ -2516,10 +2525,10 @@ if test "${with_build_cpp+set}" = set; then
 else
   BUILD_CPP='${BUILD_CC} -E'
 fi;
-	echo "$as_me:2519: result: $BUILD_CPP" >&5
+	echo "$as_me:2528: result: $BUILD_CPP" >&5
 echo "${ECHO_T}$BUILD_CPP" >&6
 
-	echo "$as_me:2522: checking for native build C flags" >&5
+	echo "$as_me:2531: checking for native build C flags" >&5
 echo $ECHO_N "checking for native build C flags... $ECHO_C" >&6
 
 # Check whether --with-build-cflags or --without-build-cflags was given.
@@ -2527,10 +2536,10 @@ if test "${with_build_cflags+set}" = set; then
   withval="$with_build_cflags"
   BUILD_CFLAGS="$withval"
 fi;
-	echo "$as_me:2530: result: $BUILD_CFLAGS" >&5
+	echo "$as_me:2539: result: $BUILD_CFLAGS" >&5
 echo "${ECHO_T}$BUILD_CFLAGS" >&6
 
-	echo "$as_me:2533: checking for native build C preprocessor-flags" >&5
+	echo "$as_me:2542: checking for native build C preprocessor-flags" >&5
 echo $ECHO_N "checking for native build C preprocessor-flags... $ECHO_C" >&6
 
 # Check whether --with-build-cppflags or --without-build-cppflags was given.
@@ -2538,10 +2547,10 @@ if test "${with_build_cppflags+set}" = set; then
   withval="$with_build_cppflags"
   BUILD_CPPFLAGS="$withval"
 fi;
-	echo "$as_me:2541: result: $BUILD_CPPFLAGS" >&5
+	echo "$as_me:2550: result: $BUILD_CPPFLAGS" >&5
 echo "${ECHO_T}$BUILD_CPPFLAGS" >&6
 
-	echo "$as_me:2544: checking for native build linker-flags" >&5
+	echo "$as_me:2553: checking for native build linker-flags" >&5
 echo $ECHO_N "checking for native build linker-flags... $ECHO_C" >&6
 
 # Check whether --with-build-ldflags or --without-build-ldflags was given.
@@ -2549,10 +2558,10 @@ if test "${with_build_ldflags+set}" = set; then
   withval="$with_build_ldflags"
   BUILD_LDFLAGS="$withval"
 fi;
-	echo "$as_me:2552: result: $BUILD_LDFLAGS" >&5
+	echo "$as_me:2561: result: $BUILD_LDFLAGS" >&5
 echo "${ECHO_T}$BUILD_LDFLAGS" >&6
 
-	echo "$as_me:2555: checking for native build linker-libraries" >&5
+	echo "$as_me:2564: checking for native build linker-libraries" >&5
 echo $ECHO_N "checking for native build linker-libraries... $ECHO_C" >&6
 
 # Check whether --with-build-libs or --without-build-libs was given.
@@ -2560,7 +2569,7 @@ if test "${with_build_libs+set}" = set; then
   withval="$with_build_libs"
   BUILD_LIBS="$withval"
 fi;
-	echo "$as_me:2563: result: $BUILD_LIBS" >&5
+	echo "$as_me:2572: result: $BUILD_LIBS" >&5
 echo "${ECHO_T}$BUILD_LIBS" >&6
 
 	# this assumes we're on Unix.
@@ -2570,7 +2579,7 @@ echo "${ECHO_T}$BUILD_LIBS" >&6
 	: ${BUILD_CC:='${CC}'}
 
 	if ( test "$BUILD_CC" = "$CC" || test "$BUILD_CC" = '${CC}' ) ; then
-		{ { echo "$as_me:2573: error: Cross-build requires two compilers.
+		{ { echo "$as_me:2582: error: Cross-build requires two compilers.
 Use --with-build-cc to specify the native compiler." >&5
 echo "$as_me: error: Cross-build requires two compilers.
 Use --with-build-cc to specify the native compiler." >&2;}
@@ -2591,7 +2600,7 @@ fi
 if test -n "$ac_tool_prefix"; then
   # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args.
 set dummy ${ac_tool_prefix}ranlib; ac_word=$2
-echo "$as_me:2594: checking for $ac_word" >&5
+echo "$as_me:2603: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_prog_RANLIB+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -2606,7 +2615,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   $as_executable_p "$ac_dir/$ac_word" || continue
 ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib"
-echo "$as_me:2609: found $ac_dir/$ac_word" >&5
+echo "$as_me:2618: found $ac_dir/$ac_word" >&5
 break
 done
 
@@ -2614,10 +2623,10 @@ fi
 fi
 RANLIB=$ac_cv_prog_RANLIB
 if test -n "$RANLIB"; then
-  echo "$as_me:2617: result: $RANLIB" >&5
+  echo "$as_me:2626: result: $RANLIB" >&5
 echo "${ECHO_T}$RANLIB" >&6
 else
-  echo "$as_me:2620: result: no" >&5
+  echo "$as_me:2629: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -2626,7 +2635,7 @@ if test -z "$ac_cv_prog_RANLIB"; then
   ac_ct_RANLIB=$RANLIB
   # Extract the first word of "ranlib", so it can be a program name with args.
 set dummy ranlib; ac_word=$2
-echo "$as_me:2629: checking for $ac_word" >&5
+echo "$as_me:2638: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -2641,7 +2650,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   $as_executable_p "$ac_dir/$ac_word" || continue
 ac_cv_prog_ac_ct_RANLIB="ranlib"
-echo "$as_me:2644: found $ac_dir/$ac_word" >&5
+echo "$as_me:2653: found $ac_dir/$ac_word" >&5
 break
 done
 
@@ -2650,10 +2659,10 @@ fi
 fi
 ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB
 if test -n "$ac_ct_RANLIB"; then
-  echo "$as_me:2653: result: $ac_ct_RANLIB" >&5
+  echo "$as_me:2662: result: $ac_ct_RANLIB" >&5
 echo "${ECHO_T}$ac_ct_RANLIB" >&6
 else
-  echo "$as_me:2656: result: no" >&5
+  echo "$as_me:2665: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -2665,7 +2674,7 @@ fi
 if test -n "$ac_tool_prefix"; then
   # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
 set dummy ${ac_tool_prefix}ar; ac_word=$2
-echo "$as_me:2668: checking for $ac_word" >&5
+echo "$as_me:2677: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_prog_AR+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -2680,7 +2689,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   $as_executable_p "$ac_dir/$ac_word" || continue
 ac_cv_prog_AR="${ac_tool_prefix}ar"
-echo "$as_me:2683: found $ac_dir/$ac_word" >&5
+echo "$as_me:2692: found $ac_dir/$ac_word" >&5
 break
 done
 
@@ -2688,10 +2697,10 @@ fi
 fi
 AR=$ac_cv_prog_AR
 if test -n "$AR"; then
-  echo "$as_me:2691: result: $AR" >&5
+  echo "$as_me:2700: result: $AR" >&5
 echo "${ECHO_T}$AR" >&6
 else
-  echo "$as_me:2694: result: no" >&5
+  echo "$as_me:2703: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -2700,7 +2709,7 @@ if test -z "$ac_cv_prog_AR"; then
   ac_ct_AR=$AR
   # Extract the first word of "ar", so it can be a program name with args.
 set dummy ar; ac_word=$2
-echo "$as_me:2703: checking for $ac_word" >&5
+echo "$as_me:2712: checking for $ac_word" >&5
 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6
 if test "${ac_cv_prog_ac_ct_AR+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -2715,7 +2724,7 @@ for ac_dir in $ac_dummy; do
   test -z "$ac_dir" && ac_dir=.
   $as_executable_p "$ac_dir/$ac_word" || continue
 ac_cv_prog_ac_ct_AR="ar"
-echo "$as_me:2718: found $ac_dir/$ac_word" >&5
+echo "$as_me:2727: found $ac_dir/$ac_word" >&5
 break
 done
 
@@ -2724,10 +2733,10 @@ fi
 fi
 ac_ct_AR=$ac_cv_prog_ac_ct_AR
 if test -n "$ac_ct_AR"; then
-  echo "$as_me:2727: result: $ac_ct_AR" >&5
+  echo "$as_me:2736: result: $ac_ct_AR" >&5
 echo "${ECHO_T}$ac_ct_AR" >&6
 else
-  echo "$as_me:2730: result: no" >&5
+  echo "$as_me:2739: result: no" >&5
 echo "${ECHO_T}no" >&6
 fi
 
@@ -2736,7 +2745,7 @@ else
   AR="$ac_cv_prog_AR"
 fi
 
-echo "$as_me:2739: checking for options to update archives" >&5
+echo "$as_me:2748: checking for options to update archives" >&5
 echo $ECHO_N "checking for options to update archives... $ECHO_C" >&6
 if test "${cf_cv_ar_flags+set}" = set; then
   echo $ECHO_N "(cached) $ECHO_C" >&6
@@ -2749,13 +2758,13 @@ else
 		rm -f conftest.a
 
 		cat >conftest.$ac_ext <<EOF
-#line 2752 "configure"
+#line 2761 "configure"
 int	testdata[3] = { 123, 456, 789 };
 EOF
-		if { (eval echo "$as_me:2755: \"$ac_compile\"") >&5
+		if { (eval echo "$as_me:2764: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:2758: \$? = $ac_status" >&5
+  echo "$as_me:2767: \$? = $ac_status" >&5
   (exit $ac_status); } ; then
 			$AR $cf_ar_flags conftest.a conftest.$ac_cv_objext 2>&5 1>/dev/null
 			if test -f conftest.a ; then
@@ -2765,7 +2774,7 @@ EOF
 		else
 			test -n "$verbose" && echo "	cannot compile test-program" 1>&6
 
-echo "${as_me-configure}:2768: testing cannot compile test-program ..." 1>&5
+echo "${as_me-configure}:2777: testing cannot compile test-program ..." 1>&5
 
 			break
 		fi
@@ -2773,13 +2782,13 @@ echo "${as_me-configure}:2768: testing cannot compile test-program ..." 1>&5
 	rm -f conftest.a conftest.$ac_ext conftest.$ac_cv_objext
 
 fi
-echo "$as_me:2776: result: $cf_cv_ar_flags" >&5
+echo "$as_me:2785: result: $cf_cv_ar_flags" >&5
 echo "${ECHO_T}$cf_cv_ar_flags" >&6
 
 test -z "$ARFLAGS" && ARFLAGS=$cf_cv_ar_flags
 ARFLAGS=$cf_cv_ar_flags
 
-echo "$as_me:2782: checking if you want to see long compiling messages" >&5
+echo "$as_me:2791: checking if you want to see long compiling messages" >&5
 echo $ECHO_N "checking if you want to see long compiling messages... $ECHO_C" >&6
 
 # Check whether --enable-echo or --disable-echo was given.
@@ -2813,7 +2822,7 @@ else
     ECHO_CC=''
 
 fi;
-echo "$as_me:2816: result: $enableval" >&5
+echo "$as_me:2825: result: $enableval" >&5
 echo "${ECHO_T}$enableval" >&6
 
 # special case for WWW/*
@@ -2823,7 +2832,7 @@ else
 	DONT_ECHO_CC=''
 fi
 
-echo "$as_me:2826: checking if you want to check memory-leaks" >&5
+echo "$as_me:2835: checking if you want to check memory-leaks" >&5
 echo $ECHO_N "checking if you want to check memory-leaks... $ECHO_C" >&6
 
 # Check whether --enable-find-leaks or --disable-find-leaks was given.
@@ -2840,7 +2849,7 @@ else
   with_leak_checks=no
 
 fi;
-echo "$as_me:2843: result: $with_leak_checks" >&5
+echo "$as_me:2852: result: $with_leak_checks" >&5
 echo "${ECHO_T}$with_leak_checks" >&6
 test "$with_leak_checks" = "yes" && cat >>confdefs.h <<\EOF
 #define LY_FIND_LEAKS 1
@@ -2849,7 +2858,7 @@ EOF
 # The comment about adding -g to $CFLAGS is unclear.  Autoconf tries to add
 # a -g flag; we remove it if the user's $CFLAGS was not set and debugging is
 # disabled.
-echo "$as_me:2852: checking if you want to enable debug-code" >&5
+echo "$as_me:2861: checking if you want to enable debug-code" >&5
 echo $ECHO_N "checking if you want to enable debug-code... $ECHO_C" >&6
 
 # Check whether --enable-debug or --disable-debug was given.
@@ -2866,7 +2875,7 @@ else
   with_debug=no
 
 fi;
-echo "$as_me:2869: result: $with_debug" >&5
+echo "$as_me:2878: result: $with_debug" >&5
 echo "${ECHO_T}$with_debug" >&6
 if test "$with_debug" = "yes" ; then
 	case $host_os in
@@ -2891,7 +2900,7 @@ else
 	esac
 fi
 
-echo "$as_me:2894: checking if you want to enable lynx trace code *recommended* " >&5
+echo "$as_me:2903: checking if you want to enable lynx trace code *recommended* " >&5
 echo $ECHO_N "checking if you want to enable lynx trace code *recommended* ... $ECHO_C" >&6
 
 # Check whether --enable-trace or --disable-trace was given.
@@ -2908,13 +2917,13 @@ else
   with_trace=yes
 
 fi;
-echo "$as_me:2911: result: $with_trace" >&5
+echo "$as_me:2920: result: $with_trace" >&5
 echo "${ECHO_T}$with_trace" >&6
 test $with_trace = no && cat >>confdefs.h <<\EOF
 #define NO_LYNX_TRACE 1
 EOF
 
-echo "$as_me:2917: checking if you want verbose trace code" >&5
+echo "$as_me:2926: checking if you want verbose trace code" >&5
 echo $ECHO_N "checking if you want verbose trace code... $ECHO_C" >&6
 
 # Check whether --enable-vertrace or --disable-vertrace was given.
@@ -2931,7 +2940,7 @@ else
   with_vertrace=no
 
 fi;
-echo "$as_me:2934: result: $with_vertrace" >&5
+echo "$as_me:2943: result: $with_vertrace" >&5
 echo "${ECHO_T}$with_vertrace" >&6
 test $with_vertrace = yes && cat >>confdefs.h <<\EOF
 #define LY_TRACELINE __LINE__
@@ -2939,7 +2948,7 @@ EOF
 
 if test -n "$GCC"
 then
-echo "$as_me:2942: checking if you want to turn on gcc warnings" >&5
+echo "$as_me:2951: checking if you want to turn on gcc warnings" >&5
 echo $ECHO_N "checking if you want to turn on gcc warnings... $ECHO_C" >&6
 
 # Check whether --enable-warnings or --disable-warnings was given.
@@ -2956,7 +2965,7 @@ else
   with_warnings=no
 
 fi;
-echo "$as_me:2959: result: $with_warnings" >&5
+echo "$as_me:2968: result: $with_warnings" >&5
 echo "${ECHO_T}$with_warnings" >&6
 if test "$with_warnings" = "yes"
 then
@@ -2979,10 +2988,10 @@ cat > conftest.i <<EOF
 EOF
 if test "$GCC" = yes
 then
-	{ echo "$as_me:2982: checking for $CC __attribute__ directives..." >&5
+	{ echo "$as_me:2991: checking for $CC __attribute__ directives..." >&5
 echo "$as_me: checking for $CC __attribute__ directives..." >&6;}
 cat > conftest.$ac_ext <<EOF
-#line 2985 "${as_me-configure}"
+#line 2994 "${as_me-configure}"
 #include "confdefs.h"
 #include "conftest.h"
 #include "conftest.i"
@@ -3020,12 +3029,12 @@ EOF
 EOF
 			;;
 		esac
-		if { (eval echo "$as_me:3023: \"$ac_compile\"") >&5
+		if { (eval echo "$as_me:3032: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:3026: \$? = $ac_status" >&5
+  echo "$as_me:3035: \$? = $ac_status" >&5
   (exit $ac_status); }; then
-			test -n "$verbose" && echo "$as_me:3028: result: ... $cf_attribute" >&5
+			test -n "$verbose" && echo "$as_me:3037: result: ... $cf_attribute" >&5
 echo "${ECHO_T}... $cf_attribute" >&6
 			cat conftest.h >>confdefs.h
 		fi
@@ -3038,11 +3047,11 @@ fi
 
 GCC_VERSION=none
 if test "$GCC" = yes ; then
-	echo "$as_me:3041: checking version of $CC" >&5
+	echo "$as_me:3050: checking version of $CC" >&5
 echo $ECHO_N "checking version of $CC... $ECHO_C" >&6
 	GCC_VERSION="`${CC} --version| sed -e '2,$d' -e 's/^.*(GCC) //' -e 's/^[^0-9.]*//' -e 's/[^0-9.].*//'`"
 	test -z "$GCC_VERSION" && GCC_VERSION=unknown
-	echo "$as_me:3045: result: $GCC_VERSION" >&5
+	echo "$as_me:3054: result: $GCC_VERSION" >&5
 echo "${ECHO_T}$GCC_VERSION" >&6
 fi
 
@@ -3051,12 +3060,12 @@ INTEL_COMPILER=no
 if test "$GCC" = yes ; then
 	case $host_os in
 	linux*|gnu*)
-		echo "$as_me:3054: checking if this is really Intel C compiler" >&5
+		echo "$as_me:3063: checking if this is really Intel C compiler" >&5
 echo $ECHO_N "checking if this is really Intel C compiler... $ECHO_C" >&6
 		cf_save_CFLAGS="$CFLAGS"
 		CFLAGS="$CFLAGS -no-gcc"
 		cat >conftest.$ac_ext <<_ACEOF
-#line 3059 "configure"
+#line 3068 "configure"
 #include "confdefs.h"
 
 int
@@ -3073,16 +3082,16 @@ make an error
 }
 _ACEOF
 rm -f conftest.$ac_objext
-if { (eval echo "$as_me:3076: \"$ac_compile\"") >&5
+if { (eval echo "$as_me:3085: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:3079: \$? = $ac_status" >&5
+  echo "$as_me:3088: \$? = $ac_status" >&5
   (exit $ac_status); } &&
          { ac_try='test -s conftest.$ac_objext'
-  { (eval echo "$as_me:3082: \"$ac_try\"") >&5
+  { (eval echo "$as_me:3091: \"$ac_try\"") >&5
   (eval $ac_try) 2>&5
   ac_status=$?
-  echo "$as_me:3085: \$? = $ac_status" >&5
+  echo "$as_me:3094: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
   INTEL_COMPILER=yes
 cf_save_CFLAGS="$cf_save_CFLAGS -we147 -no-gcc"
@@ -3093,14 +3102,14 @@ cat conftest.$ac_ext >&5
 fi
 rm -f conftest.$ac_objext conftest.$ac_ext
 		CFLAGS="$cf_save_CFLAGS"
-		echo "$as_me:3096: result: $INTEL_COMPILER" >&5
+		echo "$as_me:3105: result: $INTEL_COMPILER" >&5
 echo "${ECHO_T}$INTEL_COMPILER" >&6
 		;;
 	esac
 fi
 
 cat > conftest.$ac_ext <<EOF
-#line 3103 "${as_me-configure}"
+#line 3112 "${as_me-configure}"
 int main(int argc, char *argv[]) { return (argv[argc-1] == 0) ; }
 EOF
 
@@ -3117,7 +3126,7 @@ then
 # remark #981: operands are evaluated in unspecified order
 # warning #279: controlling expression is constant
 
-	{ echo "$as_me:3120: checking for $CC warning options..." >&5
+	{ echo "$as_me:3129: checking for $CC warning options..." >&5
 echo "$as_me: checking for $CC warning options..." >&6;}
 	cf_save_CFLAGS="$CFLAGS"
 	EXTRA_CFLAGS="-Wall"
@@ -3133,12 +3142,12 @@ echo "$as_me: checking for $CC warning options..." >&6;}
 		wd981
 	do
 		CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt"
-		if { (eval echo "$as_me:3136: \"$ac_compile\"") >&5
+		if { (eval echo "$as_me:3145: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:3139: \$? = $ac_status" >&5
+  echo "$as_me:3148: \$? = $ac_status" >&5
   (exit $ac_status); }; then
-			test -n "$verbose" && echo "$as_me:3141: result: ... -$cf_opt" >&5
+			test -n "$verbose" && echo "$as_me:3150: result: ... -$cf_opt" >&5
 echo "${ECHO_T}... -$cf_opt" >&6
 			EXTRA_CFLAGS="$EXTRA_CFLAGS -$cf_opt"
 		fi
@@ -3147,7 +3156,7 @@ echo "${ECHO_T}... -$cf_opt" >&6
 
 elif test "$GCC" = yes
 then
-	{ echo "$as_me:3150: checking for $CC warning options..." >&5
+	{ echo "$as_me:3159: checking for $CC warning options..." >&5
 echo "$as_me: checking for $CC warning options..." >&6;}
 	cf_save_CFLAGS="$CFLAGS"
 	EXTRA_CFLAGS="-W -Wall"
@@ -3167,12 +3176,12 @@ echo "$as_me: checking for $CC warning options..." >&6;}
 		Wundef $cf_warn_CONST
 	do
 		CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt"
-		if { (eval echo "$as_me:3170: \"$ac_compile\"") >&5
+		if { (eval echo "$as_me:3179: \"$ac_compile\"") >&5
   (eval $ac_compile) 2>&5
   ac_status=$?
-  echo "$as_me:3173: \$? = $ac_status" >&5
+  echo "$as_me:3182: \$? = $ac_status" >&5
   (exit $ac_status); }; then
-			test -n "$verbose" && echo "$as_me:3175: result: ... -$cf_opt" >&5
+			test -n "$verbose" && echo "$as_me:3184: result: ... -$cf_opt" >&5
 echo "${ECHO_T}... -$cf_opt" >&6
 			case $cf_opt in #(vi
 			Wcast-qual) #(vi
@@ -3183,7 +3192,7 @@ echo "${ECHO_T}... -$cf_opt" >&6
 				[34].*)
 					test -n "$verbose" && echo "	feature is broken in gcc $GCC_VERSION" 1>&6
 
-echo "${as_me-configure}:3186: testing feature is broken in gcc $GCC_VERSION ..." 1>&5
+echo "${as_me-configure}:3195: testing feature is broken in gcc $GCC_VERSION ..." 1>&5
 
 					continue;;
 				esac
ant to use dbmalloc for testing" >&5 echo $ECHO_N "checking if you want to use dbmalloc for testing... $ECHO_C" >&6 # Check whether --with-dbmalloc or --without-dbmalloc was given. @@ -3215,7 +3224,7 @@ EOF else with_dbmalloc= fi; -echo "$as_me:3218: result: ${with_dbmalloc:-no}" >&5 +echo "$as_me:3227: result: ${with_dbmalloc:-no}" >&5 echo "${ECHO_T}${with_dbmalloc:-no}" >&6 case .$with_cflags in #(vi @@ -3299,23 +3308,23 @@ fi esac if test "$with_dbmalloc" = yes ; then - echo "$as_me:3302: checking for dbmalloc.h" >&5 + echo "$as_me:3311: checking for dbmalloc.h" >&5 echo $ECHO_N "checking for dbmalloc.h... $ECHO_C" >&6 if test "${ac_cv_header_dbmalloc_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 3308 "configure" +#line 3317 "configure" #include "confdefs.h" #include <dbmalloc.h> _ACEOF -if { (eval echo "$as_me:3312: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:3321: \"$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:3318: \$? = $ac_status" >&5 + echo "$as_me:3327: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -3334,11 +3343,11 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:3337: result: $ac_cv_header_dbmalloc_h" >&5 +echo "$as_me:3346: result: $ac_cv_header_dbmalloc_h" >&5 echo "${ECHO_T}$ac_cv_header_dbmalloc_h" >&6 if test $ac_cv_header_dbmalloc_h = yes; then -echo "$as_me:3341: checking for debug_malloc in -ldbmalloc" >&5 +echo "$as_me:3350: checking for debug_malloc in -ldbmalloc" >&5 echo $ECHO_N "checking for debug_malloc in -ldbmalloc... $ECHO_C" >&6 if test "${ac_cv_lib_dbmalloc_debug_malloc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3346,7 +3355,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldbmalloc $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 3349 "configure" +#line 3358 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -3365,16 +3374,16 @@ debug_malloc (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:3368: \"$ac_link\"") >&5 +if { (eval echo "$as_me:3377: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:3371: \$? = $ac_status" >&5 + echo "$as_me:3380: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:3374: \"$ac_try\"") >&5 + { (eval echo "$as_me:3383: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3377: \$? = $ac_status" >&5 + echo "$as_me:3386: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dbmalloc_debug_malloc=yes else @@ -3385,7 +3394,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:3388: result: $ac_cv_lib_dbmalloc_debug_malloc" >&5 +echo "$as_me:3397: result: $ac_cv_lib_dbmalloc_debug_malloc" >&5 echo "${ECHO_T}$ac_cv_lib_dbmalloc_debug_malloc" >&6 if test $ac_cv_lib_dbmalloc_debug_malloc = yes; then cat >>confdefs.h <<EOF @@ -3400,7 +3409,7 @@ fi fi -echo "$as_me:3403: checking if you want to use dmalloc for testing" >&5 +echo "$as_me:3412: checking if you want to use dmalloc for testing" >&5 echo $ECHO_N "checking if you want to use dmalloc for testing... $ECHO_C" >&6 # Check whether --with-dmalloc or --without-dmalloc was given. @@ -3416,7 +3425,7 @@ EOF else with_dmalloc= fi; -echo "$as_me:3419: result: ${with_dmalloc:-no}" >&5 +echo "$as_me:3428: result: ${with_dmalloc:-no}" >&5 echo "${ECHO_T}${with_dmalloc:-no}" >&6 case .$with_cflags in #(vi @@ -3500,23 +3509,23 @@ fi esac if test "$with_dmalloc" = yes ; then - echo "$as_me:3503: checking for dmalloc.h" >&5 + echo "$as_me:3512: checking for dmalloc.h" >&5 echo $ECHO_N "checking for dmalloc.h... $ECHO_C" >&6 if test "${ac_cv_header_dmalloc_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 3509 "configure" +#line 3518 "configure" #include "confdefs.h" #include <dmalloc.h> _ACEOF -if { (eval echo "$as_me:3513: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:3522: \"$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:3519: \$? = $ac_status" >&5 + echo "$as_me:3528: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -3535,11 +3544,11 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:3538: result: $ac_cv_header_dmalloc_h" >&5 +echo "$as_me:3547: result: $ac_cv_header_dmalloc_h" >&5 echo "${ECHO_T}$ac_cv_header_dmalloc_h" >&6 if test $ac_cv_header_dmalloc_h = yes; then -echo "$as_me:3542: checking for dmalloc_debug in -ldmalloc" >&5 +echo "$as_me:3551: checking for dmalloc_debug in -ldmalloc" >&5 echo $ECHO_N "checking for dmalloc_debug in -ldmalloc... $ECHO_C" >&6 if test "${ac_cv_lib_dmalloc_dmalloc_debug+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3547,7 +3556,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldmalloc $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 3550 "configure" +#line 3559 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -3566,16 +3575,16 @@ dmalloc_debug (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:3569: \"$ac_link\"") >&5 +if { (eval echo "$as_me:3578: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:3572: \$? = $ac_status" >&5 + echo "$as_me:3581: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:3575: \"$ac_try\"") >&5 + { (eval echo "$as_me:3584: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3578: \$? = $ac_status" >&5 + echo "$as_me:3587: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dmalloc_dmalloc_debug=yes else @@ -3586,7 +3595,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:3589: result: $ac_cv_lib_dmalloc_dmalloc_debug" >&5 +echo "$as_me:3598: result: $ac_cv_lib_dmalloc_dmalloc_debug" >&5 echo "${ECHO_T}$ac_cv_lib_dmalloc_dmalloc_debug" >&6 if test $ac_cv_lib_dmalloc_dmalloc_debug = yes; then cat >>confdefs.h <<EOF @@ -3605,7 +3614,7 @@ cat >>confdefs.h <<\EOF #define UNIX 1 EOF -echo "$as_me:3608: checking for $CC option to accept ANSI C" >&5 +echo "$as_me:3617: checking for $CC option to accept ANSI C" >&5 echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6 if test "${ac_cv_prog_cc_stdc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3613,7 +3622,7 @@ else ac_cv_prog_cc_stdc=no ac_save_CC=$CC cat >conftest.$ac_ext <<_ACEOF -#line 3616 "configure" +#line 3625 "configure" #include "confdefs.h" #include <stdarg.h> #include <stdio.h> @@ -3662,16 +3671,16 @@ for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIO do CC="$ac_save_CC $ac_arg" rm -f conftest.$ac_objext -if { (eval echo "$as_me:3665: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:3674: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:3668: \$? = $ac_status" >&5 + echo "$as_me:3677: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:3671: \"$ac_try\"") >&5 + { (eval echo "$as_me:3680: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3674: \$? = $ac_status" >&5 + echo "$as_me:3683: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_prog_cc_stdc=$ac_arg break @@ -3688,21 +3697,21 @@ fi case "x$ac_cv_prog_cc_stdc" in x|xno) - echo "$as_me:3691: result: none needed" >&5 + echo "$as_me:3700: result: none needed" >&5 echo "${ECHO_T}none needed" >&6 ;; *) - echo "$as_me:3694: result: $ac_cv_prog_cc_stdc" >&5 + echo "$as_me:3703: result: $ac_cv_prog_cc_stdc" >&5 echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6 CC="$CC $ac_cv_prog_cc_stdc" ;; esac -echo "$as_me:3699: checking for an ANSI C-conforming const" >&5 +echo "$as_me:3708: checking for an ANSI C-conforming const" >&5 echo $ECHO_N "checking for an ANSI C-conforming const... $ECHO_C" >&6 if test "${ac_cv_c_const+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 3705 "configure" +#line 3714 "configure" #include "confdefs.h" int @@ -3760,16 +3769,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:3763: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:3772: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:3766: \$? = $ac_status" >&5 + echo "$as_me:3775: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:3769: \"$ac_try\"") >&5 + { (eval echo "$as_me:3778: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3772: \$? = $ac_status" >&5 + echo "$as_me:3781: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_const=yes else @@ -3779,7 +3788,7 @@ ac_cv_c_const=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:3782: result: $ac_cv_c_const" >&5 +echo "$as_me:3791: result: $ac_cv_c_const" >&5 echo "${ECHO_T}$ac_cv_c_const" >&6 if test $ac_cv_c_const = no; then @@ -3827,7 +3836,7 @@ clix*) # contributed by Alex Matulich (matuli_a@marlin.navsea.navy.mil) also # references -lmalloc and -lbsd. -echo "$as_me:3830: checking for strcmp in -lc_s" >&5 +echo "$as_me:3839: checking for strcmp in -lc_s" >&5 echo $ECHO_N "checking for strcmp in -lc_s... $ECHO_C" >&6 if test "${ac_cv_lib_c_s_strcmp+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3835,7 +3844,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lc_s $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 3838 "configure" +#line 3847 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -3854,16 +3863,16 @@ strcmp (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:3857: \"$ac_link\"") >&5 +if { (eval echo "$as_me:3866: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:3860: \$? = $ac_status" >&5 + echo "$as_me:3869: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:3863: \"$ac_try\"") >&5 + { (eval echo "$as_me:3872: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3866: \$? = $ac_status" >&5 + echo "$as_me:3875: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_c_s_strcmp=yes else @@ -3874,7 +3883,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:3877: result: $ac_cv_lib_c_s_strcmp" >&5 +echo "$as_me:3886: result: $ac_cv_lib_c_s_strcmp" >&5 echo "${ECHO_T}$ac_cv_lib_c_s_strcmp" >&6 if test $ac_cv_lib_c_s_strcmp = yes; then cat >>confdefs.h <<EOF @@ -4029,14 +4038,14 @@ sco*) # SCO's cc (which is reported to have broken const/volatile). case "$CC" in #(vi cc|*/cc) - { echo "$as_me:4032: WARNING: You should consider using gcc or rcc if available" >&5 + { echo "$as_me:4041: WARNING: You should consider using gcc or rcc if available" >&5 echo "$as_me: WARNING: You should consider using gcc or rcc if available" >&2;} unset ac_cv_prog_CC for ac_prog in gcc rcc do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:4039: checking for $ac_word" >&5 +echo "$as_me:4048: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -4051,7 +4060,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_CC="$ac_prog" -echo "$as_me:4054: found $ac_dir/$ac_word" >&5 +echo "$as_me:4063: found $ac_dir/$ac_word" >&5 break done @@ -4059,10 +4068,10 @@ fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then - echo "$as_me:4062: result: $CC" >&5 + echo "$as_me:4071: result: $CC" >&5 echo "${ECHO_T}$CC" >&6 else - echo "$as_me:4065: result: no" >&5 + echo "$as_me:4074: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -4085,23 +4094,23 @@ sony-newsos*) for ac_header in jcurses.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:4088: checking for $ac_header" >&5 +echo "$as_me:4097: 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 4094 "configure" +#line 4103 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:4098: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:4107: \"$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:4104: \$? = $ac_status" >&5 + echo "$as_me:4113: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -4120,7 +4129,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:4123: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:4132: 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 @@ -4148,23 +4157,23 @@ ultrix*) for ac_header in cursesX.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:4151: checking for $ac_header" >&5 +echo "$as_me:4160: 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 4157 "configure" +#line 4166 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:4161: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:4170: \"$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:4167: \$? = $ac_status" >&5 + echo "$as_me:4176: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -4183,7 +4192,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:4186: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:4195: 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 @@ -4200,7 +4209,13 @@ done ;; esac -echo "$as_me:4203: checking for ${CC-cc} option to accept ANSI C" >&5 +case $host_os in +mingw*) + EXTRA_OBJS="$EXTRA_OBJS LYIcon\$o" + ;; +esac + +echo "$as_me:4218: checking for ${CC-cc} option to accept ANSI C" >&5 echo $ECHO_N "checking for ${CC-cc} option to accept ANSI C... $ECHO_C" >&6 if test "${cf_cv_ansi_cc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -4294,7 +4309,7 @@ if test -n "$cf_new_extra_cppflags" ; then fi cat >conftest.$ac_ext <<_ACEOF -#line 4297 "configure" +#line 4312 "configure" #include "confdefs.h" #ifndef CC_HAS_PROTOS @@ -4315,16 +4330,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4318: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4333: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4321: \$? = $ac_status" >&5 + echo "$as_me:4336: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4324: \"$ac_try\"") >&5 + { (eval echo "$as_me:4339: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4327: \$? = $ac_status" >&5 + echo "$as_me:4342: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ansi_cc="$cf_arg"; break else @@ -4337,7 +4352,7 @@ CFLAGS="$cf_save_CFLAGS" CPPFLAGS="$cf_save_CPPFLAGS" fi -echo "$as_me:4340: result: $cf_cv_ansi_cc" >&5 +echo "$as_me:4355: result: $cf_cv_ansi_cc" >&5 echo "${ECHO_T}$cf_cv_ansi_cc" >&6 if test "$cf_cv_ansi_cc" != "no"; then @@ -4420,7 +4435,7 @@ fi fi if test "$cf_cv_ansi_cc" = "no"; then - { { echo "$as_me:4423: error: Your compiler does not appear to recognize prototypes. + { { echo "$as_me:4438: error: Your compiler does not appear to recognize prototypes. You have the following choices: a. adjust your compiler options b. get an up-to-date compiler @@ -4440,7 +4455,7 @@ if test "${enable_largefile+set}" = set; then fi; if test "$enable_largefile" != no; then - echo "$as_me:4443: checking for special C compiler options needed for large files" >&5 + echo "$as_me:4458: checking for special C compiler options needed for large files" >&5 echo $ECHO_N "checking for special C compiler options needed for large files... $ECHO_C" >&6 if test "${ac_cv_sys_largefile_CC+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -4452,7 +4467,7 @@ else # IRIX 6.2 and later do not support large files by default, # so use the C compiler's -n32 option if that helps. cat >conftest.$ac_ext <<_ACEOF -#line 4455 "configure" +#line 4470 "configure" #include "confdefs.h" #include <sys/types.h> /* Check that off_t can represent 2**63 - 1 correctly. @@ -4472,16 +4487,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4475: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4490: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4478: \$? = $ac_status" >&5 + echo "$as_me:4493: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4481: \"$ac_try\"") >&5 + { (eval echo "$as_me:4496: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4484: \$? = $ac_status" >&5 + echo "$as_me:4499: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else @@ -4491,16 +4506,16 @@ fi rm -f conftest.$ac_objext CC="$CC -n32" rm -f conftest.$ac_objext -if { (eval echo "$as_me:4494: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4509: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4497: \$? = $ac_status" >&5 + echo "$as_me:4512: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4500: \"$ac_try\"") >&5 + { (eval echo "$as_me:4515: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4503: \$? = $ac_status" >&5 + echo "$as_me:4518: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sys_largefile_CC=' -n32'; break else @@ -4514,13 +4529,13 @@ rm -f conftest.$ac_objext rm -f conftest.$ac_ext fi fi -echo "$as_me:4517: result: $ac_cv_sys_largefile_CC" >&5 +echo "$as_me:4532: result: $ac_cv_sys_largefile_CC" >&5 echo "${ECHO_T}$ac_cv_sys_largefile_CC" >&6 if test "$ac_cv_sys_largefile_CC" != no; then CC=$CC$ac_cv_sys_largefile_CC fi - echo "$as_me:4523: checking for _FILE_OFFSET_BITS value needed for large files" >&5 + echo "$as_me:4538: checking for _FILE_OFFSET_BITS value needed for large files" >&5 echo $ECHO_N "checking for _FILE_OFFSET_BITS value needed for large files... $ECHO_C" >&6 if test "${ac_cv_sys_file_offset_bits+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -4528,7 +4543,7 @@ else while :; do ac_cv_sys_file_offset_bits=no cat >conftest.$ac_ext <<_ACEOF -#line 4531 "configure" +#line 4546 "configure" #include "confdefs.h" #include <sys/types.h> /* Check that off_t can represent 2**63 - 1 correctly. @@ -4548,16 +4563,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4551: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4566: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4554: \$? = $ac_status" >&5 + echo "$as_me:4569: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4557: \"$ac_try\"") >&5 + { (eval echo "$as_me:4572: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4560: \$? = $ac_status" >&5 + echo "$as_me:4575: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else @@ -4566,7 +4581,7 @@ cat conftest.$ac_ext >&5 fi rm -f conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF -#line 4569 "configure" +#line 4584 "configure" #include "confdefs.h" #define _FILE_OFFSET_BITS 64 #include <sys/types.h> @@ -4587,16 +4602,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4590: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4605: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4593: \$? = $ac_status" >&5 + echo "$as_me:4608: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4596: \"$ac_try\"") >&5 + { (eval echo "$as_me:4611: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4599: \$? = $ac_status" >&5 + echo "$as_me:4614: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sys_file_offset_bits=64; break else @@ -4607,7 +4622,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext break done fi -echo "$as_me:4610: result: $ac_cv_sys_file_offset_bits" >&5 +echo "$as_me:4625: result: $ac_cv_sys_file_offset_bits" >&5 echo "${ECHO_T}$ac_cv_sys_file_offset_bits" >&6 if test "$ac_cv_sys_file_offset_bits" != no; then @@ -4617,7 +4632,7 @@ EOF fi rm -f conftest* - echo "$as_me:4620: checking for _LARGE_FILES value needed for large files" >&5 + echo "$as_me:4635: checking for _LARGE_FILES value needed for large files" >&5 echo $ECHO_N "checking for _LARGE_FILES value needed for large files... $ECHO_C" >&6 if test "${ac_cv_sys_large_files+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -4625,7 +4640,7 @@ else while :; do ac_cv_sys_large_files=no cat >conftest.$ac_ext <<_ACEOF -#line 4628 "configure" +#line 4643 "configure" #include "confdefs.h" #include <sys/types.h> /* Check that off_t can represent 2**63 - 1 correctly. @@ -4645,16 +4660,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4648: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4663: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4651: \$? = $ac_status" >&5 + echo "$as_me:4666: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4654: \"$ac_try\"") >&5 + { (eval echo "$as_me:4669: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4657: \$? = $ac_status" >&5 + echo "$as_me:4672: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else @@ -4663,7 +4678,7 @@ cat conftest.$ac_ext >&5 fi rm -f conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF -#line 4666 "configure" +#line 4681 "configure" #include "confdefs.h" #define _LARGE_FILES 1 #include <sys/types.h> @@ -4684,16 +4699,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4687: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4702: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4690: \$? = $ac_status" >&5 + echo "$as_me:4705: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4693: \"$ac_try\"") >&5 + { (eval echo "$as_me:4708: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4696: \$? = $ac_status" >&5 + echo "$as_me:4711: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sys_large_files=1; break else @@ -4704,7 +4719,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext break done fi -echo "$as_me:4707: result: $ac_cv_sys_large_files" >&5 +echo "$as_me:4722: result: $ac_cv_sys_large_files" >&5 echo "${ECHO_T}$ac_cv_sys_large_files" >&6 if test "$ac_cv_sys_large_files" != no; then @@ -4717,7 +4732,7 @@ rm -f conftest* fi if test "$enable_largefile" != no ; then - echo "$as_me:4720: checking for _LARGEFILE_SOURCE value needed for large files" >&5 + echo "$as_me:4735: checking for _LARGEFILE_SOURCE value needed for large files" >&5 echo $ECHO_N "checking for _LARGEFILE_SOURCE value needed for large files... $ECHO_C" >&6 if test "${ac_cv_sys_largefile_source+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -4725,7 +4740,7 @@ else while :; do ac_cv_sys_largefile_source=no cat >conftest.$ac_ext <<_ACEOF -#line 4728 "configure" +#line 4743 "configure" #include "confdefs.h" #include <stdio.h> int @@ -4737,16 +4752,16 @@ return !fseeko; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4740: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4755: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4743: \$? = $ac_status" >&5 + echo "$as_me:4758: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4746: \"$ac_try\"") >&5 + { (eval echo "$as_me:4761: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4749: \$? = $ac_status" >&5 + echo "$as_me:4764: \$? = $ac_status" >&5 (exit $ac_status); }; }; then break else @@ -4755,7 +4770,7 @@ cat conftest.$ac_ext >&5 fi rm -f conftest.$ac_objext conftest.$ac_ext cat >conftest.$ac_ext <<_ACEOF -#line 4758 "configure" +#line 4773 "configure" #include "confdefs.h" #define _LARGEFILE_SOURCE 1 #include <stdio.h> @@ -4768,16 +4783,16 @@ return !fseeko; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4771: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4786: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4774: \$? = $ac_status" >&5 + echo "$as_me:4789: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4777: \"$ac_try\"") >&5 + { (eval echo "$as_me:4792: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4780: \$? = $ac_status" >&5 + echo "$as_me:4795: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sys_largefile_source=1; break else @@ -4788,7 +4803,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext break done fi -echo "$as_me:4791: result: $ac_cv_sys_largefile_source" >&5 +echo "$as_me:4806: result: $ac_cv_sys_largefile_source" >&5 echo "${ECHO_T}$ac_cv_sys_largefile_source" >&6 if test "$ac_cv_sys_largefile_source" != no; then @@ -4802,13 +4817,13 @@ rm -f conftest* # We used to try defining _XOPEN_SOURCE=500 too, to work around a bug # in glibc 2.1.3, but that breaks too many other things. # If you want fseeko and ftello with glibc, upgrade to a fixed glibc. -echo "$as_me:4805: checking for fseeko" >&5 +echo "$as_me:4820: checking for fseeko" >&5 echo $ECHO_N "checking for fseeko... $ECHO_C" >&6 if test "${ac_cv_func_fseeko+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 4811 "configure" +#line 4826 "configure" #include "confdefs.h" #include <stdio.h> int @@ -4820,16 +4835,16 @@ return fseeko && fseeko (stdin, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:4823: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4838: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:4826: \$? = $ac_status" >&5 + echo "$as_me:4841: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:4829: \"$ac_try\"") >&5 + { (eval echo "$as_me:4844: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4832: \$? = $ac_status" >&5 + echo "$as_me:4847: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_fseeko=yes else @@ -4839,7 +4854,7 @@ ac_cv_func_fseeko=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:4842: result: $ac_cv_func_fseeko" >&5 +echo "$as_me:4857: result: $ac_cv_func_fseeko" >&5 echo "${ECHO_T}$ac_cv_func_fseeko" >&6 if test $ac_cv_func_fseeko = yes; then @@ -4860,14 +4875,14 @@ fi test "$ac_cv_sys_largefile_source" != no && CPPFLAGS="$CPPFLAGS -D_LARGEFILE_SOURCE " test "$ac_cv_sys_file_offset_bits" != no && CPPFLAGS="$CPPFLAGS -D_FILE_OFFSET_BITS=$ac_cv_sys_file_offset_bits " - echo "$as_me:4863: checking whether to use struct dirent64" >&5 + echo "$as_me:4878: checking whether to use struct dirent64" >&5 echo $ECHO_N "checking whether to use struct dirent64... $ECHO_C" >&6 if test "${cf_cv_struct_dirent64+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 4870 "configure" +#line 4885 "configure" #include "confdefs.h" #include <sys/types.h> @@ -4888,16 +4903,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4891: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4906: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4894: \$? = $ac_status" >&5 + echo "$as_me:4909: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4897: \"$ac_try\"") >&5 + { (eval echo "$as_me:4912: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4900: \$? = $ac_status" >&5 + echo "$as_me:4915: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_struct_dirent64=yes else @@ -4908,7 +4923,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:4911: result: $cf_cv_struct_dirent64" >&5 +echo "$as_me:4926: result: $cf_cv_struct_dirent64" >&5 echo "${ECHO_T}$cf_cv_struct_dirent64" >&6 test "$cf_cv_struct_dirent64" = yes && cat >>confdefs.h <<\EOF #define HAVE_STRUCT_DIRENT64 1 @@ -4927,7 +4942,7 @@ if test -z "$ALL_LINGUAS" ; then # Extract the first word of "msginit", so it can be a program name with args. set dummy msginit; ac_word=$2 -echo "$as_me:4930: checking for $ac_word" >&5 +echo "$as_me:4945: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_MSGINIT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -4954,17 +4969,17 @@ esac fi MSGINIT="$ac_cv_path_MSGINIT" if test "$MSGINIT" != ":"; then - echo "$as_me:4957: result: $MSGINIT" >&5 + echo "$as_me:4972: result: $MSGINIT" >&5 echo "${ECHO_T}$MSGINIT" >&6 else - echo "$as_me:4960: result: no" >&5 + echo "$as_me:4975: result: no" >&5 echo "${ECHO_T}no" >&6 fi if test "$MSGINIT" != ":" ; then test -n "$verbose" && echo " adding en.po" 1>&6 -echo "${as_me-configure}:4967: testing adding en.po ..." 1>&5 +echo "${as_me-configure}:4982: testing adding en.po ..." 1>&5 ALL_LINGUAS="$ALL_LINGUAS en" fi @@ -4973,7 +4988,7 @@ fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; ac_word=$2 -echo "$as_me:4976: checking for $ac_word" >&5 +echo "$as_me:4991: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_RANLIB+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -4988,7 +5003,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" -echo "$as_me:4991: found $ac_dir/$ac_word" >&5 +echo "$as_me:5006: found $ac_dir/$ac_word" >&5 break done @@ -4996,10 +5011,10 @@ fi fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then - echo "$as_me:4999: result: $RANLIB" >&5 + echo "$as_me:5014: result: $RANLIB" >&5 echo "${ECHO_T}$RANLIB" >&6 else - echo "$as_me:5002: result: no" >&5 + echo "$as_me:5017: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -5008,7 +5023,7 @@ if test -z "$ac_cv_prog_RANLIB"; then ac_ct_RANLIB=$RANLIB # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 -echo "$as_me:5011: checking for $ac_word" >&5 +echo "$as_me:5026: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -5023,7 +5038,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_ac_ct_RANLIB="ranlib" -echo "$as_me:5026: found $ac_dir/$ac_word" >&5 +echo "$as_me:5041: found $ac_dir/$ac_word" >&5 break done @@ -5032,10 +5047,10 @@ fi fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then - echo "$as_me:5035: result: $ac_ct_RANLIB" >&5 + echo "$as_me:5050: result: $ac_ct_RANLIB" >&5 echo "${ECHO_T}$ac_ct_RANLIB" >&6 else - echo "$as_me:5038: result: no" >&5 + echo "$as_me:5053: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -5044,13 +5059,13 @@ else RANLIB="$ac_cv_prog_RANLIB" fi -echo "$as_me:5047: checking for ANSI C header files" >&5 +echo "$as_me:5062: checking for ANSI C header files" >&5 echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6 if test "${ac_cv_header_stdc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5053 "configure" +#line 5068 "configure" #include "confdefs.h" #include <stdlib.h> #include <stdarg.h> @@ -5058,13 +5073,13 @@ else #include <float.h> _ACEOF -if { (eval echo "$as_me:5061: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:5076: \"$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:5067: \$? = $ac_status" >&5 + echo "$as_me:5082: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -5086,7 +5101,7 @@ rm -f conftest.err conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat >conftest.$ac_ext <<_ACEOF -#line 5089 "configure" +#line 5104 "configure" #include "confdefs.h" #include <string.h> @@ -5104,7 +5119,7 @@ fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat >conftest.$ac_ext <<_ACEOF -#line 5107 "configure" +#line 5122 "configure" #include "confdefs.h" #include <stdlib.h> @@ -5125,7 +5140,7 @@ if test $ac_cv_header_stdc = yes; then : else cat >conftest.$ac_ext <<_ACEOF -#line 5128 "configure" +#line 5143 "configure" #include "confdefs.h" #include <ctype.h> #if ((' ' & 0x0FF) == 0x020) @@ -5151,15 +5166,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:5154: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5169: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5157: \$? = $ac_status" >&5 + echo "$as_me:5172: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:5159: \"$ac_try\"") >&5 + { (eval echo "$as_me:5174: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5162: \$? = $ac_status" >&5 + echo "$as_me:5177: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -5172,7 +5187,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi fi -echo "$as_me:5175: result: $ac_cv_header_stdc" >&5 +echo "$as_me:5190: result: $ac_cv_header_stdc" >&5 echo "${ECHO_T}$ac_cv_header_stdc" >&6 if test $ac_cv_header_stdc = yes; then @@ -5182,7 +5197,7 @@ EOF fi -echo "$as_me:5185: checking for inline" >&5 +echo "$as_me:5200: checking for inline" >&5 echo $ECHO_N "checking for inline... $ECHO_C" >&6 if test "${ac_cv_c_inline+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -5190,7 +5205,7 @@ else ac_cv_c_inline=no for ac_kw in inline __inline__ __inline; do cat >conftest.$ac_ext <<_ACEOF -#line 5193 "configure" +#line 5208 "configure" #include "confdefs.h" #ifndef __cplusplus static $ac_kw int static_foo () {return 0; } @@ -5199,16 +5214,16 @@ $ac_kw int foo () {return 0; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5202: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5217: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5205: \$? = $ac_status" >&5 + echo "$as_me:5220: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5208: \"$ac_try\"") >&5 + { (eval echo "$as_me:5223: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5211: \$? = $ac_status" >&5 + echo "$as_me:5226: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_inline=$ac_kw; break else @@ -5219,7 +5234,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:5222: result: $ac_cv_c_inline" >&5 +echo "$as_me:5237: result: $ac_cv_c_inline" >&5 echo "${ECHO_T}$ac_cv_c_inline" >&6 case $ac_cv_c_inline in inline | yes) ;; @@ -5240,28 +5255,28 @@ for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ inttypes.h stdint.h unistd.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:5243: checking for $ac_header" >&5 +echo "$as_me:5258: 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 5249 "configure" +#line 5264 "configure" #include "confdefs.h" $ac_includes_default #include <$ac_header> _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5255: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5270: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5258: \$? = $ac_status" >&5 + echo "$as_me:5273: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5261: \"$ac_try\"") >&5 + { (eval echo "$as_me:5276: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5264: \$? = $ac_status" >&5 + echo "$as_me:5279: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Header=yes" else @@ -5271,7 +5286,7 @@ eval "$as_ac_Header=no" fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:5274: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:5289: 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 @@ -5281,13 +5296,13 @@ EOF fi done -echo "$as_me:5284: checking for off_t" >&5 +echo "$as_me:5299: checking for off_t" >&5 echo $ECHO_N "checking for off_t... $ECHO_C" >&6 if test "${ac_cv_type_off_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5290 "configure" +#line 5305 "configure" #include "confdefs.h" $ac_includes_default int @@ -5302,16 +5317,16 @@ if (sizeof (off_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5305: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5320: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5308: \$? = $ac_status" >&5 + echo "$as_me:5323: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5311: \"$ac_try\"") >&5 + { (eval echo "$as_me:5326: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5314: \$? = $ac_status" >&5 + echo "$as_me:5329: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_off_t=yes else @@ -5321,7 +5336,7 @@ ac_cv_type_off_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:5324: result: $ac_cv_type_off_t" >&5 +echo "$as_me:5339: result: $ac_cv_type_off_t" >&5 echo "${ECHO_T}$ac_cv_type_off_t" >&6 if test $ac_cv_type_off_t = yes; then : @@ -5333,13 +5348,13 @@ EOF fi -echo "$as_me:5336: checking for size_t" >&5 +echo "$as_me:5351: checking for size_t" >&5 echo $ECHO_N "checking for size_t... $ECHO_C" >&6 if test "${ac_cv_type_size_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5342 "configure" +#line 5357 "configure" #include "confdefs.h" $ac_includes_default int @@ -5354,16 +5369,16 @@ if (sizeof (size_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5357: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5372: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5360: \$? = $ac_status" >&5 + echo "$as_me:5375: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5363: \"$ac_try\"") >&5 + { (eval echo "$as_me:5378: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5366: \$? = $ac_status" >&5 + echo "$as_me:5381: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_size_t=yes else @@ -5373,7 +5388,7 @@ ac_cv_type_size_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:5376: result: $ac_cv_type_size_t" >&5 +echo "$as_me:5391: result: $ac_cv_type_size_t" >&5 echo "${ECHO_T}$ac_cv_type_size_t" >&6 if test $ac_cv_type_size_t = yes; then : @@ -5387,13 +5402,13 @@ fi # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works # for constant arguments. Useless! -echo "$as_me:5390: checking for working alloca.h" >&5 +echo "$as_me:5405: checking for working alloca.h" >&5 echo $ECHO_N "checking for working alloca.h... $ECHO_C" >&6 if test "${ac_cv_working_alloca_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5396 "configure" +#line 5411 "configure" #include "confdefs.h" #include <alloca.h> int @@ -5405,16 +5420,16 @@ char *p = (char *) alloca (2 * sizeof (int)); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5408: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5423: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5411: \$? = $ac_status" >&5 + echo "$as_me:5426: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5414: \"$ac_try\"") >&5 + { (eval echo "$as_me:5429: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5417: \$? = $ac_status" >&5 + echo "$as_me:5432: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_working_alloca_h=yes else @@ -5424,7 +5439,7 @@ ac_cv_working_alloca_h=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:5427: result: $ac_cv_working_alloca_h" >&5 +echo "$as_me:5442: result: $ac_cv_working_alloca_h" >&5 echo "${ECHO_T}$ac_cv_working_alloca_h" >&6 if test $ac_cv_working_alloca_h = yes; then @@ -5434,13 +5449,13 @@ EOF fi -echo "$as_me:5437: checking for alloca" >&5 +echo "$as_me:5452: checking for alloca" >&5 echo $ECHO_N "checking for alloca... $ECHO_C" >&6 if test "${ac_cv_func_alloca_works+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5443 "configure" +#line 5458 "configure" #include "confdefs.h" #ifdef __GNUC__ # define alloca __builtin_alloca @@ -5472,16 +5487,16 @@ char *p = (char *) alloca (1); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5475: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5490: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5478: \$? = $ac_status" >&5 + echo "$as_me:5493: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5481: \"$ac_try\"") >&5 + { (eval echo "$as_me:5496: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5484: \$? = $ac_status" >&5 + echo "$as_me:5499: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_alloca_works=yes else @@ -5491,7 +5506,7 @@ ac_cv_func_alloca_works=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:5494: result: $ac_cv_func_alloca_works" >&5 +echo "$as_me:5509: result: $ac_cv_func_alloca_works" >&5 echo "${ECHO_T}$ac_cv_func_alloca_works" >&6 if test $ac_cv_func_alloca_works = yes; then @@ -5512,13 +5527,13 @@ cat >>confdefs.h <<\EOF #define C_ALLOCA 1 EOF -echo "$as_me:5515: checking whether \`alloca.c' needs Cray hooks" >&5 +echo "$as_me:5530: checking whether \`alloca.c' needs Cray hooks" >&5 echo $ECHO_N "checking whether \`alloca.c' needs Cray hooks... $ECHO_C" >&6 if test "${ac_cv_os_cray+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5521 "configure" +#line 5536 "configure" #include "confdefs.h" #if defined(CRAY) && ! defined(CRAY2) webecray @@ -5536,18 +5551,18 @@ fi rm -f conftest* fi -echo "$as_me:5539: result: $ac_cv_os_cray" >&5 +echo "$as_me:5554: result: $ac_cv_os_cray" >&5 echo "${ECHO_T}$ac_cv_os_cray" >&6 if test $ac_cv_os_cray = yes; then for ac_func in _getb67 GETB67 getb67; do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:5544: checking for $ac_func" >&5 +echo "$as_me:5559: 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 5550 "configure" +#line 5565 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -5578,16 +5593,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5581: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5596: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5584: \$? = $ac_status" >&5 + echo "$as_me:5599: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5587: \"$ac_try\"") >&5 + { (eval echo "$as_me:5602: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5590: \$? = $ac_status" >&5 + echo "$as_me:5605: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -5597,7 +5612,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:5600: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:5615: 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 @@ -5611,7 +5626,7 @@ fi done fi -echo "$as_me:5614: checking stack direction for C alloca" >&5 +echo "$as_me:5629: checking stack direction for C alloca" >&5 echo $ECHO_N "checking stack direction for C alloca... $ECHO_C" >&6 if test "${ac_cv_c_stack_direction+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -5620,7 +5635,7 @@ else ac_cv_c_stack_direction=0 else cat >conftest.$ac_ext <<_ACEOF -#line 5623 "configure" +#line 5638 "configure" #include "confdefs.h" int find_stack_direction () @@ -5643,15 +5658,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:5646: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5661: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5649: \$? = $ac_status" >&5 + echo "$as_me:5664: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:5651: \"$ac_try\"") >&5 + { (eval echo "$as_me:5666: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5654: \$? = $ac_status" >&5 + echo "$as_me:5669: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_stack_direction=1 else @@ -5663,7 +5678,7 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:5666: result: $ac_cv_c_stack_direction" >&5 +echo "$as_me:5681: result: $ac_cv_c_stack_direction" >&5 echo "${ECHO_T}$ac_cv_c_stack_direction" >&6 cat >>confdefs.h <<EOF @@ -5675,23 +5690,23 @@ fi for ac_header in stdlib.h unistd.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:5678: checking for $ac_header" >&5 +echo "$as_me:5693: 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 5684 "configure" +#line 5699 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:5688: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:5703: \"$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:5694: \$? = $ac_status" >&5 + echo "$as_me:5709: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -5710,7 +5725,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:5713: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:5728: 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 @@ -5723,13 +5738,13 @@ done for ac_func in getpagesize do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:5726: checking for $ac_func" >&5 +echo "$as_me:5741: 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 5732 "configure" +#line 5747 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -5760,16 +5775,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:5763: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5778: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5766: \$? = $ac_status" >&5 + echo "$as_me:5781: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:5769: \"$ac_try\"") >&5 + { (eval echo "$as_me:5784: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5772: \$? = $ac_status" >&5 + echo "$as_me:5787: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -5779,7 +5794,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:5782: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:5797: 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 @@ -5789,7 +5804,7 @@ EOF fi done -echo "$as_me:5792: checking for working mmap" >&5 +echo "$as_me:5807: checking for working mmap" >&5 echo $ECHO_N "checking for working mmap... $ECHO_C" >&6 if test "${ac_cv_func_mmap_fixed_mapped+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -5798,7 +5813,7 @@ else ac_cv_func_mmap_fixed_mapped=no else cat >conftest.$ac_ext <<_ACEOF -#line 5801 "configure" +#line 5816 "configure" #include "confdefs.h" $ac_includes_default /* Thanks to Mike Haertel and Jim Avera for this test. @@ -5925,15 +5940,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:5928: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5943: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5931: \$? = $ac_status" >&5 + echo "$as_me:5946: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:5933: \"$ac_try\"") >&5 + { (eval echo "$as_me:5948: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5936: \$? = $ac_status" >&5 + echo "$as_me:5951: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_mmap_fixed_mapped=yes else @@ -5945,7 +5960,7 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:5948: result: $ac_cv_func_mmap_fixed_mapped" >&5 +echo "$as_me:5963: result: $ac_cv_func_mmap_fixed_mapped" >&5 echo "${ECHO_T}$ac_cv_func_mmap_fixed_mapped" >&6 if test $ac_cv_func_mmap_fixed_mapped = yes; then @@ -5956,13 +5971,13 @@ EOF fi rm -f conftest.mmap - echo "$as_me:5959: checking whether we are using the GNU C Library 2.1 or newer" >&5 + echo "$as_me:5974: checking whether we are using the GNU C Library 2.1 or newer" >&5 echo $ECHO_N "checking whether we are using the GNU C Library 2.1 or newer... $ECHO_C" >&6 if test "${ac_cv_gnu_library_2_1+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5965 "configure" +#line 5980 "configure" #include "confdefs.h" #include <features.h> @@ -5982,7 +5997,7 @@ fi rm -f conftest* fi -echo "$as_me:5985: result: $ac_cv_gnu_library_2_1" >&5 +echo "$as_me:6000: result: $ac_cv_gnu_library_2_1" >&5 echo "${ECHO_T}$ac_cv_gnu_library_2_1" >&6 GLIBC21="$ac_cv_gnu_library_2_1" @@ -6006,23 +6021,23 @@ for ac_header in argz.h limits.h locale.h nl_types.h malloc.h stddef.h \ stdlib.h string.h unistd.h sys/param.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:6009: checking for $ac_header" >&5 +echo "$as_me:6024: 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 6015 "configure" +#line 6030 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:6019: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:6034: \"$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:6025: \$? = $ac_status" >&5 + echo "$as_me:6040: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -6041,7 +6056,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:6044: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:6059: 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 @@ -6056,13 +6071,13 @@ getgid getuid mempcpy munmap putenv setenv setlocale stpcpy strchr strcasecmp \ strdup strtoul tsearch __argz_count __argz_stringify __argz_next do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:6059: checking for $ac_func" >&5 +echo "$as_me:6074: 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 6065 "configure" +#line 6080 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -6093,16 +6108,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6096: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6111: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6099: \$? = $ac_status" >&5 + echo "$as_me:6114: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6102: \"$ac_try\"") >&5 + { (eval echo "$as_me:6117: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6105: \$? = $ac_status" >&5 + echo "$as_me:6120: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -6112,7 +6127,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:6115: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:6130: 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 @@ -6160,7 +6175,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 6163 "configure" +#line 6178 "configure" #include "confdefs.h" #include <stdio.h> int @@ -6172,16 +6187,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6175: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:6190: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6178: \$? = $ac_status" >&5 + echo "$as_me:6193: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6181: \"$ac_try\"") >&5 + { (eval echo "$as_me:6196: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6184: \$? = $ac_status" >&5 + echo "$as_me:6199: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -6198,7 +6213,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}:6201: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:6216: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -6239,7 +6254,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 6242 "configure" +#line 6257 "configure" #include "confdefs.h" #include <stdio.h> int @@ -6251,16 +6266,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6254: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:6269: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6257: \$? = $ac_status" >&5 + echo "$as_me:6272: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6260: \"$ac_try\"") >&5 + { (eval echo "$as_me:6275: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6263: \$? = $ac_status" >&5 + echo "$as_me:6278: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -6277,7 +6292,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}:6280: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:6295: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -6293,7 +6308,7 @@ echo "${as_me-configure}:6280: testing adding $cf_add_incdir to include-path ... fi else -{ { echo "$as_me:6296: error: cannot find libiconv under $withval" >&5 +{ { echo "$as_me:6311: error: cannot find libiconv under $withval" >&5 echo "$as_me: error: cannot find libiconv under $withval" >&2;} { (exit 1); exit 1; }; } fi @@ -6318,7 +6333,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}:6321: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:6336: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -6347,7 +6362,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}:6350: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:6365: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -6356,7 +6371,7 @@ echo "${as_me-configure}:6350: testing adding $cf_add_libdir to library-path ... fi else -{ { echo "$as_me:6359: error: cannot find libiconv under $withval" >&5 +{ { echo "$as_me:6374: error: cannot find libiconv under $withval" >&5 echo "$as_me: error: cannot find libiconv under $withval" >&2;} { (exit 1); exit 1; }; } fi @@ -6367,7 +6382,7 @@ done fi; - echo "$as_me:6370: checking for iconv" >&5 + echo "$as_me:6385: checking for iconv" >&5 echo $ECHO_N "checking for iconv... $ECHO_C" >&6 if test "${am_cv_func_iconv+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -6378,10 +6393,10 @@ else cf_cv_header_path_iconv= cf_cv_library_path_iconv= -echo "${as_me-configure}:6381: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me-configure}:6396: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 6384 "configure" +#line 6399 "configure" #include "confdefs.h" #include <stdlib.h> @@ -6400,16 +6415,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6403: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6418: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6406: \$? = $ac_status" >&5 + echo "$as_me:6421: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6409: \"$ac_try\"") >&5 + { (eval echo "$as_me:6424: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6412: \$? = $ac_status" >&5 + echo "$as_me:6427: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_iconv=yes else @@ -6420,9 +6435,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for iconv library" 1>&6 -echo "${as_me-configure}:6423: testing find linkage for iconv library ..." 1>&5 +echo "${as_me-configure}:6438: testing find linkage for iconv library ..." 1>&5 -echo "${as_me-configure}:6425: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me-configure}:6440: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -6530,11 +6545,11 @@ cf_search="$cf_header_path_list $cf_search" if test -d $cf_cv_header_path_iconv ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_iconv" 1>&6 -echo "${as_me-configure}:6533: testing ... testing $cf_cv_header_path_iconv ..." 1>&5 +echo "${as_me-configure}:6548: testing ... testing $cf_cv_header_path_iconv ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_iconv" cat >conftest.$ac_ext <<_ACEOF -#line 6537 "configure" +#line 6552 "configure" #include "confdefs.h" #include <stdlib.h> @@ -6553,21 +6568,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6556: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:6571: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6559: \$? = $ac_status" >&5 + echo "$as_me:6574: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6562: \"$ac_try\"") >&5 + { (eval echo "$as_me:6577: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6565: \$? = $ac_status" >&5 + echo "$as_me:6580: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found iconv headers in $cf_cv_header_path_iconv" 1>&6 -echo "${as_me-configure}:6570: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5 +echo "${as_me-configure}:6585: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5 cf_cv_find_linkage_iconv=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -6585,7 +6600,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_iconv" = maybe ; then -echo "${as_me-configure}:6588: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me-configure}:6603: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -6681,13 +6696,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_iconv ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_iconv" 1>&6 -echo "${as_me-configure}:6684: testing ... testing $cf_cv_library_path_iconv ..." 1>&5 +echo "${as_me-configure}:6699: testing ... testing $cf_cv_library_path_iconv ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-liconv $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_iconv" cat >conftest.$ac_ext <<_ACEOF -#line 6690 "configure" +#line 6705 "configure" #include "confdefs.h" #include <stdlib.h> @@ -6706,21 +6721,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6709: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6724: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6712: \$? = $ac_status" >&5 + echo "$as_me:6727: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6715: \"$ac_try\"") >&5 + { (eval echo "$as_me:6730: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6718: \$? = $ac_status" >&5 + echo "$as_me:6733: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found iconv library in $cf_cv_library_path_iconv" 1>&6 -echo "${as_me-configure}:6723: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5 +echo "${as_me-configure}:6738: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5 cf_cv_find_linkage_iconv=yes cf_cv_library_file_iconv="-liconv" @@ -6756,7 +6771,7 @@ am_cv_func_iconv="no, consider installing GNU libiconv" fi fi -echo "$as_me:6759: result: $am_cv_func_iconv" >&5 +echo "$as_me:6774: result: $am_cv_func_iconv" >&5 echo "${ECHO_T}$am_cv_func_iconv" >&6 if test "$am_cv_func_iconv" = yes; then @@ -6765,14 +6780,14 @@ cat >>confdefs.h <<\EOF #define HAVE_ICONV 1 EOF - echo "$as_me:6768: checking if the declaration of iconv() needs const." >&5 + echo "$as_me:6783: checking if the declaration of iconv() needs const." >&5 echo $ECHO_N "checking if the declaration of iconv() needs const.... $ECHO_C" >&6 if test "${am_cv_proto_iconv_const+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 6775 "configure" +#line 6790 "configure" #include "confdefs.h" #include <stdlib.h> @@ -6797,16 +6812,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6800: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:6815: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6803: \$? = $ac_status" >&5 + echo "$as_me:6818: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6806: \"$ac_try\"") >&5 + { (eval echo "$as_me:6821: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6809: \$? = $ac_status" >&5 + echo "$as_me:6824: \$? = $ac_status" >&5 (exit $ac_status); }; }; then am_cv_proto_iconv_const=no else @@ -6816,7 +6831,7 @@ am_cv_proto_iconv_const=yes fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:6819: result: $am_cv_proto_iconv_const" >&5 +echo "$as_me:6834: result: $am_cv_proto_iconv_const" >&5 echo "${ECHO_T}$am_cv_proto_iconv_const" >&6 if test "$am_cv_proto_iconv_const" = yes ; then @@ -6858,7 +6873,7 @@ if test -n "$cf_cv_header_path_iconv" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 6861 "configure" +#line 6876 "configure" #include "confdefs.h" #include <stdio.h> int @@ -6870,16 +6885,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6873: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:6888: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6876: \$? = $ac_status" >&5 + echo "$as_me:6891: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6879: \"$ac_try\"") >&5 + { (eval echo "$as_me:6894: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6882: \$? = $ac_status" >&5 + echo "$as_me:6897: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -6896,7 +6911,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}:6899: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:6914: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -6933,7 +6948,7 @@ if test -n "$cf_cv_library_path_iconv" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:6936: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:6951: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -6944,13 +6959,13 @@ fi fi fi - echo "$as_me:6947: checking for nl_langinfo and CODESET" >&5 + echo "$as_me:6962: checking for nl_langinfo and CODESET" >&5 echo $ECHO_N "checking for nl_langinfo and CODESET... $ECHO_C" >&6 if test "${am_cv_langinfo_codeset+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 6953 "configure" +#line 6968 "configure" #include "confdefs.h" #include <langinfo.h> int @@ -6962,16 +6977,16 @@ char* cs = nl_langinfo(CODESET); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6965: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6980: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6968: \$? = $ac_status" >&5 + echo "$as_me:6983: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6971: \"$ac_try\"") >&5 + { (eval echo "$as_me:6986: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6974: \$? = $ac_status" >&5 + echo "$as_me:6989: \$? = $ac_status" >&5 (exit $ac_status); }; }; then am_cv_langinfo_codeset=yes else @@ -6982,7 +6997,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:6985: result: $am_cv_langinfo_codeset" >&5 +echo "$as_me:7000: result: $am_cv_langinfo_codeset" >&5 echo "${ECHO_T}$am_cv_langinfo_codeset" >&6 if test $am_cv_langinfo_codeset = yes; then @@ -6993,13 +7008,13 @@ EOF fi if test $ac_cv_header_locale_h = yes; then - echo "$as_me:6996: checking for LC_MESSAGES" >&5 + echo "$as_me:7011: checking for LC_MESSAGES" >&5 echo $ECHO_N "checking for LC_MESSAGES... $ECHO_C" >&6 if test "${am_cv_val_LC_MESSAGES+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 7002 "configure" +#line 7017 "configure" #include "confdefs.h" #include <locale.h> int @@ -7011,16 +7026,16 @@ return LC_MESSAGES } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7014: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7029: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7017: \$? = $ac_status" >&5 + echo "$as_me:7032: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7020: \"$ac_try\"") >&5 + { (eval echo "$as_me:7035: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7023: \$? = $ac_status" >&5 + echo "$as_me:7038: \$? = $ac_status" >&5 (exit $ac_status); }; }; then am_cv_val_LC_MESSAGES=yes else @@ -7030,7 +7045,7 @@ am_cv_val_LC_MESSAGES=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:7033: result: $am_cv_val_LC_MESSAGES" >&5 +echo "$as_me:7048: result: $am_cv_val_LC_MESSAGES" >&5 echo "${ECHO_T}$am_cv_val_LC_MESSAGES" >&6 if test $am_cv_val_LC_MESSAGES = yes; then @@ -7040,7 +7055,7 @@ EOF fi fi - echo "$as_me:7043: checking whether NLS is requested" >&5 + echo "$as_me:7058: checking whether NLS is requested" >&5 echo $ECHO_N "checking whether NLS is requested... $ECHO_C" >&6 # Check whether --enable-nls or --disable-nls was given. @@ -7050,7 +7065,7 @@ if test "${enable_nls+set}" = set; then else USE_NLS=no fi; - echo "$as_me:7053: result: $USE_NLS" >&5 + echo "$as_me:7068: result: $USE_NLS" >&5 echo "${ECHO_T}$USE_NLS" >&6 BUILD_INCLUDED_LIBINTL=no @@ -7063,7 +7078,7 @@ cat >>confdefs.h <<\EOF #define ENABLE_NLS 1 EOF - echo "$as_me:7066: checking whether included gettext is requested" >&5 + echo "$as_me:7081: checking whether included gettext is requested" >&5 echo $ECHO_N "checking whether included gettext is requested... $ECHO_C" >&6 # Check whether --with-included-gettext or --without-included-gettext was given. @@ -7073,7 +7088,7 @@ if test "${with_included_gettext+set}" = set; then else nls_cv_force_use_gnu_gettext=no fi; - echo "$as_me:7076: result: $nls_cv_force_use_gnu_gettext" >&5 + echo "$as_me:7091: result: $nls_cv_force_use_gnu_gettext" >&5 echo "${ECHO_T}$nls_cv_force_use_gnu_gettext" >&6 nls_cv_use_gnu_gettext="$nls_cv_force_use_gnu_gettext" @@ -7082,7 +7097,7 @@ echo "${ECHO_T}$nls_cv_force_use_gnu_gettext" >&6 cf_save_LIBS_1="$LIBS" LIBS="$LIBICONV $LIBS" - echo "$as_me:7085: checking for libintl.h and gettext()" >&5 + echo "$as_me:7100: checking for libintl.h and gettext()" >&5 echo $ECHO_N "checking for libintl.h and gettext()... $ECHO_C" >&6 if test "${cf_cv_func_gettext+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -7093,10 +7108,10 @@ else cf_cv_header_path_intl= cf_cv_library_path_intl= -echo "${as_me-configure}:7096: testing Starting FIND_LINKAGE(intl,) ..." 1>&5 +echo "${as_me-configure}:7111: testing Starting FIND_LINKAGE(intl,) ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 7099 "configure" +#line 7114 "configure" #include "confdefs.h" #include <libintl.h> @@ -7116,16 +7131,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7119: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7134: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7122: \$? = $ac_status" >&5 + echo "$as_me:7137: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7125: \"$ac_try\"") >&5 + { (eval echo "$as_me:7140: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7128: \$? = $ac_status" >&5 + echo "$as_me:7143: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_intl=yes else @@ -7136,9 +7151,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for intl library" 1>&6 -echo "${as_me-configure}:7139: testing find linkage for intl library ..." 1>&5 +echo "${as_me-configure}:7154: testing find linkage for intl library ..." 1>&5 -echo "${as_me-configure}:7141: testing Searching for headers in FIND_LINKAGE(intl,) ..." 1>&5 +echo "${as_me-configure}:7156: testing Searching for headers in FIND_LINKAGE(intl,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -7246,11 +7261,11 @@ cf_search="$cf_header_path_list $cf_search" if test -d $cf_cv_header_path_intl ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_intl" 1>&6 -echo "${as_me-configure}:7249: testing ... testing $cf_cv_header_path_intl ..." 1>&5 +echo "${as_me-configure}:7264: testing ... testing $cf_cv_header_path_intl ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_intl" cat >conftest.$ac_ext <<_ACEOF -#line 7253 "configure" +#line 7268 "configure" #include "confdefs.h" #include <libintl.h> @@ -7270,21 +7285,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:7273: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7288: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7276: \$? = $ac_status" >&5 + echo "$as_me:7291: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:7279: \"$ac_try\"") >&5 + { (eval echo "$as_me:7294: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7282: \$? = $ac_status" >&5 + echo "$as_me:7297: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found intl headers in $cf_cv_header_path_intl" 1>&6 -echo "${as_me-configure}:7287: testing ... found intl headers in $cf_cv_header_path_intl ..." 1>&5 +echo "${as_me-configure}:7302: testing ... found intl headers in $cf_cv_header_path_intl ..." 1>&5 cf_cv_find_linkage_intl=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -7302,7 +7317,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_intl" = maybe ; then -echo "${as_me-configure}:7305: testing Searching for intl library in FIND_LINKAGE(intl,) ..." 1>&5 +echo "${as_me-configure}:7320: testing Searching for intl library in FIND_LINKAGE(intl,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -7398,13 +7413,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_intl ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_intl" 1>&6 -echo "${as_me-configure}:7401: testing ... testing $cf_cv_library_path_intl ..." 1>&5 +echo "${as_me-configure}:7416: testing ... testing $cf_cv_library_path_intl ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lintl $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_intl" cat >conftest.$ac_ext <<_ACEOF -#line 7407 "configure" +#line 7422 "configure" #include "confdefs.h" #include <libintl.h> @@ -7424,21 +7439,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7427: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7442: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7430: \$? = $ac_status" >&5 + echo "$as_me:7445: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7433: \"$ac_try\"") >&5 + { (eval echo "$as_me:7448: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7436: \$? = $ac_status" >&5 + echo "$as_me:7451: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found intl library in $cf_cv_library_path_intl" 1>&6 -echo "${as_me-configure}:7441: testing ... found intl library in $cf_cv_library_path_intl ..." 1>&5 +echo "${as_me-configure}:7456: testing ... found intl library in $cf_cv_library_path_intl ..." 1>&5 cf_cv_find_linkage_intl=yes cf_cv_library_file_intl="-lintl" @@ -7474,7 +7489,7 @@ cf_cv_func_gettext=no fi fi -echo "$as_me:7477: result: $cf_cv_func_gettext" >&5 +echo "$as_me:7492: result: $cf_cv_func_gettext" >&5 echo "${ECHO_T}$cf_cv_func_gettext" >&6 LIBS="$cf_save_LIBS_1" @@ -7513,7 +7528,7 @@ if test -n "$cf_cv_header_path_intl" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 7516 "configure" +#line 7531 "configure" #include "confdefs.h" #include <stdio.h> int @@ -7525,16 +7540,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:7528: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7543: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7531: \$? = $ac_status" >&5 + echo "$as_me:7546: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:7534: \"$ac_try\"") >&5 + { (eval echo "$as_me:7549: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7537: \$? = $ac_status" >&5 + echo "$as_me:7552: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -7551,7 +7566,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}:7554: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:7569: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -7588,7 +7603,7 @@ if test -n "$cf_cv_library_path_intl" ; 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}:7591: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:7606: testing adding $cf_add_libdir to library-path ..." 1>&5 INTLLIBS="-L$cf_add_libdir $INTLLIBS" fi @@ -7604,13 +7619,13 @@ fi for ac_func in dcgettext do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:7607: checking for $ac_func" >&5 +echo "$as_me:7622: 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 7613 "configure" +#line 7628 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -7641,16 +7656,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7644: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7659: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7647: \$? = $ac_status" >&5 + echo "$as_me:7662: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7650: \"$ac_try\"") >&5 + { (eval echo "$as_me:7665: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7653: \$? = $ac_status" >&5 + echo "$as_me:7668: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -7660,7 +7675,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:7663: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:7678: 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 @@ -7675,7 +7690,7 @@ done # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; ac_word=$2 -echo "$as_me:7678: checking for $ac_word" >&5 +echo "$as_me:7693: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_MSGFMT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -7702,16 +7717,16 @@ esac fi MSGFMT="$ac_cv_path_MSGFMT" if test "$MSGFMT" != ":"; then - echo "$as_me:7705: result: $MSGFMT" >&5 + echo "$as_me:7720: result: $MSGFMT" >&5 echo "${ECHO_T}$MSGFMT" >&6 else - echo "$as_me:7708: result: no" >&5 + echo "$as_me:7723: result: no" >&5 echo "${ECHO_T}no" >&6 fi # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; ac_word=$2 -echo "$as_me:7714: checking for $ac_word" >&5 +echo "$as_me:7729: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_GMSGFMT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -7728,7 +7743,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_GMSGFMT="$ac_dir/$ac_word" - echo "$as_me:7731: found $ac_dir/$ac_word" >&5 + echo "$as_me:7746: found $ac_dir/$ac_word" >&5 break fi done @@ -7740,17 +7755,17 @@ fi GMSGFMT=$ac_cv_path_GMSGFMT if test -n "$GMSGFMT"; then - echo "$as_me:7743: result: $GMSGFMT" >&5 + echo "$as_me:7758: result: $GMSGFMT" >&5 echo "${ECHO_T}$GMSGFMT" >&6 else - echo "$as_me:7746: result: no" >&5 + echo "$as_me:7761: result: no" >&5 echo "${ECHO_T}no" >&6 fi # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; ac_word=$2 -echo "$as_me:7753: checking for $ac_word" >&5 +echo "$as_me:7768: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_XGETTEXT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -7777,10 +7792,10 @@ esac fi XGETTEXT="$ac_cv_path_XGETTEXT" if test "$XGETTEXT" != ":"; then - echo "$as_me:7780: result: $XGETTEXT" >&5 + echo "$as_me:7795: result: $XGETTEXT" >&5 echo "${ECHO_T}$XGETTEXT" >&6 else - echo "$as_me:7783: result: no" >&5 + echo "$as_me:7798: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -7795,7 +7810,7 @@ fi if test "$nls_cv_use_gnu_gettext" = "yes"; then if test ! -d $srcdir/intl ; then - { { echo "$as_me:7798: error: no NLS library is packaged with this application" >&5 + { { echo "$as_me:7813: error: no NLS library is packaged with this application" >&5 echo "$as_me: error: no NLS library is packaged with this application" >&2;} { (exit 1); exit 1; }; } fi @@ -7803,7 +7818,7 @@ echo "$as_me: error: no NLS library is packaged with this application" >&2;} # Extract the first word of "msgfmt", so it can be a program name with args. set dummy msgfmt; ac_word=$2 -echo "$as_me:7806: checking for $ac_word" >&5 +echo "$as_me:7821: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_MSGFMT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -7830,16 +7845,16 @@ esac fi MSGFMT="$ac_cv_path_MSGFMT" if test "$MSGFMT" != ":"; then - echo "$as_me:7833: result: $MSGFMT" >&5 + echo "$as_me:7848: result: $MSGFMT" >&5 echo "${ECHO_T}$MSGFMT" >&6 else - echo "$as_me:7836: result: no" >&5 + echo "$as_me:7851: result: no" >&5 echo "${ECHO_T}no" >&6 fi # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; ac_word=$2 -echo "$as_me:7842: checking for $ac_word" >&5 +echo "$as_me:7857: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_GMSGFMT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -7856,7 +7871,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. if $as_executable_p "$ac_dir/$ac_word"; then ac_cv_path_GMSGFMT="$ac_dir/$ac_word" - echo "$as_me:7859: found $ac_dir/$ac_word" >&5 + echo "$as_me:7874: found $ac_dir/$ac_word" >&5 break fi done @@ -7868,17 +7883,17 @@ fi GMSGFMT=$ac_cv_path_GMSGFMT if test -n "$GMSGFMT"; then - echo "$as_me:7871: result: $GMSGFMT" >&5 + echo "$as_me:7886: result: $GMSGFMT" >&5 echo "${ECHO_T}$GMSGFMT" >&6 else - echo "$as_me:7874: result: no" >&5 + echo "$as_me:7889: result: no" >&5 echo "${ECHO_T}no" >&6 fi # Extract the first word of "xgettext", so it can be a program name with args. set dummy xgettext; ac_word=$2 -echo "$as_me:7881: checking for $ac_word" >&5 +echo "$as_me:7896: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_XGETTEXT+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -7905,10 +7920,10 @@ esac fi XGETTEXT="$ac_cv_path_XGETTEXT" if test "$XGETTEXT" != ":"; then - echo "$as_me:7908: result: $XGETTEXT" >&5 + echo "$as_me:7923: result: $XGETTEXT" >&5 echo "${ECHO_T}$XGETTEXT" >&6 else - echo "$as_me:7911: result: no" >&5 + echo "$as_me:7926: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -7923,7 +7938,7 @@ fi if $GMSGFMT --statistics /dev/null >/dev/null 2>&1; then : ; else - echo "$as_me:7926: result: found msgfmt program is not GNU msgfmt; ignore it" >&5 + echo "$as_me:7941: result: found msgfmt program is not GNU msgfmt; ignore it" >&5 echo "${ECHO_T}found msgfmt program is not GNU msgfmt; ignore it" >&6 GMSGFMT=":" fi @@ -7933,7 +7948,7 @@ echo "${ECHO_T}found msgfmt program is not GNU msgfmt; ignore it" >&6 if $XGETTEXT --omit-header /dev/null >/dev/null 2>&1; then : ; else - echo "$as_me:7936: result: found xgettext program is not GNU xgettext; ignore it" >&5 + echo "$as_me:7951: result: found xgettext program is not GNU xgettext; ignore it" >&5 echo "${ECHO_T}found xgettext program is not GNU xgettext; ignore it" >&6 XGETTEXT=":" fi @@ -7953,7 +7968,7 @@ echo "${ECHO_T}found xgettext program is not GNU xgettext; ignore it" >&6 do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 -echo "$as_me:7956: checking for $ac_word" >&5 +echo "$as_me:7971: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_prog_INTLBISON+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -7968,7 +7983,7 @@ for ac_dir in $ac_dummy; do test -z "$ac_dir" && ac_dir=. $as_executable_p "$ac_dir/$ac_word" || continue ac_cv_prog_INTLBISON="$ac_prog" -echo "$as_me:7971: found $ac_dir/$ac_word" >&5 +echo "$as_me:7986: found $ac_dir/$ac_word" >&5 break done @@ -7976,10 +7991,10 @@ fi fi INTLBISON=$ac_cv_prog_INTLBISON if test -n "$INTLBISON"; then - echo "$as_me:7979: result: $INTLBISON" >&5 + echo "$as_me:7994: result: $INTLBISON" >&5 echo "${ECHO_T}$INTLBISON" >&6 else - echo "$as_me:7982: result: no" >&5 + echo "$as_me:7997: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -7989,7 +8004,7 @@ done if test -z "$INTLBISON"; then ac_verc_fail=yes else - echo "$as_me:7992: checking version of bison" >&5 + echo "$as_me:8007: checking version of bison" >&5 echo $ECHO_N "checking version of bison... $ECHO_C" >&6 ac_prog_version=`$INTLBISON --version 2>&1 | sed -n 's/^.*GNU Bison.* \([0-9]*\.[0-9.]*\).*$/\1/p'` case $ac_prog_version in @@ -7998,7 +8013,7 @@ echo $ECHO_N "checking version of bison... $ECHO_C" >&6 ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;; *) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;; esac - echo "$as_me:8001: result: $ac_prog_version" >&5 + echo "$as_me:8016: result: $ac_prog_version" >&5 echo "${ECHO_T}$ac_prog_version" >&6 fi if test $ac_verc_fail = yes; then @@ -8024,7 +8039,7 @@ echo "${ECHO_T}$ac_prog_version" >&6 if test "x$ALL_LINGUAS" = "x"; then LINGUAS= else - echo "$as_me:8027: checking for catalogs to be installed" >&5 + echo "$as_me:8042: checking for catalogs to be installed" >&5 echo $ECHO_N "checking for catalogs to be installed... $ECHO_C" >&6 NEW_LINGUAS= for presentlang in $ALL_LINGUAS; do @@ -8044,7 +8059,7 @@ echo $ECHO_N "checking for catalogs to be installed... $ECHO_C" >&6 fi done LINGUAS=$NEW_LINGUAS - echo "$as_me:8047: result: $LINGUAS" >&5 + echo "$as_me:8062: result: $LINGUAS" >&5 echo "${ECHO_T}$LINGUAS" >&6 fi @@ -8077,7 +8092,7 @@ cf_makefile=makefile use_our_messages=no if test "$USE_NLS" = yes ; then if test -d $srcdir/po ; then -echo "$as_me:8080: checking if we should use included message-library" >&5 +echo "$as_me:8095: checking if we should use included message-library" >&5 echo $ECHO_N "checking if we should use included message-library... $ECHO_C" >&6 # Check whether --enable-included-msgs or --disable-included-msgs was given. @@ -8088,7 +8103,7 @@ else use_our_messages=yes fi; fi -echo "$as_me:8091: result: $use_our_messages" >&5 +echo "$as_me:8106: result: $use_our_messages" >&5 echo "${ECHO_T}$use_our_messages" >&6 fi @@ -8129,23 +8144,23 @@ else for ac_header in libintl.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:8132: checking for $ac_header" >&5 +echo "$as_me:8147: 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 8138 "configure" +#line 8153 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:8142: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:8157: \"$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:8148: \$? = $ac_status" >&5 + echo "$as_me:8163: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -8164,7 +8179,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:8167: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:8182: 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 @@ -8247,7 +8262,7 @@ case ".$withval" in #(vi withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:8250: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:8265: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -8256,7 +8271,7 @@ esac fi NLS_DATADIR="$withval" -echo "$as_me:8259: checking if you want full utility pathnames" >&5 +echo "$as_me:8274: checking if you want full utility pathnames" >&5 echo $ECHO_N "checking if you want full utility pathnames... $ECHO_C" >&6 # Check whether --enable-full-paths or --disable-full-paths was given. @@ -8273,13 +8288,13 @@ else with_full_paths=yes fi; -echo "$as_me:8276: result: $with_full_paths" >&5 +echo "$as_me:8291: result: $with_full_paths" >&5 echo "${ECHO_T}$with_full_paths" >&6 test $with_full_paths = no && cat >>confdefs.h <<\EOF #define USE_EXECVP 1 EOF -echo "$as_me:8282: checking for system mailer" >&5 +echo "$as_me:8297: checking for system mailer" >&5 echo $ECHO_N "checking for system mailer... $ECHO_C" >&6 if test "${cf_cv_SYSTEM_MAIL+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -8299,13 +8314,13 @@ else fi -echo "$as_me:8302: result: $cf_cv_SYSTEM_MAIL" >&5 +echo "$as_me:8317: result: $cf_cv_SYSTEM_MAIL" >&5 echo "${ECHO_T}$cf_cv_SYSTEM_MAIL" >&6 cat >>confdefs.h <<EOF #define SYSTEM_MAIL "$cf_cv_SYSTEM_MAIL" EOF -echo "$as_me:8308: checking system mail flags" >&5 +echo "$as_me:8323: checking system mail flags" >&5 echo $ECHO_N "checking system mail flags... $ECHO_C" >&6 if test "${cf_cv_system_mail_flags+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -8321,7 +8336,7 @@ else fi -echo "$as_me:8324: result: $cf_cv_system_mail_flags" >&5 +echo "$as_me:8339: result: $cf_cv_system_mail_flags" >&5 echo "${ECHO_T}$cf_cv_system_mail_flags" >&6 cat >>confdefs.h <<EOF #define SYSTEM_MAIL_FLAGS "$cf_cv_system_mail_flags" @@ -8333,7 +8348,7 @@ if test $with_full_paths = no ; then fi fi -echo "$as_me:8336: checking if $CC -U and -D options work together" >&5 +echo "$as_me:8351: checking if $CC -U and -D options work together" >&5 echo $ECHO_N "checking if $CC -U and -D options work together... $ECHO_C" >&6 if test "${cf_cv_cc_u_d_options+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -8342,7 +8357,7 @@ else cf_save_CPPFLAGS="$CPPFLAGS" CPPFLAGS="-UU_D_OPTIONS -DU_D_OPTIONS -DD_U_OPTIONS -UD_U_OPTIONS" cat >conftest.$ac_ext <<_ACEOF -#line 8345 "configure" +#line 8360 "configure" #include "confdefs.h" int @@ -8361,16 +8376,16 @@ make a defined-error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8364: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8379: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8367: \$? = $ac_status" >&5 + echo "$as_me:8382: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8370: \"$ac_try\"") >&5 + { (eval echo "$as_me:8385: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8373: \$? = $ac_status" >&5 + echo "$as_me:8388: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_cc_u_d_options=yes @@ -8384,7 +8399,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext CPPFLAGS="$cf_save_CPPFLAGS" fi -echo "$as_me:8387: result: $cf_cv_cc_u_d_options" >&5 +echo "$as_me:8402: result: $cf_cv_cc_u_d_options" >&5 echo "${ECHO_T}$cf_cv_cc_u_d_options" >&6 cf_XOPEN_SOURCE=600 @@ -8410,14 +8425,14 @@ irix[56].*) #(vi ;; linux*|gnu*|mint*|k*bsd*-gnu) #(vi -echo "$as_me:8413: checking if we must define _GNU_SOURCE" >&5 +echo "$as_me:8428: checking if we must define _GNU_SOURCE" >&5 echo $ECHO_N "checking if we must define _GNU_SOURCE... $ECHO_C" >&6 if test "${cf_cv_gnu_source+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 8420 "configure" +#line 8435 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -8432,16 +8447,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8435: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8450: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8438: \$? = $ac_status" >&5 + echo "$as_me:8453: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8441: \"$ac_try\"") >&5 + { (eval echo "$as_me:8456: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8444: \$? = $ac_status" >&5 + echo "$as_me:8459: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_gnu_source=no else @@ -8450,7 +8465,7 @@ cat conftest.$ac_ext >&5 cf_save="$CPPFLAGS" CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE" cat >conftest.$ac_ext <<_ACEOF -#line 8453 "configure" +#line 8468 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -8465,16 +8480,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8468: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8483: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8471: \$? = $ac_status" >&5 + echo "$as_me:8486: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8474: \"$ac_try\"") >&5 + { (eval echo "$as_me:8489: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8477: \$? = $ac_status" >&5 + echo "$as_me:8492: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_gnu_source=no else @@ -8489,7 +8504,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:8492: result: $cf_cv_gnu_source" >&5 +echo "$as_me:8507: result: $cf_cv_gnu_source" >&5 echo "${ECHO_T}$cf_cv_gnu_source" >&6 test "$cf_cv_gnu_source" = yes && CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE" @@ -8516,14 +8531,14 @@ solaris*) #(vi CPPFLAGS="$CPPFLAGS -D__EXTENSIONS__" ;; *) - echo "$as_me:8519: checking if we should define _XOPEN_SOURCE" >&5 + echo "$as_me:8534: checking if we should define _XOPEN_SOURCE" >&5 echo $ECHO_N "checking if we should define _XOPEN_SOURCE... $ECHO_C" >&6 if test "${cf_cv_xopen_source+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 8526 "configure" +#line 8541 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -8538,16 +8553,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8541: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8556: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8544: \$? = $ac_status" >&5 + echo "$as_me:8559: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8547: \"$ac_try\"") >&5 + { (eval echo "$as_me:8562: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8550: \$? = $ac_status" >&5 + echo "$as_me:8565: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xopen_source=no else @@ -8556,7 +8571,7 @@ cat conftest.$ac_ext >&5 cf_save="$CPPFLAGS" CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=$cf_XOPEN_SOURCE" cat >conftest.$ac_ext <<_ACEOF -#line 8559 "configure" +#line 8574 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -8571,16 +8586,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8574: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8589: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8577: \$? = $ac_status" >&5 + echo "$as_me:8592: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8580: \"$ac_try\"") >&5 + { (eval echo "$as_me:8595: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8583: \$? = $ac_status" >&5 + echo "$as_me:8598: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_xopen_source=no else @@ -8595,7 +8610,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:8598: result: $cf_cv_xopen_source" >&5 +echo "$as_me:8613: result: $cf_cv_xopen_source" >&5 echo "${ECHO_T}$cf_cv_xopen_source" >&6 if test "$cf_cv_xopen_source" != no ; then @@ -8629,16 +8644,16 @@ cf_trim_CPPFLAGS=`echo "$cf_save_CPPFLAGS" | \ sed -e 's/-[UD]_POSIX_C_SOURCE\(=[^ ]*\)\?[ ]/ /g' \ -e 's/-[UD]_POSIX_C_SOURCE\(=[^ ]*\)\?$//g'` -echo "$as_me:8632: checking if we should define _POSIX_C_SOURCE" >&5 +echo "$as_me:8647: checking if we should define _POSIX_C_SOURCE" >&5 echo $ECHO_N "checking if we should define _POSIX_C_SOURCE... $ECHO_C" >&6 if test "${cf_cv_posix_c_source+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else -echo "${as_me-configure}:8638: testing if the symbol is already defined go no further ..." 1>&5 +echo "${as_me-configure}:8653: testing if the symbol is already defined go no further ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 8641 "configure" +#line 8656 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -8653,16 +8668,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8656: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8671: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8659: \$? = $ac_status" >&5 + echo "$as_me:8674: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8662: \"$ac_try\"") >&5 + { (eval echo "$as_me:8677: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8665: \$? = $ac_status" >&5 + echo "$as_me:8680: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_posix_c_source=no else @@ -8683,7 +8698,7 @@ cf_want_posix_source=no esac if test "$cf_want_posix_source" = yes ; then cat >conftest.$ac_ext <<_ACEOF -#line 8686 "configure" +#line 8701 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -8698,16 +8713,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8701: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8716: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8704: \$? = $ac_status" >&5 + echo "$as_me:8719: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8707: \"$ac_try\"") >&5 + { (eval echo "$as_me:8722: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8710: \$? = $ac_status" >&5 + echo "$as_me:8725: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -8718,15 +8733,15 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "${as_me-configure}:8721: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5 +echo "${as_me-configure}:8736: testing ifdef from value $cf_POSIX_C_SOURCE ..." 1>&5 CFLAGS="$cf_trim_CFLAGS" CPPFLAGS="$cf_trim_CPPFLAGS $cf_cv_posix_c_source" -echo "${as_me-configure}:8726: testing if the second compile does not leave our definition intact error ..." 1>&5 +echo "${as_me-configure}:8741: testing if the second compile does not leave our definition intact error ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 8729 "configure" +#line 8744 "configure" #include "confdefs.h" #include <sys/types.h> int @@ -8741,16 +8756,16 @@ make an error } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8744: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8759: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8747: \$? = $ac_status" >&5 + echo "$as_me:8762: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8750: \"$ac_try\"") >&5 + { (eval echo "$as_me:8765: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8753: \$? = $ac_status" >&5 + echo "$as_me:8768: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -8766,7 +8781,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:8769: result: $cf_cv_posix_c_source" >&5 +echo "$as_me:8784: result: $cf_cv_posix_c_source" >&5 echo "${ECHO_T}$cf_cv_posix_c_source" >&6 if test "$cf_cv_posix_c_source" != no ; then @@ -8783,14 +8798,14 @@ fi ;; esac -echo "$as_me:8786: checking if SIGWINCH is defined" >&5 +echo "$as_me:8801: checking if SIGWINCH is defined" >&5 echo $ECHO_N "checking if SIGWINCH is defined... $ECHO_C" >&6 if test "${cf_cv_define_sigwinch+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 8793 "configure" +#line 8808 "configure" #include "confdefs.h" #include <sys/types.h> @@ -8805,23 +8820,23 @@ int x = SIGWINCH } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8808: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8823: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8811: \$? = $ac_status" >&5 + echo "$as_me:8826: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8814: \"$ac_try\"") >&5 + { (eval echo "$as_me:8829: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8817: \$? = $ac_status" >&5 + echo "$as_me:8832: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_define_sigwinch=yes else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 8824 "configure" +#line 8839 "configure" #include "confdefs.h" #undef _XOPEN_SOURCE @@ -8839,16 +8854,16 @@ int x = SIGWINCH } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8842: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8857: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8845: \$? = $ac_status" >&5 + echo "$as_me:8860: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8848: \"$ac_try\"") >&5 + { (eval echo "$as_me:8863: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8851: \$? = $ac_status" >&5 + echo "$as_me:8866: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_define_sigwinch=maybe else @@ -8862,11 +8877,11 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:8865: result: $cf_cv_define_sigwinch" >&5 +echo "$as_me:8880: result: $cf_cv_define_sigwinch" >&5 echo "${ECHO_T}$cf_cv_define_sigwinch" >&6 if test "$cf_cv_define_sigwinch" = maybe ; then -echo "$as_me:8869: checking for actual SIGWINCH definition" >&5 +echo "$as_me:8884: checking for actual SIGWINCH definition" >&5 echo $ECHO_N "checking for actual SIGWINCH definition... $ECHO_C" >&6 if test "${cf_cv_fixup_sigwinch+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -8877,7 +8892,7 @@ cf_sigwinch=32 while test $cf_sigwinch != 1 do cat >conftest.$ac_ext <<_ACEOF -#line 8880 "configure" +#line 8895 "configure" #include "confdefs.h" #undef _XOPEN_SOURCE @@ -8899,16 +8914,16 @@ int x = SIGWINCH } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:8902: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:8917: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:8905: \$? = $ac_status" >&5 + echo "$as_me:8920: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:8908: \"$ac_try\"") >&5 + { (eval echo "$as_me:8923: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:8911: \$? = $ac_status" >&5 + echo "$as_me:8926: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fixup_sigwinch=$cf_sigwinch break @@ -8922,7 +8937,7 @@ cf_sigwinch=`expr $cf_sigwinch - 1` done fi -echo "$as_me:8925: result: $cf_cv_fixup_sigwinch" >&5 +echo "$as_me:8940: result: $cf_cv_fixup_sigwinch" >&5 echo "${ECHO_T}$cf_cv_fixup_sigwinch" >&6 if test "$cf_cv_fixup_sigwinch" != unknown ; then @@ -8934,7 +8949,7 @@ if test -n "$TRY_CFLAGS" ; then test -n "$verbose" && echo " checking additions to CFLAGS" 1>&6 -echo "${as_me-configure}:8937: testing checking additions to CFLAGS ..." 1>&5 +echo "${as_me-configure}:8952: testing checking additions to CFLAGS ..." 1>&5 cf_check_cflags="$CFLAGS" cf_check_cppflags="$CPPFLAGS" @@ -8995,7 +9010,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}:8998: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 +echo "${as_me-configure}:9013: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 CFLAGS="$CFLAGS $cf_new_cflags" fi @@ -9003,7 +9018,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}:9006: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 +echo "${as_me-configure}:9021: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 CPPFLAGS="$CPPFLAGS $cf_new_cppflags" fi @@ -9011,14 +9026,14 @@ 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}:9014: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 +echo "${as_me-configure}:9029: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 EXTRA_CPPFLAGS="$cf_new_extra_cppflags $EXTRA_CPPFLAGS" fi if test "$cf_check_cflags" != "$CFLAGS" ; then cat >conftest.$ac_ext <<_ACEOF -#line 9021 "configure" +#line 9036 "configure" #include "confdefs.h" #include <stdio.h> int @@ -9030,16 +9045,16 @@ printf("Hello world"); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:9033: \"$ac_link\"") >&5 +if { (eval echo "$as_me:9048: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:9036: \$? = $ac_status" >&5 + echo "$as_me:9051: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:9039: \"$ac_try\"") >&5 + { (eval echo "$as_me:9054: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9042: \$? = $ac_status" >&5 + echo "$as_me:9057: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -9047,12 +9062,12 @@ else cat conftest.$ac_ext >&5 test -n "$verbose" && echo " test-compile failed. Undoing change to \$CFLAGS" 1>&6 -echo "${as_me-configure}:9050: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 +echo "${as_me-configure}:9065: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 if test "$cf_check_cppflags" != "$CPPFLAGS" ; then test -n "$verbose" && echo " but keeping change to \$CPPFLAGS" 1>&6 -echo "${as_me-configure}:9055: testing but keeping change to \$CPPFLAGS ..." 1>&5 +echo "${as_me-configure}:9070: testing but keeping change to \$CPPFLAGS ..." 1>&5 fi CFLAGS="$cf_check_flags" @@ -9064,7 +9079,7 @@ fi ### Look for network libraries first, since some functions (such as gethostname) ### are used in a lot of places. -echo "$as_me:9067: checking if you want NSS compatible SSL libraries" >&5 +echo "$as_me:9082: checking if you want NSS compatible SSL libraries" >&5 echo $ECHO_N "checking if you want NSS compatible SSL libraries... $ECHO_C" >&6 if test "${cf_cv_use_libnss_compat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9079,10 +9094,10 @@ else fi; fi -echo "$as_me:9082: result: $cf_cv_use_libnss_compat" >&5 +echo "$as_me:9097: result: $cf_cv_use_libnss_compat" >&5 echo "${ECHO_T}$cf_cv_use_libnss_compat" >&6 -echo "$as_me:9085: checking if you want ssl library" >&5 +echo "$as_me:9100: checking if you want ssl library" >&5 echo $ECHO_N "checking if you want ssl library... $ECHO_C" >&6 if test "${cf_cv_use_libssl+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9097,10 +9112,10 @@ else fi; fi -echo "$as_me:9100: result: $cf_cv_use_libssl" >&5 +echo "$as_me:9115: result: $cf_cv_use_libssl" >&5 echo "${ECHO_T}$cf_cv_use_libssl" >&6 -echo "$as_me:9103: checking if you want gnutls support" >&5 +echo "$as_me:9118: checking if you want gnutls support" >&5 echo $ECHO_N "checking if you want gnutls support... $ECHO_C" >&6 if test "${cf_cv_use_libgnutls+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9115,11 +9130,11 @@ else fi; fi -echo "$as_me:9118: result: $cf_cv_use_libgnutls" >&5 +echo "$as_me:9133: result: $cf_cv_use_libgnutls" >&5 echo "${ECHO_T}$cf_cv_use_libgnutls" >&6 # this option is mainly for comparing with/without Lynx's wrapper for GNUTLS. -echo "$as_me:9122: checking if you want gnutls-openssl compat" >&5 +echo "$as_me:9137: checking if you want gnutls-openssl compat" >&5 echo $ECHO_N "checking if you want gnutls-openssl compat... $ECHO_C" >&6 if test "${cf_cv_gnutls_compat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9134,10 +9149,10 @@ else fi; fi -echo "$as_me:9137: result: $cf_cv_gnutls_compat" >&5 +echo "$as_me:9152: result: $cf_cv_gnutls_compat" >&5 echo "${ECHO_T}$cf_cv_gnutls_compat" >&6 -echo "$as_me:9140: checking if you want socks library" >&5 +echo "$as_me:9155: checking if you want socks library" >&5 echo $ECHO_N "checking if you want socks library... $ECHO_C" >&6 if test "${cf_cv_use_libsocks+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9152,10 +9167,10 @@ else fi; fi -echo "$as_me:9155: result: $cf_cv_use_libsocks" >&5 +echo "$as_me:9170: result: $cf_cv_use_libsocks" >&5 echo "${ECHO_T}$cf_cv_use_libsocks" >&6 -echo "$as_me:9158: checking if you want socks5 library" >&5 +echo "$as_me:9173: checking if you want socks5 library" >&5 echo $ECHO_N "checking if you want socks5 library... $ECHO_C" >&6 if test "${cf_cv_use_libsocks5+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -9170,7 +9185,7 @@ else fi; fi -echo "$as_me:9173: result: $cf_cv_use_libsocks5" >&5 +echo "$as_me:9188: result: $cf_cv_use_libsocks5" >&5 echo "${ECHO_T}$cf_cv_use_libsocks5" >&6 if test "x$cf_cv_use_libsocks" != xno ; then @@ -9209,7 +9224,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 9212 "configure" +#line 9227 "configure" #include "confdefs.h" #include <stdio.h> int @@ -9221,16 +9236,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9224: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9239: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9227: \$? = $ac_status" >&5 + echo "$as_me:9242: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9230: \"$ac_try\"") >&5 + { (eval echo "$as_me:9245: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9233: \$? = $ac_status" >&5 + echo "$as_me:9248: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -9247,7 +9262,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}:9250: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:9265: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -9288,7 +9303,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 9291 "configure" +#line 9306 "configure" #include "confdefs.h" #include <stdio.h> int @@ -9300,16 +9315,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9303: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9318: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9306: \$? = $ac_status" >&5 + echo "$as_me:9321: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9309: \"$ac_try\"") >&5 + { (eval echo "$as_me:9324: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9312: \$? = $ac_status" >&5 + echo "$as_me:9327: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -9326,7 +9341,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}:9329: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:9344: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -9342,7 +9357,7 @@ echo "${as_me-configure}:9329: testing adding $cf_add_incdir to include-path ... fi else -{ { echo "$as_me:9345: error: cannot find socks library under $cf_cv_use_libsocks" >&5 +{ { echo "$as_me:9360: error: cannot find socks library under $cf_cv_use_libsocks" >&5 echo "$as_me: error: cannot find socks library under $cf_cv_use_libsocks" >&2;} { (exit 1); exit 1; }; } fi @@ -9367,7 +9382,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}:9370: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:9385: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -9396,7 +9411,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}:9399: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:9414: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -9405,7 +9420,7 @@ echo "${as_me-configure}:9399: testing adding $cf_add_libdir to library-path ... fi else -{ { echo "$as_me:9408: error: cannot find socks library under $cf_cv_use_libsocks" >&5 +{ { echo "$as_me:9423: error: cannot find socks library under $cf_cv_use_libsocks" >&5 echo "$as_me: error: cannot find socks library under $cf_cv_use_libsocks" >&2;} { (exit 1); exit 1; }; } fi @@ -9419,10 +9434,10 @@ done cf_cv_header_path_socks= cf_cv_library_path_socks= -echo "${as_me-configure}:9422: testing Starting FIND_LINKAGE(socks,) ..." 1>&5 +echo "${as_me-configure}:9437: testing Starting FIND_LINKAGE(socks,) ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 9425 "configure" +#line 9440 "configure" #include "confdefs.h" #include <stdio.h> @@ -9438,16 +9453,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:9441: \"$ac_link\"") >&5 +if { (eval echo "$as_me:9456: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:9444: \$? = $ac_status" >&5 + echo "$as_me:9459: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:9447: \"$ac_try\"") >&5 + { (eval echo "$as_me:9462: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9450: \$? = $ac_status" >&5 + echo "$as_me:9465: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_socks=yes else @@ -9458,9 +9473,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for socks library" 1>&6 -echo "${as_me-configure}:9461: testing find linkage for socks library ..." 1>&5 +echo "${as_me-configure}:9476: testing find linkage for socks library ..." 1>&5 -echo "${as_me-configure}:9463: testing Searching for headers in FIND_LINKAGE(socks,) ..." 1>&5 +echo "${as_me-configure}:9478: testing Searching for headers in FIND_LINKAGE(socks,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -9568,11 +9583,11 @@ cf_search="$cf_header_path_list $cf_search" if test -d $cf_cv_header_path_socks ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_socks" 1>&6 -echo "${as_me-configure}:9571: testing ... testing $cf_cv_header_path_socks ..." 1>&5 +echo "${as_me-configure}:9586: testing ... testing $cf_cv_header_path_socks ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_socks" cat >conftest.$ac_ext <<_ACEOF -#line 9575 "configure" +#line 9590 "configure" #include "confdefs.h" #include <stdio.h> @@ -9588,21 +9603,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9591: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9606: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9594: \$? = $ac_status" >&5 + echo "$as_me:9609: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9597: \"$ac_try\"") >&5 + { (eval echo "$as_me:9612: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9600: \$? = $ac_status" >&5 + echo "$as_me:9615: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found socks headers in $cf_cv_header_path_socks" 1>&6 -echo "${as_me-configure}:9605: testing ... found socks headers in $cf_cv_header_path_socks ..." 1>&5 +echo "${as_me-configure}:9620: testing ... found socks headers in $cf_cv_header_path_socks ..." 1>&5 cf_cv_find_linkage_socks=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -9620,7 +9635,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_socks" = maybe ; then -echo "${as_me-configure}:9623: testing Searching for socks library in FIND_LINKAGE(socks,) ..." 1>&5 +echo "${as_me-configure}:9638: testing Searching for socks library in FIND_LINKAGE(socks,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -9716,13 +9731,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_socks ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_socks" 1>&6 -echo "${as_me-configure}:9719: testing ... testing $cf_cv_library_path_socks ..." 1>&5 +echo "${as_me-configure}:9734: testing ... testing $cf_cv_library_path_socks ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lsocks $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_socks" cat >conftest.$ac_ext <<_ACEOF -#line 9725 "configure" +#line 9740 "configure" #include "confdefs.h" #include <stdio.h> @@ -9738,21 +9753,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:9741: \"$ac_link\"") >&5 +if { (eval echo "$as_me:9756: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:9744: \$? = $ac_status" >&5 + echo "$as_me:9759: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:9747: \"$ac_try\"") >&5 + { (eval echo "$as_me:9762: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9750: \$? = $ac_status" >&5 + echo "$as_me:9765: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found socks library in $cf_cv_library_path_socks" 1>&6 -echo "${as_me-configure}:9755: testing ... found socks library in $cf_cv_library_path_socks ..." 1>&5 +echo "${as_me-configure}:9770: testing ... found socks library in $cf_cv_library_path_socks ..." 1>&5 cf_cv_find_linkage_socks=yes cf_cv_library_file_socks="-lsocks" @@ -9848,7 +9863,7 @@ if test -n "$cf_cv_header_path_socks" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 9851 "configure" +#line 9866 "configure" #include "confdefs.h" #include <stdio.h> int @@ -9860,16 +9875,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9863: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:9878: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9866: \$? = $ac_status" >&5 + echo "$as_me:9881: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9869: \"$ac_try\"") >&5 + { (eval echo "$as_me:9884: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9872: \$? = $ac_status" >&5 + echo "$as_me:9887: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -9886,7 +9901,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}:9889: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:9904: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -9920,7 +9935,7 @@ if test -n "$cf_cv_library_path_socks" ; 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}:9923: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:9938: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -9930,7 +9945,7 @@ fi LIBS="$LIBS -lsocks" else - { { echo "$as_me:9933: error: cannot link with socks library" >&5 + { { echo "$as_me:9948: error: cannot link with socks library" >&5 echo "$as_me: error: cannot link with socks library" >&2;} { (exit 1); exit 1; }; } fi @@ -9971,7 +9986,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 9974 "configure" +#line 9989 "configure" #include "confdefs.h" #include <stdio.h> int @@ -9983,16 +9998,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:9986: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10001: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:9989: \$? = $ac_status" >&5 + echo "$as_me:10004: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:9992: \"$ac_try\"") >&5 + { (eval echo "$as_me:10007: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:9995: \$? = $ac_status" >&5 + echo "$as_me:10010: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -10009,7 +10024,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}:10012: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:10027: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -10050,7 +10065,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 10053 "configure" +#line 10068 "configure" #include "confdefs.h" #include <stdio.h> int @@ -10062,16 +10077,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10065: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10080: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10068: \$? = $ac_status" >&5 + echo "$as_me:10083: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10071: \"$ac_try\"") >&5 + { (eval echo "$as_me:10086: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10074: \$? = $ac_status" >&5 + echo "$as_me:10089: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -10088,7 +10103,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}:10091: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:10106: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -10104,7 +10119,7 @@ echo "${as_me-configure}:10091: testing adding $cf_add_incdir to include-path .. fi else -{ { echo "$as_me:10107: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&5 +{ { echo "$as_me:10122: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&5 echo "$as_me: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&2;} { (exit 1); exit 1; }; } fi @@ -10129,7 +10144,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}:10132: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:10147: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -10158,7 +10173,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}:10161: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:10176: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -10167,7 +10182,7 @@ echo "${as_me-configure}:10161: testing adding $cf_add_libdir to library-path .. fi else -{ { echo "$as_me:10170: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&5 +{ { echo "$as_me:10185: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&5 echo "$as_me: error: cannot find socks5 library under $cf_cv_use_libsocks5" >&2;} { (exit 1); exit 1; }; } fi @@ -10186,11 +10201,11 @@ cat >>confdefs.h <<\EOF #define SOCKS 1 EOF -echo "$as_me:10189: checking if the socks library uses socks4 prefix" >&5 +echo "$as_me:10204: checking if the socks library uses socks4 prefix" >&5 echo $ECHO_N "checking if the socks library uses socks4 prefix... $ECHO_C" >&6 cf_use_socks4=error cat >conftest.$ac_ext <<_ACEOF -#line 10193 "configure" +#line 10208 "configure" #include "confdefs.h" #include <socks.h> @@ -10204,16 +10219,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10207: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10222: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10210: \$? = $ac_status" >&5 + echo "$as_me:10225: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10213: \"$ac_try\"") >&5 + { (eval echo "$as_me:10228: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10216: \$? = $ac_status" >&5 + echo "$as_me:10231: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >>confdefs.h <<\EOF #define USE_SOCKS4_PREFIX 1 @@ -10224,7 +10239,7 @@ else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 10227 "configure" +#line 10242 "configure" #include "confdefs.h" #include <socks.h> int @@ -10236,29 +10251,29 @@ SOCKSinit((char *)0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10239: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10254: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10242: \$? = $ac_status" >&5 + echo "$as_me:10257: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10245: \"$ac_try\"") >&5 + { (eval echo "$as_me:10260: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10248: \$? = $ac_status" >&5 + echo "$as_me:10263: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_use_socks4=no else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -{ { echo "$as_me:10254: error: Cannot link with socks5 library" >&5 +{ { echo "$as_me:10269: error: Cannot link with socks5 library" >&5 echo "$as_me: error: Cannot link with socks5 library" >&2;} { (exit 1); exit 1; }; } fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:10261: result: $cf_use_socks4" >&5 +echo "$as_me:10276: result: $cf_use_socks4" >&5 echo "${ECHO_T}$cf_use_socks4" >&6 if test "$cf_use_socks4" = "yes" ; then @@ -10313,10 +10328,10 @@ EOF fi -echo "$as_me:10316: checking if socks5p.h is available" >&5 +echo "$as_me:10331: checking if socks5p.h is available" >&5 echo $ECHO_N "checking if socks5p.h is available... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 10319 "configure" +#line 10334 "configure" #include "confdefs.h" #define INCLUDE_PROTOTYPES @@ -10331,16 +10346,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:10334: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:10349: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:10337: \$? = $ac_status" >&5 + echo "$as_me:10352: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:10340: \"$ac_try\"") >&5 + { (eval echo "$as_me:10355: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10343: \$? = $ac_status" >&5 + echo "$as_me:10358: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_use_socks5p_h=yes else @@ -10349,7 +10364,7 @@ cat conftest.$ac_ext >&5 cf_use_socks5p_h=no fi rm -f conftest.$ac_objext conftest.$ac_ext -echo "$as_me:10352: result: $cf_use_socks5p_h" >&5 +echo "$as_me:10367: result: $cf_use_socks5p_h" >&5 echo "${ECHO_T}$cf_use_socks5p_h" >&6 test "$cf_use_socks5p_h" = yes && cat >>confdefs.h <<\EOF @@ -10360,14 +10375,14 @@ else cf_test_netlibs=no -echo "$as_me:10363: checking for network libraries" >&5 +echo "$as_me:10378: checking for network libraries" >&5 echo $ECHO_N "checking for network libraries... $ECHO_C" >&6 if test "${cf_cv_netlibs+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else -echo "$as_me:10370: result: working..." >&5 +echo "$as_me:10385: result: working..." >&5 echo "${ECHO_T}working..." >&6 cf_cv_netlibs="" @@ -10379,23 +10394,23 @@ mingw32) # (vi for ac_header in windows.h winsock.h winsock2.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:10382: checking for $ac_header" >&5 +echo "$as_me:10397: 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 10388 "configure" +#line 10403 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:10392: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:10407: \"$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:10398: \$? = $ac_status" >&5 + echo "$as_me:10413: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -10414,7 +10429,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:10417: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:10432: 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 @@ -10434,7 +10449,7 @@ done LIBS="$cf_winsock_lib $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 10437 "configure" +#line 10452 "configure" #include "confdefs.h" #ifdef HAVE_WINDOWS_H @@ -10461,22 +10476,22 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10464: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10479: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10467: \$? = $ac_status" >&5 + echo "$as_me:10482: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10470: \"$ac_try\"") >&5 + { (eval echo "$as_me:10485: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10473: \$? = $ac_status" >&5 + echo "$as_me:10488: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_netlibs="$cf_winsock_lib $cf_cv_netlibs" else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -{ { echo "$as_me:10479: error: Cannot link against winsock library" >&5 +{ { echo "$as_me:10494: error: Cannot link against winsock library" >&5 echo "$as_me: error: Cannot link against winsock library" >&2;} { (exit 1); exit 1; }; } fi @@ -10489,13 +10504,13 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext for ac_func in gethostname do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:10492: checking for $ac_func" >&5 +echo "$as_me:10507: 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 10498 "configure" +#line 10513 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -10526,16 +10541,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10529: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10544: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10532: \$? = $ac_status" >&5 + echo "$as_me:10547: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10535: \"$ac_try\"") >&5 + { (eval echo "$as_me:10550: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10538: \$? = $ac_status" >&5 + echo "$as_me:10553: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -10545,7 +10560,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:10548: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:10563: 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 @@ -10554,7 +10569,7 @@ EOF else -echo "$as_me:10557: checking for gethostname in -lnsl" >&5 +echo "$as_me:10572: checking for gethostname in -lnsl" >&5 echo $ECHO_N "checking for gethostname in -lnsl... $ECHO_C" >&6 if test "${ac_cv_lib_nsl_gethostname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -10562,7 +10577,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 10565 "configure" +#line 10580 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -10581,16 +10596,16 @@ gethostname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10584: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10599: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10587: \$? = $ac_status" >&5 + echo "$as_me:10602: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10590: \"$ac_try\"") >&5 + { (eval echo "$as_me:10605: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10593: \$? = $ac_status" >&5 + echo "$as_me:10608: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nsl_gethostname=yes else @@ -10601,7 +10616,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:10604: result: $ac_cv_lib_nsl_gethostname" >&5 +echo "$as_me:10619: result: $ac_cv_lib_nsl_gethostname" >&5 echo "${ECHO_T}$ac_cv_lib_nsl_gethostname" >&6 if test $ac_cv_lib_nsl_gethostname = yes; then @@ -10618,7 +10633,7 @@ else ac_cv_func_gethostname=unknown unset ac_cv_func_gethostname 2>/dev/null -echo "$as_me:10621: checking for gethostname in -lsocket" >&5 +echo "$as_me:10636: checking for gethostname in -lsocket" >&5 echo $ECHO_N "checking for gethostname in -lsocket... $ECHO_C" >&6 if test "${ac_cv_lib_socket_gethostname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -10626,7 +10641,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 10629 "configure" +#line 10644 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -10645,16 +10660,16 @@ gethostname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10648: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10663: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10651: \$? = $ac_status" >&5 + echo "$as_me:10666: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10654: \"$ac_try\"") >&5 + { (eval echo "$as_me:10669: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10657: \$? = $ac_status" >&5 + echo "$as_me:10672: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_socket_gethostname=yes else @@ -10665,7 +10680,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:10668: result: $ac_cv_lib_socket_gethostname" >&5 +echo "$as_me:10683: result: $ac_cv_lib_socket_gethostname" >&5 echo "${ECHO_T}$ac_cv_lib_socket_gethostname" >&6 if test $ac_cv_lib_socket_gethostname = yes; then @@ -10689,7 +10704,7 @@ fi fi done - echo "$as_me:10692: checking for main in -linet" >&5 + echo "$as_me:10707: checking for main in -linet" >&5 echo $ECHO_N "checking for main in -linet... $ECHO_C" >&6 if test "${ac_cv_lib_inet_main+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -10697,7 +10712,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-linet $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 10700 "configure" +#line 10715 "configure" #include "confdefs.h" int @@ -10709,16 +10724,16 @@ main (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10712: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10727: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10715: \$? = $ac_status" >&5 + echo "$as_me:10730: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10718: \"$ac_try\"") >&5 + { (eval echo "$as_me:10733: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10721: \$? = $ac_status" >&5 + echo "$as_me:10736: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_inet_main=yes else @@ -10729,7 +10744,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:10732: result: $ac_cv_lib_inet_main" >&5 +echo "$as_me:10747: result: $ac_cv_lib_inet_main" >&5 echo "${ECHO_T}$ac_cv_lib_inet_main" >&6 if test $ac_cv_lib_inet_main = yes; then cf_cv_netlibs="-linet $cf_cv_netlibs" @@ -10740,13 +10755,13 @@ fi for ac_func in socket do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:10743: checking for $ac_func" >&5 +echo "$as_me:10758: 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 10749 "configure" +#line 10764 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -10777,16 +10792,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10780: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10795: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10783: \$? = $ac_status" >&5 + echo "$as_me:10798: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10786: \"$ac_try\"") >&5 + { (eval echo "$as_me:10801: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10789: \$? = $ac_status" >&5 + echo "$as_me:10804: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -10796,7 +10811,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:10799: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:10814: 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 @@ -10805,7 +10820,7 @@ EOF else -echo "$as_me:10808: checking for socket in -lsocket" >&5 +echo "$as_me:10823: checking for socket in -lsocket" >&5 echo $ECHO_N "checking for socket in -lsocket... $ECHO_C" >&6 if test "${ac_cv_lib_socket_socket+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -10813,7 +10828,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 10816 "configure" +#line 10831 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -10832,16 +10847,16 @@ socket (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10835: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10850: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10838: \$? = $ac_status" >&5 + echo "$as_me:10853: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10841: \"$ac_try\"") >&5 + { (eval echo "$as_me:10856: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10844: \$? = $ac_status" >&5 + echo "$as_me:10859: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_socket_socket=yes else @@ -10852,7 +10867,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:10855: result: $ac_cv_lib_socket_socket" >&5 +echo "$as_me:10870: result: $ac_cv_lib_socket_socket" >&5 echo "${ECHO_T}$ac_cv_lib_socket_socket" >&6 if test $ac_cv_lib_socket_socket = yes; then @@ -10869,7 +10884,7 @@ else ac_cv_func_socket=unknown unset ac_cv_func_socket 2>/dev/null -echo "$as_me:10872: checking for socket in -lbsd" >&5 +echo "$as_me:10887: checking for socket in -lbsd" >&5 echo $ECHO_N "checking for socket in -lbsd... $ECHO_C" >&6 if test "${ac_cv_lib_bsd_socket+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -10877,7 +10892,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lbsd $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 10880 "configure" +#line 10895 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -10896,16 +10911,16 @@ socket (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10899: \"$ac_link\"") >&5 +if { (eval echo "$as_me:10914: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10902: \$? = $ac_status" >&5 + echo "$as_me:10917: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10905: \"$ac_try\"") >&5 + { (eval echo "$as_me:10920: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10908: \$? = $ac_status" >&5 + echo "$as_me:10923: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_bsd_socket=yes else @@ -10916,7 +10931,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:10919: result: $ac_cv_lib_bsd_socket" >&5 +echo "$as_me:10934: result: $ac_cv_lib_bsd_socket" >&5 echo "${ECHO_T}$ac_cv_lib_bsd_socket" >&6 if test $ac_cv_lib_bsd_socket = yes; then @@ -10945,13 +10960,13 @@ done for ac_func in gethostbyname do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:10948: checking for $ac_func" >&5 +echo "$as_me:10963: 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 10954 "configure" +#line 10969 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -10982,16 +10997,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:10985: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11000: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:10988: \$? = $ac_status" >&5 + echo "$as_me:11003: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:10991: \"$ac_try\"") >&5 + { (eval echo "$as_me:11006: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:10994: \$? = $ac_status" >&5 + echo "$as_me:11009: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -11001,7 +11016,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:11004: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:11019: 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 @@ -11010,7 +11025,7 @@ EOF else -echo "$as_me:11013: checking for gethostbyname in -lnsl" >&5 +echo "$as_me:11028: checking for gethostbyname in -lnsl" >&5 echo $ECHO_N "checking for gethostbyname in -lnsl... $ECHO_C" >&6 if test "${ac_cv_lib_nsl_gethostbyname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -11018,7 +11033,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 11021 "configure" +#line 11036 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -11037,16 +11052,16 @@ gethostbyname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11040: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11055: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11043: \$? = $ac_status" >&5 + echo "$as_me:11058: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11046: \"$ac_try\"") >&5 + { (eval echo "$as_me:11061: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11049: \$? = $ac_status" >&5 + echo "$as_me:11064: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nsl_gethostbyname=yes else @@ -11057,7 +11072,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:11060: result: $ac_cv_lib_nsl_gethostbyname" >&5 +echo "$as_me:11075: result: $ac_cv_lib_nsl_gethostbyname" >&5 echo "${ECHO_T}$ac_cv_lib_nsl_gethostbyname" >&6 if test $ac_cv_lib_nsl_gethostbyname = yes; then @@ -11082,13 +11097,13 @@ done for ac_func in strcasecmp do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:11085: checking for $ac_func" >&5 +echo "$as_me:11100: 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 11091 "configure" +#line 11106 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -11119,16 +11134,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11122: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11137: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11125: \$? = $ac_status" >&5 + echo "$as_me:11140: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11128: \"$ac_try\"") >&5 + { (eval echo "$as_me:11143: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11131: \$? = $ac_status" >&5 + echo "$as_me:11146: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -11138,7 +11153,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:11141: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:11156: 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 @@ -11147,7 +11162,7 @@ EOF else -echo "$as_me:11150: checking for strcasecmp in -lresolv" >&5 +echo "$as_me:11165: checking for strcasecmp in -lresolv" >&5 echo $ECHO_N "checking for strcasecmp in -lresolv... $ECHO_C" >&6 if test "${ac_cv_lib_resolv_strcasecmp+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -11155,7 +11170,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lresolv $cf_cv_netlibs $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 11158 "configure" +#line 11173 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -11174,16 +11189,16 @@ strcasecmp (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11177: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11192: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11180: \$? = $ac_status" >&5 + echo "$as_me:11195: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11183: \"$ac_try\"") >&5 + { (eval echo "$as_me:11198: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11186: \$? = $ac_status" >&5 + echo "$as_me:11201: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_resolv_strcasecmp=yes else @@ -11194,7 +11209,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:11197: result: $ac_cv_lib_resolv_strcasecmp" >&5 +echo "$as_me:11212: result: $ac_cv_lib_resolv_strcasecmp" >&5 echo "${ECHO_T}$ac_cv_lib_resolv_strcasecmp" >&6 if test $ac_cv_lib_resolv_strcasecmp = yes; then @@ -11235,14 +11250,14 @@ test $cf_test_netlibs = no && echo "$cf_cv_netlibs" >&6 fi -echo "$as_me:11238: checking for inet_aton function" >&5 +echo "$as_me:11253: checking for inet_aton function" >&5 echo $ECHO_N "checking for inet_aton function... $ECHO_C" >&6 if test "${cf_cv_have_inet_aton+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 11245 "configure" +#line 11260 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/socket.h> @@ -11258,16 +11273,16 @@ inet_aton(0, (struct in_addr *)0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11261: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11276: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11264: \$? = $ac_status" >&5 + echo "$as_me:11279: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11267: \"$ac_try\"") >&5 + { (eval echo "$as_me:11282: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11270: \$? = $ac_status" >&5 + echo "$as_me:11285: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_inet_aton=yes else @@ -11277,7 +11292,7 @@ cf_cv_have_inet_aton=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:11280: result: $cf_cv_have_inet_aton" >&5 +echo "$as_me:11295: result: $cf_cv_have_inet_aton" >&5 echo "${ECHO_T}$cf_cv_have_inet_aton" >&6 if test "$cf_cv_have_inet_aton" = yes ; then cat >>confdefs.h <<\EOF @@ -11285,14 +11300,14 @@ if test "$cf_cv_have_inet_aton" = yes ; then EOF else - echo "$as_me:11288: checking for inet_addr function" >&5 + echo "$as_me:11303: checking for inet_addr function" >&5 echo $ECHO_N "checking for inet_addr function... $ECHO_C" >&6 if test "${cf_cv_have_inet_addr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 11295 "configure" +#line 11310 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/socket.h> @@ -11308,16 +11323,16 @@ inet_addr(0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11311: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11326: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11314: \$? = $ac_status" >&5 + echo "$as_me:11329: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11317: \"$ac_try\"") >&5 + { (eval echo "$as_me:11332: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11320: \$? = $ac_status" >&5 + echo "$as_me:11335: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_inet_addr=yes else @@ -11327,10 +11342,10 @@ cf_cv_have_inet_addr=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:11330: result: $cf_cv_have_inet_addr" >&5 +echo "$as_me:11345: result: $cf_cv_have_inet_addr" >&5 echo "${ECHO_T}$cf_cv_have_inet_addr" >&6 if test "$cf_cv_have_inet_addr" = no ; then - echo "$as_me:11333: checking for library with inet_addr" >&5 + echo "$as_me:11348: checking for library with inet_addr" >&5 echo $ECHO_N "checking for library with inet_addr... $ECHO_C" >&6 if test "${cf_cv_lib_inet_addr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -11341,7 +11356,7 @@ else do LIBS="$cf_save_LIBS $cf_inetlib" cat >conftest.$ac_ext <<_ACEOF -#line 11344 "configure" +#line 11359 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/socket.h> @@ -11357,16 +11372,16 @@ inet_addr(0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11360: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11375: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11363: \$? = $ac_status" >&5 + echo "$as_me:11378: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11366: \"$ac_try\"") >&5 + { (eval echo "$as_me:11381: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11369: \$? = $ac_status" >&5 + echo "$as_me:11384: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_lib_inet_addr=$cf_inetlib else @@ -11380,18 +11395,18 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext done fi -echo "$as_me:11383: result: $cf_cv_lib_inet_addr" >&5 +echo "$as_me:11398: result: $cf_cv_lib_inet_addr" >&5 echo "${ECHO_T}$cf_cv_lib_inet_addr" >&6 if test "$cf_cv_lib_inet_addr" != no ; then LIBS="$LIBS $cf_cv_lib_inet_addr" else - { echo "$as_me:11388: WARNING: Unable to find library for inet_addr function" >&5 + { echo "$as_me:11403: WARNING: Unable to find library for inet_addr function" >&5 echo "$as_me: WARNING: Unable to find library for inet_addr function" >&2;} fi fi fi -echo "$as_me:11394: checking if you want to use pkg-config" >&5 +echo "$as_me:11409: checking if you want to use pkg-config" >&5 echo $ECHO_N "checking if you want to use pkg-config... $ECHO_C" >&6 # Check whether --with-pkg-config or --without-pkg-config was given. @@ -11401,7 +11416,7 @@ if test "${with_pkg_config+set}" = set; then else cf_pkg_config=yes fi; -echo "$as_me:11404: result: $cf_pkg_config" >&5 +echo "$as_me:11419: result: $cf_pkg_config" >&5 echo "${ECHO_T}$cf_pkg_config" >&6 case $cf_pkg_config in #(vi @@ -11411,7 +11426,7 @@ no) #(vi yes) #(vi # Extract the first word of "pkg-config", so it can be a program name with args. set dummy pkg-config; ac_word=$2 -echo "$as_me:11414: checking for $ac_word" >&5 +echo "$as_me:11429: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_PKG_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -11428,7 +11443,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_PKG_CONFIG="$ac_dir/$ac_word" - echo "$as_me:11431: found $ac_dir/$ac_word" >&5 + echo "$as_me:11446: found $ac_dir/$ac_word" >&5 break fi done @@ -11440,10 +11455,10 @@ fi PKG_CONFIG=$ac_cv_path_PKG_CONFIG if test -n "$PKG_CONFIG"; then - echo "$as_me:11443: result: $PKG_CONFIG" >&5 + echo "$as_me:11458: result: $PKG_CONFIG" >&5 echo "${ECHO_T}$PKG_CONFIG" >&6 else - echo "$as_me:11446: result: no" >&5 + echo "$as_me:11461: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -11481,7 +11496,7 @@ case ".$PKG_CONFIG" in #(vi PKG_CONFIG=`echo $PKG_CONFIG | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:11484: error: expected a pathname, not \"$PKG_CONFIG\"" >&5 + { { echo "$as_me:11499: error: expected a pathname, not \"$PKG_CONFIG\"" >&5 echo "$as_me: error: expected a pathname, not \"$PKG_CONFIG\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -11529,7 +11544,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 11532 "configure" +#line 11547 "configure" #include "confdefs.h" #include <stdio.h> int @@ -11541,16 +11556,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11544: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11559: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11547: \$? = $ac_status" >&5 + echo "$as_me:11562: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11550: \"$ac_try\"") >&5 + { (eval echo "$as_me:11565: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11553: \$? = $ac_status" >&5 + echo "$as_me:11568: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -11567,7 +11582,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}:11570: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:11585: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -11608,7 +11623,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 11611 "configure" +#line 11626 "configure" #include "confdefs.h" #include <stdio.h> int @@ -11620,16 +11635,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:11623: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:11638: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:11626: \$? = $ac_status" >&5 + echo "$as_me:11641: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:11629: \"$ac_try\"") >&5 + { (eval echo "$as_me:11644: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11632: \$? = $ac_status" >&5 + echo "$as_me:11647: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -11646,7 +11661,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}:11649: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:11664: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -11662,7 +11677,7 @@ echo "${as_me-configure}:11649: testing adding $cf_add_incdir to include-path .. fi else -{ { echo "$as_me:11665: error: cannot find ssl library under $cf_cv_use_libssl" >&5 +{ { echo "$as_me:11680: error: cannot find ssl library under $cf_cv_use_libssl" >&5 echo "$as_me: error: cannot find ssl library under $cf_cv_use_libssl" >&2;} { (exit 1); exit 1; }; } fi @@ -11687,7 +11702,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}:11690: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:11705: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -11716,7 +11731,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}:11719: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:11734: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -11725,7 +11740,7 @@ echo "${as_me-configure}:11719: testing adding $cf_add_libdir to library-path .. fi else -{ { echo "$as_me:11728: error: cannot find ssl library under $cf_cv_use_libssl" >&5 +{ { echo "$as_me:11743: error: cannot find ssl library under $cf_cv_use_libssl" >&5 echo "$as_me: error: cannot find ssl library under $cf_cv_use_libssl" >&2;} { (exit 1); exit 1; }; } fi @@ -11839,7 +11854,7 @@ fi esac test -n "$verbose" && echo " adding $cf_libs_ssl to LIBS" 1>&6 -echo "${as_me-configure}:11842: testing adding $cf_libs_ssl to LIBS ..." 1>&5 +echo "${as_me-configure}:11857: testing adding $cf_libs_ssl to LIBS ..." 1>&5 LIBS="$cf_libs_ssl $LIBS" fi @@ -11860,7 +11875,7 @@ echo "${as_me-configure}:11842: testing adding $cf_libs_ssl to LIBS ..." 1>&5 *-ldl) #(vi ;; *) - echo "$as_me:11863: checking for dlsym in -ldl" >&5 + echo "$as_me:11878: checking for dlsym in -ldl" >&5 echo $ECHO_N "checking for dlsym in -ldl... $ECHO_C" >&6 if test "${ac_cv_lib_dl_dlsym+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -11868,7 +11883,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 11871 "configure" +#line 11886 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -11887,16 +11902,16 @@ dlsym (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11890: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11905: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11893: \$? = $ac_status" >&5 + echo "$as_me:11908: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11896: \"$ac_try\"") >&5 + { (eval echo "$as_me:11911: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11899: \$? = $ac_status" >&5 + echo "$as_me:11914: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dl_dlsym=yes else @@ -11907,7 +11922,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:11910: result: $ac_cv_lib_dl_dlsym" >&5 +echo "$as_me:11925: result: $ac_cv_lib_dl_dlsym" >&5 echo "${ECHO_T}$ac_cv_lib_dl_dlsym" >&6 if test $ac_cv_lib_dl_dlsym = yes; then cf_extra_ssl_libs="$cf_extra_ssl_libs -ldl" @@ -11923,10 +11938,10 @@ fi cf_cv_header_path_ssl= cf_cv_library_path_ssl= -echo "${as_me-configure}:11926: testing Starting FIND_LINKAGE(ssl,openssl) ..." 1>&5 +echo "${as_me-configure}:11941: testing Starting FIND_LINKAGE(ssl,openssl) ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 11929 "configure" +#line 11944 "configure" #include "confdefs.h" #include <stdio.h> @@ -11955,16 +11970,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:11958: \"$ac_link\"") >&5 +if { (eval echo "$as_me:11973: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:11961: \$? = $ac_status" >&5 + echo "$as_me:11976: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:11964: \"$ac_try\"") >&5 + { (eval echo "$as_me:11979: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:11967: \$? = $ac_status" >&5 + echo "$as_me:11982: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_ssl=yes else @@ -11975,9 +11990,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for ssl library" 1>&6 -echo "${as_me-configure}:11978: testing find linkage for ssl library ..." 1>&5 +echo "${as_me-configure}:11993: testing find linkage for ssl library ..." 1>&5 -echo "${as_me-configure}:11980: testing Searching for headers in FIND_LINKAGE(ssl,openssl) ..." 1>&5 +echo "${as_me-configure}:11995: testing Searching for headers in FIND_LINKAGE(ssl,openssl) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -12085,11 +12100,11 @@ cf_search="$cf_header_path_list $cf_search" if test -d $cf_cv_header_path_ssl ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_ssl" 1>&6 -echo "${as_me-configure}:12088: testing ... testing $cf_cv_header_path_ssl ..." 1>&5 +echo "${as_me-configure}:12103: testing ... testing $cf_cv_header_path_ssl ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_ssl" cat >conftest.$ac_ext <<_ACEOF -#line 12092 "configure" +#line 12107 "configure" #include "confdefs.h" #include <stdio.h> @@ -12118,21 +12133,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:12121: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12136: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12124: \$? = $ac_status" >&5 + echo "$as_me:12139: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:12127: \"$ac_try\"") >&5 + { (eval echo "$as_me:12142: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12130: \$? = $ac_status" >&5 + echo "$as_me:12145: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found ssl headers in $cf_cv_header_path_ssl" 1>&6 -echo "${as_me-configure}:12135: testing ... found ssl headers in $cf_cv_header_path_ssl ..." 1>&5 +echo "${as_me-configure}:12150: testing ... found ssl headers in $cf_cv_header_path_ssl ..." 1>&5 cf_cv_find_linkage_ssl=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -12150,7 +12165,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_ssl" = maybe ; then -echo "${as_me-configure}:12153: testing Searching for ssl library in FIND_LINKAGE(ssl,openssl) ..." 1>&5 +echo "${as_me-configure}:12168: testing Searching for ssl library in FIND_LINKAGE(ssl,openssl) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -12158,7 +12173,7 @@ echo "${as_me-configure}:12153: testing Searching for ssl library in FIND_LINKAG CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lssl $cf_extra_ssl_libs $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 12161 "configure" +#line 12176 "configure" #include "confdefs.h" #include <stdio.h> @@ -12187,21 +12202,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12190: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12205: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12193: \$? = $ac_status" >&5 + echo "$as_me:12208: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12196: \"$ac_try\"") >&5 + { (eval echo "$as_me:12211: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12199: \$? = $ac_status" >&5 + echo "$as_me:12214: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found ssl library in system" 1>&6 -echo "${as_me-configure}:12204: testing ... found ssl library in system ..." 1>&5 +echo "${as_me-configure}:12219: testing ... found ssl library in system ..." 1>&5 cf_cv_find_linkage_ssl=yes else @@ -12303,13 +12318,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_ssl ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_ssl" 1>&6 -echo "${as_me-configure}:12306: testing ... testing $cf_cv_library_path_ssl ..." 1>&5 +echo "${as_me-configure}:12321: testing ... testing $cf_cv_library_path_ssl ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lssl $cf_extra_ssl_libs $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_ssl" cat >conftest.$ac_ext <<_ACEOF -#line 12312 "configure" +#line 12327 "configure" #include "confdefs.h" #include <stdio.h> @@ -12338,21 +12353,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12341: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12356: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12344: \$? = $ac_status" >&5 + echo "$as_me:12359: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12347: \"$ac_try\"") >&5 + { (eval echo "$as_me:12362: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12350: \$? = $ac_status" >&5 + echo "$as_me:12365: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found ssl library in $cf_cv_library_path_ssl" 1>&6 -echo "${as_me-configure}:12355: testing ... found ssl library in $cf_cv_library_path_ssl ..." 1>&5 +echo "${as_me-configure}:12370: testing ... found ssl library in $cf_cv_library_path_ssl ..." 1>&5 cf_cv_find_linkage_ssl=yes cf_cv_library_file_ssl="-lssl" @@ -12409,7 +12424,7 @@ if test -n "$cf_cv_library_path_ssl" ; 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}:12412: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:12427: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -12449,7 +12464,7 @@ if test -n "$cf_cv_header_path_ssl" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 12452 "configure" +#line 12467 "configure" #include "confdefs.h" #include <stdio.h> int @@ -12461,16 +12476,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:12464: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12479: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12467: \$? = $ac_status" >&5 + echo "$as_me:12482: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:12470: \"$ac_try\"") >&5 + { (eval echo "$as_me:12485: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12473: \$? = $ac_status" >&5 + echo "$as_me:12488: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -12487,7 +12502,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}:12490: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:12505: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -12524,10 +12539,10 @@ EOF esac fi -echo "$as_me:12527: checking for X509 support" >&5 +echo "$as_me:12542: checking for X509 support" >&5 echo $ECHO_N "checking for X509 support... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 12530 "configure" +#line 12545 "configure" #include "confdefs.h" #include <stdio.h> @@ -12551,16 +12566,16 @@ X509_verify_cert_error_string(X509_STORE_CTX_get_error(NULL)) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:12554: \"$ac_link\"") >&5 +if { (eval echo "$as_me:12569: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:12557: \$? = $ac_status" >&5 + echo "$as_me:12572: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:12560: \"$ac_try\"") >&5 + { (eval echo "$as_me:12575: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12563: \$? = $ac_status" >&5 + echo "$as_me:12578: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_x509_support=yes else @@ -12569,7 +12584,7 @@ cat conftest.$ac_ext >&5 cf_x509_support=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:12572: result: $cf_x509_support" >&5 +echo "$as_me:12587: result: $cf_x509_support" >&5 echo "${ECHO_T}$cf_x509_support" >&6 if test "$cf_x509_support" = yes ; then @@ -12620,7 +12635,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 12623 "configure" +#line 12638 "configure" #include "confdefs.h" #include <stdio.h> int @@ -12632,16 +12647,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:12635: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12650: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12638: \$? = $ac_status" >&5 + echo "$as_me:12653: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:12641: \"$ac_try\"") >&5 + { (eval echo "$as_me:12656: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12644: \$? = $ac_status" >&5 + echo "$as_me:12659: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -12658,7 +12673,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}:12661: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:12676: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -12699,7 +12714,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 12702 "configure" +#line 12717 "configure" #include "confdefs.h" #include <stdio.h> int @@ -12711,16 +12726,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:12714: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:12729: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:12717: \$? = $ac_status" >&5 + echo "$as_me:12732: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:12720: \"$ac_try\"") >&5 + { (eval echo "$as_me:12735: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:12723: \$? = $ac_status" >&5 + echo "$as_me:12738: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -12737,7 +12752,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}:12740: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:12755: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -12753,7 +12768,7 @@ echo "${as_me-configure}:12740: testing adding $cf_add_incdir to include-path .. fi else -{ { echo "$as_me:12756: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 +{ { echo "$as_me:12771: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 echo "$as_me: error: cannot find ssl library under $cf_cv_use_libgnutls" >&2;} { (exit 1); exit 1; }; } fi @@ -12778,7 +12793,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}:12781: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:12796: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -12807,7 +12822,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}:12810: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:12825: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -12816,7 +12831,7 @@ echo "${as_me-configure}:12810: testing adding $cf_add_libdir to library-path .. fi else -{ { echo "$as_me:12819: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 +{ { echo "$as_me:12834: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 echo "$as_me: error: cannot find ssl library under $cf_cv_use_libgnutls" >&2;} { (exit 1); exit 1; }; } fi @@ -12834,12 +12849,12 @@ done yes) # if no explicit directory given, try pkg-config test -n "$verbose" && echo " checking pkg-config for $cf_pkg_gnutls" 1>&6 -echo "${as_me-configure}:12837: testing checking pkg-config for $cf_pkg_gnutls ..." 1>&5 +echo "${as_me-configure}:12852: testing checking pkg-config for $cf_pkg_gnutls ..." 1>&5 if "$PKG_CONFIG" --exists $cf_pkg_gnutls ; then test -n "$verbose" && echo " ... found $cf_pkg_gnutls in pkg-config" 1>&6 -echo "${as_me-configure}:12842: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5 +echo "${as_me-configure}:12857: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5 cf_cv_have_gnutls=yes @@ -12940,14 +12955,14 @@ fi esac test -n "$verbose" && echo " adding $cf_libs_ssl to LIBS" 1>&6 -echo "${as_me-configure}:12943: testing adding $cf_libs_ssl to LIBS ..." 1>&5 +echo "${as_me-configure}:12958: testing adding $cf_libs_ssl to LIBS ..." 1>&5 LIBS="$cf_libs_ssl $LIBS" fi else test -n "$verbose" && echo " ... did not find $cf_pkg_gnutls in pkg-config" 1>&6 -echo "${as_me-configure}:12950: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5 +echo "${as_me-configure}:12965: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5 cf_pkg_gnutls=none fi @@ -12967,10 +12982,10 @@ EOF cf_cv_header_path_gnutls= cf_cv_library_path_gnutls= -echo "${as_me-configure}:12970: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me-configure}:12985: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 12973 "configure" +#line 12988 "configure" #include "confdefs.h" #include <stdio.h> @@ -12999,16 +13014,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13002: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13017: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13005: \$? = $ac_status" >&5 + echo "$as_me:13020: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13008: \"$ac_try\"") >&5 + { (eval echo "$as_me:13023: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13011: \$? = $ac_status" >&5 + echo "$as_me:13026: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_gnutls=yes else @@ -13019,9 +13034,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for gnutls library" 1>&6 -echo "${as_me-configure}:13022: testing find linkage for gnutls library ..." 1>&5 +echo "${as_me-configure}:13037: testing find linkage for gnutls library ..." 1>&5 -echo "${as_me-configure}:13024: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me-configure}:13039: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -13129,11 +13144,11 @@ cf_search="$cf_header_path_list $cf_search" if test -d $cf_cv_header_path_gnutls ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_gnutls" 1>&6 -echo "${as_me-configure}:13132: testing ... testing $cf_cv_header_path_gnutls ..." 1>&5 +echo "${as_me-configure}:13147: testing ... testing $cf_cv_header_path_gnutls ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_gnutls" cat >conftest.$ac_ext <<_ACEOF -#line 13136 "configure" +#line 13151 "configure" #include "confdefs.h" #include <stdio.h> @@ -13162,21 +13177,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:13165: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13180: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13168: \$? = $ac_status" >&5 + echo "$as_me:13183: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:13171: \"$ac_try\"") >&5 + { (eval echo "$as_me:13186: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13174: \$? = $ac_status" >&5 + echo "$as_me:13189: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found gnutls headers in $cf_cv_header_path_gnutls" 1>&6 -echo "${as_me-configure}:13179: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5 +echo "${as_me-configure}:13194: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5 cf_cv_find_linkage_gnutls=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -13194,7 +13209,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_gnutls" = maybe ; then -echo "${as_me-configure}:13197: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me-configure}:13212: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -13290,13 +13305,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_gnutls ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_gnutls" 1>&6 -echo "${as_me-configure}:13293: testing ... testing $cf_cv_library_path_gnutls ..." 1>&5 +echo "${as_me-configure}:13308: testing ... testing $cf_cv_library_path_gnutls ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lgnutls -lgnutls -lcrypt $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_gnutls" cat >conftest.$ac_ext <<_ACEOF -#line 13299 "configure" +#line 13314 "configure" #include "confdefs.h" #include <stdio.h> @@ -13325,21 +13340,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13328: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13343: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13331: \$? = $ac_status" >&5 + echo "$as_me:13346: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13334: \"$ac_try\"") >&5 + { (eval echo "$as_me:13349: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13337: \$? = $ac_status" >&5 + echo "$as_me:13352: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found gnutls library in $cf_cv_library_path_gnutls" 1>&6 -echo "${as_me-configure}:13342: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5 +echo "${as_me-configure}:13357: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5 cf_cv_find_linkage_gnutls=yes cf_cv_library_file_gnutls="-lgnutls" @@ -13412,7 +13427,7 @@ if test -n "$cf_cv_header_path_gnutls" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 13415 "configure" +#line 13430 "configure" #include "confdefs.h" #include <stdio.h> int @@ -13424,16 +13439,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:13427: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13442: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13430: \$? = $ac_status" >&5 + echo "$as_me:13445: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:13433: \"$ac_try\"") >&5 + { (eval echo "$as_me:13448: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13436: \$? = $ac_status" >&5 + echo "$as_me:13451: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -13450,7 +13465,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}:13453: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:13468: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -13489,7 +13504,7 @@ if test -n "$cf_cv_library_path_gnutls" ; 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}:13492: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:13507: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -13502,10 +13517,10 @@ fi EXTRA_OBJS="$EXTRA_OBJS tidy_tls\$o" -echo "$as_me:13505: checking for X509 support" >&5 +echo "$as_me:13520: checking for X509 support" >&5 echo $ECHO_N "checking for X509 support... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 13508 "configure" +#line 13523 "configure" #include "confdefs.h" #include <stdio.h> @@ -13529,16 +13544,16 @@ X509_verify_cert_error_string(X509_STORE_CTX_get_error(NULL)) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13532: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13547: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13535: \$? = $ac_status" >&5 + echo "$as_me:13550: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13538: \"$ac_try\"") >&5 + { (eval echo "$as_me:13553: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13541: \$? = $ac_status" >&5 + echo "$as_me:13556: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_x509_support=yes else @@ -13547,7 +13562,7 @@ cat conftest.$ac_ext >&5 cf_x509_support=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:13550: result: $cf_x509_support" >&5 +echo "$as_me:13565: result: $cf_x509_support" >&5 echo "${ECHO_T}$cf_x509_support" >&6 if test "$cf_x509_support" = yes ; then @@ -13597,7 +13612,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 13600 "configure" +#line 13615 "configure" #include "confdefs.h" #include <stdio.h> int @@ -13609,16 +13624,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:13612: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13627: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13615: \$? = $ac_status" >&5 + echo "$as_me:13630: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:13618: \"$ac_try\"") >&5 + { (eval echo "$as_me:13633: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13621: \$? = $ac_status" >&5 + echo "$as_me:13636: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -13635,7 +13650,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}:13638: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:13653: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -13676,7 +13691,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 13679 "configure" +#line 13694 "configure" #include "confdefs.h" #include <stdio.h> int @@ -13688,16 +13703,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:13691: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:13706: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:13694: \$? = $ac_status" >&5 + echo "$as_me:13709: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:13697: \"$ac_try\"") >&5 + { (eval echo "$as_me:13712: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13700: \$? = $ac_status" >&5 + echo "$as_me:13715: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -13714,7 +13729,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}:13717: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:13732: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -13730,7 +13745,7 @@ echo "${as_me-configure}:13717: testing adding $cf_add_incdir to include-path .. fi else -{ { echo "$as_me:13733: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 +{ { echo "$as_me:13748: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 echo "$as_me: error: cannot find ssl library under $cf_cv_use_libgnutls" >&2;} { (exit 1); exit 1; }; } fi @@ -13755,7 +13770,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}:13758: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:13773: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -13784,7 +13799,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}:13787: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:13802: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -13793,7 +13808,7 @@ echo "${as_me-configure}:13787: testing adding $cf_add_libdir to library-path .. fi else -{ { echo "$as_me:13796: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 +{ { echo "$as_me:13811: error: cannot find ssl library under $cf_cv_use_libgnutls" >&5 echo "$as_me: error: cannot find ssl library under $cf_cv_use_libgnutls" >&2;} { (exit 1); exit 1; }; } fi @@ -13811,12 +13826,12 @@ done yes) # if no explicit directory given, try pkg-config test -n "$verbose" && echo " checking pkg-config for $cf_pkg_gnutls" 1>&6 -echo "${as_me-configure}:13814: testing checking pkg-config for $cf_pkg_gnutls ..." 1>&5 +echo "${as_me-configure}:13829: testing checking pkg-config for $cf_pkg_gnutls ..." 1>&5 if "$PKG_CONFIG" --exists $cf_pkg_gnutls ; then test -n "$verbose" && echo " ... found $cf_pkg_gnutls in pkg-config" 1>&6 -echo "${as_me-configure}:13819: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5 +echo "${as_me-configure}:13834: testing ... found $cf_pkg_gnutls in pkg-config ..." 1>&5 cf_cv_have_gnutls=yes @@ -13917,14 +13932,14 @@ fi esac test -n "$verbose" && echo " adding $cf_libs_ssl to LIBS" 1>&6 -echo "${as_me-configure}:13920: testing adding $cf_libs_ssl to LIBS ..." 1>&5 +echo "${as_me-configure}:13935: testing adding $cf_libs_ssl to LIBS ..." 1>&5 LIBS="$cf_libs_ssl $LIBS" fi else test -n "$verbose" && echo " ... did not find $cf_pkg_gnutls in pkg-config" 1>&6 -echo "${as_me-configure}:13927: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5 +echo "${as_me-configure}:13942: testing ... did not find $cf_pkg_gnutls in pkg-config ..." 1>&5 cf_pkg_gnutls=none fi @@ -13944,10 +13959,10 @@ EOF cf_cv_header_path_gnutls= cf_cv_library_path_gnutls= -echo "${as_me-configure}:13947: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me-configure}:13962: testing Starting FIND_LINKAGE(gnutls,) ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 13950 "configure" +#line 13965 "configure" #include "confdefs.h" #include <stdio.h> @@ -13976,16 +13991,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:13979: \"$ac_link\"") >&5 +if { (eval echo "$as_me:13994: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:13982: \$? = $ac_status" >&5 + echo "$as_me:13997: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:13985: \"$ac_try\"") >&5 + { (eval echo "$as_me:14000: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:13988: \$? = $ac_status" >&5 + echo "$as_me:14003: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_gnutls=yes else @@ -13996,9 +14011,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for gnutls library" 1>&6 -echo "${as_me-configure}:13999: testing find linkage for gnutls library ..." 1>&5 +echo "${as_me-configure}:14014: testing find linkage for gnutls library ..." 1>&5 -echo "${as_me-configure}:14001: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me-configure}:14016: testing Searching for headers in FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -14106,11 +14121,11 @@ cf_search="$cf_header_path_list $cf_search" if test -d $cf_cv_header_path_gnutls ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_gnutls" 1>&6 -echo "${as_me-configure}:14109: testing ... testing $cf_cv_header_path_gnutls ..." 1>&5 +echo "${as_me-configure}:14124: testing ... testing $cf_cv_header_path_gnutls ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_gnutls" cat >conftest.$ac_ext <<_ACEOF -#line 14113 "configure" +#line 14128 "configure" #include "confdefs.h" #include <stdio.h> @@ -14139,21 +14154,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:14142: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14157: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14145: \$? = $ac_status" >&5 + echo "$as_me:14160: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:14148: \"$ac_try\"") >&5 + { (eval echo "$as_me:14163: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14151: \$? = $ac_status" >&5 + echo "$as_me:14166: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found gnutls headers in $cf_cv_header_path_gnutls" 1>&6 -echo "${as_me-configure}:14156: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5 +echo "${as_me-configure}:14171: testing ... found gnutls headers in $cf_cv_header_path_gnutls ..." 1>&5 cf_cv_find_linkage_gnutls=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -14171,7 +14186,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_gnutls" = maybe ; then -echo "${as_me-configure}:14174: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5 +echo "${as_me-configure}:14189: testing Searching for gnutls library in FIND_LINKAGE(gnutls,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -14267,13 +14282,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_gnutls ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_gnutls" 1>&6 -echo "${as_me-configure}:14270: testing ... testing $cf_cv_library_path_gnutls ..." 1>&5 +echo "${as_me-configure}:14285: testing ... testing $cf_cv_library_path_gnutls ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lgnutls -lgnutls-openssl -lgnutls-extra -lgnutls -lcrypt $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_gnutls" cat >conftest.$ac_ext <<_ACEOF -#line 14276 "configure" +#line 14291 "configure" #include "confdefs.h" #include <stdio.h> @@ -14302,21 +14317,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14305: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14320: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14308: \$? = $ac_status" >&5 + echo "$as_me:14323: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14311: \"$ac_try\"") >&5 + { (eval echo "$as_me:14326: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14314: \$? = $ac_status" >&5 + echo "$as_me:14329: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found gnutls library in $cf_cv_library_path_gnutls" 1>&6 -echo "${as_me-configure}:14319: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5 +echo "${as_me-configure}:14334: testing ... found gnutls library in $cf_cv_library_path_gnutls ..." 1>&5 cf_cv_find_linkage_gnutls=yes cf_cv_library_file_gnutls="-lgnutls" @@ -14389,7 +14404,7 @@ if test -n "$cf_cv_header_path_gnutls" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 14392 "configure" +#line 14407 "configure" #include "confdefs.h" #include <stdio.h> int @@ -14401,16 +14416,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:14404: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14419: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14407: \$? = $ac_status" >&5 + echo "$as_me:14422: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:14410: \"$ac_try\"") >&5 + { (eval echo "$as_me:14425: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14413: \$? = $ac_status" >&5 + echo "$as_me:14428: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -14427,7 +14442,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}:14430: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:14445: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -14466,7 +14481,7 @@ if test -n "$cf_cv_library_path_gnutls" ; 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}:14469: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:14484: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -14478,7 +14493,7 @@ fi LIBS="-lgnutls -lcrypt $LIBS" if test "$cf_pkg_gnutls" = none ; then - echo "$as_me:14481: checking for SSL_connect in -lgnutls-openssl" >&5 + echo "$as_me:14496: checking for SSL_connect in -lgnutls-openssl" >&5 echo $ECHO_N "checking for SSL_connect in -lgnutls-openssl... $ECHO_C" >&6 if test "${ac_cv_lib_gnutls_openssl_SSL_connect+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -14486,7 +14501,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgnutls-openssl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 14489 "configure" +#line 14504 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -14505,16 +14520,16 @@ SSL_connect (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14508: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14523: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14511: \$? = $ac_status" >&5 + echo "$as_me:14526: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14514: \"$ac_try\"") >&5 + { (eval echo "$as_me:14529: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14517: \$? = $ac_status" >&5 + echo "$as_me:14532: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gnutls_openssl_SSL_connect=yes else @@ -14525,12 +14540,12 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:14528: result: $ac_cv_lib_gnutls_openssl_SSL_connect" >&5 +echo "$as_me:14543: result: $ac_cv_lib_gnutls_openssl_SSL_connect" >&5 echo "${ECHO_T}$ac_cv_lib_gnutls_openssl_SSL_connect" >&6 if test $ac_cv_lib_gnutls_openssl_SSL_connect = yes; then LIBS="-lgnutls-openssl $LIBS" else - echo "$as_me:14533: checking for SSL_connect in -lgnutls-extra" >&5 + echo "$as_me:14548: checking for SSL_connect in -lgnutls-extra" >&5 echo $ECHO_N "checking for SSL_connect in -lgnutls-extra... $ECHO_C" >&6 if test "${ac_cv_lib_gnutls_extra_SSL_connect+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -14538,7 +14553,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgnutls-extra $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 14541 "configure" +#line 14556 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -14557,16 +14572,16 @@ SSL_connect (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14560: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14575: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14563: \$? = $ac_status" >&5 + echo "$as_me:14578: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14566: \"$ac_try\"") >&5 + { (eval echo "$as_me:14581: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14569: \$? = $ac_status" >&5 + echo "$as_me:14584: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gnutls_extra_SSL_connect=yes else @@ -14577,12 +14592,12 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:14580: result: $ac_cv_lib_gnutls_extra_SSL_connect" >&5 +echo "$as_me:14595: result: $ac_cv_lib_gnutls_extra_SSL_connect" >&5 echo "${ECHO_T}$ac_cv_lib_gnutls_extra_SSL_connect" >&6 if test $ac_cv_lib_gnutls_extra_SSL_connect = yes; then LIBS="-lgnutls-extra $LIBS" else - { { echo "$as_me:14585: error: cannot find gnutls openssl functions" >&5 + { { echo "$as_me:14600: error: cannot find gnutls openssl functions" >&5 echo "$as_me: error: cannot find gnutls openssl functions" >&2;} { (exit 1); exit 1; }; } fi @@ -14591,10 +14606,10 @@ fi fi -echo "$as_me:14594: checking for X509 support" >&5 +echo "$as_me:14609: checking for X509 support" >&5 echo $ECHO_N "checking for X509 support... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 14597 "configure" +#line 14612 "configure" #include "confdefs.h" #include <stdio.h> @@ -14618,16 +14633,16 @@ X509_verify_cert_error_string(X509_STORE_CTX_get_error(NULL)) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14621: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14636: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14624: \$? = $ac_status" >&5 + echo "$as_me:14639: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14627: \"$ac_try\"") >&5 + { (eval echo "$as_me:14642: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14630: \$? = $ac_status" >&5 + echo "$as_me:14645: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_x509_support=yes else @@ -14636,7 +14651,7 @@ cat conftest.$ac_ext >&5 cf_x509_support=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:14639: result: $cf_x509_support" >&5 +echo "$as_me:14654: result: $cf_x509_support" >&5 echo "${ECHO_T}$cf_x509_support" >&6 if test "$cf_x509_support" = yes ; then @@ -14668,7 +14683,7 @@ no) #(vi ;; yes) #(vi -echo "$as_me:14671: checking for SSL_get_version in -lnss_compat_ossl" >&5 +echo "$as_me:14686: checking for SSL_get_version in -lnss_compat_ossl" >&5 echo $ECHO_N "checking for SSL_get_version in -lnss_compat_ossl... $ECHO_C" >&6 if test "${ac_cv_lib_nss_compat_ossl_SSL_get_version+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -14676,7 +14691,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnss_compat_ossl -lnss_compat_ossl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 14679 "configure" +#line 14694 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -14695,16 +14710,16 @@ SSL_get_version (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14698: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14713: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14701: \$? = $ac_status" >&5 + echo "$as_me:14716: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14704: \"$ac_try\"") >&5 + { (eval echo "$as_me:14719: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14707: \$? = $ac_status" >&5 + echo "$as_me:14722: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nss_compat_ossl_SSL_get_version=yes else @@ -14715,7 +14730,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:14718: result: $ac_cv_lib_nss_compat_ossl_SSL_get_version" >&5 +echo "$as_me:14733: result: $ac_cv_lib_nss_compat_ossl_SSL_get_version" >&5 echo "${ECHO_T}$ac_cv_lib_nss_compat_ossl_SSL_get_version" >&6 if test $ac_cv_lib_nss_compat_ossl_SSL_get_version = yes; then cat >>confdefs.h <<EOF @@ -14730,11 +14745,11 @@ else if test -d $cf_ssl_root ; then test -n "$verbose" && echo " assume it is in $cf_ssl_root" 1>&6 -echo "${as_me-configure}:14733: testing assume it is in $cf_ssl_root ..." 1>&5 +echo "${as_me-configure}:14748: testing assume it is in $cf_ssl_root ..." 1>&5 cf_ssl_library="-L$cf_ssl_root/lib $cf_ssl_library" else - { { echo "$as_me:14737: error: cannot find NSS compilant libraries" >&5 + { { echo "$as_me:14752: error: cannot find NSS compilant libraries" >&5 echo "$as_me: error: cannot find NSS compilant libraries" >&2;} { (exit 1); exit 1; }; } fi @@ -14749,13 +14764,13 @@ fi elif test -d $cf_cv_use_libnss_compat/../include ; then cf_ssl_root=$cf_cv_use_libnss_compat/.. else - { { echo "$as_me:14752: error: cannot find NSS compilant library under $cf_cv_use_libnss_compat" >&5 + { { echo "$as_me:14767: error: cannot find NSS compilant library under $cf_cv_use_libnss_compat" >&5 echo "$as_me: error: cannot find NSS compilant library under $cf_cv_use_libnss_compat" >&2;} { (exit 1); exit 1; }; } fi cf_ssl_library="-L$cf_ssl_root/lib $cf_ssl_library" else - { echo "$as_me:14758: WARNING: expected a directory: $cf_cv_use_libnss_compat" >&5 + { echo "$as_me:14773: WARNING: expected a directory: $cf_cv_use_libnss_compat" >&5 echo "$as_me: WARNING: expected a directory: $cf_cv_use_libnss_compat" >&2;} fi ;; @@ -14839,10 +14854,10 @@ if test -n "$cf_new_extra_cppflags" ; then fi if test "$cf_ssl_subincs" = yes ; then -echo "$as_me:14842: checking for NSS compilant include directory" >&5 +echo "$as_me:14857: checking for NSS compilant include directory" >&5 echo $ECHO_N "checking for NSS compilant include directory... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 14845 "configure" +#line 14860 "configure" #include "confdefs.h" #include <stdio.h> @@ -14856,16 +14871,16 @@ SSL_shutdown((SSL *)0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:14859: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:14874: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:14862: \$? = $ac_status" >&5 + echo "$as_me:14877: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:14865: \"$ac_try\"") >&5 + { (eval echo "$as_me:14880: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14868: \$? = $ac_status" >&5 + echo "$as_me:14883: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_ssl_incl=yes else @@ -14874,7 +14889,7 @@ cat conftest.$ac_ext >&5 cf_ssl_incl=no fi rm -f conftest.$ac_objext conftest.$ac_ext -echo "$as_me:14877: result: $cf_ssl_incl" >&5 +echo "$as_me:14892: result: $cf_ssl_incl" >&5 echo "${ECHO_T}$cf_ssl_incl" >&6 test "$cf_ssl_incl" = yes && cat >>confdefs.h <<\EOF #define USE_NSS_COMPAT_INCL 1 @@ -14882,10 +14897,10 @@ EOF fi -echo "$as_me:14885: checking if we can link to NSS compilant library" >&5 +echo "$as_me:14900: checking if we can link to NSS compilant library" >&5 echo $ECHO_N "checking if we can link to NSS compilant library... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 14888 "configure" +#line 14903 "configure" #include "confdefs.h" #include <stdio.h> @@ -14904,16 +14919,16 @@ SSL_shutdown((SSL *)0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:14907: \"$ac_link\"") >&5 +if { (eval echo "$as_me:14922: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:14910: \$? = $ac_status" >&5 + echo "$as_me:14925: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:14913: \"$ac_try\"") >&5 + { (eval echo "$as_me:14928: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:14916: \$? = $ac_status" >&5 + echo "$as_me:14931: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_ssl_library=yes else @@ -14922,7 +14937,7 @@ cat conftest.$ac_ext >&5 cf_ssl_library=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:14925: result: $cf_ssl_library" >&5 +echo "$as_me:14940: result: $cf_ssl_library" >&5 echo "${ECHO_T}$cf_ssl_library" >&6 if test "$cf_ssl_library" = yes ; then cat >>confdefs.h <<\EOF @@ -14934,7 +14949,7 @@ EOF EOF else - { { echo "$as_me:14937: error: Cannot link with NSS compilant libraries" >&5 + { { echo "$as_me:14952: error: Cannot link with NSS compilant libraries" >&5 echo "$as_me: error: Cannot link with NSS compilant libraries" >&2;} { (exit 1); exit 1; }; } fi @@ -14942,7 +14957,7 @@ fi fi ### check for ipv6 support -echo "$as_me:14945: checking whether to enable ipv6" >&5 +echo "$as_me:14960: checking whether to enable ipv6" >&5 echo $ECHO_N "checking whether to enable ipv6... $ECHO_C" >&6 # Check whether --enable-ipv6 or --disable-ipv6 was given. @@ -14958,11 +14973,11 @@ EOF else enableval=no fi; -echo "$as_me:14961: result: $enableval" >&5 +echo "$as_me:14976: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 if test "$enableval" = "yes"; then -echo "$as_me:14965: checking ipv6 stack type" >&5 +echo "$as_me:14980: checking ipv6 stack type" >&5 echo $ECHO_N "checking ipv6 stack type... $ECHO_C" >&6 if test "${cf_cv_ipv6type+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -14983,7 +14998,7 @@ do ;; inria) #(vi cat >conftest.$ac_ext <<_ACEOF -#line 14986 "configure" +#line 15001 "configure" #include "confdefs.h" #include <netinet/in.h> @@ -15000,7 +15015,7 @@ rm -f conftest* ;; kame) #(vi cat >conftest.$ac_ext <<_ACEOF -#line 15003 "configure" +#line 15018 "configure" #include "confdefs.h" #include <netinet/in.h> @@ -15017,7 +15032,7 @@ rm -f conftest* ;; linux-glibc) #(vi cat >conftest.$ac_ext <<_ACEOF -#line 15020 "configure" +#line 15035 "configure" #include "confdefs.h" #include <features.h> @@ -15043,7 +15058,7 @@ rm -f conftest* ;; toshiba) #(vi cat >conftest.$ac_ext <<_ACEOF -#line 15046 "configure" +#line 15061 "configure" #include "confdefs.h" #include <sys/param.h> @@ -15060,7 +15075,7 @@ rm -f conftest* ;; v6d) #(vi cat >conftest.$ac_ext <<_ACEOF -#line 15063 "configure" +#line 15078 "configure" #include "confdefs.h" #include </usr/local/v6/include/sys/v6config.h> @@ -15077,7 +15092,7 @@ rm -f conftest* ;; zeta) cat >conftest.$ac_ext <<_ACEOF -#line 15080 "configure" +#line 15095 "configure" #include "confdefs.h" #include <sys/param.h> @@ -15099,13 +15114,13 @@ rm -f conftest* done fi -echo "$as_me:15102: result: $cf_cv_ipv6type" >&5 +echo "$as_me:15117: result: $cf_cv_ipv6type" >&5 echo "${ECHO_T}$cf_cv_ipv6type" >&6 cf_ipv6lib=none cf_ipv6dir=none -echo "$as_me:15108: checking for IPv6 library if required" >&5 +echo "$as_me:15123: checking for IPv6 library if required" >&5 echo $ECHO_N "checking for IPv6 library if required... $ECHO_C" >&6 case $cf_cv_ipv6type in #(vi solaris) #(vi @@ -15135,13 +15150,13 @@ zeta) cf_ipv6dir=v6 ;; esac -echo "$as_me:15138: result: $cf_ipv6lib" >&5 +echo "$as_me:15153: result: $cf_ipv6lib" >&5 echo "${ECHO_T}$cf_ipv6lib" >&6 if test "$cf_ipv6lib" != "none"; then cat >conftest.$ac_ext <<_ACEOF -#line 15144 "configure" +#line 15159 "configure" #include "confdefs.h" #include <sys/types.h> @@ -15157,16 +15172,16 @@ getaddrinfo(0, 0, 0, 0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15160: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15175: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15163: \$? = $ac_status" >&5 + echo "$as_me:15178: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15166: \"$ac_try\"") >&5 + { (eval echo "$as_me:15181: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15169: \$? = $ac_status" >&5 + echo "$as_me:15184: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -15301,7 +15316,7 @@ if test -n "$cf_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 15304 "configure" +#line 15319 "configure" #include "confdefs.h" #include <stdio.h> int @@ -15313,16 +15328,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:15316: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:15331: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:15319: \$? = $ac_status" >&5 + echo "$as_me:15334: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:15322: \"$ac_try\"") >&5 + { (eval echo "$as_me:15337: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15325: \$? = $ac_status" >&5 + echo "$as_me:15340: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -15339,7 +15354,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}:15342: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:15357: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -15365,13 +15380,13 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext eval 'cf_cv_have_lib_'$cf_ipv6lib'=no' cf_libdir="" - echo "$as_me:15368: checking for getaddrinfo" >&5 + echo "$as_me:15383: checking for getaddrinfo" >&5 echo $ECHO_N "checking for getaddrinfo... $ECHO_C" >&6 if test "${ac_cv_func_getaddrinfo+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 15374 "configure" +#line 15389 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getaddrinfo (); below. */ @@ -15402,16 +15417,16 @@ f = getaddrinfo; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15405: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15420: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15408: \$? = $ac_status" >&5 + echo "$as_me:15423: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15411: \"$ac_try\"") >&5 + { (eval echo "$as_me:15426: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15414: \$? = $ac_status" >&5 + echo "$as_me:15429: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_getaddrinfo=yes else @@ -15421,18 +15436,18 @@ ac_cv_func_getaddrinfo=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:15424: result: $ac_cv_func_getaddrinfo" >&5 +echo "$as_me:15439: result: $ac_cv_func_getaddrinfo" >&5 echo "${ECHO_T}$ac_cv_func_getaddrinfo" >&6 if test $ac_cv_func_getaddrinfo = yes; then eval 'cf_cv_have_lib_'$cf_ipv6lib'=yes' else cf_save_LIBS="$LIBS" - echo "$as_me:15431: checking for getaddrinfo in -l$cf_ipv6lib" >&5 + echo "$as_me:15446: checking for getaddrinfo in -l$cf_ipv6lib" >&5 echo $ECHO_N "checking for getaddrinfo in -l$cf_ipv6lib... $ECHO_C" >&6 LIBS="-l$cf_ipv6lib $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 15435 "configure" +#line 15450 "configure" #include "confdefs.h" #include <sys/types.h> @@ -15448,25 +15463,25 @@ getaddrinfo(0, 0, 0, 0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15451: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15466: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15454: \$? = $ac_status" >&5 + echo "$as_me:15469: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15457: \"$ac_try\"") >&5 + { (eval echo "$as_me:15472: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15460: \$? = $ac_status" >&5 + echo "$as_me:15475: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:15462: result: yes" >&5 + echo "$as_me:15477: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'$cf_ipv6lib'=yes' else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:15469: result: no" >&5 +echo "$as_me:15484: result: no" >&5 echo "${ECHO_T}no" >&6 cf_library_path_list="" @@ -15555,11 +15570,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:15558: checking for -l$cf_ipv6lib in $cf_libdir" >&5 + echo "$as_me:15573: checking for -l$cf_ipv6lib in $cf_libdir" >&5 echo $ECHO_N "checking for -l$cf_ipv6lib in $cf_libdir... $ECHO_C" >&6 LIBS="-L$cf_libdir -l$cf_ipv6lib $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 15562 "configure" +#line 15577 "configure" #include "confdefs.h" #include <sys/types.h> @@ -15575,25 +15590,25 @@ getaddrinfo(0, 0, 0, 0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:15578: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15593: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15581: \$? = $ac_status" >&5 + echo "$as_me:15596: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:15584: \"$ac_try\"") >&5 + { (eval echo "$as_me:15599: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15587: \$? = $ac_status" >&5 + echo "$as_me:15602: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:15589: result: yes" >&5 + echo "$as_me:15604: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'$cf_ipv6lib'=yes' break else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:15596: result: no" >&5 +echo "$as_me:15611: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -15608,7 +15623,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'$cf_ipv6lib if test $cf_found_library = no ; then - { { echo "$as_me:15611: error: No $cf_ipv6lib library found, cannot continue. You must fetch lib$cf_ipv6lib.a + { { echo "$as_me:15626: error: No $cf_ipv6lib library found, cannot continue. You must fetch lib$cf_ipv6lib.a from an appropriate IPv6 kit and compile beforehand." >&5 echo "$as_me: error: No $cf_ipv6lib library found, cannot continue. You must fetch lib$cf_ipv6lib.a from an appropriate IPv6 kit and compile beforehand." >&2;} @@ -15616,7 +15631,7 @@ from an appropriate IPv6 kit and compile beforehand." >&2;} fi fi -echo "$as_me:15619: checking working getaddrinfo" >&5 +echo "$as_me:15634: checking working getaddrinfo" >&5 echo $ECHO_N "checking working getaddrinfo... $ECHO_C" >&6 if test "${cf_cv_getaddrinfo+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -15626,7 +15641,7 @@ if test "$cross_compiling" = yes; then cf_cv_getaddrinfo=unknown else cat >conftest.$ac_ext <<_ACEOF -#line 15629 "configure" +#line 15644 "configure" #include "confdefs.h" #include <sys/types.h> @@ -15706,15 +15721,15 @@ int main() _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:15709: \"$ac_link\"") >&5 +if { (eval echo "$as_me:15724: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:15712: \$? = $ac_status" >&5 + echo "$as_me:15727: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:15714: \"$ac_try\"") >&5 + { (eval echo "$as_me:15729: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15717: \$? = $ac_status" >&5 + echo "$as_me:15732: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_getaddrinfo=yes else @@ -15727,7 +15742,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:15730: result: $cf_cv_getaddrinfo" >&5 +echo "$as_me:15745: result: $cf_cv_getaddrinfo" >&5 echo "${ECHO_T}$cf_cv_getaddrinfo" >&6 if test "$cf_cv_getaddrinfo" = yes ; then cat >>confdefs.h <<\EOF @@ -15742,12 +15757,12 @@ fi if test "$cf_cv_getaddrinfo" != "yes"; then if test "$cf_cv_ipv6type" != "linux"; then - { echo "$as_me:15745: WARNING: You must get working getaddrinfo() function, + { echo "$as_me:15760: WARNING: You must get working getaddrinfo() function, or you can specify \"--disable-ipv6\"" >&5 echo "$as_me: WARNING: You must get working getaddrinfo() function, or you can specify \"--disable-ipv6\"" >&2;} else - { echo "$as_me:15750: WARNING: The getaddrinfo() implementation on your system seems be buggy. + { echo "$as_me:15765: WARNING: The getaddrinfo() implementation on your system seems be buggy. You should upgrade your system library to the newest version of GNU C library (aka glibc)." >&5 echo "$as_me: WARNING: The getaddrinfo() implementation on your system seems be buggy. @@ -15758,7 +15773,7 @@ fi fi -echo "$as_me:15761: checking for screen type" >&5 +echo "$as_me:15776: checking for screen type" >&5 echo $ECHO_N "checking for screen type... $ECHO_C" >&6 if test "${cf_cv_screen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -15772,7 +15787,7 @@ case $withval in curses|ncurses|ncursesw|pdcurses|slang) cf_cv_screen=$withval ;; -*) { { echo "$as_me:15775: error: Unexpected value" >&5 +*) { { echo "$as_me:15790: error: Unexpected value" >&5 echo "$as_me: error: Unexpected value" >&2;} { (exit 1); exit 1; }; } ;; @@ -15781,7 +15796,7 @@ else cf_cv_screen=curses fi; fi -echo "$as_me:15784: result: $cf_cv_screen" >&5 +echo "$as_me:15799: result: $cf_cv_screen" >&5 echo "${ECHO_T}$cf_cv_screen" >&6 case $cf_cv_screen in @@ -15816,7 +15831,7 @@ case ".$withval" in #(vi withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:15819: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:15834: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -15835,7 +15850,7 @@ dft_color_style=yes case $cf_cv_screen in curses) -echo "$as_me:15838: checking for extra include directories" >&5 +echo "$as_me:15853: checking for extra include directories" >&5 echo $ECHO_N "checking for extra include directories... $ECHO_C" >&6 if test "${cf_cv_curses_incdir+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -15855,11 +15870,11 @@ sunos3*|sunos4*) esac fi -echo "$as_me:15858: result: $cf_cv_curses_incdir" >&5 +echo "$as_me:15873: result: $cf_cv_curses_incdir" >&5 echo "${ECHO_T}$cf_cv_curses_incdir" >&6 test "$cf_cv_curses_incdir" != no && CPPFLAGS="$CPPFLAGS $cf_cv_curses_incdir" -echo "$as_me:15862: checking if we have identified curses headers" >&5 +echo "$as_me:15877: checking if we have identified curses headers" >&5 echo $ECHO_N "checking if we have identified curses headers... $ECHO_C" >&6 if test "${cf_cv_ncurses_header+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -15873,7 +15888,7 @@ for cf_header in \ ncurses/ncurses.h do cat >conftest.$ac_ext <<_ACEOF -#line 15876 "configure" +#line 15891 "configure" #include "confdefs.h" #include <${cf_header}> int @@ -15885,16 +15900,16 @@ initscr(); tgoto("?", 0,0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:15888: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:15903: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:15891: \$? = $ac_status" >&5 + echo "$as_me:15906: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:15894: \"$ac_try\"") >&5 + { (eval echo "$as_me:15909: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:15897: \$? = $ac_status" >&5 + echo "$as_me:15912: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_header=$cf_header; break else @@ -15905,11 +15920,11 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:15908: result: $cf_cv_ncurses_header" >&5 +echo "$as_me:15923: result: $cf_cv_ncurses_header" >&5 echo "${ECHO_T}$cf_cv_ncurses_header" >&6 if test "$cf_cv_ncurses_header" = none ; then - { { echo "$as_me:15912: error: No curses header-files found" >&5 + { { echo "$as_me:15927: error: No curses header-files found" >&5 echo "$as_me: error: No curses header-files found" >&2;} { (exit 1); exit 1; }; } fi @@ -15919,23 +15934,23 @@ fi for ac_header in $cf_cv_ncurses_header do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:15922: checking for $ac_header" >&5 +echo "$as_me:15937: 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 15928 "configure" +#line 15943 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:15932: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:15947: \"$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:15938: \$? = $ac_status" >&5 + echo "$as_me:15953: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -15954,7 +15969,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:15957: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:15972: 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 @@ -15964,7 +15979,7 @@ EOF fi done -echo "$as_me:15967: checking for terminfo header" >&5 +echo "$as_me:15982: checking for terminfo header" >&5 echo $ECHO_N "checking for terminfo header... $ECHO_C" >&6 if test "${cf_cv_term_header+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -15982,7 +15997,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >conftest.$ac_ext <<_ACEOF -#line 15985 "configure" +#line 16000 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header-curses.h}> @@ -15997,16 +16012,16 @@ int x = auto_left_margin } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16000: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16015: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16003: \$? = $ac_status" >&5 + echo "$as_me:16018: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16006: \"$ac_try\"") >&5 + { (eval echo "$as_me:16021: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16009: \$? = $ac_status" >&5 + echo "$as_me:16024: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header="$cf_test" @@ -16022,7 +16037,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:16025: result: $cf_cv_term_header" >&5 +echo "$as_me:16040: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -16051,7 +16066,7 @@ EOF ;; esac -echo "$as_me:16054: checking for ncurses version" >&5 +echo "$as_me:16069: checking for ncurses version" >&5 echo $ECHO_N "checking for ncurses version... $ECHO_C" >&6 if test "${cf_cv_ncurses_version+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -16077,10 +16092,10 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo "$as_me:16080: \"$cf_try\"") >&5 + { (eval echo "$as_me:16095: \"$cf_try\"") >&5 (eval $cf_try) 2>&5 ac_status=$? - echo "$as_me:16083: \$? = $ac_status" >&5 + echo "$as_me:16098: \$? = $ac_status" >&5 (exit $ac_status); } if test -f conftest.out ; then cf_out=`cat conftest.out | sed -e 's%^Autoconf %%' -e 's%^[^"]*"%%' -e 's%".*%%'` @@ -16090,7 +16105,7 @@ EOF else cat >conftest.$ac_ext <<_ACEOF -#line 16093 "configure" +#line 16108 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -16115,15 +16130,15 @@ int main() } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:16118: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16133: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16121: \$? = $ac_status" >&5 + echo "$as_me:16136: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:16123: \"$ac_try\"") >&5 + { (eval echo "$as_me:16138: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16126: \$? = $ac_status" >&5 + echo "$as_me:16141: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -16137,16 +16152,16 @@ fi rm -f $cf_tempfile fi -echo "$as_me:16140: result: $cf_cv_ncurses_version" >&5 +echo "$as_me:16155: result: $cf_cv_ncurses_version" >&5 echo "${ECHO_T}$cf_cv_ncurses_version" >&6 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF #define NCURSES 1 EOF -echo "$as_me:16146: checking if we have identified curses libraries" >&5 +echo "$as_me:16161: checking if we have identified curses libraries" >&5 echo $ECHO_N "checking if we have identified curses libraries... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 16149 "configure" +#line 16164 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -16158,16 +16173,16 @@ initscr(); tgoto("?", 0,0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16161: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16176: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16164: \$? = $ac_status" >&5 + echo "$as_me:16179: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16167: \"$ac_try\"") >&5 + { (eval echo "$as_me:16182: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16170: \$? = $ac_status" >&5 + echo "$as_me:16185: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -16176,13 +16191,13 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:16179: result: $cf_result" >&5 +echo "$as_me:16194: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = no ; then case $host_os in #(vi freebsd*) #(vi - echo "$as_me:16185: checking for tgoto in -lmytinfo" >&5 + echo "$as_me:16200: checking for tgoto in -lmytinfo" >&5 echo $ECHO_N "checking for tgoto in -lmytinfo... $ECHO_C" >&6 if test "${ac_cv_lib_mytinfo_tgoto+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -16190,7 +16205,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lmytinfo $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 16193 "configure" +#line 16208 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -16209,16 +16224,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16212: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16227: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16215: \$? = $ac_status" >&5 + echo "$as_me:16230: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16218: \"$ac_try\"") >&5 + { (eval echo "$as_me:16233: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16221: \$? = $ac_status" >&5 + echo "$as_me:16236: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_mytinfo_tgoto=yes else @@ -16229,7 +16244,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:16232: result: $ac_cv_lib_mytinfo_tgoto" >&5 +echo "$as_me:16247: result: $ac_cv_lib_mytinfo_tgoto" >&5 echo "${ECHO_T}$ac_cv_lib_mytinfo_tgoto" >&6 if test $ac_cv_lib_mytinfo_tgoto = yes; then LIBS="-lmytinfo $LIBS" @@ -16237,7 +16252,7 @@ fi ;; hpux10.*) #(vi - echo "$as_me:16240: checking for initscr in -lcur_colr" >&5 + echo "$as_me:16255: checking for initscr in -lcur_colr" >&5 echo $ECHO_N "checking for initscr in -lcur_colr... $ECHO_C" >&6 if test "${ac_cv_lib_cur_colr_initscr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -16245,7 +16260,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lcur_colr $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 16248 "configure" +#line 16263 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -16264,16 +16279,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16267: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16282: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16270: \$? = $ac_status" >&5 + echo "$as_me:16285: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16273: \"$ac_try\"") >&5 + { (eval echo "$as_me:16288: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16276: \$? = $ac_status" >&5 + echo "$as_me:16291: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_cur_colr_initscr=yes else @@ -16284,7 +16299,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:16287: result: $ac_cv_lib_cur_colr_initscr" >&5 +echo "$as_me:16302: result: $ac_cv_lib_cur_colr_initscr" >&5 echo "${ECHO_T}$ac_cv_lib_cur_colr_initscr" >&6 if test $ac_cv_lib_cur_colr_initscr = yes; then @@ -16293,7 +16308,7 @@ if test $ac_cv_lib_cur_colr_initscr = yes; then else - echo "$as_me:16296: checking for initscr in -lHcurses" >&5 + echo "$as_me:16311: checking for initscr in -lHcurses" >&5 echo $ECHO_N "checking for initscr in -lHcurses... $ECHO_C" >&6 if test "${ac_cv_lib_Hcurses_initscr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -16301,7 +16316,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lHcurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 16304 "configure" +#line 16319 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -16320,16 +16335,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16323: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16338: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16326: \$? = $ac_status" >&5 + echo "$as_me:16341: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16329: \"$ac_try\"") >&5 + { (eval echo "$as_me:16344: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16332: \$? = $ac_status" >&5 + echo "$as_me:16347: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_Hcurses_initscr=yes else @@ -16340,7 +16355,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:16343: result: $ac_cv_lib_Hcurses_initscr" >&5 +echo "$as_me:16358: result: $ac_cv_lib_Hcurses_initscr" >&5 echo "${ECHO_T}$ac_cv_lib_Hcurses_initscr" >&6 if test $ac_cv_lib_Hcurses_initscr = yes; then @@ -16375,7 +16390,7 @@ if test -n "/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}:16378: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:16393: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -16406,7 +16421,7 @@ if test -n "/usr/5lib" ; 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}:16409: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:16424: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -16434,13 +16449,13 @@ if test ".$ac_cv_func_initscr" != .yes ; then # Check for library containing tgoto. Do this before curses library # because it may be needed to link the test-case for initscr. - echo "$as_me:16437: checking for tgoto" >&5 + echo "$as_me:16452: checking for tgoto" >&5 echo $ECHO_N "checking for tgoto... $ECHO_C" >&6 if test "${ac_cv_func_tgoto+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 16443 "configure" +#line 16458 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char tgoto (); below. */ @@ -16471,16 +16486,16 @@ f = tgoto; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16474: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16489: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16477: \$? = $ac_status" >&5 + echo "$as_me:16492: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16480: \"$ac_try\"") >&5 + { (eval echo "$as_me:16495: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16483: \$? = $ac_status" >&5 + echo "$as_me:16498: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_tgoto=yes else @@ -16490,7 +16505,7 @@ ac_cv_func_tgoto=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:16493: result: $ac_cv_func_tgoto" >&5 +echo "$as_me:16508: result: $ac_cv_func_tgoto" >&5 echo "${ECHO_T}$ac_cv_func_tgoto" >&6 if test $ac_cv_func_tgoto = yes; then cf_term_lib=predefined @@ -16499,7 +16514,7 @@ else for cf_term_lib in $cf_check_list termcap termlib unknown do as_ac_Lib=`echo "ac_cv_lib_$cf_term_lib''_tgoto" | $as_tr_sh` -echo "$as_me:16502: checking for tgoto in -l$cf_term_lib" >&5 +echo "$as_me:16517: checking for tgoto in -l$cf_term_lib" >&5 echo $ECHO_N "checking for tgoto in -l$cf_term_lib... $ECHO_C" >&6 if eval "test \"\${$as_ac_Lib+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -16507,7 +16522,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-l$cf_term_lib $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 16510 "configure" +#line 16525 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -16526,16 +16541,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16529: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16544: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16532: \$? = $ac_status" >&5 + echo "$as_me:16547: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16535: \"$ac_try\"") >&5 + { (eval echo "$as_me:16550: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16538: \$? = $ac_status" >&5 + echo "$as_me:16553: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Lib=yes" else @@ -16546,7 +16561,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:16549: result: `eval echo '${'$as_ac_Lib'}'`" >&5 +echo "$as_me:16564: result: `eval echo '${'$as_ac_Lib'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Lib'}'`" >&6 if test `eval echo '${'$as_ac_Lib'}'` = yes; then break @@ -16561,7 +16576,7 @@ fi for cf_curs_lib in $cf_check_list xcurses jcurses pdcurses unknown do as_ac_Lib=`echo "ac_cv_lib_$cf_curs_lib''_initscr" | $as_tr_sh` -echo "$as_me:16564: checking for initscr in -l$cf_curs_lib" >&5 +echo "$as_me:16579: checking for initscr in -l$cf_curs_lib" >&5 echo $ECHO_N "checking for initscr in -l$cf_curs_lib... $ECHO_C" >&6 if eval "test \"\${$as_ac_Lib+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -16569,7 +16584,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-l$cf_curs_lib $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 16572 "configure" +#line 16587 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -16588,16 +16603,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16591: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16606: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16594: \$? = $ac_status" >&5 + echo "$as_me:16609: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16597: \"$ac_try\"") >&5 + { (eval echo "$as_me:16612: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16600: \$? = $ac_status" >&5 + echo "$as_me:16615: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Lib=yes" else @@ -16608,23 +16623,23 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:16611: result: `eval echo '${'$as_ac_Lib'}'`" >&5 +echo "$as_me:16626: result: `eval echo '${'$as_ac_Lib'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Lib'}'`" >&6 if test `eval echo '${'$as_ac_Lib'}'` = yes; then break fi done - test $cf_curs_lib = unknown && { { echo "$as_me:16618: error: no curses library found" >&5 + test $cf_curs_lib = unknown && { { echo "$as_me:16633: error: no curses library found" >&5 echo "$as_me: error: no curses library found" >&2;} { (exit 1); exit 1; }; } LIBS="-l$cf_curs_lib $cf_save_LIBS" if test "$cf_term_lib" = unknown ; then - echo "$as_me:16624: checking if we can link with $cf_curs_lib library" >&5 + echo "$as_me:16639: checking if we can link with $cf_curs_lib library" >&5 echo $ECHO_N "checking if we can link with $cf_curs_lib library... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 16627 "configure" +#line 16642 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -16636,16 +16651,16 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16639: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16654: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16642: \$? = $ac_status" >&5 + echo "$as_me:16657: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16645: \"$ac_try\"") >&5 + { (eval echo "$as_me:16660: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16648: \$? = $ac_status" >&5 + echo "$as_me:16663: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -16654,18 +16669,18 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:16657: result: $cf_result" >&5 + echo "$as_me:16672: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 - test $cf_result = no && { { echo "$as_me:16659: error: Cannot link curses library" >&5 + test $cf_result = no && { { echo "$as_me:16674: error: Cannot link curses library" >&5 echo "$as_me: error: Cannot link curses library" >&2;} { (exit 1); exit 1; }; } elif test "$cf_curs_lib" = "$cf_term_lib" ; then : elif test "$cf_term_lib" != predefined ; then - echo "$as_me:16665: checking if we need both $cf_curs_lib and $cf_term_lib libraries" >&5 + echo "$as_me:16680: checking if we need both $cf_curs_lib and $cf_term_lib libraries" >&5 echo $ECHO_N "checking if we need both $cf_curs_lib and $cf_term_lib libraries... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 16668 "configure" +#line 16683 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -16677,16 +16692,16 @@ initscr(); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16680: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16695: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16683: \$? = $ac_status" >&5 + echo "$as_me:16698: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16686: \"$ac_try\"") >&5 + { (eval echo "$as_me:16701: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16689: \$? = $ac_status" >&5 + echo "$as_me:16704: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=no else @@ -16695,7 +16710,7 @@ cat conftest.$ac_ext >&5 LIBS="-l$cf_curs_lib -l$cf_term_lib $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 16698 "configure" +#line 16713 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -16707,16 +16722,16 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16710: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16725: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16713: \$? = $ac_status" >&5 + echo "$as_me:16728: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16716: \"$ac_try\"") >&5 + { (eval echo "$as_me:16731: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16719: \$? = $ac_status" >&5 + echo "$as_me:16734: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -16728,13 +16743,13 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:16731: result: $cf_result" >&5 + echo "$as_me:16746: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 fi fi fi -echo "$as_me:16737: checking for curses performance tradeoff" >&5 +echo "$as_me:16752: checking for curses performance tradeoff" >&5 echo $ECHO_N "checking for curses performance tradeoff... $ECHO_C" >&6 if test "${cf_cv_curs_performance+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -16742,7 +16757,7 @@ else cf_cv_curs_performance=no cat >conftest.$ac_ext <<_ACEOF -#line 16745 "configure" +#line 16760 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -16761,20 +16776,20 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16764: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16779: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16767: \$? = $ac_status" >&5 + echo "$as_me:16782: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16770: \"$ac_try\"") >&5 + { (eval echo "$as_me:16785: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16773: \$? = $ac_status" >&5 + echo "$as_me:16788: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 16777 "configure" +#line 16792 "configure" #include "confdefs.h" #define CURS_PERFORMANCE @@ -16794,16 +16809,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:16797: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:16812: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:16800: \$? = $ac_status" >&5 + echo "$as_me:16815: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:16803: \"$ac_try\"") >&5 + { (eval echo "$as_me:16818: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16806: \$? = $ac_status" >&5 + echo "$as_me:16821: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_curs_performance=yes else @@ -16818,20 +16833,20 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:16821: result: $cf_cv_curs_performance" >&5 +echo "$as_me:16836: result: $cf_cv_curs_performance" >&5 echo "${ECHO_T}$cf_cv_curs_performance" >&6 test $cf_cv_curs_performance = yes && cat >>confdefs.h <<\EOF #define CURS_PERFORMANCE 1 EOF -echo "$as_me:16827: checking for curses touchline function" >&5 +echo "$as_me:16842: checking for curses touchline function" >&5 echo $ECHO_N "checking for curses touchline function... $ECHO_C" >&6 if test "${cf_cv_curs_touchline+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 16834 "configure" +#line 16849 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -16844,23 +16859,23 @@ touchline(stdscr, 1,2,3); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16847: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16862: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16850: \$? = $ac_status" >&5 + echo "$as_me:16865: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16853: \"$ac_try\"") >&5 + { (eval echo "$as_me:16868: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16856: \$? = $ac_status" >&5 + echo "$as_me:16871: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_curs_touchline=bsd else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 16863 "configure" +#line 16878 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -16873,16 +16888,16 @@ touchline(stdscr, 1,2); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:16876: \"$ac_link\"") >&5 +if { (eval echo "$as_me:16891: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:16879: \$? = $ac_status" >&5 + echo "$as_me:16894: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:16882: \"$ac_try\"") >&5 + { (eval echo "$as_me:16897: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:16885: \$? = $ac_status" >&5 + echo "$as_me:16900: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_curs_touchline=sysv else @@ -16894,7 +16909,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:16897: result: $cf_cv_curs_touchline" >&5 +echo "$as_me:16912: result: $cf_cv_curs_touchline" >&5 echo "${ECHO_T}$cf_cv_curs_touchline" >&6 case "$cf_cv_curs_touchline" in #(vi bsd) #(vi @@ -16921,7 +16936,7 @@ for ac_prog in ${cf_ncuconfig_root}6-config ${cf_ncuconfig_root}5-config 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:16924: checking for $ac_word" >&5 +echo "$as_me:16939: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_NCURSES_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -16938,7 +16953,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_NCURSES_CONFIG="$ac_dir/$ac_word" - echo "$as_me:16941: found $ac_dir/$ac_word" >&5 + echo "$as_me:16956: found $ac_dir/$ac_word" >&5 break fi done @@ -16949,10 +16964,10 @@ fi NCURSES_CONFIG=$ac_cv_path_NCURSES_CONFIG if test -n "$NCURSES_CONFIG"; then - echo "$as_me:16952: result: $NCURSES_CONFIG" >&5 + echo "$as_me:16967: result: $NCURSES_CONFIG" >&5 echo "${ECHO_T}$NCURSES_CONFIG" >&6 else - echo "$as_me:16955: result: no" >&5 + echo "$as_me:16970: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -17010,7 +17025,7 @@ if test -n "$cf_cv_curses_dir/include $cf_cv_curses_dir/include/$cf_ncuhdr_root" cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 17013 "configure" +#line 17028 "configure" #include "confdefs.h" #include <stdio.h> int @@ -17022,16 +17037,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17025: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17040: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17028: \$? = $ac_status" >&5 + echo "$as_me:17043: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17031: \"$ac_try\"") >&5 + { (eval echo "$as_me:17046: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17034: \$? = $ac_status" >&5 + echo "$as_me:17049: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -17048,7 +17063,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}:17051: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:17066: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -17065,7 +17080,7 @@ fi } -echo "$as_me:17068: checking for $cf_ncuhdr_root header in include-path" >&5 +echo "$as_me:17083: checking for $cf_ncuhdr_root header in include-path" >&5 echo $ECHO_N "checking for $cf_ncuhdr_root header in include-path... $ECHO_C" >&6 if test "${cf_cv_ncurses_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -17077,7 +17092,7 @@ else do cat >conftest.$ac_ext <<_ACEOF -#line 17080 "configure" +#line 17095 "configure" #include "confdefs.h" #include <$cf_header> @@ -17101,16 +17116,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17104: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17119: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17107: \$? = $ac_status" >&5 + echo "$as_me:17122: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17110: \"$ac_try\"") >&5 + { (eval echo "$as_me:17125: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17113: \$? = $ac_status" >&5 + echo "$as_me:17128: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h=$cf_header @@ -17125,14 +17140,14 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:17128: result: $cf_cv_ncurses_h" >&5 +echo "$as_me:17143: result: $cf_cv_ncurses_h" >&5 echo "${ECHO_T}$cf_cv_ncurses_h" >&6 if test "$cf_cv_ncurses_h" != no ; then cf_cv_ncurses_header=$cf_cv_ncurses_h else -echo "$as_me:17135: checking for $cf_ncuhdr_root include-path" >&5 +echo "$as_me:17150: checking for $cf_ncuhdr_root include-path" >&5 echo $ECHO_N "checking for $cf_ncuhdr_root include-path... $ECHO_C" >&6 if test "${cf_cv_ncurses_h2+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -17267,7 +17282,7 @@ if test -n "$cf_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 17270 "configure" +#line 17285 "configure" #include "confdefs.h" #include <stdio.h> int @@ -17279,16 +17294,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17282: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17297: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17285: \$? = $ac_status" >&5 + echo "$as_me:17300: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17288: \"$ac_try\"") >&5 + { (eval echo "$as_me:17303: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17291: \$? = $ac_status" >&5 + echo "$as_me:17306: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -17305,7 +17320,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}:17308: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:17323: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -17326,7 +17341,7 @@ fi do cat >conftest.$ac_ext <<_ACEOF -#line 17329 "configure" +#line 17344 "configure" #include "confdefs.h" #include <$cf_header> @@ -17350,16 +17365,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17353: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17368: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17356: \$? = $ac_status" >&5 + echo "$as_me:17371: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17359: \"$ac_try\"") >&5 + { (eval echo "$as_me:17374: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17362: \$? = $ac_status" >&5 + echo "$as_me:17377: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h2=$cf_header @@ -17380,12 +17395,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext CPPFLAGS="$cf_save2_CPPFLAGS" test "$cf_cv_ncurses_h2" != no && break done - test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:17383: error: not found" >&5 + test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:17398: error: not found" >&5 echo "$as_me: error: not found" >&2;} { (exit 1); exit 1; }; } fi -echo "$as_me:17388: result: $cf_cv_ncurses_h2" >&5 +echo "$as_me:17403: result: $cf_cv_ncurses_h2" >&5 echo "${ECHO_T}$cf_cv_ncurses_h2" >&6 cf_1st_incdir=`echo $cf_cv_ncurses_h2 | sed -e 's%/[^/]*$%%'` @@ -17418,7 +17433,7 @@ if test -n "$cf_1st_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 17421 "configure" +#line 17436 "configure" #include "confdefs.h" #include <stdio.h> int @@ -17430,16 +17445,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17433: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17448: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17436: \$? = $ac_status" >&5 + echo "$as_me:17451: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17439: \"$ac_try\"") >&5 + { (eval echo "$as_me:17454: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17442: \$? = $ac_status" >&5 + echo "$as_me:17457: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -17456,7 +17471,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}:17459: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:17474: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -17499,7 +17514,7 @@ EOF ;; esac -echo "$as_me:17502: checking for terminfo header" >&5 +echo "$as_me:17517: checking for terminfo header" >&5 echo $ECHO_N "checking for terminfo header... $ECHO_C" >&6 if test "${cf_cv_term_header+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -17517,7 +17532,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >conftest.$ac_ext <<_ACEOF -#line 17520 "configure" +#line 17535 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header-curses.h}> @@ -17532,16 +17547,16 @@ int x = auto_left_margin } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:17535: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:17550: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:17538: \$? = $ac_status" >&5 + echo "$as_me:17553: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:17541: \"$ac_try\"") >&5 + { (eval echo "$as_me:17556: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17544: \$? = $ac_status" >&5 + echo "$as_me:17559: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header="$cf_test" @@ -17557,7 +17572,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:17560: result: $cf_cv_term_header" >&5 +echo "$as_me:17575: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -17591,7 +17606,7 @@ cat >>confdefs.h <<\EOF #define NCURSES 1 EOF -echo "$as_me:17594: checking for ncurses version" >&5 +echo "$as_me:17609: checking for ncurses version" >&5 echo $ECHO_N "checking for ncurses version... $ECHO_C" >&6 if test "${cf_cv_ncurses_version+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -17617,10 +17632,10 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo "$as_me:17620: \"$cf_try\"") >&5 + { (eval echo "$as_me:17635: \"$cf_try\"") >&5 (eval $cf_try) 2>&5 ac_status=$? - echo "$as_me:17623: \$? = $ac_status" >&5 + echo "$as_me:17638: \$? = $ac_status" >&5 (exit $ac_status); } if test -f conftest.out ; then cf_out=`cat conftest.out | sed -e 's%^Autoconf %%' -e 's%^[^"]*"%%' -e 's%".*%%'` @@ -17630,7 +17645,7 @@ EOF else cat >conftest.$ac_ext <<_ACEOF -#line 17633 "configure" +#line 17648 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -17655,15 +17670,15 @@ int main() } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:17658: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17673: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17661: \$? = $ac_status" >&5 + echo "$as_me:17676: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:17663: \"$ac_try\"") >&5 + { (eval echo "$as_me:17678: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17666: \$? = $ac_status" >&5 + echo "$as_me:17681: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -17677,7 +17692,7 @@ fi rm -f $cf_tempfile fi -echo "$as_me:17680: result: $cf_cv_ncurses_version" >&5 +echo "$as_me:17695: result: $cf_cv_ncurses_version" >&5 echo "${ECHO_T}$cf_cv_ncurses_version" >&6 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF #define NCURSES 1 @@ -17689,7 +17704,7 @@ cf_nculib_root=ncurses # to link gpm. cf_ncurses_LIBS="" cf_ncurses_SAVE="$LIBS" -echo "$as_me:17692: checking for Gpm_Open in -lgpm" >&5 +echo "$as_me:17707: checking for Gpm_Open in -lgpm" >&5 echo $ECHO_N "checking for Gpm_Open in -lgpm... $ECHO_C" >&6 if test "${ac_cv_lib_gpm_Gpm_Open+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -17697,7 +17712,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 17700 "configure" +#line 17715 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -17716,16 +17731,16 @@ Gpm_Open (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17719: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17734: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17722: \$? = $ac_status" >&5 + echo "$as_me:17737: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17725: \"$ac_try\"") >&5 + { (eval echo "$as_me:17740: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17728: \$? = $ac_status" >&5 + echo "$as_me:17743: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_Gpm_Open=yes else @@ -17736,10 +17751,10 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:17739: result: $ac_cv_lib_gpm_Gpm_Open" >&5 +echo "$as_me:17754: result: $ac_cv_lib_gpm_Gpm_Open" >&5 echo "${ECHO_T}$ac_cv_lib_gpm_Gpm_Open" >&6 if test $ac_cv_lib_gpm_Gpm_Open = yes; then - echo "$as_me:17742: checking for initscr in -lgpm" >&5 + echo "$as_me:17757: checking for initscr in -lgpm" >&5 echo $ECHO_N "checking for initscr in -lgpm... $ECHO_C" >&6 if test "${ac_cv_lib_gpm_initscr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -17747,7 +17762,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 17750 "configure" +#line 17765 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -17766,16 +17781,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17769: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17784: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17772: \$? = $ac_status" >&5 + echo "$as_me:17787: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17775: \"$ac_try\"") >&5 + { (eval echo "$as_me:17790: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17778: \$? = $ac_status" >&5 + echo "$as_me:17793: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_initscr=yes else @@ -17786,7 +17801,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:17789: result: $ac_cv_lib_gpm_initscr" >&5 +echo "$as_me:17804: result: $ac_cv_lib_gpm_initscr" >&5 echo "${ECHO_T}$ac_cv_lib_gpm_initscr" >&6 if test $ac_cv_lib_gpm_initscr = yes; then LIBS="$cf_ncurses_SAVE" @@ -17801,7 +17816,7 @@ freebsd*) # This is only necessary if you are linking against an obsolete # version of ncurses (but it should do no harm, since it's static). if test "$cf_nculib_root" = ncurses ; then - echo "$as_me:17804: checking for tgoto in -lmytinfo" >&5 + echo "$as_me:17819: checking for tgoto in -lmytinfo" >&5 echo $ECHO_N "checking for tgoto in -lmytinfo... $ECHO_C" >&6 if test "${ac_cv_lib_mytinfo_tgoto+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -17809,7 +17824,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lmytinfo $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 17812 "configure" +#line 17827 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -17828,16 +17843,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17831: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17846: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17834: \$? = $ac_status" >&5 + echo "$as_me:17849: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17837: \"$ac_try\"") >&5 + { (eval echo "$as_me:17852: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17840: \$? = $ac_status" >&5 + echo "$as_me:17855: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_mytinfo_tgoto=yes else @@ -17848,7 +17863,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:17851: result: $ac_cv_lib_mytinfo_tgoto" >&5 +echo "$as_me:17866: result: $ac_cv_lib_mytinfo_tgoto" >&5 echo "${ECHO_T}$ac_cv_lib_mytinfo_tgoto" >&6 if test $ac_cv_lib_mytinfo_tgoto = yes; then cf_ncurses_LIBS="-lmytinfo $cf_ncurses_LIBS" @@ -17882,7 +17897,7 @@ if test -n "$cf_cv_curses_dir/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}:17885: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:17900: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -17895,13 +17910,13 @@ else eval 'cf_cv_have_lib_'$cf_nculib_root'=no' cf_libdir="" - echo "$as_me:17898: checking for initscr" >&5 + echo "$as_me:17913: checking for initscr" >&5 echo $ECHO_N "checking for initscr... $ECHO_C" >&6 if test "${ac_cv_func_initscr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 17904 "configure" +#line 17919 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char initscr (); below. */ @@ -17932,16 +17947,16 @@ f = initscr; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17935: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17950: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17938: \$? = $ac_status" >&5 + echo "$as_me:17953: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17941: \"$ac_try\"") >&5 + { (eval echo "$as_me:17956: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17944: \$? = $ac_status" >&5 + echo "$as_me:17959: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_initscr=yes else @@ -17951,18 +17966,18 @@ ac_cv_func_initscr=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:17954: result: $ac_cv_func_initscr" >&5 +echo "$as_me:17969: result: $ac_cv_func_initscr" >&5 echo "${ECHO_T}$ac_cv_func_initscr" >&6 if test $ac_cv_func_initscr = yes; then eval 'cf_cv_have_lib_'$cf_nculib_root'=yes' else cf_save_LIBS="$LIBS" - echo "$as_me:17961: checking for initscr in -l$cf_nculib_root" >&5 + echo "$as_me:17976: checking for initscr in -l$cf_nculib_root" >&5 echo $ECHO_N "checking for initscr in -l$cf_nculib_root... $ECHO_C" >&6 LIBS="-l$cf_nculib_root $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 17965 "configure" +#line 17980 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -17974,25 +17989,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:17977: \"$ac_link\"") >&5 +if { (eval echo "$as_me:17992: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:17980: \$? = $ac_status" >&5 + echo "$as_me:17995: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:17983: \"$ac_try\"") >&5 + { (eval echo "$as_me:17998: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:17986: \$? = $ac_status" >&5 + echo "$as_me:18001: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:17988: result: yes" >&5 + echo "$as_me:18003: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'$cf_nculib_root'=yes' else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:17995: result: no" >&5 +echo "$as_me:18010: result: no" >&5 echo "${ECHO_T}no" >&6 cf_library_path_list="" @@ -18081,11 +18096,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:18084: checking for -l$cf_nculib_root in $cf_libdir" >&5 + echo "$as_me:18099: checking for -l$cf_nculib_root in $cf_libdir" >&5 echo $ECHO_N "checking for -l$cf_nculib_root in $cf_libdir... $ECHO_C" >&6 LIBS="-L$cf_libdir -l$cf_nculib_root $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 18088 "configure" +#line 18103 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -18097,25 +18112,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18100: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18115: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18103: \$? = $ac_status" >&5 + echo "$as_me:18118: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18106: \"$ac_try\"") >&5 + { (eval echo "$as_me:18121: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18109: \$? = $ac_status" >&5 + echo "$as_me:18124: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:18111: result: yes" >&5 + echo "$as_me:18126: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'$cf_nculib_root'=yes' break else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:18118: result: no" >&5 +echo "$as_me:18133: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -18130,7 +18145,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'$cf_nculib_root if test $cf_found_library = no ; then - { { echo "$as_me:18133: error: Cannot link $cf_nculib_root library" >&5 + { { echo "$as_me:18148: error: Cannot link $cf_nculib_root library" >&5 echo "$as_me: error: Cannot link $cf_nculib_root library" >&2;} { (exit 1); exit 1; }; } fi @@ -18138,7 +18153,7 @@ fi fi if test -n "$cf_ncurses_LIBS" ; then - echo "$as_me:18141: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5 + echo "$as_me:18156: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5 echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS... $ECHO_C" >&6 cf_ncurses_SAVE="$LIBS" for p in $cf_ncurses_LIBS ; do @@ -18148,7 +18163,7 @@ echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS.. fi done cat >conftest.$ac_ext <<_ACEOF -#line 18151 "configure" +#line 18166 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -18160,23 +18175,23 @@ initscr(); mousemask(0,0); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18163: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18178: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18166: \$? = $ac_status" >&5 + echo "$as_me:18181: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18169: \"$ac_try\"") >&5 + { (eval echo "$as_me:18184: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18172: \$? = $ac_status" >&5 + echo "$as_me:18187: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:18174: result: yes" >&5 + echo "$as_me:18189: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:18179: result: no" >&5 +echo "$as_me:18194: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_ncurses_SAVE" fi @@ -18194,7 +18209,7 @@ fi ;; ncursesw) -echo "$as_me:18197: checking for multibyte character support" >&5 +echo "$as_me:18212: checking for multibyte character support" >&5 echo $ECHO_N "checking for multibyte character support... $ECHO_C" >&6 if test "${cf_cv_utf8_lib+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -18202,7 +18217,7 @@ else cf_save_LIBS="$LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 18205 "configure" +#line 18220 "configure" #include "confdefs.h" #include <stdlib.h> @@ -18215,16 +18230,16 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18218: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18233: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18221: \$? = $ac_status" >&5 + echo "$as_me:18236: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18224: \"$ac_try\"") >&5 + { (eval echo "$as_me:18239: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18227: \$? = $ac_status" >&5 + echo "$as_me:18242: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_utf8_lib=yes else @@ -18236,10 +18251,10 @@ cat conftest.$ac_ext >&5 cf_cv_header_path_utf8= cf_cv_library_path_utf8= -echo "${as_me-configure}:18239: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5 +echo "${as_me-configure}:18254: testing Starting FIND_LINKAGE(utf8,) ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 18242 "configure" +#line 18257 "configure" #include "confdefs.h" #include <libutf8.h> @@ -18252,16 +18267,16 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18255: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18270: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18258: \$? = $ac_status" >&5 + echo "$as_me:18273: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18261: \"$ac_try\"") >&5 + { (eval echo "$as_me:18276: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18264: \$? = $ac_status" >&5 + echo "$as_me:18279: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_utf8=yes else @@ -18272,9 +18287,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for utf8 library" 1>&6 -echo "${as_me-configure}:18275: testing find linkage for utf8 library ..." 1>&5 +echo "${as_me-configure}:18290: testing find linkage for utf8 library ..." 1>&5 -echo "${as_me-configure}:18277: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5 +echo "${as_me-configure}:18292: testing Searching for headers in FIND_LINKAGE(utf8,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -18382,11 +18397,11 @@ cf_search="$cf_header_path_list $cf_search" if test -d $cf_cv_header_path_utf8 ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_utf8" 1>&6 -echo "${as_me-configure}:18385: testing ... testing $cf_cv_header_path_utf8 ..." 1>&5 +echo "${as_me-configure}:18400: testing ... testing $cf_cv_header_path_utf8 ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_utf8" cat >conftest.$ac_ext <<_ACEOF -#line 18389 "configure" +#line 18404 "configure" #include "confdefs.h" #include <libutf8.h> @@ -18399,21 +18414,21 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18402: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18417: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18405: \$? = $ac_status" >&5 + echo "$as_me:18420: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18408: \"$ac_try\"") >&5 + { (eval echo "$as_me:18423: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18411: \$? = $ac_status" >&5 + echo "$as_me:18426: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found utf8 headers in $cf_cv_header_path_utf8" 1>&6 -echo "${as_me-configure}:18416: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5 +echo "${as_me-configure}:18431: testing ... found utf8 headers in $cf_cv_header_path_utf8 ..." 1>&5 cf_cv_find_linkage_utf8=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -18431,7 +18446,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_utf8" = maybe ; then -echo "${as_me-configure}:18434: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5 +echo "${as_me-configure}:18449: testing Searching for utf8 library in FIND_LINKAGE(utf8,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -18527,13 +18542,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_utf8 ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_utf8" 1>&6 -echo "${as_me-configure}:18530: testing ... testing $cf_cv_library_path_utf8 ..." 1>&5 +echo "${as_me-configure}:18545: testing ... testing $cf_cv_library_path_utf8 ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lutf8 $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_utf8" cat >conftest.$ac_ext <<_ACEOF -#line 18536 "configure" +#line 18551 "configure" #include "confdefs.h" #include <libutf8.h> @@ -18546,21 +18561,21 @@ putwc(0,0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:18549: \"$ac_link\"") >&5 +if { (eval echo "$as_me:18564: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:18552: \$? = $ac_status" >&5 + echo "$as_me:18567: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:18555: \"$ac_try\"") >&5 + { (eval echo "$as_me:18570: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18558: \$? = $ac_status" >&5 + echo "$as_me:18573: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found utf8 library in $cf_cv_library_path_utf8" 1>&6 -echo "${as_me-configure}:18563: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5 +echo "${as_me-configure}:18578: testing ... found utf8 library in $cf_cv_library_path_utf8 ..." 1>&5 cf_cv_find_linkage_utf8=yes cf_cv_library_file_utf8="-lutf8" @@ -18598,7 +18613,7 @@ fi fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:18601: result: $cf_cv_utf8_lib" >&5 +echo "$as_me:18616: result: $cf_cv_utf8_lib" >&5 echo "${ECHO_T}$cf_cv_utf8_lib" >&6 # HAVE_LIBUTF8_H is used by ncurses if curses.h is shared between @@ -18632,7 +18647,7 @@ if test -n "$cf_cv_header_path_utf8" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 18635 "configure" +#line 18650 "configure" #include "confdefs.h" #include <stdio.h> int @@ -18644,16 +18659,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18647: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18662: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18650: \$? = $ac_status" >&5 + echo "$as_me:18665: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18653: \"$ac_try\"") >&5 + { (eval echo "$as_me:18668: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18656: \$? = $ac_status" >&5 + echo "$as_me:18671: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -18670,7 +18685,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}:18673: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:18688: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -18704,7 +18719,7 @@ if test -n "$cf_cv_library_path_utf8" ; 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}:18707: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:18722: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -18722,7 +18737,7 @@ for ac_prog in ${cf_ncuconfig_root}6-config ${cf_ncuconfig_root}5-config 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:18725: checking for $ac_word" >&5 +echo "$as_me:18740: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_NCURSES_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -18739,7 +18754,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_NCURSES_CONFIG="$ac_dir/$ac_word" - echo "$as_me:18742: found $ac_dir/$ac_word" >&5 + echo "$as_me:18757: found $ac_dir/$ac_word" >&5 break fi done @@ -18750,10 +18765,10 @@ fi NCURSES_CONFIG=$ac_cv_path_NCURSES_CONFIG if test -n "$NCURSES_CONFIG"; then - echo "$as_me:18753: result: $NCURSES_CONFIG" >&5 + echo "$as_me:18768: result: $NCURSES_CONFIG" >&5 echo "${ECHO_T}$NCURSES_CONFIG" >&6 else - echo "$as_me:18756: result: no" >&5 + echo "$as_me:18771: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -18811,7 +18826,7 @@ if test -n "$cf_cv_curses_dir/include $cf_cv_curses_dir/include/$cf_ncuhdr_root" cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 18814 "configure" +#line 18829 "configure" #include "confdefs.h" #include <stdio.h> int @@ -18823,16 +18838,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18826: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18841: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18829: \$? = $ac_status" >&5 + echo "$as_me:18844: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18832: \"$ac_try\"") >&5 + { (eval echo "$as_me:18847: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18835: \$? = $ac_status" >&5 + echo "$as_me:18850: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -18849,7 +18864,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}:18852: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:18867: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -18866,7 +18881,7 @@ fi } -echo "$as_me:18869: checking for $cf_ncuhdr_root header in include-path" >&5 +echo "$as_me:18884: checking for $cf_ncuhdr_root header in include-path" >&5 echo $ECHO_N "checking for $cf_ncuhdr_root header in include-path... $ECHO_C" >&6 if test "${cf_cv_ncurses_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -18878,7 +18893,7 @@ else do cat >conftest.$ac_ext <<_ACEOF -#line 18881 "configure" +#line 18896 "configure" #include "confdefs.h" #define _XOPEN_SOURCE_EXTENDED @@ -18910,16 +18925,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:18913: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:18928: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:18916: \$? = $ac_status" >&5 + echo "$as_me:18931: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:18919: \"$ac_try\"") >&5 + { (eval echo "$as_me:18934: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:18922: \$? = $ac_status" >&5 + echo "$as_me:18937: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h=$cf_header @@ -18934,14 +18949,14 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:18937: result: $cf_cv_ncurses_h" >&5 +echo "$as_me:18952: result: $cf_cv_ncurses_h" >&5 echo "${ECHO_T}$cf_cv_ncurses_h" >&6 if test "$cf_cv_ncurses_h" != no ; then cf_cv_ncurses_header=$cf_cv_ncurses_h else -echo "$as_me:18944: checking for $cf_ncuhdr_root include-path" >&5 +echo "$as_me:18959: checking for $cf_ncuhdr_root include-path" >&5 echo $ECHO_N "checking for $cf_ncuhdr_root include-path... $ECHO_C" >&6 if test "${cf_cv_ncurses_h2+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -19076,7 +19091,7 @@ if test -n "$cf_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 19079 "configure" +#line 19094 "configure" #include "confdefs.h" #include <stdio.h> int @@ -19088,16 +19103,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19091: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19106: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19094: \$? = $ac_status" >&5 + echo "$as_me:19109: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19097: \"$ac_try\"") >&5 + { (eval echo "$as_me:19112: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19100: \$? = $ac_status" >&5 + echo "$as_me:19115: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -19114,7 +19129,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}:19117: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:19132: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -19135,7 +19150,7 @@ fi do cat >conftest.$ac_ext <<_ACEOF -#line 19138 "configure" +#line 19153 "configure" #include "confdefs.h" #include <$cf_header> @@ -19159,16 +19174,16 @@ printf("old\n"); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19162: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19177: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19165: \$? = $ac_status" >&5 + echo "$as_me:19180: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19168: \"$ac_try\"") >&5 + { (eval echo "$as_me:19183: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19171: \$? = $ac_status" >&5 + echo "$as_me:19186: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_h2=$cf_header @@ -19189,12 +19204,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext CPPFLAGS="$cf_save2_CPPFLAGS" test "$cf_cv_ncurses_h2" != no && break done - test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:19192: error: not found" >&5 + test "$cf_cv_ncurses_h2" = no && { { echo "$as_me:19207: error: not found" >&5 echo "$as_me: error: not found" >&2;} { (exit 1); exit 1; }; } fi -echo "$as_me:19197: result: $cf_cv_ncurses_h2" >&5 +echo "$as_me:19212: result: $cf_cv_ncurses_h2" >&5 echo "${ECHO_T}$cf_cv_ncurses_h2" >&6 cf_1st_incdir=`echo $cf_cv_ncurses_h2 | sed -e 's%/[^/]*$%%'` @@ -19227,7 +19242,7 @@ if test -n "$cf_1st_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 19230 "configure" +#line 19245 "configure" #include "confdefs.h" #include <stdio.h> int @@ -19239,16 +19254,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19242: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19257: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19245: \$? = $ac_status" >&5 + echo "$as_me:19260: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19248: \"$ac_try\"") >&5 + { (eval echo "$as_me:19263: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19251: \$? = $ac_status" >&5 + echo "$as_me:19266: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -19265,7 +19280,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}:19268: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:19283: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -19308,7 +19323,7 @@ EOF ;; esac -echo "$as_me:19311: checking for terminfo header" >&5 +echo "$as_me:19326: checking for terminfo header" >&5 echo $ECHO_N "checking for terminfo header... $ECHO_C" >&6 if test "${cf_cv_term_header+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -19326,7 +19341,7 @@ esac for cf_test in $cf_term_header "ncurses/term.h" "ncursesw/term.h" do cat >conftest.$ac_ext <<_ACEOF -#line 19329 "configure" +#line 19344 "configure" #include "confdefs.h" #include <stdio.h> #include <${cf_cv_ncurses_header-curses.h}> @@ -19341,16 +19356,16 @@ int x = auto_left_margin } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:19344: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:19359: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:19347: \$? = $ac_status" >&5 + echo "$as_me:19362: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:19350: \"$ac_try\"") >&5 + { (eval echo "$as_me:19365: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19353: \$? = $ac_status" >&5 + echo "$as_me:19368: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header="$cf_test" @@ -19366,7 +19381,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:19369: result: $cf_cv_term_header" >&5 +echo "$as_me:19384: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 # Set definitions to allow ifdef'ing to accommodate subdirectories @@ -19400,7 +19415,7 @@ cat >>confdefs.h <<\EOF #define NCURSES 1 EOF -echo "$as_me:19403: checking for ncurses version" >&5 +echo "$as_me:19418: checking for ncurses version" >&5 echo $ECHO_N "checking for ncurses version... $ECHO_C" >&6 if test "${cf_cv_ncurses_version+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -19426,10 +19441,10 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo "$as_me:19429: \"$cf_try\"") >&5 + { (eval echo "$as_me:19444: \"$cf_try\"") >&5 (eval $cf_try) 2>&5 ac_status=$? - echo "$as_me:19432: \$? = $ac_status" >&5 + echo "$as_me:19447: \$? = $ac_status" >&5 (exit $ac_status); } if test -f conftest.out ; then cf_out=`cat conftest.out | sed -e 's%^Autoconf %%' -e 's%^[^"]*"%%' -e 's%".*%%'` @@ -19439,7 +19454,7 @@ EOF else cat >conftest.$ac_ext <<_ACEOF -#line 19442 "configure" +#line 19457 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -19464,15 +19479,15 @@ int main() } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:19467: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19482: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19470: \$? = $ac_status" >&5 + echo "$as_me:19485: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:19472: \"$ac_try\"") >&5 + { (eval echo "$as_me:19487: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19475: \$? = $ac_status" >&5 + echo "$as_me:19490: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -19486,7 +19501,7 @@ fi rm -f $cf_tempfile fi -echo "$as_me:19489: result: $cf_cv_ncurses_version" >&5 +echo "$as_me:19504: result: $cf_cv_ncurses_version" >&5 echo "${ECHO_T}$cf_cv_ncurses_version" >&6 test "$cf_cv_ncurses_version" = no || cat >>confdefs.h <<\EOF #define NCURSES 1 @@ -19498,7 +19513,7 @@ cf_nculib_root=ncursesw # to link gpm. cf_ncurses_LIBS="" cf_ncurses_SAVE="$LIBS" -echo "$as_me:19501: checking for Gpm_Open in -lgpm" >&5 +echo "$as_me:19516: checking for Gpm_Open in -lgpm" >&5 echo $ECHO_N "checking for Gpm_Open in -lgpm... $ECHO_C" >&6 if test "${ac_cv_lib_gpm_Gpm_Open+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -19506,7 +19521,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 19509 "configure" +#line 19524 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -19525,16 +19540,16 @@ Gpm_Open (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19528: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19543: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19531: \$? = $ac_status" >&5 + echo "$as_me:19546: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19534: \"$ac_try\"") >&5 + { (eval echo "$as_me:19549: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19537: \$? = $ac_status" >&5 + echo "$as_me:19552: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_Gpm_Open=yes else @@ -19545,10 +19560,10 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:19548: result: $ac_cv_lib_gpm_Gpm_Open" >&5 +echo "$as_me:19563: result: $ac_cv_lib_gpm_Gpm_Open" >&5 echo "${ECHO_T}$ac_cv_lib_gpm_Gpm_Open" >&6 if test $ac_cv_lib_gpm_Gpm_Open = yes; then - echo "$as_me:19551: checking for initscr in -lgpm" >&5 + echo "$as_me:19566: checking for initscr in -lgpm" >&5 echo $ECHO_N "checking for initscr in -lgpm... $ECHO_C" >&6 if test "${ac_cv_lib_gpm_initscr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -19556,7 +19571,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lgpm $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 19559 "configure" +#line 19574 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -19575,16 +19590,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19578: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19593: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19581: \$? = $ac_status" >&5 + echo "$as_me:19596: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19584: \"$ac_try\"") >&5 + { (eval echo "$as_me:19599: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19587: \$? = $ac_status" >&5 + echo "$as_me:19602: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_gpm_initscr=yes else @@ -19595,7 +19610,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:19598: result: $ac_cv_lib_gpm_initscr" >&5 +echo "$as_me:19613: result: $ac_cv_lib_gpm_initscr" >&5 echo "${ECHO_T}$ac_cv_lib_gpm_initscr" >&6 if test $ac_cv_lib_gpm_initscr = yes; then LIBS="$cf_ncurses_SAVE" @@ -19610,7 +19625,7 @@ freebsd*) # This is only necessary if you are linking against an obsolete # version of ncurses (but it should do no harm, since it's static). if test "$cf_nculib_root" = ncurses ; then - echo "$as_me:19613: checking for tgoto in -lmytinfo" >&5 + echo "$as_me:19628: checking for tgoto in -lmytinfo" >&5 echo $ECHO_N "checking for tgoto in -lmytinfo... $ECHO_C" >&6 if test "${ac_cv_lib_mytinfo_tgoto+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -19618,7 +19633,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lmytinfo $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 19621 "configure" +#line 19636 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -19637,16 +19652,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19640: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19655: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19643: \$? = $ac_status" >&5 + echo "$as_me:19658: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19646: \"$ac_try\"") >&5 + { (eval echo "$as_me:19661: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19649: \$? = $ac_status" >&5 + echo "$as_me:19664: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_mytinfo_tgoto=yes else @@ -19657,7 +19672,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:19660: result: $ac_cv_lib_mytinfo_tgoto" >&5 +echo "$as_me:19675: result: $ac_cv_lib_mytinfo_tgoto" >&5 echo "${ECHO_T}$ac_cv_lib_mytinfo_tgoto" >&6 if test $ac_cv_lib_mytinfo_tgoto = yes; then cf_ncurses_LIBS="-lmytinfo $cf_ncurses_LIBS" @@ -19691,7 +19706,7 @@ if test -n "$cf_cv_curses_dir/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}:19694: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:19709: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -19704,13 +19719,13 @@ else eval 'cf_cv_have_lib_'$cf_nculib_root'=no' cf_libdir="" - echo "$as_me:19707: checking for initscr" >&5 + echo "$as_me:19722: checking for initscr" >&5 echo $ECHO_N "checking for initscr... $ECHO_C" >&6 if test "${ac_cv_func_initscr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 19713 "configure" +#line 19728 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char initscr (); below. */ @@ -19741,16 +19756,16 @@ f = initscr; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19744: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19759: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19747: \$? = $ac_status" >&5 + echo "$as_me:19762: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19750: \"$ac_try\"") >&5 + { (eval echo "$as_me:19765: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19753: \$? = $ac_status" >&5 + echo "$as_me:19768: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_initscr=yes else @@ -19760,18 +19775,18 @@ ac_cv_func_initscr=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:19763: result: $ac_cv_func_initscr" >&5 +echo "$as_me:19778: result: $ac_cv_func_initscr" >&5 echo "${ECHO_T}$ac_cv_func_initscr" >&6 if test $ac_cv_func_initscr = yes; then eval 'cf_cv_have_lib_'$cf_nculib_root'=yes' else cf_save_LIBS="$LIBS" - echo "$as_me:19770: checking for initscr in -l$cf_nculib_root" >&5 + echo "$as_me:19785: checking for initscr in -l$cf_nculib_root" >&5 echo $ECHO_N "checking for initscr in -l$cf_nculib_root... $ECHO_C" >&6 LIBS="-l$cf_nculib_root $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 19774 "configure" +#line 19789 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -19783,25 +19798,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19786: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19801: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19789: \$? = $ac_status" >&5 + echo "$as_me:19804: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19792: \"$ac_try\"") >&5 + { (eval echo "$as_me:19807: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19795: \$? = $ac_status" >&5 + echo "$as_me:19810: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:19797: result: yes" >&5 + echo "$as_me:19812: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'$cf_nculib_root'=yes' else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:19804: result: no" >&5 +echo "$as_me:19819: result: no" >&5 echo "${ECHO_T}no" >&6 cf_library_path_list="" @@ -19890,11 +19905,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:19893: checking for -l$cf_nculib_root in $cf_libdir" >&5 + echo "$as_me:19908: checking for -l$cf_nculib_root in $cf_libdir" >&5 echo $ECHO_N "checking for -l$cf_nculib_root in $cf_libdir... $ECHO_C" >&6 LIBS="-L$cf_libdir -l$cf_nculib_root $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 19897 "configure" +#line 19912 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -19906,25 +19921,25 @@ initscr() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19909: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19924: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19912: \$? = $ac_status" >&5 + echo "$as_me:19927: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19915: \"$ac_try\"") >&5 + { (eval echo "$as_me:19930: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19918: \$? = $ac_status" >&5 + echo "$as_me:19933: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:19920: result: yes" >&5 + echo "$as_me:19935: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'$cf_nculib_root'=yes' break else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:19927: result: no" >&5 +echo "$as_me:19942: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -19939,7 +19954,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'$cf_nculib_root if test $cf_found_library = no ; then - { { echo "$as_me:19942: error: Cannot link $cf_nculib_root library" >&5 + { { echo "$as_me:19957: error: Cannot link $cf_nculib_root library" >&5 echo "$as_me: error: Cannot link $cf_nculib_root library" >&2;} { (exit 1); exit 1; }; } fi @@ -19947,7 +19962,7 @@ fi fi if test -n "$cf_ncurses_LIBS" ; then - echo "$as_me:19950: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5 + echo "$as_me:19965: checking if we can link $cf_nculib_root without $cf_ncurses_LIBS" >&5 echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS... $ECHO_C" >&6 cf_ncurses_SAVE="$LIBS" for p in $cf_ncurses_LIBS ; do @@ -19957,7 +19972,7 @@ echo $ECHO_N "checking if we can link $cf_nculib_root without $cf_ncurses_LIBS.. fi done cat >conftest.$ac_ext <<_ACEOF -#line 19960 "configure" +#line 19975 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -19969,23 +19984,23 @@ initscr(); mousemask(0,0); tgoto((char *)0, 0, 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:19972: \"$ac_link\"") >&5 +if { (eval echo "$as_me:19987: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:19975: \$? = $ac_status" >&5 + echo "$as_me:19990: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:19978: \"$ac_try\"") >&5 + { (eval echo "$as_me:19993: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:19981: \$? = $ac_status" >&5 + echo "$as_me:19996: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:19983: result: yes" >&5 + echo "$as_me:19998: result: yes" >&5 echo "${ECHO_T}yes" >&6 else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:19988: result: no" >&5 +echo "$as_me:20003: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_ncurses_SAVE" fi @@ -20008,14 +20023,14 @@ pdcurses) ;; slang) -echo "$as_me:20011: checking for slang header file" >&5 +echo "$as_me:20026: checking for slang header file" >&5 echo $ECHO_N "checking for slang header file... $ECHO_C" >&6 if test "${cf_cv_slang_header+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 20018 "configure" +#line 20033 "configure" #include "confdefs.h" #include <slang.h> int @@ -20027,16 +20042,16 @@ printf("%s\n", SLANG_VERSION) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:20030: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20045: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20033: \$? = $ac_status" >&5 + echo "$as_me:20048: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:20036: \"$ac_try\"") >&5 + { (eval echo "$as_me:20051: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20039: \$? = $ac_status" >&5 + echo "$as_me:20054: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_header=predefined else @@ -20154,14 +20169,14 @@ cf_search="$cf_header_path_list $cf_search" done test -n "$cf_cv_slang_header" && break done - test -z "$cf_cv_slang_header" && { { echo "$as_me:20157: error: not found" >&5 + test -z "$cf_cv_slang_header" && { { echo "$as_me:20172: error: not found" >&5 echo "$as_me: error: not found" >&2;} { (exit 1); exit 1; }; } fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:20164: result: $cf_cv_slang_header" >&5 +echo "$as_me:20179: result: $cf_cv_slang_header" >&5 echo "${ECHO_T}$cf_cv_slang_header" >&6 cat >>confdefs.h <<\EOF #define USE_SLANG 1 @@ -20198,7 +20213,7 @@ if test -n "$cf_incdir" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 20201 "configure" +#line 20216 "configure" #include "confdefs.h" #include <stdio.h> int @@ -20210,16 +20225,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:20213: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20228: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20216: \$? = $ac_status" >&5 + echo "$as_me:20231: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:20219: \"$ac_try\"") >&5 + { (eval echo "$as_me:20234: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20222: \$? = $ac_status" >&5 + echo "$as_me:20237: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -20236,7 +20251,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}:20239: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:20254: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -20256,14 +20271,14 @@ esac # There's an unofficial set of patches for slang that gives it some limited # UTF8 capability. Unfortunately it won't compile unless one defines UTF8. -echo "$as_me:20259: checking if we must define UTF8" >&5 +echo "$as_me:20274: checking if we must define UTF8" >&5 echo $ECHO_N "checking if we must define UTF8... $ECHO_C" >&6 if test "${cf_cv_slang_utf8+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 20266 "configure" +#line 20281 "configure" #include "confdefs.h" #include <slang.h> @@ -20276,16 +20291,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:20279: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20294: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20282: \$? = $ac_status" >&5 + echo "$as_me:20297: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:20285: \"$ac_try\"") >&5 + { (eval echo "$as_me:20300: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20288: \$? = $ac_status" >&5 + echo "$as_me:20303: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_utf8=no else @@ -20293,7 +20308,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 20296 "configure" +#line 20311 "configure" #include "confdefs.h" #define UTF8 @@ -20307,16 +20322,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:20310: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:20325: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:20313: \$? = $ac_status" >&5 + echo "$as_me:20328: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:20316: \"$ac_try\"") >&5 + { (eval echo "$as_me:20331: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20319: \$? = $ac_status" >&5 + echo "$as_me:20334: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_utf8=yes else @@ -20329,7 +20344,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:20332: result: $cf_cv_slang_utf8" >&5 +echo "$as_me:20347: result: $cf_cv_slang_utf8" >&5 echo "${ECHO_T}$cf_cv_slang_utf8" >&6 if test "$cf_cv_slang_utf8" = yes ; then @@ -20347,7 +20362,7 @@ else cf_cv_termlib=none cat >conftest.$ac_ext <<_ACEOF -#line 20350 "configure" +#line 20365 "configure" #include "confdefs.h" int @@ -20359,19 +20374,19 @@ char *x=(char*)tgoto("",0,0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20362: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20377: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20365: \$? = $ac_status" >&5 + echo "$as_me:20380: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20368: \"$ac_try\"") >&5 + { (eval echo "$as_me:20383: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20371: \$? = $ac_status" >&5 + echo "$as_me:20386: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 20374 "configure" +#line 20389 "configure" #include "confdefs.h" int @@ -20383,16 +20398,16 @@ int x=tigetstr("") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20386: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20401: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20389: \$? = $ac_status" >&5 + echo "$as_me:20404: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20392: \"$ac_try\"") >&5 + { (eval echo "$as_me:20407: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20395: \$? = $ac_status" >&5 + echo "$as_me:20410: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termlib=terminfo else @@ -20403,7 +20418,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext test -n "$verbose" && echo " using functions in predefined $cf_cv_termlib LIBS" 1>&6 -echo "${as_me-configure}:20406: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 +echo "${as_me-configure}:20421: testing using functions in predefined $cf_cv_termlib LIBS ..." 1>&5 else echo "$as_me: failed program was:" >&5 @@ -20418,10 +20433,10 @@ if test "$cf_cv_termlib" = none; then LIBS="-l$cf_lib $cf_save_LIBS" for cf_func in tigetstr tgetstr do - echo "$as_me:20421: checking for $cf_func in -l$cf_lib" >&5 + echo "$as_me:20436: checking for $cf_func in -l$cf_lib" >&5 echo $ECHO_N "checking for $cf_func in -l$cf_lib... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 20424 "configure" +#line 20439 "configure" #include "confdefs.h" int @@ -20433,16 +20448,16 @@ int x=$cf_func("") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20436: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20451: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20439: \$? = $ac_status" >&5 + echo "$as_me:20454: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20442: \"$ac_try\"") >&5 + { (eval echo "$as_me:20457: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20445: \$? = $ac_status" >&5 + echo "$as_me:20460: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -20451,7 +20466,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:20454: result: $cf_result" >&5 + echo "$as_me:20469: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then if test "$cf_func" = tigetstr ; then @@ -20468,7 +20483,7 @@ echo "${ECHO_T}$cf_result" >&6 fi if test "$cf_cv_termlib" = none; then # allow curses library for broken AIX system. - echo "$as_me:20471: checking for initscr in -lcurses" >&5 + echo "$as_me:20486: checking for initscr in -lcurses" >&5 echo $ECHO_N "checking for initscr in -lcurses... $ECHO_C" >&6 if test "${ac_cv_lib_curses_initscr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -20476,7 +20491,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lcurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 20479 "configure" +#line 20494 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -20495,16 +20510,16 @@ initscr (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20498: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20513: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20501: \$? = $ac_status" >&5 + echo "$as_me:20516: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20504: \"$ac_try\"") >&5 + { (eval echo "$as_me:20519: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20507: \$? = $ac_status" >&5 + echo "$as_me:20522: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_curses_initscr=yes else @@ -20515,13 +20530,13 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:20518: result: $ac_cv_lib_curses_initscr" >&5 +echo "$as_me:20533: result: $ac_cv_lib_curses_initscr" >&5 echo "${ECHO_T}$ac_cv_lib_curses_initscr" >&6 if test $ac_cv_lib_curses_initscr = yes; then LIBS="$LIBS -lcurses" cf_cv_termlib=termcap fi - echo "$as_me:20524: checking for tgoto in -ltermcap" >&5 + echo "$as_me:20539: checking for tgoto in -ltermcap" >&5 echo $ECHO_N "checking for tgoto in -ltermcap... $ECHO_C" >&6 if test "${ac_cv_lib_termcap_tgoto+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -20529,7 +20544,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ltermcap $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 20532 "configure" +#line 20547 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -20548,16 +20563,16 @@ tgoto (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20551: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20566: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20554: \$? = $ac_status" >&5 + echo "$as_me:20569: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20557: \"$ac_try\"") >&5 + { (eval echo "$as_me:20572: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20560: \$? = $ac_status" >&5 + echo "$as_me:20575: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_termcap_tgoto=yes else @@ -20568,7 +20583,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:20571: result: $ac_cv_lib_termcap_tgoto" >&5 +echo "$as_me:20586: result: $ac_cv_lib_termcap_tgoto" >&5 echo "${ECHO_T}$ac_cv_lib_termcap_tgoto" >&6 if test $ac_cv_lib_termcap_tgoto = yes; then LIBS="$LIBS -ltermcap" cf_cv_termlib=termcap @@ -20579,20 +20594,20 @@ fi fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext if test "$cf_cv_termlib" = none; then - { echo "$as_me:20582: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&5 + { echo "$as_me:20597: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&5 echo "$as_me: WARNING: Cannot find -ltermlib, -lcurses, or -ltermcap" >&2;} fi fi cf_slang_LIBS2="$LIBS" -echo "$as_me:20589: checking for acos" >&5 +echo "$as_me:20604: checking for acos" >&5 echo $ECHO_N "checking for acos... $ECHO_C" >&6 if test "${ac_cv_func_acos+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 20595 "configure" +#line 20610 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char acos (); below. */ @@ -20623,16 +20638,16 @@ f = acos; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20626: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20641: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20629: \$? = $ac_status" >&5 + echo "$as_me:20644: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20632: \"$ac_try\"") >&5 + { (eval echo "$as_me:20647: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20635: \$? = $ac_status" >&5 + echo "$as_me:20650: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_acos=yes else @@ -20642,13 +20657,13 @@ ac_cv_func_acos=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:20645: result: $ac_cv_func_acos" >&5 +echo "$as_me:20660: result: $ac_cv_func_acos" >&5 echo "${ECHO_T}$ac_cv_func_acos" >&6 if test $ac_cv_func_acos = yes; then : else -echo "$as_me:20651: checking for acos in -lm" >&5 +echo "$as_me:20666: checking for acos in -lm" >&5 echo $ECHO_N "checking for acos in -lm... $ECHO_C" >&6 if test "${ac_cv_lib_m_acos+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -20656,7 +20671,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lm $LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 20659 "configure" +#line 20674 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -20675,16 +20690,16 @@ acos (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20678: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20693: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20681: \$? = $ac_status" >&5 + echo "$as_me:20696: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20684: \"$ac_try\"") >&5 + { (eval echo "$as_me:20699: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20687: \$? = $ac_status" >&5 + echo "$as_me:20702: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_m_acos=yes else @@ -20695,7 +20710,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:20698: result: $ac_cv_lib_m_acos" >&5 +echo "$as_me:20713: result: $ac_cv_lib_m_acos" >&5 echo "${ECHO_T}$ac_cv_lib_m_acos" >&6 if test $ac_cv_lib_m_acos = yes; then @@ -20721,13 +20736,13 @@ os2*) eval 'cf_cv_have_lib_'video'=no' cf_libdir="" - echo "$as_me:20724: checking for v_init" >&5 + echo "$as_me:20739: checking for v_init" >&5 echo $ECHO_N "checking for v_init... $ECHO_C" >&6 if test "${ac_cv_func_v_init+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 20730 "configure" +#line 20745 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char v_init (); below. */ @@ -20758,16 +20773,16 @@ f = v_init; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20761: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20776: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20764: \$? = $ac_status" >&5 + echo "$as_me:20779: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20767: \"$ac_try\"") >&5 + { (eval echo "$as_me:20782: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20770: \$? = $ac_status" >&5 + echo "$as_me:20785: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_v_init=yes else @@ -20777,18 +20792,18 @@ ac_cv_func_v_init=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:20780: result: $ac_cv_func_v_init" >&5 +echo "$as_me:20795: result: $ac_cv_func_v_init" >&5 echo "${ECHO_T}$ac_cv_func_v_init" >&6 if test $ac_cv_func_v_init = yes; then eval 'cf_cv_have_lib_'video'=yes' else cf_save_LIBS="$LIBS" - echo "$as_me:20787: checking for v_init in -lvideo" >&5 + echo "$as_me:20802: checking for v_init in -lvideo" >&5 echo $ECHO_N "checking for v_init in -lvideo... $ECHO_C" >&6 LIBS="-lvideo $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 20791 "configure" +#line 20806 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -20800,25 +20815,25 @@ v_init() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20803: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20818: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20806: \$? = $ac_status" >&5 + echo "$as_me:20821: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20809: \"$ac_try\"") >&5 + { (eval echo "$as_me:20824: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20812: \$? = $ac_status" >&5 + echo "$as_me:20827: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:20814: result: yes" >&5 + echo "$as_me:20829: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'video'=yes' else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:20821: result: no" >&5 +echo "$as_me:20836: result: no" >&5 echo "${ECHO_T}no" >&6 cf_library_path_list="" @@ -20907,11 +20922,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:20910: checking for -lvideo in $cf_libdir" >&5 + echo "$as_me:20925: checking for -lvideo in $cf_libdir" >&5 echo $ECHO_N "checking for -lvideo in $cf_libdir... $ECHO_C" >&6 LIBS="-L$cf_libdir -lvideo $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 20914 "configure" +#line 20929 "configure" #include "confdefs.h" #include <sys/video.h> int @@ -20923,25 +20938,25 @@ v_init() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:20926: \"$ac_link\"") >&5 +if { (eval echo "$as_me:20941: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:20929: \$? = $ac_status" >&5 + echo "$as_me:20944: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:20932: \"$ac_try\"") >&5 + { (eval echo "$as_me:20947: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:20935: \$? = $ac_status" >&5 + echo "$as_me:20950: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:20937: result: yes" >&5 + echo "$as_me:20952: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'video'=yes' break else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:20944: result: no" >&5 +echo "$as_me:20959: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -20956,7 +20971,7 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'video if test $cf_found_library = no ; then - { { echo "$as_me:20959: error: Cannot link video library" >&5 + { { echo "$as_me:20974: error: Cannot link video library" >&5 echo "$as_me: error: Cannot link video library" >&2;} { (exit 1); exit 1; }; } fi @@ -20966,13 +20981,13 @@ esac eval 'cf_cv_have_lib_'slang'=no' cf_libdir="" - echo "$as_me:20969: checking for SLtt_get_screen_size" >&5 + echo "$as_me:20984: checking for SLtt_get_screen_size" >&5 echo $ECHO_N "checking for SLtt_get_screen_size... $ECHO_C" >&6 if test "${ac_cv_func_SLtt_get_screen_size+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 20975 "configure" +#line 20990 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char SLtt_get_screen_size (); below. */ @@ -21003,16 +21018,16 @@ f = SLtt_get_screen_size; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21006: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21021: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21009: \$? = $ac_status" >&5 + echo "$as_me:21024: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21012: \"$ac_try\"") >&5 + { (eval echo "$as_me:21027: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21015: \$? = $ac_status" >&5 + echo "$as_me:21030: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_SLtt_get_screen_size=yes else @@ -21022,18 +21037,18 @@ ac_cv_func_SLtt_get_screen_size=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:21025: result: $ac_cv_func_SLtt_get_screen_size" >&5 +echo "$as_me:21040: result: $ac_cv_func_SLtt_get_screen_size" >&5 echo "${ECHO_T}$ac_cv_func_SLtt_get_screen_size" >&6 if test $ac_cv_func_SLtt_get_screen_size = yes; then eval 'cf_cv_have_lib_'slang'=yes' else cf_save_LIBS="$LIBS" - echo "$as_me:21032: checking for SLtt_get_screen_size in -lslang" >&5 + echo "$as_me:21047: checking for SLtt_get_screen_size in -lslang" >&5 echo $ECHO_N "checking for SLtt_get_screen_size in -lslang... $ECHO_C" >&6 LIBS="-lslang $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 21036 "configure" +#line 21051 "configure" #include "confdefs.h" #include <slang.h> int @@ -21045,25 +21060,25 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21048: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21063: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21051: \$? = $ac_status" >&5 + echo "$as_me:21066: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21054: \"$ac_try\"") >&5 + { (eval echo "$as_me:21069: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21057: \$? = $ac_status" >&5 + echo "$as_me:21072: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:21059: result: yes" >&5 + echo "$as_me:21074: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'slang'=yes' else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:21066: result: no" >&5 +echo "$as_me:21081: result: no" >&5 echo "${ECHO_T}no" >&6 cf_library_path_list="" @@ -21152,11 +21167,11 @@ cf_search="$cf_library_path_list $cf_search" for cf_libdir in $cf_search do - echo "$as_me:21155: checking for -lslang in $cf_libdir" >&5 + echo "$as_me:21170: checking for -lslang in $cf_libdir" >&5 echo $ECHO_N "checking for -lslang in $cf_libdir... $ECHO_C" >&6 LIBS="-L$cf_libdir -lslang $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 21159 "configure" +#line 21174 "configure" #include "confdefs.h" #include <slang.h> int @@ -21168,25 +21183,25 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21171: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21186: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21174: \$? = $ac_status" >&5 + echo "$as_me:21189: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21177: \"$ac_try\"") >&5 + { (eval echo "$as_me:21192: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21180: \$? = $ac_status" >&5 + echo "$as_me:21195: \$? = $ac_status" >&5 (exit $ac_status); }; }; then - echo "$as_me:21182: result: yes" >&5 + echo "$as_me:21197: result: yes" >&5 echo "${ECHO_T}yes" >&6 eval 'cf_cv_have_lib_'slang'=yes' break else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:21189: result: no" >&5 +echo "$as_me:21204: result: no" >&5 echo "${ECHO_T}no" >&6 LIBS="$cf_save_LIBS" fi @@ -21201,13 +21216,13 @@ fi eval 'cf_found_library=$cf_cv_have_lib_'slang if test $cf_found_library = no ; then - { { echo "$as_me:21204: error: Cannot link slang library" >&5 + { { echo "$as_me:21219: error: Cannot link slang library" >&5 echo "$as_me: error: Cannot link slang library" >&2;} { (exit 1); exit 1; }; } fi cf_slang_LIBS3="$LIBS" -echo "$as_me:21210: checking if we can link slang without termcap" >&5 +echo "$as_me:21225: checking if we can link slang without termcap" >&5 echo $ECHO_N "checking if we can link slang without termcap... $ECHO_C" >&6 if test -n "`echo $cf_slang_LIBS1 | sed -e 's/ //g'`" ; then cf_exclude=`echo ".$cf_slang_LIBS2" | sed -e "s%$cf_slang_LIBS1%%" -e 's%^.%%'` @@ -21216,7 +21231,7 @@ else fi LIBS=`echo ".$cf_slang_LIBS3" | sed -e "s%$cf_exclude%%" -e 's%^.%%'` cat >conftest.$ac_ext <<_ACEOF -#line 21219 "configure" +#line 21234 "configure" #include "confdefs.h" #include <slang.h> int @@ -21228,16 +21243,16 @@ SLtt_get_screen_size() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21231: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21246: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21234: \$? = $ac_status" >&5 + echo "$as_me:21249: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21237: \"$ac_try\"") >&5 + { (eval echo "$as_me:21252: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21240: \$? = $ac_status" >&5 + echo "$as_me:21255: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -21246,18 +21261,18 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:21249: result: $cf_result" >&5 +echo "$as_me:21264: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 test $cf_result = no && LIBS="$cf_slang_LIBS3" -echo "$as_me:21253: checking if we must tell slang this is UNIX" >&5 +echo "$as_me:21268: checking if we must tell slang this is UNIX" >&5 echo $ECHO_N "checking if we must tell slang this is UNIX... $ECHO_C" >&6 if test "${cf_cv_slang_unix+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 21260 "configure" +#line 21275 "configure" #include "confdefs.h" #include <slang.h> int @@ -21276,16 +21291,16 @@ SLang_TT_Baud_Rate = 1 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:21279: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21294: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21282: \$? = $ac_status" >&5 + echo "$as_me:21297: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:21285: \"$ac_try\"") >&5 + { (eval echo "$as_me:21300: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21288: \$? = $ac_status" >&5 + echo "$as_me:21303: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_slang_unix=yes else @@ -21296,7 +21311,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:21299: result: $cf_cv_slang_unix" >&5 +echo "$as_me:21314: result: $cf_cv_slang_unix" >&5 echo "${ECHO_T}$cf_cv_slang_unix" >&6 test $cf_cv_slang_unix = yes && cat >>confdefs.h <<\EOF #define REAL_UNIX_SYSTEM 1 @@ -21306,14 +21321,14 @@ EOF ;; esac -echo "$as_me:21309: checking for chtype typedef" >&5 +echo "$as_me:21324: checking for chtype typedef" >&5 echo $ECHO_N "checking for chtype typedef... $ECHO_C" >&6 if test "${cf_cv_chtype_decl+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 21316 "configure" +#line 21331 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -21325,16 +21340,16 @@ chtype foo } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:21328: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21343: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21331: \$? = $ac_status" >&5 + echo "$as_me:21346: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:21334: \"$ac_try\"") >&5 + { (eval echo "$as_me:21349: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21337: \$? = $ac_status" >&5 + echo "$as_me:21352: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_chtype_decl=yes else @@ -21344,21 +21359,21 @@ cf_cv_chtype_decl=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:21347: result: $cf_cv_chtype_decl" >&5 +echo "$as_me:21362: result: $cf_cv_chtype_decl" >&5 echo "${ECHO_T}$cf_cv_chtype_decl" >&6 if test $cf_cv_chtype_decl = yes ; then cat >>confdefs.h <<\EOF #define HAVE_TYPE_CHTYPE 1 EOF - echo "$as_me:21354: checking if chtype is scalar or struct" >&5 + echo "$as_me:21369: checking if chtype is scalar or struct" >&5 echo $ECHO_N "checking if chtype is scalar or struct... $ECHO_C" >&6 if test "${cf_cv_chtype_type+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 21361 "configure" +#line 21376 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -21370,16 +21385,16 @@ chtype foo; long x = foo } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:21373: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21388: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21376: \$? = $ac_status" >&5 + echo "$as_me:21391: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:21379: \"$ac_try\"") >&5 + { (eval echo "$as_me:21394: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21382: \$? = $ac_status" >&5 + echo "$as_me:21397: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_chtype_type=scalar else @@ -21389,7 +21404,7 @@ cf_cv_chtype_type=struct fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:21392: result: $cf_cv_chtype_type" >&5 +echo "$as_me:21407: result: $cf_cv_chtype_type" >&5 echo "${ECHO_T}$cf_cv_chtype_type" >&6 if test $cf_cv_chtype_type = scalar ; then cat >>confdefs.h <<\EOF @@ -21399,7 +21414,7 @@ EOF fi fi -echo "$as_me:21402: checking if you want the wide-curses features" >&5 +echo "$as_me:21417: checking if you want the wide-curses features" >&5 echo $ECHO_N "checking if you want the wide-curses features... $ECHO_C" >&6 # Check whether --enable-widec or --disable-widec was given. @@ -21416,10 +21431,10 @@ else use_wide_curses=$cf_wide_curses fi; -echo "$as_me:21419: result: $use_wide_curses" >&5 +echo "$as_me:21434: result: $use_wide_curses" >&5 echo "${ECHO_T}$use_wide_curses" >&6 -echo "$as_me:21422: checking if color-style code should be used" >&5 +echo "$as_me:21437: checking if color-style code should be used" >&5 echo $ECHO_N "checking if color-style code should be used... $ECHO_C" >&6 # Check whether --enable-color-style or --disable-color-style was given. @@ -21439,7 +21454,7 @@ fi; case $use_color_style in no) - echo "$as_me:21442: result: no" >&5 + echo "$as_me:21457: result: no" >&5 echo "${ECHO_T}no" >&6 INSTALL_LSS= ;; @@ -21448,10 +21463,10 @@ echo "${ECHO_T}no" >&6 #define USE_COLOR_STYLE 1 EOF - echo "$as_me:21451: result: yes" >&5 + echo "$as_me:21466: result: yes" >&5 echo "${ECHO_T}yes" >&6 - echo "$as_me:21454: checking for location of style-sheet file" >&5 + echo "$as_me:21469: checking for location of style-sheet file" >&5 echo $ECHO_N "checking for location of style-sheet file... $ECHO_C" >&6 # Check whether --with-lss-file or --without-lss-file was given. @@ -21487,7 +21502,7 @@ case ".$withval" in #(vi withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:21490: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:21505: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -21496,7 +21511,7 @@ esac fi LYNX_LSS_FILE="$withval" - echo "$as_me:21499: result: $LYNX_LSS_FILE" >&5 + echo "$as_me:21514: result: $LYNX_LSS_FILE" >&5 echo "${ECHO_T}$LYNX_LSS_FILE" >&6 test "$LYNX_LSS_FILE" = no && LYNX_LSS_FILE= @@ -21508,7 +21523,7 @@ EOF ;; esac -echo "$as_me:21511: checking for the default configuration-file" >&5 +echo "$as_me:21526: checking for the default configuration-file" >&5 echo $ECHO_N "checking for the default configuration-file... $ECHO_C" >&6 # Check whether --with-cfg-file or --without-cfg-file was given. @@ -21544,7 +21559,7 @@ case ".$withval" in #(vi withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:21547: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:21562: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -21553,7 +21568,7 @@ esac fi LYNX_CFG_FILE="$withval" -echo "$as_me:21556: result: $LYNX_CFG_FILE" >&5 +echo "$as_me:21571: result: $LYNX_CFG_FILE" >&5 echo "${ECHO_T}$LYNX_CFG_FILE" >&6 test "$LYNX_CFG_FILE" = no && LYNX_CFG_FILE= @@ -21561,7 +21576,7 @@ cat >>confdefs.h <<EOF #define LYNX_CFG_FILE "$LYNX_CFG_FILE" EOF -echo "$as_me:21564: checking if htmlized lynx.cfg should be built" >&5 +echo "$as_me:21579: checking if htmlized lynx.cfg should be built" >&5 echo $ECHO_N "checking if htmlized lynx.cfg should be built... $ECHO_C" >&6 # Check whether --enable-htmlized-cfg or --disable-htmlized-cfg was given. @@ -21578,7 +21593,7 @@ else use_htmlized_cfg=no fi; -echo "$as_me:21581: result: $use_htmlized_cfg" >&5 +echo "$as_me:21596: result: $use_htmlized_cfg" >&5 echo "${ECHO_T}$use_htmlized_cfg" >&6 LYNXCFG_MAKE='' @@ -21586,7 +21601,7 @@ if test $use_htmlized_cfg = no ; then LYNXCFG_MAKE='#' fi -echo "$as_me:21589: checking if local doc directory should be linked to help page" >&5 +echo "$as_me:21604: checking if local doc directory should be linked to help page" >&5 echo $ECHO_N "checking if local doc directory should be linked to help page... $ECHO_C" >&6 # Check whether --enable-local-docs or --disable-local-docs was given. @@ -21603,7 +21618,7 @@ else use_local_docs=no fi; -echo "$as_me:21606: result: $use_local_docs" >&5 +echo "$as_me:21621: result: $use_local_docs" >&5 echo "${ECHO_T}$use_local_docs" >&6 LYNXDOC_MAKE='' @@ -21611,7 +21626,7 @@ if test $use_local_docs = no ; then LYNXDOC_MAKE='#' fi -echo "$as_me:21614: checking for MIME library directory" >&5 +echo "$as_me:21629: checking for MIME library directory" >&5 echo $ECHO_N "checking for MIME library directory... $ECHO_C" >&6 # Check whether --with-mime-libdir or --without-mime-libdir was given. @@ -21647,7 +21662,7 @@ case ".$withval" in #(vi withval=`echo $withval | sed -e s%NONE%$cf_path_syntax%` ;; *) - { { echo "$as_me:21650: error: expected a pathname, not \"$withval\"" >&5 + { { echo "$as_me:21665: error: expected a pathname, not \"$withval\"" >&5 echo "$as_me: error: expected a pathname, not \"$withval\"" >&2;} { (exit 1); exit 1; }; } ;; @@ -21656,14 +21671,14 @@ esac fi MIME_LIBDIR="$withval" -echo "$as_me:21659: result: $MIME_LIBDIR" >&5 +echo "$as_me:21674: result: $MIME_LIBDIR" >&5 echo "${ECHO_T}$MIME_LIBDIR" >&6 MIME_LIBDIR=`echo "$MIME_LIBDIR" | sed -e 's,/$,,' -e 's,$,/,'` cat >>confdefs.h <<EOF #define MIME_LIBDIR "$MIME_LIBDIR" EOF -echo "$as_me:21666: checking if locale-charset selection logic should be used" >&5 +echo "$as_me:21681: checking if locale-charset selection logic should be used" >&5 echo $ECHO_N "checking if locale-charset selection logic should be used... $ECHO_C" >&6 # Check whether --enable-locale-charset or --disable-locale-charset was given. @@ -21680,7 +21695,7 @@ else use_locale_charset=yes fi; -echo "$as_me:21683: result: $use_locale_charset" >&5 +echo "$as_me:21698: result: $use_locale_charset" >&5 echo "${ECHO_T}$use_locale_charset" >&6 test $use_locale_charset != no && cat >>confdefs.h <<\EOF #define USE_LOCALE_CHARSET 1 @@ -21688,7 +21703,7 @@ EOF CHARSET_DEFS= -echo "$as_me:21691: checking if you want only a few charsets" >&5 +echo "$as_me:21706: checking if you want only a few charsets" >&5 echo $ECHO_N "checking if you want only a few charsets... $ECHO_C" >&6 # Check whether --with-charsets or --without-charsets was given. @@ -21700,7 +21715,7 @@ else fi; if test -n "$cf_charsets" ; then - echo "$as_me:21703: result: yes" >&5 + echo "$as_me:21718: result: yes" >&5 echo "${ECHO_T}yes" >&6 cat >>confdefs.h <<\EOF #define ALL_CHARSETS 0 @@ -21713,7 +21728,7 @@ EOF if test "$cf_charsets" = "minimal" ; then test -n "$verbose" && echo " using minimal list of charsets: $cf_min_charsets" 1>&6 -echo "${as_me-configure}:21716: testing using minimal list of charsets: $cf_min_charsets ..." 1>&5 +echo "${as_me-configure}:21731: testing using minimal list of charsets: $cf_min_charsets ..." 1>&5 fi cf_charsets=`echo $cf_charsets | sed -e "s/minimal/$cf_min_charsets/g" -e 's/,/ /g'` @@ -21740,28 +21755,28 @@ echo "${as_me-configure}:21716: testing using minimal list of charsets: $cf_min_ then test -n "$verbose" && echo " found $cf_charset" 1>&6 -echo "${as_me-configure}:21743: testing found $cf_charset ..." 1>&5 +echo "${as_me-configure}:21758: testing found $cf_charset ..." 1>&5 CHARSET_DEFS="-DNO_CHARSET_${cf_def_charset}=0 $CHARSET_DEFS" else test -n "$verbose" && echo " not found $cf_charset" 1>&6 -echo "${as_me-configure}:21749: testing not found $cf_charset ..." 1>&5 +echo "${as_me-configure}:21764: testing not found $cf_charset ..." 1>&5 fi done else - echo "$as_me:21754: result: no" >&5 + echo "$as_me:21769: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:21758: checking for ANSI C header files" >&5 +echo "$as_me:21773: checking for ANSI C header files" >&5 echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6 if test "${ac_cv_header_stdc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 21764 "configure" +#line 21779 "configure" #include "confdefs.h" #include <stdlib.h> #include <stdarg.h> @@ -21769,13 +21784,13 @@ else #include <float.h> _ACEOF -if { (eval echo "$as_me:21772: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:21787: \"$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:21778: \$? = $ac_status" >&5 + echo "$as_me:21793: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -21797,7 +21812,7 @@ rm -f conftest.err conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat >conftest.$ac_ext <<_ACEOF -#line 21800 "configure" +#line 21815 "configure" #include "confdefs.h" #include <string.h> @@ -21815,7 +21830,7 @@ fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat >conftest.$ac_ext <<_ACEOF -#line 21818 "configure" +#line 21833 "configure" #include "confdefs.h" #include <stdlib.h> @@ -21836,7 +21851,7 @@ if test $ac_cv_header_stdc = yes; then : else cat >conftest.$ac_ext <<_ACEOF -#line 21839 "configure" +#line 21854 "configure" #include "confdefs.h" #include <ctype.h> #if ((' ' & 0x0FF) == 0x020) @@ -21862,15 +21877,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:21865: \"$ac_link\"") >&5 +if { (eval echo "$as_me:21880: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:21868: \$? = $ac_status" >&5 + echo "$as_me:21883: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:21870: \"$ac_try\"") >&5 + { (eval echo "$as_me:21885: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21873: \$? = $ac_status" >&5 + echo "$as_me:21888: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -21883,7 +21898,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi fi -echo "$as_me:21886: result: $ac_cv_header_stdc" >&5 +echo "$as_me:21901: result: $ac_cv_header_stdc" >&5 echo "${ECHO_T}$ac_cv_header_stdc" >&6 if test $ac_cv_header_stdc = yes; then @@ -21893,13 +21908,13 @@ EOF fi -echo "$as_me:21896: checking whether time.h and sys/time.h may both be included" >&5 +echo "$as_me:21911: checking whether time.h and sys/time.h may both be included" >&5 echo $ECHO_N "checking whether time.h and sys/time.h may both be included... $ECHO_C" >&6 if test "${ac_cv_header_time+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 21902 "configure" +#line 21917 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/time.h> @@ -21915,16 +21930,16 @@ return 0; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:21918: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21933: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21921: \$? = $ac_status" >&5 + echo "$as_me:21936: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:21924: \"$ac_try\"") >&5 + { (eval echo "$as_me:21939: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21927: \$? = $ac_status" >&5 + echo "$as_me:21942: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_header_time=yes else @@ -21934,7 +21949,7 @@ ac_cv_header_time=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:21937: result: $ac_cv_header_time" >&5 +echo "$as_me:21952: result: $ac_cv_header_time" >&5 echo "${ECHO_T}$ac_cv_header_time" >&6 if test $ac_cv_header_time = yes; then @@ -21947,13 +21962,13 @@ fi ac_header_dirent=no for ac_hdr in dirent.h sys/ndir.h sys/dir.h ndir.h; do as_ac_Header=`echo "ac_cv_header_dirent_$ac_hdr" | $as_tr_sh` -echo "$as_me:21950: checking for $ac_hdr that defines DIR" >&5 +echo "$as_me:21965: checking for $ac_hdr that defines DIR" >&5 echo $ECHO_N "checking for $ac_hdr that defines DIR... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 21956 "configure" +#line 21971 "configure" #include "confdefs.h" #include <sys/types.h> #include <$ac_hdr> @@ -21968,16 +21983,16 @@ return 0; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:21971: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:21986: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:21974: \$? = $ac_status" >&5 + echo "$as_me:21989: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:21977: \"$ac_try\"") >&5 + { (eval echo "$as_me:21992: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:21980: \$? = $ac_status" >&5 + echo "$as_me:21995: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Header=yes" else @@ -21987,7 +22002,7 @@ eval "$as_ac_Header=no" fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:21990: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:22005: 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 @@ -22000,7 +22015,7 @@ fi done # Two versions of opendir et al. are in -ldir and -lx on SCO Xenix. if test $ac_header_dirent = dirent.h; then - echo "$as_me:22003: checking for opendir in -ldir" >&5 + echo "$as_me:22018: checking for opendir in -ldir" >&5 echo $ECHO_N "checking for opendir in -ldir... $ECHO_C" >&6 if test "${ac_cv_lib_dir_opendir+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -22008,7 +22023,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldir $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 22011 "configure" +#line 22026 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -22027,16 +22042,16 @@ opendir (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22030: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22045: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22033: \$? = $ac_status" >&5 + echo "$as_me:22048: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22036: \"$ac_try\"") >&5 + { (eval echo "$as_me:22051: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22039: \$? = $ac_status" >&5 + echo "$as_me:22054: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dir_opendir=yes else @@ -22047,14 +22062,14 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:22050: result: $ac_cv_lib_dir_opendir" >&5 +echo "$as_me:22065: result: $ac_cv_lib_dir_opendir" >&5 echo "${ECHO_T}$ac_cv_lib_dir_opendir" >&6 if test $ac_cv_lib_dir_opendir = yes; then LIBS="$LIBS -ldir" fi else - echo "$as_me:22057: checking for opendir in -lx" >&5 + echo "$as_me:22072: checking for opendir in -lx" >&5 echo $ECHO_N "checking for opendir in -lx... $ECHO_C" >&6 if test "${ac_cv_lib_x_opendir+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -22062,7 +22077,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lx $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 22065 "configure" +#line 22080 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -22081,16 +22096,16 @@ opendir (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22084: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22099: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22087: \$? = $ac_status" >&5 + echo "$as_me:22102: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22090: \"$ac_try\"") >&5 + { (eval echo "$as_me:22105: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22093: \$? = $ac_status" >&5 + echo "$as_me:22108: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_x_opendir=yes else @@ -22101,7 +22116,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:22104: result: $ac_cv_lib_x_opendir" >&5 +echo "$as_me:22119: result: $ac_cv_lib_x_opendir" >&5 echo "${ECHO_T}$ac_cv_lib_x_opendir" >&6 if test $ac_cv_lib_x_opendir = yes; then LIBS="$LIBS -lx" @@ -22129,23 +22144,23 @@ for ac_header in \ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:22132: checking for $ac_header" >&5 +echo "$as_me:22147: 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 22138 "configure" +#line 22153 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:22142: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:22157: \"$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:22148: \$? = $ac_status" >&5 + echo "$as_me:22163: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -22164,7 +22179,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:22167: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:22182: 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 @@ -22174,14 +22189,14 @@ EOF fi done -echo "$as_me:22177: checking termio.h and termios.h" >&5 +echo "$as_me:22192: checking termio.h and termios.h" >&5 echo $ECHO_N "checking termio.h and termios.h... $ECHO_C" >&6 if test "${cf_cv_termio_and_termios+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 22184 "configure" +#line 22199 "configure" #include "confdefs.h" #if HAVE_TERMIO_H @@ -22199,16 +22214,16 @@ putchar (0x0a) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22202: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22217: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22205: \$? = $ac_status" >&5 + echo "$as_me:22220: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22208: \"$ac_try\"") >&5 + { (eval echo "$as_me:22223: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22211: \$? = $ac_status" >&5 + echo "$as_me:22226: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termio_and_termios=yes else @@ -22219,20 +22234,20 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:22222: result: $cf_cv_termio_and_termios" >&5 +echo "$as_me:22237: result: $cf_cv_termio_and_termios" >&5 echo "${ECHO_T}$cf_cv_termio_and_termios" >&6 test $cf_cv_termio_and_termios = no && cat >>confdefs.h <<\EOF #define TERMIO_AND_TERMIOS 1 EOF -echo "$as_me:22228: checking for sigaction and structs" >&5 +echo "$as_me:22243: checking for sigaction and structs" >&5 echo $ECHO_N "checking for sigaction and structs... $ECHO_C" >&6 if test "${cf_cv_func_sigaction+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 22235 "configure" +#line 22250 "configure" #include "confdefs.h" #include <sys/types.h> @@ -22252,16 +22267,16 @@ struct sigaction act; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22255: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22270: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22258: \$? = $ac_status" >&5 + echo "$as_me:22273: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22261: \"$ac_try\"") >&5 + { (eval echo "$as_me:22276: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22264: \$? = $ac_status" >&5 + echo "$as_me:22279: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_func_sigaction=yes else @@ -22272,7 +22287,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:22275: result: $cf_cv_func_sigaction" >&5 +echo "$as_me:22290: result: $cf_cv_func_sigaction" >&5 echo "${ECHO_T}$cf_cv_func_sigaction" >&6 test "$cf_cv_func_sigaction" = yes && cat >>confdefs.h <<\EOF #define HAVE_SIGACTION 1 @@ -22281,23 +22296,23 @@ EOF for ac_header in sys/wait.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:22284: checking for $ac_header" >&5 +echo "$as_me:22299: 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 22290 "configure" +#line 22305 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:22294: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:22309: \"$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:22300: \$? = $ac_status" >&5 + echo "$as_me:22315: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -22316,7 +22331,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:22319: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:22334: 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 @@ -22337,23 +22352,23 @@ else for ac_header in wait.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:22340: checking for $ac_header" >&5 +echo "$as_me:22355: 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 22346 "configure" +#line 22361 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:22350: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:22365: \"$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:22356: \$? = $ac_status" >&5 + echo "$as_me:22371: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -22372,7 +22387,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:22375: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:22390: 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 @@ -22385,23 +22400,23 @@ done for ac_header in waitstatus.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:22388: checking for $ac_header" >&5 +echo "$as_me:22403: 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 22394 "configure" +#line 22409 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:22398: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:22413: \"$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:22404: \$? = $ac_status" >&5 + echo "$as_me:22419: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -22420,7 +22435,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:22423: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:22438: 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 @@ -22442,14 +22457,14 @@ cf_wait_headers="$cf_wait_headers fi fi -echo "$as_me:22445: checking for union wait" >&5 +echo "$as_me:22460: checking for union wait" >&5 echo $ECHO_N "checking for union wait... $ECHO_C" >&6 if test "${cf_cv_type_unionwait+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 22452 "configure" +#line 22467 "configure" #include "confdefs.h" $cf_wait_headers int @@ -22465,16 +22480,16 @@ int x; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22468: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22483: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22471: \$? = $ac_status" >&5 + echo "$as_me:22486: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22474: \"$ac_try\"") >&5 + { (eval echo "$as_me:22489: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22477: \$? = $ac_status" >&5 + echo "$as_me:22492: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_type_unionwait=no echo compiles ok w/o union wait 1>&5 @@ -22484,7 +22499,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 22487 "configure" +#line 22502 "configure" #include "confdefs.h" $cf_wait_headers int @@ -22504,16 +22519,16 @@ union wait x; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:22507: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22522: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22510: \$? = $ac_status" >&5 + echo "$as_me:22525: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:22513: \"$ac_try\"") >&5 + { (eval echo "$as_me:22528: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22516: \$? = $ac_status" >&5 + echo "$as_me:22531: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_type_unionwait=yes echo compiles ok with union wait and possibly macros too 1>&5 @@ -22528,7 +22543,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:22531: result: $cf_cv_type_unionwait" >&5 +echo "$as_me:22546: result: $cf_cv_type_unionwait" >&5 echo "${ECHO_T}$cf_cv_type_unionwait" >&6 test $cf_cv_type_unionwait = yes && cat >>confdefs.h <<\EOF #define HAVE_TYPE_UNIONWAIT 1 @@ -22536,14 +22551,14 @@ EOF if test $cf_cv_type_unionwait = yes; then - echo "$as_me:22539: checking if union wait can be used as wait-arg" >&5 + echo "$as_me:22554: checking if union wait can be used as wait-arg" >&5 echo $ECHO_N "checking if union wait can be used as wait-arg... $ECHO_C" >&6 if test "${cf_cv_arg_union_wait+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 22546 "configure" +#line 22561 "configure" #include "confdefs.h" $cf_wait_headers int @@ -22555,16 +22570,16 @@ union wait x; wait(&x) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22558: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22573: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22561: \$? = $ac_status" >&5 + echo "$as_me:22576: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22564: \"$ac_try\"") >&5 + { (eval echo "$as_me:22579: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22567: \$? = $ac_status" >&5 + echo "$as_me:22582: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_arg_union_wait=yes else @@ -22576,20 +22591,20 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi - echo "$as_me:22579: result: $cf_cv_arg_union_wait" >&5 + echo "$as_me:22594: result: $cf_cv_arg_union_wait" >&5 echo "${ECHO_T}$cf_cv_arg_union_wait" >&6 test $cf_cv_arg_union_wait = yes && cat >>confdefs.h <<\EOF #define WAIT_USES_UNION 1 EOF - echo "$as_me:22585: checking if union wait can be used as waitpid-arg" >&5 + echo "$as_me:22600: checking if union wait can be used as waitpid-arg" >&5 echo $ECHO_N "checking if union wait can be used as waitpid-arg... $ECHO_C" >&6 if test "${cf_cv_arg_union_waitpid+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 22592 "configure" +#line 22607 "configure" #include "confdefs.h" $cf_wait_headers int @@ -22601,16 +22616,16 @@ union wait x; waitpid(0, &x, 0) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22604: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22619: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22607: \$? = $ac_status" >&5 + echo "$as_me:22622: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22610: \"$ac_try\"") >&5 + { (eval echo "$as_me:22625: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22613: \$? = $ac_status" >&5 + echo "$as_me:22628: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_arg_union_waitpid=yes else @@ -22622,7 +22637,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi - echo "$as_me:22625: result: $cf_cv_arg_union_waitpid" >&5 + echo "$as_me:22640: result: $cf_cv_arg_union_waitpid" >&5 echo "${ECHO_T}$cf_cv_arg_union_waitpid" >&6 test $cf_cv_arg_union_waitpid = yes && cat >>confdefs.h <<\EOF #define WAITPID_USES_UNION 1 @@ -22630,13 +22645,13 @@ EOF fi -echo "$as_me:22633: checking for uid_t in sys/types.h" >&5 +echo "$as_me:22648: checking for uid_t in sys/types.h" >&5 echo $ECHO_N "checking for uid_t in sys/types.h... $ECHO_C" >&6 if test "${ac_cv_type_uid_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 22639 "configure" +#line 22654 "configure" #include "confdefs.h" #include <sys/types.h> @@ -22650,7 +22665,7 @@ fi rm -f conftest* fi -echo "$as_me:22653: result: $ac_cv_type_uid_t" >&5 +echo "$as_me:22668: result: $ac_cv_type_uid_t" >&5 echo "${ECHO_T}$ac_cv_type_uid_t" >&6 if test $ac_cv_type_uid_t = no; then @@ -22664,7 +22679,7 @@ EOF fi -echo "$as_me:22667: checking type of array argument to getgroups" >&5 +echo "$as_me:22682: checking type of array argument to getgroups" >&5 echo $ECHO_N "checking type of array argument to getgroups... $ECHO_C" >&6 if test "${ac_cv_type_getgroups+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -22673,7 +22688,7 @@ else ac_cv_type_getgroups=cross else cat >conftest.$ac_ext <<_ACEOF -#line 22676 "configure" +#line 22691 "configure" #include "confdefs.h" /* Thanks to Mike Rendell for this test. */ #include <sys/types.h> @@ -22699,15 +22714,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:22702: \"$ac_link\"") >&5 +if { (eval echo "$as_me:22717: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:22705: \$? = $ac_status" >&5 + echo "$as_me:22720: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:22707: \"$ac_try\"") >&5 + { (eval echo "$as_me:22722: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22710: \$? = $ac_status" >&5 + echo "$as_me:22725: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_getgroups=gid_t else @@ -22720,7 +22735,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi if test $ac_cv_type_getgroups = cross; then cat >conftest.$ac_ext <<_ACEOF -#line 22723 "configure" +#line 22738 "configure" #include "confdefs.h" #include <unistd.h> @@ -22735,20 +22750,20 @@ rm -f conftest* fi fi -echo "$as_me:22738: result: $ac_cv_type_getgroups" >&5 +echo "$as_me:22753: result: $ac_cv_type_getgroups" >&5 echo "${ECHO_T}$ac_cv_type_getgroups" >&6 cat >>confdefs.h <<EOF #define GETGROUPS_T $ac_cv_type_getgroups EOF -echo "$as_me:22745: checking for off_t" >&5 +echo "$as_me:22760: checking for off_t" >&5 echo $ECHO_N "checking for off_t... $ECHO_C" >&6 if test "${ac_cv_type_off_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 22751 "configure" +#line 22766 "configure" #include "confdefs.h" $ac_includes_default int @@ -22763,16 +22778,16 @@ if (sizeof (off_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22766: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22781: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22769: \$? = $ac_status" >&5 + echo "$as_me:22784: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22772: \"$ac_try\"") >&5 + { (eval echo "$as_me:22787: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22775: \$? = $ac_status" >&5 + echo "$as_me:22790: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_off_t=yes else @@ -22782,7 +22797,7 @@ ac_cv_type_off_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:22785: result: $ac_cv_type_off_t" >&5 +echo "$as_me:22800: result: $ac_cv_type_off_t" >&5 echo "${ECHO_T}$ac_cv_type_off_t" >&6 if test $ac_cv_type_off_t = yes; then : @@ -22794,13 +22809,13 @@ EOF fi -echo "$as_me:22797: checking for pid_t" >&5 +echo "$as_me:22812: checking for pid_t" >&5 echo $ECHO_N "checking for pid_t... $ECHO_C" >&6 if test "${ac_cv_type_pid_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 22803 "configure" +#line 22818 "configure" #include "confdefs.h" $ac_includes_default int @@ -22815,16 +22830,16 @@ if (sizeof (pid_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22818: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22833: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22821: \$? = $ac_status" >&5 + echo "$as_me:22836: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22824: \"$ac_try\"") >&5 + { (eval echo "$as_me:22839: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22827: \$? = $ac_status" >&5 + echo "$as_me:22842: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_pid_t=yes else @@ -22834,7 +22849,7 @@ ac_cv_type_pid_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:22837: result: $ac_cv_type_pid_t" >&5 +echo "$as_me:22852: result: $ac_cv_type_pid_t" >&5 echo "${ECHO_T}$ac_cv_type_pid_t" >&6 if test $ac_cv_type_pid_t = yes; then : @@ -22846,13 +22861,13 @@ EOF fi -echo "$as_me:22849: checking for uid_t in sys/types.h" >&5 +echo "$as_me:22864: checking for uid_t in sys/types.h" >&5 echo $ECHO_N "checking for uid_t in sys/types.h... $ECHO_C" >&6 if test "${ac_cv_type_uid_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 22855 "configure" +#line 22870 "configure" #include "confdefs.h" #include <sys/types.h> @@ -22866,7 +22881,7 @@ fi rm -f conftest* fi -echo "$as_me:22869: result: $ac_cv_type_uid_t" >&5 +echo "$as_me:22884: result: $ac_cv_type_uid_t" >&5 echo "${ECHO_T}$ac_cv_type_uid_t" >&6 if test $ac_cv_type_uid_t = no; then @@ -22880,13 +22895,13 @@ EOF fi -echo "$as_me:22883: checking for mode_t" >&5 +echo "$as_me:22898: checking for mode_t" >&5 echo $ECHO_N "checking for mode_t... $ECHO_C" >&6 if test "${ac_cv_type_mode_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 22889 "configure" +#line 22904 "configure" #include "confdefs.h" $ac_includes_default int @@ -22901,16 +22916,16 @@ if (sizeof (mode_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22904: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22919: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22907: \$? = $ac_status" >&5 + echo "$as_me:22922: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22910: \"$ac_try\"") >&5 + { (eval echo "$as_me:22925: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22913: \$? = $ac_status" >&5 + echo "$as_me:22928: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_mode_t=yes else @@ -22920,7 +22935,7 @@ ac_cv_type_mode_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:22923: result: $ac_cv_type_mode_t" >&5 +echo "$as_me:22938: result: $ac_cv_type_mode_t" >&5 echo "${ECHO_T}$ac_cv_type_mode_t" >&6 if test $ac_cv_type_mode_t = yes; then : @@ -22932,13 +22947,13 @@ EOF fi - echo "$as_me:22935: checking for socklen_t" >&5 + echo "$as_me:22950: checking for socklen_t" >&5 echo $ECHO_N "checking for socklen_t... $ECHO_C" >&6 if test "${ac_cv_type_socklen_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 22941 "configure" +#line 22956 "configure" #include "confdefs.h" #include <sys/socket.h> @@ -22954,16 +22969,16 @@ if (sizeof (socklen_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:22957: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:22972: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:22960: \$? = $ac_status" >&5 + echo "$as_me:22975: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:22963: \"$ac_try\"") >&5 + { (eval echo "$as_me:22978: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:22966: \$? = $ac_status" >&5 + echo "$as_me:22981: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_socklen_t=yes else @@ -22973,7 +22988,7 @@ ac_cv_type_socklen_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:22976: result: $ac_cv_type_socklen_t" >&5 +echo "$as_me:22991: result: $ac_cv_type_socklen_t" >&5 echo "${ECHO_T}$ac_cv_type_socklen_t" >&6 if test $ac_cv_type_socklen_t = yes; then ac_cv_type_socklen_t=yes @@ -22988,14 +23003,14 @@ EOF fi -echo "$as_me:22991: checking for tm.tm_gmtoff" >&5 +echo "$as_me:23006: checking for tm.tm_gmtoff" >&5 echo $ECHO_N "checking for tm.tm_gmtoff... $ECHO_C" >&6 if test "${cf_cv_tm_gmtoff+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 22998 "configure" +#line 23013 "configure" #include "confdefs.h" #ifdef TIME_WITH_SYS_TIME @@ -23020,16 +23035,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23023: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23038: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23026: \$? = $ac_status" >&5 + echo "$as_me:23041: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23029: \"$ac_try\"") >&5 + { (eval echo "$as_me:23044: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23032: \$? = $ac_status" >&5 + echo "$as_me:23047: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_tm_gmtoff=yes else @@ -23040,19 +23055,19 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:23043: result: $cf_cv_tm_gmtoff" >&5 +echo "$as_me:23058: result: $cf_cv_tm_gmtoff" >&5 echo "${ECHO_T}$cf_cv_tm_gmtoff" >&6 test $cf_cv_tm_gmtoff = no && cat >>confdefs.h <<\EOF #define DONT_HAVE_TM_GMTOFF 1 EOF -echo "$as_me:23049: checking for int" >&5 +echo "$as_me:23064: checking for int" >&5 echo $ECHO_N "checking for int... $ECHO_C" >&6 if test "${ac_cv_type_int+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 23055 "configure" +#line 23070 "configure" #include "confdefs.h" $ac_includes_default int @@ -23067,16 +23082,16 @@ if (sizeof (int)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23070: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23085: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23073: \$? = $ac_status" >&5 + echo "$as_me:23088: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23076: \"$ac_try\"") >&5 + { (eval echo "$as_me:23091: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23079: \$? = $ac_status" >&5 + echo "$as_me:23094: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_int=yes else @@ -23086,10 +23101,10 @@ ac_cv_type_int=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:23089: result: $ac_cv_type_int" >&5 +echo "$as_me:23104: result: $ac_cv_type_int" >&5 echo "${ECHO_T}$ac_cv_type_int" >&6 -echo "$as_me:23092: checking size of int" >&5 +echo "$as_me:23107: checking size of int" >&5 echo $ECHO_N "checking size of int... $ECHO_C" >&6 if test "${ac_cv_sizeof_int+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -23098,7 +23113,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 23101 "configure" +#line 23116 "configure" #include "confdefs.h" $ac_includes_default int @@ -23110,21 +23125,21 @@ int _array_ [1 - 2 * !((sizeof (int)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23113: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23128: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23116: \$? = $ac_status" >&5 + echo "$as_me:23131: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23119: \"$ac_try\"") >&5 + { (eval echo "$as_me:23134: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23122: \$? = $ac_status" >&5 + echo "$as_me:23137: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 23127 "configure" +#line 23142 "configure" #include "confdefs.h" $ac_includes_default int @@ -23136,16 +23151,16 @@ int _array_ [1 - 2 * !((sizeof (int)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23139: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23154: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23142: \$? = $ac_status" >&5 + echo "$as_me:23157: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23145: \"$ac_try\"") >&5 + { (eval echo "$as_me:23160: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23148: \$? = $ac_status" >&5 + echo "$as_me:23163: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -23161,7 +23176,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 23164 "configure" +#line 23179 "configure" #include "confdefs.h" $ac_includes_default int @@ -23173,16 +23188,16 @@ int _array_ [1 - 2 * !((sizeof (int)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23176: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23191: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23179: \$? = $ac_status" >&5 + echo "$as_me:23194: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23182: \"$ac_try\"") >&5 + { (eval echo "$as_me:23197: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23185: \$? = $ac_status" >&5 + echo "$as_me:23200: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -23198,7 +23213,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext while test "x$ac_lo" != "x$ac_hi"; do ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` cat >conftest.$ac_ext <<_ACEOF -#line 23201 "configure" +#line 23216 "configure" #include "confdefs.h" $ac_includes_default int @@ -23210,16 +23225,16 @@ int _array_ [1 - 2 * !((sizeof (int)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23213: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23228: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23216: \$? = $ac_status" >&5 + echo "$as_me:23231: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23219: \"$ac_try\"") >&5 + { (eval echo "$as_me:23234: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23222: \$? = $ac_status" >&5 + echo "$as_me:23237: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -23232,12 +23247,12 @@ done ac_cv_sizeof_int=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:23235: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:23250: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 23240 "configure" +#line 23255 "configure" #include "confdefs.h" $ac_includes_default int @@ -23253,15 +23268,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:23256: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23271: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23259: \$? = $ac_status" >&5 + echo "$as_me:23274: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:23261: \"$ac_try\"") >&5 + { (eval echo "$as_me:23276: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23264: \$? = $ac_status" >&5 + echo "$as_me:23279: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_int=`cat conftest.val` else @@ -23277,19 +23292,19 @@ else ac_cv_sizeof_int=0 fi fi -echo "$as_me:23280: result: $ac_cv_sizeof_int" >&5 +echo "$as_me:23295: result: $ac_cv_sizeof_int" >&5 echo "${ECHO_T}$ac_cv_sizeof_int" >&6 cat >>confdefs.h <<EOF #define SIZEOF_INT $ac_cv_sizeof_int EOF -echo "$as_me:23286: checking for long" >&5 +echo "$as_me:23301: checking for long" >&5 echo $ECHO_N "checking for long... $ECHO_C" >&6 if test "${ac_cv_type_long+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 23292 "configure" +#line 23307 "configure" #include "confdefs.h" $ac_includes_default int @@ -23304,16 +23319,16 @@ if (sizeof (long)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23307: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23322: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23310: \$? = $ac_status" >&5 + echo "$as_me:23325: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23313: \"$ac_try\"") >&5 + { (eval echo "$as_me:23328: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23316: \$? = $ac_status" >&5 + echo "$as_me:23331: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_long=yes else @@ -23323,10 +23338,10 @@ ac_cv_type_long=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:23326: result: $ac_cv_type_long" >&5 +echo "$as_me:23341: result: $ac_cv_type_long" >&5 echo "${ECHO_T}$ac_cv_type_long" >&6 -echo "$as_me:23329: checking size of long" >&5 +echo "$as_me:23344: checking size of long" >&5 echo $ECHO_N "checking size of long... $ECHO_C" >&6 if test "${ac_cv_sizeof_long+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -23335,7 +23350,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 23338 "configure" +#line 23353 "configure" #include "confdefs.h" $ac_includes_default int @@ -23347,21 +23362,21 @@ int _array_ [1 - 2 * !((sizeof (long)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23350: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23365: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23353: \$? = $ac_status" >&5 + echo "$as_me:23368: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23356: \"$ac_try\"") >&5 + { (eval echo "$as_me:23371: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23359: \$? = $ac_status" >&5 + echo "$as_me:23374: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 23364 "configure" +#line 23379 "configure" #include "confdefs.h" $ac_includes_default int @@ -23373,16 +23388,16 @@ int _array_ [1 - 2 * !((sizeof (long)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23376: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23391: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23379: \$? = $ac_status" >&5 + echo "$as_me:23394: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23382: \"$ac_try\"") >&5 + { (eval echo "$as_me:23397: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23385: \$? = $ac_status" >&5 + echo "$as_me:23400: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -23398,7 +23413,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 23401 "configure" +#line 23416 "configure" #include "confdefs.h" $ac_includes_default int @@ -23410,16 +23425,16 @@ int _array_ [1 - 2 * !((sizeof (long)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23413: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23428: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23416: \$? = $ac_status" >&5 + echo "$as_me:23431: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23419: \"$ac_try\"") >&5 + { (eval echo "$as_me:23434: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23422: \$? = $ac_status" >&5 + echo "$as_me:23437: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -23435,7 +23450,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext while test "x$ac_lo" != "x$ac_hi"; do ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` cat >conftest.$ac_ext <<_ACEOF -#line 23438 "configure" +#line 23453 "configure" #include "confdefs.h" $ac_includes_default int @@ -23447,16 +23462,16 @@ int _array_ [1 - 2 * !((sizeof (long)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23450: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23465: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23453: \$? = $ac_status" >&5 + echo "$as_me:23468: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23456: \"$ac_try\"") >&5 + { (eval echo "$as_me:23471: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23459: \$? = $ac_status" >&5 + echo "$as_me:23474: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -23469,12 +23484,12 @@ done ac_cv_sizeof_long=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:23472: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:23487: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 23477 "configure" +#line 23492 "configure" #include "confdefs.h" $ac_includes_default int @@ -23490,15 +23505,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:23493: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23508: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23496: \$? = $ac_status" >&5 + echo "$as_me:23511: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:23498: \"$ac_try\"") >&5 + { (eval echo "$as_me:23513: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23501: \$? = $ac_status" >&5 + echo "$as_me:23516: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_long=`cat conftest.val` else @@ -23514,19 +23529,19 @@ else ac_cv_sizeof_long=0 fi fi -echo "$as_me:23517: result: $ac_cv_sizeof_long" >&5 +echo "$as_me:23532: result: $ac_cv_sizeof_long" >&5 echo "${ECHO_T}$ac_cv_sizeof_long" >&6 cat >>confdefs.h <<EOF #define SIZEOF_LONG $ac_cv_sizeof_long EOF -echo "$as_me:23523: checking for off_t" >&5 +echo "$as_me:23538: checking for off_t" >&5 echo $ECHO_N "checking for off_t... $ECHO_C" >&6 if test "${ac_cv_type_off_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 23529 "configure" +#line 23544 "configure" #include "confdefs.h" $ac_includes_default int @@ -23541,16 +23556,16 @@ if (sizeof (off_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23544: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23559: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23547: \$? = $ac_status" >&5 + echo "$as_me:23562: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23550: \"$ac_try\"") >&5 + { (eval echo "$as_me:23565: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23553: \$? = $ac_status" >&5 + echo "$as_me:23568: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_off_t=yes else @@ -23560,10 +23575,10 @@ ac_cv_type_off_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:23563: result: $ac_cv_type_off_t" >&5 +echo "$as_me:23578: result: $ac_cv_type_off_t" >&5 echo "${ECHO_T}$ac_cv_type_off_t" >&6 -echo "$as_me:23566: checking size of off_t" >&5 +echo "$as_me:23581: checking size of off_t" >&5 echo $ECHO_N "checking size of off_t... $ECHO_C" >&6 if test "${ac_cv_sizeof_off_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -23572,7 +23587,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 23575 "configure" +#line 23590 "configure" #include "confdefs.h" $ac_includes_default int @@ -23584,21 +23599,21 @@ int _array_ [1 - 2 * !((sizeof (off_t)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23587: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23602: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23590: \$? = $ac_status" >&5 + echo "$as_me:23605: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23593: \"$ac_try\"") >&5 + { (eval echo "$as_me:23608: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23596: \$? = $ac_status" >&5 + echo "$as_me:23611: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 23601 "configure" +#line 23616 "configure" #include "confdefs.h" $ac_includes_default int @@ -23610,16 +23625,16 @@ int _array_ [1 - 2 * !((sizeof (off_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23613: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23628: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23616: \$? = $ac_status" >&5 + echo "$as_me:23631: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23619: \"$ac_try\"") >&5 + { (eval echo "$as_me:23634: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23622: \$? = $ac_status" >&5 + echo "$as_me:23637: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -23635,7 +23650,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 23638 "configure" +#line 23653 "configure" #include "confdefs.h" $ac_includes_default int @@ -23647,16 +23662,16 @@ int _array_ [1 - 2 * !((sizeof (off_t)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23650: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23665: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23653: \$? = $ac_status" >&5 + echo "$as_me:23668: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23656: \"$ac_try\"") >&5 + { (eval echo "$as_me:23671: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23659: \$? = $ac_status" >&5 + echo "$as_me:23674: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -23672,7 +23687,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext while test "x$ac_lo" != "x$ac_hi"; do ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` cat >conftest.$ac_ext <<_ACEOF -#line 23675 "configure" +#line 23690 "configure" #include "confdefs.h" $ac_includes_default int @@ -23684,16 +23699,16 @@ int _array_ [1 - 2 * !((sizeof (off_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23687: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23702: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23690: \$? = $ac_status" >&5 + echo "$as_me:23705: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23693: \"$ac_try\"") >&5 + { (eval echo "$as_me:23708: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23696: \$? = $ac_status" >&5 + echo "$as_me:23711: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -23706,12 +23721,12 @@ done ac_cv_sizeof_off_t=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:23709: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:23724: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 23714 "configure" +#line 23729 "configure" #include "confdefs.h" $ac_includes_default int @@ -23727,15 +23742,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:23730: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23745: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23733: \$? = $ac_status" >&5 + echo "$as_me:23748: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:23735: \"$ac_try\"") >&5 + { (eval echo "$as_me:23750: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23738: \$? = $ac_status" >&5 + echo "$as_me:23753: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_off_t=`cat conftest.val` else @@ -23751,19 +23766,19 @@ else ac_cv_sizeof_off_t=0 fi fi -echo "$as_me:23754: result: $ac_cv_sizeof_off_t" >&5 +echo "$as_me:23769: result: $ac_cv_sizeof_off_t" >&5 echo "${ECHO_T}$ac_cv_sizeof_off_t" >&6 cat >>confdefs.h <<EOF #define SIZEOF_OFF_T $ac_cv_sizeof_off_t EOF -echo "$as_me:23760: checking for time_t" >&5 +echo "$as_me:23775: checking for time_t" >&5 echo $ECHO_N "checking for time_t... $ECHO_C" >&6 if test "${ac_cv_type_time_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 23766 "configure" +#line 23781 "configure" #include "confdefs.h" $ac_includes_default int @@ -23778,16 +23793,16 @@ if (sizeof (time_t)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23781: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23796: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23784: \$? = $ac_status" >&5 + echo "$as_me:23799: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23787: \"$ac_try\"") >&5 + { (eval echo "$as_me:23802: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23790: \$? = $ac_status" >&5 + echo "$as_me:23805: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_time_t=yes else @@ -23797,10 +23812,10 @@ ac_cv_type_time_t=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:23800: result: $ac_cv_type_time_t" >&5 +echo "$as_me:23815: result: $ac_cv_type_time_t" >&5 echo "${ECHO_T}$ac_cv_type_time_t" >&6 -echo "$as_me:23803: checking size of time_t" >&5 +echo "$as_me:23818: checking size of time_t" >&5 echo $ECHO_N "checking size of time_t... $ECHO_C" >&6 if test "${ac_cv_sizeof_time_t+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -23809,7 +23824,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 23812 "configure" +#line 23827 "configure" #include "confdefs.h" $ac_includes_default int @@ -23821,21 +23836,21 @@ int _array_ [1 - 2 * !((sizeof (time_t)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23824: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23839: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23827: \$? = $ac_status" >&5 + echo "$as_me:23842: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23830: \"$ac_try\"") >&5 + { (eval echo "$as_me:23845: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23833: \$? = $ac_status" >&5 + echo "$as_me:23848: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 23838 "configure" +#line 23853 "configure" #include "confdefs.h" $ac_includes_default int @@ -23847,16 +23862,16 @@ int _array_ [1 - 2 * !((sizeof (time_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23850: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23865: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23853: \$? = $ac_status" >&5 + echo "$as_me:23868: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23856: \"$ac_try\"") >&5 + { (eval echo "$as_me:23871: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23859: \$? = $ac_status" >&5 + echo "$as_me:23874: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -23872,7 +23887,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 23875 "configure" +#line 23890 "configure" #include "confdefs.h" $ac_includes_default int @@ -23884,16 +23899,16 @@ int _array_ [1 - 2 * !((sizeof (time_t)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23887: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23902: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23890: \$? = $ac_status" >&5 + echo "$as_me:23905: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23893: \"$ac_try\"") >&5 + { (eval echo "$as_me:23908: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23896: \$? = $ac_status" >&5 + echo "$as_me:23911: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -23909,7 +23924,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext while test "x$ac_lo" != "x$ac_hi"; do ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` cat >conftest.$ac_ext <<_ACEOF -#line 23912 "configure" +#line 23927 "configure" #include "confdefs.h" $ac_includes_default int @@ -23921,16 +23936,16 @@ int _array_ [1 - 2 * !((sizeof (time_t)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:23924: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:23939: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:23927: \$? = $ac_status" >&5 + echo "$as_me:23942: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:23930: \"$ac_try\"") >&5 + { (eval echo "$as_me:23945: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23933: \$? = $ac_status" >&5 + echo "$as_me:23948: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -23943,12 +23958,12 @@ done ac_cv_sizeof_time_t=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:23946: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:23961: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 23951 "configure" +#line 23966 "configure" #include "confdefs.h" $ac_includes_default int @@ -23964,15 +23979,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:23967: \"$ac_link\"") >&5 +if { (eval echo "$as_me:23982: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:23970: \$? = $ac_status" >&5 + echo "$as_me:23985: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:23972: \"$ac_try\"") >&5 + { (eval echo "$as_me:23987: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:23975: \$? = $ac_status" >&5 + echo "$as_me:23990: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_time_t=`cat conftest.val` else @@ -23988,7 +24003,7 @@ else ac_cv_sizeof_time_t=0 fi fi -echo "$as_me:23991: result: $ac_cv_sizeof_time_t" >&5 +echo "$as_me:24006: result: $ac_cv_sizeof_time_t" >&5 echo "${ECHO_T}$ac_cv_sizeof_time_t" >&6 cat >>confdefs.h <<EOF #define SIZEOF_TIME_T $ac_cv_sizeof_time_t @@ -23996,13 +24011,13 @@ EOF # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works # for constant arguments. Useless! -echo "$as_me:23999: checking for working alloca.h" >&5 +echo "$as_me:24014: checking for working alloca.h" >&5 echo $ECHO_N "checking for working alloca.h... $ECHO_C" >&6 if test "${ac_cv_working_alloca_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 24005 "configure" +#line 24020 "configure" #include "confdefs.h" #include <alloca.h> int @@ -24014,16 +24029,16 @@ char *p = (char *) alloca (2 * sizeof (int)); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24017: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24032: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24020: \$? = $ac_status" >&5 + echo "$as_me:24035: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24023: \"$ac_try\"") >&5 + { (eval echo "$as_me:24038: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24026: \$? = $ac_status" >&5 + echo "$as_me:24041: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_working_alloca_h=yes else @@ -24033,7 +24048,7 @@ ac_cv_working_alloca_h=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:24036: result: $ac_cv_working_alloca_h" >&5 +echo "$as_me:24051: result: $ac_cv_working_alloca_h" >&5 echo "${ECHO_T}$ac_cv_working_alloca_h" >&6 if test $ac_cv_working_alloca_h = yes; then @@ -24043,13 +24058,13 @@ EOF fi -echo "$as_me:24046: checking for alloca" >&5 +echo "$as_me:24061: checking for alloca" >&5 echo $ECHO_N "checking for alloca... $ECHO_C" >&6 if test "${ac_cv_func_alloca_works+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 24052 "configure" +#line 24067 "configure" #include "confdefs.h" #ifdef __GNUC__ # define alloca __builtin_alloca @@ -24081,16 +24096,16 @@ char *p = (char *) alloca (1); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24084: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24099: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24087: \$? = $ac_status" >&5 + echo "$as_me:24102: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24090: \"$ac_try\"") >&5 + { (eval echo "$as_me:24105: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24093: \$? = $ac_status" >&5 + echo "$as_me:24108: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_alloca_works=yes else @@ -24100,7 +24115,7 @@ ac_cv_func_alloca_works=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:24103: result: $ac_cv_func_alloca_works" >&5 +echo "$as_me:24118: result: $ac_cv_func_alloca_works" >&5 echo "${ECHO_T}$ac_cv_func_alloca_works" >&6 if test $ac_cv_func_alloca_works = yes; then @@ -24121,13 +24136,13 @@ cat >>confdefs.h <<\EOF #define C_ALLOCA 1 EOF -echo "$as_me:24124: checking whether \`alloca.c' needs Cray hooks" >&5 +echo "$as_me:24139: checking whether \`alloca.c' needs Cray hooks" >&5 echo $ECHO_N "checking whether \`alloca.c' needs Cray hooks... $ECHO_C" >&6 if test "${ac_cv_os_cray+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 24130 "configure" +#line 24145 "configure" #include "confdefs.h" #if defined(CRAY) && ! defined(CRAY2) webecray @@ -24145,18 +24160,18 @@ fi rm -f conftest* fi -echo "$as_me:24148: result: $ac_cv_os_cray" >&5 +echo "$as_me:24163: result: $ac_cv_os_cray" >&5 echo "${ECHO_T}$ac_cv_os_cray" >&6 if test $ac_cv_os_cray = yes; then for ac_func in _getb67 GETB67 getb67; do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:24153: checking for $ac_func" >&5 +echo "$as_me:24168: 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 24159 "configure" +#line 24174 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -24187,16 +24202,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24190: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24205: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24193: \$? = $ac_status" >&5 + echo "$as_me:24208: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24196: \"$ac_try\"") >&5 + { (eval echo "$as_me:24211: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24199: \$? = $ac_status" >&5 + echo "$as_me:24214: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -24206,7 +24221,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:24209: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:24224: 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 @@ -24220,7 +24235,7 @@ fi done fi -echo "$as_me:24223: checking stack direction for C alloca" >&5 +echo "$as_me:24238: checking stack direction for C alloca" >&5 echo $ECHO_N "checking stack direction for C alloca... $ECHO_C" >&6 if test "${ac_cv_c_stack_direction+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -24229,7 +24244,7 @@ else ac_cv_c_stack_direction=0 else cat >conftest.$ac_ext <<_ACEOF -#line 24232 "configure" +#line 24247 "configure" #include "confdefs.h" int find_stack_direction () @@ -24252,15 +24267,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:24255: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24270: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24258: \$? = $ac_status" >&5 + echo "$as_me:24273: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:24260: \"$ac_try\"") >&5 + { (eval echo "$as_me:24275: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24263: \$? = $ac_status" >&5 + echo "$as_me:24278: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_stack_direction=1 else @@ -24272,7 +24287,7 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:24275: result: $ac_cv_c_stack_direction" >&5 +echo "$as_me:24290: result: $ac_cv_c_stack_direction" >&5 echo "${ECHO_T}$ac_cv_c_stack_direction" >&6 cat >>confdefs.h <<EOF @@ -24284,23 +24299,23 @@ fi for ac_header in unistd.h vfork.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:24287: checking for $ac_header" >&5 +echo "$as_me:24302: 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 24293 "configure" +#line 24308 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:24297: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:24312: \"$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:24303: \$? = $ac_status" >&5 + echo "$as_me:24318: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -24319,7 +24334,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:24322: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:24337: 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 @@ -24332,13 +24347,13 @@ done for ac_func in fork vfork do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:24335: checking for $ac_func" >&5 +echo "$as_me:24350: 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 24341 "configure" +#line 24356 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -24369,16 +24384,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24372: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24387: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24375: \$? = $ac_status" >&5 + echo "$as_me:24390: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24378: \"$ac_try\"") >&5 + { (eval echo "$as_me:24393: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24381: \$? = $ac_status" >&5 + echo "$as_me:24396: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -24388,7 +24403,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:24391: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:24406: 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 @@ -24400,7 +24415,7 @@ done ac_cv_func_fork_works=$ac_cv_func_fork if test "x$ac_cv_func_fork" = xyes; then - echo "$as_me:24403: checking for working fork" >&5 + echo "$as_me:24418: checking for working fork" >&5 echo $ECHO_N "checking for working fork... $ECHO_C" >&6 if test "${ac_cv_func_fork_works+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -24423,15 +24438,15 @@ else } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:24426: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24441: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24429: \$? = $ac_status" >&5 + echo "$as_me:24444: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:24431: \"$ac_try\"") >&5 + { (eval echo "$as_me:24446: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24434: \$? = $ac_status" >&5 + echo "$as_me:24449: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_fork_works=yes else @@ -24443,7 +24458,7 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:24446: result: $ac_cv_func_fork_works" >&5 +echo "$as_me:24461: result: $ac_cv_func_fork_works" >&5 echo "${ECHO_T}$ac_cv_func_fork_works" >&6 fi @@ -24457,12 +24472,12 @@ if test "x$ac_cv_func_fork_works" = xcross; then ac_cv_func_fork_works=yes ;; esac - { echo "$as_me:24460: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&5 + { echo "$as_me:24475: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&5 echo "$as_me: WARNING: CROSS: Result $ac_cv_func_fork_works guessed due to cross-compiling." >&2;} fi ac_cv_func_vfork_works=$ac_cv_func_vfork if test "x$ac_cv_func_vfork" = xyes; then - echo "$as_me:24465: checking for working vfork" >&5 + echo "$as_me:24480: checking for working vfork" >&5 echo $ECHO_N "checking for working vfork... $ECHO_C" >&6 if test "${ac_cv_func_vfork_works+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -24471,7 +24486,7 @@ else ac_cv_func_vfork_works=cross else cat >conftest.$ac_ext <<_ACEOF -#line 24474 "configure" +#line 24489 "configure" #include "confdefs.h" /* Thanks to Paul Eggert for this test. */ #include <stdio.h> @@ -24568,15 +24583,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:24571: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24586: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24574: \$? = $ac_status" >&5 + echo "$as_me:24589: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:24576: \"$ac_try\"") >&5 + { (eval echo "$as_me:24591: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24579: \$? = $ac_status" >&5 + echo "$as_me:24594: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_vfork_works=yes else @@ -24588,13 +24603,13 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:24591: result: $ac_cv_func_vfork_works" >&5 +echo "$as_me:24606: result: $ac_cv_func_vfork_works" >&5 echo "${ECHO_T}$ac_cv_func_vfork_works" >&6 fi; if test "x$ac_cv_func_fork_works" = xcross; then ac_cv_func_vfork_works=ac_cv_func_vfork - { echo "$as_me:24597: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&5 + { echo "$as_me:24612: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&5 echo "$as_me: WARNING: CROSS: Result $ac_cv_func_vfork_works guessed due to cross-compiling." >&2;} fi @@ -24619,14 +24634,14 @@ EOF fi -echo "$as_me:24622: checking if we should use fcntl or ioctl" >&5 +echo "$as_me:24637: checking if we should use fcntl or ioctl" >&5 echo $ECHO_N "checking if we should use fcntl or ioctl... $ECHO_C" >&6 if test "${cf_cv_fionbio+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 24629 "configure" +#line 24644 "configure" #include "confdefs.h" #include <sys/types.h> @@ -24643,16 +24658,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24646: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24661: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24649: \$? = $ac_status" >&5 + echo "$as_me:24664: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24652: \"$ac_try\"") >&5 + { (eval echo "$as_me:24667: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24655: \$? = $ac_status" >&5 + echo "$as_me:24670: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fionbio=ioctl else @@ -24660,7 +24675,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 24663 "configure" +#line 24678 "configure" #include "confdefs.h" #include <sys/types.h> @@ -24682,16 +24697,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24685: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24700: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24688: \$? = $ac_status" >&5 + echo "$as_me:24703: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24691: \"$ac_try\"") >&5 + { (eval echo "$as_me:24706: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24694: \$? = $ac_status" >&5 + echo "$as_me:24709: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fionbio=fcntl else @@ -24704,20 +24719,20 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:24707: result: $cf_cv_fionbio" >&5 +echo "$as_me:24722: result: $cf_cv_fionbio" >&5 echo "${ECHO_T}$cf_cv_fionbio" >&6 test "$cf_cv_fionbio" = "fcntl" && cat >>confdefs.h <<\EOF #define USE_FCNTL 1 EOF -echo "$as_me:24713: checking for broken/missing definition of remove" >&5 +echo "$as_me:24728: checking for broken/missing definition of remove" >&5 echo $ECHO_N "checking for broken/missing definition of remove... $ECHO_C" >&6 if test "${cf_cv_baddef_remove+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 24720 "configure" +#line 24735 "configure" #include "confdefs.h" #include <stdio.h> int @@ -24729,23 +24744,23 @@ remove("dummy") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24732: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24747: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24735: \$? = $ac_status" >&5 + echo "$as_me:24750: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24738: \"$ac_try\"") >&5 + { (eval echo "$as_me:24753: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24741: \$? = $ac_status" >&5 + echo "$as_me:24756: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_baddef_remove=no else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 24748 "configure" +#line 24763 "configure" #include "confdefs.h" #include <stdio.h> int __unlink(name) { return unlink(name); } @@ -24758,16 +24773,16 @@ remove("dummy") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24761: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24776: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24764: \$? = $ac_status" >&5 + echo "$as_me:24779: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24767: \"$ac_try\"") >&5 + { (eval echo "$as_me:24782: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24770: \$? = $ac_status" >&5 + echo "$as_me:24785: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_baddef_remove=yes else @@ -24782,20 +24797,20 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:24785: result: $cf_cv_baddef_remove" >&5 +echo "$as_me:24800: result: $cf_cv_baddef_remove" >&5 echo "${ECHO_T}$cf_cv_baddef_remove" >&6 test "$cf_cv_baddef_remove" != no && cat >>confdefs.h <<\EOF #define NEED_REMOVE 1 EOF -echo "$as_me:24791: checking for lstat" >&5 +echo "$as_me:24806: checking for lstat" >&5 echo $ECHO_N "checking for lstat... $ECHO_C" >&6 if test "${ac_cv_func_lstat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 24798 "configure" +#line 24813 "configure" #include "confdefs.h" #include <sys/types.h> @@ -24809,16 +24824,16 @@ lstat(".", (struct stat *)0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24812: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24827: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24815: \$? = $ac_status" >&5 + echo "$as_me:24830: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24818: \"$ac_try\"") >&5 + { (eval echo "$as_me:24833: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24821: \$? = $ac_status" >&5 + echo "$as_me:24836: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_lstat=yes else @@ -24830,7 +24845,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:24833: result: $ac_cv_func_lstat " >&5 +echo "$as_me:24848: result: $ac_cv_func_lstat " >&5 echo "${ECHO_T}$ac_cv_func_lstat " >&6 if test $ac_cv_func_lstat = yes; then cat >>confdefs.h <<\EOF @@ -24864,13 +24879,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:24867: checking for $ac_func" >&5 +echo "$as_me:24882: 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 24873 "configure" +#line 24888 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -24901,16 +24916,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24904: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24919: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24907: \$? = $ac_status" >&5 + echo "$as_me:24922: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24910: \"$ac_try\"") >&5 + { (eval echo "$as_me:24925: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24913: \$? = $ac_status" >&5 + echo "$as_me:24928: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -24920,7 +24935,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:24923: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:24938: 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 @@ -24936,13 +24951,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:24939: checking for $ac_func" >&5 +echo "$as_me:24954: 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 24945 "configure" +#line 24960 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -24973,16 +24988,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:24976: \"$ac_link\"") >&5 +if { (eval echo "$as_me:24991: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:24979: \$? = $ac_status" >&5 + echo "$as_me:24994: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:24982: \"$ac_try\"") >&5 + { (eval echo "$as_me:24997: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:24985: \$? = $ac_status" >&5 + echo "$as_me:25000: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -24992,7 +25007,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:24995: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:25010: 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 @@ -25004,7 +25019,7 @@ else fi done -echo "$as_me:25007: checking for random-integer functions" >&5 +echo "$as_me:25022: checking for random-integer functions" >&5 echo $ECHO_N "checking for random-integer functions... $ECHO_C" >&6 if test "${cf_cv_srand_func+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -25024,7 +25039,7 @@ do esac cat >conftest.$ac_ext <<_ACEOF -#line 25027 "configure" +#line 25042 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -25043,16 +25058,16 @@ long seed = 1; $cf_srand_func(seed); seed = $cf_rand_func() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25046: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25061: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25049: \$? = $ac_status" >&5 + echo "$as_me:25064: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25052: \"$ac_try\"") >&5 + { (eval echo "$as_me:25067: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25055: \$? = $ac_status" >&5 + echo "$as_me:25070: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_srand_func=$cf_func break @@ -25064,10 +25079,10 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext done fi -echo "$as_me:25067: result: $cf_cv_srand_func" >&5 +echo "$as_me:25082: result: $cf_cv_srand_func" >&5 echo "${ECHO_T}$cf_cv_srand_func" >&6 if test "$cf_cv_srand_func" != unknown ; then - echo "$as_me:25070: checking for range of random-integers" >&5 + echo "$as_me:25085: checking for range of random-integers" >&5 echo $ECHO_N "checking for range of random-integers... $ECHO_C" >&6 if test "${cf_cv_rand_max+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -25088,7 +25103,7 @@ else ;; esac cat >conftest.$ac_ext <<_ACEOF -#line 25091 "configure" +#line 25106 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -25107,16 +25122,16 @@ long x = $cf_cv_rand_max } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25110: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25125: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25113: \$? = $ac_status" >&5 + echo "$as_me:25128: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25116: \"$ac_try\"") >&5 + { (eval echo "$as_me:25131: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25119: \$? = $ac_status" >&5 + echo "$as_me:25134: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -25127,7 +25142,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25130: result: $cf_cv_rand_max" >&5 +echo "$as_me:25145: result: $cf_cv_rand_max" >&5 echo "${ECHO_T}$cf_cv_rand_max" >&6 cf_srand_func=`echo $cf_func | sed -e 's%/.*%%'` @@ -25158,13 +25173,13 @@ fi for ac_func in strstr do -echo "$as_me:25161: checking for $ac_func declaration" >&5 +echo "$as_me:25176: checking for $ac_func declaration" >&5 echo $ECHO_N "checking for $ac_func declaration... $ECHO_C" >&6 if eval "test \"\${ac_cv_func_decl_$ac_func+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 25167 "configure" +#line 25182 "configure" #include "confdefs.h" #include <string.h> int @@ -25178,20 +25193,20 @@ extern int ${ac_func}(); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25181: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25196: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25184: \$? = $ac_status" >&5 + echo "$as_me:25199: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25187: \"$ac_try\"") >&5 + { (eval echo "$as_me:25202: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25190: \$? = $ac_status" >&5 + echo "$as_me:25205: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 25194 "configure" +#line 25209 "configure" #include "confdefs.h" #include <string.h> int @@ -25205,16 +25220,16 @@ int (*p)() = ${ac_func}; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25208: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25223: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25211: \$? = $ac_status" >&5 + echo "$as_me:25226: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25214: \"$ac_try\"") >&5 + { (eval echo "$as_me:25229: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25217: \$? = $ac_status" >&5 + echo "$as_me:25232: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "ac_cv_func_decl_$ac_func=yes" @@ -25235,11 +25250,11 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi if eval "test \"`echo '$ac_cv_func_'decl_$ac_func`\" = yes"; then - echo "$as_me:25238: result: yes" >&5 + echo "$as_me:25253: result: yes" >&5 echo "${ECHO_T}yes" >&6 : else - echo "$as_me:25242: result: no" >&5 + echo "$as_me:25257: result: no" >&5 echo "${ECHO_T}no" >&6 ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` @@ -25254,13 +25269,13 @@ done for ac_func in getgrgid getgrnam do -echo "$as_me:25257: checking for $ac_func declaration" >&5 +echo "$as_me:25272: checking for $ac_func declaration" >&5 echo $ECHO_N "checking for $ac_func declaration... $ECHO_C" >&6 if eval "test \"\${ac_cv_func_decl_$ac_func+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 25263 "configure" +#line 25278 "configure" #include "confdefs.h" #include <stdio.h> @@ -25276,20 +25291,20 @@ extern int ${ac_func}(); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25279: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25294: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25282: \$? = $ac_status" >&5 + echo "$as_me:25297: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25285: \"$ac_try\"") >&5 + { (eval echo "$as_me:25300: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25288: \$? = $ac_status" >&5 + echo "$as_me:25303: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cat >conftest.$ac_ext <<_ACEOF -#line 25292 "configure" +#line 25307 "configure" #include "confdefs.h" #include <stdio.h> @@ -25305,16 +25320,16 @@ int (*p)() = ${ac_func}; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25308: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25323: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25311: \$? = $ac_status" >&5 + echo "$as_me:25326: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25314: \"$ac_try\"") >&5 + { (eval echo "$as_me:25329: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25317: \$? = $ac_status" >&5 + echo "$as_me:25332: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "ac_cv_func_decl_$ac_func=yes" @@ -25335,11 +25350,11 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi if eval "test \"`echo '$ac_cv_func_'decl_$ac_func`\" = yes"; then - echo "$as_me:25338: result: yes" >&5 + echo "$as_me:25353: result: yes" >&5 echo "${ECHO_T}yes" >&6 : else - echo "$as_me:25342: result: no" >&5 + echo "$as_me:25357: result: no" >&5 echo "${ECHO_T}no" >&6 ac_tr_func=`echo "DECL_$ac_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` @@ -25351,14 +25366,14 @@ EOF fi done -echo "$as_me:25354: checking if TRUE/FALSE are defined" >&5 +echo "$as_me:25369: checking if TRUE/FALSE are defined" >&5 echo $ECHO_N "checking if TRUE/FALSE are defined... $ECHO_C" >&6 if test "${cf_cv_bool_defs+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 25361 "configure" +#line 25376 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -25372,16 +25387,16 @@ int x = TRUE, y = FALSE } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25375: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25390: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25378: \$? = $ac_status" >&5 + echo "$as_me:25393: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25381: \"$ac_try\"") >&5 + { (eval echo "$as_me:25396: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25384: \$? = $ac_status" >&5 + echo "$as_me:25399: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_bool_defs=yes else @@ -25392,7 +25407,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25395: result: $cf_cv_bool_defs" >&5 +echo "$as_me:25410: result: $cf_cv_bool_defs" >&5 echo "${ECHO_T}$cf_cv_bool_defs" >&6 if test "$cf_cv_bool_defs" = no ; then cat >>confdefs.h <<\EOF @@ -25405,14 +25420,14 @@ EOF fi -echo "$as_me:25408: checking if external errno is declared" >&5 +echo "$as_me:25423: checking if external errno is declared" >&5 echo $ECHO_N "checking if external errno is declared... $ECHO_C" >&6 if test "${cf_cv_dcl_errno+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 25415 "configure" +#line 25430 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -25430,16 +25445,16 @@ int x = (int) errno } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25433: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25448: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25436: \$? = $ac_status" >&5 + echo "$as_me:25451: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25439: \"$ac_try\"") >&5 + { (eval echo "$as_me:25454: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25442: \$? = $ac_status" >&5 + echo "$as_me:25457: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_dcl_errno=yes else @@ -25450,7 +25465,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25453: result: $cf_cv_dcl_errno" >&5 +echo "$as_me:25468: result: $cf_cv_dcl_errno" >&5 echo "${ECHO_T}$cf_cv_dcl_errno" >&6 if test "$cf_cv_dcl_errno" = no ; then @@ -25465,14 +25480,14 @@ fi # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:25468: checking if external errno exists" >&5 +echo "$as_me:25483: checking if external errno exists" >&5 echo $ECHO_N "checking if external errno exists... $ECHO_C" >&6 if test "${cf_cv_have_errno+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 25475 "configure" +#line 25490 "configure" #include "confdefs.h" #undef errno @@ -25487,16 +25502,16 @@ errno = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25490: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25505: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25493: \$? = $ac_status" >&5 + echo "$as_me:25508: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25496: \"$ac_try\"") >&5 + { (eval echo "$as_me:25511: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25499: \$? = $ac_status" >&5 + echo "$as_me:25514: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_errno=yes else @@ -25507,7 +25522,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:25510: result: $cf_cv_have_errno" >&5 +echo "$as_me:25525: result: $cf_cv_have_errno" >&5 echo "${ECHO_T}$cf_cv_have_errno" >&6 if test "$cf_cv_have_errno" = yes ; then @@ -25520,7 +25535,7 @@ EOF fi -echo "$as_me:25523: checking if we can set errno" >&5 +echo "$as_me:25538: checking if we can set errno" >&5 echo $ECHO_N "checking if we can set errno... $ECHO_C" >&6 if test "${cf_cv_set_errno+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -25528,7 +25543,7 @@ else if test "$cross_compiling" = yes; then cat >conftest.$ac_ext <<_ACEOF -#line 25531 "configure" +#line 25546 "configure" #include "confdefs.h" #include <errno.h> int @@ -25540,16 +25555,16 @@ errno = 255 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25543: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25558: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25546: \$? = $ac_status" >&5 + echo "$as_me:25561: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25549: \"$ac_try\"") >&5 + { (eval echo "$as_me:25564: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25552: \$? = $ac_status" >&5 + echo "$as_me:25567: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_set_errno=maybe else @@ -25560,7 +25575,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext else cat >conftest.$ac_ext <<_ACEOF -#line 25563 "configure" +#line 25578 "configure" #include "confdefs.h" #include <errno.h> @@ -25571,15 +25586,15 @@ int main() } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:25574: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25589: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25577: \$? = $ac_status" >&5 + echo "$as_me:25592: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:25579: \"$ac_try\"") >&5 + { (eval echo "$as_me:25594: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25582: \$? = $ac_status" >&5 + echo "$as_me:25597: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_set_errno=yes else @@ -25592,20 +25607,20 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:25595: result: $cf_cv_set_errno" >&5 +echo "$as_me:25610: result: $cf_cv_set_errno" >&5 echo "${ECHO_T}$cf_cv_set_errno" >&6 test "$cf_cv_set_errno" != no && cat >>confdefs.h <<\EOF #define CAN_SET_ERRNO 1 EOF -echo "$as_me:25601: checking for setlocale()" >&5 +echo "$as_me:25616: checking for setlocale()" >&5 echo $ECHO_N "checking for setlocale()... $ECHO_C" >&6 if test "${cf_cv_locale+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 25608 "configure" +#line 25623 "configure" #include "confdefs.h" #include <locale.h> int @@ -25617,16 +25632,16 @@ setlocale(LC_ALL, "") } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25620: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25635: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25623: \$? = $ac_status" >&5 + echo "$as_me:25638: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25626: \"$ac_try\"") >&5 + { (eval echo "$as_me:25641: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25629: \$? = $ac_status" >&5 + echo "$as_me:25644: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_locale=yes else @@ -25638,21 +25653,21 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:25641: result: $cf_cv_locale" >&5 +echo "$as_me:25656: result: $cf_cv_locale" >&5 echo "${ECHO_T}$cf_cv_locale" >&6 test $cf_cv_locale = yes && { cat >>confdefs.h <<\EOF #define LOCALE 1 EOF } -echo "$as_me:25648: checking if NGROUPS is defined" >&5 +echo "$as_me:25663: checking if NGROUPS is defined" >&5 echo $ECHO_N "checking if NGROUPS is defined... $ECHO_C" >&6 if test "${cf_cv_ngroups+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 25655 "configure" +#line 25670 "configure" #include "confdefs.h" #if HAVE_SYS_PARAM_H @@ -25671,23 +25686,23 @@ int x = NGROUPS } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25674: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25689: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25677: \$? = $ac_status" >&5 + echo "$as_me:25692: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25680: \"$ac_try\"") >&5 + { (eval echo "$as_me:25695: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25683: \$? = $ac_status" >&5 + echo "$as_me:25698: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ngroups=yes else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 25690 "configure" +#line 25705 "configure" #include "confdefs.h" #if HAVE_SYS_PARAM_H @@ -25706,16 +25721,16 @@ int x = NGROUPS_MAX } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25709: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25724: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25712: \$? = $ac_status" >&5 + echo "$as_me:25727: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25715: \"$ac_try\"") >&5 + { (eval echo "$as_me:25730: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25718: \$? = $ac_status" >&5 + echo "$as_me:25733: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ngroups=NGROUPS_MAX else @@ -25727,7 +25742,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext -echo "$as_me:25730: result: $cf_cv_ngroups" >&5 +echo "$as_me:25745: result: $cf_cv_ngroups" >&5 echo "${ECHO_T}$cf_cv_ngroups" >&6 fi @@ -25744,14 +25759,14 @@ EOF fi -echo "$as_me:25747: checking if external sys_nerr is declared" >&5 +echo "$as_me:25762: checking if external sys_nerr is declared" >&5 echo $ECHO_N "checking if external sys_nerr is declared... $ECHO_C" >&6 if test "${cf_cv_dcl_sys_nerr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 25754 "configure" +#line 25769 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -25769,16 +25784,16 @@ int x = (int) sys_nerr } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25772: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25787: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25775: \$? = $ac_status" >&5 + echo "$as_me:25790: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25778: \"$ac_try\"") >&5 + { (eval echo "$as_me:25793: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25781: \$? = $ac_status" >&5 + echo "$as_me:25796: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_dcl_sys_nerr=yes else @@ -25789,7 +25804,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25792: result: $cf_cv_dcl_sys_nerr" >&5 +echo "$as_me:25807: result: $cf_cv_dcl_sys_nerr" >&5 echo "${ECHO_T}$cf_cv_dcl_sys_nerr" >&6 if test "$cf_cv_dcl_sys_nerr" = no ; then @@ -25804,14 +25819,14 @@ fi # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:25807: checking if external sys_nerr exists" >&5 +echo "$as_me:25822: checking if external sys_nerr exists" >&5 echo $ECHO_N "checking if external sys_nerr exists... $ECHO_C" >&6 if test "${cf_cv_have_sys_nerr+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 25814 "configure" +#line 25829 "configure" #include "confdefs.h" #undef sys_nerr @@ -25826,16 +25841,16 @@ sys_nerr = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25829: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25844: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25832: \$? = $ac_status" >&5 + echo "$as_me:25847: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25835: \"$ac_try\"") >&5 + { (eval echo "$as_me:25850: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25838: \$? = $ac_status" >&5 + echo "$as_me:25853: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_sys_nerr=yes else @@ -25846,7 +25861,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:25849: result: $cf_cv_have_sys_nerr" >&5 +echo "$as_me:25864: result: $cf_cv_have_sys_nerr" >&5 echo "${ECHO_T}$cf_cv_have_sys_nerr" >&6 if test "$cf_cv_have_sys_nerr" = yes ; then @@ -25859,14 +25874,14 @@ EOF fi -echo "$as_me:25862: checking if external sys_errlist is declared" >&5 +echo "$as_me:25877: checking if external sys_errlist is declared" >&5 echo $ECHO_N "checking if external sys_errlist is declared... $ECHO_C" >&6 if test "${cf_cv_dcl_sys_errlist+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 25869 "configure" +#line 25884 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -25884,16 +25899,16 @@ int x = (int) sys_errlist } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:25887: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:25902: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:25890: \$? = $ac_status" >&5 + echo "$as_me:25905: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:25893: \"$ac_try\"") >&5 + { (eval echo "$as_me:25908: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25896: \$? = $ac_status" >&5 + echo "$as_me:25911: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_dcl_sys_errlist=yes else @@ -25904,7 +25919,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:25907: result: $cf_cv_dcl_sys_errlist" >&5 +echo "$as_me:25922: result: $cf_cv_dcl_sys_errlist" >&5 echo "${ECHO_T}$cf_cv_dcl_sys_errlist" >&6 if test "$cf_cv_dcl_sys_errlist" = no ; then @@ -25919,14 +25934,14 @@ fi # It's possible (for near-UNIX clones) that the data doesn't exist -echo "$as_me:25922: checking if external sys_errlist exists" >&5 +echo "$as_me:25937: checking if external sys_errlist exists" >&5 echo $ECHO_N "checking if external sys_errlist exists... $ECHO_C" >&6 if test "${cf_cv_have_sys_errlist+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 25929 "configure" +#line 25944 "configure" #include "confdefs.h" #undef sys_errlist @@ -25941,16 +25956,16 @@ sys_errlist = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:25944: \"$ac_link\"") >&5 +if { (eval echo "$as_me:25959: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:25947: \$? = $ac_status" >&5 + echo "$as_me:25962: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:25950: \"$ac_try\"") >&5 + { (eval echo "$as_me:25965: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:25953: \$? = $ac_status" >&5 + echo "$as_me:25968: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_sys_errlist=yes else @@ -25961,7 +25976,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:25964: result: $cf_cv_have_sys_errlist" >&5 +echo "$as_me:25979: result: $cf_cv_have_sys_errlist" >&5 echo "${ECHO_T}$cf_cv_have_sys_errlist" >&6 if test "$cf_cv_have_sys_errlist" = yes ; then @@ -25977,23 +25992,23 @@ fi for ac_header in lastlog.h paths.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:25980: checking for $ac_header" >&5 +echo "$as_me:25995: 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 25986 "configure" +#line 26001 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:25990: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:26005: \"$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:25996: \$? = $ac_status" >&5 + echo "$as_me:26011: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -26012,7 +26027,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:26015: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:26030: 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 @@ -26022,14 +26037,14 @@ EOF fi done -echo "$as_me:26025: checking for lastlog path" >&5 +echo "$as_me:26040: checking for lastlog path" >&5 echo $ECHO_N "checking for lastlog path... $ECHO_C" >&6 if test "${cf_cv_path_lastlog+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 26032 "configure" +#line 26047 "configure" #include "confdefs.h" #include <sys/types.h> @@ -26049,16 +26064,16 @@ char *path = _PATH_LASTLOG } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26052: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26067: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26055: \$? = $ac_status" >&5 + echo "$as_me:26070: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26058: \"$ac_try\"") >&5 + { (eval echo "$as_me:26073: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26061: \$? = $ac_status" >&5 + echo "$as_me:26076: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_path_lastlog="_PATH_LASTLOG" else @@ -26073,13 +26088,13 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:26076: result: $cf_cv_path_lastlog" >&5 +echo "$as_me:26091: result: $cf_cv_path_lastlog" >&5 echo "${ECHO_T}$cf_cv_path_lastlog" >&6 test $cf_cv_path_lastlog != no && cat >>confdefs.h <<\EOF #define USE_LASTLOG 1 EOF -echo "$as_me:26082: checking for utmp implementation" >&5 +echo "$as_me:26097: checking for utmp implementation" >&5 echo $ECHO_N "checking for utmp implementation... $ECHO_C" >&6 if test "${cf_cv_have_utmp+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -26096,7 +26111,7 @@ cf_utmp_includes=" #endif " cat >conftest.$ac_ext <<_ACEOF -#line 26099 "configure" +#line 26114 "configure" #include "confdefs.h" $cf_utmp_includes int @@ -26110,16 +26125,16 @@ struct $cf_header x; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26113: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26128: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26116: \$? = $ac_status" >&5 + echo "$as_me:26131: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26119: \"$ac_try\"") >&5 + { (eval echo "$as_me:26134: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26122: \$? = $ac_status" >&5 + echo "$as_me:26137: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp=$cf_header break @@ -26128,7 +26143,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 26131 "configure" +#line 26146 "configure" #include "confdefs.h" $cf_utmp_includes int @@ -26142,16 +26157,16 @@ struct $cf_header x; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26145: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26160: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26148: \$? = $ac_status" >&5 + echo "$as_me:26163: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26151: \"$ac_try\"") >&5 + { (eval echo "$as_me:26166: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26154: \$? = $ac_status" >&5 + echo "$as_me:26169: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp=$cf_header break @@ -26166,7 +26181,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:26169: result: $cf_cv_have_utmp" >&5 +echo "$as_me:26184: result: $cf_cv_have_utmp" >&5 echo "${ECHO_T}$cf_cv_have_utmp" >&6 if test $cf_cv_have_utmp != no ; then @@ -26179,14 +26194,14 @@ EOF EOF if test $cf_cv_have_utmp != no ; then -echo "$as_me:26182: checking if ${cf_cv_have_utmp}.ut_host is declared" >&5 +echo "$as_me:26197: checking if ${cf_cv_have_utmp}.ut_host is declared" >&5 echo $ECHO_N "checking if ${cf_cv_have_utmp}.ut_host is declared... $ECHO_C" >&6 if test "${cf_cv_have_utmp_ut_host+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 26189 "configure" +#line 26204 "configure" #include "confdefs.h" #include <sys/types.h> @@ -26200,16 +26215,16 @@ struct $cf_cv_have_utmp x; char *y = &x.ut_host[0] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26203: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26218: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26206: \$? = $ac_status" >&5 + echo "$as_me:26221: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26209: \"$ac_try\"") >&5 + { (eval echo "$as_me:26224: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26212: \$? = $ac_status" >&5 + echo "$as_me:26227: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_host=yes else @@ -26221,7 +26236,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:26224: result: $cf_cv_have_utmp_ut_host" >&5 +echo "$as_me:26239: result: $cf_cv_have_utmp_ut_host" >&5 echo "${ECHO_T}$cf_cv_have_utmp_ut_host" >&6 test $cf_cv_have_utmp_ut_host != no && cat >>confdefs.h <<\EOF #define HAVE_UTMP_UT_HOST 1 @@ -26230,14 +26245,14 @@ EOF fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:26233: checking if ${cf_cv_have_utmp}.ut_syslen is declared" >&5 +echo "$as_me:26248: checking if ${cf_cv_have_utmp}.ut_syslen is declared" >&5 echo $ECHO_N "checking if ${cf_cv_have_utmp}.ut_syslen is declared... $ECHO_C" >&6 if test "${cf_cv_have_utmp_ut_syslen+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 26240 "configure" +#line 26255 "configure" #include "confdefs.h" #include <sys/types.h> @@ -26251,16 +26266,16 @@ struct $cf_cv_have_utmp x; int y = x.ut_syslen } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26254: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26269: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26257: \$? = $ac_status" >&5 + echo "$as_me:26272: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26260: \"$ac_try\"") >&5 + { (eval echo "$as_me:26275: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26263: \$? = $ac_status" >&5 + echo "$as_me:26278: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_syslen=yes else @@ -26272,7 +26287,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:26275: result: $cf_cv_have_utmp_ut_syslen" >&5 +echo "$as_me:26290: result: $cf_cv_have_utmp_ut_syslen" >&5 echo "${ECHO_T}$cf_cv_have_utmp_ut_syslen" >&6 test $cf_cv_have_utmp_ut_syslen != no && cat >>confdefs.h <<\EOF #define HAVE_UTMP_UT_SYSLEN 1 @@ -26281,7 +26296,7 @@ EOF fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:26284: checking if ${cf_cv_have_utmp}.ut_name is declared" >&5 +echo "$as_me:26299: checking if ${cf_cv_have_utmp}.ut_name is declared" >&5 echo $ECHO_N "checking if ${cf_cv_have_utmp}.ut_name is declared... $ECHO_C" >&6 if test "${cf_cv_have_utmp_ut_name+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -26298,7 +26313,7 @@ cf_utmp_includes=" " for cf_header in ut_name ut_user ; do cat >conftest.$ac_ext <<_ACEOF -#line 26301 "configure" +#line 26316 "configure" #include "confdefs.h" $cf_utmp_includes int @@ -26312,16 +26327,16 @@ struct $cf_cv_have_utmp x; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26315: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26330: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26318: \$? = $ac_status" >&5 + echo "$as_me:26333: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26321: \"$ac_try\"") >&5 + { (eval echo "$as_me:26336: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26324: \$? = $ac_status" >&5 + echo "$as_me:26339: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_name=$cf_header break @@ -26333,12 +26348,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:26336: result: $cf_cv_have_utmp_ut_name" >&5 +echo "$as_me:26351: result: $cf_cv_have_utmp_ut_name" >&5 echo "${ECHO_T}$cf_cv_have_utmp_ut_name" >&6 case $cf_cv_have_utmp_ut_name in #(vi no) #(vi - { { echo "$as_me:26341: error: Cannot find declaration for ut.ut_name" >&5 + { { echo "$as_me:26356: error: Cannot find declaration for ut.ut_name" >&5 echo "$as_me: error: Cannot find declaration for ut.ut_name" >&2;} { (exit 1); exit 1; }; } ;; @@ -26352,7 +26367,7 @@ esac fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:26355: checking for exit-status in $cf_cv_have_utmp" >&5 +echo "$as_me:26370: checking for exit-status in $cf_cv_have_utmp" >&5 echo $ECHO_N "checking for exit-status in $cf_cv_have_utmp... $ECHO_C" >&6 if test "${cf_cv_have_utmp_ut_xstatus+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -26365,7 +26380,7 @@ for cf_result in \ ut_exit.ut_exit do cat >conftest.$ac_ext <<_ACEOF -#line 26368 "configure" +#line 26383 "configure" #include "confdefs.h" #include <sys/types.h> @@ -26379,16 +26394,16 @@ struct $cf_cv_have_utmp x; long y = x.$cf_result = 0 } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26382: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26397: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26385: \$? = $ac_status" >&5 + echo "$as_me:26400: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26388: \"$ac_try\"") >&5 + { (eval echo "$as_me:26403: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26391: \$? = $ac_status" >&5 + echo "$as_me:26406: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_xstatus=$cf_result break @@ -26401,7 +26416,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:26404: result: $cf_cv_have_utmp_ut_xstatus" >&5 +echo "$as_me:26419: result: $cf_cv_have_utmp_ut_xstatus" >&5 echo "${ECHO_T}$cf_cv_have_utmp_ut_xstatus" >&6 if test $cf_cv_have_utmp_ut_xstatus != no ; then cat >>confdefs.h <<\EOF @@ -26416,14 +26431,14 @@ fi fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:26419: checking if ${cf_cv_have_utmp}.ut_xtime is declared" >&5 +echo "$as_me:26434: checking if ${cf_cv_have_utmp}.ut_xtime is declared" >&5 echo $ECHO_N "checking if ${cf_cv_have_utmp}.ut_xtime is declared... $ECHO_C" >&6 if test "${cf_cv_have_utmp_ut_xtime+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 26426 "configure" +#line 26441 "configure" #include "confdefs.h" #include <sys/types.h> @@ -26437,23 +26452,23 @@ struct $cf_cv_have_utmp x; long y = x.ut_xtime = 0 } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26440: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26455: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26443: \$? = $ac_status" >&5 + echo "$as_me:26458: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26446: \"$ac_try\"") >&5 + { (eval echo "$as_me:26461: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26449: \$? = $ac_status" >&5 + echo "$as_me:26464: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_xtime=yes else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 26456 "configure" +#line 26471 "configure" #include "confdefs.h" #include <sys/types.h> @@ -26467,16 +26482,16 @@ struct $cf_cv_have_utmp x; long y = x.ut_tv.tv_sec } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26470: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26485: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26473: \$? = $ac_status" >&5 + echo "$as_me:26488: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26476: \"$ac_try\"") >&5 + { (eval echo "$as_me:26491: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26479: \$? = $ac_status" >&5 + echo "$as_me:26494: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_xtime=define else @@ -26490,7 +26505,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:26493: result: $cf_cv_have_utmp_ut_xtime" >&5 +echo "$as_me:26508: result: $cf_cv_have_utmp_ut_xtime" >&5 echo "${ECHO_T}$cf_cv_have_utmp_ut_xtime" >&6 if test $cf_cv_have_utmp_ut_xtime != no ; then cat >>confdefs.h <<\EOF @@ -26507,14 +26522,14 @@ fi fi if test $cf_cv_have_utmp != no ; then -echo "$as_me:26510: checking if ${cf_cv_have_utmp}.ut_session is declared" >&5 +echo "$as_me:26525: checking if ${cf_cv_have_utmp}.ut_session is declared" >&5 echo $ECHO_N "checking if ${cf_cv_have_utmp}.ut_session is declared... $ECHO_C" >&6 if test "${cf_cv_have_utmp_ut_session+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 26517 "configure" +#line 26532 "configure" #include "confdefs.h" #include <sys/types.h> @@ -26528,16 +26543,16 @@ struct $cf_cv_have_utmp x; long y = x.ut_session } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26531: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26546: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26534: \$? = $ac_status" >&5 + echo "$as_me:26549: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26537: \"$ac_try\"") >&5 + { (eval echo "$as_me:26552: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26540: \$? = $ac_status" >&5 + echo "$as_me:26555: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_utmp_ut_session=yes else @@ -26548,7 +26563,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:26551: result: $cf_cv_have_utmp_ut_session" >&5 +echo "$as_me:26566: result: $cf_cv_have_utmp_ut_session" >&5 echo "${ECHO_T}$cf_cv_have_utmp_ut_session" >&6 if test $cf_cv_have_utmp_ut_session != no ; then cat >>confdefs.h <<\EOF @@ -26558,7 +26573,7 @@ EOF fi fi -echo "$as_me:26561: checking if $cf_cv_have_utmp is SYSV flavor" >&5 +echo "$as_me:26576: checking if $cf_cv_have_utmp is SYSV flavor" >&5 echo $ECHO_N "checking if $cf_cv_have_utmp is SYSV flavor... $ECHO_C" >&6 if test "${cf_cv_sysv_utmp+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -26566,7 +26581,7 @@ else test "$cf_cv_have_utmp" = "utmp" && cf_prefix="ut" || cf_prefix="utx" cat >conftest.$ac_ext <<_ACEOF -#line 26569 "configure" +#line 26584 "configure" #include "confdefs.h" #include <sys/types.h> @@ -26585,16 +26600,16 @@ struct $cf_cv_have_utmp x; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26588: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26603: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26591: \$? = $ac_status" >&5 + echo "$as_me:26606: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26594: \"$ac_try\"") >&5 + { (eval echo "$as_me:26609: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26597: \$? = $ac_status" >&5 + echo "$as_me:26612: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_sysv_utmp=yes else @@ -26605,7 +26620,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:26608: result: $cf_cv_sysv_utmp" >&5 +echo "$as_me:26623: result: $cf_cv_sysv_utmp" >&5 echo "${ECHO_T}$cf_cv_sysv_utmp" >&6 test $cf_cv_sysv_utmp = yes && cat >>confdefs.h <<\EOF #define USE_SYSV_UTMP 1 @@ -26613,14 +26628,14 @@ EOF fi -echo "$as_me:26616: checking if external h_errno exists" >&5 +echo "$as_me:26631: checking if external h_errno exists" >&5 echo $ECHO_N "checking if external h_errno exists... $ECHO_C" >&6 if test "${cf_cv_have_h_errno+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 26623 "configure" +#line 26638 "configure" #include "confdefs.h" #undef h_errno @@ -26635,16 +26650,16 @@ h_errno = 2 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:26638: \"$ac_link\"") >&5 +if { (eval echo "$as_me:26653: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:26641: \$? = $ac_status" >&5 + echo "$as_me:26656: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:26644: \"$ac_try\"") >&5 + { (eval echo "$as_me:26659: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26647: \$? = $ac_status" >&5 + echo "$as_me:26662: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_h_errno=yes else @@ -26655,7 +26670,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:26658: result: $cf_cv_have_h_errno" >&5 +echo "$as_me:26673: result: $cf_cv_have_h_errno" >&5 echo "${ECHO_T}$cf_cv_have_h_errno" >&6 if test "$cf_cv_have_h_errno" = yes ; then @@ -26668,7 +26683,7 @@ EOF fi -echo "$as_me:26671: checking if bibp: URLs should be supported" >&5 +echo "$as_me:26686: checking if bibp: URLs should be supported" >&5 echo $ECHO_N "checking if bibp: URLs should be supported... $ECHO_C" >&6 # Check whether --enable-bibp-urls or --disable-bibp-urls was given. @@ -26685,13 +26700,13 @@ else use_bibp_urls=yes fi; -echo "$as_me:26688: result: $use_bibp_urls" >&5 +echo "$as_me:26703: result: $use_bibp_urls" >&5 echo "${ECHO_T}$use_bibp_urls" >&6 test $use_bibp_urls = no && cat >>confdefs.h <<\EOF #define DISABLE_BIBP 1 EOF -echo "$as_me:26694: checking if configuration info should be browsable" >&5 +echo "$as_me:26709: checking if configuration info should be browsable" >&5 echo $ECHO_N "checking if configuration info should be browsable... $ECHO_C" >&6 # Check whether --enable-config-info or --disable-config-info was given. @@ -26708,13 +26723,13 @@ else use_config_info=yes fi; -echo "$as_me:26711: result: $use_config_info" >&5 +echo "$as_me:26726: result: $use_config_info" >&5 echo "${ECHO_T}$use_config_info" >&6 test $use_config_info = no && cat >>confdefs.h <<\EOF #define NO_CONFIG_INFO 1 EOF -echo "$as_me:26717: checking if new-style forms-based options screen should be used" >&5 +echo "$as_me:26732: checking if new-style forms-based options screen should be used" >&5 echo $ECHO_N "checking if new-style forms-based options screen should be used... $ECHO_C" >&6 # Check whether --enable-forms-options or --disable-forms-options was given. @@ -26731,13 +26746,13 @@ else use_forms_options=yes fi; -echo "$as_me:26734: result: $use_forms_options" >&5 +echo "$as_me:26749: result: $use_forms_options" >&5 echo "${ECHO_T}$use_forms_options" >&6 test $use_forms_options = no && cat >>confdefs.h <<\EOF #define NO_OPTION_FORMS 1 EOF -echo "$as_me:26740: checking if old-style options menu should be used" >&5 +echo "$as_me:26755: checking if old-style options menu should be used" >&5 echo $ECHO_N "checking if old-style options menu should be used... $ECHO_C" >&6 # Check whether --enable-menu-options or --disable-menu-options was given. @@ -26754,13 +26769,13 @@ else use_menu_options=yes fi; -echo "$as_me:26757: result: $use_menu_options" >&5 +echo "$as_me:26772: result: $use_menu_options" >&5 echo "${ECHO_T}$use_menu_options" >&6 test $use_menu_options = no && cat >>confdefs.h <<\EOF #define NO_OPTION_MENU 1 EOF -echo "$as_me:26763: checking if experimental address-list page should be used" >&5 +echo "$as_me:26778: checking if experimental address-list page should be used" >&5 echo $ECHO_N "checking if experimental address-list page should be used... $ECHO_C" >&6 # Check whether --enable-addrlist-page or --disable-addrlist-page was given. @@ -26777,13 +26792,13 @@ else use_addrlist_page=no fi; -echo "$as_me:26780: result: $use_addrlist_page" >&5 +echo "$as_me:26795: result: $use_addrlist_page" >&5 echo "${ECHO_T}$use_addrlist_page" >&6 test $use_addrlist_page != no && cat >>confdefs.h <<\EOF #define EXP_ADDRLIST_PAGE 1 EOF -echo "$as_me:26786: checking if experimental ascii case-conversion should be used" >&5 +echo "$as_me:26801: checking if experimental ascii case-conversion should be used" >&5 echo $ECHO_N "checking if experimental ascii case-conversion should be used... $ECHO_C" >&6 # Check whether --enable-ascii-ctypes or --disable-ascii-ctypes was given. @@ -26800,13 +26815,13 @@ else use_ascii_ctypes=no fi; -echo "$as_me:26803: result: $use_ascii_ctypes" >&5 +echo "$as_me:26818: result: $use_ascii_ctypes" >&5 echo "${ECHO_T}$use_ascii_ctypes" >&6 test $use_ascii_ctypes != no && cat >>confdefs.h <<\EOF #define EXP_ASCII_CTYPES 1 EOF -echo "$as_me:26809: checking if experimental charset-selection logic should be used" >&5 +echo "$as_me:26824: checking if experimental charset-selection logic should be used" >&5 echo $ECHO_N "checking if experimental charset-selection logic should be used... $ECHO_C" >&6 # Check whether --enable-charset-choice or --disable-charset-choice was given. @@ -26823,13 +26838,13 @@ else use_charset_choice=no fi; -echo "$as_me:26826: result: $use_charset_choice" >&5 +echo "$as_me:26841: result: $use_charset_choice" >&5 echo "${ECHO_T}$use_charset_choice" >&6 test $use_charset_choice != no && cat >>confdefs.h <<\EOF #define EXP_CHARSET_CHOICE 1 EOF -echo "$as_me:26832: checking if experimental CJK logic should be used" >&5 +echo "$as_me:26847: checking if experimental CJK logic should be used" >&5 echo $ECHO_N "checking if experimental CJK logic should be used... $ECHO_C" >&6 # Check whether --enable-cjk or --disable-cjk was given. @@ -26846,13 +26861,13 @@ else use_cjk=no fi; -echo "$as_me:26849: result: $use_cjk" >&5 +echo "$as_me:26864: result: $use_cjk" >&5 echo "${ECHO_T}$use_cjk" >&6 test $use_cjk != no && cat >>confdefs.h <<\EOF #define CJK_EX 1 EOF -echo "$as_me:26855: checking if experimental Japanese UTF-8 logic should be used" >&5 +echo "$as_me:26870: checking if experimental Japanese UTF-8 logic should be used" >&5 echo $ECHO_N "checking if experimental Japanese UTF-8 logic should be used... $ECHO_C" >&6 # Check whether --enable-japanese-utf8 or --disable-japanese-utf8 was given. @@ -26869,7 +26884,7 @@ else use_ja_utf8=no fi; -echo "$as_me:26872: result: $use_ja_utf8" >&5 +echo "$as_me:26887: result: $use_ja_utf8" >&5 echo "${ECHO_T}$use_ja_utf8" >&6 if test $use_ja_utf8 != no ; then cat >>confdefs.h <<\EOF @@ -26914,7 +26929,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 26917 "configure" +#line 26932 "configure" #include "confdefs.h" #include <stdio.h> int @@ -26926,16 +26941,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:26929: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:26944: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:26932: \$? = $ac_status" >&5 + echo "$as_me:26947: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:26935: \"$ac_try\"") >&5 + { (eval echo "$as_me:26950: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:26938: \$? = $ac_status" >&5 + echo "$as_me:26953: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -26952,7 +26967,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}:26955: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:26970: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -26993,7 +27008,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 26996 "configure" +#line 27011 "configure" #include "confdefs.h" #include <stdio.h> int @@ -27005,16 +27020,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27008: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27023: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27011: \$? = $ac_status" >&5 + echo "$as_me:27026: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27014: \"$ac_try\"") >&5 + { (eval echo "$as_me:27029: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27017: \$? = $ac_status" >&5 + echo "$as_me:27032: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -27031,7 +27046,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}:27034: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:27049: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -27047,7 +27062,7 @@ echo "${as_me-configure}:27034: testing adding $cf_add_incdir to include-path .. fi else -{ { echo "$as_me:27050: error: cannot find libiconv under $withval" >&5 +{ { echo "$as_me:27065: error: cannot find libiconv under $withval" >&5 echo "$as_me: error: cannot find libiconv under $withval" >&2;} { (exit 1); exit 1; }; } fi @@ -27072,7 +27087,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}:27075: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:27090: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -27101,7 +27116,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}:27104: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:27119: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -27110,7 +27125,7 @@ echo "${as_me-configure}:27104: testing adding $cf_add_libdir to library-path .. fi else -{ { echo "$as_me:27113: error: cannot find libiconv under $withval" >&5 +{ { echo "$as_me:27128: error: cannot find libiconv under $withval" >&5 echo "$as_me: error: cannot find libiconv under $withval" >&2;} { (exit 1); exit 1; }; } fi @@ -27121,7 +27136,7 @@ done fi; - echo "$as_me:27124: checking for iconv" >&5 + echo "$as_me:27139: checking for iconv" >&5 echo $ECHO_N "checking for iconv... $ECHO_C" >&6 if test "${am_cv_func_iconv+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -27132,10 +27147,10 @@ else cf_cv_header_path_iconv= cf_cv_library_path_iconv= -echo "${as_me-configure}:27135: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me-configure}:27150: testing Starting FIND_LINKAGE(iconv,) ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 27138 "configure" +#line 27153 "configure" #include "confdefs.h" #include <stdlib.h> @@ -27154,16 +27169,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27157: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27172: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27160: \$? = $ac_status" >&5 + echo "$as_me:27175: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27163: \"$ac_try\"") >&5 + { (eval echo "$as_me:27178: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27166: \$? = $ac_status" >&5 + echo "$as_me:27181: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_iconv=yes else @@ -27174,9 +27189,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for iconv library" 1>&6 -echo "${as_me-configure}:27177: testing find linkage for iconv library ..." 1>&5 +echo "${as_me-configure}:27192: testing find linkage for iconv library ..." 1>&5 -echo "${as_me-configure}:27179: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me-configure}:27194: testing Searching for headers in FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -27284,11 +27299,11 @@ cf_search="$cf_header_path_list $cf_search" if test -d $cf_cv_header_path_iconv ; then test -n "$verbose" && echo " ... testing $cf_cv_header_path_iconv" 1>&6 -echo "${as_me-configure}:27287: testing ... testing $cf_cv_header_path_iconv ..." 1>&5 +echo "${as_me-configure}:27302: testing ... testing $cf_cv_header_path_iconv ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_iconv" cat >conftest.$ac_ext <<_ACEOF -#line 27291 "configure" +#line 27306 "configure" #include "confdefs.h" #include <stdlib.h> @@ -27307,21 +27322,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27310: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27325: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27313: \$? = $ac_status" >&5 + echo "$as_me:27328: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27316: \"$ac_try\"") >&5 + { (eval echo "$as_me:27331: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27319: \$? = $ac_status" >&5 + echo "$as_me:27334: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found iconv headers in $cf_cv_header_path_iconv" 1>&6 -echo "${as_me-configure}:27324: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5 +echo "${as_me-configure}:27339: testing ... found iconv headers in $cf_cv_header_path_iconv ..." 1>&5 cf_cv_find_linkage_iconv=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -27339,7 +27354,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_iconv" = maybe ; then -echo "${as_me-configure}:27342: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5 +echo "${as_me-configure}:27357: testing Searching for iconv library in FIND_LINKAGE(iconv,) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -27435,13 +27450,13 @@ cf_search="$cf_library_path_list $cf_search" if test -d $cf_cv_library_path_iconv ; then test -n "$verbose" && echo " ... testing $cf_cv_library_path_iconv" 1>&6 -echo "${as_me-configure}:27438: testing ... testing $cf_cv_library_path_iconv ..." 1>&5 +echo "${as_me-configure}:27453: testing ... testing $cf_cv_library_path_iconv ..." 1>&5 CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-liconv $cf_save_LIBS" LDFLAGS="$cf_save_LDFLAGS -L$cf_cv_library_path_iconv" cat >conftest.$ac_ext <<_ACEOF -#line 27444 "configure" +#line 27459 "configure" #include "confdefs.h" #include <stdlib.h> @@ -27460,21 +27475,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:27463: \"$ac_link\"") >&5 +if { (eval echo "$as_me:27478: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:27466: \$? = $ac_status" >&5 + echo "$as_me:27481: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:27469: \"$ac_try\"") >&5 + { (eval echo "$as_me:27484: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27472: \$? = $ac_status" >&5 + echo "$as_me:27487: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found iconv library in $cf_cv_library_path_iconv" 1>&6 -echo "${as_me-configure}:27477: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5 +echo "${as_me-configure}:27492: testing ... found iconv library in $cf_cv_library_path_iconv ..." 1>&5 cf_cv_find_linkage_iconv=yes cf_cv_library_file_iconv="-liconv" @@ -27510,7 +27525,7 @@ am_cv_func_iconv="no, consider installing GNU libiconv" fi fi -echo "$as_me:27513: result: $am_cv_func_iconv" >&5 +echo "$as_me:27528: result: $am_cv_func_iconv" >&5 echo "${ECHO_T}$am_cv_func_iconv" >&6 if test "$am_cv_func_iconv" = yes; then @@ -27519,14 +27534,14 @@ cat >>confdefs.h <<\EOF #define HAVE_ICONV 1 EOF - echo "$as_me:27522: checking if the declaration of iconv() needs const." >&5 + echo "$as_me:27537: checking if the declaration of iconv() needs const." >&5 echo $ECHO_N "checking if the declaration of iconv() needs const.... $ECHO_C" >&6 if test "${am_cv_proto_iconv_const+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 27529 "configure" +#line 27544 "configure" #include "confdefs.h" #include <stdlib.h> @@ -27551,16 +27566,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27554: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27569: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27557: \$? = $ac_status" >&5 + echo "$as_me:27572: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27560: \"$ac_try\"") >&5 + { (eval echo "$as_me:27575: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27563: \$? = $ac_status" >&5 + echo "$as_me:27578: \$? = $ac_status" >&5 (exit $ac_status); }; }; then am_cv_proto_iconv_const=no else @@ -27570,7 +27585,7 @@ am_cv_proto_iconv_const=yes fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:27573: result: $am_cv_proto_iconv_const" >&5 +echo "$as_me:27588: result: $am_cv_proto_iconv_const" >&5 echo "${ECHO_T}$am_cv_proto_iconv_const" >&6 if test "$am_cv_proto_iconv_const" = yes ; then @@ -27612,7 +27627,7 @@ if test -n "$cf_cv_header_path_iconv" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 27615 "configure" +#line 27630 "configure" #include "confdefs.h" #include <stdio.h> int @@ -27624,16 +27639,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:27627: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:27642: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:27630: \$? = $ac_status" >&5 + echo "$as_me:27645: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:27633: \"$ac_try\"") >&5 + { (eval echo "$as_me:27648: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:27636: \$? = $ac_status" >&5 + echo "$as_me:27651: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -27650,7 +27665,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}:27653: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:27668: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -27687,7 +27702,7 @@ if test -n "$cf_cv_library_path_iconv" ; then if test "$cf_have_libdir" = no ; then test -n "$verbose" && echo " adding $cf_add_libdir to library-path" 1>&6 -echo "${as_me-configure}:27690: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:27705: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -27711,7 +27726,7 @@ curses|slang|ncurses*) esac if test "$use_dft_colors" != no ; then -echo "$as_me:27714: checking if you want to use default-colors" >&5 +echo "$as_me:27729: checking if you want to use default-colors" >&5 echo $ECHO_N "checking if you want to use default-colors... $ECHO_C" >&6 # Check whether --enable-default-colors or --disable-default-colors was given. @@ -27728,7 +27743,7 @@ else use_dft_colors=no fi; -echo "$as_me:27731: result: $use_dft_colors" >&5 +echo "$as_me:27746: result: $use_dft_colors" >&5 echo "${ECHO_T}$use_dft_colors" >&6 test $use_dft_colors = "yes" && cat >>confdefs.h <<\EOF #define USE_DEFAULT_COLORS 1 @@ -27736,7 +27751,7 @@ EOF fi -echo "$as_me:27739: checking if experimental keyboard-layout logic should be used" >&5 +echo "$as_me:27754: checking if experimental keyboard-layout logic should be used" >&5 echo $ECHO_N "checking if experimental keyboard-layout logic should be used... $ECHO_C" >&6 # Check whether --enable-kbd-layout or --disable-kbd-layout was given. @@ -27753,13 +27768,13 @@ else use_kbd_layout=no fi; -echo "$as_me:27756: result: $use_kbd_layout" >&5 +echo "$as_me:27771: result: $use_kbd_layout" >&5 echo "${ECHO_T}$use_kbd_layout" >&6 test $use_kbd_layout != no && cat >>confdefs.h <<\EOF #define EXP_KEYBOARD_LAYOUT 1 EOF -echo "$as_me:27762: checking if experimental nested-table logic should be used" >&5 +echo "$as_me:27777: checking if experimental nested-table logic should be used" >&5 echo $ECHO_N "checking if experimental nested-table logic should be used... $ECHO_C" >&6 # Check whether --enable-nested-tables or --disable-nested-tables was given. @@ -27776,13 +27791,13 @@ else use_nested_tables=no fi; -echo "$as_me:27779: result: $use_nested_tables" >&5 +echo "$as_me:27794: result: $use_nested_tables" >&5 echo "${ECHO_T}$use_nested_tables" >&6 test $use_nested_tables != no && cat >>confdefs.h <<\EOF #define EXP_NESTED_TABLES 1 EOF -echo "$as_me:27785: checking if progress-bar code should be used" >&5 +echo "$as_me:27800: 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. @@ -27799,13 +27814,13 @@ else use_progressbar=no fi; -echo "$as_me:27802: result: $use_progressbar" >&5 +echo "$as_me:27817: 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:27808: checking if scrollbar code should be used" >&5 +echo "$as_me:27823: 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. @@ -27822,10 +27837,10 @@ else use_scrollbar=no fi; -echo "$as_me:27825: result: $use_scrollbar" >&5 +echo "$as_me:27840: result: $use_scrollbar" >&5 echo "${ECHO_T}$use_scrollbar" >&6 -echo "$as_me:27828: checking if sessions code should be used" >&5 +echo "$as_me:27843: checking if sessions code should be used" >&5 echo $ECHO_N "checking if sessions code should be used... $ECHO_C" >&6 # Check whether --enable-sessions or --disable-sessions was given. @@ -27842,7 +27857,7 @@ else use_sessions=no fi; -echo "$as_me:27845: result: $use_sessions" >&5 +echo "$as_me:27860: result: $use_sessions" >&5 echo "${ECHO_T}$use_sessions" >&6 if test $use_sessions != no ; then cat >>confdefs.h <<\EOF @@ -27852,7 +27867,7 @@ EOF EXTRA_OBJS="$EXTRA_OBJS LYSession\$o" fi -echo "$as_me:27855: checking if session-caching code should be used" >&5 +echo "$as_me:27870: checking if session-caching code should be used" >&5 echo $ECHO_N "checking if session-caching code should be used... $ECHO_C" >&6 # Check whether --enable-session-cache or --disable-session-cache was given. @@ -27869,7 +27884,7 @@ else use_session_cache=no fi; -echo "$as_me:27872: result: $use_session_cache" >&5 +echo "$as_me:27887: result: $use_session_cache" >&5 echo "${ECHO_T}$use_session_cache" >&6 if test $use_session_cache != no ; then cat >>confdefs.h <<\EOF @@ -27878,7 +27893,7 @@ EOF fi -echo "$as_me:27881: checking if alternative line-edit bindings should be used" >&5 +echo "$as_me:27896: checking if alternative line-edit bindings should be used" >&5 echo $ECHO_N "checking if alternative line-edit bindings should be used... $ECHO_C" >&6 # Check whether --enable-alt-bindings or --disable-alt-bindings was given. @@ -27895,13 +27910,13 @@ else use_alt_bindings=yes fi; -echo "$as_me:27898: result: $use_alt_bindings" >&5 +echo "$as_me:27913: result: $use_alt_bindings" >&5 echo "${ECHO_T}$use_alt_bindings" >&6 test $use_alt_bindings != no && cat >>confdefs.h <<\EOF #define EXP_ALT_BINDINGS 1 EOF -echo "$as_me:27904: checking if you want to use extended HTML DTD logic" >&5 +echo "$as_me:27919: checking if you want to use extended HTML DTD logic" >&5 echo $ECHO_N "checking if you want to use extended HTML DTD logic... $ECHO_C" >&6 # Check whether --enable-extended-dtd or --disable-extended-dtd was given. @@ -27918,13 +27933,13 @@ else use_ext_htmldtd=yes fi; -echo "$as_me:27921: result: $use_ext_htmldtd" >&5 +echo "$as_me:27936: result: $use_ext_htmldtd" >&5 echo "${ECHO_T}$use_ext_htmldtd" >&6 test $use_ext_htmldtd = "no" && cat >>confdefs.h <<\EOF #define NO_EXTENDED_HTMLDTD 1 EOF -echo "$as_me:27927: checking if file-upload logic should be used" >&5 +echo "$as_me:27942: checking if file-upload logic should be used" >&5 echo $ECHO_N "checking if file-upload logic should be used... $ECHO_C" >&6 # Check whether --enable-file-upload or --disable-file-upload was given. @@ -27941,13 +27956,13 @@ else use_file_upload=yes fi; -echo "$as_me:27944: result: $use_file_upload" >&5 +echo "$as_me:27959: result: $use_file_upload" >&5 echo "${ECHO_T}$use_file_upload" >&6 test $use_file_upload != no && cat >>confdefs.h <<\EOF #define USE_FILE_UPLOAD 1 EOF -echo "$as_me:27950: checking if element-justification logic should be used" >&5 +echo "$as_me:27965: 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. @@ -27964,13 +27979,13 @@ else use_justify_elts=yes fi; -echo "$as_me:27967: result: $use_justify_elts" >&5 +echo "$as_me:27982: result: $use_justify_elts" >&5 echo "${ECHO_T}$use_justify_elts" >&6 test $use_justify_elts != no && cat >>confdefs.h <<\EOF #define EXP_JUSTIFY_ELTS 1 EOF -echo "$as_me:27973: checking if partial-display should be used" >&5 +echo "$as_me:27988: 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. @@ -27987,13 +28002,13 @@ else use_partial_display=yes fi; -echo "$as_me:27990: result: $use_partial_display" >&5 +echo "$as_me:28005: 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:27996: checking if persistent-cookie logic should be used" >&5 +echo "$as_me:28011: 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. @@ -28010,13 +28025,13 @@ else use_filed_cookies=yes fi; -echo "$as_me:28013: result: $use_filed_cookies" >&5 +echo "$as_me:28028: 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:28019: checking if html source should be colorized" >&5 +echo "$as_me:28034: 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. @@ -28033,13 +28048,13 @@ else use_prettysrc=yes fi; -echo "$as_me:28036: result: $use_prettysrc" >&5 +echo "$as_me:28051: 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:28042: checking if read-progress message should show ETA" >&5 +echo "$as_me:28057: 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. @@ -28056,13 +28071,13 @@ else use_read_eta=yes fi; -echo "$as_me:28059: result: $use_read_eta" >&5 +echo "$as_me:28074: 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:28065: checking if source caching should be used" >&5 +echo "$as_me:28080: 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. @@ -28079,13 +28094,13 @@ else use_source_cache=yes fi; -echo "$as_me:28082: result: $use_source_cache" >&5 +echo "$as_me:28097: 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:28088: checking if you want to use external commands" >&5 +echo "$as_me:28103: 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. @@ -28102,7 +28117,7 @@ else use_externs=no fi; -echo "$as_me:28105: result: $use_externs" >&5 +echo "$as_me:28120: result: $use_externs" >&5 echo "${ECHO_T}$use_externs" >&6 if test $use_externs != "no" ; then cat >>confdefs.h <<\EOF @@ -28112,7 +28127,7 @@ EOF EXTRA_OBJS="$EXTRA_OBJS LYExtern\$o" fi -echo "$as_me:28115: checking if you want to use setfont support" >&5 +echo "$as_me:28130: 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. @@ -28129,7 +28144,7 @@ else use_setfont=no fi; -echo "$as_me:28132: result: $use_setfont" >&5 +echo "$as_me:28147: result: $use_setfont" >&5 echo "${ECHO_T}$use_setfont" >&6 if test $use_setfont = yes ; then case $host_os in @@ -28140,7 +28155,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:28143: checking for $ac_word" >&5 +echo "$as_me:28158: 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 @@ -28157,7 +28172,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:28160: found $ac_dir/$ac_word" >&5 + echo "$as_me:28175: found $ac_dir/$ac_word" >&5 break fi done @@ -28168,10 +28183,10 @@ fi SETFONT=$ac_cv_path_SETFONT if test -n "$SETFONT"; then - echo "$as_me:28171: result: $SETFONT" >&5 + echo "$as_me:28186: result: $SETFONT" >&5 echo "${ECHO_T}$SETFONT" >&6 else - echo "$as_me:28174: result: no" >&5 + echo "$as_me:28189: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -28230,7 +28245,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:28233: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:28248: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define SETFONT_PATH "$cf_path_prog" @@ -28247,19 +28262,19 @@ fi SETFONT=built-in test -n "$verbose" && echo " Assume $host_os has font-switching" 1>&6 -echo "${as_me-configure}:28250: testing Assume $host_os has font-switching ..." 1>&5 +echo "${as_me-configure}:28265: 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}:28257: testing Assume $host_os has no font-switching ..." 1>&5 +echo "${as_me-configure}:28272: testing Assume $host_os has no font-switching ..." 1>&5 ;; esac if test -z "$SETFONT" ; then - { echo "$as_me:28262: WARNING: Cannot find a font-setting program" >&5 + { echo "$as_me:28277: WARNING: Cannot find a font-setting program" >&5 echo "$as_me: WARNING: Cannot find a font-setting program" >&2;} elif test "$SETFONT" != unknown ; then cat >>confdefs.h <<\EOF @@ -28269,7 +28284,7 @@ EOF fi fi -echo "$as_me:28272: checking if you want cgi-link support" >&5 +echo "$as_me:28287: 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. @@ -28285,10 +28300,10 @@ EOF else enableval=no fi; -echo "$as_me:28288: result: $enableval" >&5 +echo "$as_me:28303: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 -echo "$as_me:28291: checking if you want change-exec support" >&5 +echo "$as_me:28306: 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. @@ -28305,13 +28320,13 @@ else use_change_exec=no fi; -echo "$as_me:28308: result: $use_change_exec" >&5 +echo "$as_me:28323: 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:28314: checking if you want exec-links support" >&5 +echo "$as_me:28329: 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. @@ -28328,13 +28343,13 @@ else use_exec_links=$enableval fi; -echo "$as_me:28331: result: $use_exec_links" >&5 +echo "$as_me:28346: 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:28337: checking if you want exec-scripts support" >&5 +echo "$as_me:28352: 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. @@ -28351,13 +28366,13 @@ else use_exec_scripts=$enableval fi; -echo "$as_me:28354: result: $use_exec_scripts" >&5 +echo "$as_me:28369: 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:28360: checking if you want internal-links feature" >&5 +echo "$as_me:28375: 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. @@ -28374,13 +28389,13 @@ else use_internal_links=no fi; -echo "$as_me:28377: result: $use_internal_links" >&5 +echo "$as_me:28392: result: $use_internal_links" >&5 echo "${ECHO_T}$use_internal_links" >&6 test $use_internal_links = no && cat >>confdefs.h <<\EOF #define DONT_TRACK_INTERNAL_LINKS 1 EOF -echo "$as_me:28383: checking if you want to fork NSL requests" >&5 +echo "$as_me:28398: 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. @@ -28397,7 +28412,7 @@ else use_nsl_fork=no fi; -echo "$as_me:28400: result: $use_nsl_fork" >&5 +echo "$as_me:28415: result: $use_nsl_fork" >&5 echo "${ECHO_T}$use_nsl_fork" >&6 if test $use_nsl_fork = yes ; then case $host_os in @@ -28416,7 +28431,7 @@ EOF esac fi -echo "$as_me:28419: checking if you want to log URL requests via syslog" >&5 +echo "$as_me:28434: 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. @@ -28433,13 +28448,13 @@ else use_syslog=no fi; -echo "$as_me:28436: result: $use_syslog" >&5 +echo "$as_me:28451: 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:28442: checking if you want to underline links" >&5 +echo "$as_me:28457: 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. @@ -28456,7 +28471,7 @@ else use_underline=no fi; -echo "$as_me:28459: result: $use_underline" >&5 +echo "$as_me:28474: result: $use_underline" >&5 echo "${ECHO_T}$use_underline" >&6 test $use_underline = yes && cat >>confdefs.h <<\EOF #define UNDERLINE_LINKS 1 @@ -28466,7 +28481,7 @@ test $use_underline = no && cat >>confdefs.h <<\EOF #define UNDERLINE_LINKS 0 EOF -echo "$as_me:28469: checking if help files should be gzip'ed" >&5 +echo "$as_me:28484: 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. @@ -28483,10 +28498,10 @@ else use_gzip_help=no fi; -echo "$as_me:28486: result: $use_gzip_help" >&5 +echo "$as_me:28501: result: $use_gzip_help" >&5 echo "${ECHO_T}$use_gzip_help" >&6 -echo "$as_me:28489: checking if you want to use libbz2 for decompression of some bzip2 files" >&5 +echo "$as_me:28504: 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. @@ -28496,7 +28511,7 @@ if test "${with_bzlib+set}" = set; then else use_bzlib=no fi; -echo "$as_me:28499: result: $use_bzlib" >&5 +echo "$as_me:28514: result: $use_bzlib" >&5 echo "${ECHO_T}$use_bzlib" >&6 if test ".$use_bzlib" != ".no" ; then @@ -28535,7 +28550,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 28538 "configure" +#line 28553 "configure" #include "confdefs.h" #include <stdio.h> int @@ -28547,16 +28562,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28550: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28565: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28553: \$? = $ac_status" >&5 + echo "$as_me:28568: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28556: \"$ac_try\"") >&5 + { (eval echo "$as_me:28571: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28559: \$? = $ac_status" >&5 + echo "$as_me:28574: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -28573,7 +28588,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}:28576: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:28591: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -28614,7 +28629,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 28617 "configure" +#line 28632 "configure" #include "confdefs.h" #include <stdio.h> int @@ -28626,16 +28641,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28629: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28644: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28632: \$? = $ac_status" >&5 + echo "$as_me:28647: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28635: \"$ac_try\"") >&5 + { (eval echo "$as_me:28650: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28638: \$? = $ac_status" >&5 + echo "$as_me:28653: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -28652,7 +28667,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}:28655: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:28670: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -28668,7 +28683,7 @@ echo "${as_me-configure}:28655: testing adding $cf_add_incdir to include-path .. fi else -{ { echo "$as_me:28671: error: cannot find under $use_bzlib" >&5 +{ { echo "$as_me:28686: error: cannot find under $use_bzlib" >&5 echo "$as_me: error: cannot find under $use_bzlib" >&2;} { (exit 1); exit 1; }; } fi @@ -28693,7 +28708,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}:28696: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:28711: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -28722,7 +28737,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}:28725: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:28740: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -28731,7 +28746,7 @@ echo "${as_me-configure}:28725: testing adding $cf_add_libdir to library-path .. fi else -{ { echo "$as_me:28734: error: cannot find under $use_bzlib" >&5 +{ { echo "$as_me:28749: error: cannot find under $use_bzlib" >&5 echo "$as_me: error: cannot find under $use_bzlib" >&2;} { (exit 1); exit 1; }; } fi @@ -28745,10 +28760,10 @@ done cf_cv_header_path_bz2= cf_cv_library_path_bz2= -echo "${as_me-configure}:28748: testing Starting FIND_LINKAGE(bz2,bzlib) ..." 1>&5 +echo "${as_me-configure}:28763: testing Starting FIND_LINKAGE(bz2,bzlib) ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 28751 "configure" +#line 28766 "configure" #include "confdefs.h" #include <stdio.h> @@ -28765,16 +28780,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28768: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28783: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28771: \$? = $ac_status" >&5 + echo "$as_me:28786: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28774: \"$ac_try\"") >&5 + { (eval echo "$as_me:28789: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28777: \$? = $ac_status" >&5 + echo "$as_me:28792: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_bz2=yes else @@ -28785,9 +28800,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for bz2 library" 1>&6 -echo "${as_me-configure}:28788: testing find linkage for bz2 library ..." 1>&5 +echo "${as_me-configure}:28803: testing find linkage for bz2 library ..." 1>&5 -echo "${as_me-configure}:28790: testing Searching for headers in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 +echo "${as_me-configure}:28805: testing Searching for headers in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -28895,11 +28910,11 @@ cf_search="$cf_header_path_list $cf_search" 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}:28898: testing ... testing $cf_cv_header_path_bz2 ..." 1>&5 +echo "${as_me-configure}:28913: testing ... testing $cf_cv_header_path_bz2 ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_bz2" cat >conftest.$ac_ext <<_ACEOF -#line 28902 "configure" +#line 28917 "configure" #include "confdefs.h" #include <stdio.h> @@ -28916,21 +28931,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:28919: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:28934: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:28922: \$? = $ac_status" >&5 + echo "$as_me:28937: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:28925: \"$ac_try\"") >&5 + { (eval echo "$as_me:28940: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28928: \$? = $ac_status" >&5 + echo "$as_me:28943: \$? = $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}:28933: testing ... found bz2 headers in $cf_cv_header_path_bz2 ..." 1>&5 +echo "${as_me-configure}:28948: testing ... found bz2 headers in $cf_cv_header_path_bz2 ..." 1>&5 cf_cv_find_linkage_bz2=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -28948,7 +28963,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_bz2" = maybe ; then -echo "${as_me-configure}:28951: testing Searching for bz2 library in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 +echo "${as_me-configure}:28966: testing Searching for bz2 library in FIND_LINKAGE(bz2,bzlib) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -28956,7 +28971,7 @@ echo "${as_me-configure}:28951: testing Searching for bz2 library in FIND_LINKAG CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lbz2 $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 28959 "configure" +#line 28974 "configure" #include "confdefs.h" #include <stdio.h> @@ -28973,21 +28988,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:28976: \"$ac_link\"") >&5 +if { (eval echo "$as_me:28991: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:28979: \$? = $ac_status" >&5 + echo "$as_me:28994: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:28982: \"$ac_try\"") >&5 + { (eval echo "$as_me:28997: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:28985: \$? = $ac_status" >&5 + echo "$as_me:29000: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found bz2 library in system" 1>&6 -echo "${as_me-configure}:28990: testing ... found bz2 library in system ..." 1>&5 +echo "${as_me-configure}:29005: testing ... found bz2 library in system ..." 1>&5 cf_cv_find_linkage_bz2=yes else @@ -29089,13 +29104,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}:29092: testing ... testing $cf_cv_library_path_bz2 ..." 1>&5 +echo "${as_me-configure}:29107: 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 29098 "configure" +#line 29113 "configure" #include "confdefs.h" #include <stdio.h> @@ -29112,21 +29127,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29115: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29130: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29118: \$? = $ac_status" >&5 + echo "$as_me:29133: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29121: \"$ac_try\"") >&5 + { (eval echo "$as_me:29136: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29124: \$? = $ac_status" >&5 + echo "$as_me:29139: \$? = $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}:29129: testing ... found bz2 library in $cf_cv_library_path_bz2 ..." 1>&5 +echo "${as_me-configure}:29144: testing ... found bz2 library in $cf_cv_library_path_bz2 ..." 1>&5 cf_cv_find_linkage_bz2=yes cf_cv_library_file_bz2="-lbz2" @@ -29181,7 +29196,7 @@ if test -n "$cf_cv_header_path_bz2" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 29184 "configure" +#line 29199 "configure" #include "confdefs.h" #include <stdio.h> int @@ -29193,16 +29208,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29196: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29211: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29199: \$? = $ac_status" >&5 + echo "$as_me:29214: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29202: \"$ac_try\"") >&5 + { (eval echo "$as_me:29217: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29205: \$? = $ac_status" >&5 + echo "$as_me:29220: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -29219,7 +29234,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}:29222: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:29237: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -29253,7 +29268,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}:29256: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:29271: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -29264,7 +29279,7 @@ fi LIBS="-lbz2 $LIBS" else -{ echo "$as_me:29267: WARNING: Cannot find bz2 library" >&5 +{ echo "$as_me:29282: WARNING: Cannot find bz2 library" >&5 echo "$as_me: WARNING: Cannot find bz2 library" >&2;} fi @@ -29274,7 +29289,7 @@ EOF fi -echo "$as_me:29277: checking if you want to use zlib for decompression of some gzip files" >&5 +echo "$as_me:29292: 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. @@ -29284,7 +29299,7 @@ if test "${with_zlib+set}" = set; then else use_zlib=no fi; -echo "$as_me:29287: result: $use_zlib" >&5 +echo "$as_me:29302: result: $use_zlib" >&5 echo "${ECHO_T}$use_zlib" >&6 if test ".$use_zlib" != ".no" ; then @@ -29323,7 +29338,7 @@ if test -n "$cf_searchpath/include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 29326 "configure" +#line 29341 "configure" #include "confdefs.h" #include <stdio.h> int @@ -29335,16 +29350,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29338: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29353: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29341: \$? = $ac_status" >&5 + echo "$as_me:29356: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29344: \"$ac_try\"") >&5 + { (eval echo "$as_me:29359: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29347: \$? = $ac_status" >&5 + echo "$as_me:29362: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -29361,7 +29376,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}:29364: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:29379: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -29402,7 +29417,7 @@ if test -n "$cf_searchpath/../include" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 29405 "configure" +#line 29420 "configure" #include "confdefs.h" #include <stdio.h> int @@ -29414,16 +29429,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29417: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29432: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29420: \$? = $ac_status" >&5 + echo "$as_me:29435: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29423: \"$ac_try\"") >&5 + { (eval echo "$as_me:29438: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29426: \$? = $ac_status" >&5 + echo "$as_me:29441: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -29440,7 +29455,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}:29443: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:29458: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -29456,7 +29471,7 @@ echo "${as_me-configure}:29443: testing adding $cf_add_incdir to include-path .. fi else -{ { echo "$as_me:29459: error: cannot find under $use_zlib" >&5 +{ { echo "$as_me:29474: error: cannot find under $use_zlib" >&5 echo "$as_me: error: cannot find under $use_zlib" >&2;} { (exit 1); exit 1; }; } fi @@ -29481,7 +29496,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}:29484: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:29499: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -29510,7 +29525,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}:29513: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:29528: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -29519,7 +29534,7 @@ echo "${as_me-configure}:29513: testing adding $cf_add_libdir to library-path .. fi else -{ { echo "$as_me:29522: error: cannot find under $use_zlib" >&5 +{ { echo "$as_me:29537: error: cannot find under $use_zlib" >&5 echo "$as_me: error: cannot find under $use_zlib" >&2;} { (exit 1); exit 1; }; } fi @@ -29533,10 +29548,10 @@ done cf_cv_header_path_z= cf_cv_library_path_z= -echo "${as_me-configure}:29536: testing Starting FIND_LINKAGE(z,zlib) ..." 1>&5 +echo "${as_me-configure}:29551: testing Starting FIND_LINKAGE(z,zlib) ..." 1>&5 cat >conftest.$ac_ext <<_ACEOF -#line 29539 "configure" +#line 29554 "configure" #include "confdefs.h" #include <zlib.h> @@ -29552,16 +29567,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29555: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29570: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29558: \$? = $ac_status" >&5 + echo "$as_me:29573: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29561: \"$ac_try\"") >&5 + { (eval echo "$as_me:29576: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29564: \$? = $ac_status" >&5 + echo "$as_me:29579: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_find_linkage_z=yes else @@ -29572,9 +29587,9 @@ cat conftest.$ac_ext >&5 test -n "$verbose" && echo " find linkage for z library" 1>&6 -echo "${as_me-configure}:29575: testing find linkage for z library ..." 1>&5 +echo "${as_me-configure}:29590: testing find linkage for z library ..." 1>&5 -echo "${as_me-configure}:29577: testing Searching for headers in FIND_LINKAGE(z,zlib) ..." 1>&5 +echo "${as_me-configure}:29592: testing Searching for headers in FIND_LINKAGE(z,zlib) ..." 1>&5 cf_save_CPPFLAGS="$CPPFLAGS" cf_test_CPPFLAGS="$CPPFLAGS" @@ -29682,11 +29697,11 @@ cf_search="$cf_header_path_list $cf_search" 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}:29685: testing ... testing $cf_cv_header_path_z ..." 1>&5 +echo "${as_me-configure}:29700: testing ... testing $cf_cv_header_path_z ..." 1>&5 CPPFLAGS="$cf_save_CPPFLAGS -I$cf_cv_header_path_z" cat >conftest.$ac_ext <<_ACEOF -#line 29689 "configure" +#line 29704 "configure" #include "confdefs.h" #include <zlib.h> @@ -29702,21 +29717,21 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29705: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29720: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29708: \$? = $ac_status" >&5 + echo "$as_me:29723: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29711: \"$ac_try\"") >&5 + { (eval echo "$as_me:29726: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29714: \$? = $ac_status" >&5 + echo "$as_me:29729: \$? = $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}:29719: testing ... found z headers in $cf_cv_header_path_z ..." 1>&5 +echo "${as_me-configure}:29734: testing ... found z headers in $cf_cv_header_path_z ..." 1>&5 cf_cv_find_linkage_z=maybe cf_test_CPPFLAGS="$CPPFLAGS" @@ -29734,7 +29749,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext if test "$cf_cv_find_linkage_z" = maybe ; then -echo "${as_me-configure}:29737: testing Searching for z library in FIND_LINKAGE(z,zlib) ..." 1>&5 +echo "${as_me-configure}:29752: testing Searching for z library in FIND_LINKAGE(z,zlib) ..." 1>&5 cf_save_LIBS="$LIBS" cf_save_LDFLAGS="$LDFLAGS" @@ -29742,7 +29757,7 @@ echo "${as_me-configure}:29737: testing Searching for z library in FIND_LINKAGE( CPPFLAGS="$cf_test_CPPFLAGS" LIBS="-lz $cf_save_LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 29745 "configure" +#line 29760 "configure" #include "confdefs.h" #include <zlib.h> @@ -29758,21 +29773,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29761: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29776: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29764: \$? = $ac_status" >&5 + echo "$as_me:29779: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29767: \"$ac_try\"") >&5 + { (eval echo "$as_me:29782: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29770: \$? = $ac_status" >&5 + echo "$as_me:29785: \$? = $ac_status" >&5 (exit $ac_status); }; }; then test -n "$verbose" && echo " ... found z library in system" 1>&6 -echo "${as_me-configure}:29775: testing ... found z library in system ..." 1>&5 +echo "${as_me-configure}:29790: testing ... found z library in system ..." 1>&5 cf_cv_find_linkage_z=yes else @@ -29874,13 +29889,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}:29877: testing ... testing $cf_cv_library_path_z ..." 1>&5 +echo "${as_me-configure}:29892: 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 29883 "configure" +#line 29898 "configure" #include "confdefs.h" #include <zlib.h> @@ -29896,21 +29911,21 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:29899: \"$ac_link\"") >&5 +if { (eval echo "$as_me:29914: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:29902: \$? = $ac_status" >&5 + echo "$as_me:29917: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:29905: \"$ac_try\"") >&5 + { (eval echo "$as_me:29920: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29908: \$? = $ac_status" >&5 + echo "$as_me:29923: \$? = $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}:29913: testing ... found z library in $cf_cv_library_path_z ..." 1>&5 +echo "${as_me-configure}:29928: testing ... found z library in $cf_cv_library_path_z ..." 1>&5 cf_cv_find_linkage_z=yes cf_cv_library_file_z="-lz" @@ -29965,7 +29980,7 @@ if test -n "$cf_cv_header_path_z" ; then cf_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" cat >conftest.$ac_ext <<_ACEOF -#line 29968 "configure" +#line 29983 "configure" #include "confdefs.h" #include <stdio.h> int @@ -29977,16 +29992,16 @@ printf("Hello") } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:29980: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:29995: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:29983: \$? = $ac_status" >&5 + echo "$as_me:29998: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:29986: \"$ac_try\"") >&5 + { (eval echo "$as_me:30001: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:29989: \$? = $ac_status" >&5 + echo "$as_me:30004: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -30003,7 +30018,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}:30006: testing adding $cf_add_incdir to include-path ..." 1>&5 +echo "${as_me-configure}:30021: testing adding $cf_add_incdir to include-path ..." 1>&5 CPPFLAGS="$CPPFLAGS -I$cf_add_incdir" @@ -30037,7 +30052,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}:30040: testing adding $cf_add_libdir to library-path ..." 1>&5 +echo "${as_me-configure}:30055: testing adding $cf_add_libdir to library-path ..." 1>&5 LDFLAGS="-L$cf_add_libdir $LDFLAGS" fi @@ -30048,7 +30063,7 @@ fi LIBS="-lz $LIBS" else -{ echo "$as_me:30051: WARNING: Cannot find z library" >&5 +{ echo "$as_me:30066: WARNING: Cannot find z library" >&5 echo "$as_me: WARNING: Cannot find z library" >&2;} fi @@ -30058,7 +30073,7 @@ EOF fi -echo "$as_me:30061: checking if you want to exclude FINGER code" >&5 +echo "$as_me:30076: 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. @@ -30075,13 +30090,13 @@ else use_finger=no fi; -echo "$as_me:30078: result: $use_finger" >&5 +echo "$as_me:30093: 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:30084: checking if you want to exclude GOPHER code" >&5 +echo "$as_me:30099: 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. @@ -30098,13 +30113,13 @@ else use_gopher=no fi; -echo "$as_me:30101: result: $use_gopher" >&5 +echo "$as_me:30116: 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:30107: checking if you want to exclude NEWS code" >&5 +echo "$as_me:30122: 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. @@ -30121,13 +30136,13 @@ else use_news=no fi; -echo "$as_me:30124: result: $use_news" >&5 +echo "$as_me:30139: 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:30130: checking if you want to exclude FTP code" >&5 +echo "$as_me:30145: 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. @@ -30144,7 +30159,7 @@ else use_ftp=no fi; -echo "$as_me:30147: result: $use_ftp" >&5 +echo "$as_me:30162: result: $use_ftp" >&5 echo "${ECHO_T}$use_ftp" >&6 test $use_ftp != "no" && cat >>confdefs.h <<\EOF #define DISABLE_FTP 1 @@ -30152,7 +30167,7 @@ EOF # All DirEd functions that were enabled on compilation can be disabled # or modified at run time via DIRED_MENU symbols in lynx.cfg. -echo "$as_me:30155: checking if directory-editor code should be used" >&5 +echo "$as_me:30170: 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. @@ -30169,7 +30184,7 @@ else use_dired=yes fi; -echo "$as_me:30172: result: $use_dired" >&5 +echo "$as_me:30187: result: $use_dired" >&5 echo "${ECHO_T}$use_dired" >&6 if test ".$use_dired" != ".no" ; then @@ -30178,7 +30193,7 @@ if test ".$use_dired" != ".no" ; then #define DIRED_SUPPORT 1 EOF - echo "$as_me:30181: checking if you wish to allow extracting from archives via DirEd" >&5 + echo "$as_me:30196: 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. @@ -30194,10 +30209,10 @@ EOF else enableval=yes fi; - echo "$as_me:30197: result: $enableval" >&5 + echo "$as_me:30212: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:30200: checking if DirEd mode should override keys" >&5 + echo "$as_me:30215: 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. @@ -30219,10 +30234,10 @@ else EOF fi; - echo "$as_me:30222: result: $enableval" >&5 + echo "$as_me:30237: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:30225: checking if you wish to allow permissions commands via DirEd" >&5 + echo "$as_me:30240: 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. @@ -30244,10 +30259,10 @@ else EOF fi; - echo "$as_me:30247: result: $enableval" >&5 + echo "$as_me:30262: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:30250: checking if you wish to allow executable-permission commands via DirEd" >&5 + echo "$as_me:30265: 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. @@ -30263,10 +30278,10 @@ EOF else enableval=yes fi; - echo "$as_me:30266: result: $enableval" >&5 + echo "$as_me:30281: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:30269: checking if you wish to allow \"tar\" commands from DirEd" >&5 + echo "$as_me:30284: 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. @@ -30288,10 +30303,10 @@ else EOF fi; - echo "$as_me:30291: result: $enableval" >&5 + echo "$as_me:30306: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:30294: checking if you wish to allow \"uudecode\" commands from DirEd" >&5 + echo "$as_me:30309: 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. @@ -30313,10 +30328,10 @@ else EOF fi; - echo "$as_me:30316: result: $enableval" >&5 + echo "$as_me:30331: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:30319: checking if you wish to allow \"zip\" and \"unzip\" commands from DirEd" >&5 + echo "$as_me:30334: 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. @@ -30338,10 +30353,10 @@ else EOF fi; - echo "$as_me:30341: result: $enableval" >&5 + echo "$as_me:30356: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 - echo "$as_me:30344: checking if you wish to allow \"gzip\" and \"gunzip\" commands from DirEd" >&5 + echo "$as_me:30359: 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. @@ -30363,11 +30378,11 @@ else EOF fi; - echo "$as_me:30366: result: $enableval" >&5 + echo "$as_me:30381: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 fi -echo "$as_me:30370: checking if you want long-directory listings" >&5 +echo "$as_me:30385: 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. @@ -30389,10 +30404,10 @@ else EOF fi; -echo "$as_me:30392: result: $enableval" >&5 +echo "$as_me:30407: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 -echo "$as_me:30395: checking if parent-directory references are permitted" >&5 +echo "$as_me:30410: 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. @@ -30408,7 +30423,7 @@ EOF else enableval=yes fi; -echo "$as_me:30411: result: $enableval" >&5 +echo "$as_me:30426: result: $enableval" >&5 echo "${ECHO_T}$enableval" >&6 test -z "$TELNET" && TELNET=telnet @@ -30416,7 +30431,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:30419: checking for $ac_word" >&5 +echo "$as_me:30434: 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 @@ -30433,7 +30448,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:30436: found $ac_dir/$ac_word" >&5 + echo "$as_me:30451: found $ac_dir/$ac_word" >&5 break fi done @@ -30444,10 +30459,10 @@ fi TELNET=$ac_cv_path_TELNET if test -n "$TELNET"; then - echo "$as_me:30447: result: $TELNET" >&5 + echo "$as_me:30462: result: $TELNET" >&5 echo "${ECHO_T}$TELNET" >&6 else - echo "$as_me:30450: result: no" >&5 + echo "$as_me:30465: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -30506,7 +30521,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:30509: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:30524: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define TELNET_PATH "$cf_path_prog" @@ -30523,7 +30538,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:30526: checking for $ac_word" >&5 +echo "$as_me:30541: 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 @@ -30540,7 +30555,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:30543: found $ac_dir/$ac_word" >&5 + echo "$as_me:30558: found $ac_dir/$ac_word" >&5 break fi done @@ -30551,10 +30566,10 @@ fi TN3270=$ac_cv_path_TN3270 if test -n "$TN3270"; then - echo "$as_me:30554: result: $TN3270" >&5 + echo "$as_me:30569: result: $TN3270" >&5 echo "${ECHO_T}$TN3270" >&6 else - echo "$as_me:30557: result: no" >&5 + echo "$as_me:30572: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -30613,7 +30628,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:30616: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:30631: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define TN3270_PATH "$cf_path_prog" @@ -30630,7 +30645,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:30633: checking for $ac_word" >&5 +echo "$as_me:30648: 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 @@ -30647,7 +30662,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:30650: found $ac_dir/$ac_word" >&5 + echo "$as_me:30665: found $ac_dir/$ac_word" >&5 break fi done @@ -30658,10 +30673,10 @@ fi RLOGIN=$ac_cv_path_RLOGIN if test -n "$RLOGIN"; then - echo "$as_me:30661: result: $RLOGIN" >&5 + echo "$as_me:30676: result: $RLOGIN" >&5 echo "${ECHO_T}$RLOGIN" >&6 else - echo "$as_me:30664: result: no" >&5 + echo "$as_me:30679: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -30720,7 +30735,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:30723: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:30738: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define RLOGIN_PATH "$cf_path_prog" @@ -30737,7 +30752,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:30740: checking for $ac_word" >&5 +echo "$as_me:30755: 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 @@ -30754,7 +30769,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:30757: found $ac_dir/$ac_word" >&5 + echo "$as_me:30772: found $ac_dir/$ac_word" >&5 break fi done @@ -30765,10 +30780,10 @@ fi MV=$ac_cv_path_MV if test -n "$MV"; then - echo "$as_me:30768: result: $MV" >&5 + echo "$as_me:30783: result: $MV" >&5 echo "${ECHO_T}$MV" >&6 else - echo "$as_me:30771: result: no" >&5 + echo "$as_me:30786: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -30827,7 +30842,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:30830: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:30845: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define MV_PATH "$cf_path_prog" @@ -30844,7 +30859,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:30847: checking for $ac_word" >&5 +echo "$as_me:30862: 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 @@ -30861,7 +30876,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:30864: found $ac_dir/$ac_word" >&5 + echo "$as_me:30879: found $ac_dir/$ac_word" >&5 break fi done @@ -30872,10 +30887,10 @@ fi GZIP=$ac_cv_path_GZIP if test -n "$GZIP"; then - echo "$as_me:30875: result: $GZIP" >&5 + echo "$as_me:30890: result: $GZIP" >&5 echo "${ECHO_T}$GZIP" >&6 else - echo "$as_me:30878: result: no" >&5 + echo "$as_me:30893: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -30934,7 +30949,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:30937: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:30952: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define GZIP_PATH "$cf_path_prog" @@ -30951,7 +30966,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:30954: checking for $ac_word" >&5 +echo "$as_me:30969: 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 @@ -30968,7 +30983,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:30971: found $ac_dir/$ac_word" >&5 + echo "$as_me:30986: found $ac_dir/$ac_word" >&5 break fi done @@ -30979,10 +30994,10 @@ fi UNCOMPRESS=$ac_cv_path_UNCOMPRESS if test -n "$UNCOMPRESS"; then - echo "$as_me:30982: result: $UNCOMPRESS" >&5 + echo "$as_me:30997: result: $UNCOMPRESS" >&5 echo "${ECHO_T}$UNCOMPRESS" >&6 else - echo "$as_me:30985: result: no" >&5 + echo "$as_me:31000: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -31041,7 +31056,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:31044: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:31059: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UNCOMPRESS_PATH "$cf_path_prog" @@ -31058,7 +31073,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:31061: checking for $ac_word" >&5 +echo "$as_me:31076: 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 @@ -31075,7 +31090,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:31078: found $ac_dir/$ac_word" >&5 + echo "$as_me:31093: found $ac_dir/$ac_word" >&5 break fi done @@ -31086,10 +31101,10 @@ fi UNZIP=$ac_cv_path_UNZIP if test -n "$UNZIP"; then - echo "$as_me:31089: result: $UNZIP" >&5 + echo "$as_me:31104: result: $UNZIP" >&5 echo "${ECHO_T}$UNZIP" >&6 else - echo "$as_me:31092: result: no" >&5 + echo "$as_me:31107: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -31148,7 +31163,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:31151: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:31166: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UNZIP_PATH "$cf_path_prog" @@ -31165,7 +31180,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:31168: checking for $ac_word" >&5 +echo "$as_me:31183: 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 @@ -31182,7 +31197,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:31185: found $ac_dir/$ac_word" >&5 + echo "$as_me:31200: found $ac_dir/$ac_word" >&5 break fi done @@ -31193,10 +31208,10 @@ fi BZIP2=$ac_cv_path_BZIP2 if test -n "$BZIP2"; then - echo "$as_me:31196: result: $BZIP2" >&5 + echo "$as_me:31211: result: $BZIP2" >&5 echo "${ECHO_T}$BZIP2" >&6 else - echo "$as_me:31199: result: no" >&5 + echo "$as_me:31214: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -31255,7 +31270,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:31258: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:31273: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define BZIP2_PATH "$cf_path_prog" @@ -31272,7 +31287,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:31275: checking for $ac_word" >&5 +echo "$as_me:31290: 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 @@ -31289,7 +31304,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:31292: found $ac_dir/$ac_word" >&5 + echo "$as_me:31307: found $ac_dir/$ac_word" >&5 break fi done @@ -31300,10 +31315,10 @@ fi TAR=$ac_cv_path_TAR if test -n "$TAR"; then - echo "$as_me:31303: result: $TAR" >&5 + echo "$as_me:31318: result: $TAR" >&5 echo "${ECHO_T}$TAR" >&6 else - echo "$as_me:31306: result: no" >&5 + echo "$as_me:31321: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -31362,7 +31377,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:31365: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:31380: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define TAR_PATH "$cf_path_prog" @@ -31419,7 +31434,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:31422: checking for $ac_word" >&5 +echo "$as_me:31437: 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 @@ -31436,7 +31451,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:31439: found $ac_dir/$ac_word" >&5 + echo "$as_me:31454: found $ac_dir/$ac_word" >&5 break fi done @@ -31447,10 +31462,10 @@ fi COMPRESS=$ac_cv_path_COMPRESS if test -n "$COMPRESS"; then - echo "$as_me:31450: result: $COMPRESS" >&5 + echo "$as_me:31465: result: $COMPRESS" >&5 echo "${ECHO_T}$COMPRESS" >&6 else - echo "$as_me:31453: result: no" >&5 + echo "$as_me:31468: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -31509,7 +31524,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:31512: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:31527: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define COMPRESS_PATH "$cf_path_prog" @@ -31526,7 +31541,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:31529: checking for $ac_word" >&5 +echo "$as_me:31544: 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 @@ -31543,7 +31558,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:31546: found $ac_dir/$ac_word" >&5 + echo "$as_me:31561: found $ac_dir/$ac_word" >&5 break fi done @@ -31554,10 +31569,10 @@ fi RM=$ac_cv_path_RM if test -n "$RM"; then - echo "$as_me:31557: result: $RM" >&5 + echo "$as_me:31572: result: $RM" >&5 echo "${ECHO_T}$RM" >&6 else - echo "$as_me:31560: result: no" >&5 + echo "$as_me:31575: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -31616,7 +31631,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:31619: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:31634: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define RM_PATH "$cf_path_prog" @@ -31633,7 +31648,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:31636: checking for $ac_word" >&5 +echo "$as_me:31651: 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 @@ -31650,7 +31665,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:31653: found $ac_dir/$ac_word" >&5 + echo "$as_me:31668: found $ac_dir/$ac_word" >&5 break fi done @@ -31661,10 +31676,10 @@ fi UUDECODE=$ac_cv_path_UUDECODE if test -n "$UUDECODE"; then - echo "$as_me:31664: result: $UUDECODE" >&5 + echo "$as_me:31679: result: $UUDECODE" >&5 echo "${ECHO_T}$UUDECODE" >&6 else - echo "$as_me:31667: result: no" >&5 + echo "$as_me:31682: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -31723,7 +31738,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:31726: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:31741: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define UUDECODE_PATH "$cf_path_prog" @@ -31740,7 +31755,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:31743: checking for $ac_word" >&5 +echo "$as_me:31758: 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 @@ -31757,7 +31772,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:31760: found $ac_dir/$ac_word" >&5 + echo "$as_me:31775: found $ac_dir/$ac_word" >&5 break fi done @@ -31768,10 +31783,10 @@ fi ZCAT=$ac_cv_path_ZCAT if test -n "$ZCAT"; then - echo "$as_me:31771: result: $ZCAT" >&5 + echo "$as_me:31786: result: $ZCAT" >&5 echo "${ECHO_T}$ZCAT" >&6 else - echo "$as_me:31774: result: no" >&5 + echo "$as_me:31789: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -31830,7 +31845,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:31833: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:31848: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define ZCAT_PATH "$cf_path_prog" @@ -31847,7 +31862,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:31850: checking for $ac_word" >&5 +echo "$as_me:31865: 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 @@ -31864,7 +31879,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:31867: found $ac_dir/$ac_word" >&5 + echo "$as_me:31882: found $ac_dir/$ac_word" >&5 break fi done @@ -31875,10 +31890,10 @@ fi ZIP=$ac_cv_path_ZIP if test -n "$ZIP"; then - echo "$as_me:31878: result: $ZIP" >&5 + echo "$as_me:31893: result: $ZIP" >&5 echo "${ECHO_T}$ZIP" >&6 else - echo "$as_me:31881: result: no" >&5 + echo "$as_me:31896: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -31937,7 +31952,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:31940: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:31955: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define ZIP_PATH "$cf_path_prog" @@ -31964,7 +31979,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:31967: checking for $ac_word" >&5 +echo "$as_me:31982: 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 @@ -31981,7 +31996,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:31984: found $ac_dir/$ac_word" >&5 + echo "$as_me:31999: found $ac_dir/$ac_word" >&5 break fi done @@ -31992,10 +32007,10 @@ fi INSTALL=$ac_cv_path_INSTALL if test -n "$INSTALL"; then - echo "$as_me:31995: result: $INSTALL" >&5 + echo "$as_me:32010: result: $INSTALL" >&5 echo "${ECHO_T}$INSTALL" >&6 else - echo "$as_me:31998: result: no" >&5 + echo "$as_me:32013: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -32054,7 +32069,7 @@ IFS="$cf_save_ifs" if test -n "$cf_path_prog" ; then -echo "${as_me-configure}:32057: testing defining path for ${cf_path_prog} ..." 1>&5 +echo "${as_me-configure}:32072: testing defining path for ${cf_path_prog} ..." 1>&5 cat >>confdefs.h <<EOF #define INSTALL_PATH "$cf_path_prog" @@ -32080,7 +32095,7 @@ fi if test $cf_cv_screen = pdcurses ; then - echo "$as_me:32083: checking for X" >&5 + echo "$as_me:32098: checking for X" >&5 echo $ECHO_N "checking for X... $ECHO_C" >&6 # Check whether --with-x or --without-x was given. @@ -32177,17 +32192,17 @@ if test "$ac_x_includes" = no; then # Guess where to find include files, by looking for Intrinsic.h. # First, try using that file with no special directory specified. cat >conftest.$ac_ext <<_ACEOF -#line 32180 "configure" +#line 32195 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> _ACEOF -if { (eval echo "$as_me:32184: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:32199: \"$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:32190: \$? = $ac_status" >&5 + echo "$as_me:32205: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -32220,7 +32235,7 @@ if test "$ac_x_libraries" = no; then ac_save_LIBS=$LIBS LIBS="-lXt $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 32223 "configure" +#line 32238 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> int @@ -32232,16 +32247,16 @@ XtMalloc (0) } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32235: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32250: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32238: \$? = $ac_status" >&5 + echo "$as_me:32253: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32241: \"$ac_try\"") >&5 + { (eval echo "$as_me:32256: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32244: \$? = $ac_status" >&5 + echo "$as_me:32259: \$? = $ac_status" >&5 (exit $ac_status); }; }; then LIBS=$ac_save_LIBS # We can link X programs with no special library path. @@ -32279,7 +32294,7 @@ fi fi # $with_x != no if test "$have_x" != yes; then - echo "$as_me:32282: result: $have_x" >&5 + echo "$as_me:32297: result: $have_x" >&5 echo "${ECHO_T}$have_x" >&6 no_x=yes else @@ -32289,7 +32304,7 @@ else # Update the cache value to reflect the command line values. ac_cv_have_x="have_x=yes \ ac_x_includes=$x_includes ac_x_libraries=$x_libraries" - echo "$as_me:32292: result: libraries $x_libraries, headers $x_includes" >&5 + echo "$as_me:32307: result: libraries $x_libraries, headers $x_includes" >&5 echo "${ECHO_T}libraries $x_libraries, headers $x_includes" >&6 fi @@ -32313,11 +32328,11 @@ else # others require no space. Words are not sufficient . . . . case `(uname -sr) 2>/dev/null` in "SunOS 5"*) - echo "$as_me:32316: checking whether -R must be followed by a space" >&5 + echo "$as_me:32331: checking whether -R must be followed by a space" >&5 echo $ECHO_N "checking whether -R must be followed by a space... $ECHO_C" >&6 ac_xsave_LIBS=$LIBS; LIBS="$LIBS -R$x_libraries" cat >conftest.$ac_ext <<_ACEOF -#line 32320 "configure" +#line 32335 "configure" #include "confdefs.h" int @@ -32329,16 +32344,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32332: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32347: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32335: \$? = $ac_status" >&5 + echo "$as_me:32350: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32338: \"$ac_try\"") >&5 + { (eval echo "$as_me:32353: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32341: \$? = $ac_status" >&5 + echo "$as_me:32356: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_R_nospace=yes else @@ -32348,13 +32363,13 @@ ac_R_nospace=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext if test $ac_R_nospace = yes; then - echo "$as_me:32351: result: no" >&5 + echo "$as_me:32366: result: no" >&5 echo "${ECHO_T}no" >&6 X_LIBS="$X_LIBS -R$x_libraries" else LIBS="$ac_xsave_LIBS -R $x_libraries" cat >conftest.$ac_ext <<_ACEOF -#line 32357 "configure" +#line 32372 "configure" #include "confdefs.h" int @@ -32366,16 +32381,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32369: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32384: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32372: \$? = $ac_status" >&5 + echo "$as_me:32387: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32375: \"$ac_try\"") >&5 + { (eval echo "$as_me:32390: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32378: \$? = $ac_status" >&5 + echo "$as_me:32393: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_R_space=yes else @@ -32385,11 +32400,11 @@ ac_R_space=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext if test $ac_R_space = yes; then - echo "$as_me:32388: result: yes" >&5 + echo "$as_me:32403: result: yes" >&5 echo "${ECHO_T}yes" >&6 X_LIBS="$X_LIBS -R $x_libraries" else - echo "$as_me:32392: result: neither works" >&5 + echo "$as_me:32407: result: neither works" >&5 echo "${ECHO_T}neither works" >&6 fi fi @@ -32409,7 +32424,7 @@ echo "${ECHO_T}neither works" >&6 # the Alpha needs dnet_stub (dnet does not exist). ac_xsave_LIBS="$LIBS"; LIBS="$LIBS $X_LIBS -lX11" cat >conftest.$ac_ext <<_ACEOF -#line 32412 "configure" +#line 32427 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -32428,22 +32443,22 @@ XOpenDisplay (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32431: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32446: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32434: \$? = $ac_status" >&5 + echo "$as_me:32449: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32437: \"$ac_try\"") >&5 + { (eval echo "$as_me:32452: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32440: \$? = $ac_status" >&5 + echo "$as_me:32455: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 -echo "$as_me:32446: checking for dnet_ntoa in -ldnet" >&5 +echo "$as_me:32461: checking for dnet_ntoa in -ldnet" >&5 echo $ECHO_N "checking for dnet_ntoa in -ldnet... $ECHO_C" >&6 if test "${ac_cv_lib_dnet_dnet_ntoa+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -32451,7 +32466,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldnet $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 32454 "configure" +#line 32469 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -32470,16 +32485,16 @@ dnet_ntoa (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32473: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32488: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32476: \$? = $ac_status" >&5 + echo "$as_me:32491: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32479: \"$ac_try\"") >&5 + { (eval echo "$as_me:32494: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32482: \$? = $ac_status" >&5 + echo "$as_me:32497: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dnet_dnet_ntoa=yes else @@ -32490,14 +32505,14 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:32493: result: $ac_cv_lib_dnet_dnet_ntoa" >&5 +echo "$as_me:32508: result: $ac_cv_lib_dnet_dnet_ntoa" >&5 echo "${ECHO_T}$ac_cv_lib_dnet_dnet_ntoa" >&6 if test $ac_cv_lib_dnet_dnet_ntoa = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet" fi if test $ac_cv_lib_dnet_dnet_ntoa = no; then - echo "$as_me:32500: checking for dnet_ntoa in -ldnet_stub" >&5 + echo "$as_me:32515: checking for dnet_ntoa in -ldnet_stub" >&5 echo $ECHO_N "checking for dnet_ntoa in -ldnet_stub... $ECHO_C" >&6 if test "${ac_cv_lib_dnet_stub_dnet_ntoa+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -32505,7 +32520,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-ldnet_stub $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 32508 "configure" +#line 32523 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -32524,16 +32539,16 @@ dnet_ntoa (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32527: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32542: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32530: \$? = $ac_status" >&5 + echo "$as_me:32545: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32533: \"$ac_try\"") >&5 + { (eval echo "$as_me:32548: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32536: \$? = $ac_status" >&5 + echo "$as_me:32551: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_dnet_stub_dnet_ntoa=yes else @@ -32544,7 +32559,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:32547: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5 +echo "$as_me:32562: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5 echo "${ECHO_T}$ac_cv_lib_dnet_stub_dnet_ntoa" >&6 if test $ac_cv_lib_dnet_stub_dnet_ntoa = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet_stub" @@ -32563,13 +32578,13 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext # on Irix 5.2, according to T.E. Dickey. # The functions gethostbyname, getservbyname, and inet_addr are # in -lbsd on LynxOS 3.0.1/i386, according to Lars Hecking. - echo "$as_me:32566: checking for gethostbyname" >&5 + echo "$as_me:32581: checking for gethostbyname" >&5 echo $ECHO_N "checking for gethostbyname... $ECHO_C" >&6 if test "${ac_cv_func_gethostbyname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 32572 "configure" +#line 32587 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char gethostbyname (); below. */ @@ -32600,16 +32615,16 @@ f = gethostbyname; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32603: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32618: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32606: \$? = $ac_status" >&5 + echo "$as_me:32621: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32609: \"$ac_try\"") >&5 + { (eval echo "$as_me:32624: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32612: \$? = $ac_status" >&5 + echo "$as_me:32627: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_gethostbyname=yes else @@ -32619,11 +32634,11 @@ ac_cv_func_gethostbyname=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:32622: result: $ac_cv_func_gethostbyname" >&5 +echo "$as_me:32637: result: $ac_cv_func_gethostbyname" >&5 echo "${ECHO_T}$ac_cv_func_gethostbyname" >&6 if test $ac_cv_func_gethostbyname = no; then - echo "$as_me:32626: checking for gethostbyname in -lnsl" >&5 + echo "$as_me:32641: checking for gethostbyname in -lnsl" >&5 echo $ECHO_N "checking for gethostbyname in -lnsl... $ECHO_C" >&6 if test "${ac_cv_lib_nsl_gethostbyname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -32631,7 +32646,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 32634 "configure" +#line 32649 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -32650,16 +32665,16 @@ gethostbyname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32653: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32668: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32656: \$? = $ac_status" >&5 + echo "$as_me:32671: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32659: \"$ac_try\"") >&5 + { (eval echo "$as_me:32674: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32662: \$? = $ac_status" >&5 + echo "$as_me:32677: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_nsl_gethostbyname=yes else @@ -32670,14 +32685,14 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:32673: result: $ac_cv_lib_nsl_gethostbyname" >&5 +echo "$as_me:32688: result: $ac_cv_lib_nsl_gethostbyname" >&5 echo "${ECHO_T}$ac_cv_lib_nsl_gethostbyname" >&6 if test $ac_cv_lib_nsl_gethostbyname = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl" fi if test $ac_cv_lib_nsl_gethostbyname = no; then - echo "$as_me:32680: checking for gethostbyname in -lbsd" >&5 + echo "$as_me:32695: checking for gethostbyname in -lbsd" >&5 echo $ECHO_N "checking for gethostbyname in -lbsd... $ECHO_C" >&6 if test "${ac_cv_lib_bsd_gethostbyname+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -32685,7 +32700,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lbsd $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 32688 "configure" +#line 32703 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -32704,16 +32719,16 @@ gethostbyname (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32707: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32722: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32710: \$? = $ac_status" >&5 + echo "$as_me:32725: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32713: \"$ac_try\"") >&5 + { (eval echo "$as_me:32728: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32716: \$? = $ac_status" >&5 + echo "$as_me:32731: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_bsd_gethostbyname=yes else @@ -32724,7 +32739,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:32727: result: $ac_cv_lib_bsd_gethostbyname" >&5 +echo "$as_me:32742: result: $ac_cv_lib_bsd_gethostbyname" >&5 echo "${ECHO_T}$ac_cv_lib_bsd_gethostbyname" >&6 if test $ac_cv_lib_bsd_gethostbyname = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lbsd" @@ -32740,13 +32755,13 @@ fi # variants that don't use the nameserver (or something). -lsocket # must be given before -lnsl if both are needed. We assume that # if connect needs -lnsl, so does gethostbyname. - echo "$as_me:32743: checking for connect" >&5 + echo "$as_me:32758: checking for connect" >&5 echo $ECHO_N "checking for connect... $ECHO_C" >&6 if test "${ac_cv_func_connect+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 32749 "configure" +#line 32764 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char connect (); below. */ @@ -32777,16 +32792,16 @@ f = connect; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32780: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32795: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32783: \$? = $ac_status" >&5 + echo "$as_me:32798: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32786: \"$ac_try\"") >&5 + { (eval echo "$as_me:32801: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32789: \$? = $ac_status" >&5 + echo "$as_me:32804: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_connect=yes else @@ -32796,11 +32811,11 @@ ac_cv_func_connect=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:32799: result: $ac_cv_func_connect" >&5 +echo "$as_me:32814: result: $ac_cv_func_connect" >&5 echo "${ECHO_T}$ac_cv_func_connect" >&6 if test $ac_cv_func_connect = no; then - echo "$as_me:32803: checking for connect in -lsocket" >&5 + echo "$as_me:32818: checking for connect in -lsocket" >&5 echo $ECHO_N "checking for connect in -lsocket... $ECHO_C" >&6 if test "${ac_cv_lib_socket_connect+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -32808,7 +32823,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 32811 "configure" +#line 32826 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -32827,16 +32842,16 @@ connect (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32830: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32845: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32833: \$? = $ac_status" >&5 + echo "$as_me:32848: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32836: \"$ac_try\"") >&5 + { (eval echo "$as_me:32851: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32839: \$? = $ac_status" >&5 + echo "$as_me:32854: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_socket_connect=yes else @@ -32847,7 +32862,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:32850: result: $ac_cv_lib_socket_connect" >&5 +echo "$as_me:32865: result: $ac_cv_lib_socket_connect" >&5 echo "${ECHO_T}$ac_cv_lib_socket_connect" >&6 if test $ac_cv_lib_socket_connect = yes; then X_EXTRA_LIBS="-lsocket $X_EXTRA_LIBS" @@ -32856,13 +32871,13 @@ fi fi # Guillermo Gomez says -lposix is necessary on A/UX. - echo "$as_me:32859: checking for remove" >&5 + echo "$as_me:32874: checking for remove" >&5 echo $ECHO_N "checking for remove... $ECHO_C" >&6 if test "${ac_cv_func_remove+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 32865 "configure" +#line 32880 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char remove (); below. */ @@ -32893,16 +32908,16 @@ f = remove; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32896: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32911: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32899: \$? = $ac_status" >&5 + echo "$as_me:32914: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32902: \"$ac_try\"") >&5 + { (eval echo "$as_me:32917: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32905: \$? = $ac_status" >&5 + echo "$as_me:32920: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_remove=yes else @@ -32912,11 +32927,11 @@ ac_cv_func_remove=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:32915: result: $ac_cv_func_remove" >&5 +echo "$as_me:32930: result: $ac_cv_func_remove" >&5 echo "${ECHO_T}$ac_cv_func_remove" >&6 if test $ac_cv_func_remove = no; then - echo "$as_me:32919: checking for remove in -lposix" >&5 + echo "$as_me:32934: checking for remove in -lposix" >&5 echo $ECHO_N "checking for remove in -lposix... $ECHO_C" >&6 if test "${ac_cv_lib_posix_remove+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -32924,7 +32939,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lposix $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 32927 "configure" +#line 32942 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -32943,16 +32958,16 @@ remove (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:32946: \"$ac_link\"") >&5 +if { (eval echo "$as_me:32961: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:32949: \$? = $ac_status" >&5 + echo "$as_me:32964: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:32952: \"$ac_try\"") >&5 + { (eval echo "$as_me:32967: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:32955: \$? = $ac_status" >&5 + echo "$as_me:32970: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_posix_remove=yes else @@ -32963,7 +32978,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:32966: result: $ac_cv_lib_posix_remove" >&5 +echo "$as_me:32981: result: $ac_cv_lib_posix_remove" >&5 echo "${ECHO_T}$ac_cv_lib_posix_remove" >&6 if test $ac_cv_lib_posix_remove = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lposix" @@ -32972,13 +32987,13 @@ fi fi # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay. - echo "$as_me:32975: checking for shmat" >&5 + echo "$as_me:32990: checking for shmat" >&5 echo $ECHO_N "checking for shmat... $ECHO_C" >&6 if test "${ac_cv_func_shmat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 32981 "configure" +#line 32996 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char shmat (); below. */ @@ -33009,16 +33024,16 @@ f = shmat; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33012: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33027: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33015: \$? = $ac_status" >&5 + echo "$as_me:33030: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33018: \"$ac_try\"") >&5 + { (eval echo "$as_me:33033: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33021: \$? = $ac_status" >&5 + echo "$as_me:33036: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_shmat=yes else @@ -33028,11 +33043,11 @@ ac_cv_func_shmat=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:33031: result: $ac_cv_func_shmat" >&5 +echo "$as_me:33046: result: $ac_cv_func_shmat" >&5 echo "${ECHO_T}$ac_cv_func_shmat" >&6 if test $ac_cv_func_shmat = no; then - echo "$as_me:33035: checking for shmat in -lipc" >&5 + echo "$as_me:33050: checking for shmat in -lipc" >&5 echo $ECHO_N "checking for shmat in -lipc... $ECHO_C" >&6 if test "${ac_cv_lib_ipc_shmat+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -33040,7 +33055,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lipc $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 33043 "configure" +#line 33058 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -33059,16 +33074,16 @@ shmat (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33062: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33077: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33065: \$? = $ac_status" >&5 + echo "$as_me:33080: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33068: \"$ac_try\"") >&5 + { (eval echo "$as_me:33083: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33071: \$? = $ac_status" >&5 + echo "$as_me:33086: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_ipc_shmat=yes else @@ -33079,7 +33094,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:33082: result: $ac_cv_lib_ipc_shmat" >&5 +echo "$as_me:33097: result: $ac_cv_lib_ipc_shmat" >&5 echo "${ECHO_T}$ac_cv_lib_ipc_shmat" >&6 if test $ac_cv_lib_ipc_shmat = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lipc" @@ -33097,7 +33112,7 @@ fi # These have to be linked with before -lX11, unlike the other # libraries we check for below, so use a different variable. # John Interrante, Karl Berry - echo "$as_me:33100: checking for IceConnectionNumber in -lICE" >&5 + echo "$as_me:33115: checking for IceConnectionNumber in -lICE" >&5 echo $ECHO_N "checking for IceConnectionNumber in -lICE... $ECHO_C" >&6 if test "${ac_cv_lib_ICE_IceConnectionNumber+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -33105,7 +33120,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lICE $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 33108 "configure" +#line 33123 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -33124,16 +33139,16 @@ IceConnectionNumber (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33127: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33142: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33130: \$? = $ac_status" >&5 + echo "$as_me:33145: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33133: \"$ac_try\"") >&5 + { (eval echo "$as_me:33148: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33136: \$? = $ac_status" >&5 + echo "$as_me:33151: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_ICE_IceConnectionNumber=yes else @@ -33144,7 +33159,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:33147: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5 +echo "$as_me:33162: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5 echo "${ECHO_T}$ac_cv_lib_ICE_IceConnectionNumber" >&6 if test $ac_cv_lib_ICE_IceConnectionNumber = yes; then X_PRE_LIBS="$X_PRE_LIBS -lSM -lICE" @@ -33162,7 +33177,7 @@ LDFLAGS="$X_LIBS $LDFLAGS" test -n "$verbose" && echo " checking additions to CFLAGS" 1>&6 -echo "${as_me-configure}:33165: testing checking additions to CFLAGS ..." 1>&5 +echo "${as_me-configure}:33180: testing checking additions to CFLAGS ..." 1>&5 cf_check_cflags="$CFLAGS" cf_check_cppflags="$CPPFLAGS" @@ -33223,7 +33238,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}:33226: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 +echo "${as_me-configure}:33241: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 CFLAGS="$CFLAGS $cf_new_cflags" fi @@ -33231,7 +33246,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}:33234: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 +echo "${as_me-configure}:33249: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 CPPFLAGS="$CPPFLAGS $cf_new_cppflags" fi @@ -33239,14 +33254,14 @@ 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}:33242: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 +echo "${as_me-configure}:33257: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 EXTRA_CPPFLAGS="$cf_new_extra_cppflags $EXTRA_CPPFLAGS" fi if test "$cf_check_cflags" != "$CFLAGS" ; then cat >conftest.$ac_ext <<_ACEOF -#line 33249 "configure" +#line 33264 "configure" #include "confdefs.h" #include <stdio.h> int @@ -33258,16 +33273,16 @@ printf("Hello world"); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33261: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33276: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33264: \$? = $ac_status" >&5 + echo "$as_me:33279: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33267: \"$ac_try\"") >&5 + { (eval echo "$as_me:33282: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33270: \$? = $ac_status" >&5 + echo "$as_me:33285: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -33275,12 +33290,12 @@ else cat conftest.$ac_ext >&5 test -n "$verbose" && echo " test-compile failed. Undoing change to \$CFLAGS" 1>&6 -echo "${as_me-configure}:33278: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 +echo "${as_me-configure}:33293: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 if test "$cf_check_cppflags" != "$CPPFLAGS" ; then test -n "$verbose" && echo " but keeping change to \$CPPFLAGS" 1>&6 -echo "${as_me-configure}:33283: testing but keeping change to \$CPPFLAGS ..." 1>&5 +echo "${as_me-configure}:33298: testing but keeping change to \$CPPFLAGS ..." 1>&5 fi CFLAGS="$cf_check_flags" @@ -33288,13 +33303,13 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:33291: checking for XOpenDisplay" >&5 +echo "$as_me:33306: 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 33297 "configure" +#line 33312 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char XOpenDisplay (); below. */ @@ -33325,16 +33340,16 @@ f = XOpenDisplay; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33328: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33343: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33331: \$? = $ac_status" >&5 + echo "$as_me:33346: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33334: \"$ac_try\"") >&5 + { (eval echo "$as_me:33349: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33337: \$? = $ac_status" >&5 + echo "$as_me:33352: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_XOpenDisplay=yes else @@ -33344,13 +33359,13 @@ ac_cv_func_XOpenDisplay=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:33347: result: $ac_cv_func_XOpenDisplay" >&5 +echo "$as_me:33362: 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:33353: checking for XOpenDisplay in -lX11" >&5 +echo "$as_me:33368: 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 @@ -33358,7 +33373,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lX11 $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 33361 "configure" +#line 33376 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -33377,16 +33392,16 @@ XOpenDisplay (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33380: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33395: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33383: \$? = $ac_status" >&5 + echo "$as_me:33398: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33386: \"$ac_try\"") >&5 + { (eval echo "$as_me:33401: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33389: \$? = $ac_status" >&5 + echo "$as_me:33404: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_X11_XOpenDisplay=yes else @@ -33397,7 +33412,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:33400: result: $ac_cv_lib_X11_XOpenDisplay" >&5 +echo "$as_me:33415: result: $ac_cv_lib_X11_XOpenDisplay" >&5 echo "${ECHO_T}$ac_cv_lib_X11_XOpenDisplay" >&6 if test $ac_cv_lib_X11_XOpenDisplay = yes; then LIBS="-lX11 $LIBS" @@ -33405,13 +33420,13 @@ fi fi -echo "$as_me:33408: checking for XtAppInitialize" >&5 +echo "$as_me:33423: 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 33414 "configure" +#line 33429 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char XtAppInitialize (); below. */ @@ -33442,16 +33457,16 @@ f = XtAppInitialize; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33445: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33460: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33448: \$? = $ac_status" >&5 + echo "$as_me:33463: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33451: \"$ac_try\"") >&5 + { (eval echo "$as_me:33466: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33454: \$? = $ac_status" >&5 + echo "$as_me:33469: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_func_XtAppInitialize=yes else @@ -33461,13 +33476,13 @@ ac_cv_func_XtAppInitialize=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:33464: result: $ac_cv_func_XtAppInitialize" >&5 +echo "$as_me:33479: 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:33470: checking for XtAppInitialize in -lXt" >&5 +echo "$as_me:33485: 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 @@ -33475,7 +33490,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lXt $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 33478 "configure" +#line 33493 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -33494,16 +33509,16 @@ XtAppInitialize (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33497: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33512: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33500: \$? = $ac_status" >&5 + echo "$as_me:33515: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33503: \"$ac_try\"") >&5 + { (eval echo "$as_me:33518: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33506: \$? = $ac_status" >&5 + echo "$as_me:33521: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_Xt_XtAppInitialize=yes else @@ -33514,7 +33529,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:33517: result: $ac_cv_lib_Xt_XtAppInitialize" >&5 +echo "$as_me:33532: result: $ac_cv_lib_Xt_XtAppInitialize" >&5 echo "${ECHO_T}$ac_cv_lib_Xt_XtAppInitialize" >&6 if test $ac_cv_lib_Xt_XtAppInitialize = yes; then cat >>confdefs.h <<\EOF @@ -33528,7 +33543,7 @@ fi fi if test $cf_have_X_LIBS = no ; then - { echo "$as_me:33531: WARNING: Unable to successfully link X Toolkit library (-lXt) with + { echo "$as_me:33546: 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 @@ -33538,7 +33553,7 @@ fi cf_x_athena=${cf_x_athena-Xaw} -echo "$as_me:33541: checking if you want to link with Xaw 3d library" >&5 +echo "$as_me:33556: 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= @@ -33549,14 +33564,14 @@ if test "${with_Xaw3d+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=Xaw3d - echo "$as_me:33552: result: yes" >&5 + echo "$as_me:33567: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:33555: result: no" >&5 + echo "$as_me:33570: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:33559: checking if you want to link with neXT Athena library" >&5 +echo "$as_me:33574: 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= @@ -33567,14 +33582,14 @@ if test "${with_neXtaw+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=neXtaw - echo "$as_me:33570: result: yes" >&5 + echo "$as_me:33585: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:33573: result: no" >&5 + echo "$as_me:33588: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:33577: checking if you want to link with Athena-Plus library" >&5 +echo "$as_me:33592: 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= @@ -33585,14 +33600,14 @@ if test "${with_XawPlus+set}" = set; then fi; if test "$withval" = yes ; then cf_x_athena=XawPlus - echo "$as_me:33588: result: yes" >&5 + echo "$as_me:33603: result: yes" >&5 echo "${ECHO_T}yes" >&6 else - echo "$as_me:33591: result: no" >&5 + echo "$as_me:33606: result: no" >&5 echo "${ECHO_T}no" >&6 fi -echo "$as_me:33595: checking for XextCreateExtension in -lXext" >&5 +echo "$as_me:33610: 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 @@ -33600,7 +33615,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lXext $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 33603 "configure" +#line 33618 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -33619,16 +33634,16 @@ XextCreateExtension (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33622: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33637: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33625: \$? = $ac_status" >&5 + echo "$as_me:33640: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33628: \"$ac_try\"") >&5 + { (eval echo "$as_me:33643: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33631: \$? = $ac_status" >&5 + echo "$as_me:33646: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_Xext_XextCreateExtension=yes else @@ -33639,7 +33654,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:33642: result: $ac_cv_lib_Xext_XextCreateExtension" >&5 +echo "$as_me:33657: result: $ac_cv_lib_Xext_XextCreateExtension" >&5 echo "${ECHO_T}$ac_cv_lib_Xext_XextCreateExtension" >&6 if test $ac_cv_lib_Xext_XextCreateExtension = yes; then LIBS="-lXext $LIBS" @@ -33661,14 +33676,14 @@ do cf_test=X11/$cf_x_athena_root/SimpleMenu.h if test $cf_path != default ; then CPPFLAGS="$cf_save -I$cf_path/include" - echo "$as_me:33664: checking for $cf_test in $cf_path" >&5 + echo "$as_me:33679: 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:33667: checking for $cf_test" >&5 + echo "$as_me:33682: checking for $cf_test" >&5 echo $ECHO_N "checking for $cf_test... $ECHO_C" >&6 fi cat >conftest.$ac_ext <<_ACEOF -#line 33671 "configure" +#line 33686 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> @@ -33682,16 +33697,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:33685: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:33700: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:33688: \$? = $ac_status" >&5 + echo "$as_me:33703: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:33691: \"$ac_try\"") >&5 + { (eval echo "$as_me:33706: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33694: \$? = $ac_status" >&5 + echo "$as_me:33709: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -33700,7 +33715,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest.$ac_ext - echo "$as_me:33703: result: $cf_result" >&5 + echo "$as_me:33718: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then cf_x_athena_include=$cf_path @@ -33712,7 +33727,7 @@ echo "${ECHO_T}$cf_result" >&6 done if test -z "$cf_x_athena_include" ; then - { echo "$as_me:33715: WARNING: Unable to successfully find Athena header files with test program" >&5 + { echo "$as_me:33730: WARNING: Unable to successfully find Athena header files with test program" >&5 echo "$as_me: WARNING: Unable to successfully find Athena header files with test program" >&2;} elif test "$cf_x_athena_include" != default ; then CPPFLAGS="$CPPFLAGS -I$cf_x_athena_include" @@ -33737,15 +33752,15 @@ do cf_test=XawSimpleMenuAddGlobalActions if test $cf_path != default ; then LIBS="-L$cf_path/lib $cf_lib $LIBS" - echo "$as_me:33740: checking for $cf_lib in $cf_path" >&5 + echo "$as_me:33755: checking for $cf_lib in $cf_path" >&5 echo $ECHO_N "checking for $cf_lib in $cf_path... $ECHO_C" >&6 else LIBS="$cf_lib $LIBS" - echo "$as_me:33744: checking for $cf_test in $cf_lib" >&5 + echo "$as_me:33759: checking for $cf_test in $cf_lib" >&5 echo $ECHO_N "checking for $cf_test in $cf_lib... $ECHO_C" >&6 fi cat >conftest.$ac_ext <<_ACEOF -#line 33748 "configure" +#line 33763 "configure" #include "confdefs.h" int @@ -33757,16 +33772,16 @@ $cf_test() } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33760: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33775: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33763: \$? = $ac_status" >&5 + echo "$as_me:33778: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33766: \"$ac_try\"") >&5 + { (eval echo "$as_me:33781: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33769: \$? = $ac_status" >&5 + echo "$as_me:33784: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -33775,7 +33790,7 @@ cat conftest.$ac_ext >&5 cf_result=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext - echo "$as_me:33778: result: $cf_result" >&5 + echo "$as_me:33793: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test "$cf_result" = yes ; then cf_x_athena_lib="$cf_lib" @@ -33787,7 +33802,7 @@ echo "${ECHO_T}$cf_result" >&6 done if test -z "$cf_x_athena_lib" ; then - { { echo "$as_me:33790: error: Unable to successfully link Athena library (-l$cf_x_athena_root) with test program" >&5 + { { echo "$as_me:33805: 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 @@ -33802,7 +33817,7 @@ for ac_prog in xcurses-config 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:33805: checking for $ac_word" >&5 +echo "$as_me:33820: checking for $ac_word" >&5 echo $ECHO_N "checking for $ac_word... $ECHO_C" >&6 if test "${ac_cv_path_XCURSES_CONFIG+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -33819,7 +33834,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_XCURSES_CONFIG="$ac_dir/$ac_word" - echo "$as_me:33822: found $ac_dir/$ac_word" >&5 + echo "$as_me:33837: found $ac_dir/$ac_word" >&5 break fi done @@ -33830,10 +33845,10 @@ fi XCURSES_CONFIG=$ac_cv_path_XCURSES_CONFIG if test -n "$XCURSES_CONFIG"; then - echo "$as_me:33833: result: $XCURSES_CONFIG" >&5 + echo "$as_me:33848: result: $XCURSES_CONFIG" >&5 echo "${ECHO_T}$XCURSES_CONFIG" >&6 else - echo "$as_me:33836: result: no" >&5 + echo "$as_me:33851: result: no" >&5 echo "${ECHO_T}no" >&6 fi @@ -33854,7 +33869,7 @@ LDFLAGS="$LDFLAGS $X_LIBS" test -n "$verbose" && echo " checking additions to CFLAGS" 1>&6 -echo "${as_me-configure}:33857: testing checking additions to CFLAGS ..." 1>&5 +echo "${as_me-configure}:33872: testing checking additions to CFLAGS ..." 1>&5 cf_check_cflags="$CFLAGS" cf_check_cppflags="$CPPFLAGS" @@ -33915,7 +33930,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}:33918: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 +echo "${as_me-configure}:33933: testing add to \$CFLAGS $cf_new_cflags ..." 1>&5 CFLAGS="$CFLAGS $cf_new_cflags" fi @@ -33923,7 +33938,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}:33926: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 +echo "${as_me-configure}:33941: testing add to \$CPPFLAGS $cf_new_cppflags ..." 1>&5 CPPFLAGS="$CPPFLAGS $cf_new_cppflags" fi @@ -33931,14 +33946,14 @@ 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}:33934: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 +echo "${as_me-configure}:33949: testing add to \$EXTRA_CPPFLAGS $cf_new_extra_cppflags ..." 1>&5 EXTRA_CPPFLAGS="$cf_new_extra_cppflags $EXTRA_CPPFLAGS" fi if test "$cf_check_cflags" != "$CFLAGS" ; then cat >conftest.$ac_ext <<_ACEOF -#line 33941 "configure" +#line 33956 "configure" #include "confdefs.h" #include <stdio.h> int @@ -33950,16 +33965,16 @@ printf("Hello world"); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:33953: \"$ac_link\"") >&5 +if { (eval echo "$as_me:33968: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:33956: \$? = $ac_status" >&5 + echo "$as_me:33971: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:33959: \"$ac_try\"") >&5 + { (eval echo "$as_me:33974: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:33962: \$? = $ac_status" >&5 + echo "$as_me:33977: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -33967,12 +33982,12 @@ else cat conftest.$ac_ext >&5 test -n "$verbose" && echo " test-compile failed. Undoing change to \$CFLAGS" 1>&6 -echo "${as_me-configure}:33970: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 +echo "${as_me-configure}:33985: testing test-compile failed. Undoing change to \$CFLAGS ..." 1>&5 if test "$cf_check_cppflags" != "$CPPFLAGS" ; then test -n "$verbose" && echo " but keeping change to \$CPPFLAGS" 1>&6 -echo "${as_me-configure}:33975: testing but keeping change to \$CPPFLAGS ..." 1>&5 +echo "${as_me-configure}:33990: testing but keeping change to \$CPPFLAGS ..." 1>&5 fi CFLAGS="$cf_check_flags" @@ -33980,7 +33995,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:33983: checking for XOpenDisplay in -lX11" >&5 +echo "$as_me:33998: 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 @@ -33988,7 +34003,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lX11 $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 33991 "configure" +#line 34006 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -34007,16 +34022,16 @@ XOpenDisplay (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:34010: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34025: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34013: \$? = $ac_status" >&5 + echo "$as_me:34028: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:34016: \"$ac_try\"") >&5 + { (eval echo "$as_me:34031: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34019: \$? = $ac_status" >&5 + echo "$as_me:34034: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_X11_XOpenDisplay=yes else @@ -34027,13 +34042,13 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:34030: result: $ac_cv_lib_X11_XOpenDisplay" >&5 +echo "$as_me:34045: result: $ac_cv_lib_X11_XOpenDisplay" >&5 echo "${ECHO_T}$ac_cv_lib_X11_XOpenDisplay" >&6 if test $ac_cv_lib_X11_XOpenDisplay = yes; then LIBS="-lX11 $LIBS" fi -echo "$as_me:34036: checking for XCurses library" >&5 +echo "$as_me:34051: 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 @@ -34041,7 +34056,7 @@ else LIBS="-lXCurses $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 34044 "configure" +#line 34059 "configure" #include "confdefs.h" #include <xcurses.h> @@ -34056,16 +34071,16 @@ XCursesExit(); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:34059: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34074: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34062: \$? = $ac_status" >&5 + echo "$as_me:34077: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:34065: \"$ac_try\"") >&5 + { (eval echo "$as_me:34080: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34068: \$? = $ac_status" >&5 + echo "$as_me:34083: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_lib_XCurses=yes else @@ -34076,7 +34091,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:34079: result: $cf_cv_lib_XCurses" >&5 +echo "$as_me:34094: result: $cf_cv_lib_XCurses" >&5 echo "${ECHO_T}$cf_cv_lib_XCurses" >&6 fi @@ -34095,14 +34110,14 @@ EOF EOF else - { { echo "$as_me:34098: error: Cannot link with XCurses" >&5 + { { echo "$as_me:34113: error: Cannot link with XCurses" >&5 echo "$as_me: error: Cannot link with XCurses" >&2;} { (exit 1); exit 1; }; } fi else -echo "$as_me:34105: checking if we can include termio.h with curses" >&5 +echo "$as_me:34120: 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 @@ -34112,7 +34127,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 34115 "configure" +#line 34130 "configure" #include "confdefs.h" #include <LYCurses.h> @@ -34126,16 +34141,16 @@ putchar(0x0a) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34129: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34144: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34132: \$? = $ac_status" >&5 + echo "$as_me:34147: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34135: \"$ac_try\"") >&5 + { (eval echo "$as_me:34150: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34138: \$? = $ac_status" >&5 + echo "$as_me:34153: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_termio_and_curses=yes else @@ -34148,7 +34163,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext rm -f lynx_cfg.h fi -echo "$as_me:34151: result: $cf_cv_termio_and_curses" >&5 +echo "$as_me:34166: result: $cf_cv_termio_and_curses" >&5 echo "${ECHO_T}$cf_cv_termio_and_curses" >&6 test $cf_cv_termio_and_curses = yes && cat >>confdefs.h <<\EOF @@ -34163,23 +34178,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:34166: checking for $ac_header" >&5 +echo "$as_me:34181: 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 34172 "configure" +#line 34187 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:34176: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:34191: \"$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:34182: \$? = $ac_status" >&5 + echo "$as_me:34197: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -34198,7 +34213,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:34201: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:34216: 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 @@ -34208,7 +34223,7 @@ EOF fi done -echo "$as_me:34211: checking if curses supports alternate-character set" >&5 +echo "$as_me:34226: 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 @@ -34217,7 +34232,7 @@ else for mapname in acs_map _acs_map do cat >conftest.$ac_ext <<_ACEOF -#line 34220 "configure" +#line 34235 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -34231,16 +34246,16 @@ chtype x = $mapname['l']; $mapname['m'] = 0 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:34234: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34249: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34237: \$? = $ac_status" >&5 + echo "$as_me:34252: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:34240: \"$ac_try\"") >&5 + { (eval echo "$as_me:34255: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34243: \$? = $ac_status" >&5 + echo "$as_me:34258: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_alt_char_set=$mapname break @@ -34254,20 +34269,20 @@ done fi -echo "$as_me:34257: result: $cf_cv_alt_char_set" >&5 +echo "$as_me:34272: 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:34263: checking if curses supports fancy attributes" >&5 +echo "$as_me:34278: 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 34270 "configure" +#line 34285 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -34285,16 +34300,16 @@ attrset(A_UNDERLINE|A_BOLD|A_REVERSE); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:34288: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34303: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34291: \$? = $ac_status" >&5 + echo "$as_me:34306: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:34294: \"$ac_try\"") >&5 + { (eval echo "$as_me:34309: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34297: \$? = $ac_status" >&5 + echo "$as_me:34312: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_fancy_curses=yes else @@ -34306,13 +34321,13 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:34309: result: $cf_cv_fancy_curses" >&5 +echo "$as_me:34324: 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:34315: checking for function curses_version" >&5 +echo "$as_me:34330: 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 @@ -34322,7 +34337,7 @@ if test "$cross_compiling" = yes; then cf_cv_func_curses_version=unknown else cat >conftest.$ac_ext <<_ACEOF -#line 34325 "configure" +#line 34340 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -34335,15 +34350,15 @@ int main() _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:34338: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34353: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34341: \$? = $ac_status" >&5 + echo "$as_me:34356: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:34343: \"$ac_try\"") >&5 + { (eval echo "$as_me:34358: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34346: \$? = $ac_status" >&5 + echo "$as_me:34361: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_func_curses_version=yes @@ -34358,21 +34373,21 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi rm -f core fi -echo "$as_me:34361: result: $cf_cv_func_curses_version" >&5 +echo "$as_me:34376: result: $cf_cv_func_curses_version" >&5 echo "${ECHO_T}$cf_cv_func_curses_version" >&6 test "$cf_cv_func_curses_version" = yes && cat >>confdefs.h <<\EOF #define HAVE_CURSES_VERSION 1 EOF if test "$cf_cv_ncurses_version" != no ; then -echo "$as_me:34368: checking for obsolete/broken version of ncurses" >&5 +echo "$as_me:34383: 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 34375 "configure" +#line 34390 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -34391,16 +34406,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34394: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34409: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34397: \$? = $ac_status" >&5 + echo "$as_me:34412: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34400: \"$ac_try\"") >&5 + { (eval echo "$as_me:34415: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34403: \$? = $ac_status" >&5 + echo "$as_me:34418: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_ncurses_broken=no else @@ -34412,10 +34427,10 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:34415: result: $cf_cv_ncurses_broken" >&5 +echo "$as_me:34430: 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:34418: WARNING: hmm... you should get an up-to-date version of ncurses" >&5 + { echo "$as_me:34433: WARNING: hmm... you should get an up-to-date version of ncurses" >&5 echo "$as_me: WARNING: hmm... you should get an up-to-date version of ncurses" >&2;} cat >>confdefs.h <<\EOF #define NCURSES_BROKEN 1 @@ -34424,14 +34439,14 @@ EOF fi fi -echo "$as_me:34427: checking if curses supports color attributes" >&5 +echo "$as_me:34442: 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 34434 "configure" +#line 34449 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -34451,16 +34466,16 @@ chtype x = COLOR_BLUE; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:34454: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34469: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34457: \$? = $ac_status" >&5 + echo "$as_me:34472: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:34460: \"$ac_try\"") >&5 + { (eval echo "$as_me:34475: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34463: \$? = $ac_status" >&5 + echo "$as_me:34478: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_color_curses=yes else @@ -34472,7 +34487,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:34475: result: $cf_cv_color_curses" >&5 +echo "$as_me:34490: result: $cf_cv_color_curses" >&5 echo "${ECHO_T}$cf_cv_color_curses" >&6 if test $cf_cv_color_curses = yes ; then cat >>confdefs.h <<\EOF @@ -34492,23 +34507,23 @@ unistd.h \ do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:34495: checking for $ac_header" >&5 +echo "$as_me:34510: 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 34501 "configure" +#line 34516 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:34505: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:34520: \"$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:34511: \$? = $ac_status" >&5 + echo "$as_me:34526: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -34527,7 +34542,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:34530: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:34545: 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 @@ -34542,23 +34557,23 @@ if test "$ISC" = yes ; then for ac_header in sys/termio.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:34545: checking for $ac_header" >&5 +echo "$as_me:34560: 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 34551 "configure" +#line 34566 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:34555: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:34570: \"$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:34561: \$? = $ac_status" >&5 + echo "$as_me:34576: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -34577,7 +34592,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:34580: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:34595: 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 @@ -34595,10 +34610,10 @@ if test "$ac_cv_header_termios_h" = yes ; then *) termios_bad=maybe ;; esac if test "$termios_bad" = maybe ; then - echo "$as_me:34598: checking whether termios.h needs _POSIX_SOURCE" >&5 + echo "$as_me:34613: 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 34601 "configure" +#line 34616 "configure" #include "confdefs.h" #include <termios.h> int @@ -34610,16 +34625,16 @@ struct termios foo; int x = foo.c_iflag } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34613: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34628: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34616: \$? = $ac_status" >&5 + echo "$as_me:34631: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34619: \"$ac_try\"") >&5 + { (eval echo "$as_me:34634: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34622: \$? = $ac_status" >&5 + echo "$as_me:34637: \$? = $ac_status" >&5 (exit $ac_status); }; }; then termios_bad=no else @@ -34627,7 +34642,7 @@ else cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 34630 "configure" +#line 34645 "configure" #include "confdefs.h" #define _POSIX_SOURCE @@ -34641,16 +34656,16 @@ struct termios foo; int x = foo.c_iflag } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34644: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34659: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34647: \$? = $ac_status" >&5 + echo "$as_me:34662: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34650: \"$ac_try\"") >&5 + { (eval echo "$as_me:34665: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34653: \$? = $ac_status" >&5 + echo "$as_me:34668: \$? = $ac_status" >&5 (exit $ac_status); }; }; then termios_bad=unknown else @@ -34665,12 +34680,12 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext - echo "$as_me:34668: result: $termios_bad" >&5 + echo "$as_me:34683: result: $termios_bad" >&5 echo "${ECHO_T}$termios_bad" >&6 fi fi -echo "$as_me:34673: checking declaration of size-change" >&5 +echo "$as_me:34688: 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 @@ -34685,7 +34700,7 @@ do CPPFLAGS="$cf_save_CPPFLAGS" test -n "$cf_opts" && CPPFLAGS="$CPPFLAGS -D$cf_opts" cat >conftest.$ac_ext <<_ACEOF -#line 34688 "configure" +#line 34703 "configure" #include "confdefs.h" #include <sys/types.h> #ifdef HAVE_TERMIOS_H @@ -34729,16 +34744,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34732: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34747: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34735: \$? = $ac_status" >&5 + echo "$as_me:34750: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34738: \"$ac_try\"") >&5 + { (eval echo "$as_me:34753: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34741: \$? = $ac_status" >&5 + echo "$as_me:34756: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_sizechange=yes else @@ -34757,7 +34772,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:34760: result: $cf_cv_sizechange" >&5 +echo "$as_me:34775: result: $cf_cv_sizechange" >&5 echo "${ECHO_T}$cf_cv_sizechange" >&6 if test "$cf_cv_sizechange" != no ; then cat >>confdefs.h <<\EOF @@ -34774,14 +34789,14 @@ EOF esac fi -echo "$as_me:34777: checking if ttytype is declared in curses library" >&5 +echo "$as_me:34792: 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 34784 "configure" +#line 34799 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int @@ -34793,16 +34808,16 @@ char *x = &ttytype[1]; *x = 1 } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:34796: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34811: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34799: \$? = $ac_status" >&5 + echo "$as_me:34814: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:34802: \"$ac_try\"") >&5 + { (eval echo "$as_me:34817: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34805: \$? = $ac_status" >&5 + echo "$as_me:34820: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_have_ttytype=yes else @@ -34814,7 +34829,7 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:34817: result: $cf_cv_have_ttytype" >&5 +echo "$as_me:34832: result: $cf_cv_have_ttytype" >&5 echo "${ECHO_T}$cf_cv_have_ttytype" >&6 test $cf_cv_have_ttytype = yes && cat >>confdefs.h <<\EOF #define HAVE_TTYTYPE 1 @@ -34822,14 +34837,14 @@ EOF if test "$use_wide_curses" = yes ; then -echo "$as_me:34825: checking if curses supports wide characters" >&5 +echo "$as_me:34840: 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 34832 "configure" +#line 34847 "configure" #include "confdefs.h" #include <stdlib.h> @@ -34848,16 +34863,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:34851: \"$ac_link\"") >&5 +if { (eval echo "$as_me:34866: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:34854: \$? = $ac_status" >&5 + echo "$as_me:34869: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:34857: \"$ac_try\"") >&5 + { (eval echo "$as_me:34872: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34860: \$? = $ac_status" >&5 + echo "$as_me:34875: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_widec_curses=yes else @@ -34868,7 +34883,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:34871: result: $cf_cv_widec_curses" >&5 +echo "$as_me:34886: result: $cf_cv_widec_curses" >&5 echo "${ECHO_T}$cf_cv_widec_curses" >&6 if test "$cf_cv_widec_curses" = yes ; then @@ -34877,14 +34892,14 @@ if test "$cf_cv_widec_curses" = yes ; then EOF # This is needed on Tru64 5.0 to declare mbstate_t - echo "$as_me:34880: checking if we must include wchar.h to declare mbstate_t" >&5 + echo "$as_me:34895: 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 34887 "configure" +#line 34902 "configure" #include "confdefs.h" #include <stdlib.h> @@ -34898,23 +34913,23 @@ mbstate_t state } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34901: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34916: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34904: \$? = $ac_status" >&5 + echo "$as_me:34919: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34907: \"$ac_try\"") >&5 + { (eval echo "$as_me:34922: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34910: \$? = $ac_status" >&5 + echo "$as_me:34925: \$? = $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 34917 "configure" +#line 34932 "configure" #include "confdefs.h" #include <stdlib.h> @@ -34929,16 +34944,16 @@ mbstate_t state } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:34932: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:34947: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:34935: \$? = $ac_status" >&5 + echo "$as_me:34950: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:34938: \"$ac_try\"") >&5 + { (eval echo "$as_me:34953: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:34941: \$? = $ac_status" >&5 + echo "$as_me:34956: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_widec_mbstate=yes else @@ -34950,7 +34965,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:34953: result: $cf_cv_widec_mbstate" >&5 +echo "$as_me:34968: result: $cf_cv_widec_mbstate" >&5 echo "${ECHO_T}$cf_cv_widec_mbstate" >&6 if test "$cf_cv_widec_mbstate" = yes ; then @@ -34971,14 +34986,14 @@ fi fi -echo "$as_me:34974: checking if we must define _XOPEN_SOURCE_EXTENDED" >&5 +echo "$as_me:34989: checking if we must define _XOPEN_SOURCE_EXTENDED" >&5 echo $ECHO_N "checking if we must define _XOPEN_SOURCE_EXTENDED... $ECHO_C" >&6 if test "${cf_cv_need_xopen_extension+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 34981 "configure" +#line 34996 "configure" #include "confdefs.h" #include <stdlib.h> @@ -34995,23 +35010,23 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:34998: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35013: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35001: \$? = $ac_status" >&5 + echo "$as_me:35016: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35004: \"$ac_try\"") >&5 + { (eval echo "$as_me:35019: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35007: \$? = $ac_status" >&5 + echo "$as_me:35022: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_need_xopen_extension=no else echo "$as_me: failed program was:" >&5 cat conftest.$ac_ext >&5 cat >conftest.$ac_ext <<_ACEOF -#line 35014 "configure" +#line 35029 "configure" #include "confdefs.h" #define _XOPEN_SOURCE_EXTENDED @@ -35029,16 +35044,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35032: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35047: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35035: \$? = $ac_status" >&5 + echo "$as_me:35050: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35038: \"$ac_try\"") >&5 + { (eval echo "$as_me:35053: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35041: \$? = $ac_status" >&5 + echo "$as_me:35056: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_need_xopen_extension=yes else @@ -35050,11 +35065,11 @@ rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:35053: result: $cf_cv_need_xopen_extension" >&5 +echo "$as_me:35068: result: $cf_cv_need_xopen_extension" >&5 echo "${ECHO_T}$cf_cv_need_xopen_extension" >&6 test $cf_cv_need_xopen_extension = yes && CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE_EXTENDED" -echo "$as_me:35057: checking for term.h" >&5 +echo "$as_me:35072: 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 @@ -35067,7 +35082,7 @@ for cf_header in \ term.h do cat >conftest.$ac_ext <<_ACEOF -#line 35070 "configure" +#line 35085 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -35081,16 +35096,16 @@ WINDOW *x } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:35084: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:35099: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:35087: \$? = $ac_status" >&5 + echo "$as_me:35102: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:35090: \"$ac_try\"") >&5 + { (eval echo "$as_me:35105: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35093: \$? = $ac_status" >&5 + echo "$as_me:35108: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_cv_term_header=$cf_header break @@ -35103,7 +35118,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:35106: result: $cf_cv_term_header" >&5 +echo "$as_me:35121: result: $cf_cv_term_header" >&5 echo "${ECHO_T}$cf_cv_term_header" >&6 case $cf_cv_term_header in #(vi @@ -35154,10 +35169,10 @@ do cf_tr_func=`echo "$cf_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` - echo "$as_me:35157: checking for ${cf_func}" >&5 + echo "$as_me:35172: checking for ${cf_func}" >&5 echo $ECHO_N "checking for ${cf_func}... $ECHO_C" >&6 -echo "${as_me-configure}:35160: testing ${cf_func} ..." 1>&5 +echo "${as_me-configure}:35175: testing ${cf_func} ..." 1>&5 if eval "test \"\${cf_cv_func_$cf_func+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -35166,7 +35181,7 @@ else eval cf_result='$ac_cv_func_'$cf_func if test ".$cf_result" != ".no"; then cat >conftest.$ac_ext <<_ACEOF -#line 35169 "configure" +#line 35184 "configure" #include "confdefs.h" #ifdef HAVE_XCURSES @@ -35200,16 +35215,16 @@ ${cf_cv_main_return-return}(foo == 0); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35203: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35218: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35206: \$? = $ac_status" >&5 + echo "$as_me:35221: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35209: \"$ac_try\"") >&5 + { (eval echo "$as_me:35224: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35212: \$? = $ac_status" >&5 + echo "$as_me:35227: \$? = $ac_status" >&5 (exit $ac_status); }; }; then cf_result=yes else @@ -35225,7 +35240,7 @@ fi # use the computed/retrieved cache-value: eval 'cf_result=$cf_cv_func_'$cf_func - echo "$as_me:35228: result: $cf_result" >&5 + echo "$as_me:35243: result: $cf_result" >&5 echo "${ECHO_T}$cf_result" >&6 if test $cf_result != no; then cat >>confdefs.h <<EOF @@ -35241,13 +35256,13 @@ for ac_func in \ do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` -echo "$as_me:35244: checking for $ac_func" >&5 +echo "$as_me:35259: 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 35250 "configure" +#line 35265 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -35278,16 +35293,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:35281: \"$ac_link\"") >&5 +if { (eval echo "$as_me:35296: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:35284: \$? = $ac_status" >&5 + echo "$as_me:35299: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:35287: \"$ac_try\"") >&5 + { (eval echo "$as_me:35302: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:35290: \$? = $ac_status" >&5 + echo "$as_me:35305: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -35297,7 +35312,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:35300: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:35315: 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 @@ -35311,12 +35326,12 @@ fi if test $use_color_style != no ; then if test .$cf_cv_color_curses != .yes ; then - { { echo "$as_me:35314: error: Configuration does not support color-styles" >&5 + { { echo "$as_me:35329: 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:35319: error: Configuration does not support color-styles" >&5 + { { echo "$as_me:35334: error: Configuration does not support color-styles" >&5 echo "$as_me: error: Configuration does not support color-styles" >&2;} { (exit 1); exit 1; }; } fi @@ -35324,7 +35339,7 @@ fi if test $use_scrollbar != no ; then if test .$cf_cv_fancy_curses != .yes ; then - { echo "$as_me:35327: WARNING: Configuration does not support ACS_xxx definitions" >&5 + { echo "$as_me:35342: WARNING: Configuration does not support ACS_xxx definitions" >&5 echo "$as_me: WARNING: Configuration does not support ACS_xxx definitions" >&2;} else cat >>confdefs.h <<\EOF @@ -35429,7 +35444,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:35432: creating $CONFIG_STATUS" >&5 +{ echo "$as_me:35447: creating $CONFIG_STATUS" >&5 echo "$as_me: creating $CONFIG_STATUS" >&6;} cat >$CONFIG_STATUS <<_ACEOF #! $SHELL @@ -35605,7 +35620,7 @@ cat >>$CONFIG_STATUS <<\EOF echo "$ac_cs_version"; exit 0 ;; --he | --h) # Conflict between --help and --header - { { echo "$as_me:35608: error: ambiguous option: $1 + { { echo "$as_me:35623: 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;} @@ -35624,7 +35639,7 @@ Try \`$0 --help' for more information." >&2;} ac_need_defaults=false;; # This is an error. - -*) { { echo "$as_me:35627: error: unrecognized option: $1 + -*) { { echo "$as_me:35642: 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;} @@ -35677,7 +35692,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:35680: error: invalid argument: $ac_config_target" >&5 + *) { { echo "$as_me:35695: error: invalid argument: $ac_config_target" >&5 echo "$as_me: error: invalid argument: $ac_config_target" >&2;} { (exit 1); exit 1; }; };; esac @@ -35996,7 +36011,7 @@ done; } esac if test x"$ac_file" != x-; then - { echo "$as_me:35999: creating $ac_file" >&5 + { echo "$as_me:36014: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} rm -f "$ac_file" fi @@ -36014,7 +36029,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:36017: error: cannot find input file: $f" >&5 + test -f "$f" || { { echo "$as_me:36032: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo $f;; @@ -36027,7 +36042,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;} echo $srcdir/$f else # /dev/null tree - { { echo "$as_me:36030: error: cannot find input file: $f" >&5 + { { echo "$as_me:36045: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; @@ -36093,7 +36108,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:36096: creating $ac_file" >&5 + test x"$ac_file" != x- && { echo "$as_me:36111: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} # First look for the input files in the build tree, otherwise in the @@ -36104,7 +36119,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:36107: error: cannot find input file: $f" >&5 + test -f "$f" || { { echo "$as_me:36122: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo $f;; @@ -36117,7 +36132,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;} echo $srcdir/$f else # /dev/null tree - { { echo "$as_me:36120: error: cannot find input file: $f" >&5 + { { echo "$as_me:36135: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; @@ -36235,7 +36250,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:36238: $ac_file is unchanged" >&5 + { echo "$as_me:36253: $ac_file is unchanged" >&5 echo "$as_me: $ac_file is unchanged" >&6;} else ac_dir=`$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ diff --git a/configure.in b/configure.in index d1cbd014..80b43683 100644 --- a/configure.in +++ b/configure.in @@ -1,4 +1,4 @@ -dnl $LynxId: configure.in,v 1.187 2009/02/02 01:50:56 tom Exp $ +dnl $LynxId: configure.in,v 1.189 2009/03/10 00:23:50 tom Exp $ dnl dnl Process this file with autoconf to produce a configure script. dnl @@ -93,6 +93,14 @@ esac AC_PROG_CC AC_PROG_CPP AC_PROG_LN_S +case $host_os in +mingw*) +LN_S="cp -p" +AC_MSG_RESULT(Override: No symbolic links in mingw.) + ;; +*) + ;; +esac AC_PROG_MAKE_SET AC_PROG_INSTALL AC_PROG_YACC @@ -259,7 +267,7 @@ linux*) TRY_CFLAGS="$TRY_CFLAGS -DLINUX" ;; mingw*) - # put these directlyin CPPFLAGS since they will not work in lynx_cfg.h + # put these directly in CPPFLAGS since they will not work in lynx_cfg.h CF_ADD_CFLAGS(\ -DWIN32_LEAN_AND_MEAN \ -DDOSPATH \ @@ -338,6 +346,12 @@ ultrix*) ;; esac +case $host_os in +mingw*) + EXTRA_OBJS="$EXTRA_OBJS LYIcon\$o" + ;; +esac + CF_ANSI_CC_REQD dnl -------------------------------------------------------------------------- diff --git a/makefile.msc b/makefile.msc index c780a50f..a876e64e 100644 --- a/makefile.msc +++ b/makefile.msc @@ -1,4 +1,4 @@ -# $LynxId: makefile.msc,v 1.19 2008/09/25 00:25:16 tom Exp $ +# $LynxId: makefile.msc,v 1.21 2009/03/11 00:00:39 tom Exp $ # # Makefile for `Lynx' browser for Microsoft Visual C++ 4.2 or later # @@ -206,7 +206,8 @@ OBJS = $(CS_OBJS) \ "UCAuto.obj" \ "UCAux.obj" \ "UCdomap.obj" \ - "Xsystem.obj" + "Xsystem.obj" \ + "LYIcon.obj" # Dependencies for building @@ -224,6 +225,7 @@ all : $(PROGNAME) clean : -del *.map -del *.obj + -del *.res -del/f/s/q *.i $(PROGNAME) : $(OBJS) dirent.obj @@ -391,6 +393,12 @@ UCdomap.obj : $(SRC_DIR)\UCdomap.c Xsystem.obj : $(SRC_DIR)\Xsystem.c $(COMPILE) $(SRC_DIR)\Xsystem.c +LYIcon.obj : $(SRC_DIR)\LYIcon.rc + cd $(SRC_DIR) + $(RC) /r /fo ..\LYIcon.res LYIcon.rc + cd .. + cvtres /verbose /machine:ix86 LYIcon.res + dirent.obj : $(ETC_LIB)\dirent.c $(COMPILE) $(ETC_LIB)\dirent.c diff --git a/samples/lynx.ico b/samples/lynx.ico new file mode 100644 index 00000000..2bde5f8e --- /dev/null +++ b/samples/lynx.ico Binary files differdiff --git a/scripts/conf.mingw.sh b/scripts/conf.mingw.sh new file mode 100755 index 00000000..59b398d1 --- /dev/null +++ b/scripts/conf.mingw.sh @@ -0,0 +1,32 @@ +#!/bin/bash.exe +LDFLAGS="-mno-cygwin -static -L/mingw/lib" \ +LIBS="-lwsock32 -lgdi32 -lmsvcrt -liconv" \ +CFLAGS="-mno-cygwin -I/mingw/include -I/mingw/include/openssl -W -Wall -O3 -D_WINDOWS -DSH_EX -DWIN_EX -DNOUSERS -DNOSIGHUP -DDOSPATH -DUSE_ALT_BLAT_MAILER -DBOXHORI=0 -DBOXVERT=0" \ +CPPFLAGS="-mno-cygwin -I/mingw/include -I/mingw/include/openssl" \ +./configure --prefix=/d/cygwin/mingw/lynx2.8.7dev.13/lynx-conf \ +--host=mingw32 \ +--disable-dired-override \ +--disable-full-paths \ +--enable-addrlist-page \ +--enable-change-exec \ +--enable-charset-choice \ +--enable-default-colors \ +--enable-exec-links \ +--enable-externs \ +--enable-file-upload \ +--enable-gzip-help \ +--enable-nested-tables \ +--enable-nls \ +--enable-vertrace \ +--includedir=/mingw/include \ +--sysconfdir=/d/cygwin/mingw/lynx2.8.7dev.13/lynx-conf \ +--datadir=/d/cygwin/mingw/lynx2.8.7dev.13/lynx-conf \ +--with-bzlib \ +--with-cfg-file=d:/cygwin/mingw/lynx2.8.7dev.13/lynx-conf/lynx.cfg \ +--with-lss-file=d:/cygwin/mingw/lynx2.8.7dev.13/lynx-conf/lynx.lss \ +--with-mime-libdir=c:/ \ +--with-nls-datadir=d:/cygwin/mingw/share \ +--with-pkg-config=no \ +--with-screen=curses \ +--with-ssl=/mingw/lib \ +--with-zlib diff --git a/scripts/config.djgpp.sh b/scripts/config.djgpp.sh new file mode 100755 index 00000000..fa4dcfee --- /dev/null +++ b/scripts/config.djgpp.sh @@ -0,0 +1,24 @@ +#!/bin/sh +CFLAGS="-g -gcoff -O2 -W -Wall -I/dev/env/DJDIR/pdcur_cvs/PDCurses -I/dev/env/DJDIR/watt32/inc" \ +CPPFLAGS="-DBOXHORI=0 -DBOXVERT=0 -I/dev/env/DJDIR/pdcur_cvs/PDCurses -I/dev/env/DJDIR/watt32/inc" \ +LIBS="-L/dev/env/DJDIR/pdcur_cvs/PDCurses/lib -L/dev/env/DJDIR/watt32/lib -lwmemu" \ +/dev/env/DJDIR/bin/bash.exe ./configure \ +--datadir=/dev/env/DJDIR/lib \ +--sysconfdir=/dev/env/DJDIR/lib \ +--disable-dired-override \ +--disable-full-paths \ +--enable-addrlist-page \ +--enable-change-exec \ +--enable-cgi-links \ +--enable-charset-choice \ +--enable-exec-links \ +--enable-externs \ +--enable-nested-tables \ +--enable-nls \ +--enable-scrollbar \ +--enable-vertrace \ +--with-bzlib \ +--with-mime-libdir=/dev/env/DJDIR/lib \ +--with-screen=curses \ +--with-ssl \ +--with-zlib diff --git a/src/HTAlert.c b/src/HTAlert.c index e0e3a581..ee83f3af 100644 --- a/src/HTAlert.c +++ b/src/HTAlert.c @@ -1,5 +1,5 @@ /* - * $LynxId: HTAlert.c,v 1.83 2009/01/03 00:43:04 tom Exp $ + * $LynxId: HTAlert.c,v 1.84 2009/03/10 15:22:07 tom Exp $ * * Displaying messages and getting input for Lynx Browser * ========================================================== @@ -178,15 +178,15 @@ static const char *sprint_bytes(char *s, off_t n, const char *was_units) if (LYTransferRate == rateKB || LYTransferRate == rateEtaKB_maybe) { if (n >= 10 * kb_units) { - sprintf(s, "%" PRI_off_t, n / kb_units); + sprintf(s, "%" PRI_off_t, CAST_off_t(n / kb_units)); } else if (n > 999) { /* Avoid switching between 1016b/s and 1K/s */ sprintf(s, "%.2g", ((double) n) / kb_units); } else { - sprintf(s, "%" PRI_off_t, n); + sprintf(s, "%" PRI_off_t, CAST_off_t(n)); u = HTProgressUnits(rateBYTES); } } else { - sprintf(s, "%" PRI_off_t, n); + sprintf(s, "%" PRI_off_t, CAST_off_t(n)); } if (!was_units || was_units != u) @@ -864,11 +864,11 @@ BOOL HTConfirmCookie(domain_entry * de, const char *server, space_free = (LYcolLimit - (LYstrCells(prompt) - 10) /* %s and %.*s and %.*s chars */ - - (int) strlen(server)); + -(int) strlen(server)); if (space_free < 0) space_free = 0; - namelen = (int) strlen(name); - valuelen = (int) strlen(value); + namelen = (int) strlen(name); + valuelen = (int) strlen(value); if ((namelen + valuelen) > space_free) { /* * Argh... there isn't enough space on our single line for diff --git a/src/LYCgi.c b/src/LYCgi.c index 2274234c..fbd4822e 100644 --- a/src/LYCgi.c +++ b/src/LYCgi.c @@ -1,5 +1,5 @@ /* - * $LynxId: LYCgi.c,v 1.54 2009/01/01 22:39:06 tom Exp $ + * $LynxId: LYCgi.c,v 1.55 2009/03/10 00:05:59 tom Exp $ * Lynx CGI support LYCgi.c * ================ * @@ -58,7 +58,7 @@ static unsigned envc_size = 0; /* Slots in environment array */ static unsigned envc = 0; /* Slots used so far */ static HTList *alloced = NULL; -#ifdef LYNXCGI_LINKS +#if defined(LYNXCGI_LINKS) && !defined(__MINGW32__) static char *user_agent = NULL; static char *server_software = NULL; static char *accept_language = NULL; diff --git a/src/LYCurses.c b/src/LYCurses.c index 8edde2fe..e272269e 100644 --- a/src/LYCurses.c +++ b/src/LYCurses.c @@ -1,4 +1,4 @@ -/* $LynxId: LYCurses.c,v 1.138 2009/01/20 01:03:02 tom Exp $ */ +/* $LynxId: LYCurses.c,v 1.140 2009/03/10 15:33:34 tom Exp $ */ #include <HTUtils.h> #include <HTAlert.h> @@ -8,6 +8,10 @@ #endif /* UNIX */ #endif /* __MINGW32__ */ +#ifdef __DJGPP__ +#include <pc.h> +#endif /* __DJGPP__ */ + #include <LYCurses.h> #include <LYStyle.h> #include <LYUtils.h> @@ -578,14 +582,14 @@ static BOOL lynx_called_initscr = FALSE; static struct { int fg, dft_fg, bg, dft_bg; } lynx_color_cfg[] = { - /*0*/ { COLOR_CFG(DEFAULT_FG), COLOR_CFG(DEFAULT_BG)}, - /*1*/ { COLOR_CFG(COLOR_BLUE), COLOR_CFG(DEFAULT_BG)}, - /*2*/ { COLOR_CFG(COLOR_YELLOW+8), COLOR_CFG(COLOR_BLUE)}, - /*3*/ { COLOR_CFG(COLOR_GREEN), COLOR_CFG(DEFAULT_BG)}, - /*4*/ { COLOR_CFG(COLOR_MAGENTA), COLOR_CFG(DEFAULT_BG)}, - /*5*/ { COLOR_CFG(COLOR_BLUE), COLOR_CFG(DEFAULT_BG)}, - /*6*/ { COLOR_CFG(COLOR_RED), COLOR_CFG(DEFAULT_BG)}, - /*7*/ { COLOR_CFG(COLOR_MAGENTA), COLOR_CFG(COLOR_CYAN)} + /*0*/ { COLOR_CFG(DEFAULT_FG), COLOR_CFG(DEFAULT_BG)}, + /*1*/ { COLOR_CFG(COLOR_BLUE), COLOR_CFG(DEFAULT_BG)}, + /*2*/ { COLOR_CFG((COLOR_YELLOW)+8), COLOR_CFG(COLOR_BLUE)}, + /*3*/ { COLOR_CFG(COLOR_GREEN), COLOR_CFG(DEFAULT_BG)}, + /*4*/ { COLOR_CFG(COLOR_MAGENTA), COLOR_CFG(DEFAULT_BG)}, + /*5*/ { COLOR_CFG(COLOR_BLUE), COLOR_CFG(DEFAULT_BG)}, + /*6*/ { COLOR_CFG(COLOR_RED), COLOR_CFG(DEFAULT_BG)}, + /*7*/ { COLOR_CFG(COLOR_MAGENTA), COLOR_CFG(COLOR_CYAN)} }; /* *INDENT-ON* */ @@ -1460,21 +1464,32 @@ void stop_curses(void) _eth_release(); #endif /* __DJGPP__ */ -#if defined(DOSPATH) && !(defined(USE_SLANG) || defined(_WIN_CC)) +/* ifdef's for non-Unix curses or slang */ +#if defined(__MINGW32__) + chtype bb; + + bb = getbkgd(stdscr); + bkgdset(0); + clear(); + refresh(); + bkgdset(bb); +#if defined(PDCURSES) + endwin(); +#endif /* PDCURSES */ + +#elif defined(DOSPATH) && !(defined(USE_SLANG) || defined(_WIN_CC)) + #if defined(PDCURSES) endwin(); -#else /* !PDCURSES */ +#endif /* PDCURSES */ + #ifdef __DJGPP__ ScreenClear(); #else /* some flavor of win32? */ -#ifdef __MINGW32__ - clear(); -#else clrscr(); -#endif #endif /* win32 */ -#endif /* PDCURSES */ -#else + +#else /* Unix, etc */ if (LYCursesON == TRUE) { lynx_nl2crlf(TRUE); @@ -1494,7 +1509,7 @@ void stop_curses(void) } fflush(stdout); -#endif /* defined(DOSPATH) && !(defined(USE_SLANG) || defined(_WIN_CC)) */ +#endif /* ifdef's for non-Unix curses or slang */ fflush(stderr); LYCursesON = FALSE; diff --git a/src/LYGlobalDefs.h b/src/LYGlobalDefs.h index a989b365..b8d7fea3 100644 --- a/src/LYGlobalDefs.h +++ b/src/LYGlobalDefs.h @@ -1,5 +1,5 @@ /* - * $LynxId: LYGlobalDefs.h,v 1.115 2008/12/26 18:25:27 tom Exp $ + * $LynxId: LYGlobalDefs.h,v 1.117 2009/03/11 00:29:55 tom Exp $ * * global variable definitions */ @@ -562,7 +562,7 @@ extern "C" { #endif #ifdef EXP_JUSTIFY_ELTS - extern BOOL ok_justify; + extern BOOLEAN ok_justify; extern int justify_max_void_percent; #endif @@ -585,13 +585,13 @@ extern "C" { #endif extern BOOLEAN LYUseTraceLog; /* Use a TRACE log? */ - extern BOOL force_empty_hrefless_a; + extern BOOLEAN force_empty_hrefless_a; extern int connect_timeout; extern int reading_timeout; #ifdef TEXTFIELDS_MAY_NEED_ACTIVATION extern BOOL textfields_need_activation; - extern BOOL textfields_activation_option; + extern BOOLEAN textfields_activation_option; #ifdef INACTIVE_INPUT_STYLE_VH extern BOOL textinput_redrawn; @@ -629,6 +629,8 @@ extern "C" { extern BOOLEAN system_is_NT; extern char windows_drive[4]; extern int lynx_timeout; + CRITICAL_SECTION critSec_DNS; + CRITICAL_SECTION critSec_READ; #endif /* _WINDOWS */ extern BOOLEAN show_cfg; diff --git a/src/LYIcon.rc b/src/LYIcon.rc new file mode 100644 index 00000000..9b6054c1 --- /dev/null +++ b/src/LYIcon.rc @@ -0,0 +1 @@ +100 ICON "../samples/lynx.ico" diff --git a/src/LYMain.c b/src/LYMain.c index 9cd31114..83c879a4 100644 --- a/src/LYMain.c +++ b/src/LYMain.c @@ -1,5 +1,5 @@ /* - * $LynxId: LYMain.c,v 1.196 2009/01/25 18:46:17 tom Exp $ + * $LynxId: LYMain.c,v 1.198 2009/03/11 00:29:55 tom Exp $ */ #include <HTUtils.h> #include <HTTP.h> @@ -57,7 +57,7 @@ #include <io.h> #endif -#ifdef LOCALE +#if defined(LOCALE) && !defined(HAVE_LIBINTL_H) #undef gettext /* Solaris locale.h prototypes gettext() */ #include <locale.h> #ifndef HAVE_GETTEXT @@ -530,7 +530,7 @@ int LYHiddenLinks = HIDDENLINKS_SEPARATE; /* Show hidden links? */ char *SSL_cert_file = NULL; /* Default CA CERT file */ int Old_DTD = NO; -static BOOL DTD_recovery = NO; +static BOOLEAN DTD_recovery = NO; #ifndef NO_LYNX_TRACE FILE *LYTraceLogFP = NULL; /* Pointer for TRACE log */ @@ -559,7 +559,7 @@ int connect_timeout = 18000; /*=180000*0.1 - used in HTDoConnect.*/ int reading_timeout = 18000; /*=180000*0.1 - used in HTDoConnect.*/ #ifdef EXP_JUSTIFY_ELTS -BOOL ok_justify = FALSE; +BOOLEAN ok_justify = FALSE; int justify_max_void_percent = 35; #endif @@ -576,11 +576,11 @@ int scrsize_x = 0; int scrsize_y = 0; #endif -BOOL force_empty_hrefless_a = FALSE; +BOOLEAN force_empty_hrefless_a = FALSE; #ifdef TEXTFIELDS_MAY_NEED_ACTIVATION BOOL textfields_need_activation = FALSE; -BOOL textfields_activation_option = FALSE; +BOOLEAN textfields_activation_option = FALSE; #endif BOOLEAN textfield_prompt_at_left_edge = FALSE; diff --git a/src/LYPrettySrc.c b/src/LYPrettySrc.c index c2228745..744d96cc 100644 --- a/src/LYPrettySrc.c +++ b/src/LYPrettySrc.c @@ -1,5 +1,5 @@ /* - * $LynxId: LYPrettySrc.c,v 1.19 2009/01/01 22:20:25 tom Exp $ + * $LynxId: LYPrettySrc.c,v 1.20 2009/03/11 00:30:39 tom Exp $ * * HTML source syntax highlighting * by Vlad Harchev <hvv@hippo.ru> @@ -20,7 +20,7 @@ BOOL psrc_convert_string = FALSE; BOOL psrc_view = FALSE; /* this is read by SGML_put_character - TRUE when viewing pretty source */ -BOOL LYpsrc = FALSE; /* this tells what will be shown on '\': +BOOLEAN LYpsrc = FALSE; /* this tells what will be shown on '\': if TRUE, then pretty source, normal source view otherwise. Toggled by -prettysrc commandline option. */ @@ -32,7 +32,7 @@ BOOL mark_htext_as_source = FALSE; /* tagspecs from lynx.cfg are read here. After .lss file is read (is with lss support), the style cache and markup are created before entering the mainloop. */ -BOOL psrcview_no_anchor_numbering = FALSE; +BOOLEAN psrcview_no_anchor_numbering = FALSE; static const char *HTL_tagspecs_defaults[HTL_num_lexemes] = { /* these values are defaults. They are also listed in comments of distibution's diff --git a/src/LYPrettySrc.h b/src/LYPrettySrc.h index 9886a49d..0031eb7c 100644 --- a/src/LYPrettySrc.h +++ b/src/LYPrettySrc.h @@ -1,3 +1,6 @@ +/* + * $LynxId: LYPrettySrc.h,v 1.10 2009/03/11 00:40:00 tom Exp $ + */ #ifndef LYPrettySrc_H #define LYPrettySrc_H @@ -13,7 +16,7 @@ extern "C" { /*whether HTML_put_string should convert string passed with TRANSLATE_AND_UNESCAPE_TO_STD */ extern BOOL psrc_view; - extern BOOL LYpsrc; + extern BOOLEAN LYpsrc; /* * This is used for tracking down whether the SGML engine was initialized @@ -80,7 +83,7 @@ extern "C" { extern int tagname_transform; extern int attrname_transform; - extern BOOL psrcview_no_anchor_numbering; + extern BOOLEAN psrcview_no_anchor_numbering; #ifdef __cplusplus } diff --git a/src/LYStrings.c b/src/LYStrings.c index 17ed7311..943a2eba 100644 --- a/src/LYStrings.c +++ b/src/LYStrings.c @@ -1,4 +1,4 @@ -/* $LynxId: LYStrings.c,v 1.163 2009/01/25 22:06:08 tom Exp $ */ +/* $LynxId: LYStrings.c,v 1.164 2009/03/11 00:31:09 tom Exp $ */ #include <HTUtils.h> #include <HTCJK.h> #include <UCAux.h> @@ -5299,7 +5299,7 @@ int LYscanFloat2(const char **source, float *result) if (*src != '.') { temp = NULL; - *result = strtol(src, &temp, 10); + *result = (float) strtol(src, &temp, 10); src = temp; } if (src != 0 && *src == '.') { diff --git a/src/LYexit.c b/src/LYexit.c index 37d7b519..296f61f7 100644 --- a/src/LYexit.c +++ b/src/LYexit.c @@ -1,5 +1,5 @@ /* - * $LynxId: LYexit.c,v 1.34 2008/12/29 01:03:20 tom Exp $ + * $LynxId: LYexit.c,v 1.35 2009/03/10 00:12:52 tom Exp $ * * Copyright (c) 1994, University of Kansas, All Rights Reserved * (most of this file was rewritten in 1996 and 2004). @@ -87,9 +87,6 @@ void LYexit(int status) { #ifndef VMS /* On VMS, the VMSexit() handler does these. - FM */ #ifdef _WINDOWS - extern CRITICAL_SECTION critSec_DNS; /* 1998/09/03 (Thu) 22:01:56 */ - extern CRITICAL_SECTION critSec_READ; /* 1998/09/03 (Thu) 22:01:56 */ - DeleteCriticalSection(&critSec_DNS); DeleteCriticalSection(&critSec_READ); diff --git a/src/UCAux.c b/src/UCAux.c index 3a8e9158..597d680d 100644 --- a/src/UCAux.c +++ b/src/UCAux.c @@ -1,5 +1,5 @@ /* - * $LynxId: UCAux.c,v 1.39 2009/01/03 18:46:33 tom Exp $ + * $LynxId: UCAux.c,v 1.40 2009/03/10 21:13:12 tom Exp $ */ #include <HTUtils.h> @@ -172,6 +172,11 @@ void UCSetTransParams(UCTransParams * pT, int cs_in, pT->transp = (BOOL) (!strcmp(p_in->MIMEname, "x-transparent") || !strcmp(p_out->MIMEname, "x-transparent")); + /* + * UCS-2 is handled as a special case in SGML_write(). + */ + pT->ucs_mode = 0; + if (pT->transp) { /* * Set up the structure for "transparent". - FM diff --git a/src/Xsystem.c b/src/Xsystem.c index 16509db0..fa3e6b96 100644 --- a/src/Xsystem.c +++ b/src/Xsystem.c @@ -1,4 +1,4 @@ -/* $LynxId: Xsystem.c,v 1.22 2009/02/01 21:22:55 tom Exp $ +/* $LynxId: Xsystem.c,v 1.23 2009/03/10 15:21:42 tom Exp $ * like system("cmd") but return with exit code of "cmd" * for Turbo-C/MS-C/LSI-C * This code is in the public domain. @@ -26,6 +26,7 @@ */ #include <LYUtils.h> #include <LYStrings.h> +#include <LYGlobalDefs.h> #ifdef DOSPATH #include <io.h> @@ -100,10 +101,6 @@ static char *NEAR xrealloc(void *p, size_t n) static int NEAR is_builtin_command(char *s) { -#ifdef WIN_EX - extern int system_is_NT; /* 1997/11/05 (Wed) 22:10:35 */ -#endif - static char *cmdtab[] = { "dir", "type", "rem", "ren", "rename", "erase", "del", @@ -172,7 +169,7 @@ static PRO *NEAR pars1c(char *s) int q; pp = (PRO *) xmalloc(sizeof(PRO)); - for (q = 0; q < TABLESIZE(pp->ored); q++) + for (q = 0; q < (int) TABLESIZE(pp->ored); q++) pp->ored[q] = q; while (isspc(*s)) s++; @@ -430,7 +427,7 @@ static void NEAR redswitch(PRO * p) { int d; - for (d = 0; d < TABLESIZE(p->ored); d++) { + for (d = 0; d < (int) TABLESIZE(p->ored); d++) { if (d != p->ored[d]) { p->sred[d] = dup(d); dup2(p->ored[d], d); @@ -442,7 +439,7 @@ static void NEAR redunswitch(PRO * p) { int d; - for (d = 0; d < TABLESIZE(p->ored); d++) { + for (d = 0; d < (int) TABLESIZE(p->ored); d++) { if (d != p->ored[d]) { dup2(p->sred[d], d); close(p->sred[d]); @@ -457,7 +454,10 @@ int xsystem(char *cmd) int psstdin, psstdout; int rdstdin, rdstdout; int rc = 0; + +#if USECMDLINE static char *cmdline = 0; +#endif #ifdef SH_EX /* 1997/11/01 (Sat) 10:04:03 add by JH7AYN */ pif = cmd; @@ -528,7 +528,7 @@ int xsystem(char *cmd) return rc < 0 ? 0xFF00 : rc; } -int exec_command(char *cmd, int wait_flag) +int exec_command(char *cmd, int wait_flag GCC_UNUSED) { int rc; diff --git a/src/makefile.in b/src/makefile.in index fc4bf7b5..4183bf08 100644 --- a/src/makefile.in +++ b/src/makefile.in @@ -1,4 +1,4 @@ -# $LynxId: makefile.in,v 1.58 2008/12/30 01:18:43 tom Exp $ +# $LynxId: makefile.in,v 1.59 2009/03/09 22:43:29 Doug.Kaufman Exp $ # template-makefile for Lynx src directory SHELL = @CONFIG_SHELL@ @@ -149,6 +149,9 @@ LYUtils$o : $(top_srcdir)/userdefs.h LYmktime$o : $(top_srcdir)/userdefs.h LYrcFile$o : $(top_srcdir)/userdefs.h +LYIcon$o: + windres -i LYIcon.rc -o LYIcon$o -O coff + CHRTR= chrtrans/ TABLES= \