diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2001-01-02 01:53:43 -0500 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2001-01-02 01:53:43 -0500 |
commit | d31fb3c41be5d6e079d415087eda3c03cc34bcdb (patch) | |
tree | 76faa032cec14cb8e3500f25c1074eacc56c1c7e | |
parent | 244b955fa0312faea2e138d55330bd9a81fd92de (diff) | |
download | lynx-snapshots-d31fb3c41be5d6e079d415087eda3c03cc34bcdb.tar.gz |
snapshot of project "lynx", label v2-8-4dev_16
-rw-r--r-- | CHANGES | 28 | ||||
-rw-r--r-- | INSTALLATION | 4 | ||||
-rw-r--r-- | README | 6 | ||||
-rw-r--r-- | WWW/Library/Implementation/HTAAUtil.c | 11 | ||||
-rw-r--r-- | WWW/Library/Implementation/HTFormat.c | 40 | ||||
-rw-r--r-- | WWW/Library/Implementation/HTMLDTD.c | 3 | ||||
-rw-r--r-- | WWW/Library/Implementation/HTNews.c | 167 | ||||
-rw-r--r-- | WWW/Library/Implementation/HTNews.h | 14 | ||||
-rw-r--r-- | WWW/Library/Implementation/HTTP.c | 273 | ||||
-rw-r--r-- | WWW/Library/Implementation/HTUtils.h | 52 | ||||
-rw-r--r-- | aclocal.m4 | 215 | ||||
-rwxr-xr-x | config.guess | 58 | ||||
-rw-r--r-- | config.hin | 5 | ||||
-rwxr-xr-x | config.sub | 32 | ||||
-rwxr-xr-x | configure | 1933 | ||||
-rw-r--r-- | configure.in | 13 | ||||
-rw-r--r-- | docs/README.ssl | 49 | ||||
-rw-r--r-- | po/ja.po | 5566 | ||||
-rw-r--r-- | src/LYCurses.c | 2 | ||||
-rw-r--r-- | src/LYMain.c | 46 | ||||
-rw-r--r-- | userdefs.h | 4 |
21 files changed, 7590 insertions, 931 deletions
diff --git a/CHANGES b/CHANGES index 4b818ce9..88c6a671 100644 --- a/CHANGES +++ b/CHANGES @@ -1,19 +1,35 @@ Changes since Lynx 2.8 release =============================================================================== +2001-01-01 (2.8.4dev.16) +* add ja.po message file (overlooked in dev.15, reported by Atsuhito Kohda + <kohda@nsx.pm.tokushima-u.ac.jp>) +* use C preprocessor at build-time to replace CF_EBCDIC configure macro -PG +* integrated SSL patch from http://www.moxienet.com/lynx/ as a configure + option, --with-ssl -TD +* add configure check for delscreen(), which is not available in some older + SVr3 curses libraries -TD +* add configure check for socks5p.h, to allow socks5 build to use function + prototypes -TD +* updated config.sub, config.guess -TD +* modify some configure macros to use CF_PATHSEP, for path-separator which is + usually colon on Unix, and semicolon on MSDOS, etc. -TD +* modify several configure macros to use $CFLAGS consistently for compiler + options and $CPPFLAGS for C preprocessor options -TD + 2000-12-21 (2.8.4dev.15) -+ add .po files to main distribution, remove stubs for files that were not +* add .po files to main distribution, remove stubs for files that were not implemented, use msgmerge to resync against the current lynx.pot (prompted by discussion with Morten Bo Johansen <mojo@image.dk>) -TD -+ corrected dev.13 changes for EXP_READPROGRESS, to make the +* corrected dev.13 changes for EXP_READPROGRESS, to make the non-EXP_READPROGRESS configuration build and work with .lynxrc settings -DK -+ use EXIT_SUCCESS/EXIT_FAILURE in exit() and exit_immediately() calls -TD -+ improve check for lynx_temp_space by ensuring that the directory actually +* use EXIT_SUCCESS/EXIT_FAILURE in exit() and exit_immediately() calls -TD +* improve check for lynx_temp_space by ensuring that the directory actually exists; attempt to create the directory if it does not, e.g., ~/tmp/, to resolve problem introduced by Mandrake's patch -TD -+ modify SetOutputMode() to flush stdout to work around buffering problem with +* modify SetOutputMode() to flush stdout to work around buffering problem with cygwin on error exit from Lynx (reported by Brad Town <btown@ceddec.com>) -TD -+ change definitions for LYCharINTERRUPT1 and LYCharINTERRUPT2 to not use +* change definitions for LYCharINTERRUPT1 and LYCharINTERRUPT2 to not use FROMASCII() in the EBCDIC configuration, since those symbols are used in case statements which otherwise would not compile -PG diff --git a/INSTALLATION b/INSTALLATION index 8e46be5e..68fd9881 100644 --- a/INSTALLATION +++ b/INSTALLATION @@ -495,6 +495,10 @@ II. Compile instructions -- UNIX SITE_LYDEFS and SITE_DEFS. If you do SOCKSify lynx, you can turn off SOCKS proxy usage via a -nosocks command line switch. + --with-ssl (define USE_SSL) + Use this option to configure with the OpenSSL library. + See docs/README.ssl for additional information. + --with-zlib (define USE_ZLIB) Use zlib for decompression of some gzip files. diff --git a/README b/README index cba4ffda..e23c7d54 100644 --- a/README +++ b/README @@ -50,9 +50,13 @@ LICENSE Certain portions of the Lynx source distribution were originally created by CERN and have been modified during the development of - Lynx. See WWW/FreeOfCharge.html for copyright info regarding CERN + Lynx. See WWW/FreeofCharge.html for copyright info regarding CERN products used in Lynx. + Note that Lynx is not self-contained; typically it is built with a + variety of add-on libraries, including those for compression, IPv6, + SOCKS and SSL support. + YEAR 2000 COMPLIANCE We believe Lynx works properly for the Year 2000 issues, since it does diff --git a/WWW/Library/Implementation/HTAAUtil.c b/WWW/Library/Implementation/HTAAUtil.c index ecfb04e1..25d24aa6 100644 --- a/WWW/Library/Implementation/HTAAUtil.c +++ b/WWW/Library/Implementation/HTAAUtil.c @@ -50,6 +50,10 @@ #include <HTTCP.h> #include <HTTP.h> +#ifdef USE_SSL +PRIVATE SSL * Handle = NULL; /* The SSL Handle */ +#endif /* USE_SSL */ + #include <LYStrings.h> #include <LYLeaks.h> @@ -555,7 +559,14 @@ PUBLIC char *HTAA_getUnfoldedLine NOARGS /* Reading from socket */ if (start_pointer >= end_pointer) {/*Read the next block and continue*/ +#ifdef USE_SSL + if (Handle) + count = SSL_read(Handle, buffer, BUFFER_SIZE); + else + count = NETREAD(in_soc, buffer, BUFFER_SIZE); +#else count = NETREAD(in_soc, buffer, BUFFER_SIZE); +#endif /* USE_SSL */ if (count <= 0) { in_soc = -1; return line; diff --git a/WWW/Library/Implementation/HTFormat.c b/WWW/Library/Implementation/HTFormat.c index c589749d..1148e308 100644 --- a/WWW/Library/Implementation/HTFormat.c +++ b/WWW/Library/Implementation/HTFormat.c @@ -259,6 +259,39 @@ PUBLIC int HTGetCharacter NOARGS return FROMASCII(UCH(ch)); } +#ifdef USE_SSL +PUBLIC char HTGetSSLCharacter ARGS1(void *, handle) +{ + char ch; + interrupted_in_htgetcharacter = 0; + if(!handle) + return (char)EOF; + do { + if (input_pointer >= input_limit) { + int status = SSL_read((SSL *)handle, + input_buffer, INPUT_BUFFER_SIZE); + if (status <= 0) { + if (status == 0) + return (char)EOF; + if (status == HT_INTERRUPTED) { + CTRACE((tfp, "HTFormat: Interrupted in HTGetSSLCharacter\n")); + interrupted_in_htgetcharacter = 1; + return (char)EOF; + } + CTRACE((tfp, "HTFormat: SSL_read error %d\n", status)); + return (char)EOF; /* -1 is returned by UCX + at end of HTTP link */ + } + input_pointer = input_buffer; + input_limit = input_buffer + status; + } + ch = *input_pointer++; + } while (ch == (char) 13); /* Ignore ASCII carriage return */ + + return FROMASCII(ch); +} +#endif /* USE_SSL */ + /* Match maintype to any MIME type starting with maintype, * for example: image/gif should match image */ @@ -641,7 +674,14 @@ PUBLIC int HTCopy ARGS4( goto finished; } +#ifdef USE_SSL + if (handle) + status = SSL_read((SSL *)handle, input_buffer, INPUT_BUFFER_SIZE); + else + status = NETREAD(file_number, input_buffer, INPUT_BUFFER_SIZE); +#else status = NETREAD(file_number, input_buffer, INPUT_BUFFER_SIZE); +#endif /* USE_SSL */ if (status <= 0) { if (status == 0) { diff --git a/WWW/Library/Implementation/HTMLDTD.c b/WWW/Library/Implementation/HTMLDTD.c index 3b9d9353..981bc989 100644 --- a/WWW/Library/Implementation/HTMLDTD.c +++ b/WWW/Library/Implementation/HTMLDTD.c @@ -1365,6 +1365,9 @@ static attr ulist_attr[] = { /* UL attributes */ ** ** Name*, Attributes, No. of attributes, content, extra info... */ +#undef P +#undef P +#undef P_ #ifdef USE_COLOR_STYLE #define P_(x) x , (sizeof x) -1 #define NULL_HTTag_ NULL, 0 diff --git a/WWW/Library/Implementation/HTNews.c b/WWW/Library/Implementation/HTNews.c index ded9af8c..b404733b 100644 --- a/WWW/Library/Implementation/HTNews.c +++ b/WWW/Library/Implementation/HTNews.c @@ -34,9 +34,21 @@ PUBLIC int HTNewsMaxChunk = 40; /* Largest number of articles in one window */ #define SERVER_FILE "/usr/local/lib/rn/server" #endif /* SERVER_FILE */ +#ifdef USE_SSL +extern SSL_CTX * ssl_ctx; +PRIVATE SSL * Handle = NULL; +PRIVATE int channel_s = 1; +#define NEWS_NETWRITE(sock, buff, size) \ + (Handle ? SSL_write(Handle, buff, size) : NETWRITE(sock, buff, size)) +#define NEWS_NETCLOSE(sock) \ + { (void)NETCLOSE(sock); if (Handle) SSL_free(Handle); Handle = NULL; } +PRIVATE char HTNewsGetCharacter NOPARAMS; +#define NEXT_CHAR HTNewsGetCharacter() +#else #define NEWS_NETWRITE NETWRITE #define NEWS_NETCLOSE NETCLOSE #define NEXT_CHAR HTGetCharacter() +#endif /* USE_SSL */ #include <HTML.h> #include <HTParse.h> @@ -2147,6 +2159,9 @@ PRIVATE int HTLoadNews ARGS4( char *ProxyHost = NULL; char *ProxyHREF = NULL; char *postfile = NULL; +#ifdef USE_SSL + char SSLprogress[256]; +#endif /* USE_SSL */ diagnostic = (format_out == WWW_SOURCE || /* set global flag */ format_out == HTAtom_for("www/download") || @@ -2195,11 +2210,13 @@ PRIVATE int HTLoadNews ARGS4( group_wanted) && strchr(arg, '@') == NULL) && (strchr(arg, '*') != NULL)); +#ifndef USE_SSL if (!strncasecomp(arg, "snewspost:", 10) || !strncasecomp(arg, "snewsreply:", 11)) { HTAlert(FAILED_CANNOT_POST_SSL); return HT_NOT_LOADED; } +#endif /* !USE_SSL */ if (post_wanted || reply_wanted || spost_wanted || sreply_wanted) { /* ** Make sure we have a non-zero path for the newsgroup(s). - FM @@ -2287,8 +2304,43 @@ PRIVATE int HTLoadNews ARGS4( StrAllocCopy(NewsHREF, command); } else if (!strncasecomp(arg, "snews:", 6)) { +#ifdef USE_SSL + if (((*(arg + 6) == '\0') || + (!strcmp((arg + 6), "/") || + !strcmp((arg + 6), "//") || + !strcmp((arg + 6), "///"))) || + ((!strncmp((arg + 6), "//", 2)) && + (!(cp = strchr((arg + 8), '/')) || *(cp + 1) == '\0'))) { + p1 = "*"; + group_wanted = FALSE; + list_wanted = TRUE; + } else if (*(arg + 6) != '/') { + p1 = (arg + 6); + } else if (*(arg + 6) == '/' && *(arg + 7) != '/') { + p1 = (arg + 7); + } else { + p1 = (cp + 1); + } + if (!(cp = HTParse(arg, "", PARSE_HOST)) || *cp == '\0') { + if (s >= 0 && NewsHost && strcasecomp(NewsHost, HTNewsHost)) { + NEWS_NETCLOSE(s); + s = -1; + } + StrAllocCopy(NewsHost, HTNewsHost); + } else { + if (s >= 0 && NewsHost && strcasecomp(NewsHost, cp)) { + NEWS_NETCLOSE(s); + s = -1; + } + StrAllocCopy(NewsHost, cp); + } + FREE(cp); + sprintf(command, "snews://%.250s/", NewsHost); + StrAllocCopy(NewsHREF, command); +#else HTAlert(gettext("This client does not contain support for SNEWS URLs.")); return HT_NOT_LOADED; +#endif /* USE_SSL */ } else if (!strncasecomp (arg, "news:/", 6)) { if (((*(arg + 6) == '\0') || @@ -2526,7 +2578,18 @@ PRIVATE int HTLoadNews ARGS4( _HTProgress(gettext("Connecting to NewsHost ...")); +#ifdef USE_SSL + if (!using_proxy && + (!strncmp(arg, "snews:", 6) || + !strncmp(arg, "snewspost:", 10) || + !strncmp(arg, "snewsreply:", 11))) + status = HTDoConnect (url, "NNTPS", SNEWS_PORT, &s); + else + status = HTDoConnect (url, "NNTP", NEWS_PORT, &s); +#else status = HTDoConnect (url, "NNTP", NEWS_PORT, &s); +#endif /* USE_SSL */ + if (status == HT_INTERRUPTED) { /* ** Interrupt cleanly. @@ -2542,6 +2605,12 @@ PRIVATE int HTLoadNews ARGS4( FREE(ProxyHost); FREE(ProxyHREF); FREE(ListArg); +#ifdef USE_SSL + if (Handle) { + SSL_free(Handle); + Handle = NULL; + } +#endif /* USE_SSL */ if (postfile) { HTSYS_remove(postfile); FREE(postfile); @@ -2572,6 +2641,54 @@ PRIVATE int HTLoadNews ARGS4( } else { CTRACE((tfp, "HTNews: Connected to news host %s.\n", NewsHost)); +#ifdef USE_SSL + /* + ** If this is an snews url, + ** then do the SSL stuff here + */ + if (!using_proxy && + (!strncmp(url, "snews", 5) || + !strncmp(url, "snewspost:", 10) || + !strncmp(url, "snewsreply:", 11))) { + Handle = HTGetSSLHandle(); + SSL_set_fd(Handle, s); + HTSSLInitPRNG(); + status = SSL_connect(Handle); + + if (status <= 0) { + unsigned long SSLerror; + CTRACE((tfp,"HTNews: Unable to complete SSL handshake for '%s', SSL_connect=%d, SSL error stack dump follows\n",url, status)); + SSL_load_error_strings(); + while((SSLerror = ERR_get_error()) != 0) { + CTRACE((tfp,"HTNews: SSL: %s\n",ERR_error_string(SSLerror,NULL))); + } + HTAlert( + "Unable to make secure connection to remote host."); + NEWS_NETCLOSE(s); + s = -1; + if (!(post_wanted || reply_wanted || + spost_wanted || sreply_wanted)) + (*targetClass._abort)(target, NULL); + FREE(NewsHost); + FREE(NewsHREF); + FREE(ProxyHost); + FREE(ProxyHREF); + FREE(ListArg); + if (postfile) { +#ifdef VMS + while (remove(postfile) == 0) + ; /* loop through all versions */ +#else + remove(postfile); +#endif /* VMS */ + FREE(postfile); + } + return HT_NOT_LOADED; + } + sprintf(SSLprogress,"Secure %d-bit %s (%s) NNTP connection",SSL_get_cipher_bits(Handle,NULL),SSL_get_cipher_version(Handle),SSL_get_cipher(Handle)); + _HTProgress(SSLprogress); + } +#endif /* USE_SSL */ HTInitInput(s); /* set up buffering */ if (proxycmd[0]) { status = NEWS_NETWRITE(s, proxycmd, strlen(proxycmd)); @@ -2922,6 +3039,56 @@ PUBLIC void HTClearNNTPAuthInfo NOARGS free_NNTP_AuthInfo(); } +#ifdef USE_SSL +PRIVATE char HTNewsGetCharacter NOARGS +{ + if (!Handle) + return HTGetCharacter(); + else + return HTGetSSLCharacter((void *)Handle); +} + +PUBLIC int HTNewsProxyConnect ARGS5 ( + int, sock, + CONST char *, url, + HTParentAnchor *, anAnchor, + HTFormat, format_out, + HTStream *, sink) +{ + int status; + CONST char * arg = url; + char SSLprogress[256]; + + s = channel_s = sock; + Handle = HTGetSSLHandle(); + SSL_set_fd(Handle, s); + HTSSLInitPRNG(); + status = SSL_connect(Handle); + + if (status <= 0) { + unsigned long SSLerror; + channel_s = -1; + CTRACE((tfp,"HTNews: Unable to complete SSL handshake for '%s', SSL_connect=%d, SSL error stack dump follows\n",url, status)); + SSL_load_error_strings(); + while((SSLerror = ERR_get_error()) != 0) { + CTRACE((tfp,"HTNews: SSL: %s\n",ERR_error_string(SSLerror,NULL))); + } + HTAlert("Unable to make secure connection to remote host."); + NEWS_NETCLOSE(s); + s = -1; + return HT_NOT_LOADED; + } + sprintf(SSLprogress,"Secure %d-bit %s (%s) NNTP connection", + SSL_get_cipher_bits(Handle,NULL), + SSL_get_cipher_version(Handle), + SSL_get_cipher(Handle)); + _HTProgress(SSLprogress); + status = HTLoadNews(arg, anAnchor, format_out, sink); + channel_s = -1; + return status; +} +#endif /* USE_SSL */ + #ifdef GLOBALDEF_IS_MACRO #define _HTNEWS_C_1_INIT { "news", HTLoadNews, NULL } GLOBALDEF (HTProtocol,HTNews,_HTNEWS_C_1_INIT); diff --git a/WWW/Library/Implementation/HTNews.h b/WWW/Library/Implementation/HTNews.h index 7cd930a4..92bf7f33 100644 --- a/WWW/Library/Implementation/HTNews.h +++ b/WWW/Library/Implementation/HTNews.h @@ -41,9 +41,13 @@ extern char * HTNewsHost; extern void HTClearNNTPAuthInfo NOPARAMS; -#endif /* HTNEWS_H */ - +#ifdef USE_SSL +extern int HTNewsProxyConnect PARAMS (( + int sock, + CONST char * url, + HTParentAnchor *anAnchor, + HTFormat format_out, + HTStream * sink)); +#endif -/* - - tbl */ +#endif /* HTNEWS_H */ diff --git a/WWW/Library/Implementation/HTTP.c b/WWW/Library/Implementation/HTTP.c index 89aa7045..7c792ef6 100644 --- a/WWW/Library/Implementation/HTTP.c +++ b/WWW/Library/Implementation/HTTP.c @@ -13,6 +13,10 @@ #include <HTTP.h> #include <LYUtils.h> +#ifdef USE_SSL +#include <HTNews.h> +#endif + #define HTTP_VERSION "HTTP/1.0" #define HTTP_PORT 80 @@ -67,9 +71,85 @@ extern char *http_error_file; /* Store HTTP status code in this file */ extern BOOL traversal; /* TRUE if we are doing a traversal */ extern BOOL dump_output_immediately; /* TRUE if no interactive user */ +#ifdef USE_SSL +PUBLIC SSL_CTX * ssl_ctx = NULL; /* SSL ctx */ + +PRIVATE void free_ssl_ctx NOARGS +{ + if (ssl_ctx != NULL) + SSL_CTX_free(ssl_ctx); +} + +PUBLIC SSL * HTGetSSLHandle NOARGS +{ + if (ssl_ctx == NULL) { + /* + * First time only. + */ +#if SSLEAY_VERSION_NUMBER < 0x0800 + ssl_ctx = SSL_CTX_new(); + X509_set_default_verify_paths(ssl_ctx->cert); +#else + SSLeay_add_ssl_algorithms(); + ssl_ctx = SSL_CTX_new(SSLv23_client_method()); + SSL_CTX_set_options(ssl_ctx, SSL_OP_ALL); + SSL_CTX_set_default_verify_paths(ssl_ctx); +#endif /* SSLEAY_VERSION_NUMBER < 0x0800 */ + atexit(free_ssl_ctx); + } + return(SSL_new(ssl_ctx)); +} + +PUBLIC void HTSSLInitPRNG NOARGS +{ +#if SSLEAY_VERSION_NUMBER >= 0x00905100 + if (RAND_status() == 0) { + char rand_file[256]; + time_t t; + pid_t pid; + long l,seed; + + t = time(NULL); + pid = getpid(); + RAND_file_name(rand_file, 256); + CTRACE((tfp,"HTTP: Seeding PRNG\n")); + if(rand_file != NULL) { + /* Seed as much as 1024 bytes from RAND_file_name */ + RAND_load_file(rand_file, 1024); + } + /* Seed in time (mod_ssl does this) */ + RAND_seed((unsigned char *)&t, sizeof(time_t)); + /* Seed in pid (mod_ssl does this) */ + RAND_seed((unsigned char *)&pid, sizeof(pid_t)); + /* Initialize system's random number generator */ + RAND_bytes((unsigned char *)&seed, sizeof(long)); + srand48(seed); + while (RAND_status() == 0) { + /* Repeatedly seed the PRNG using the system's random number generator until it has been seeded with enough data */ + l = lrand48(); + RAND_seed((unsigned char *)&l, sizeof(long)); + } + if (rand_file != NULL) { + /* Write a rand_file */ + RAND_write_file(rand_file); + } + } +#endif /* SSLEAY_VERSION_NUMBER >= 0x00905100 */ + return; +} + +#define HTTP_NETREAD(sock, buff, size, handle) \ + (handle ? SSL_read(handle, buff, size) : NETREAD(sock, buff, size)) +#define HTTP_NETWRITE(sock, buff, size, handle) \ + (handle ? SSL_write(handle, buff, size) : NETWRITE(sock, buff, size)) +#define HTTP_NETCLOSE(sock, handle) \ + { (void)NETCLOSE(sock); if (handle) SSL_free(handle); handle = NULL; } + +#else #define HTTP_NETREAD(a, b, c, d) NETREAD(a, b, c) #define HTTP_NETWRITE(a, b, c, d) NETWRITE(a, b, c) #define HTTP_NETCLOSE(a, b) (void)NETCLOSE(a) +#endif /* USE_SSL */ #ifdef _WINDOWS /* 1997/11/06 (Thu) 13:00:08 */ @@ -299,7 +379,19 @@ PRIVATE int HTLoadHTTP ARGS4 ( BOOL doing_redirect, already_retrying = FALSE; int len = 0; +#ifdef USE_SSL + BOOL do_connect = FALSE; /* ARE WE going to use a proxy tunnel ? */ + BOOL did_connect = FALSE; /* ARE WE actually using a proxy tunnel ? */ + CONST char *connect_url = NULL; /* The URL being proxied */ + char *connect_host = NULL; /* The host being proxied */ + SSL * handle = NULL; /* The SSL handle */ + char SSLprogress[256]; /* progress bar message */ +#if SSLEAY_VERSION_NUMBER >= 0x0900 + BOOL try_tls = TRUE; +#endif /* SSLEAY_VERSION_NUMBER >= 0x0900 */ +#else void * handle = NULL; +#endif /* USE_SSL */ if (anAnchor->isHEAD) do_head = TRUE; @@ -317,6 +409,30 @@ PRIVATE int HTLoadHTTP ARGS4 ( goto done; } +#ifdef USE_SSL + if (using_proxy && !strncmp(url, "http://", 7)) { + if ((connect_url = strstr((url+7), "https://"))) { + do_connect = TRUE; + connect_host = HTParse(connect_url, "https", PARSE_HOST); + if (!strchr(connect_host, ':')) { + sprintf(temp, ":%d", HTTPS_PORT); + StrAllocCat(connect_host, temp); + } + CTRACE((tfp, "HTTP: connect_url = '%s'\n", connect_url)); + CTRACE((tfp, "HTTP: connect_host = '%s'\n", connect_host)); + } else if ((connect_url = strstr((url+7), "snews://"))) { + do_connect = TRUE; + connect_host = HTParse(connect_url, "snews", PARSE_HOST); + if (!strchr(connect_host, ':')) { + sprintf(temp, ":%d", SNEWS_PORT); + StrAllocCat(connect_host, temp); + } + CTRACE((tfp, "HTTP: connect_url = '%s'\n", connect_url)); + CTRACE((tfp, "HTTP: connect_host = '%s'\n", connect_host)); + } + } +#endif /* USE_SSL */ + sprintf(crlf, "%c%c", CR, LF); /* @@ -340,12 +456,18 @@ try_again: line_kept_clean = NULL; if (!strncmp(url, "https", 5)) +#ifdef USE_SSL + status = HTDoConnect (url, "HTTPS", HTTPS_PORT, &s); + else + status = HTDoConnect (url, "HTTP", HTTP_PORT, &s); +#else { HTAlert(gettext("This client does not contain support for HTTPS URLs.")); status = HT_NOT_LOADED; goto done; } status = HTDoConnect (arg, "HTTP", HTTP_PORT, &s); +#endif /* USE_SSL */ if (status == HT_INTERRUPTED) { /* ** Interrupt cleanly. @@ -375,12 +497,91 @@ try_again: * This is a nice long function as well. *sigh* -RJP */ +#ifdef USE_SSL +use_tunnel: + /* + ** If this is an https document + ** then do the SSL stuff here + */ + if (did_connect || !strncmp(url, "https", 5)) { + handle = HTGetSSLHandle(); + SSL_set_fd(handle, s); +#if SSLEAY_VERSION_NUMBER >= 0x0900 + if (!try_tls) + handle->options|=SSL_OP_NO_TLSv1; +#endif /* SSLEAY_VERSION_NUMBER >= 0x0900 */ + HTSSLInitPRNG(); + status = SSL_connect(handle); + + if (status <= 0) { +#if SSLEAY_VERSION_NUMBER >= 0x0900 + if (try_tls) { + CTRACE((tfp, "HTTP: Retrying connection without TLS\n")); + _HTProgress("Retrying connection."); + try_tls = FALSE; + if (did_connect) + HTTP_NETCLOSE(s, handle); + goto try_again; + } else { + unsigned long SSLerror; + CTRACE((tfp, +"HTTP: Unable to complete SSL handshake for '%s', SSL_connect=%d, SSL error stack dump follows\n", + url, status)); + SSL_load_error_strings(); + while((SSLerror=ERR_get_error())!=0) { + CTRACE((tfp,"HTTP: SSL: %s\n",ERR_error_string(SSLerror,NULL))); + } + HTAlert("Unable to make secure connection to remote host."); + if (did_connect) + HTTP_NETCLOSE(s, handle); + status = HT_NOT_LOADED; + goto done; + } +#else + unsigned long SSLerror; + CTRACE((tfp, +"HTTP: Unable to complete SSL handshake for '%s', SSL_connect=%d, SSL error stack dump follows\n", + url, status)); + SSL_load_error_strings(); + while((SSLerror=ERR_get_error())!=0) { + CTRACE((tfp,"HTTP: SSL: %s\n",ERR_error_string(SSLerror,NULL))); + } + HTAlert("Unable to make secure connection to remote host."); + if (did_connect) + HTTP_NETCLOSE(s, handle); + status = HT_NOT_LOADED; + goto done; +#endif /* SSLEAY_VERSION_NUMBER >= 0x0900 */ + } + sprintf(SSLprogress,"Secure %d-bit %s (%s) HTTP connection",SSL_get_cipher_bits(handle,NULL),SSL_get_cipher_version(handle),SSL_get_cipher(handle)); + _HTProgress(SSLprogress); + +#ifdef NOTDEFINED + if (strcmp(HTParse(url, "", PARSE_HOST), + strstr(X509_NAME_oneline( + X509_get_subject_name( + handle->session->peer)),"/CN=")+4)) { + HTAlert("Certificate is for different host name"); + HTAlert(strstr(X509_NAME_oneline( + X509_get_subject_name( + handle->session->peer)),"/CN=")+4); + } +#endif /* NOTDEFINED */ + } +#endif /* USE_SSL */ + /* Ask that node for the document, ** omitting the host name & anchor */ { char * p1 = (HTParse(url, "", PARSE_PATH|PARSE_PUNCTUATION)); +#ifdef USE_SSL + if (do_connect) { + METHOD = "CONNECT"; + StrAllocCopy(command, "CONNECT "); + } else +#endif /* USE_SSL */ if (do_post) { METHOD = "POST"; StrAllocCopy(command, "POST "); @@ -397,8 +598,17 @@ try_again: ** of say: /gopher://a;lkdjfl;ajdf;lkj/;aldk/adflj ** so that just gopher://.... is sent. */ +#ifdef USE_SSL + if (using_proxy && !did_connect) { + if (do_connect) + StrAllocCat(command, connect_host); + else + StrAllocCat(command, p1+1); + } +#else if (using_proxy) StrAllocCat(command, p1+1); +#endif /* USE_SSL */ else StrAllocCat(command, p1); FREE(p1); @@ -638,6 +848,10 @@ try_again: } else { if (traversal || dump_output_immediately) HTAlert(FAILED_NEED_PASSWD); +#ifdef USE_SSL + if (did_connect) + HTTP_NETCLOSE(s, handle); +#endif /* USE_SSL */ FREE(command); FREE(hostname); FREE(docname); @@ -752,7 +966,11 @@ try_again: auth_proxy = NO; } - if (do_post) { + if ( +#ifdef USE_SSL + !do_connect && +#endif /* USE_SSL */ + do_post) { CTRACE((tfp, "HTTP: Doing post, content-type '%s'\n", anAnchor->post_content_type ? anAnchor->post_content_type : "lose")); @@ -776,11 +994,17 @@ try_again: StrAllocCat(command, anAnchor->post_data); } else - StrAllocCat(command, crlf); /* Blank line means "end" of headers */ + StrAllocCat(command, crlf); /* Blank line means "end" of headers */ +#ifdef USE_SSL + CTRACE((tfp, "Writing:\n%s%s----------------------------------\n", + command, + (anAnchor->post_data && !do_connect ? crlf : ""))); +#else CTRACE((tfp, "Writing:\n%s%s----------------------------------\n", command, (anAnchor->post_data ? crlf : ""))); +#endif /* USE_SSL */ _HTProgress (gettext("Sending HTTP request.")); @@ -1143,6 +1367,35 @@ try_again: * > 206 is unknown. * All should return something to display. */ +#ifdef USE_SSL + if (do_connect) { + CTRACE((tfp, "HTTP: Proxy tunnel to '%s' established.\n", + connect_host)); + do_connect = FALSE; + url = connect_url; + FREE(line_buffer); + FREE(line_kept_clean); + if (!strncmp(connect_url, "snews", 5)) { + CTRACE((tfp, + " Will attempt handshake and snews connection.\n")); + status = HTNewsProxyConnect(s, url, anAnchor, + format_out, sink); + goto done; + } + did_connect = TRUE; + already_retrying = TRUE; + eol = 0; + bytes_already_read = 0; + had_header = NO; + length = 0; + doing_redirect = FALSE; + permanent_redirection = FALSE; + target = NULL; + CTRACE((tfp, + " Will attempt handshake and resubmit headers.\n")); + goto use_tunnel; + } +#endif /* USE_SSL */ HTProgress(line_buffer); } /* case 2 switch */ break; @@ -1337,6 +1590,13 @@ try_again: gettext("Retrying with access authorization information.")); FREE(line_buffer); FREE(line_kept_clean); +#ifdef USE_SSL + if (using_proxy && !strncmp(url, "https://", 8)) { + url = arg; + do_connect = TRUE; + did_connect = FALSE; + } +#endif /* USE_SSL */ goto try_again; } else if (!(traversal || dump_output_immediately) && HTConfirm(gettext("Show the 401 message body?"))) { @@ -1771,6 +2031,15 @@ done: do_head = FALSE; do_post = FALSE; reloading = FALSE; +#ifdef USE_SSL + do_connect = FALSE; + did_connect = FALSE; + FREE(connect_host); + if (handle) { + SSL_free(handle); + handle = NULL; + } +#endif /* USE_SSL */ return status; } diff --git a/WWW/Library/Implementation/HTUtils.h b/WWW/Library/Implementation/HTUtils.h index 036ed2fd..ee787194 100644 --- a/WWW/Library/Implementation/HTUtils.h +++ b/WWW/Library/Implementation/HTUtils.h @@ -17,7 +17,7 @@ #include <sys/types.h> #include <stdio.h> -#else +#else /* HAVE_CONFIG_H */ #ifdef DJGPP #include <sys/config.h> /* pseudo-autoconf values for DJGPP libc/headers */ @@ -102,6 +102,14 @@ #endif /* HAVE_CONFIG_H */ +#if '0' != 48 +#define NOT_ASCII +#endif + +#if '0' == 240 +#define EBCDIC +#endif + #ifndef LY_MAXPATH #define LY_MAXPATH 256 #endif @@ -507,10 +515,52 @@ extern FILE *TraceFP NOPARAMS; #define Rgetpeername getpeername #endif +/* + * Workaround for order-of-evaluation problem with gcc and socks5 headers + * which breaks the Rxxxx names by attaching the prefix twice: + */ +#ifdef INCLUDE_PROTOTYPES +#undef Raccept +#undef Rbind +#undef Rconnect +#undef Rlisten +#undef Rselect +#undef Rgetpeername +#undef Rgetsockname +#define Raccept accept +#define Rbind bind +#define Rconnect connect +#define Rgetpeername getpeername +#define Rgetsockname getsockname +#define Rlisten listen +#define Rselect select +#endif + #endif /* USE_SOCKS5 */ #define SHORTENED_RBIND /* FIXME: do this in configure-script */ +#ifdef USE_SSL +#define free_func free__func +#ifdef USE_OPENSSL_INCL +#include <openssl/ssl.h> +#include <openssl/crypto.h> +#include <openssl/rand.h> +#include <openssl/err.h> +#else +#include <ssl.h> +#include <crypto.h> +#include <rand.h> +#include <err.h> +#endif +#undef free_func + +extern SSL * HTGetSSLHandle NOPARAMS; +extern void HTSSLInitPRNG NOPARAMS; +extern char HTGetSSLCharacter PARAMS((void * handle)); + +#endif /* USE_SSL */ + #include <userdefs.h> #endif /* HTUTILS_H */ diff --git a/aclocal.m4 b/aclocal.m4 index e11d007e..94a3528c 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -4,7 +4,7 @@ dnl and Jim Spath <jspath@mail.bcpl.lib.md.us> dnl and Philippe De Muyter <phdm@macqel.be> dnl dnl Created: 1997/1/28 -dnl Updated: 2000/10/12 +dnl Updated: 2000/12/31 dnl dnl The autoconf used in Lynx development is GNU autoconf, patched dnl by Tom Dickey. See your local GNU archives, and this URL: @@ -181,6 +181,7 @@ dnl AM_PATH_PROG_WITH_TEST(VARIABLE, PROG-TO-CHECK-FOR, dnl TEST-PERFORMED-ON-FOUND_PROGRAM [, VALUE-IF-NOT-FOUND [, PATH]]) AC_DEFUN(AM_PATH_PROG_WITH_TEST, [# Extract the first word of "$2", so it can be a program name with args. +AC_REQUIRE([CF_PATHSEP]) set dummy $2; ac_word=[$]2 AC_MSG_CHECKING([for $ac_word]) AC_CACHE_VAL(ac_cv_path_$1, @@ -189,7 +190,7 @@ AC_CACHE_VAL(ac_cv_path_$1, ac_cv_path_$1="[$]$1" # Let the user override the test with a path. ;; *) - IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATHSEP}" for ac_dir in ifelse([$5], , $PATH, [$5]); do test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$ac_word; then @@ -428,6 +429,28 @@ AC_DEFUN(AM_WITH_NLS, AC_SUBST(POSUB) ]) dnl --------------------------------------------------------------------------- +dnl Copy non-preprocessor flags to $CFLAGS, preprocessor flags to $CPPFLAGS +AC_DEFUN([CF_ADD_CFLAGS], +[ +for cf_add_cflags in $1 +do + case $cf_add_cflags in #(vi + -undef|-nostdinc*|-I*|-D*|-U*|-E|-P|-C) #(vi + case "$CPPFLAGS" in + *$cf_add_cflags) + ;; + *) + CPPFLAGS="$CPPFLAGS $cf_add_cflags" + ;; + esac + ;; + *) + CFLAGS="$CFLAGS $cf_add_cflags" + ;; + esac +done +])dnl +dnl --------------------------------------------------------------------------- dnl Add an include-directory to $CPPFLAGS. Don't add /usr/include, since it's dnl redundant. We don't normally need to add -I/usr/local/include for gcc, dnl but old versions (and some misinstalled ones) need that. @@ -480,6 +503,7 @@ AC_MSG_CHECKING(for ${CC-cc} option to accept ANSI C) AC_CACHE_VAL(cf_cv_ansi_cc,[ cf_cv_ansi_cc=no cf_save_CFLAGS="$CFLAGS" +cf_save_CPPFLAGS="$CPPFLAGS" # Don't try gcc -ansi; that turns off useful extensions and # breaks some systems' header files. # AIX -qlanglvl=ansi @@ -495,7 +519,7 @@ for cf_arg in "-DCC_HAS_PROTOS" \ "-Aa -D_HPUX_SOURCE" \ -Xc do - CFLAGS="$cf_save_CFLAGS $cf_arg" + CF_ADD_CFLAGS($cf_arg) AC_TRY_COMPILE( [ #ifndef CC_HAS_PROTOS @@ -510,12 +534,13 @@ choke me [cf_cv_ansi_cc="$cf_arg"; break]) done CFLAGS="$cf_save_CFLAGS" +CPPFLAGS="$cf_save_CPPFLAGS" ]) AC_MSG_RESULT($cf_cv_ansi_cc) if test "$cf_cv_ansi_cc" != "no"; then if test ".$cf_cv_ansi_cc" != ".-DCC_HAS_PROTOS"; then - CFLAGS="$CFLAGS $cf_cv_ansi_cc" + CF_ADD_CFLAGS($cf_cv_ansi_cc) else AC_DEFINE(CC_HAS_PROTOS) fi @@ -896,13 +921,13 @@ freebsd*) #(vi hpux10.*|hpux11.*) #(vi AC_CHECK_LIB(cur_colr,initscr,[ LIBS="-lcur_colr $LIBS" - CFLAGS="-I/usr/include/curses_colr $CFLAGS" + CPPFLAGS="-I/usr/include/curses_colr $CPPFLAGS" ac_cv_func_initscr=yes ],[ AC_CHECK_LIB(Hcurses,initscr,[ # HP's header uses __HP_CURSES, but user claims _HP_CURSES. LIBS="-lHcurses $LIBS" - CFLAGS="-D__HP_CURSES -D_HP_CURSES $CFLAGS" + CPPFLAGS="-D__HP_CURSES -D_HP_CURSES $CPPFLAGS" ac_cv_func_initscr=yes ])]) ;; @@ -1057,32 +1082,6 @@ AC_SUBST(SHOW_CC) AC_SUBST(ECHO_CC) ])dnl dnl --------------------------------------------------------------------------- -dnl Check whether character set is EBCDIC. -AC_DEFUN([CF_EBCDIC],[ -AC_MSG_CHECKING(if character set is EBCDIC) -AC_CACHE_VAL(cf_cv_ebcdic,[ - AC_TRY_COMPILE([ ], -[ /* TryCompile function for CharSet. - Treat any failure as ASCII for compatibility with existing art. - Use compile-time rather than run-time tests for cross-compiler - tolerance. */ -#if '0'!=240 -make an error "Character set is not EBCDIC" -#endif ], -[ # TryCompile action if true -cf_cv_ebcdic=yes ], -[ # TryCompile action if false -cf_cv_ebcdic=no]) -# end of TryCompile ]) -# end of CacheVal CvEbcdic -AC_MSG_RESULT($cf_cv_ebcdic) -case "$cf_cv_ebcdic" in #(vi - yes) AC_DEFINE(EBCDIC) - AC_DEFINE(NOT_ASCII);; #(vi - *) ;; -esac -])dnl -dnl --------------------------------------------------------------------------- dnl Check if 'errno' is declared in <errno.h> AC_DEFUN([CF_ERRNO], [ @@ -1162,7 +1161,7 @@ if test "$cf_ipv6lib" != "none"; then cf_header=$cf_incdir/netinet/ip6.h if test -f $cf_header then - CFLAGS="$CFLAGS -I$cf_incdir" + CPPFLAGS="$CPPFLAGS -I$cf_incdir" test -n "$verbose" && echo " ... found $cf_header" 1>&AC_FD_MSG break fi @@ -1649,18 +1648,18 @@ AC_TRY_COMPILE([#include <sys/types.h>],[ make an error #endif], [cf_cv_gnu_source=no], - [cf_save="$CFLAGS" - CFLAGS="$CFLAGS -D_GNU_SOURCE" + [cf_save="$CPPFLAGS" + CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE" AC_TRY_COMPILE([#include <sys/types.h>],[ #ifdef _XOPEN_SOURCE make an error #endif], [cf_cv_gnu_source=no], [cf_cv_gnu_source=yes]) - CFLAGS="$cf_save" + CPPFLAGS="$cf_save" ]) ]) -test "$cf_cv_gnu_source" = yes && CFLAGS="$CFLAGS -D_GNU_SOURCE" +test "$cf_cv_gnu_source" = yes && CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE" ])dnl dnl --------------------------------------------------------------------------- dnl Construct a search-list for a nonstandard header-file @@ -2131,6 +2130,17 @@ test $use_our_messages = yes && USE_OUR_MESSAGES= AC_SUBST(USE_OUR_MESSAGES) ])dnl dnl --------------------------------------------------------------------------- +dnl Provide a value for the $PATH and similar separator +AC_DEFUN([CF_PATHSEP], +[ + case $cf_cv_system_name in + os2) PATHSEP=';' ;; + *) PATHSEP=':' ;; + esac +ifelse($1,,,[$1=$PATHSEP]) + AC_SUBST(PATHSEP) +])dnl +dnl --------------------------------------------------------------------------- dnl Check for a given program, defining corresponding symbol. dnl $1 = environment variable, which is suffixed by "_PATH" in the #define. dnl $2 = program name to find. @@ -2209,7 +2219,7 @@ dnl Configure for PDCurses' X11 library AC_DEFUN([CF_PDCURSES_X11],[ AC_REQUIRE([CF_X_ATHENA]) LDFLAGS="$LDFLAGS $X_LIBS" -CFLAGS="$CFLAGS $X_CFLAGS" +CF_ADD_CFLAGS($X_CFLAGS) AC_CHECK_LIB(X11,XOpenDisplay, [LIBS="-lX11 $LIBS"],, [$X_PRE_LIBS $LIBS $X_EXTRA_LIBS]) @@ -2312,13 +2322,13 @@ AC_DEFUN([CF_SIZECHANGE], AC_REQUIRE([CF_STRUCT_TERMIOS]) AC_CACHE_CHECK(declaration of size-change, cf_cv_sizechange,[ cf_cv_sizechange=unknown - cf_save_CFLAGS="$CFLAGS" + cf_save_CPPFLAGS="$CPPFLAGS" for cf_opts in "" "NEED_PTEM_H" do - CFLAGS="$cf_save_CFLAGS" - test -n "$cf_opts" && CFLAGS="$CFLAGS -D$cf_opts" + CPPFLAGS="$cf_save_CPPFLAGS" + test -n "$cf_opts" && CPPFLAGS="$CPPFLAGS -D$cf_opts" AC_TRY_COMPILE([#include <sys/types.h> #ifdef HAVE_TERMIOS_H #include <termios.h> @@ -2355,7 +2365,7 @@ do [cf_cv_sizechange=yes], [cf_cv_sizechange=no]) - CFLAGS="$cf_save_CFLAGS" + CPPFLAGS="$cf_save_CPPFLAGS" if test "$cf_cv_sizechange" = yes ; then echo "size-change succeeded ($cf_opts)" >&AC_FD_CC test -n "$cf_opts" && cf_cv_sizechange="$cf_opts" @@ -2475,13 +2485,22 @@ test $cf_cv_slang_unix = yes && AC_DEFINE(REAL_UNIX_SYSTEM) dnl --------------------------------------------------------------------------- dnl Check for socks library dnl $1 = the [optional] directory in which the library may be found -dnl $2 = the [optional] name of the library AC_DEFUN([CF_SOCKS],[ case "$1" in #(vi no|yes) #(vi ;; *) - LIBS="$LIBS -L$1" + if test -d $1 ; then + if test -d $1/include ; then + CPPFLAGS="$CPPFLAGS -I$1/include" + LIBS="$LIBS -L$1/lib" + else + LIBS="$LIBS -L$1" + test -d $1/../include && CPPFLAGS="$CPPFLAGS -I$1/../include" + fi + else + AC_MSG_WARN(expected a directory: $1) + fi ;; esac LIBS="$LIBS -lsocks" @@ -2507,14 +2526,24 @@ case "$1" in #(vi no|yes) #(vi ;; *) - LIBS="$LIBS -L$1" - CFLAGS="$CFLAGS -I$1/../include" + if test -d $1 ; then + if test -d $1/include ; then + CPPFLAGS="$CPPFLAGS -I$1/include" + LIBS="$LIBS -L$1/lib" + else + LIBS="$LIBS -L$1" + test -d $1/../include && CPPFLAGS="$CPPFLAGS -I$1/../include" + fi + else + AC_MSG_WARN(expected a directory: $1) + fi ;; esac LIBS="$LIBS -lsocks5" AC_DEFINE(USE_SOCKS5) AC_DEFINE(SOCKS) AC_MSG_CHECKING(if the socks library uses socks4 prefix) +cf_use_socks4=error AC_TRY_LINK([ #include <socks.h>],[ Rinit((char *)0)], @@ -2540,6 +2569,80 @@ else AC_DEFINE(getsockname,SOCKSgetsockname) AC_DEFINE(recvfrom,SOCKSrecvfrom) fi +AC_MSG_CHECKING(if socks5p.h is available) +AC_TRY_COMPILE([ +#define INCLUDE_PROTOTYPES +#include <socks.h>],[ + init((char *)0)], + [cf_use_socks5p_h=yes], + [cf_use_socks5p_h=no]) +AC_MSG_RESULT($cf_use_socks5p_h) +test "$cf_use_socks5p_h" = yes && AC_DEFINE(INCLUDE_PROTOTYPES) +])dnl +dnl --------------------------------------------------------------------------- +dnl Check for ssl library +dnl $1 = the [optional] directory in which the library may be found +AC_DEFUN([CF_SSL],[ +cf_ssl_library="-lssl -lcrypto" +case "$1" in #(vi +no) #(vi + ;; +yes) #(vi + AC_CHECK_LIB(ssl, SSL_get_version,[],[ + if test -d /usr/local/ssl ; then + CF_VERBOSE(assume it is in /usr/local/ssl) + cf_ssl_library="-L/usr/local/ssl/lib $cf_ssl_library" + CPPFLAGS="-I/usr/local/ssl/include $CPPFLAGS" + else + AC_MSG_ERROR(cannot find ssl library) + fi + ], + [-lcrypto]) + ;; +*) + if test -d $1 ; then + if test -d $1/include ; then + CPPFLAGS="$CPPFLAGS -I$1/include" + cf_ssl_library="-L$1/lib $cf_ssl_library" + else + cf_ssl_library="-L$1 $cf_ssl_library" + test -d $1/../include && CPPFLAGS="$CPPFLAGS -I$1/../include" + fi + else + AC_MSG_WARN(expected a directory: $1) + fi + ;; +esac +LIBS="$cf_ssl_library $LIBS" + +AC_MSG_CHECKING(for openssl include directory) +AC_TRY_COMPILE([ +#include <stdio.h> +#include <openssl/ssl.h>], + [SSL_shutdown((SSL *)0)], + [cf_openssl_incl=yes], + [cf_openssl_incl=no]) +AC_MSG_RESULT($cf_openssl_incl) +test "$cf_openssl_incl" = yes && AC_DEFINE(USE_OPENSSL_INCL) + +AC_MSG_CHECKING(if we can link to ssl library) +AC_TRY_LINK([ +#include <stdio.h> +#ifdef USE_OPENSSL_INCL +#include <openssl/ssl.h> +#else +#include <ssl.h> +#endif +], + [SSL_shutdown((SSL *)0)], + [cf_ssl_library=yes], + [cf_ssl_library=no]) +AC_MSG_RESULT($cf_ssl_library) +if test "$cf_ssl_library" = yes ; then + AC_DEFINE(USE_SSL) +else + AC_ERROR(Cannot link with ssl library) +fi ])dnl dnl --------------------------------------------------------------------------- dnl Remove "-g" option from the compiler options @@ -2565,7 +2668,7 @@ if test "$ISC" = yes ; then AC_CHECK_HEADERS( sys/termio.h ) fi if test "$ac_cv_header_termios_h" = yes ; then - case "$CFLAGS" in + case "$CFLAGS $CPPFLAGS" in *-D_POSIX_SOURCE*) termios_bad=dunno ;; *) termios_bad=maybe ;; @@ -2693,8 +2796,8 @@ dnl FIXME: this is too Lynx-specific AC_DEFUN([CF_TERMIO_AND_CURSES], [ AC_CACHE_CHECK(if we can include termio.h with curses,cf_cv_termio_and_curses,[ - cf_save_CFLAGS="$CFLAGS" - CFLAGS="$CFLAGS -DHAVE_CONFIG_H -I. -I${srcdir-.} -I${srcdir-.}/src -I${srcdir-.}/WWW/Library/Implementation" + cf_save_CFLAGS="$CPPFLAGS" + CPPFLAGS="$CPPFLAGS -DHAVE_CONFIG_H -I. -I${srcdir-.} -I${srcdir-.}/src -I${srcdir-.}/WWW/Library/Implementation" touch lynx_cfg.h AC_TRY_COMPILE([ #include <$1> @@ -2702,7 +2805,7 @@ AC_CACHE_CHECK(if we can include termio.h with curses,cf_cv_termio_and_curses,[ [putchar(0x0a)], [cf_cv_termio_and_curses=yes], [cf_cv_termio_and_curses=no]) - CFLAGS="$cf_save_CFLAGS" + CPPFLAGS="$cf_save_CFLAGS" rm -f lynx_cfg.h ]) @@ -3039,7 +3142,7 @@ AC_TRY_LINK([ long x = winnstr(stdscr, "", 0)], [cf_cv_need_xopen_extension=yes], [cf_cv_need_xopen_extension=no])])]) -test $cf_cv_need_xopen_extension = yes && CFLAGS="$CFLAGS -D_XOPEN_SOURCE_EXTENDED" +test $cf_cv_need_xopen_extension = yes && CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE_EXTENDED" ])dnl dnl --------------------------------------------------------------------------- dnl Check for Xaw (Athena) libraries @@ -3071,10 +3174,10 @@ for cf_path in default \ do if test -z "$cf_x_athena_include" ; then - cf_save="$CFLAGS" + cf_save="$CPPFLAGS" cf_test=X11/$cf_x_athena/SimpleMenu.h if test $cf_path != default ; then - CFLAGS="-I$cf_path/include $cf_save" + CPPFLAGS="-I$cf_path/include $cf_save" AC_MSG_CHECKING(for $cf_test in $cf_path) else AC_MSG_CHECKING(for $cf_test) @@ -3088,7 +3191,7 @@ do if test "$cf_result" = yes ; then cf_x_athena_include=$cf_path else - CFLAGS="$cf_save" + CPPFLAGS="$cf_save" fi fi @@ -3172,7 +3275,7 @@ esac if test $cf_have_X_LIBS = no ; then AC_PATH_XTRA LDFLAGS="$LDFLAGS $X_LIBS" - CFLAGS="$CFLAGS $X_CFLAGS" + CF_ADD_CFLAGS($X_CFLAGS) AC_CHECK_LIB(X11,XOpenDisplay, [LIBS="-lX11 $LIBS"],, [$X_PRE_LIBS $LIBS $X_EXTRA_LIBS]) @@ -3183,7 +3286,7 @@ if test $cf_have_X_LIBS = no ; then [$X_PRE_LIBS $LIBS $X_EXTRA_LIBS]) else LDFLAGS="$LDFLAGS $X_LIBS" - CFLAGS="$CFLAGS $X_CFLAGS" + CF_ADD_CFLAGS($X_CFLAGS) fi if test $cf_have_X_LIBS = no ; then diff --git a/config.guess b/config.guess index b100dbe1..c93882e2 100755 --- a/config.guess +++ b/config.guess @@ -3,7 +3,7 @@ # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000 # Free Software Foundation, Inc. -version='2000-06-13' +version='2000-10-23' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -122,7 +122,7 @@ case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in # object file format. # Determine the machine/vendor (is the vendor relevant). case "${UNAME_MACHINE}" in - amiga) machine=m68k-cbm ;; + amiga) machine=m68k-unknown ;; arm32) machine=arm-unknown ;; atari*) machine=m68k-atari ;; sun3*) machine=m68k-sun ;; @@ -218,7 +218,7 @@ EOF echo alpha-dec-winnt3.5 exit 0 ;; Amiga*:UNIX_System_V:4.0:*) - echo m68k-cbm-sysv4 + echo m68k-unknown-sysv4 exit 0;; amiga:OpenBSD:*:*) echo m68k-unknown-openbsd${UNAME_RELEASE} @@ -434,7 +434,7 @@ EOF *:IRIX*:*:*) echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` exit 0 ;; - ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. + ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id exit 0 ;; # Note that: echo "'`uname -s`'" gives 'AIX ' i?86:AIX:*:*) @@ -672,6 +672,9 @@ EOF i*:MINGW*:*) echo ${UNAME_MACHINE}-pc-mingw32 exit 0 ;; + i*:PW*:*) + echo ${UNAME_MACHINE}-pc-pw32 + exit 0 ;; i*:Windows_NT*:* | Pentium*:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we @@ -698,8 +701,7 @@ EOF # The BFD linker knows what the default object file format is, so # first see if it will tell us. cd to the root directory to prevent # problems with other programs or directories called `ld' in the path. - ld_help_string=`cd /; ld --help 2>&1` - ld_supported_emulations=`echo $ld_help_string \ + ld_supported_emulations=`cd /; ld --help 2>&1 \ | sed -ne '/supported emulations:/!d s/[ ][ ]*/ /g s/.*supported emulations: *// @@ -715,8 +717,7 @@ EOF exit 0 ;; elf_i?86) - echo "${UNAME_MACHINE}-pc-linux" - exit 0 + TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu" ;; i?86coff) echo "${UNAME_MACHINE}-pc-linux-gnucoff" @@ -859,14 +860,30 @@ EOF rm -f $dummy.c $dummy elif test "${UNAME_MACHINE}" = "s390"; then echo s390-ibm-linux && exit 0 + elif test "${UNAME_MACHINE}" = "x86_64"; then + echo x86_64-unknown-linux-gnu && exit 0 + elif test "${UNAME_MACHINE}" = "parisc" -o "${UNAME_MACHINE}" = "hppa"; then + # Look for CPU level + case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in + PA7*) + echo hppa1.1-unknown-linux-gnu + ;; + PA8*) + echo hppa2.0-unknown-linux-gnu + ;; + *) + echo hppa-unknown-linux-gnu + ;; + esac + exit 0 else # Either a pre-BFD a.out linker (linux-gnuoldld) # or one that does not give us useful --help. # GCC wants to distinguish between linux-gnuoldld and linux-gnuaout. # If ld does not provide *any* "supported emulations:" # that means it is gnuoldld. - echo "$ld_help_string" | grep >/dev/null 2>&1 "supported emulations:" - test $? != 0 && echo "${UNAME_MACHINE}-pc-linux-gnuoldld" && exit 0 + test -z "$ld_supported_emulations" \ + && echo "${UNAME_MACHINE}-pc-linux-gnuoldld" && exit 0 case "${UNAME_MACHINE}" in i?86) @@ -903,6 +920,7 @@ EOF EOF $CC_FOR_BUILD $dummy.c -o $dummy 2>/dev/null && ./$dummy "${UNAME_MACHINE}" && rm $dummy.c $dummy && exit 0 rm -f $dummy.c $dummy + test x"${TENTATIVE}" != x && echo "${TENTATIVE}" && exit 0 fi ;; # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. earlier versions # are messed up and put the nodename in both sysname and nodename. @@ -980,7 +998,7 @@ EOF exit 0 ;; M68*:*:R3V[567]*:*) test -r /sysV68 && echo 'm68k-motorola-sysv' && exit 0 ;; - 3[34]??:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 4850:*:4.0:3.0) + 3[34]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 4850:*:4.0:3.0) OS_REL='' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` @@ -1039,7 +1057,7 @@ EOF mc68*:A/UX:*:*) echo m68k-apple-aux${UNAME_RELEASE} exit 0 ;; - news*:NEWS-OS:*:6*) + news*:NEWS-OS:6*:*) echo mips-sony-newsos6 exit 0 ;; R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) @@ -1082,15 +1100,29 @@ EOF *:QNX:*:4*) echo i386-pc-qnx exit 0 ;; - NSR-W:NONSTOP_KERNEL:*:*) + NSR-[KW]:NONSTOP_KERNEL:*:*) echo nsr-tandem-nsk${UNAME_RELEASE} exit 0 ;; + *:NonStop-UX:*:*) + echo mips-compaq-nonstopux + exit 0 ;; BS2000:POSIX*:*:*) echo bs2000-siemens-sysv exit 0 ;; DS/*:UNIX_System_V:*:*) echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} exit 0 ;; + *:Plan9:*:*) + # "uname -m" is not consistent, so use $cputype instead. 386 + # is converted to i386 for consistency with other x86 + # operating systems. + if test "$cputype" = "386"; then + UNAME_MACHINE=i386 + else + UNAME_MACHINE="$cputype" + fi + echo ${UNAME_MACHINE}-unknown-plan9 + exit 0 ;; esac #echo '(No uname command or uname output not recognized.)' 1>&2 diff --git a/config.hin b/config.hin index 2ba62ee7..c7453df0 100644 --- a/config.hin +++ b/config.hin @@ -27,7 +27,6 @@ #undef DISABLE_NEWS /* CF_ARG_DISABLE(news) */ #undef DISP_PARTIAL /* CF_ARG_ENABLE(partial) */ #undef DONT_TRACK_INTERNAL_LINKS /* CF_ARG_DISABLE(internal-links) */ -#undef EBCDIC /* CF_EBCDIC */ #undef ENABLE_IPV6 /* CF_CHECK_IPV6 */ #undef ENABLE_NLS /* defined if NLS is requested */ #undef ENABLE_OPTS_CHANGE_EXEC /* CF_ARG_ENABLE(change-exec) */ @@ -147,6 +146,7 @@ #undef HAVE___ARGZ_STRINGIFY /* defined by AM_GNU_GETTEXT */ #undef IGNORE_CTRL_C /* FIXME: make tests? */ #undef INSTALL_ARGS /* CF_PATH_PROG(install) */ +#undef INCLUDE_PROTOTYPES /* CF_SOCKS5 */ #undef INSTALL_PATH /* CF_PATH_PROG(install) */ #undef LINKEDSTYLES /* see USE_COLOR_STYLE */ #undef LINUX /* FIXME: make tests? */ @@ -163,7 +163,6 @@ #undef NEED_PTEM_H /* defined by CF_SIZECHANGE */ #undef NEED_REMOVE /* defined by CF_REMOVE_BROKEN */ #undef NGROUPS /* defined by CF_NGROUPS */ -#undef NOT_ASCII /* CF_NOT_ASCII */ #undef NO_CHANGE_EXECUTE_PERMS /* CF_ARG_DISABLE(dired-xpermit) */ #undef NO_CONFIG_INFO /* CF_ARG_DISABLE(config-info) */ #undef NO_EXTENDED_HTMLDTD /* CF_ARG_DISABLE(extended-dtd) */ @@ -205,12 +204,14 @@ #undef USE_EXTERNALS /* CF_ARG_ENABLE(externs) */ #undef USE_FCNTL /* CF_FIONBIO */ #undef USE_HASH /* see USE_COLOR_STYLE */ +#undef USE_OPENSSL_INCL /* CF_SSL */ #undef USE_PRETTYSRC /* CF_ARG_ENABLE(prettysrc) */ #undef USE_SCROLLBAR /* CF_ARG_ENABLE(scrollbar) */ #undef USE_SIZECHANGEHACK /* FIXME: find a case where this works! */ #undef USE_SLANG /* AC_ARG_WITH(screen=slang) */ #undef USE_SOCKS4_PREFIX /* CF_SOCKS5 */ #undef USE_SOCKS5 /* CF_SOCKS5 */ +#undef USE_SSL /* CF_SSL */ #undef USE_SYSV_UTMP /* CF_UTMP */ #undef USE_ZLIB /* AC_ARG_WITH(zlib) */ #undef UTMPX_FOR_UTMP /* use <utmpx.h> since <utmp.h> not found */ diff --git a/config.sub b/config.sub index f8ec622e..9ad8e600 100755 --- a/config.sub +++ b/config.sub @@ -3,7 +3,7 @@ # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000 # Free Software Foundation, Inc. -version='2000-07-06' +version='2000-10-25' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software @@ -207,7 +207,7 @@ case $basic_machine in # Recognize the basic CPU types without company name. # Some are omitted here because they have special meanings below. tahoe | i860 | ia64 | m32r | m68k | m68000 | m88k | ns32k | arc | arm \ - | arme[lb] | pyramid | mn10200 | mn10300 | tron | a29k \ + | arme[lb] | armv[2345] | armv[345][lb] | pyramid | mn10200 | mn10300 | tron | a29k \ | 580 | i960 | h8300 \ | x86 | ppcbe | mipsbe | mipsle | shbe | shle | armbe | armle \ | hppa | hppa1.0 | hppa1.1 | hppa2.0 | hppa2.0w | hppa2.0n \ @@ -235,7 +235,7 @@ case $basic_machine in # We use `pc' rather than `unknown' # because (1) that's what they normally are, and # (2) the word "unknown" tends to confuse beginning users. - i[234567]86) + i[234567]86 | x86_64) basic_machine=$basic_machine-pc ;; # Object if more than one company name word. @@ -265,7 +265,7 @@ case $basic_machine in | f301-* | armv*-* | s390-* | sv1-* | t3e-* \ | m88110-* | m680[01234]0-* | m683?2-* | m68360-* | z8k-* | d10v-* \ | thumb-* | v850-* | d30v-* | tic30-* | c30-* | fr30-* \ - | bs2000-* | tic54x-* | c54x-*) + | bs2000-* | tic54x-* | c54x-* | x86_64-*) ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. @@ -302,14 +302,14 @@ case $basic_machine in os=-sysv ;; amiga | amiga-*) - basic_machine=m68k-cbm + basic_machine=m68k-unknown ;; amigaos | amigados) - basic_machine=m68k-cbm + basic_machine=m68k-unknown os=-amigaos ;; amigaunix | amix) - basic_machine=m68k-cbm + basic_machine=m68k-unknown os=-sysv4 ;; apollo68) @@ -520,6 +520,10 @@ case $basic_machine in basic_machine=i386-unknown os=-mingw32 ;; + i[34567]86-pw32 | pw32) + basic_machine=i586-unknown + os=-pw32 + ;; iris | iris4d) basic_machine=mips-sgi case $os in @@ -639,6 +643,10 @@ case $basic_machine in basic_machine=i960-intel os=-mon960 ;; + nonstopux) + basic_machine=mips-compaq + os=-nonstopux + ;; np1) basic_machine=np1-gould ;; @@ -674,7 +682,7 @@ case $basic_machine in pc532 | pc532-*) basic_machine=ns32k-pc532 ;; - pentium | p5 | k5 | k6 | nexen) + pentium | p5 | k5 | k6 | nexgen) basic_machine=i586-pc ;; pentiumpro | p6 | 6x86 | athlon) @@ -683,7 +691,7 @@ case $basic_machine in pentiumii | pentium2) basic_machine=i786-pc ;; - pentium-* | p5-* | k5-* | k6-* | nexen-*) + pentium-* | p5-* | k5-* | k6-* | nexgen-*) basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumpro-* | p6-* | 6x86-* | athlon-*) @@ -907,7 +915,7 @@ case $basic_machine in basic_machine=we32k-att ;; sh3 | sh4) - base_machine=sh-unknown + basic_machine=sh-unknown ;; sparc | sparcv9) basic_machine=sparc-sun @@ -990,7 +998,7 @@ case $os in | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ | -mingw32* | -linux-gnu* | -uxpv* | -beos* | -mpeix* | -udk* \ | -interix* | -uwin* | -rhapsody* | -darwin* | -opened* \ - | -openstep* | -oskit*) + | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) @@ -1052,7 +1060,7 @@ case $os in -ns2 ) os=-nextstep2 ;; - -nsk) + -nsk*) os=-nsk ;; # Preserve the version number of sinix5. diff --git a/configure b/configure index 65ed7d9f..4ad54dff 100755 --- a/configure +++ b/configure @@ -199,6 +199,7 @@ Basic Configuration Options: --disable-full-paths control whether full utility pathnames are used EOF cat <<EOF + --with-ssl[=path] link with ssl library if available --with-socks[=path] link with socks library if available --with-socks5[=path] link with socks5 library if available --with-screen=XXX select screen type @@ -211,9 +212,9 @@ Experimental Options: --enable-addrlist-page use experimental address-list page --enable-charset-choice use experimental charset-selection logic --enable-cjk use experimental CJK logic - --enable-color-style use optional/experimental color style (ncurses/curses) EOF cat <<EOF + --enable-color-style use optional/experimental color style (ncurses/curses) --enable-default-colors enable use of default-colors (ncurses/slang) --enable-file-upload use experimental file-upload support --enable-htmlized-cfg build experimental htmlized lynx.cfg @@ -225,9 +226,9 @@ cat <<EOF --enable-read-eta experimental read-progress message shows ETA --enable-scrollbar use experimental scrollbar, with mouse --enable-source-cache cache HTML source for parse mode changes -Miscellaneous Options: EOF cat <<EOF +Miscellaneous Options: --disable-alt-bindings disable alternative line-edit bindings --disable-extended-dtd disable extended HTML DTD logic --disable-partial use partial-display logic @@ -239,9 +240,9 @@ cat <<EOF --enable-exec-scripts allow lynx to execute programs inferred from a link --enable-internal-links handle following links to same doc differently --enable-nsl-fork fork NSL requests, allowing them to be aborted - --enable-syslog log URL requests via syslog EOF cat <<EOF + --enable-syslog log URL requests via syslog --disable-persistent-cookies disable persistent-cookie support --enable-underlines underline links rather than using boldface --enable-gzip-help install gzip'ed help files @@ -253,9 +254,9 @@ cat <<EOF Directory Editor Options: --disable-dired disable optional directory-editor, DirEd --disable-dired-archive disable dearchiving commands - --disable-dired-override disable DirEd override keymap EOF cat <<EOF + --disable-dired-override disable DirEd override keymap --disable-dired-permit disable chmod/attrib commands --disable-dired-xpermit disable chmod/attrib commands --disable-dired-tar disable "tar" command @@ -268,9 +269,9 @@ cat <<EOF Special Libraries for PDCurses X11: --with-x use the X Window System --with-Xaw3d link with Xaw 3d library - --with-neXtaw link with neXT Athena library EOF cat <<EOF + --with-neXtaw link with neXT Athena library EOF exit 0 ;; @@ -640,7 +641,7 @@ else { echo "configure: error: can not run $ac_config_sub" 1>&2; exit 1; } fi echo $ac_n "checking host system type""... $ac_c" 1>&6 -echo "configure:644: checking host system type" >&5 +echo "configure:645: checking host system type" >&5 host_alias=$host case "$host_alias" in @@ -710,7 +711,7 @@ esac # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:714: checking for $ac_word" >&5 +echo "configure:715: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -740,7 +741,7 @@ if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:744: checking for $ac_word" >&5 +echo "configure:745: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -791,7 +792,7 @@ fi # Extract the first word of "cl", so it can be a program name with args. set dummy cl; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:795: checking for $ac_word" >&5 +echo "configure:796: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -823,7 +824,7 @@ fi fi echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 -echo "configure:827: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 +echo "configure:828: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 ac_ext=c # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. @@ -834,12 +835,12 @@ cross_compiling=$ac_cv_prog_cc_cross cat > conftest.$ac_ext << EOF -#line 838 "configure" +#line 839 "configure" #include "confdefs.h" main(){return(0);} EOF -if { (eval echo configure:843: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:844: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ac_cv_prog_cc_works=yes # If we can't run a trivial program, we are probably using a cross compiler. if (./conftest; exit) 2>/dev/null; then @@ -865,12 +866,12 @@ if test $ac_cv_prog_cc_works = no; then { echo "configure: error: installation or configuration problem: C compiler cannot create executables." 1>&2; exit 1; } fi echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 -echo "configure:869: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 +echo "configure:870: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 cross_compiling=$ac_cv_prog_cc_cross echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 -echo "configure:874: checking whether we are using GNU C" >&5 +echo "configure:875: checking whether we are using GNU C" >&5 if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -879,7 +880,7 @@ else yes; #endif EOF -if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:883: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then +if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:884: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then ac_cv_prog_gcc=yes else ac_cv_prog_gcc=no @@ -898,7 +899,7 @@ ac_test_CFLAGS="${CFLAGS+set}" ac_save_CFLAGS="$CFLAGS" CFLAGS= echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 -echo "configure:902: checking whether ${CC-cc} accepts -g" >&5 +echo "configure:903: checking whether ${CC-cc} accepts -g" >&5 if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -930,7 +931,7 @@ else fi echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6 -echo "configure:934: checking how to run the C preprocessor" >&5 +echo "configure:935: checking how to run the C preprocessor" >&5 # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= @@ -945,13 +946,13 @@ else # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. cat > conftest.$ac_ext <<EOF -#line 949 "configure" +#line 950 "configure" #include "confdefs.h" #include <assert.h> Syntax Error EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:955: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:956: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then : @@ -962,13 +963,13 @@ else rm -rf conftest* CPP="${CC-cc} -E -traditional-cpp" cat > conftest.$ac_ext <<EOF -#line 966 "configure" +#line 967 "configure" #include "confdefs.h" #include <assert.h> Syntax Error EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:972: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:973: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then : @@ -979,13 +980,13 @@ else rm -rf conftest* CPP="${CC-cc} -nologo -E" cat > conftest.$ac_ext <<EOF -#line 983 "configure" +#line 984 "configure" #include "confdefs.h" #include <assert.h> Syntax Error EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:989: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:990: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then : @@ -1010,7 +1011,7 @@ fi echo "$ac_t""$CPP" 1>&6 echo $ac_n "checking whether ln -s works""... $ac_c" 1>&6 -echo "configure:1014: checking whether ln -s works" >&5 +echo "configure:1015: checking whether ln -s works" >&5 if eval "test \"`echo '$''{'ac_cv_prog_LN_S'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1033,7 +1034,7 @@ fi # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1037: checking for $ac_word" >&5 +echo "configure:1038: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1061,7 +1062,7 @@ else fi echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 -echo "configure:1065: checking whether ${MAKE-make} sets \${MAKE}" >&5 +echo "configure:1066: checking whether ${MAKE-make} sets \${MAKE}" >&5 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -1099,7 +1100,7 @@ fi # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # ./install, which can be erroneously created by make from ./install.sh. echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 -echo "configure:1103: checking for a BSD compatible install" >&5 +echo "configure:1104: checking for a BSD compatible install" >&5 if test -z "$INSTALL"; then if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -1156,7 +1157,7 @@ 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 $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1160: checking for $ac_word" >&5 +echo "configure:1161: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_LINT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1187,9 +1188,9 @@ done echo $ac_n "checking for AIX""... $ac_c" 1>&6 -echo "configure:1191: checking for AIX" >&5 +echo "configure:1192: checking for AIX" >&5 cat > conftest.$ac_ext <<EOF -#line 1193 "configure" +#line 1194 "configure" #include "confdefs.h" #ifdef _AIX yes @@ -1211,7 +1212,7 @@ rm -f conftest* echo $ac_n "checking for POSIXized ISC""... $ac_c" 1>&6 -echo "configure:1215: checking for POSIXized ISC" >&5 +echo "configure:1216: checking for POSIXized ISC" >&5 if test -d /etc/conf/kconfig.d && grep _POSIX_VERSION /usr/include/sys/unistd.h >/dev/null 2>&1 then @@ -1237,7 +1238,7 @@ fi echo $ac_n "checking if you want to see long compiling messages""... $ac_c" 1>&6 -echo "configure:1241: checking if you want to see long compiling messages" >&5 +echo "configure:1242: checking if you want to see long compiling messages" >&5 # Check whether --enable-echo or --disable-echo was given. if test "${enable_echo+set}" = set; then @@ -1285,7 +1286,7 @@ fi echo $ac_n "checking if you want to check memory-leaks""... $ac_c" 1>&6 -echo "configure:1289: checking if you want to check memory-leaks" >&5 +echo "configure:1290: checking if you want to check memory-leaks" >&5 # Check whether --enable-find-leaks or --disable-find-leaks was given. if test "${enable_find_leaks+set}" = set; then @@ -1309,7 +1310,7 @@ EOF echo $ac_n "checking if you want to enable debug-code""... $ac_c" 1>&6 -echo "configure:1313: checking if you want to enable debug-code" >&5 +echo "configure:1314: checking if you want to enable debug-code" >&5 # Check whether --enable-debug or --disable-debug was given. if test "${enable_debug+set}" = set; then @@ -1351,7 +1352,7 @@ else fi echo $ac_n "checking if you want to enable lynx trace code *recommended* ""... $ac_c" 1>&6 -echo "configure:1355: checking if you want to enable lynx trace code *recommended* " >&5 +echo "configure:1356: checking if you want to enable lynx trace code *recommended* " >&5 # Check whether --enable-trace or --disable-trace was given. if test "${enable_trace+set}" = set; then @@ -1377,7 +1378,7 @@ EOF if test -n "$GCC" then echo $ac_n "checking if you want to turn on gcc warnings""... $ac_c" 1>&6 -echo "configure:1381: checking if you want to turn on gcc warnings" >&5 +echo "configure:1382: checking if you want to turn on gcc warnings" >&5 # Check whether --enable-warnings or --disable-warnings was given. if test "${enable_warnings+set}" = set; then @@ -1417,9 +1418,9 @@ EOF if test "$GCC" = yes then echo "checking for $CC __attribute__ directives" 1>&6 -echo "configure:1421: checking for $CC __attribute__ directives" >&5 +echo "configure:1422: checking for $CC __attribute__ directives" >&5 cat > conftest.$ac_ext <<EOF -#line 1423 "configure" +#line 1424 "configure" #include "confdefs.h" #include "conftest.h" #include "conftest.i" @@ -1457,7 +1458,7 @@ EOF EOF ;; esac - if { (eval echo configure:1461: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then + if { (eval echo configure:1462: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then test -n "$verbose" && echo "$ac_t""... $cf_attribute" 1>&6 cat conftest.h >>confdefs.h # else @@ -1474,11 +1475,11 @@ fi if test "$GCC" = yes then cat > conftest.$ac_ext <<EOF -#line 1478 "configure" +#line 1479 "configure" int main(int argc, char *argv[]) { return (argv[argc-1] == 0) ; } EOF echo "checking for $CC warning options" 1>&6 -echo "configure:1482: checking for $CC warning options" >&5 +echo "configure:1483: checking for $CC warning options" >&5 cf_save_CFLAGS="$CFLAGS" EXTRA_CFLAGS="-W -Wall" cf_warn_CONST="" @@ -1496,7 +1497,7 @@ echo "configure:1482: checking for $CC warning options" >&5 Wstrict-prototypes $cf_warn_CONST do CFLAGS="$cf_save_CFLAGS $EXTRA_CFLAGS -$cf_opt" - if { (eval echo configure:1500: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then + if { (eval echo configure:1501: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then test -n "$verbose" && echo "$ac_t""... -$cf_opt" 1>&6 EXTRA_CFLAGS="$EXTRA_CFLAGS -$cf_opt" test "$cf_opt" = Wcast-qual && EXTRA_CFLAGS="$EXTRA_CFLAGS -DXTSTRINGDEFINES" @@ -1517,12 +1518,12 @@ EOF echo $ac_n "checking for working const""... $ac_c" 1>&6 -echo "configure:1521: checking for working const" >&5 +echo "configure:1522: checking for working const" >&5 if eval "test \"`echo '$''{'ac_cv_c_const'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 1526 "configure" +#line 1527 "configure" #include "confdefs.h" int main() { @@ -1571,7 +1572,7 @@ ccp = (char const *const *) p; ; return 0; } EOF -if { (eval echo configure:1575: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:1576: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_c_const=yes else @@ -1613,7 +1614,7 @@ clix*) # contributed by Alex Matulich (matuli_a@marlin.navsea.navy.mil) also # references -lmalloc and -lbsd. echo $ac_n "checking for strcmp in -lc_s""... $ac_c" 1>&6 -echo "configure:1617: checking for strcmp in -lc_s" >&5 +echo "configure:1618: checking for strcmp in -lc_s" >&5 ac_lib_var=`echo c_s'_'strcmp | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -1621,7 +1622,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lc_s $LIBS" cat > conftest.$ac_ext <<EOF -#line 1625 "configure" +#line 1626 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -1632,7 +1633,7 @@ int main() { strcmp() ; return 0; } EOF -if { (eval echo configure:1636: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1637: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -1726,7 +1727,7 @@ 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 $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1730: checking for $ac_word" >&5 +echo "configure:1731: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1771,17 +1772,17 @@ sony-newsos*) do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:1775: checking for $ac_hdr" >&5 +echo "configure:1776: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 1780 "configure" +#line 1781 "configure" #include "confdefs.h" #include <$ac_hdr> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:1785: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:1786: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -1825,17 +1826,17 @@ ultrix*) do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:1829: checking for $ac_hdr" >&5 +echo "configure:1830: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 1834 "configure" +#line 1835 "configure" #include "confdefs.h" #include <$ac_hdr> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:1839: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:1840: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -1872,13 +1873,14 @@ esac if test -z "$GCC" ; then echo $ac_n "checking for ${CC-cc} option to accept ANSI C""... $ac_c" 1>&6 -echo "configure:1876: checking for ${CC-cc} option to accept ANSI C" >&5 +echo "configure:1877: checking for ${CC-cc} option to accept ANSI C" >&5 if eval "test \"`echo '$''{'cf_cv_ansi_cc'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cf_cv_ansi_cc=no cf_save_CFLAGS="$CFLAGS" +cf_save_CPPFLAGS="$CPPFLAGS" # Don't try gcc -ansi; that turns off useful extensions and # breaks some systems' header files. # AIX -qlanglvl=ansi @@ -1894,9 +1896,27 @@ for cf_arg in "-DCC_HAS_PROTOS" \ "-Aa -D_HPUX_SOURCE" \ -Xc do - CFLAGS="$cf_save_CFLAGS $cf_arg" + +for cf_add_cflags in $cf_arg +do + case $cf_add_cflags in #(vi + -undef|-nostdinc*|-I*|-D*|-U*|-E|-P|-C) #(vi + case "$CPPFLAGS" in + *$cf_add_cflags) + ;; + *) + CPPFLAGS="$CPPFLAGS $cf_add_cflags" + ;; + esac + ;; + *) + CFLAGS="$CFLAGS $cf_add_cflags" + ;; + esac +done + cat > conftest.$ac_ext <<EOF -#line 1900 "configure" +#line 1920 "configure" #include "confdefs.h" #ifndef CC_HAS_PROTOS @@ -1912,7 +1932,7 @@ int main() { struct s2 {int (*f) (double a);}; ; return 0; } EOF -if { (eval echo configure:1916: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:1936: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* cf_cv_ansi_cc="$cf_arg"; break else @@ -1922,6 +1942,7 @@ fi rm -f conftest* done CFLAGS="$cf_save_CFLAGS" +CPPFLAGS="$cf_save_CPPFLAGS" fi @@ -1929,7 +1950,25 @@ echo "$ac_t""$cf_cv_ansi_cc" 1>&6 if test "$cf_cv_ansi_cc" != "no"; then if test ".$cf_cv_ansi_cc" != ".-DCC_HAS_PROTOS"; then - CFLAGS="$CFLAGS $cf_cv_ansi_cc" + +for cf_add_cflags in $cf_cv_ansi_cc +do + case $cf_add_cflags in #(vi + -undef|-nostdinc*|-I*|-D*|-U*|-E|-P|-C) #(vi + case "$CPPFLAGS" in + *$cf_add_cflags) + ;; + *) + CPPFLAGS="$CPPFLAGS $cf_add_cflags" + ;; + esac + ;; + *) + CFLAGS="$CFLAGS $cf_add_cflags" + ;; + esac +done + else cat >> confdefs.h <<\EOF #define CC_HAS_PROTOS 1 @@ -1944,12 +1983,12 @@ fi echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6 -echo "configure:1948: checking for ANSI C header files" >&5 +echo "configure:1987: checking for ANSI C header files" >&5 if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 1953 "configure" +#line 1992 "configure" #include "confdefs.h" #include <stdlib.h> #include <stdarg.h> @@ -1957,7 +1996,7 @@ else #include <float.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:1961: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:2000: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -1974,7 +2013,7 @@ rm -f conftest* if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat > conftest.$ac_ext <<EOF -#line 1978 "configure" +#line 2017 "configure" #include "confdefs.h" #include <string.h> EOF @@ -1992,7 +2031,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 <<EOF -#line 1996 "configure" +#line 2035 "configure" #include "confdefs.h" #include <stdlib.h> EOF @@ -2013,7 +2052,7 @@ if test "$cross_compiling" = yes; then : else cat > conftest.$ac_ext <<EOF -#line 2017 "configure" +#line 2056 "configure" #include "confdefs.h" #include <ctype.h> #define ISLOWER(c) ('a' <= (c) && (c) <= 'z') @@ -2024,7 +2063,7 @@ if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) exit(2); exit (0); } EOF -if { (eval echo configure:2028: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:2067: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then : else @@ -2048,21 +2087,21 @@ EOF fi echo $ac_n "checking for inline""... $ac_c" 1>&6 -echo "configure:2052: checking for inline" >&5 +echo "configure:2091: checking for inline" >&5 if eval "test \"`echo '$''{'ac_cv_c_inline'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else ac_cv_c_inline=no for ac_kw in inline __inline__ __inline; do cat > conftest.$ac_ext <<EOF -#line 2059 "configure" +#line 2098 "configure" #include "confdefs.h" int main() { } $ac_kw foo() { ; return 0; } EOF -if { (eval echo configure:2066: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:2105: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_c_inline=$ac_kw; break else @@ -2088,12 +2127,12 @@ EOF esac echo $ac_n "checking for off_t""... $ac_c" 1>&6 -echo "configure:2092: checking for off_t" >&5 +echo "configure:2131: checking for off_t" >&5 if eval "test \"`echo '$''{'ac_cv_type_off_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 2097 "configure" +#line 2136 "configure" #include "confdefs.h" #include <sys/types.h> #if STDC_HEADERS @@ -2121,12 +2160,12 @@ EOF fi echo $ac_n "checking for size_t""... $ac_c" 1>&6 -echo "configure:2125: checking for size_t" >&5 +echo "configure:2164: checking for size_t" >&5 if eval "test \"`echo '$''{'ac_cv_type_size_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 2130 "configure" +#line 2169 "configure" #include "confdefs.h" #include <sys/types.h> #if STDC_HEADERS @@ -2156,19 +2195,19 @@ fi # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works # for constant arguments. Useless! echo $ac_n "checking for working alloca.h""... $ac_c" 1>&6 -echo "configure:2160: checking for working alloca.h" >&5 +echo "configure:2199: checking for working alloca.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_alloca_h'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 2165 "configure" +#line 2204 "configure" #include "confdefs.h" #include <alloca.h> int main() { char *p = alloca(2 * sizeof(int)); ; return 0; } EOF -if { (eval echo configure:2172: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2211: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_header_alloca_h=yes else @@ -2189,12 +2228,12 @@ EOF fi echo $ac_n "checking for alloca""... $ac_c" 1>&6 -echo "configure:2193: checking for alloca" >&5 +echo "configure:2232: checking for alloca" >&5 if eval "test \"`echo '$''{'ac_cv_func_alloca_works'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 2198 "configure" +#line 2237 "configure" #include "confdefs.h" #ifdef __GNUC__ @@ -2222,7 +2261,7 @@ int main() { char *p = (char *) alloca(1); ; return 0; } EOF -if { (eval echo configure:2226: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2265: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_func_alloca_works=yes else @@ -2254,12 +2293,12 @@ EOF echo $ac_n "checking whether alloca needs Cray hooks""... $ac_c" 1>&6 -echo "configure:2258: checking whether alloca needs Cray hooks" >&5 +echo "configure:2297: checking whether alloca needs Cray hooks" >&5 if eval "test \"`echo '$''{'ac_cv_os_cray'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 2263 "configure" +#line 2302 "configure" #include "confdefs.h" #if defined(CRAY) && ! defined(CRAY2) webecray @@ -2284,12 +2323,12 @@ echo "$ac_t""$ac_cv_os_cray" 1>&6 if test $ac_cv_os_cray = yes; then for ac_func in _getb67 GETB67 getb67; do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:2288: checking for $ac_func" >&5 +echo "configure:2327: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 2293 "configure" +#line 2332 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func(); below. */ @@ -2312,7 +2351,7 @@ $ac_func(); ; return 0; } EOF -if { (eval echo configure:2316: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2355: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -2339,7 +2378,7 @@ done fi echo $ac_n "checking stack direction for C alloca""... $ac_c" 1>&6 -echo "configure:2343: checking stack direction for C alloca" >&5 +echo "configure:2382: checking stack direction for C alloca" >&5 if eval "test \"`echo '$''{'ac_cv_c_stack_direction'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2347,7 +2386,7 @@ else ac_cv_c_stack_direction=0 else cat > conftest.$ac_ext <<EOF -#line 2351 "configure" +#line 2390 "configure" #include "confdefs.h" find_stack_direction () { @@ -2366,7 +2405,7 @@ main () exit (find_stack_direction() < 0); } EOF -if { (eval echo configure:2370: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:2409: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ac_cv_c_stack_direction=1 else @@ -2391,17 +2430,17 @@ for ac_hdr in unistd.h do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:2395: checking for $ac_hdr" >&5 +echo "configure:2434: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 2400 "configure" +#line 2439 "configure" #include "confdefs.h" #include <$ac_hdr> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:2405: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:2444: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -2430,12 +2469,12 @@ done for ac_func in getpagesize do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:2434: checking for $ac_func" >&5 +echo "configure:2473: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 2439 "configure" +#line 2478 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func(); below. */ @@ -2458,7 +2497,7 @@ $ac_func(); ; return 0; } EOF -if { (eval echo configure:2462: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2501: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -2483,7 +2522,7 @@ fi done echo $ac_n "checking for working mmap""... $ac_c" 1>&6 -echo "configure:2487: checking for working mmap" >&5 +echo "configure:2526: checking for working mmap" >&5 if eval "test \"`echo '$''{'ac_cv_func_mmap_fixed_mapped'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2491,7 +2530,7 @@ else ac_cv_func_mmap_fixed_mapped=no else cat > conftest.$ac_ext <<EOF -#line 2495 "configure" +#line 2534 "configure" #include "confdefs.h" /* Thanks to Mike Haertel and Jim Avera for this test. @@ -2631,7 +2670,7 @@ main() } EOF -if { (eval echo configure:2635: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:2674: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ac_cv_func_mmap_fixed_mapped=yes else @@ -2654,6 +2693,14 @@ EOF fi + case $cf_cv_system_name in + os2) PATHSEP=';' ;; + *) PATHSEP=':' ;; + esac + + + + cf_makefile=makefile test -z "$ALL_LINGUAS" && ALL_LINGUAS=`test -d $srcdir/po && cd $srcdir/po && echo *.po|sed -e 's/\.po//g' -e 's/*//'` @@ -2664,17 +2711,17 @@ unistd.h sys/param.h do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:2668: checking for $ac_hdr" >&5 +echo "configure:2715: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 2673 "configure" +#line 2720 "configure" #include "confdefs.h" #include <$ac_hdr> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:2678: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:2725: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -2704,12 +2751,12 @@ done strdup __argz_count __argz_stringify __argz_next do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:2708: checking for $ac_func" >&5 +echo "configure:2755: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 2713 "configure" +#line 2760 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func(); below. */ @@ -2732,7 +2779,7 @@ $ac_func(); ; return 0; } EOF -if { (eval echo configure:2736: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2783: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -2761,12 +2808,12 @@ done for ac_func in stpcpy do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:2765: checking for $ac_func" >&5 +echo "configure:2812: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 2770 "configure" +#line 2817 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func(); below. */ @@ -2789,7 +2836,7 @@ $ac_func(); ; return 0; } EOF -if { (eval echo configure:2793: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2840: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -2823,19 +2870,19 @@ EOF if test $ac_cv_header_locale_h = yes; then echo $ac_n "checking for LC_MESSAGES""... $ac_c" 1>&6 -echo "configure:2827: checking for LC_MESSAGES" >&5 +echo "configure:2874: checking for LC_MESSAGES" >&5 if eval "test \"`echo '$''{'am_cv_val_LC_MESSAGES'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 2832 "configure" +#line 2879 "configure" #include "confdefs.h" #include <locale.h> int main() { return LC_MESSAGES ; return 0; } EOF -if { (eval echo configure:2839: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2886: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* am_cv_val_LC_MESSAGES=yes else @@ -2856,7 +2903,7 @@ EOF fi fi echo $ac_n "checking whether NLS is requested""... $ac_c" 1>&6 -echo "configure:2860: checking whether NLS is requested" >&5 +echo "configure:2907: checking whether NLS is requested" >&5 # Check whether --enable-nls or --disable-nls was given. if test "${enable_nls+set}" = set; then @@ -2877,7 +2924,7 @@ fi EOF echo $ac_n "checking whether included gettext is requested""... $ac_c" 1>&6 -echo "configure:2881: checking whether included gettext is requested" >&5 +echo "configure:2928: checking whether included gettext is requested" >&5 # Check whether --with-included-gettext or --without-included-gettext was given. if test "${with_included_gettext+set}" = set; then @@ -2897,17 +2944,17 @@ fi ac_safe=`echo "libintl.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for libintl.h""... $ac_c" 1>&6 -echo "configure:2901: checking for libintl.h" >&5 +echo "configure:2948: checking for libintl.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 2906 "configure" +#line 2953 "configure" #include "confdefs.h" #include <libintl.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:2911: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:2958: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -2924,19 +2971,19 @@ fi if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then echo "$ac_t""yes" 1>&6 echo $ac_n "checking for gettext in libc""... $ac_c" 1>&6 -echo "configure:2928: checking for gettext in libc" >&5 +echo "configure:2975: checking for gettext in libc" >&5 if eval "test \"`echo '$''{'gt_cv_func_gettext_libc'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 2933 "configure" +#line 2980 "configure" #include "confdefs.h" #include <libintl.h> int main() { return (int) gettext ("") ; return 0; } EOF -if { (eval echo configure:2940: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2987: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* gt_cv_func_gettext_libc=yes else @@ -2952,7 +2999,7 @@ echo "$ac_t""$gt_cv_func_gettext_libc" 1>&6 if test "$gt_cv_func_gettext_libc" != "yes"; then echo $ac_n "checking for bindtextdomain in -lintl""... $ac_c" 1>&6 -echo "configure:2956: checking for bindtextdomain in -lintl" >&5 +echo "configure:3003: checking for bindtextdomain in -lintl" >&5 ac_lib_var=`echo intl'_'bindtextdomain | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -2960,7 +3007,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lintl $LIBS" cat > conftest.$ac_ext <<EOF -#line 2964 "configure" +#line 3011 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -2971,7 +3018,7 @@ int main() { bindtextdomain() ; return 0; } EOF -if { (eval echo configure:2975: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3022: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -2989,19 +3036,19 @@ if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then gt_save_LIBS="$LIBS" LIBS="$gt_save_LIBS -lintl" echo $ac_n "checking for gettext in libintl""... $ac_c" 1>&6 -echo "configure:2993: checking for gettext in libintl" >&5 +echo "configure:3040: checking for gettext in libintl" >&5 if eval "test \"`echo '$''{'gt_cv_func_gettext_libintl'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 2998 "configure" +#line 3045 "configure" #include "confdefs.h" int main() { return (int) gettext ("") ; return 0; } EOF -if { (eval echo configure:3005: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3052: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* gt_cv_func_gettext_libintl=yes else @@ -3032,9 +3079,10 @@ fi EOF # Extract the first word of "msgfmt", so it can be a program name with args. + set dummy msgfmt; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3038: checking for $ac_word" >&5 +echo "configure:3086: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_MSGFMT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3043,7 +3091,7 @@ else ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path. ;; *) - IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATHSEP}" for ac_dir in $PATH; do test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$ac_word; then @@ -3068,12 +3116,12 @@ fi for ac_func in dcgettext do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:3072: checking for $ac_func" >&5 +echo "configure:3120: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 3077 "configure" +#line 3125 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func(); below. */ @@ -3096,7 +3144,7 @@ $ac_func(); ; return 0; } EOF -if { (eval echo configure:3100: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3148: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -3123,7 +3171,7 @@ done # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3127: checking for $ac_word" >&5 +echo "configure:3175: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3157,9 +3205,10 @@ else fi # Extract the first word of "xgettext", so it can be a program name with args. + set dummy xgettext; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3163: checking for $ac_word" >&5 +echo "configure:3212: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_XGETTEXT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3168,7 +3217,7 @@ else ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path. ;; *) - IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATHSEP}" for ac_dir in $PATH; do test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$ac_word; then @@ -3191,7 +3240,7 @@ else fi cat > conftest.$ac_ext <<EOF -#line 3195 "configure" +#line 3244 "configure" #include "confdefs.h" int main() { @@ -3199,7 +3248,7 @@ extern int _nl_msg_cat_cntr; return _nl_msg_cat_cntr ; return 0; } EOF -if { (eval echo configure:3203: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3252: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* CATOBJEXT=.gmo DATADIRNAME=share @@ -3222,7 +3271,7 @@ fi if test "$CATOBJEXT" = "NONE"; then echo $ac_n "checking whether catgets can be used""... $ac_c" 1>&6 -echo "configure:3226: checking whether catgets can be used" >&5 +echo "configure:3275: checking whether catgets can be used" >&5 # Check whether --with-catgets or --without-catgets was given. if test "${with_catgets+set}" = set; then @@ -3236,7 +3285,7 @@ fi if test "$nls_cv_use_catgets" = "yes"; then echo $ac_n "checking for main in -li""... $ac_c" 1>&6 -echo "configure:3240: checking for main in -li" >&5 +echo "configure:3289: checking for main in -li" >&5 ac_lib_var=`echo i'_'main | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -3244,14 +3293,14 @@ else ac_save_LIBS="$LIBS" LIBS="-li $LIBS" cat > conftest.$ac_ext <<EOF -#line 3248 "configure" +#line 3297 "configure" #include "confdefs.h" int main() { main() ; return 0; } EOF -if { (eval echo configure:3255: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3304: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -3279,12 +3328,12 @@ else fi echo $ac_n "checking for catgets""... $ac_c" 1>&6 -echo "configure:3283: checking for catgets" >&5 +echo "configure:3332: checking for catgets" >&5 if eval "test \"`echo '$''{'ac_cv_func_catgets'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 3288 "configure" +#line 3337 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char catgets(); below. */ @@ -3307,7 +3356,7 @@ catgets(); ; return 0; } EOF -if { (eval echo configure:3311: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3360: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_catgets=yes" else @@ -3329,7 +3378,7 @@ EOF # Extract the first word of "gencat", so it can be a program name with args. set dummy gencat; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3333: checking for $ac_word" >&5 +echo "configure:3382: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_GENCAT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3365,7 +3414,7 @@ fi # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3369: checking for $ac_word" >&5 +echo "configure:3418: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3400,9 +3449,10 @@ fi if test "$GMSGFMT" = "no"; then # Extract the first word of "msgfmt", so it can be a program name with args. + set dummy msgfmt; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3406: checking for $ac_word" >&5 +echo "configure:3456: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3411,7 +3461,7 @@ else ac_cv_path_GMSGFMT="$GMSGFMT" # Let the user override the test with a path. ;; *) - IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATHSEP}" for ac_dir in $PATH; do test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$ac_word; then @@ -3435,9 +3485,10 @@ fi fi # Extract the first word of "xgettext", so it can be a program name with args. + set dummy xgettext; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3441: checking for $ac_word" >&5 +echo "configure:3492: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_XGETTEXT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3446,7 +3497,7 @@ else ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path. ;; *) - IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATHSEP}" for ac_dir in $PATH; do test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$ac_word; then @@ -3493,9 +3544,10 @@ fi if test "$nls_cv_use_gnu_gettext" = "yes"; then INTLOBJS="\$(GETTOBJS)" # Extract the first word of "msgfmt", so it can be a program name with args. + set dummy msgfmt; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3499: checking for $ac_word" >&5 +echo "configure:3551: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_MSGFMT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3504,7 +3556,7 @@ else ac_cv_path_MSGFMT="$MSGFMT" # Let the user override the test with a path. ;; *) - IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATHSEP}" for ac_dir in $PATH; do test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$ac_word; then @@ -3529,7 +3581,7 @@ fi # Extract the first word of "gmsgfmt", so it can be a program name with args. set dummy gmsgfmt; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3533: checking for $ac_word" >&5 +echo "configure:3585: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_GMSGFMT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3563,9 +3615,10 @@ else fi # Extract the first word of "xgettext", so it can be a program name with args. + set dummy xgettext; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:3569: checking for $ac_word" >&5 +echo "configure:3622: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_XGETTEXT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3574,7 +3627,7 @@ else ac_cv_path_XGETTEXT="$XGETTEXT" # Let the user override the test with a path. ;; *) - IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:" + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}${PATHSEP}" for ac_dir in $PATH; do test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$ac_word; then @@ -3665,7 +3718,7 @@ fi LINGUAS= else echo $ac_n "checking for catalogs to be installed""... $ac_c" 1>&6 -echo "configure:3669: checking for catalogs to be installed" >&5 +echo "configure:3722: checking for catalogs to be installed" >&5 NEW_LINGUAS= for lang in ${LINGUAS=$ALL_LINGUAS}; do case "$ALL_LINGUAS" in @@ -3694,17 +3747,17 @@ echo "configure:3669: checking for catalogs to be installed" >&5 if test "$CATOBJEXT" = ".cat"; then ac_safe=`echo "linux/version.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for linux/version.h""... $ac_c" 1>&6 -echo "configure:3698: checking for linux/version.h" >&5 +echo "configure:3751: checking for linux/version.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 3703 "configure" +#line 3756 "configure" #include "confdefs.h" #include <linux/version.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:3708: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:3761: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -3785,7 +3838,7 @@ use_our_messages=no if test "$USE_NLS" = yes ; then if test -d $srcdir/po ; then echo $ac_n "checking if we should use included message-library""... $ac_c" 1>&6 -echo "configure:3789: checking if we should use included message-library" >&5 +echo "configure:3842: checking if we should use included message-library" >&5 # Check whether --enable-included-msgs or --disable-included-msgs was given. if test "${enable_included_msgs+set}" = set; then @@ -3823,17 +3876,17 @@ elif test "$USE_NLS" = yes ; then do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:3827: checking for $ac_hdr" >&5 +echo "configure:3880: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 3832 "configure" +#line 3885 "configure" #include "confdefs.h" #include <$ac_hdr> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:3837: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:3890: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -3943,7 +3996,7 @@ eval NLS_DATADIR="$withval" echo $ac_n "checking if you want full utility pathnames""... $ac_c" 1>&6 -echo "configure:3947: checking if you want full utility pathnames" >&5 +echo "configure:4000: checking if you want full utility pathnames" >&5 # Check whether --enable-full-paths or --disable-full-paths was given. if test "${enable_full_paths+set}" = set; then @@ -3968,7 +4021,7 @@ EOF echo $ac_n "checking for system mailer""... $ac_c" 1>&6 -echo "configure:3972: checking for system mailer" >&5 +echo "configure:4025: checking for system mailer" >&5 if eval "test \"`echo '$''{'cf_cv_SYSTEM_MAIL'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -3995,7 +4048,7 @@ EOF echo $ac_n "checking system mail flags""... $ac_c" 1>&6 -echo "configure:3999: checking system mail flags" >&5 +echo "configure:4052: checking system mail flags" >&5 if eval "test \"`echo '$''{'cf_cv_system_mail_flags'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4023,7 +4076,7 @@ if test "$with_full_paths" = yes ; then # Extract the first word of "chmod", so it can be a program name with args. set dummy chmod; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4027: checking for $ac_word" >&5 +echo "configure:4080: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_CHMOD'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4058,7 +4111,7 @@ fi else echo $ac_n "checking for chmod""... $ac_c" 1>&6 -echo "configure:4062: checking for chmod" >&5 +echo "configure:4115: checking for chmod" >&5 echo "$ac_t""$CHMOD" 1>&6 eval 'ac_cv_path_'CHMOD'="'chmod'"' fi @@ -4100,7 +4153,7 @@ if test "$with_full_paths" = yes ; then # Extract the first word of "compress", so it can be a program name with args. set dummy compress; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4104: checking for $ac_word" >&5 +echo "configure:4157: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_COMPRESS'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4135,7 +4188,7 @@ fi else echo $ac_n "checking for compress""... $ac_c" 1>&6 -echo "configure:4139: checking for compress" >&5 +echo "configure:4192: checking for compress" >&5 echo "$ac_t""$COMPRESS" 1>&6 eval 'ac_cv_path_'COMPRESS'="'compress'"' fi @@ -4177,7 +4230,7 @@ if test "$with_full_paths" = yes ; then # Extract the first word of "cp", so it can be a program name with args. set dummy cp; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4181: checking for $ac_word" >&5 +echo "configure:4234: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_COPY'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4212,7 +4265,7 @@ fi else echo $ac_n "checking for cp""... $ac_c" 1>&6 -echo "configure:4216: checking for cp" >&5 +echo "configure:4269: checking for cp" >&5 echo "$ac_t""$COPY" 1>&6 eval 'ac_cv_path_'COPY'="'cp'"' fi @@ -4254,7 +4307,7 @@ if test "$with_full_paths" = yes ; then # Extract the first word of "gzip", so it can be a program name with args. set dummy gzip; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4258: checking for $ac_word" >&5 +echo "configure:4311: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_GZIP'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4289,7 +4342,7 @@ fi else echo $ac_n "checking for gzip""... $ac_c" 1>&6 -echo "configure:4293: checking for gzip" >&5 +echo "configure:4346: checking for gzip" >&5 echo "$ac_t""$GZIP" 1>&6 eval 'ac_cv_path_'GZIP'="'gzip'"' fi @@ -4331,7 +4384,7 @@ if test "$with_full_paths" = yes ; then # Extract the first word of "mkdir", so it can be a program name with args. set dummy mkdir; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4335: checking for $ac_word" >&5 +echo "configure:4388: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_MKDIR'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4366,7 +4419,7 @@ fi else echo $ac_n "checking for mkdir""... $ac_c" 1>&6 -echo "configure:4370: checking for mkdir" >&5 +echo "configure:4423: checking for mkdir" >&5 echo "$ac_t""$MKDIR" 1>&6 eval 'ac_cv_path_'MKDIR'="'mkdir'"' fi @@ -4408,7 +4461,7 @@ if test "$with_full_paths" = yes ; then # Extract the first word of "mv", so it can be a program name with args. set dummy mv; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4412: checking for $ac_word" >&5 +echo "configure:4465: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_MV'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4443,7 +4496,7 @@ fi else echo $ac_n "checking for mv""... $ac_c" 1>&6 -echo "configure:4447: checking for mv" >&5 +echo "configure:4500: checking for mv" >&5 echo "$ac_t""$MV" 1>&6 eval 'ac_cv_path_'MV'="'mv'"' fi @@ -4485,7 +4538,7 @@ if test "$with_full_paths" = yes ; then # Extract the first word of "rm", so it can be a program name with args. set dummy rm; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4489: checking for $ac_word" >&5 +echo "configure:4542: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_RM'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4520,7 +4573,7 @@ fi else echo $ac_n "checking for rm""... $ac_c" 1>&6 -echo "configure:4524: checking for rm" >&5 +echo "configure:4577: checking for rm" >&5 echo "$ac_t""$RM" 1>&6 eval 'ac_cv_path_'RM'="'rm'"' fi @@ -4562,7 +4615,7 @@ if test "$with_full_paths" = yes ; then # Extract the first word of "tar", so it can be a program name with args. set dummy tar; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4566: checking for $ac_word" >&5 +echo "configure:4619: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_TAR'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4597,7 +4650,7 @@ fi else echo $ac_n "checking for tar""... $ac_c" 1>&6 -echo "configure:4601: checking for tar" >&5 +echo "configure:4654: checking for tar" >&5 echo "$ac_t""$TAR" 1>&6 eval 'ac_cv_path_'TAR'="'tar'"' fi @@ -4639,7 +4692,7 @@ if test "$with_full_paths" = yes ; then # Extract the first word of "touch", so it can be a program name with args. set dummy touch; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4643: checking for $ac_word" >&5 +echo "configure:4696: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_TOUCH'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4674,7 +4727,7 @@ fi else echo $ac_n "checking for touch""... $ac_c" 1>&6 -echo "configure:4678: checking for touch" >&5 +echo "configure:4731: checking for touch" >&5 echo "$ac_t""$TOUCH" 1>&6 eval 'ac_cv_path_'TOUCH'="'touch'"' fi @@ -4716,7 +4769,7 @@ if test "$with_full_paths" = yes ; then # Extract the first word of "gunzip", so it can be a program name with args. set dummy gunzip; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4720: checking for $ac_word" >&5 +echo "configure:4773: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_UNCOMPRESS'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4751,7 +4804,7 @@ fi else echo $ac_n "checking for gunzip""... $ac_c" 1>&6 -echo "configure:4755: checking for gunzip" >&5 +echo "configure:4808: checking for gunzip" >&5 echo "$ac_t""$UNCOMPRESS" 1>&6 eval 'ac_cv_path_'UNCOMPRESS'="'gunzip'"' fi @@ -4793,7 +4846,7 @@ if test "$with_full_paths" = yes ; then # Extract the first word of "unzip", so it can be a program name with args. set dummy unzip; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4797: checking for $ac_word" >&5 +echo "configure:4850: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_UNZIP'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4828,7 +4881,7 @@ fi else echo $ac_n "checking for unzip""... $ac_c" 1>&6 -echo "configure:4832: checking for unzip" >&5 +echo "configure:4885: checking for unzip" >&5 echo "$ac_t""$UNZIP" 1>&6 eval 'ac_cv_path_'UNZIP'="'unzip'"' fi @@ -4870,7 +4923,7 @@ if test "$with_full_paths" = yes ; then # Extract the first word of "bzip2", so it can be a program name with args. set dummy bzip2; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4874: checking for $ac_word" >&5 +echo "configure:4927: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_BZIP2'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4905,7 +4958,7 @@ fi else echo $ac_n "checking for bzip2""... $ac_c" 1>&6 -echo "configure:4909: checking for bzip2" >&5 +echo "configure:4962: checking for bzip2" >&5 echo "$ac_t""$BZIP2" 1>&6 eval 'ac_cv_path_'BZIP2'="'bzip2'"' fi @@ -4947,7 +5000,7 @@ if test "$with_full_paths" = yes ; then # Extract the first word of "uudecode", so it can be a program name with args. set dummy uudecode; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4951: checking for $ac_word" >&5 +echo "configure:5004: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_UUDECODE'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4982,7 +5035,7 @@ fi else echo $ac_n "checking for uudecode""... $ac_c" 1>&6 -echo "configure:4986: checking for uudecode" >&5 +echo "configure:5039: checking for uudecode" >&5 echo "$ac_t""$UUDECODE" 1>&6 eval 'ac_cv_path_'UUDECODE'="'uudecode'"' fi @@ -5024,7 +5077,7 @@ if test "$with_full_paths" = yes ; then # Extract the first word of "zcat", so it can be a program name with args. set dummy zcat; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:5028: checking for $ac_word" >&5 +echo "configure:5081: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_ZCAT'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -5059,7 +5112,7 @@ fi else echo $ac_n "checking for zcat""... $ac_c" 1>&6 -echo "configure:5063: checking for zcat" >&5 +echo "configure:5116: checking for zcat" >&5 echo "$ac_t""$ZCAT" 1>&6 eval 'ac_cv_path_'ZCAT'="'zcat'"' fi @@ -5101,7 +5154,7 @@ if test "$with_full_paths" = yes ; then # Extract the first word of "zip", so it can be a program name with args. set dummy zip; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:5105: checking for $ac_word" >&5 +echo "configure:5158: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_ZIP'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -5136,7 +5189,7 @@ fi else echo $ac_n "checking for zip""... $ac_c" 1>&6 -echo "configure:5140: checking for zip" >&5 +echo "configure:5193: checking for zip" >&5 echo "$ac_t""$ZIP" 1>&6 eval 'ac_cv_path_'ZIP'="'zip'"' fi @@ -5178,7 +5231,7 @@ if test "$with_full_paths" = yes ; then # Extract the first word of "telnet", so it can be a program name with args. set dummy telnet; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:5182: checking for $ac_word" >&5 +echo "configure:5235: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_TELNET'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -5213,7 +5266,7 @@ fi else echo $ac_n "checking for telnet""... $ac_c" 1>&6 -echo "configure:5217: checking for telnet" >&5 +echo "configure:5270: checking for telnet" >&5 echo "$ac_t""$TELNET" 1>&6 eval 'ac_cv_path_'TELNET'="'telnet'"' fi @@ -5255,7 +5308,7 @@ if test "$with_full_paths" = yes ; then # Extract the first word of "tn3270", so it can be a program name with args. set dummy tn3270; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:5259: checking for $ac_word" >&5 +echo "configure:5312: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_TN3270'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -5290,7 +5343,7 @@ fi else echo $ac_n "checking for tn3270""... $ac_c" 1>&6 -echo "configure:5294: checking for tn3270" >&5 +echo "configure:5347: checking for tn3270" >&5 echo "$ac_t""$TN3270" 1>&6 eval 'ac_cv_path_'TN3270'="'tn3270'"' fi @@ -5332,7 +5385,7 @@ if test "$with_full_paths" = yes ; then # Extract the first word of "rlogin", so it can be a program name with args. set dummy rlogin; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:5336: checking for $ac_word" >&5 +echo "configure:5389: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_RLOGIN'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -5367,7 +5420,7 @@ fi else echo $ac_n "checking for rlogin""... $ac_c" 1>&6 -echo "configure:5371: checking for rlogin" >&5 +echo "configure:5424: checking for rlogin" >&5 echo "$ac_t""$RLOGIN" 1>&6 eval 'ac_cv_path_'RLOGIN'="'rlogin'"' fi @@ -5419,7 +5472,7 @@ if test "$with_full_paths" = yes ; then # Extract the first word of "install", so it can be a program name with args. set dummy install; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:5423: checking for $ac_word" >&5 +echo "configure:5476: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_INSTALL'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -5454,7 +5507,7 @@ fi else echo $ac_n "checking for install""... $ac_c" 1>&6 -echo "configure:5458: checking for install" >&5 +echo "configure:5511: checking for install" >&5 echo "$ac_t""$INSTALL" 1>&6 eval 'ac_cv_path_'INSTALL'="'install'"' fi @@ -5496,13 +5549,13 @@ esac echo $ac_n "checking if we must define _GNU_SOURCE""... $ac_c" 1>&6 -echo "configure:5500: checking if we must define _GNU_SOURCE" >&5 +echo "configure:5553: checking if we must define _GNU_SOURCE" >&5 if eval "test \"`echo '$''{'cf_cv_gnu_source'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 5506 "configure" +#line 5559 "configure" #include "confdefs.h" #include <sys/types.h> int main() { @@ -5512,17 +5565,17 @@ make an error #endif ; return 0; } EOF -if { (eval echo configure:5516: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5569: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* cf_cv_gnu_source=no else echo "configure: failed program was:" >&5 cat conftest.$ac_ext >&5 rm -rf conftest* - cf_save="$CFLAGS" - CFLAGS="$CFLAGS -D_GNU_SOURCE" + cf_save="$CPPFLAGS" + CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE" cat > conftest.$ac_ext <<EOF -#line 5526 "configure" +#line 5579 "configure" #include "confdefs.h" #include <sys/types.h> int main() { @@ -5532,7 +5585,7 @@ make an error #endif ; return 0; } EOF -if { (eval echo configure:5536: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5589: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* cf_cv_gnu_source=no else @@ -5542,7 +5595,7 @@ else cf_cv_gnu_source=yes fi rm -f conftest* - CFLAGS="$cf_save" + CPPFLAGS="$cf_save" fi rm -f conftest* @@ -5550,23 +5603,23 @@ rm -f conftest* fi echo "$ac_t""$cf_cv_gnu_source" 1>&6 -test "$cf_cv_gnu_source" = yes && CFLAGS="$CFLAGS -D_GNU_SOURCE" +test "$cf_cv_gnu_source" = yes && CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE" if test -n "$TRY_CFLAGS" ; then cf_save_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS $TRY_CFLAGS" echo $ac_n "checking if we should use compile options $TRY_CFLAGS""... $ac_c" 1>&6 -echo "configure:5561: checking if we should use compile options $TRY_CFLAGS" >&5 +echo "configure:5614: checking if we should use compile options $TRY_CFLAGS" >&5 cat > conftest.$ac_ext <<EOF -#line 5563 "configure" +#line 5616 "configure" #include "confdefs.h" #include <stdio.h> int main() { FILE *fp = stdin ; return 0; } EOF -if { (eval echo configure:5570: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:5623: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* cf_result=yes else @@ -5583,8 +5636,176 @@ fi ### Look for network libraries first, since some functions (such as gethostname) ### are used in a lot of places. +echo $ac_n "checking if you want ssl library""... $ac_c" 1>&6 +echo "configure:5641: checking if you want ssl library" >&5 +if eval "test \"`echo '$''{'cf_cv_use_libssl'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + + +# Check whether --with-ssl or --without-ssl was given. +if test "${with_ssl+set}" = set; then + withval="$with_ssl" + cf_cv_use_libssl=$withval +else + cf_cv_use_libssl=no +fi + + +fi + +echo "$ac_t""$cf_cv_use_libssl" 1>&6 + +if test "x$cf_cv_use_libssl" != xno ; then + +cf_ssl_library="-lssl -lcrypto" +case "$cf_cv_use_libssl" in #(vi +no) #(vi + ;; +yes) #(vi + echo $ac_n "checking for SSL_get_version in -lssl""... $ac_c" 1>&6 +echo "configure:5668: checking for SSL_get_version in -lssl" >&5 +ac_lib_var=`echo ssl'_'SSL_get_version | sed 'y%./+-%__p_%'` +if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + ac_save_LIBS="$LIBS" +LIBS="-lssl -lcrypto $LIBS" +cat > conftest.$ac_ext <<EOF +#line 5676 "configure" +#include "confdefs.h" +/* Override any gcc2 internal prototype to avoid an error. */ +/* We use char because int might match the return type of a gcc2 + builtin and then its argument prototype would still apply. */ +char SSL_get_version(); + +int main() { +SSL_get_version() +; return 0; } +EOF +if { (eval echo configure:5687: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + eval "ac_cv_lib_$ac_lib_var=yes" +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + eval "ac_cv_lib_$ac_lib_var=no" +fi +rm -f conftest* +LIBS="$ac_save_LIBS" + +fi +if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then + echo "$ac_t""yes" 1>&6 + ac_tr_lib=HAVE_LIB`echo ssl | sed -e 's/[^a-zA-Z0-9_]/_/g' \ + -e 'y/abcdefghijklmnopqrstuvwxyz/ABCDEFGHIJKLMNOPQRSTUVWXYZ/'` + cat >> confdefs.h <<EOF +#define $ac_tr_lib 1 +EOF + + LIBS="-lssl $LIBS" + +else + echo "$ac_t""no" 1>&6 + + if test -d /usr/local/ssl ; then + test -n "$verbose" && echo " assume it is in /usr/local/ssl" 1>&6 + + cf_ssl_library="-L/usr/local/ssl/lib $cf_ssl_library" + CPPFLAGS="-I/usr/local/ssl/include $CPPFLAGS" + else + { echo "configure: error: cannot find ssl library" 1>&2; exit 1; } + fi + +fi + + ;; +*) + if test -d $cf_cv_use_libssl ; then + if test -d $cf_cv_use_libssl/include ; then + CPPFLAGS="$CPPFLAGS -I$cf_cv_use_libssl/include" + cf_ssl_library="-L$cf_cv_use_libssl/lib $cf_ssl_library" + else + cf_ssl_library="-L$cf_cv_use_libssl $cf_ssl_library" + test -d $cf_cv_use_libssl/../include && CPPFLAGS="$CPPFLAGS -I$cf_cv_use_libssl/../include" + fi + else + echo "configure: warning: expected a directory: $cf_cv_use_libssl" 1>&2 + fi + ;; +esac +LIBS="$cf_ssl_library $LIBS" + +echo $ac_n "checking for openssl include directory""... $ac_c" 1>&6 +echo "configure:5742: checking for openssl include directory" >&5 +cat > conftest.$ac_ext <<EOF +#line 5744 "configure" +#include "confdefs.h" + +#include <stdio.h> +#include <openssl/ssl.h> +int main() { +SSL_shutdown((SSL *)0) +; return 0; } +EOF +if { (eval echo configure:5753: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then + rm -rf conftest* + cf_openssl_incl=yes +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + cf_openssl_incl=no +fi +rm -f conftest* +echo "$ac_t""$cf_openssl_incl" 1>&6 +test "$cf_openssl_incl" = yes && cat >> confdefs.h <<\EOF +#define USE_OPENSSL_INCL 1 +EOF + + +echo $ac_n "checking if we can link to ssl library""... $ac_c" 1>&6 +echo "configure:5770: checking if we can link to ssl library" >&5 +cat > conftest.$ac_ext <<EOF +#line 5772 "configure" +#include "confdefs.h" + +#include <stdio.h> +#ifdef USE_OPENSSL_INCL +#include <openssl/ssl.h> +#else +#include <ssl.h> +#endif + +int main() { +SSL_shutdown((SSL *)0) +; return 0; } +EOF +if { (eval echo configure:5786: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + rm -rf conftest* + cf_ssl_library=yes +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + cf_ssl_library=no +fi +rm -f conftest* +echo "$ac_t""$cf_ssl_library" 1>&6 +if test "$cf_ssl_library" = yes ; then + cat >> confdefs.h <<\EOF +#define USE_SSL 1 +EOF + +else + { echo "configure: error: Cannot link with ssl library" 1>&2; exit 1; } +fi + +fi + echo $ac_n "checking if you want socks library""... $ac_c" 1>&6 -echo "configure:5588: checking if you want socks library" >&5 +echo "configure:5809: checking if you want socks library" >&5 if eval "test \"`echo '$''{'cf_cv_use_libsocks'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -5604,7 +5825,7 @@ fi echo "$ac_t""$cf_cv_use_libsocks" 1>&6 echo $ac_n "checking if you want socks5 library""... $ac_c" 1>&6 -echo "configure:5608: checking if you want socks5 library" >&5 +echo "configure:5829: checking if you want socks5 library" >&5 if eval "test \"`echo '$''{'cf_cv_use_libsocks5'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -5629,7 +5850,17 @@ case "$cf_cv_use_libsocks" in #(vi no|yes) #(vi ;; *) - LIBS="$LIBS -L$cf_cv_use_libsocks" + if test -d $cf_cv_use_libsocks ; then + if test -d $cf_cv_use_libsocks/include ; then + CPPFLAGS="$CPPFLAGS -I$cf_cv_use_libsocks/include" + LIBS="$LIBS -L$cf_cv_use_libsocks/lib" + else + LIBS="$LIBS -L$cf_cv_use_libsocks" + test -d $cf_cv_use_libsocks/../include && CPPFLAGS="$CPPFLAGS -I$cf_cv_use_libsocks/../include" + fi + else + echo "configure: warning: expected a directory: $cf_cv_use_libsocks" 1>&2 + fi ;; esac LIBS="$LIBS -lsocks" @@ -5670,7 +5901,7 @@ cat >> confdefs.h <<\EOF EOF cat > conftest.$ac_ext <<EOF -#line 5674 "configure" +#line 5905 "configure" #include "confdefs.h" #include <stdio.h> @@ -5679,7 +5910,7 @@ int main() { accept((char *)0) ; return 0; } EOF -if { (eval echo configure:5683: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5914: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then : else echo "configure: failed program was:" >&5 @@ -5695,8 +5926,17 @@ case "$cf_cv_use_libsocks5" in #(vi no|yes) #(vi ;; *) - LIBS="$LIBS -L$cf_cv_use_libsocks5" - CFLAGS="$CFLAGS -I$cf_cv_use_libsocks5/../include" + if test -d $cf_cv_use_libsocks5 ; then + if test -d $cf_cv_use_libsocks5/include ; then + CPPFLAGS="$CPPFLAGS -I$cf_cv_use_libsocks5/include" + LIBS="$LIBS -L$cf_cv_use_libsocks5/lib" + else + LIBS="$LIBS -L$cf_cv_use_libsocks5" + test -d $cf_cv_use_libsocks5/../include && CPPFLAGS="$CPPFLAGS -I$cf_cv_use_libsocks5/../include" + fi + else + echo "configure: warning: expected a directory: $cf_cv_use_libsocks5" 1>&2 + fi ;; esac LIBS="$LIBS -lsocks5" @@ -5709,9 +5949,10 @@ cat >> confdefs.h <<\EOF EOF echo $ac_n "checking if the socks library uses socks4 prefix""... $ac_c" 1>&6 -echo "configure:5713: checking if the socks library uses socks4 prefix" >&5 +echo "configure:5953: checking if the socks library uses socks4 prefix" >&5 +cf_use_socks4=error cat > conftest.$ac_ext <<EOF -#line 5715 "configure" +#line 5956 "configure" #include "confdefs.h" #include <socks.h> @@ -5720,7 +5961,7 @@ int main() { Rinit((char *)0) ; return 0; } EOF -if { (eval echo configure:5724: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5965: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* cat >> confdefs.h <<\EOF #define USE_SOCKS4_PREFIX 1 @@ -5732,14 +5973,14 @@ else cat conftest.$ac_ext >&5 rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 5736 "configure" +#line 5977 "configure" #include "confdefs.h" #include <socks.h> int main() { SOCKSinit((char *)0) ; return 0; } EOF -if { (eval echo configure:5743: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5984: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* cf_use_socks4=no else @@ -5803,12 +6044,40 @@ EOF EOF fi +echo $ac_n "checking if socks5p.h is available""... $ac_c" 1>&6 +echo "configure:6049: checking if socks5p.h is available" >&5 +cat > conftest.$ac_ext <<EOF +#line 6051 "configure" +#include "confdefs.h" + +#define INCLUDE_PROTOTYPES +#include <socks.h> +int main() { + + init((char *)0) +; return 0; } +EOF +if { (eval echo configure:6061: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then + rm -rf conftest* + cf_use_socks5p_h=yes +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + cf_use_socks5p_h=no +fi +rm -f conftest* +echo "$ac_t""$cf_use_socks5p_h" 1>&6 +test "$cf_use_socks5p_h" = yes && cat >> confdefs.h <<\EOF +#define INCLUDE_PROTOTYPES 1 +EOF + else cf_test_netlibs=no echo $ac_n "checking for network libraries""... $ac_c" 1>&6 -echo "configure:5812: checking for network libraries" >&5 +echo "configure:6081: checking for network libraries" >&5 if eval "test \"`echo '$''{'cf_cv_netlibs'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -5819,12 +6088,12 @@ cf_test_netlibs=yes for ac_func in gethostname do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:5823: checking for $ac_func" >&5 +echo "configure:6092: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 5828 "configure" +#line 6097 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func(); below. */ @@ -5847,7 +6116,7 @@ $ac_func(); ; return 0; } EOF -if { (eval echo configure:5851: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6120: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -5870,7 +6139,7 @@ else echo "$ac_t""no" 1>&6 echo $ac_n "checking for gethostname in -lnsl""... $ac_c" 1>&6 -echo "configure:5874: checking for gethostname in -lnsl" >&5 +echo "configure:6143: checking for gethostname in -lnsl" >&5 ac_lib_var=`echo nsl'_'gethostname | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -5878,7 +6147,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lnsl $cf_cv_netlibs $LIBS" cat > conftest.$ac_ext <<EOF -#line 5882 "configure" +#line 6151 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -5889,7 +6158,7 @@ int main() { gethostname() ; return 0; } EOF -if { (eval echo configure:5893: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6162: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -5922,7 +6191,7 @@ else echo $ac_n "checking for gethostname in -lsocket""... $ac_c" 1>&6 -echo "configure:5926: checking for gethostname in -lsocket" >&5 +echo "configure:6195: checking for gethostname in -lsocket" >&5 ac_lib_var=`echo socket'_'gethostname | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -5930,7 +6199,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lsocket $cf_cv_netlibs $LIBS" cat > conftest.$ac_ext <<EOF -#line 5934 "configure" +#line 6203 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -5941,7 +6210,7 @@ int main() { gethostname() ; return 0; } EOF -if { (eval echo configure:5945: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6214: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -5986,7 +6255,7 @@ done # I don't know the entrypoints - 97/7/22 TD # AC_HAVE_LIBRARY(inet,cf_cv_netlibs="-linet $cf_cv_netlibs") echo $ac_n "checking for main in -linet""... $ac_c" 1>&6 -echo "configure:5990: checking for main in -linet" >&5 +echo "configure:6259: checking for main in -linet" >&5 ac_lib_var=`echo inet'_'main | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -5994,14 +6263,14 @@ else ac_save_LIBS="$LIBS" LIBS="-linet $LIBS" cat > conftest.$ac_ext <<EOF -#line 5998 "configure" +#line 6267 "configure" #include "confdefs.h" int main() { main() ; return 0; } EOF -if { (eval echo configure:6005: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6274: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -6026,12 +6295,12 @@ if test "$ac_cv_func_lsocket" != no ; then for ac_func in socket do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:6030: checking for $ac_func" >&5 +echo "configure:6299: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 6035 "configure" +#line 6304 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func(); below. */ @@ -6054,7 +6323,7 @@ $ac_func(); ; return 0; } EOF -if { (eval echo configure:6058: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6327: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -6077,7 +6346,7 @@ else echo "$ac_t""no" 1>&6 echo $ac_n "checking for socket in -lsocket""... $ac_c" 1>&6 -echo "configure:6081: checking for socket in -lsocket" >&5 +echo "configure:6350: checking for socket in -lsocket" >&5 ac_lib_var=`echo socket'_'socket | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -6085,7 +6354,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lsocket $cf_cv_netlibs $LIBS" cat > conftest.$ac_ext <<EOF -#line 6089 "configure" +#line 6358 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -6096,7 +6365,7 @@ int main() { socket() ; return 0; } EOF -if { (eval echo configure:6100: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6369: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -6129,7 +6398,7 @@ else echo $ac_n "checking for socket in -lbsd""... $ac_c" 1>&6 -echo "configure:6133: checking for socket in -lbsd" >&5 +echo "configure:6402: checking for socket in -lbsd" >&5 ac_lib_var=`echo bsd'_'socket | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -6137,7 +6406,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lbsd $cf_cv_netlibs $LIBS" cat > conftest.$ac_ext <<EOF -#line 6141 "configure" +#line 6410 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -6148,7 +6417,7 @@ int main() { socket() ; return 0; } EOF -if { (eval echo configure:6152: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6421: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -6193,12 +6462,12 @@ fi for ac_func in gethostbyname do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:6197: checking for $ac_func" >&5 +echo "configure:6466: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 6202 "configure" +#line 6471 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func(); below. */ @@ -6221,7 +6490,7 @@ $ac_func(); ; return 0; } EOF -if { (eval echo configure:6225: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6494: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -6244,7 +6513,7 @@ else echo "$ac_t""no" 1>&6 echo $ac_n "checking for gethostbyname in -lnsl""... $ac_c" 1>&6 -echo "configure:6248: checking for gethostbyname in -lnsl" >&5 +echo "configure:6517: checking for gethostbyname in -lnsl" >&5 ac_lib_var=`echo nsl'_'gethostbyname | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -6252,7 +6521,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lnsl $cf_cv_netlibs $LIBS" cat > conftest.$ac_ext <<EOF -#line 6256 "configure" +#line 6525 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -6263,7 +6532,7 @@ int main() { gethostbyname() ; return 0; } EOF -if { (eval echo configure:6267: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6536: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -6304,12 +6573,12 @@ done for ac_func in strcasecmp do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:6308: checking for $ac_func" >&5 +echo "configure:6577: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 6313 "configure" +#line 6582 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func(); below. */ @@ -6332,7 +6601,7 @@ $ac_func(); ; return 0; } EOF -if { (eval echo configure:6336: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6605: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -6355,7 +6624,7 @@ else echo "$ac_t""no" 1>&6 echo $ac_n "checking for strcasecmp in -lresolv""... $ac_c" 1>&6 -echo "configure:6359: checking for strcasecmp in -lresolv" >&5 +echo "configure:6628: checking for strcasecmp in -lresolv" >&5 ac_lib_var=`echo resolv'_'strcasecmp | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -6363,7 +6632,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lresolv $cf_cv_netlibs $LIBS" cat > conftest.$ac_ext <<EOF -#line 6367 "configure" +#line 6636 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -6374,7 +6643,7 @@ int main() { strcasecmp() ; return 0; } EOF -if { (eval echo configure:6378: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6647: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -6420,13 +6689,13 @@ test $cf_test_netlibs = no && echo "$cf_cv_netlibs" >&6 fi echo $ac_n "checking for inet_aton function""... $ac_c" 1>&6 -echo "configure:6424: checking for inet_aton function" >&5 +echo "configure:6693: checking for inet_aton function" >&5 if eval "test \"`echo '$''{'cf_cv_have_inet_aton'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 6430 "configure" +#line 6699 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/socket.h> @@ -6437,7 +6706,7 @@ int main() { inet_aton(0, (struct in_addr *)0) ; return 0; } EOF -if { (eval echo configure:6441: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6710: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* cf_cv_have_inet_aton=yes else @@ -6457,13 +6726,13 @@ EOF else echo $ac_n "checking for inet_addr function""... $ac_c" 1>&6 -echo "configure:6461: checking for inet_addr function" >&5 +echo "configure:6730: checking for inet_addr function" >&5 if eval "test \"`echo '$''{'cf_cv_have_inet_addr'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 6467 "configure" +#line 6736 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/socket.h> @@ -6474,7 +6743,7 @@ int main() { inet_addr(0) ; return 0; } EOF -if { (eval echo configure:6478: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6747: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* cf_cv_have_inet_addr=yes else @@ -6489,7 +6758,7 @@ fi echo "$ac_t""$cf_cv_have_inet_addr" 1>&6 if test "$cf_cv_have_inet_addr" = no ; then echo $ac_n "checking for library with inet_addr""... $ac_c" 1>&6 -echo "configure:6493: checking for library with inet_addr" >&5 +echo "configure:6762: checking for library with inet_addr" >&5 if eval "test \"`echo '$''{'cf_cv_lib_inet_addr'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -6499,7 +6768,7 @@ else do LIBS="$cf_save_LIBS $cf_inetlib" cat > conftest.$ac_ext <<EOF -#line 6503 "configure" +#line 6772 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/socket.h> @@ -6510,7 +6779,7 @@ int main() { inet_addr(0) ; return 0; } EOF -if { (eval echo configure:6514: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6783: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* cf_cv_lib_inet_addr=$cf_inetlib else @@ -6537,7 +6806,7 @@ fi echo $ac_n "checking for screen type""... $ac_c" 1>&6 -echo "configure:6541: checking for screen type" >&5 +echo "configure:6810: checking for screen type" >&5 if eval "test \"`echo '$''{'cf_cv_screen'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -6578,7 +6847,7 @@ esac case $cf_cv_screen in curses) echo $ac_n "checking for ncurses version""... $ac_c" 1>&6 -echo "configure:6582: checking for ncurses version" >&5 +echo "configure:6851: checking for ncurses version" >&5 if eval "test \"`echo '$''{'cf_cv_ncurses_version'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -6603,7 +6872,7 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo configure:6607: \"$cf_try\") 1>&5; (eval $cf_try) 2>&5; } + { (eval echo configure:6876: \"$cf_try\") 1>&5; (eval $cf_try) 2>&5; } if test -f conftest.out ; then cf_out=`cat conftest.out | sed -e 's@^Autoconf @@' -e 's@^[^"]*"@@' -e 's@".*@@'` test -n "$cf_out" && cf_cv_ncurses_version="$cf_out" @@ -6612,7 +6881,7 @@ EOF else cat > conftest.$ac_ext <<EOF -#line 6616 "configure" +#line 6885 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -6635,7 +6904,7 @@ int main() exit(0); } EOF -if { (eval echo configure:6639: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:6908: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -6654,16 +6923,16 @@ echo "$ac_t""$cf_cv_ncurses_version" 1>&6 echo $ac_n "checking if we have identified curses libraries""... $ac_c" 1>&6 -echo "configure:6658: checking if we have identified curses libraries" >&5 +echo "configure:6927: checking if we have identified curses libraries" >&5 cat > conftest.$ac_ext <<EOF -#line 6660 "configure" +#line 6929 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int main() { initscr(); tgoto("?", 0,0) ; return 0; } EOF -if { (eval echo configure:6667: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6936: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* cf_result=yes else @@ -6679,7 +6948,7 @@ if test "$cf_result" = no ; then case $host_os in #(vi freebsd*) #(vi echo $ac_n "checking for tgoto in -lmytinfo""... $ac_c" 1>&6 -echo "configure:6683: checking for tgoto in -lmytinfo" >&5 +echo "configure:6952: checking for tgoto in -lmytinfo" >&5 ac_lib_var=`echo mytinfo'_'tgoto | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -6687,7 +6956,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lmytinfo $LIBS" cat > conftest.$ac_ext <<EOF -#line 6691 "configure" +#line 6960 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -6698,7 +6967,7 @@ int main() { tgoto() ; return 0; } EOF -if { (eval echo configure:6702: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6971: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -6721,7 +6990,7 @@ fi ;; hpux10.*|hpux11.*) #(vi echo $ac_n "checking for initscr in -lcur_colr""... $ac_c" 1>&6 -echo "configure:6725: checking for initscr in -lcur_colr" >&5 +echo "configure:6994: checking for initscr in -lcur_colr" >&5 ac_lib_var=`echo cur_colr'_'initscr | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -6729,7 +6998,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lcur_colr $LIBS" cat > conftest.$ac_ext <<EOF -#line 6733 "configure" +#line 7002 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -6740,7 +7009,7 @@ int main() { initscr() ; return 0; } EOF -if { (eval echo configure:6744: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7013: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -6757,14 +7026,14 @@ if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then echo "$ac_t""yes" 1>&6 LIBS="-lcur_colr $LIBS" - CFLAGS="-I/usr/include/curses_colr $CFLAGS" + CPPFLAGS="-I/usr/include/curses_colr $CPPFLAGS" ac_cv_func_initscr=yes else echo "$ac_t""no" 1>&6 echo $ac_n "checking for initscr in -lHcurses""... $ac_c" 1>&6 -echo "configure:6768: checking for initscr in -lHcurses" >&5 +echo "configure:7037: checking for initscr in -lHcurses" >&5 ac_lib_var=`echo Hcurses'_'initscr | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -6772,7 +7041,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lHcurses $LIBS" cat > conftest.$ac_ext <<EOF -#line 6776 "configure" +#line 7045 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -6783,7 +7052,7 @@ int main() { initscr() ; return 0; } EOF -if { (eval echo configure:6787: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7056: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -6801,7 +7070,7 @@ if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then # HP's header uses __HP_CURSES, but user claims _HP_CURSES. LIBS="-lHcurses $LIBS" - CFLAGS="-D__HP_CURSES -D_HP_CURSES $CFLAGS" + CPPFLAGS="-D__HP_CURSES -D_HP_CURSES $CPPFLAGS" ac_cv_func_initscr=yes else @@ -6839,12 +7108,12 @@ 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 $ac_n "checking for tgoto""... $ac_c" 1>&6 -echo "configure:6843: checking for tgoto" >&5 +echo "configure:7112: checking for tgoto" >&5 if eval "test \"`echo '$''{'ac_cv_func_tgoto'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 6848 "configure" +#line 7117 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char tgoto(); below. */ @@ -6867,7 +7136,7 @@ tgoto(); ; return 0; } EOF -if { (eval echo configure:6871: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7140: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_tgoto=yes" else @@ -6888,7 +7157,7 @@ else for cf_term_lib in $cf_check_list termcap termlib unknown do echo $ac_n "checking for tgoto in -l$cf_term_lib""... $ac_c" 1>&6 -echo "configure:6892: checking for tgoto in -l$cf_term_lib" >&5 +echo "configure:7161: checking for tgoto in -l$cf_term_lib" >&5 ac_lib_var=`echo $cf_term_lib'_'tgoto | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -6896,7 +7165,7 @@ else ac_save_LIBS="$LIBS" LIBS="-l$cf_term_lib $LIBS" cat > conftest.$ac_ext <<EOF -#line 6900 "configure" +#line 7169 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -6907,7 +7176,7 @@ int main() { tgoto() ; return 0; } EOF -if { (eval echo configure:6911: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7180: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -6937,7 +7206,7 @@ fi for cf_curs_lib in $cf_check_list xcurses jcurses unknown do echo $ac_n "checking for initscr in -l$cf_curs_lib""... $ac_c" 1>&6 -echo "configure:6941: checking for initscr in -l$cf_curs_lib" >&5 +echo "configure:7210: checking for initscr in -l$cf_curs_lib" >&5 ac_lib_var=`echo $cf_curs_lib'_'initscr | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -6945,7 +7214,7 @@ else ac_save_LIBS="$LIBS" LIBS="-l$cf_curs_lib $LIBS" cat > conftest.$ac_ext <<EOF -#line 6949 "configure" +#line 7218 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -6956,7 +7225,7 @@ int main() { initscr() ; return 0; } EOF -if { (eval echo configure:6960: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7229: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -6982,16 +7251,16 @@ fi LIBS="-l$cf_curs_lib $cf_save_LIBS" if test "$cf_term_lib" = unknown ; then echo $ac_n "checking if we can link with $cf_curs_lib library""... $ac_c" 1>&6 -echo "configure:6986: checking if we can link with $cf_curs_lib library" >&5 +echo "configure:7255: checking if we can link with $cf_curs_lib library" >&5 cat > conftest.$ac_ext <<EOF -#line 6988 "configure" +#line 7257 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int main() { initscr() ; return 0; } EOF -if { (eval echo configure:6995: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7264: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* cf_result=yes else @@ -7007,16 +7276,16 @@ rm -f conftest* : elif test "$cf_term_lib" != predefined ; then echo $ac_n "checking if we need both $cf_curs_lib and $cf_term_lib libraries""... $ac_c" 1>&6 -echo "configure:7011: checking if we need both $cf_curs_lib and $cf_term_lib libraries" >&5 +echo "configure:7280: checking if we need both $cf_curs_lib and $cf_term_lib libraries" >&5 cat > conftest.$ac_ext <<EOF -#line 7013 "configure" +#line 7282 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int main() { initscr(); tgoto((char *)0, 0, 0); ; return 0; } EOF -if { (eval echo configure:7020: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7289: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* cf_result=no else @@ -7026,14 +7295,14 @@ else LIBS="-l$cf_curs_lib -l$cf_term_lib $cf_save_LIBS" cat > conftest.$ac_ext <<EOF -#line 7030 "configure" +#line 7299 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int main() { initscr() ; return 0; } EOF -if { (eval echo configure:7037: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7306: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* cf_result=yes else @@ -7054,14 +7323,14 @@ fi echo $ac_n "checking for curses performance tradeoff""... $ac_c" 1>&6 -echo "configure:7058: checking for curses performance tradeoff" >&5 +echo "configure:7327: checking for curses performance tradeoff" >&5 if eval "test \"`echo '$''{'cf_cv_curs_performance'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cf_cv_curs_performance=no cat > conftest.$ac_ext <<EOF -#line 7065 "configure" +#line 7334 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -7075,11 +7344,11 @@ int main() { ; return 0; } EOF -if { (eval echo configure:7079: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:7348: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 7083 "configure" +#line 7352 "configure" #include "confdefs.h" #define CURS_PERFORMANCE @@ -7094,7 +7363,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:7098: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:7367: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* cf_cv_curs_performance=yes else @@ -7119,13 +7388,13 @@ EOF ncurses) echo $ac_n "checking for ncurses header file""... $ac_c" 1>&6 -echo "configure:7123: checking for ncurses header file" >&5 +echo "configure:7392: checking for ncurses header file" >&5 if eval "test \"`echo '$''{'cf_cv_ncurses_header'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 7129 "configure" +#line 7398 "configure" #include "confdefs.h" #include <curses.h> int main() { @@ -7142,7 +7411,7 @@ make an error ; return 0; } EOF -if { (eval echo configure:7146: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:7415: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* cf_cv_ncurses_header=predefined else @@ -7242,7 +7511,7 @@ done ;; esac echo $ac_n "checking for ncurses version""... $ac_c" 1>&6 -echo "configure:7246: checking for ncurses version" >&5 +echo "configure:7515: checking for ncurses version" >&5 if eval "test \"`echo '$''{'cf_cv_ncurses_version'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -7267,7 +7536,7 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo configure:7271: \"$cf_try\") 1>&5; (eval $cf_try) 2>&5; } + { (eval echo configure:7540: \"$cf_try\") 1>&5; (eval $cf_try) 2>&5; } if test -f conftest.out ; then cf_out=`cat conftest.out | sed -e 's@^Autoconf @@' -e 's@^[^"]*"@@' -e 's@".*@@'` test -n "$cf_out" && cf_cv_ncurses_version="$cf_out" @@ -7276,7 +7545,7 @@ EOF else cat > conftest.$ac_ext <<EOF -#line 7280 "configure" +#line 7549 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -7299,7 +7568,7 @@ int main() exit(0); } EOF -if { (eval echo configure:7303: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:7572: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -7324,7 +7593,7 @@ echo "$ac_t""$cf_cv_ncurses_version" 1>&6 cf_ncurses_LIBS="" cf_ncurses_SAVE="$LIBS" echo $ac_n "checking for Gpm_Open in -lgpm""... $ac_c" 1>&6 -echo "configure:7328: checking for Gpm_Open in -lgpm" >&5 +echo "configure:7597: checking for Gpm_Open in -lgpm" >&5 ac_lib_var=`echo gpm'_'Gpm_Open | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -7332,7 +7601,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lgpm $LIBS" cat > conftest.$ac_ext <<EOF -#line 7336 "configure" +#line 7605 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -7343,7 +7612,7 @@ int main() { Gpm_Open() ; return 0; } EOF -if { (eval echo configure:7347: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7616: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -7359,7 +7628,7 @@ fi if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then echo "$ac_t""yes" 1>&6 echo $ac_n "checking for initscr in -lgpm""... $ac_c" 1>&6 -echo "configure:7363: checking for initscr in -lgpm" >&5 +echo "configure:7632: checking for initscr in -lgpm" >&5 ac_lib_var=`echo gpm'_'initscr | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -7367,7 +7636,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lgpm $LIBS" cat > conftest.$ac_ext <<EOF -#line 7371 "configure" +#line 7640 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -7378,7 +7647,7 @@ int main() { initscr() ; return 0; } EOF -if { (eval echo configure:7382: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7651: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -7409,7 +7678,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). echo $ac_n "checking for tgoto in -lmytinfo""... $ac_c" 1>&6 -echo "configure:7413: checking for tgoto in -lmytinfo" >&5 +echo "configure:7682: checking for tgoto in -lmytinfo" >&5 ac_lib_var=`echo mytinfo'_'tgoto | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -7417,7 +7686,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lmytinfo $LIBS" cat > conftest.$ac_ext <<EOF -#line 7421 "configure" +#line 7690 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -7428,7 +7697,7 @@ int main() { tgoto() ; return 0; } EOF -if { (eval echo configure:7432: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7701: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -7456,12 +7725,12 @@ LIBS="$cf_ncurses_LIBS $LIBS" eval 'cf_cv_have_lib_'ncurses'=no' cf_libdir="" echo $ac_n "checking for initscr""... $ac_c" 1>&6 -echo "configure:7460: checking for initscr" >&5 +echo "configure:7729: checking for initscr" >&5 if eval "test \"`echo '$''{'ac_cv_func_initscr'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 7465 "configure" +#line 7734 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char initscr(); below. */ @@ -7484,7 +7753,7 @@ initscr(); ; return 0; } EOF -if { (eval echo configure:7488: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7757: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_initscr=yes" else @@ -7504,17 +7773,17 @@ else cf_save_LIBS="$LIBS" echo $ac_n "checking for initscr in -lncurses""... $ac_c" 1>&6 -echo "configure:7508: checking for initscr in -lncurses" >&5 +echo "configure:7777: checking for initscr in -lncurses" >&5 LIBS="-lncurses $LIBS" cat > conftest.$ac_ext <<EOF -#line 7511 "configure" +#line 7780 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int main() { initscr() ; return 0; } EOF -if { (eval echo configure:7518: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7787: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* echo "$ac_t""yes" 1>&6 eval 'cf_cv_have_lib_'ncurses'=yes' @@ -7558,17 +7827,17 @@ cf_search="$cf_search $HOME/lib $HOME/lib/ncurses $HOME/ncurses/lib" for cf_libdir in $cf_search do echo $ac_n "checking for -lncurses in $cf_libdir""... $ac_c" 1>&6 -echo "configure:7562: checking for -lncurses in $cf_libdir" >&5 +echo "configure:7831: checking for -lncurses in $cf_libdir" >&5 LIBS="-L$cf_libdir -lncurses $cf_save_LIBS" cat > conftest.$ac_ext <<EOF -#line 7565 "configure" +#line 7834 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int main() { initscr() ; return 0; } EOF -if { (eval echo configure:7572: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7841: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* echo "$ac_t""yes" 1>&6 eval 'cf_cv_have_lib_'ncurses'=yes' @@ -7598,7 +7867,7 @@ fi if test -n "$cf_ncurses_LIBS" ; then echo $ac_n "checking if we can link ncurses without $cf_ncurses_LIBS""... $ac_c" 1>&6 -echo "configure:7602: checking if we can link ncurses without $cf_ncurses_LIBS" >&5 +echo "configure:7871: checking if we can link ncurses without $cf_ncurses_LIBS" >&5 cf_ncurses_SAVE="$LIBS" for p in $cf_ncurses_LIBS ; do q=`echo $LIBS | sed -e 's/'$p' //' -e 's/'$p'$//'` @@ -7607,14 +7876,14 @@ echo "configure:7602: checking if we can link ncurses without $cf_ncurses_LIBS" fi done cat > conftest.$ac_ext <<EOF -#line 7611 "configure" +#line 7880 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int main() { initscr(); mousemask(0,0); tgoto((char *)0, 0, 0); ; return 0; } EOF -if { (eval echo configure:7618: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7887: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* echo "$ac_t""yes" 1>&6 else @@ -7628,7 +7897,7 @@ rm -f conftest* fi echo $ac_n "checking for ncurses version""... $ac_c" 1>&6 -echo "configure:7632: checking for ncurses version" >&5 +echo "configure:7901: checking for ncurses version" >&5 if eval "test \"`echo '$''{'cf_cv_ncurses_version'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -7653,7 +7922,7 @@ Autoconf "old" #endif EOF cf_try="$ac_cpp conftest.$ac_ext 2>&5 | grep '^Autoconf ' >conftest.out" - { (eval echo configure:7657: \"$cf_try\") 1>&5; (eval $cf_try) 2>&5; } + { (eval echo configure:7926: \"$cf_try\") 1>&5; (eval $cf_try) 2>&5; } if test -f conftest.out ; then cf_out=`cat conftest.out | sed -e 's@^Autoconf @@' -e 's@^[^"]*"@@' -e 's@".*@@'` test -n "$cf_out" && cf_cv_ncurses_version="$cf_out" @@ -7662,7 +7931,7 @@ EOF else cat > conftest.$ac_ext <<EOF -#line 7666 "configure" +#line 7935 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -7685,7 +7954,7 @@ int main() exit(0); } EOF -if { (eval echo configure:7689: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:7958: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then cf_cv_ncurses_version=`cat $cf_tempfile` @@ -7708,20 +7977,20 @@ pdcurses) slang) echo $ac_n "checking for slang header file""... $ac_c" 1>&6 -echo "configure:7712: checking for slang header file" >&5 +echo "configure:7981: checking for slang header file" >&5 if eval "test \"`echo '$''{'cf_cv_slang_header'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 7718 "configure" +#line 7987 "configure" #include "confdefs.h" #include <slang.h> int main() { printf("%s\n", SLANG_VERSION) ; return 0; } EOF -if { (eval echo configure:7725: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:7994: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* cf_cv_slang_header=predefined else @@ -7817,24 +8086,24 @@ else cf_cv_termlib=none cat > conftest.$ac_ext <<EOF -#line 7821 "configure" +#line 8090 "configure" #include "confdefs.h" int main() { char *x=(char*)tgoto("",0,0) ; return 0; } EOF -if { (eval echo configure:7828: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:8097: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 7831 "configure" +#line 8100 "configure" #include "confdefs.h" int main() { int x=tigetstr("") ; return 0; } EOF -if { (eval echo configure:7838: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:8107: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* cf_cv_termlib=terminfo else @@ -7863,16 +8132,16 @@ if test "$cf_cv_termlib" = none; then for cf_func in tigetstr tgetstr do echo $ac_n "checking for $cf_func in -l$cf_lib""... $ac_c" 1>&6 -echo "configure:7867: checking for $cf_func in -l$cf_lib" >&5 +echo "configure:8136: checking for $cf_func in -l$cf_lib" >&5 cat > conftest.$ac_ext <<EOF -#line 7869 "configure" +#line 8138 "configure" #include "confdefs.h" int main() { int x=$cf_func("") ; return 0; } EOF -if { (eval echo configure:7876: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:8145: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* cf_result=yes else @@ -7899,7 +8168,7 @@ fi if test "$cf_cv_termlib" = none; then # allow curses library for broken AIX system. echo $ac_n "checking for initscr in -lcurses""... $ac_c" 1>&6 -echo "configure:7903: checking for initscr in -lcurses" >&5 +echo "configure:8172: checking for initscr in -lcurses" >&5 ac_lib_var=`echo curses'_'initscr | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -7907,7 +8176,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lcurses $LIBS" cat > conftest.$ac_ext <<EOF -#line 7911 "configure" +#line 8180 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -7918,7 +8187,7 @@ int main() { initscr() ; return 0; } EOF -if { (eval echo configure:7922: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:8191: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -7939,7 +8208,7 @@ else fi echo $ac_n "checking for tgoto in -ltermcap""... $ac_c" 1>&6 -echo "configure:7943: checking for tgoto in -ltermcap" >&5 +echo "configure:8212: checking for tgoto in -ltermcap" >&5 ac_lib_var=`echo termcap'_'tgoto | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -7947,7 +8216,7 @@ else ac_save_LIBS="$LIBS" LIBS="-ltermcap $LIBS" cat > conftest.$ac_ext <<EOF -#line 7951 "configure" +#line 8220 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -7958,7 +8227,7 @@ int main() { tgoto() ; return 0; } EOF -if { (eval echo configure:7962: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:8231: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -7990,12 +8259,12 @@ fi cf_slang_LIBS2="$LIBS" echo $ac_n "checking for acos""... $ac_c" 1>&6 -echo "configure:7994: checking for acos" >&5 +echo "configure:8263: checking for acos" >&5 if eval "test \"`echo '$''{'ac_cv_func_acos'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 7999 "configure" +#line 8268 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char acos(); below. */ @@ -8018,7 +8287,7 @@ acos(); ; return 0; } EOF -if { (eval echo configure:8022: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:8291: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_acos=yes" else @@ -8037,7 +8306,7 @@ else echo "$ac_t""no" 1>&6 echo $ac_n "checking for acos in -lm""... $ac_c" 1>&6 -echo "configure:8041: checking for acos in -lm" >&5 +echo "configure:8310: checking for acos in -lm" >&5 ac_lib_var=`echo m'_'acos | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -8045,7 +8314,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lm $LIBS $LIBS" cat > conftest.$ac_ext <<EOF -#line 8049 "configure" +#line 8318 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -8056,7 +8325,7 @@ int main() { acos() ; return 0; } EOF -if { (eval echo configure:8060: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:8329: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -8098,12 +8367,12 @@ os2*) eval 'cf_cv_have_lib_'video'=no' cf_libdir="" echo $ac_n "checking for v_init""... $ac_c" 1>&6 -echo "configure:8102: checking for v_init" >&5 +echo "configure:8371: checking for v_init" >&5 if eval "test \"`echo '$''{'ac_cv_func_v_init'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 8107 "configure" +#line 8376 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char v_init(); below. */ @@ -8126,7 +8395,7 @@ v_init(); ; return 0; } EOF -if { (eval echo configure:8130: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:8399: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_v_init=yes" else @@ -8146,17 +8415,17 @@ else cf_save_LIBS="$LIBS" echo $ac_n "checking for v_init in -lvideo""... $ac_c" 1>&6 -echo "configure:8150: checking for v_init in -lvideo" >&5 +echo "configure:8419: checking for v_init in -lvideo" >&5 LIBS="-lvideo $LIBS" cat > conftest.$ac_ext <<EOF -#line 8153 "configure" +#line 8422 "configure" #include "confdefs.h" #include <sys/video.h> int main() { v_init() ; return 0; } EOF -if { (eval echo configure:8160: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:8429: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* echo "$ac_t""yes" 1>&6 eval 'cf_cv_have_lib_'video'=yes' @@ -8200,17 +8469,17 @@ cf_search="$cf_search $HOME/lib $HOME/lib/video $HOME/video/lib" for cf_libdir in $cf_search do echo $ac_n "checking for -lvideo in $cf_libdir""... $ac_c" 1>&6 -echo "configure:8204: checking for -lvideo in $cf_libdir" >&5 +echo "configure:8473: checking for -lvideo in $cf_libdir" >&5 LIBS="-L$cf_libdir -lvideo $cf_save_LIBS" cat > conftest.$ac_ext <<EOF -#line 8207 "configure" +#line 8476 "configure" #include "confdefs.h" #include <sys/video.h> int main() { v_init() ; return 0; } EOF -if { (eval echo configure:8214: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:8483: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* echo "$ac_t""yes" 1>&6 eval 'cf_cv_have_lib_'video'=yes' @@ -8243,12 +8512,12 @@ esac eval 'cf_cv_have_lib_'slang'=no' cf_libdir="" echo $ac_n "checking for SLtt_get_screen_size""... $ac_c" 1>&6 -echo "configure:8247: checking for SLtt_get_screen_size" >&5 +echo "configure:8516: checking for SLtt_get_screen_size" >&5 if eval "test \"`echo '$''{'ac_cv_func_SLtt_get_screen_size'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 8252 "configure" +#line 8521 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char SLtt_get_screen_size(); below. */ @@ -8271,7 +8540,7 @@ SLtt_get_screen_size(); ; return 0; } EOF -if { (eval echo configure:8275: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:8544: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_SLtt_get_screen_size=yes" else @@ -8291,17 +8560,17 @@ else cf_save_LIBS="$LIBS" echo $ac_n "checking for SLtt_get_screen_size in -lslang""... $ac_c" 1>&6 -echo "configure:8295: checking for SLtt_get_screen_size in -lslang" >&5 +echo "configure:8564: checking for SLtt_get_screen_size in -lslang" >&5 LIBS="-lslang $LIBS" cat > conftest.$ac_ext <<EOF -#line 8298 "configure" +#line 8567 "configure" #include "confdefs.h" #include <slang.h> int main() { SLtt_get_screen_size() ; return 0; } EOF -if { (eval echo configure:8305: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:8574: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* echo "$ac_t""yes" 1>&6 eval 'cf_cv_have_lib_'slang'=yes' @@ -8345,17 +8614,17 @@ cf_search="$cf_search $HOME/lib $HOME/lib/slang $HOME/slang/lib" for cf_libdir in $cf_search do echo $ac_n "checking for -lslang in $cf_libdir""... $ac_c" 1>&6 -echo "configure:8349: checking for -lslang in $cf_libdir" >&5 +echo "configure:8618: checking for -lslang in $cf_libdir" >&5 LIBS="-L$cf_libdir -lslang $cf_save_LIBS" cat > conftest.$ac_ext <<EOF -#line 8352 "configure" +#line 8621 "configure" #include "confdefs.h" #include <slang.h> int main() { SLtt_get_screen_size() ; return 0; } EOF -if { (eval echo configure:8359: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:8628: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* echo "$ac_t""yes" 1>&6 eval 'cf_cv_have_lib_'slang'=yes' @@ -8384,7 +8653,7 @@ fi cf_slang_LIBS3="$LIBS" echo $ac_n "checking if we can link slang without termcap""... $ac_c" 1>&6 -echo "configure:8388: checking if we can link slang without termcap" >&5 +echo "configure:8657: checking if we can link slang without termcap" >&5 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@^.@@'` else @@ -8392,14 +8661,14 @@ else fi LIBS=`echo ".$cf_slang_LIBS3" | sed -e "s@$cf_exclude@@" -e 's@^.@@'` cat > conftest.$ac_ext <<EOF -#line 8396 "configure" +#line 8665 "configure" #include "confdefs.h" #include <slang.h> int main() { SLtt_get_screen_size() ; return 0; } EOF -if { (eval echo configure:8403: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:8672: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* cf_result=yes else @@ -8416,13 +8685,13 @@ test $cf_result = no && LIBS="$cf_slang_LIBS3" echo $ac_n "checking if we must tell slang this is UNIX""... $ac_c" 1>&6 -echo "configure:8420: checking if we must tell slang this is UNIX" >&5 +echo "configure:8689: checking if we must tell slang this is UNIX" >&5 if eval "test \"`echo '$''{'cf_cv_slang_unix'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 8426 "configure" +#line 8695 "configure" #include "confdefs.h" #include <slang.h> int main() { @@ -8436,7 +8705,7 @@ SLang_TT_Baud_Rate = 1 ; return 0; } EOF -if { (eval echo configure:8440: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:8709: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* cf_cv_slang_unix=yes else @@ -8462,7 +8731,7 @@ eval cf_libdir=$libdir cf_libdir=`echo $cf_libdir | sed -e s@'^NONE/'@$prefix/@ -e s@'^NONE/'@$ac_default_prefix/@` echo $ac_n "checking for location of config-file""... $ac_c" 1>&6 -echo "configure:8466: checking for location of config-file" >&5 +echo "configure:8735: checking for location of config-file" >&5 LYNX_CFG_FILE=$cf_libdir/lynx.cfg cat >> confdefs.h <<EOF #define LYNX_CFG_FILE "$LYNX_CFG_FILE" @@ -8474,7 +8743,7 @@ CHARSET_DEFS= echo $ac_n "checking if you want only a few charsets""... $ac_c" 1>&6 -echo "configure:8478: checking if you want only a few charsets" >&5 +echo "configure:8747: checking if you want only a few charsets" >&5 # Check whether --with-charsets or --without-charsets was given. if test "${with_charsets+set}" = set; then @@ -8535,12 +8804,12 @@ fi echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6 -echo "configure:8539: checking for ANSI C header files" >&5 +echo "configure:8808: checking for ANSI C header files" >&5 if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 8544 "configure" +#line 8813 "configure" #include "confdefs.h" #include <stdlib.h> #include <stdarg.h> @@ -8548,7 +8817,7 @@ else #include <float.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:8552: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:8821: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -8565,7 +8834,7 @@ rm -f conftest* if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat > conftest.$ac_ext <<EOF -#line 8569 "configure" +#line 8838 "configure" #include "confdefs.h" #include <string.h> EOF @@ -8583,7 +8852,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 <<EOF -#line 8587 "configure" +#line 8856 "configure" #include "confdefs.h" #include <stdlib.h> EOF @@ -8604,7 +8873,7 @@ if test "$cross_compiling" = yes; then : else cat > conftest.$ac_ext <<EOF -#line 8608 "configure" +#line 8877 "configure" #include "confdefs.h" #include <ctype.h> #define ISLOWER(c) ('a' <= (c) && (c) <= 'z') @@ -8615,7 +8884,7 @@ if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) exit(2); exit (0); } EOF -if { (eval echo configure:8619: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:8888: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then : else @@ -8639,12 +8908,12 @@ EOF fi echo $ac_n "checking whether time.h and sys/time.h may both be included""... $ac_c" 1>&6 -echo "configure:8643: checking whether time.h and sys/time.h may both be included" >&5 +echo "configure:8912: checking whether time.h and sys/time.h may both be included" >&5 if eval "test \"`echo '$''{'ac_cv_header_time'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 8648 "configure" +#line 8917 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/time.h> @@ -8653,7 +8922,7 @@ int main() { struct tm *tp; ; return 0; } EOF -if { (eval echo configure:8657: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:8926: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_header_time=yes else @@ -8678,12 +8947,12 @@ for ac_hdr in dirent.h sys/ndir.h sys/dir.h ndir.h do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr that defines DIR""... $ac_c" 1>&6 -echo "configure:8682: checking for $ac_hdr that defines DIR" >&5 +echo "configure:8951: checking for $ac_hdr that defines DIR" >&5 if eval "test \"`echo '$''{'ac_cv_header_dirent_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 8687 "configure" +#line 8956 "configure" #include "confdefs.h" #include <sys/types.h> #include <$ac_hdr> @@ -8691,7 +8960,7 @@ int main() { DIR *dirp = 0; ; return 0; } EOF -if { (eval echo configure:8695: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:8964: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_header_dirent_$ac_safe=yes" else @@ -8716,7 +8985,7 @@ done # Two versions of opendir et al. are in -ldir and -lx on SCO Xenix. if test $ac_header_dirent = dirent.h; then echo $ac_n "checking for opendir in -ldir""... $ac_c" 1>&6 -echo "configure:8720: checking for opendir in -ldir" >&5 +echo "configure:8989: checking for opendir in -ldir" >&5 ac_lib_var=`echo dir'_'opendir | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -8724,7 +8993,7 @@ else ac_save_LIBS="$LIBS" LIBS="-ldir $LIBS" cat > conftest.$ac_ext <<EOF -#line 8728 "configure" +#line 8997 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -8735,7 +9004,7 @@ int main() { opendir() ; return 0; } EOF -if { (eval echo configure:8739: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:9008: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -8757,7 +9026,7 @@ fi else echo $ac_n "checking for opendir in -lx""... $ac_c" 1>&6 -echo "configure:8761: checking for opendir in -lx" >&5 +echo "configure:9030: checking for opendir in -lx" >&5 ac_lib_var=`echo x'_'opendir | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -8765,7 +9034,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lx $LIBS" cat > conftest.$ac_ext <<EOF -#line 8769 "configure" +#line 9038 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -8776,7 +9045,7 @@ int main() { opendir() ; return 0; } EOF -if { (eval echo configure:8780: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:9049: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -8818,17 +9087,17 @@ for ac_hdr in \ do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:8822: checking for $ac_hdr" >&5 +echo "configure:9091: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 8827 "configure" +#line 9096 "configure" #include "confdefs.h" #include <$ac_hdr> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:8832: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:9101: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -8856,13 +9125,13 @@ done echo $ac_n "checking termio.h and termios.h""... $ac_c" 1>&6 -echo "configure:8860: checking termio.h and termios.h" >&5 +echo "configure:9129: checking termio.h and termios.h" >&5 if eval "test \"`echo '$''{'cf_cv_termio_and_termios'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 8866 "configure" +#line 9135 "configure" #include "confdefs.h" #if HAVE_TERMIO_H @@ -8875,7 +9144,7 @@ int main() { putchar (0x0a) ; return 0; } EOF -if { (eval echo configure:8879: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:9148: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* cf_cv_termio_and_termios=yes else @@ -8895,13 +9164,13 @@ EOF echo $ac_n "checking for sigaction and structs""... $ac_c" 1>&6 -echo "configure:8899: checking for sigaction and structs" >&5 +echo "configure:9168: checking for sigaction and structs" >&5 if eval "test \"`echo '$''{'cf_cv_func_sigaction'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 8905 "configure" +#line 9174 "configure" #include "confdefs.h" #include <sys/types.h> @@ -8916,7 +9185,7 @@ struct sigaction act; ; return 0; } EOF -if { (eval echo configure:8920: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:9189: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* cf_cv_func_sigaction=yes else @@ -8940,17 +9209,17 @@ for ac_hdr in sys/wait.h do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:8944: checking for $ac_hdr" >&5 +echo "configure:9213: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 8949 "configure" +#line 9218 "configure" #include "confdefs.h" #include <$ac_hdr> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:8954: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:9223: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -8987,17 +9256,17 @@ for ac_hdr in wait.h do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:8991: checking for $ac_hdr" >&5 +echo "configure:9260: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 8996 "configure" +#line 9265 "configure" #include "confdefs.h" #include <$ac_hdr> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:9001: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:9270: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -9027,17 +9296,17 @@ for ac_hdr in waitstatus.h do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:9031: checking for $ac_hdr" >&5 +echo "configure:9300: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 9036 "configure" +#line 9305 "configure" #include "confdefs.h" #include <$ac_hdr> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:9041: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:9310: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -9078,13 +9347,13 @@ fi echo $ac_n "checking for union wait""... $ac_c" 1>&6 -echo "configure:9082: checking for union wait" >&5 +echo "configure:9351: checking for union wait" >&5 if eval "test \"`echo '$''{'cf_cv_type_unionwait'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 9088 "configure" +#line 9357 "configure" #include "confdefs.h" $cf_wait_headers int main() { @@ -9095,7 +9364,7 @@ int x; ; return 0; } EOF -if { (eval echo configure:9099: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:9368: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* cf_cv_type_unionwait=no echo compiles ok w/o union wait 1>&5 @@ -9106,7 +9375,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 9110 "configure" +#line 9379 "configure" #include "confdefs.h" $cf_wait_headers int main() { @@ -9121,7 +9390,7 @@ union wait x; ; return 0; } EOF -if { (eval echo configure:9125: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:9394: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* cf_cv_type_unionwait=yes echo compiles ok with union wait and possibly macros too 1>&5 @@ -9148,20 +9417,20 @@ EOF if test $cf_cv_type_unionwait = yes; then echo $ac_n "checking if union wait can be used as wait-arg""... $ac_c" 1>&6 -echo "configure:9152: checking if union wait can be used as wait-arg" >&5 +echo "configure:9421: checking if union wait can be used as wait-arg" >&5 if eval "test \"`echo '$''{'cf_cv_arg_union_wait'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 9158 "configure" +#line 9427 "configure" #include "confdefs.h" $cf_wait_headers int main() { union wait x; wait(&x) ; return 0; } EOF -if { (eval echo configure:9165: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:9434: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* cf_cv_arg_union_wait=yes else @@ -9181,20 +9450,20 @@ EOF echo $ac_n "checking if union wait can be used as waitpid-arg""... $ac_c" 1>&6 -echo "configure:9185: checking if union wait can be used as waitpid-arg" >&5 +echo "configure:9454: checking if union wait can be used as waitpid-arg" >&5 if eval "test \"`echo '$''{'cf_cv_arg_union_waitpid'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 9191 "configure" +#line 9460 "configure" #include "confdefs.h" $cf_wait_headers int main() { union wait x; waitpid(0, &x, 0) ; return 0; } EOF -if { (eval echo configure:9198: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:9467: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* cf_cv_arg_union_waitpid=yes else @@ -9220,17 +9489,17 @@ for ac_hdr in stdarg.h varargs.h do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:9224: checking for $ac_hdr" >&5 +echo "configure:9493: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 9229 "configure" +#line 9498 "configure" #include "confdefs.h" #include <$ac_hdr> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:9234: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:9503: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -9257,13 +9526,13 @@ fi done echo $ac_n "checking for standard varargs""... $ac_c" 1>&6 -echo "configure:9261: checking for standard varargs" >&5 +echo "configure:9530: checking for standard varargs" >&5 if eval "test \"`echo '$''{'cf_cv_ansi_varargs'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 9267 "configure" +#line 9536 "configure" #include "confdefs.h" #if HAVE_STDARG_H @@ -9278,7 +9547,7 @@ int main() { return 0;} int foo(char *fmt,...){va_list args;va_start(args,fmt);va_end(args) ; return 0; } EOF -if { (eval echo configure:9282: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:9551: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* cf_cv_ansi_varargs=yes else @@ -9298,12 +9567,12 @@ EOF echo $ac_n "checking for uid_t in sys/types.h""... $ac_c" 1>&6 -echo "configure:9302: checking for uid_t in sys/types.h" >&5 +echo "configure:9571: checking for uid_t in sys/types.h" >&5 if eval "test \"`echo '$''{'ac_cv_type_uid_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 9307 "configure" +#line 9576 "configure" #include "confdefs.h" #include <sys/types.h> EOF @@ -9332,7 +9601,7 @@ EOF fi echo $ac_n "checking type of array argument to getgroups""... $ac_c" 1>&6 -echo "configure:9336: checking type of array argument to getgroups" >&5 +echo "configure:9605: checking type of array argument to getgroups" >&5 if eval "test \"`echo '$''{'ac_cv_type_getgroups'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -9340,7 +9609,7 @@ else ac_cv_type_getgroups=cross else cat > conftest.$ac_ext <<EOF -#line 9344 "configure" +#line 9613 "configure" #include "confdefs.h" /* Thanks to Mike Rendell for this test. */ @@ -9365,7 +9634,7 @@ main() } EOF -if { (eval echo configure:9369: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:9638: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ac_cv_type_getgroups=gid_t else @@ -9379,7 +9648,7 @@ fi if test $ac_cv_type_getgroups = cross; then cat > conftest.$ac_ext <<EOF -#line 9383 "configure" +#line 9652 "configure" #include "confdefs.h" #include <unistd.h> EOF @@ -9403,12 +9672,12 @@ EOF echo $ac_n "checking for pid_t""... $ac_c" 1>&6 -echo "configure:9407: checking for pid_t" >&5 +echo "configure:9676: checking for pid_t" >&5 if eval "test \"`echo '$''{'ac_cv_type_pid_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 9412 "configure" +#line 9681 "configure" #include "confdefs.h" #include <sys/types.h> #if STDC_HEADERS @@ -9436,12 +9705,12 @@ EOF fi echo $ac_n "checking for uid_t in sys/types.h""... $ac_c" 1>&6 -echo "configure:9440: checking for uid_t in sys/types.h" >&5 +echo "configure:9709: checking for uid_t in sys/types.h" >&5 if eval "test \"`echo '$''{'ac_cv_type_uid_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 9445 "configure" +#line 9714 "configure" #include "confdefs.h" #include <sys/types.h> EOF @@ -9470,12 +9739,12 @@ EOF fi echo $ac_n "checking for mode_t""... $ac_c" 1>&6 -echo "configure:9474: checking for mode_t" >&5 +echo "configure:9743: checking for mode_t" >&5 if eval "test \"`echo '$''{'ac_cv_type_mode_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 9479 "configure" +#line 9748 "configure" #include "confdefs.h" #include <sys/types.h> #if STDC_HEADERS @@ -9506,17 +9775,17 @@ fi ac_safe=`echo "vfork.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for vfork.h""... $ac_c" 1>&6 -echo "configure:9510: checking for vfork.h" >&5 +echo "configure:9779: checking for vfork.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 9515 "configure" +#line 9784 "configure" #include "confdefs.h" #include <vfork.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:9520: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:9789: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -9541,18 +9810,18 @@ else fi echo $ac_n "checking for working vfork""... $ac_c" 1>&6 -echo "configure:9545: checking for working vfork" >&5 +echo "configure:9814: checking for working vfork" >&5 if eval "test \"`echo '$''{'ac_cv_func_vfork_works'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else if test "$cross_compiling" = yes; then echo $ac_n "checking for vfork""... $ac_c" 1>&6 -echo "configure:9551: checking for vfork" >&5 +echo "configure:9820: checking for vfork" >&5 if eval "test \"`echo '$''{'ac_cv_func_vfork'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 9556 "configure" +#line 9825 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char vfork(); below. */ @@ -9575,7 +9844,7 @@ vfork(); ; return 0; } EOF -if { (eval echo configure:9579: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:9848: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_vfork=yes" else @@ -9597,7 +9866,7 @@ fi ac_cv_func_vfork_works=$ac_cv_func_vfork else cat > conftest.$ac_ext <<EOF -#line 9601 "configure" +#line 9870 "configure" #include "confdefs.h" /* Thanks to Paul Eggert for this test. */ #include <stdio.h> @@ -9692,7 +9961,7 @@ main() { } } EOF -if { (eval echo configure:9696: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:9965: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ac_cv_func_vfork_works=yes else @@ -9716,13 +9985,13 @@ fi echo $ac_n "checking if we should use fcntl or ioctl""... $ac_c" 1>&6 -echo "configure:9720: checking if we should use fcntl or ioctl" >&5 +echo "configure:9989: checking if we should use fcntl or ioctl" >&5 if eval "test \"`echo '$''{'cf_cv_fionbio'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 9726 "configure" +#line 9995 "configure" #include "confdefs.h" #include <sys/types.h> @@ -9734,7 +10003,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:9738: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:10007: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* cf_cv_fionbio=ioctl else @@ -9743,7 +10012,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 9747 "configure" +#line 10016 "configure" #include "confdefs.h" #include <sys/types.h> @@ -9760,7 +10029,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:9764: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:10033: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* cf_cv_fionbio=fcntl else @@ -9783,20 +10052,20 @@ EOF echo $ac_n "checking for broken/missing definition of remove""... $ac_c" 1>&6 -echo "configure:9787: checking for broken/missing definition of remove" >&5 +echo "configure:10056: checking for broken/missing definition of remove" >&5 if eval "test \"`echo '$''{'cf_cv_baddef_remove'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 9793 "configure" +#line 10062 "configure" #include "confdefs.h" #include <stdio.h> int main() { remove("dummy") ; return 0; } EOF -if { (eval echo configure:9800: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:10069: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* cf_cv_baddef_remove=no else @@ -9804,7 +10073,7 @@ else cat conftest.$ac_ext >&5 rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 9808 "configure" +#line 10077 "configure" #include "confdefs.h" #include <stdio.h> int __unlink(name) { return unlink(name); } @@ -9812,7 +10081,7 @@ int main() { remove("dummy") ; return 0; } EOF -if { (eval echo configure:9816: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:10085: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* cf_cv_baddef_remove=yes else @@ -9836,13 +10105,13 @@ EOF echo $ac_n "checking for lstat""... $ac_c" 1>&6 -echo "configure:9840: checking for lstat" >&5 +echo "configure:10109: checking for lstat" >&5 if eval "test \"`echo '$''{'ac_cv_func_lstat'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 9846 "configure" +#line 10115 "configure" #include "confdefs.h" #include <sys/types.h> @@ -9851,7 +10120,7 @@ int main() { lstat(".", (struct stat *)0) ; return 0; } EOF -if { (eval echo configure:9855: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:10124: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_func_lstat=yes else @@ -9896,12 +10165,12 @@ for ac_func in \ do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:9900: checking for $ac_func" >&5 +echo "configure:10169: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 9905 "configure" +#line 10174 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func(); below. */ @@ -9924,7 +10193,7 @@ $ac_func(); ; return 0; } EOF -if { (eval echo configure:9928: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:10197: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -9954,12 +10223,12 @@ for ac_func in \ do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:9958: checking for $ac_func" >&5 +echo "configure:10227: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 9963 "configure" +#line 10232 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func(); below. */ @@ -9982,7 +10251,7 @@ $ac_func(); ; return 0; } EOF -if { (eval echo configure:9986: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:10255: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -10013,12 +10282,12 @@ for ac_func in strstr do echo $ac_n "checking for $ac_func declaration""... $ac_c" 1>&6 -echo "configure:10017: checking for $ac_func declaration" >&5 +echo "configure:10286: checking for $ac_func declaration" >&5 if eval "test \"`echo '$''{'ac_cv_func_decl_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 10022 "configure" +#line 10291 "configure" #include "confdefs.h" #include <string.h> int main() { @@ -10027,11 +10296,11 @@ extern int ${ac_func}(); #endif ; return 0; } EOF -if { (eval echo configure:10031: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:10300: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 10035 "configure" +#line 10304 "configure" #include "confdefs.h" #include <string.h> int main() { @@ -10040,7 +10309,7 @@ int (*p)() = ${ac_func}; #endif ; return 0; } EOF -if { (eval echo configure:10044: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:10313: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_func_decl_$ac_func=yes" @@ -10082,12 +10351,12 @@ for ac_func in getgrgid getgrnam do echo $ac_n "checking for $ac_func declaration""... $ac_c" 1>&6 -echo "configure:10086: checking for $ac_func declaration" >&5 +echo "configure:10355: checking for $ac_func declaration" >&5 if eval "test \"`echo '$''{'ac_cv_func_decl_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 10091 "configure" +#line 10360 "configure" #include "confdefs.h" #include <stdio.h> @@ -10098,11 +10367,11 @@ extern int ${ac_func}(); #endif ; return 0; } EOF -if { (eval echo configure:10102: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:10371: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 10106 "configure" +#line 10375 "configure" #include "confdefs.h" #include <stdio.h> @@ -10113,7 +10382,7 @@ int (*p)() = ${ac_func}; #endif ; return 0; } EOF -if { (eval echo configure:10117: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:10386: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_func_decl_$ac_func=yes" @@ -10155,13 +10424,13 @@ done echo $ac_n "checking if TRUE/FALSE are defined""... $ac_c" 1>&6 -echo "configure:10159: checking if TRUE/FALSE are defined" >&5 +echo "configure:10428: checking if TRUE/FALSE are defined" >&5 if eval "test \"`echo '$''{'cf_cv_bool_defs'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 10165 "configure" +#line 10434 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -10170,7 +10439,7 @@ int main() { int x = TRUE, y = FALSE ; return 0; } EOF -if { (eval echo configure:10174: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:10443: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* cf_cv_bool_defs=yes else @@ -10197,13 +10466,13 @@ fi echo $ac_n "checking if external errno is declared""... $ac_c" 1>&6 -echo "configure:10201: checking if external errno is declared" >&5 +echo "configure:10470: checking if external errno is declared" >&5 if eval "test \"`echo '$''{'cf_cv_dcl_errno'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 10207 "configure" +#line 10476 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -10216,7 +10485,7 @@ int main() { long x = (long) errno ; return 0; } EOF -if { (eval echo configure:10220: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:10489: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval 'cf_cv_dcl_'errno'=yes' else @@ -10247,13 +10516,13 @@ fi # It's possible (for near-UNIX clones) that the data doesn't exist echo $ac_n "checking if external errno exists""... $ac_c" 1>&6 -echo "configure:10251: checking if external errno exists" >&5 +echo "configure:10520: checking if external errno exists" >&5 if eval "test \"`echo '$''{'cf_cv_have_errno'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 10257 "configure" +#line 10526 "configure" #include "confdefs.h" #undef errno @@ -10263,7 +10532,7 @@ int main() { errno = 2 ; return 0; } EOF -if { (eval echo configure:10267: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:10536: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval 'cf_cv_have_'errno'=yes' else @@ -10295,21 +10564,21 @@ fi echo $ac_n "checking if we can set errno""... $ac_c" 1>&6 -echo "configure:10299: checking if we can set errno" >&5 +echo "configure:10568: checking if we can set errno" >&5 if eval "test \"`echo '$''{'cf_cv_set_errno'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else if test "$cross_compiling" = yes; then cat > conftest.$ac_ext <<EOF -#line 10306 "configure" +#line 10575 "configure" #include "confdefs.h" #include <errno.h> int main() { errno = 255 ; return 0; } EOF -if { (eval echo configure:10313: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:10582: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* cf_cv_set_errno=maybe else @@ -10321,7 +10590,7 @@ fi rm -f conftest* else cat > conftest.$ac_ext <<EOF -#line 10325 "configure" +#line 10594 "configure" #include "confdefs.h" #include <errno.h> @@ -10331,7 +10600,7 @@ int main() exit(errno != 255); } EOF -if { (eval echo configure:10335: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:10604: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then cf_cv_set_errno=yes else @@ -10354,20 +10623,20 @@ EOF echo $ac_n "checking for setlocale()""... $ac_c" 1>&6 -echo "configure:10358: checking for setlocale()" >&5 +echo "configure:10627: checking for setlocale()" >&5 if eval "test \"`echo '$''{'cf_cv_locale'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 10364 "configure" +#line 10633 "configure" #include "confdefs.h" #include <locale.h> int main() { setlocale(LC_ALL, "") ; return 0; } EOF -if { (eval echo configure:10371: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:10640: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* cf_cv_locale=yes else @@ -10388,13 +10657,13 @@ EOF echo $ac_n "checking if NGROUPS is defined""... $ac_c" 1>&6 -echo "configure:10392: checking if NGROUPS is defined" >&5 +echo "configure:10661: checking if NGROUPS is defined" >&5 if eval "test \"`echo '$''{'cf_cv_ngroups'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 10398 "configure" +#line 10667 "configure" #include "confdefs.h" #if HAVE_SYS_PARAM_H @@ -10408,7 +10677,7 @@ int main() { int x = NGROUPS ; return 0; } EOF -if { (eval echo configure:10412: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:10681: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* cf_cv_ngroups=yes else @@ -10416,7 +10685,7 @@ else cat conftest.$ac_ext >&5 rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 10420 "configure" +#line 10689 "configure" #include "confdefs.h" #if HAVE_SYS_PARAM_H @@ -10430,7 +10699,7 @@ int main() { int x = NGROUPS_MAX ; return 0; } EOF -if { (eval echo configure:10434: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:10703: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* cf_cv_ngroups=NGROUPS_MAX else @@ -10464,13 +10733,13 @@ for cf_name in sys_nerr sys_errlist do echo $ac_n "checking if external $cf_name is declared""... $ac_c" 1>&6 -echo "configure:10468: checking if external $cf_name is declared" >&5 +echo "configure:10737: checking if external $cf_name is declared" >&5 if eval "test \"`echo '$''{'cf_cv_dcl_$cf_name'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 10474 "configure" +#line 10743 "configure" #include "confdefs.h" #ifdef HAVE_STDLIB_H @@ -10483,7 +10752,7 @@ int main() { long x = (long) $cf_name ; return 0; } EOF -if { (eval echo configure:10487: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:10756: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval 'cf_cv_dcl_'$cf_name'=yes' else @@ -10514,13 +10783,13 @@ fi # It's possible (for near-UNIX clones) that the data doesn't exist echo $ac_n "checking if external $cf_name exists""... $ac_c" 1>&6 -echo "configure:10518: checking if external $cf_name exists" >&5 +echo "configure:10787: checking if external $cf_name exists" >&5 if eval "test \"`echo '$''{'cf_cv_have_$cf_name'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 10524 "configure" +#line 10793 "configure" #include "confdefs.h" #undef $cf_name @@ -10530,7 +10799,7 @@ int main() { $cf_name = 2 ; return 0; } EOF -if { (eval echo configure:10534: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:10803: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval 'cf_cv_have_'$cf_name'=yes' else @@ -10566,17 +10835,17 @@ for ac_hdr in lastlog.h paths.h do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:10570: checking for $ac_hdr" >&5 +echo "configure:10839: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 10575 "configure" +#line 10844 "configure" #include "confdefs.h" #include <$ac_hdr> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:10580: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:10849: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -10603,13 +10872,13 @@ fi done echo $ac_n "checking for lastlog path""... $ac_c" 1>&6 -echo "configure:10607: checking for lastlog path" >&5 +echo "configure:10876: checking for lastlog path" >&5 if eval "test \"`echo '$''{'cf_cv_path_lastlog'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 10613 "configure" +#line 10882 "configure" #include "confdefs.h" #include <sys/types.h> @@ -10624,7 +10893,7 @@ int main() { char *path = _PATH_LASTLOG ; return 0; } EOF -if { (eval echo configure:10628: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:10897: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* cf_cv_path_lastlog="_PATH_LASTLOG" else @@ -10651,7 +10920,7 @@ EOF echo $ac_n "checking for utmp implementation""... $ac_c" 1>&6 -echo "configure:10655: checking for utmp implementation" >&5 +echo "configure:10924: checking for utmp implementation" >&5 if eval "test \"`echo '$''{'cf_cv_have_utmp'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -10659,7 +10928,7 @@ else cf_cv_have_utmp=no for cf_header in utmpx utmp ; do cat > conftest.$ac_ext <<EOF -#line 10663 "configure" +#line 10932 "configure" #include "confdefs.h" #include <sys/types.h> @@ -10675,7 +10944,7 @@ struct $cf_header x; ; return 0; } EOF -if { (eval echo configure:10679: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:10948: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* cf_cv_have_utmp=$cf_header break @@ -10685,7 +10954,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 10689 "configure" +#line 10958 "configure" #include "confdefs.h" #include <sys/types.h> @@ -10701,7 +10970,7 @@ struct $cf_header x; ; return 0; } EOF -if { (eval echo configure:10705: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:10974: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* cf_cv_have_utmp=$cf_header cat >> confdefs.h <<\EOF @@ -10736,13 +11005,13 @@ EOF if test $cf_cv_have_utmp != no ; then echo $ac_n "checking if utmp.ut_host is declared""... $ac_c" 1>&6 -echo "configure:10740: checking if utmp.ut_host is declared" >&5 +echo "configure:11009: checking if utmp.ut_host is declared" >&5 if eval "test \"`echo '$''{'cf_cv_have_utmp_ut_host'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 10746 "configure" +#line 11015 "configure" #include "confdefs.h" #include <sys/types.h> @@ -10751,7 +11020,7 @@ int main() { struct $cf_cv_have_utmp x; char *y = &x.ut_host[0] ; return 0; } EOF -if { (eval echo configure:10755: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:11024: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* cf_cv_have_utmp_ut_host=yes else @@ -10775,7 +11044,7 @@ fi if test $cf_cv_have_utmp != no ; then echo $ac_n "checking for exit-status in $cf_cv_have_utmp""... $ac_c" 1>&6 -echo "configure:10779: checking for exit-status in $cf_cv_have_utmp" >&5 +echo "configure:11048: checking for exit-status in $cf_cv_have_utmp" >&5 if eval "test \"`echo '$''{'cf_cv_have_utmp_ut_xstatus'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -10787,7 +11056,7 @@ for cf_result in \ ut_exit.ut_exit do cat > conftest.$ac_ext <<EOF -#line 10791 "configure" +#line 11060 "configure" #include "confdefs.h" #include <sys/types.h> @@ -10796,7 +11065,7 @@ int main() { struct $cf_cv_have_utmp x; long y = x.$cf_result = 0 ; return 0; } EOF -if { (eval echo configure:10800: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:11069: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* cf_cv_have_utmp_ut_xstatus=$cf_result break @@ -10828,13 +11097,13 @@ fi if test $cf_cv_have_utmp != no ; then echo $ac_n "checking if utmp.ut_xtime is declared""... $ac_c" 1>&6 -echo "configure:10832: checking if utmp.ut_xtime is declared" >&5 +echo "configure:11101: checking if utmp.ut_xtime is declared" >&5 if eval "test \"`echo '$''{'cf_cv_have_utmp_ut_xtime'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 10838 "configure" +#line 11107 "configure" #include "confdefs.h" #include <sys/types.h> @@ -10843,7 +11112,7 @@ int main() { struct $cf_cv_have_utmp x; long y = x.ut_xtime = 0 ; return 0; } EOF -if { (eval echo configure:10847: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:11116: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* cf_cv_have_utmp_ut_xtime=yes else @@ -10851,7 +11120,7 @@ else cat conftest.$ac_ext >&5 rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 10855 "configure" +#line 11124 "configure" #include "confdefs.h" #include <sys/types.h> @@ -10860,7 +11129,7 @@ int main() { struct $cf_cv_have_utmp x; long y = x.ut_tv.tv_sec ; return 0; } EOF -if { (eval echo configure:10864: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:11133: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* cf_cv_have_utmp_ut_xtime=define else @@ -10895,13 +11164,13 @@ fi if test $cf_cv_have_utmp != no ; then echo $ac_n "checking if utmp.ut_session is declared""... $ac_c" 1>&6 -echo "configure:10899: checking if utmp.ut_session is declared" >&5 +echo "configure:11168: checking if utmp.ut_session is declared" >&5 if eval "test \"`echo '$''{'cf_cv_have_utmp_ut_session'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 10905 "configure" +#line 11174 "configure" #include "confdefs.h" #include <sys/types.h> @@ -10910,7 +11179,7 @@ int main() { struct $cf_cv_have_utmp x; long y = x.ut_session ; return 0; } EOF -if { (eval echo configure:10914: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:11183: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* cf_cv_have_utmp_ut_session=yes else @@ -10935,14 +11204,14 @@ fi echo $ac_n "checking if $cf_cv_have_utmp is SYSV flavor""... $ac_c" 1>&6 -echo "configure:10939: checking if $cf_cv_have_utmp is SYSV flavor" >&5 +echo "configure:11208: checking if $cf_cv_have_utmp is SYSV flavor" >&5 if eval "test \"`echo '$''{'cf_cv_sysv_utmp'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else test "$cf_cv_have_utmp" = "utmp" && cf_prefix="ut" || cf_prefix="utx" cat > conftest.$ac_ext <<EOF -#line 10946 "configure" +#line 11215 "configure" #include "confdefs.h" #include <sys/types.h> @@ -10956,7 +11225,7 @@ struct $cf_cv_have_utmp x; end${cf_prefix}ent(); ; return 0; } EOF -if { (eval echo configure:10960: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:11229: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* cf_cv_sysv_utmp=yes else @@ -10979,13 +11248,13 @@ fi echo $ac_n "checking if external h_errno exists""... $ac_c" 1>&6 -echo "configure:10983: checking if external h_errno exists" >&5 +echo "configure:11252: checking if external h_errno exists" >&5 if eval "test \"`echo '$''{'cf_cv_have_h_errno'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 10989 "configure" +#line 11258 "configure" #include "confdefs.h" #undef h_errno @@ -10995,7 +11264,7 @@ int main() { h_errno = 2 ; return 0; } EOF -if { (eval echo configure:10999: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:11268: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval 'cf_cv_have_'h_errno'=yes' else @@ -11024,61 +11293,11 @@ fi -echo $ac_n "checking if character set is EBCDIC""... $ac_c" 1>&6 -echo "configure:11029: checking if character set is EBCDIC" >&5 -if eval "test \"`echo '$''{'cf_cv_ebcdic'+set}'`\" = set"; then - echo $ac_n "(cached) $ac_c" 1>&6 -else - - cat > conftest.$ac_ext <<EOF -#line 11035 "configure" -#include "confdefs.h" - -int main() { - /* TryCompile function for CharSet. - Treat any failure as ASCII for compatibility with existing art. - Use compile-time rather than run-time tests for cross-compiler - tolerance. */ -#if '0'!=240 -make an error "Character set is not EBCDIC" -#endif -; return 0; } -EOF -if { (eval echo configure:11048: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then - rm -rf conftest* - # TryCompile action if true -cf_cv_ebcdic=yes -else - echo "configure: failed program was:" >&5 - cat conftest.$ac_ext >&5 - rm -rf conftest* - # TryCompile action if false -cf_cv_ebcdic=no -fi -rm -f conftest* -# end of TryCompile -fi - -# end of CacheVal CvEbcdic -echo "$ac_t""$cf_cv_ebcdic" 1>&6 -case "$cf_cv_ebcdic" in #(vi - yes) cat >> confdefs.h <<\EOF -#define EBCDIC 1 -EOF - - cat >> confdefs.h <<\EOF -#define NOT_ASCII 1 -EOF -;; #(vi - *) ;; -esac - - ### These tests must be run after establishing the curses library. if test $cf_cv_screen != slang ; then echo $ac_n "checking if curses supports alternate-character set""... $ac_c" 1>&6 -echo "configure:11082: checking if curses supports alternate-character set" >&5 +echo "configure:11301: checking if curses supports alternate-character set" >&5 if eval "test \"`echo '$''{'cf_cv_alt_char_set'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -11086,7 +11305,7 @@ else for mapname in acs_map _acs_map do cat > conftest.$ac_ext <<EOF -#line 11090 "configure" +#line 11309 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -11095,7 +11314,7 @@ int main() { chtype x = $mapname['l']; $mapname['m'] = 0 ; return 0; } EOF -if { (eval echo configure:11099: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:11318: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* cf_cv_alt_char_set=$mapname break @@ -11118,13 +11337,13 @@ EOF echo $ac_n "checking if curses supports fancy attributes""... $ac_c" 1>&6 -echo "configure:11122: checking if curses supports fancy attributes" >&5 +echo "configure:11341: checking if curses supports fancy attributes" >&5 if eval "test \"`echo '$''{'cf_cv_fancy_curses'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 11128 "configure" +#line 11347 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -11137,7 +11356,7 @@ attrset(A_UNDERLINE|A_BOLD|A_REVERSE); ; return 0; } EOF -if { (eval echo configure:11141: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:11360: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* cf_cv_fancy_curses=yes else @@ -11160,13 +11379,13 @@ EOF if test "$cf_cv_ncurses_version" != no ; then echo $ac_n "checking for obsolete/broken version of ncurses""... $ac_c" 1>&6 -echo "configure:11164: checking for obsolete/broken version of ncurses" >&5 +echo "configure:11383: checking for obsolete/broken version of ncurses" >&5 if eval "test \"`echo '$''{'cf_cv_ncurses_broken'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 11170 "configure" +#line 11389 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -11180,7 +11399,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:11184: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:11403: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* cf_cv_ncurses_broken=no else @@ -11205,13 +11424,13 @@ fi echo $ac_n "checking if curses supports color attributes""... $ac_c" 1>&6 -echo "configure:11209: checking if curses supports color attributes" >&5 +echo "configure:11428: checking if curses supports color attributes" >&5 if eval "test \"`echo '$''{'cf_cv_color_curses'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 11215 "configure" +#line 11434 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> @@ -11226,7 +11445,7 @@ chtype x = COLOR_BLUE; ; return 0; } EOF -if { (eval echo configure:11230: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:11449: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* cf_cv_color_curses=yes else @@ -11260,17 +11479,17 @@ unistd.h \ do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:11264: checking for $ac_hdr" >&5 +echo "configure:11483: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 11269 "configure" +#line 11488 "configure" #include "confdefs.h" #include <$ac_hdr> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11274: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11493: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -11301,17 +11520,17 @@ if test "$ISC" = yes ; then do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:11305: checking for $ac_hdr" >&5 +echo "configure:11524: checking for $ac_hdr" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 11310 "configure" +#line 11529 "configure" #include "confdefs.h" #include <$ac_hdr> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11315: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11534: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -11339,23 +11558,23 @@ done fi if test "$ac_cv_header_termios_h" = yes ; then - case "$CFLAGS" in + case "$CFLAGS $CPPFLAGS" in *-D_POSIX_SOURCE*) termios_bad=dunno ;; *) termios_bad=maybe ;; esac if test "$termios_bad" = maybe ; then echo $ac_n "checking whether termios.h needs _POSIX_SOURCE""... $ac_c" 1>&6 -echo "configure:11350: checking whether termios.h needs _POSIX_SOURCE" >&5 +echo "configure:11569: checking whether termios.h needs _POSIX_SOURCE" >&5 cat > conftest.$ac_ext <<EOF -#line 11352 "configure" +#line 11571 "configure" #include "confdefs.h" #include <termios.h> int main() { struct termios foo; int x = foo.c_iflag ; return 0; } EOF -if { (eval echo configure:11359: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:11578: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* termios_bad=no else @@ -11364,7 +11583,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 11368 "configure" +#line 11587 "configure" #include "confdefs.h" #define _POSIX_SOURCE @@ -11373,7 +11592,7 @@ int main() { struct termios foo; int x = foo.c_iflag ; return 0; } EOF -if { (eval echo configure:11377: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:11596: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* termios_bad=unknown else @@ -11396,21 +11615,21 @@ fi echo $ac_n "checking declaration of size-change""... $ac_c" 1>&6 -echo "configure:11400: checking declaration of size-change" >&5 +echo "configure:11619: checking declaration of size-change" >&5 if eval "test \"`echo '$''{'cf_cv_sizechange'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cf_cv_sizechange=unknown - cf_save_CFLAGS="$CFLAGS" + cf_save_CPPFLAGS="$CPPFLAGS" for cf_opts in "" "NEED_PTEM_H" do - CFLAGS="$cf_save_CFLAGS" - test -n "$cf_opts" && CFLAGS="$CFLAGS -D$cf_opts" + CPPFLAGS="$cf_save_CPPFLAGS" + test -n "$cf_opts" && CPPFLAGS="$CPPFLAGS -D$cf_opts" cat > conftest.$ac_ext <<EOF -#line 11414 "configure" +#line 11633 "configure" #include "confdefs.h" #include <sys/types.h> #ifdef HAVE_TERMIOS_H @@ -11449,7 +11668,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:11453: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:11672: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* cf_cv_sizechange=yes else @@ -11460,7 +11679,7 @@ else fi rm -f conftest* - CFLAGS="$cf_save_CFLAGS" + CPPFLAGS="$cf_save_CPPFLAGS" if test "$cf_cv_sizechange" = yes ; then echo "size-change succeeded ($cf_opts)" >&5 test -n "$cf_opts" && cf_cv_sizechange="$cf_opts" @@ -11488,20 +11707,20 @@ fi echo $ac_n "checking if ttytype is declared in curses library""... $ac_c" 1>&6 -echo "configure:11492: checking if ttytype is declared in curses library" >&5 +echo "configure:11711: checking if ttytype is declared in curses library" >&5 if eval "test \"`echo '$''{'cf_cv_have_ttytype'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 11498 "configure" +#line 11717 "configure" #include "confdefs.h" #include <${cf_cv_ncurses_header-curses.h}> int main() { char *x = &ttytype[1]; *x = 1 ; return 0; } EOF -if { (eval echo configure:11505: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:11724: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* cf_cv_have_ttytype=yes else @@ -11522,13 +11741,13 @@ EOF echo $ac_n "checking if we must define _XOPEN_SOURCE_EXTENDED""... $ac_c" 1>&6 -echo "configure:11526: checking if we must define _XOPEN_SOURCE_EXTENDED" >&5 +echo "configure:11745: checking if we must define _XOPEN_SOURCE_EXTENDED" >&5 if eval "test \"`echo '$''{'cf_cv_need_xopen_extension'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 11532 "configure" +#line 11751 "configure" #include "confdefs.h" #include <stdlib.h> @@ -11538,7 +11757,7 @@ int main() { long x = winnstr(stdscr, "", 0) ; return 0; } EOF -if { (eval echo configure:11542: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:11761: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* cf_cv_need_xopen_extension=no else @@ -11546,7 +11765,7 @@ else cat conftest.$ac_ext >&5 rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 11550 "configure" +#line 11769 "configure" #include "confdefs.h" #define _XOPEN_SOURCE_EXTENDED @@ -11557,7 +11776,7 @@ int main() { long x = winnstr(stdscr, "", 0) ; return 0; } EOF -if { (eval echo configure:11561: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:11780: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* cf_cv_need_xopen_extension=yes else @@ -11572,7 +11791,7 @@ rm -f conftest* fi echo "$ac_t""$cf_cv_need_xopen_extension" 1>&6 -test $cf_cv_need_xopen_extension = yes && CFLAGS="$CFLAGS -D_XOPEN_SOURCE_EXTENDED" +test $cf_cv_need_xopen_extension = yes && CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE_EXTENDED" @@ -11580,6 +11799,7 @@ for cf_func in \ assume_default_colors \ cbreak \ define_key \ + delscreen \ getattrs \ getbegx \ getbegy \ @@ -11596,9 +11816,9 @@ do cf_tr_func=`echo "$cf_func" | sed y%abcdefghijklmnopqrstuvwxyz./-%ABCDEFGHIJKLMNOPQRSTUVWXYZ___%` echo $ac_n "checking for ${cf_func}""... $ac_c" 1>&6 -echo "configure:11600: checking for ${cf_func}" >&5 +echo "configure:11820: checking for ${cf_func}" >&5 -echo "(line 11602) testing ${cf_func} ..." 1>&5 +echo "(line 11822) testing ${cf_func} ..." 1>&5 if eval "test \"`echo '$''{'cf_cv_func_$cf_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -11607,7 +11827,7 @@ else eval cf_result='$ac_cv_func_'$cf_func if test ".$cf_result" != ".no"; then cat > conftest.$ac_ext <<EOF -#line 11611 "configure" +#line 11831 "configure" #include "confdefs.h" #ifdef HAVE_XCURSES @@ -11627,7 +11847,7 @@ long foo = (long)(&${cf_func}); ; return 0; } EOF -if { (eval echo configure:11631: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:11851: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* cf_result=yes else @@ -11659,7 +11879,7 @@ fi echo $ac_n "checking if configuration info should be browsable""... $ac_c" 1>&6 -echo "configure:11663: checking if configuration info should be browsable" >&5 +echo "configure:11883: checking if configuration info should be browsable" >&5 # Check whether --enable-config-info or --disable-config-info was given. if test "${enable_config_info+set}" = set; then @@ -11683,7 +11903,7 @@ EOF echo $ac_n "checking if new-style forms-based options screen should be used""... $ac_c" 1>&6 -echo "configure:11687: checking if new-style forms-based options screen should be used" >&5 +echo "configure:11907: checking if new-style forms-based options screen should be used" >&5 # Check whether --enable-forms-options or --disable-forms-options was given. if test "${enable_forms_options+set}" = set; then @@ -11707,7 +11927,7 @@ EOF echo $ac_n "checking if old-style options menu should be used""... $ac_c" 1>&6 -echo "configure:11711: checking if old-style options menu should be used" >&5 +echo "configure:11931: checking if old-style options menu should be used" >&5 # Check whether --enable-menu-options or --disable-menu-options was given. if test "${enable_menu_options+set}" = set; then @@ -11731,7 +11951,7 @@ EOF echo $ac_n "checking if experimental address-list page should be used""... $ac_c" 1>&6 -echo "configure:11735: checking if experimental address-list page should be used" >&5 +echo "configure:11955: checking if experimental address-list page should be used" >&5 # Check whether --enable-addrlist-page or --disable-addrlist-page was given. if test "${enable_addrlist_page+set}" = set; then @@ -11755,7 +11975,7 @@ EOF echo $ac_n "checking if experimental charset-selection logic should be used""... $ac_c" 1>&6 -echo "configure:11759: checking if experimental charset-selection logic should be used" >&5 +echo "configure:11979: checking if experimental charset-selection logic should be used" >&5 # Check whether --enable-charset-choice or --disable-charset-choice was given. if test "${enable_charset_choice+set}" = set; then @@ -11779,7 +11999,7 @@ EOF echo $ac_n "checking if experimental CJK logic should be used""... $ac_c" 1>&6 -echo "configure:11783: checking if experimental CJK logic should be used" >&5 +echo "configure:12003: checking if experimental CJK logic should be used" >&5 # Check whether --enable-cjk or --disable-cjk was given. if test "${enable_cjk+set}" = set; then @@ -11803,7 +12023,7 @@ EOF echo $ac_n "checking if color-style code should be used""... $ac_c" 1>&6 -echo "configure:11807: checking if color-style code should be used" >&5 +echo "configure:12027: checking if color-style code should be used" >&5 # Check whether --enable-color-style or --disable-color-style was given. if test "${enable_color_style+set}" = set; then @@ -11851,7 +12071,7 @@ EOF echo "$ac_t""yes" 1>&6 echo $ac_n "checking for location of style-sheet file""... $ac_c" 1>&6 -echo "configure:11855: checking for location of style-sheet file" >&5 +echo "configure:12075: checking for location of style-sheet file" >&5 LYNX_LSS_FILE=$cf_libdir/lynx.lss cat >> confdefs.h <<EOF #define LYNX_LSS_FILE "$LYNX_LSS_FILE" @@ -11869,7 +12089,7 @@ test ".$cf_cv_func_use_default_colors" = ".yes" && use_dft_colors=maybe if test "$use_dft_colors" != no ; then echo $ac_n "checking if you want to use default-colors""... $ac_c" 1>&6 -echo "configure:11873: checking if you want to use default-colors" >&5 +echo "configure:12093: checking if you want to use default-colors" >&5 # Check whether --enable-default-colors or --disable-default-colors was given. if test "${enable_default_colors+set}" = set; then @@ -11894,7 +12114,7 @@ EOF fi echo $ac_n "checking if experimental file-upload logic should be used""... $ac_c" 1>&6 -echo "configure:11898: checking if experimental file-upload logic should be used" >&5 +echo "configure:12118: checking if experimental file-upload logic should be used" >&5 # Check whether --enable-file-upload or --disable-file-upload was given. if test "${enable_file_upload+set}" = set; then @@ -11918,7 +12138,7 @@ EOF echo $ac_n "checking if experimental htmlized lynx.cfg should be built""... $ac_c" 1>&6 -echo "configure:11922: checking if experimental htmlized lynx.cfg should be built" >&5 +echo "configure:12142: checking if experimental htmlized lynx.cfg should be built" >&5 # Check whether --enable-htmlized-cfg or --disable-htmlized-cfg was given. if test "${enable_htmlized_cfg+set}" = set; then @@ -11948,7 +12168,7 @@ fi ### check for ipv6 support echo $ac_n "checking whether to enable ipv6""... $ac_c" 1>&6 -echo "configure:11952: checking whether to enable ipv6" >&5 +echo "configure:12172: checking whether to enable ipv6" >&5 # Check whether --enable-ipv6 or --disable-ipv6 was given. if test "${enable_ipv6+set}" = set; then @@ -11969,7 +12189,7 @@ if test "$enableval" = "yes"; then echo $ac_n "checking ipv6 stack type""... $ac_c" 1>&6 -echo "configure:11973: checking ipv6 stack type" >&5 +echo "configure:12193: checking ipv6 stack type" >&5 if eval "test \"`echo '$''{'cf_cv_ipv6type'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -11989,7 +12209,7 @@ do ;; inria) #(vi cat > conftest.$ac_ext <<EOF -#line 11993 "configure" +#line 12213 "configure" #include "confdefs.h" dnl #include <netinet/in.h> @@ -12007,7 +12227,7 @@ rm -f conftest* ;; kame) #(vi cat > conftest.$ac_ext <<EOF -#line 12011 "configure" +#line 12231 "configure" #include "confdefs.h" dnl #include <netinet/in.h> @@ -12025,7 +12245,7 @@ rm -f conftest* ;; linux-glibc) #(vi cat > conftest.$ac_ext <<EOF -#line 12029 "configure" +#line 12249 "configure" #include "confdefs.h" dnl #include <features.h> @@ -12052,7 +12272,7 @@ rm -f conftest* ;; toshiba) #(vi cat > conftest.$ac_ext <<EOF -#line 12056 "configure" +#line 12276 "configure" #include "confdefs.h" dnl #include <sys/param.h> @@ -12070,7 +12290,7 @@ rm -f conftest* ;; v6d) #(vi cat > conftest.$ac_ext <<EOF -#line 12074 "configure" +#line 12294 "configure" #include "confdefs.h" dnl #include </usr/local/v6/include/sys/v6config.h> @@ -12088,7 +12308,7 @@ rm -f conftest* ;; zeta) cat > conftest.$ac_ext <<EOF -#line 12092 "configure" +#line 12312 "configure" #include "confdefs.h" dnl #include <sys/param.h> @@ -12121,7 +12341,7 @@ cf_ipv6lib=none cf_ipv6dir=none echo $ac_n "checking for ipv6 library if required""... $ac_c" 1>&6 -echo "configure:12125: checking for ipv6 library if required" >&5 +echo "configure:12345: checking for ipv6 library if required" >&5 case $cf_cv_ipv6type in #(vi solaris) #(vi ;; @@ -12155,7 +12375,7 @@ echo "$ac_t""$cf_ipv6lib" 1>&6 if test "$cf_ipv6lib" != "none"; then cat > conftest.$ac_ext <<EOF -#line 12159 "configure" +#line 12379 "configure" #include "confdefs.h" #include <sys/types.h> @@ -12166,7 +12386,7 @@ int main() { getaddrinfo(0, 0, 0, 0) ; return 0; } EOF -if { (eval echo configure:12170: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:12390: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then : else echo "configure: failed program was:" >&5 @@ -12205,7 +12425,7 @@ cf_search="$cf_search $HOME/lib $HOME/lib/$cf_ipv6dir $HOME/$cf_ipv6dir/lib" cf_header=$cf_incdir/netinet/ip6.h if test -f $cf_header then - CFLAGS="$CFLAGS -I$cf_incdir" + CPPFLAGS="$CPPFLAGS -I$cf_incdir" test -n "$verbose" && echo " ... found $cf_header" 1>&6 break fi @@ -12219,12 +12439,12 @@ rm -f conftest* eval 'cf_cv_have_lib_'$cf_ipv6lib'=no' cf_libdir="" echo $ac_n "checking for getaddrinfo""... $ac_c" 1>&6 -echo "configure:12223: checking for getaddrinfo" >&5 +echo "configure:12443: checking for getaddrinfo" >&5 if eval "test \"`echo '$''{'ac_cv_func_getaddrinfo'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 12228 "configure" +#line 12448 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getaddrinfo(); below. */ @@ -12247,7 +12467,7 @@ getaddrinfo(); ; return 0; } EOF -if { (eval echo configure:12251: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:12471: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_getaddrinfo=yes" else @@ -12267,10 +12487,10 @@ else cf_save_LIBS="$LIBS" echo $ac_n "checking for getaddrinfo in -l$cf_ipv6lib""... $ac_c" 1>&6 -echo "configure:12271: checking for getaddrinfo in -l$cf_ipv6lib" >&5 +echo "configure:12491: checking for getaddrinfo in -l$cf_ipv6lib" >&5 LIBS="-l$cf_ipv6lib $LIBS" cat > conftest.$ac_ext <<EOF -#line 12274 "configure" +#line 12494 "configure" #include "confdefs.h" #include <sys/types.h> @@ -12281,7 +12501,7 @@ int main() { getaddrinfo(0, 0, 0, 0) ; return 0; } EOF -if { (eval echo configure:12285: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:12505: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* echo "$ac_t""yes" 1>&6 eval 'cf_cv_have_lib_'$cf_ipv6lib'=yes' @@ -12325,10 +12545,10 @@ cf_search="$cf_search $HOME/lib $HOME/lib/$cf_ipv6dir $HOME/$cf_ipv6dir/lib" for cf_libdir in $cf_search do echo $ac_n "checking for -l$cf_ipv6lib in $cf_libdir""... $ac_c" 1>&6 -echo "configure:12329: checking for -l$cf_ipv6lib in $cf_libdir" >&5 +echo "configure:12549: checking for -l$cf_ipv6lib in $cf_libdir" >&5 LIBS="-L$cf_libdir -l$cf_ipv6lib $cf_save_LIBS" cat > conftest.$ac_ext <<EOF -#line 12332 "configure" +#line 12552 "configure" #include "confdefs.h" #include <sys/types.h> @@ -12339,7 +12559,7 @@ int main() { getaddrinfo(0, 0, 0, 0) ; return 0; } EOF -if { (eval echo configure:12343: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:12563: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* echo "$ac_t""yes" 1>&6 eval 'cf_cv_have_lib_'$cf_ipv6lib'=yes' @@ -12372,7 +12592,7 @@ fi echo $ac_n "checking working getaddrinfo""... $ac_c" 1>&6 -echo "configure:12376: checking working getaddrinfo" >&5 +echo "configure:12596: checking working getaddrinfo" >&5 if eval "test \"`echo '$''{'cf_cv_getaddrinfo'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -12381,7 +12601,7 @@ if test "$cross_compiling" = yes; then cf_cv_getaddrinfo=unknown else cat > conftest.$ac_ext <<EOF -#line 12385 "configure" +#line 12605 "configure" #include "confdefs.h" #include <sys/types.h> @@ -12460,7 +12680,7 @@ int main() } EOF -if { (eval echo configure:12464: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:12684: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then cf_cv_getaddrinfo=yes else @@ -12503,7 +12723,7 @@ fi fi echo $ac_n "checking if experimental element-justification logic should be used""... $ac_c" 1>&6 -echo "configure:12507: checking if experimental element-justification logic should be used" >&5 +echo "configure:12727: checking if experimental element-justification logic should be used" >&5 # Check whether --enable-justify-elts or --disable-justify-elts was given. if test "${enable_justify_elts+set}" = set; then @@ -12527,7 +12747,7 @@ EOF echo $ac_n "checking if experimental keyboard-layout logic should be used""... $ac_c" 1>&6 -echo "configure:12531: checking if experimental keyboard-layout logic should be used" >&5 +echo "configure:12751: checking if experimental keyboard-layout logic should be used" >&5 # Check whether --enable-kbd-layout or --disable-kbd-layout was given. if test "${enable_kbd_layout+set}" = set; then @@ -12551,7 +12771,7 @@ EOF echo $ac_n "checking if experimental JavaScript support should be used""... $ac_c" 1>&6 -echo "configure:12555: checking if experimental JavaScript support should be used" >&5 +echo "configure:12775: checking if experimental JavaScript support should be used" >&5 # Check whether --enable-libjs or --disable-libjs was given. if test "${enable_libjs+set}" = set; then @@ -12575,7 +12795,7 @@ EOF echo $ac_n "checking if html source should be colorized""... $ac_c" 1>&6 -echo "configure:12579: checking if html source should be colorized" >&5 +echo "configure:12799: checking if html source should be colorized" >&5 # Check whether --enable-prettysrc or --disable-prettysrc was given. if test "${enable_prettysrc+set}" = set; then @@ -12599,7 +12819,7 @@ EOF echo $ac_n "checking if read-progress message should show ETA""... $ac_c" 1>&6 -echo "configure:12603: checking if read-progress message should show ETA" >&5 +echo "configure:12823: checking if read-progress message should show ETA" >&5 # Check whether --enable-read-eta or --disable-read-eta was given. if test "${enable_read_eta+set}" = set; then @@ -12623,7 +12843,7 @@ EOF echo $ac_n "checking if scrollbar code should be used""... $ac_c" 1>&6 -echo "configure:12627: checking if scrollbar code should be used" >&5 +echo "configure:12847: checking if scrollbar code should be used" >&5 # Check whether --enable-scrollbar or --disable-scrollbar was given. if test "${enable_scrollbar+set}" = set; then @@ -12654,7 +12874,7 @@ EOF fi echo $ac_n "checking if source caching should be used""... $ac_c" 1>&6 -echo "configure:12658: checking if source caching should be used" >&5 +echo "configure:12878: checking if source caching should be used" >&5 # Check whether --enable-source-cache or --disable-source-cache was given. if test "${enable_source_cache+set}" = set; then @@ -12681,7 +12901,7 @@ EOF echo $ac_n "checking if alternative line-edit bindings should be used""... $ac_c" 1>&6 -echo "configure:12685: checking if alternative line-edit bindings should be used" >&5 +echo "configure:12905: checking if alternative line-edit bindings should be used" >&5 # Check whether --enable-alt-bindings or --disable-alt-bindings was given. if test "${enable_alt_bindings+set}" = set; then @@ -12705,7 +12925,7 @@ EOF echo $ac_n "checking if you want to use extended HTML DTD logic""... $ac_c" 1>&6 -echo "configure:12709: checking if you want to use extended HTML DTD logic" >&5 +echo "configure:12929: checking if you want to use extended HTML DTD logic" >&5 # Check whether --enable-extended-dtd or --disable-extended-dtd was given. if test "${enable_extended_dtd+set}" = set; then @@ -12729,7 +12949,7 @@ EOF echo $ac_n "checking if partial-display should be used""... $ac_c" 1>&6 -echo "configure:12733: checking if partial-display should be used" >&5 +echo "configure:12953: checking if partial-display should be used" >&5 # Check whether --enable-partial or --disable-partial was given. if test "${enable_partial+set}" = set; then @@ -12753,7 +12973,7 @@ EOF echo $ac_n "checking if you want to use external commands""... $ac_c" 1>&6 -echo "configure:12757: checking if you want to use external commands" >&5 +echo "configure:12977: checking if you want to use external commands" >&5 # Check whether --enable-externs or --disable-externs was given. if test "${enable_externs+set}" = set; then @@ -12780,7 +13000,7 @@ EOF fi echo $ac_n "checking if you want to use setfont support""... $ac_c" 1>&6 -echo "configure:12784: checking if you want to use setfont support" >&5 +echo "configure:13004: checking if you want to use setfont support" >&5 # Check whether --enable-font-switch or --disable-font-switch was given. if test "${enable_font_switch+set}" = set; then @@ -12804,7 +13024,7 @@ EOF echo $ac_n "checking if you want cgi-link support""... $ac_c" 1>&6 -echo "configure:12808: checking if you want cgi-link support" >&5 +echo "configure:13028: checking if you want cgi-link support" >&5 # Check whether --enable-cgi-links or --disable-cgi-links was given. if test "${enable_cgi_links+set}" = set; then @@ -12823,7 +13043,7 @@ fi echo "$ac_t""$enableval" 1>&6 echo $ac_n "checking if you want change-exec support""... $ac_c" 1>&6 -echo "configure:12827: checking if you want change-exec support" >&5 +echo "configure:13047: checking if you want change-exec support" >&5 # Check whether --enable-change-exec or --disable-change-exec was given. if test "${enable_change_exec+set}" = set; then @@ -12847,7 +13067,7 @@ EOF echo $ac_n "checking if you want exec-links support""... $ac_c" 1>&6 -echo "configure:12851: checking if you want exec-links support" >&5 +echo "configure:13071: checking if you want exec-links support" >&5 # Check whether --enable-exec-links or --disable-exec-links was given. if test "${enable_exec_links+set}" = set; then @@ -12871,7 +13091,7 @@ EOF echo $ac_n "checking if you want exec-scripts support""... $ac_c" 1>&6 -echo "configure:12875: checking if you want exec-scripts support" >&5 +echo "configure:13095: checking if you want exec-scripts support" >&5 # Check whether --enable-exec-scripts or --disable-exec-scripts was given. if test "${enable_exec_scripts+set}" = set; then @@ -12895,7 +13115,7 @@ EOF echo $ac_n "checking if you want internal-links feature""... $ac_c" 1>&6 -echo "configure:12899: checking if you want internal-links feature" >&5 +echo "configure:13119: checking if you want internal-links feature" >&5 # Check whether --enable-internal-links or --disable-internal-links was given. if test "${enable_internal_links+set}" = set; then @@ -12919,7 +13139,7 @@ EOF echo $ac_n "checking if you want to fork NSL requests""... $ac_c" 1>&6 -echo "configure:12923: checking if you want to fork NSL requests" >&5 +echo "configure:13143: checking if you want to fork NSL requests" >&5 # Check whether --enable-nsl-fork or --disable-nsl-fork was given. if test "${enable_nsl_fork+set}" = set; then @@ -12943,7 +13163,7 @@ EOF echo $ac_n "checking if you want to log URL requests via syslog""... $ac_c" 1>&6 -echo "configure:12947: checking if you want to log URL requests via syslog" >&5 +echo "configure:13167: checking if you want to log URL requests via syslog" >&5 # Check whether --enable-syslog or --disable-syslog was given. if test "${enable_syslog+set}" = set; then @@ -12967,7 +13187,7 @@ EOF echo $ac_n "checking if persistent-cookie logic should be used""... $ac_c" 1>&6 -echo "configure:12971: checking if persistent-cookie logic should be used" >&5 +echo "configure:13191: checking if persistent-cookie logic should be used" >&5 # Check whether --enable-persistent-cookies or --disable-persistent-cookies was given. if test "${enable_persistent_cookies+set}" = set; then @@ -12991,7 +13211,7 @@ EOF echo $ac_n "checking if you want to underline links""... $ac_c" 1>&6 -echo "configure:12995: checking if you want to underline links" >&5 +echo "configure:13215: checking if you want to underline links" >&5 # Check whether --enable-underlines or --disable-underlines was given. if test "${enable_underlines+set}" = set; then @@ -13015,7 +13235,7 @@ EOF echo $ac_n "checking if help files should be gzip'ed""... $ac_c" 1>&6 -echo "configure:13019: checking if help files should be gzip'ed" >&5 +echo "configure:13239: checking if help files should be gzip'ed" >&5 # Check whether --enable-gzip-help or --disable-gzip-help was given. if test "${enable_gzip_help+set}" = set; then @@ -13044,7 +13264,7 @@ fi echo $ac_n "checking if you want to use zlib for decompression of some gzip files""... $ac_c" 1>&6 -echo "configure:13048: checking if you want to use zlib for decompression of some gzip files" >&5 +echo "configure:13268: checking if you want to use zlib for decompression of some gzip files" >&5 # Check whether --with-zlib or --without-zlib was given. if test "${with_zlib+set}" = set; then @@ -13058,16 +13278,16 @@ echo "$ac_t""$use_zlib" 1>&6 if test ".$use_zlib" != ".no" ; then echo $ac_n "checking if we need to add -I option to get zlib.h""... $ac_c" 1>&6 -echo "configure:13062: checking if we need to add -I option to get zlib.h" >&5 +echo "configure:13282: checking if we need to add -I option to get zlib.h" >&5 cat > conftest.$ac_ext <<EOF -#line 13064 "configure" +#line 13284 "configure" #include "confdefs.h" #include <zlib.h> int main() { ; return 0; } EOF -if { (eval echo configure:13071: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:13291: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* echo "$ac_t""no" 1>&6 else @@ -13121,12 +13341,12 @@ rm -f conftest* eval 'cf_cv_have_lib_'z'=no' cf_libdir="" echo $ac_n "checking for gzopen""... $ac_c" 1>&6 -echo "configure:13125: checking for gzopen" >&5 +echo "configure:13345: checking for gzopen" >&5 if eval "test \"`echo '$''{'ac_cv_func_gzopen'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 13130 "configure" +#line 13350 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char gzopen(); below. */ @@ -13149,7 +13369,7 @@ gzopen(); ; return 0; } EOF -if { (eval echo configure:13153: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:13373: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_gzopen=yes" else @@ -13169,17 +13389,17 @@ else cf_save_LIBS="$LIBS" echo $ac_n "checking for gzopen in -lz""... $ac_c" 1>&6 -echo "configure:13173: checking for gzopen in -lz" >&5 +echo "configure:13393: checking for gzopen in -lz" >&5 LIBS="-lz $LIBS" cat > conftest.$ac_ext <<EOF -#line 13176 "configure" +#line 13396 "configure" #include "confdefs.h" #include <zlib.h> int main() { gzopen("name","mode") ; return 0; } EOF -if { (eval echo configure:13183: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:13403: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* echo "$ac_t""yes" 1>&6 eval 'cf_cv_have_lib_'z'=yes' @@ -13223,17 +13443,17 @@ cf_search="$cf_search $HOME/lib $HOME/lib/z $HOME/z/lib" for cf_libdir in $cf_search do echo $ac_n "checking for -lz in $cf_libdir""... $ac_c" 1>&6 -echo "configure:13227: checking for -lz in $cf_libdir" >&5 +echo "configure:13447: checking for -lz in $cf_libdir" >&5 LIBS="-L$cf_libdir -lz $cf_save_LIBS" cat > conftest.$ac_ext <<EOF -#line 13230 "configure" +#line 13450 "configure" #include "confdefs.h" #include <zlib.h> int main() { gzopen("name","mode") ; return 0; } EOF -if { (eval echo configure:13237: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:13457: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* echo "$ac_t""yes" 1>&6 eval 'cf_cv_have_lib_'z'=yes' @@ -13267,7 +13487,7 @@ EOF fi echo $ac_n "checking if you want to exclude FINGER code""... $ac_c" 1>&6 -echo "configure:13271: checking if you want to exclude FINGER code" >&5 +echo "configure:13491: checking if you want to exclude FINGER code" >&5 # Check whether --enable-finger or --disable-finger was given. if test "${enable_finger+set}" = set; then @@ -13291,7 +13511,7 @@ EOF echo $ac_n "checking if you want to exclude GOPHER code""... $ac_c" 1>&6 -echo "configure:13295: checking if you want to exclude GOPHER code" >&5 +echo "configure:13515: checking if you want to exclude GOPHER code" >&5 # Check whether --enable-gopher or --disable-gopher was given. if test "${enable_gopher+set}" = set; then @@ -13315,7 +13535,7 @@ EOF echo $ac_n "checking if you want to exclude NEWS code""... $ac_c" 1>&6 -echo "configure:13319: checking if you want to exclude NEWS code" >&5 +echo "configure:13539: checking if you want to exclude NEWS code" >&5 # Check whether --enable-news or --disable-news was given. if test "${enable_news+set}" = set; then @@ -13339,7 +13559,7 @@ EOF echo $ac_n "checking if you want to exclude FTP code""... $ac_c" 1>&6 -echo "configure:13343: checking if you want to exclude FTP code" >&5 +echo "configure:13563: checking if you want to exclude FTP code" >&5 # Check whether --enable-ftp or --disable-ftp was given. if test "${enable_ftp+set}" = set; then @@ -13368,7 +13588,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 $ac_n "checking if directory-editor code should be used""... $ac_c" 1>&6 -echo "configure:13372: checking if directory-editor code should be used" >&5 +echo "configure:13592: checking if directory-editor code should be used" >&5 # Check whether --enable-dired or --disable-dired was given. if test "${enable_dired+set}" = set; then @@ -13395,7 +13615,7 @@ EOF echo $ac_n "checking if you wish to allow extracting from archives via DirEd""... $ac_c" 1>&6 -echo "configure:13399: checking if you wish to allow extracting from archives via DirEd" >&5 +echo "configure:13619: checking if you wish to allow extracting from archives via DirEd" >&5 # Check whether --enable-dired-dearchive or --disable-dired-dearchive was given. if test "${enable_dired_dearchive+set}" = set; then @@ -13414,7 +13634,7 @@ fi echo "$ac_t""$enableval" 1>&6 echo $ac_n "checking if DirEd mode should override keys""... $ac_c" 1>&6 -echo "configure:13418: checking if DirEd mode should override keys" >&5 +echo "configure:13638: checking if DirEd mode should override keys" >&5 # Check whether --enable-dired-override or --disable-dired-override was given. if test "${enable_dired_override+set}" = set; then @@ -13440,7 +13660,7 @@ fi echo "$ac_t""$enableval" 1>&6 echo $ac_n "checking if you wish to allow permissions commands via DirEd""... $ac_c" 1>&6 -echo "configure:13444: checking if you wish to allow permissions commands via DirEd" >&5 +echo "configure:13664: checking if you wish to allow permissions commands via DirEd" >&5 # Check whether --enable-dired-permit or --disable-dired-permit was given. if test "${enable_dired_permit+set}" = set; then @@ -13466,7 +13686,7 @@ fi echo "$ac_t""$enableval" 1>&6 echo $ac_n "checking if you wish to allow executable-permission commands via DirEd""... $ac_c" 1>&6 -echo "configure:13470: checking if you wish to allow executable-permission commands via DirEd" >&5 +echo "configure:13690: checking if you wish to allow executable-permission commands via DirEd" >&5 # Check whether --enable-dired-xpermit or --disable-dired-xpermit was given. if test "${enable_dired_xpermit+set}" = set; then @@ -13485,7 +13705,7 @@ fi echo "$ac_t""$enableval" 1>&6 echo $ac_n "checking if you wish to allow "tar" commands from DirEd""... $ac_c" 1>&6 -echo "configure:13489: checking if you wish to allow "tar" commands from DirEd" >&5 +echo "configure:13709: checking if you wish to allow "tar" commands from DirEd" >&5 # Check whether --enable-dired-tar or --disable-dired-tar was given. if test "${enable_dired_tar+set}" = set; then @@ -13511,7 +13731,7 @@ fi echo "$ac_t""$enableval" 1>&6 echo $ac_n "checking if you wish to allow "uudecode" commands from DirEd""... $ac_c" 1>&6 -echo "configure:13515: checking if you wish to allow "uudecode" commands from DirEd" >&5 +echo "configure:13735: checking if you wish to allow "uudecode" commands from DirEd" >&5 # Check whether --enable-dired-uudecode or --disable-dired-uudecode was given. if test "${enable_dired_uudecode+set}" = set; then @@ -13537,7 +13757,7 @@ fi echo "$ac_t""$enableval" 1>&6 echo $ac_n "checking if you wish to allow "zip" and "unzip" commands from DirEd""... $ac_c" 1>&6 -echo "configure:13541: checking if you wish to allow "zip" and "unzip" commands from DirEd" >&5 +echo "configure:13761: checking if you wish to allow "zip" and "unzip" commands from DirEd" >&5 # Check whether --enable-dired-zip or --disable-dired-zip was given. if test "${enable_dired_zip+set}" = set; then @@ -13563,7 +13783,7 @@ fi echo "$ac_t""$enableval" 1>&6 echo $ac_n "checking if you wish to allow "gzip" and "gunzip" commands from DirEd""... $ac_c" 1>&6 -echo "configure:13567: checking if you wish to allow "gzip" and "gunzip" commands from DirEd" >&5 +echo "configure:13787: checking if you wish to allow "gzip" and "gunzip" commands from DirEd" >&5 # Check whether --enable-dired-gzip or --disable-dired-gzip was given. if test "${enable_dired_gzip+set}" = set; then @@ -13590,7 +13810,7 @@ fi fi echo $ac_n "checking if you want long-directory listings""... $ac_c" 1>&6 -echo "configure:13594: checking if you want long-directory listings" >&5 +echo "configure:13814: checking if you want long-directory listings" >&5 # Check whether --enable-long-list or --disable-long-list was given. if test "${enable_long_list+set}" = set; then @@ -13616,7 +13836,7 @@ fi echo "$ac_t""$enableval" 1>&6 echo $ac_n "checking if parent-directory references are permitted""... $ac_c" 1>&6 -echo "configure:13620: checking if parent-directory references are permitted" >&5 +echo "configure:13840: checking if parent-directory references are permitted" >&5 # Check whether --enable-parent-dir-refs or --disable-parent-dir-refs was given. if test "${enable_parent_dir_refs+set}" = set; then @@ -13641,7 +13861,7 @@ if test $cf_cv_screen = pdcurses ; then # Uses ac_ vars as temps to allow command line to override cache and checks. # --without-x overrides everything else, but does not touch the cache. echo $ac_n "checking for X""... $ac_c" 1>&6 -echo "configure:13645: checking for X" >&5 +echo "configure:13865: checking for X" >&5 # Check whether --with-x or --without-x was given. @@ -13704,12 +13924,12 @@ if test "$ac_x_includes" = NO; then # First, try using that file with no special directory specified. cat > conftest.$ac_ext <<EOF -#line 13708 "configure" +#line 13928 "configure" #include "confdefs.h" #include <$x_direct_test_include> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:13713: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:13933: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -13778,14 +13998,14 @@ if test "$ac_x_libraries" = NO; then ac_save_LIBS="$LIBS" LIBS="-l$x_direct_test_library $LIBS" cat > conftest.$ac_ext <<EOF -#line 13782 "configure" +#line 14002 "configure" #include "confdefs.h" int main() { ${x_direct_test_function}() ; return 0; } EOF -if { (eval echo configure:13789: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:14009: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* LIBS="$ac_save_LIBS" # We can link X programs with no special library path. @@ -13885,7 +14105,7 @@ clix*) # FIXME: modify the library lookup in autoconf to # allow _s.a suffix ahead of .a echo $ac_n "checking for open in -lc_s""... $ac_c" 1>&6 -echo "configure:13889: checking for open in -lc_s" >&5 +echo "configure:14109: checking for open in -lc_s" >&5 ac_lib_var=`echo c_s'_'open | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -13893,7 +14113,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lc_s $LIBS" cat > conftest.$ac_ext <<EOF -#line 13897 "configure" +#line 14117 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -13904,7 +14124,7 @@ int main() { open() ; return 0; } EOF -if { (eval echo configure:13908: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:14128: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -13921,7 +14141,7 @@ if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then echo "$ac_t""yes" 1>&6 LIBS="-lc_s $LIBS" echo $ac_n "checking for gethostname in -lbsd""... $ac_c" 1>&6 -echo "configure:13925: checking for gethostname in -lbsd" >&5 +echo "configure:14145: checking for gethostname in -lbsd" >&5 ac_lib_var=`echo bsd'_'gethostname | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -13929,7 +14149,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lbsd $LIBS" cat > conftest.$ac_ext <<EOF -#line 13933 "configure" +#line 14153 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -13940,7 +14160,7 @@ int main() { gethostname() ; return 0; } EOF -if { (eval echo configure:13944: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:14164: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -13957,7 +14177,7 @@ if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then echo "$ac_t""yes" 1>&6 LIBS="-lbsd $LIBS" echo $ac_n "checking for gethostname in -lnsl_s""... $ac_c" 1>&6 -echo "configure:13961: checking for gethostname in -lnsl_s" >&5 +echo "configure:14181: checking for gethostname in -lnsl_s" >&5 ac_lib_var=`echo nsl_s'_'gethostname | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -13965,7 +14185,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lnsl_s $LIBS" cat > conftest.$ac_ext <<EOF -#line 13969 "configure" +#line 14189 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -13976,7 +14196,7 @@ int main() { gethostname() ; return 0; } EOF -if { (eval echo configure:13980: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:14200: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -13993,7 +14213,7 @@ if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then echo "$ac_t""yes" 1>&6 LIBS="-lnsl_s $LIBS" echo $ac_n "checking for XOpenDisplay in -lX11_s""... $ac_c" 1>&6 -echo "configure:13997: checking for XOpenDisplay in -lX11_s" >&5 +echo "configure:14217: checking for XOpenDisplay in -lX11_s" >&5 ac_lib_var=`echo X11_s'_'XOpenDisplay | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -14001,7 +14221,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lX11_s $LIBS" cat > conftest.$ac_ext <<EOF -#line 14005 "configure" +#line 14225 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -14012,7 +14232,7 @@ int main() { XOpenDisplay() ; return 0; } EOF -if { (eval echo configure:14016: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:14236: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -14029,7 +14249,7 @@ if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then echo "$ac_t""yes" 1>&6 LIBS="-lX11_s $LIBS" echo $ac_n "checking for XtAppInitialize in -lXt_s""... $ac_c" 1>&6 -echo "configure:14033: checking for XtAppInitialize in -lXt_s" >&5 +echo "configure:14253: checking for XtAppInitialize in -lXt_s" >&5 ac_lib_var=`echo Xt_s'_'XtAppInitialize | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -14037,7 +14257,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lXt_s $LIBS" cat > conftest.$ac_ext <<EOF -#line 14041 "configure" +#line 14261 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -14048,7 +14268,7 @@ int main() { XtAppInitialize() ; return 0; } EOF -if { (eval echo configure:14052: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:14272: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -14089,7 +14309,7 @@ fi ;; *) echo $ac_n "checking for socket in -lsocket""... $ac_c" 1>&6 -echo "configure:14093: checking for socket in -lsocket" >&5 +echo "configure:14313: checking for socket in -lsocket" >&5 ac_lib_var=`echo socket'_'socket | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -14097,7 +14317,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lsocket $LIBS" cat > conftest.$ac_ext <<EOF -#line 14101 "configure" +#line 14321 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -14108,7 +14328,7 @@ int main() { socket() ; return 0; } EOF -if { (eval echo configure:14112: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:14332: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -14136,7 +14356,7 @@ else fi echo $ac_n "checking for gethostname in -lnsl""... $ac_c" 1>&6 -echo "configure:14140: checking for gethostname in -lnsl" >&5 +echo "configure:14360: checking for gethostname in -lnsl" >&5 ac_lib_var=`echo nsl'_'gethostname | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -14144,7 +14364,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lnsl $LIBS" cat > conftest.$ac_ext <<EOF -#line 14148 "configure" +#line 14368 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -14155,7 +14375,7 @@ int main() { gethostname() ; return 0; } EOF -if { (eval echo configure:14159: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:14379: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -14206,17 +14426,17 @@ else case "`(uname -sr) 2>/dev/null`" in "SunOS 5"*) echo $ac_n "checking whether -R must be followed by a space""... $ac_c" 1>&6 -echo "configure:14210: checking whether -R must be followed by a space" >&5 +echo "configure:14430: checking whether -R must be followed by a space" >&5 ac_xsave_LIBS="$LIBS"; LIBS="$LIBS -R$x_libraries" cat > conftest.$ac_ext <<EOF -#line 14213 "configure" +#line 14433 "configure" #include "confdefs.h" int main() { ; return 0; } EOF -if { (eval echo configure:14220: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:14440: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_R_nospace=yes else @@ -14232,14 +14452,14 @@ rm -f conftest* else LIBS="$ac_xsave_LIBS -R $x_libraries" cat > conftest.$ac_ext <<EOF -#line 14236 "configure" +#line 14456 "configure" #include "confdefs.h" int main() { ; return 0; } EOF -if { (eval echo configure:14243: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:14463: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_R_space=yes else @@ -14271,7 +14491,7 @@ rm -f conftest* # libraries were built with DECnet support. And karl@cs.umb.edu says # the Alpha needs dnet_stub (dnet does not exist). echo $ac_n "checking for dnet_ntoa in -ldnet""... $ac_c" 1>&6 -echo "configure:14275: checking for dnet_ntoa in -ldnet" >&5 +echo "configure:14495: checking for dnet_ntoa in -ldnet" >&5 ac_lib_var=`echo dnet'_'dnet_ntoa | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -14279,7 +14499,7 @@ else ac_save_LIBS="$LIBS" LIBS="-ldnet $LIBS" cat > conftest.$ac_ext <<EOF -#line 14283 "configure" +#line 14503 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -14290,7 +14510,7 @@ int main() { dnet_ntoa() ; return 0; } EOF -if { (eval echo configure:14294: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:14514: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -14312,7 +14532,7 @@ fi if test $ac_cv_lib_dnet_dnet_ntoa = no; then echo $ac_n "checking for dnet_ntoa in -ldnet_stub""... $ac_c" 1>&6 -echo "configure:14316: checking for dnet_ntoa in -ldnet_stub" >&5 +echo "configure:14536: checking for dnet_ntoa in -ldnet_stub" >&5 ac_lib_var=`echo dnet_stub'_'dnet_ntoa | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -14320,7 +14540,7 @@ else ac_save_LIBS="$LIBS" LIBS="-ldnet_stub $LIBS" cat > conftest.$ac_ext <<EOF -#line 14324 "configure" +#line 14544 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -14331,7 +14551,7 @@ int main() { dnet_ntoa() ; return 0; } EOF -if { (eval echo configure:14335: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:14555: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -14360,12 +14580,12 @@ fi # The nsl library prevents programs from opening the X display # on Irix 5.2, according to dickey@clark.net. echo $ac_n "checking for gethostbyname""... $ac_c" 1>&6 -echo "configure:14364: checking for gethostbyname" >&5 +echo "configure:14584: checking for gethostbyname" >&5 if eval "test \"`echo '$''{'ac_cv_func_gethostbyname'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 14369 "configure" +#line 14589 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char gethostbyname(); below. */ @@ -14388,7 +14608,7 @@ gethostbyname(); ; return 0; } EOF -if { (eval echo configure:14392: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:14612: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_gethostbyname=yes" else @@ -14409,7 +14629,7 @@ fi if test $ac_cv_func_gethostbyname = no; then echo $ac_n "checking for gethostbyname in -lnsl""... $ac_c" 1>&6 -echo "configure:14413: checking for gethostbyname in -lnsl" >&5 +echo "configure:14633: checking for gethostbyname in -lnsl" >&5 ac_lib_var=`echo nsl'_'gethostbyname | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -14417,7 +14637,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lnsl $LIBS" cat > conftest.$ac_ext <<EOF -#line 14421 "configure" +#line 14641 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -14428,7 +14648,7 @@ int main() { gethostbyname() ; return 0; } EOF -if { (eval echo configure:14432: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:14652: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -14458,12 +14678,12 @@ fi # -lsocket must be given before -lnsl if both are needed. # We assume that if connect needs -lnsl, so does gethostbyname. echo $ac_n "checking for connect""... $ac_c" 1>&6 -echo "configure:14462: checking for connect" >&5 +echo "configure:14682: checking for connect" >&5 if eval "test \"`echo '$''{'ac_cv_func_connect'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 14467 "configure" +#line 14687 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char connect(); below. */ @@ -14486,7 +14706,7 @@ connect(); ; return 0; } EOF -if { (eval echo configure:14490: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:14710: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_connect=yes" else @@ -14507,7 +14727,7 @@ fi if test $ac_cv_func_connect = no; then echo $ac_n "checking for connect in -lsocket""... $ac_c" 1>&6 -echo "configure:14511: checking for connect in -lsocket" >&5 +echo "configure:14731: checking for connect in -lsocket" >&5 ac_lib_var=`echo socket'_'connect | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -14515,7 +14735,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lsocket $X_EXTRA_LIBS $LIBS" cat > conftest.$ac_ext <<EOF -#line 14519 "configure" +#line 14739 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -14526,7 +14746,7 @@ int main() { connect() ; return 0; } EOF -if { (eval echo configure:14530: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:14750: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -14550,12 +14770,12 @@ fi # gomez@mi.uni-erlangen.de says -lposix is necessary on A/UX. echo $ac_n "checking for remove""... $ac_c" 1>&6 -echo "configure:14554: checking for remove" >&5 +echo "configure:14774: checking for remove" >&5 if eval "test \"`echo '$''{'ac_cv_func_remove'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 14559 "configure" +#line 14779 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char remove(); below. */ @@ -14578,7 +14798,7 @@ remove(); ; return 0; } EOF -if { (eval echo configure:14582: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:14802: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_remove=yes" else @@ -14599,7 +14819,7 @@ fi if test $ac_cv_func_remove = no; then echo $ac_n "checking for remove in -lposix""... $ac_c" 1>&6 -echo "configure:14603: checking for remove in -lposix" >&5 +echo "configure:14823: checking for remove in -lposix" >&5 ac_lib_var=`echo posix'_'remove | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -14607,7 +14827,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lposix $LIBS" cat > conftest.$ac_ext <<EOF -#line 14611 "configure" +#line 14831 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -14618,7 +14838,7 @@ int main() { remove() ; return 0; } EOF -if { (eval echo configure:14622: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:14842: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -14642,12 +14862,12 @@ fi # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay. echo $ac_n "checking for shmat""... $ac_c" 1>&6 -echo "configure:14646: checking for shmat" >&5 +echo "configure:14866: checking for shmat" >&5 if eval "test \"`echo '$''{'ac_cv_func_shmat'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 14651 "configure" +#line 14871 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char shmat(); below. */ @@ -14670,7 +14890,7 @@ shmat(); ; return 0; } EOF -if { (eval echo configure:14674: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:14894: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_shmat=yes" else @@ -14691,7 +14911,7 @@ fi if test $ac_cv_func_shmat = no; then echo $ac_n "checking for shmat in -lipc""... $ac_c" 1>&6 -echo "configure:14695: checking for shmat in -lipc" >&5 +echo "configure:14915: checking for shmat in -lipc" >&5 ac_lib_var=`echo ipc'_'shmat | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -14699,7 +14919,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lipc $LIBS" cat > conftest.$ac_ext <<EOF -#line 14703 "configure" +#line 14923 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -14710,7 +14930,7 @@ int main() { shmat() ; return 0; } EOF -if { (eval echo configure:14714: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:14934: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -14743,7 +14963,7 @@ fi # libraries we check for below, so use a different variable. # --interran@uluru.Stanford.EDU, kb@cs.umb.edu. echo $ac_n "checking for IceConnectionNumber in -lICE""... $ac_c" 1>&6 -echo "configure:14747: checking for IceConnectionNumber in -lICE" >&5 +echo "configure:14967: checking for IceConnectionNumber in -lICE" >&5 ac_lib_var=`echo ICE'_'IceConnectionNumber | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -14751,7 +14971,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lICE $X_EXTRA_LIBS $LIBS" cat > conftest.$ac_ext <<EOF -#line 14755 "configure" +#line 14975 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -14762,7 +14982,7 @@ int main() { IceConnectionNumber() ; return 0; } EOF -if { (eval echo configure:14766: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:14986: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -14787,9 +15007,27 @@ fi fi LDFLAGS="$LDFLAGS $X_LIBS" - CFLAGS="$CFLAGS $X_CFLAGS" + +for cf_add_cflags in $X_CFLAGS +do + case $cf_add_cflags in #(vi + -undef|-nostdinc*|-I*|-D*|-U*|-E|-P|-C) #(vi + case "$CPPFLAGS" in + *$cf_add_cflags) + ;; + *) + CPPFLAGS="$CPPFLAGS $cf_add_cflags" + ;; + esac + ;; + *) + CFLAGS="$CFLAGS $cf_add_cflags" + ;; + esac +done + echo $ac_n "checking for XOpenDisplay in -lX11""... $ac_c" 1>&6 -echo "configure:14793: checking for XOpenDisplay in -lX11" >&5 +echo "configure:15031: checking for XOpenDisplay in -lX11" >&5 ac_lib_var=`echo X11'_'XOpenDisplay | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -14797,7 +15035,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lX11 $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS" cat > conftest.$ac_ext <<EOF -#line 14801 "configure" +#line 15039 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -14808,7 +15046,7 @@ int main() { XOpenDisplay() ; return 0; } EOF -if { (eval echo configure:14812: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:15050: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -14829,7 +15067,7 @@ else fi echo $ac_n "checking for XtAppInitialize in -lXt""... $ac_c" 1>&6 -echo "configure:14833: checking for XtAppInitialize in -lXt" >&5 +echo "configure:15071: checking for XtAppInitialize in -lXt" >&5 ac_lib_var=`echo Xt'_'XtAppInitialize | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -14837,7 +15075,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lXt $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS" cat > conftest.$ac_ext <<EOF -#line 14841 "configure" +#line 15079 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -14848,7 +15086,7 @@ int main() { XtAppInitialize() ; return 0; } EOF -if { (eval echo configure:14852: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:15090: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -14875,7 +15113,25 @@ fi else LDFLAGS="$LDFLAGS $X_LIBS" - CFLAGS="$CFLAGS $X_CFLAGS" + +for cf_add_cflags in $X_CFLAGS +do + case $cf_add_cflags in #(vi + -undef|-nostdinc*|-I*|-D*|-U*|-E|-P|-C) #(vi + case "$CPPFLAGS" in + *$cf_add_cflags) + ;; + *) + CPPFLAGS="$CPPFLAGS $cf_add_cflags" + ;; + esac + ;; + *) + CFLAGS="$CFLAGS $cf_add_cflags" + ;; + esac +done + fi if test $cf_have_X_LIBS = no ; then @@ -14905,7 +15161,7 @@ fi echo $ac_n "checking for XextCreateExtension in -lXext""... $ac_c" 1>&6 -echo "configure:14909: checking for XextCreateExtension in -lXext" >&5 +echo "configure:15165: checking for XextCreateExtension in -lXext" >&5 ac_lib_var=`echo Xext'_'XextCreateExtension | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -14913,7 +15169,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lXext $LIBS" cat > conftest.$ac_ext <<EOF -#line 14917 "configure" +#line 15173 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -14924,7 +15180,7 @@ int main() { XextCreateExtension() ; return 0; } EOF -if { (eval echo configure:14928: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:15184: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -14956,18 +15212,18 @@ for cf_path in default \ do if test -z "$cf_x_athena_include" ; then - cf_save="$CFLAGS" + cf_save="$CPPFLAGS" cf_test=X11/$cf_x_athena/SimpleMenu.h if test $cf_path != default ; then - CFLAGS="-I$cf_path/include $cf_save" + CPPFLAGS="-I$cf_path/include $cf_save" echo $ac_n "checking for $cf_test in $cf_path""... $ac_c" 1>&6 -echo "configure:14965: checking for $cf_test in $cf_path" >&5 +echo "configure:15221: checking for $cf_test in $cf_path" >&5 else echo $ac_n "checking for $cf_test""... $ac_c" 1>&6 -echo "configure:14968: checking for $cf_test" >&5 +echo "configure:15224: checking for $cf_test" >&5 fi cat > conftest.$ac_ext <<EOF -#line 14971 "configure" +#line 15227 "configure" #include "confdefs.h" #include <X11/Intrinsic.h> @@ -14976,7 +15232,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:14980: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:15236: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* cf_result=yes else @@ -14990,7 +15246,7 @@ rm -f conftest* if test "$cf_result" = yes ; then cf_x_athena_include=$cf_path else - CFLAGS="$cf_save" + CPPFLAGS="$cf_save" fi fi @@ -15002,21 +15258,21 @@ rm -f conftest* if test $cf_path != default ; then LIBS="-L$cf_path/lib $cf_lib $LIBS" echo $ac_n "checking for $cf_lib in $cf_path""... $ac_c" 1>&6 -echo "configure:15006: checking for $cf_lib in $cf_path" >&5 +echo "configure:15262: checking for $cf_lib in $cf_path" >&5 else LIBS="$cf_lib $LIBS" echo $ac_n "checking for $cf_test in $cf_lib""... $ac_c" 1>&6 -echo "configure:15010: checking for $cf_test in $cf_lib" >&5 +echo "configure:15266: checking for $cf_test in $cf_lib" >&5 fi cat > conftest.$ac_ext <<EOF -#line 15013 "configure" +#line 15269 "configure" #include "confdefs.h" int main() { $cf_test() ; return 0; } EOF -if { (eval echo configure:15020: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:15276: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* cf_result=yes else @@ -15055,9 +15311,27 @@ EOF LDFLAGS="$LDFLAGS $X_LIBS" -CFLAGS="$CFLAGS $X_CFLAGS" + +for cf_add_cflags in $X_CFLAGS +do + case $cf_add_cflags in #(vi + -undef|-nostdinc*|-I*|-D*|-U*|-E|-P|-C) #(vi + case "$CPPFLAGS" in + *$cf_add_cflags) + ;; + *) + CPPFLAGS="$CPPFLAGS $cf_add_cflags" + ;; + esac + ;; + *) + CFLAGS="$CFLAGS $cf_add_cflags" + ;; + esac +done + echo $ac_n "checking for XOpenDisplay in -lX11""... $ac_c" 1>&6 -echo "configure:15061: checking for XOpenDisplay in -lX11" >&5 +echo "configure:15335: checking for XOpenDisplay in -lX11" >&5 ac_lib_var=`echo X11'_'XOpenDisplay | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -15065,7 +15339,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lX11 $X_PRE_LIBS $LIBS $X_EXTRA_LIBS $LIBS" cat > conftest.$ac_ext <<EOF -#line 15069 "configure" +#line 15343 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -15076,7 +15350,7 @@ int main() { XOpenDisplay() ; return 0; } EOF -if { (eval echo configure:15080: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:15354: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -15097,14 +15371,14 @@ else fi echo $ac_n "checking for XCurses library""... $ac_c" 1>&6 -echo "configure:15101: checking for XCurses library" >&5 +echo "configure:15375: checking for XCurses library" >&5 if eval "test \"`echo '$''{'cf_cv_lib_XCurses'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else LIBS="-lXCurses $LIBS" cat > conftest.$ac_ext <<EOF -#line 15108 "configure" +#line 15382 "configure" #include "confdefs.h" #include <xcurses.h> @@ -15114,7 +15388,7 @@ int main() { XCursesExit(); ; return 0; } EOF -if { (eval echo configure:15118: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:15392: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* cf_cv_lib_XCurses=yes else @@ -15148,16 +15422,16 @@ fi else echo $ac_n "checking if we can include termio.h with curses""... $ac_c" 1>&6 -echo "configure:15152: checking if we can include termio.h with curses" >&5 +echo "configure:15426: checking if we can include termio.h with curses" >&5 if eval "test \"`echo '$''{'cf_cv_termio_and_curses'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else - cf_save_CFLAGS="$CFLAGS" - CFLAGS="$CFLAGS -DHAVE_CONFIG_H -I. -I${srcdir-.} -I${srcdir-.}/src -I${srcdir-.}/WWW/Library/Implementation" + cf_save_CFLAGS="$CPPFLAGS" + CPPFLAGS="$CPPFLAGS -DHAVE_CONFIG_H -I. -I${srcdir-.} -I${srcdir-.}/src -I${srcdir-.}/WWW/Library/Implementation" touch lynx_cfg.h cat > conftest.$ac_ext <<EOF -#line 15161 "configure" +#line 15435 "configure" #include "confdefs.h" #include <LYCurses.h> @@ -15166,7 +15440,7 @@ int main() { putchar(0x0a) ; return 0; } EOF -if { (eval echo configure:15170: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:15444: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* cf_cv_termio_and_curses=yes else @@ -15176,7 +15450,7 @@ else cf_cv_termio_and_curses=no fi rm -f conftest* - CFLAGS="$cf_save_CFLAGS" + CPPFLAGS="$cf_save_CFLAGS" rm -f lynx_cfg.h fi @@ -15371,6 +15645,7 @@ s%@EXTRA_CFLAGS@%$EXTRA_CFLAGS%g s%@PROG_EXT@%$PROG_EXT%g s%@ALLOCA@%$ALLOCA%g s%@USE_NLS@%$USE_NLS%g +s%@PATHSEP@%$PATHSEP%g s%@MSGFMT@%$MSGFMT%g s%@GMSGFMT@%$GMSGFMT%g s%@XGETTEXT@%$XGETTEXT%g diff --git a/configure.in b/configure.in index 8f024648..9de8ce2f 100644 --- a/configure.in +++ b/configure.in @@ -342,6 +342,17 @@ dnl -------------------------------------------------------------------------- ### Look for network libraries first, since some functions (such as gethostname) ### are used in a lot of places. +AC_CACHE_CHECK(if you want ssl library,cf_cv_use_libssl,[ +AC_ARG_WITH(ssl, + [ --with-ssl[=path] link with ssl library if available], + [cf_cv_use_libssl=$withval], + [cf_cv_use_libssl=no]) +]) + +if test "x$cf_cv_use_libssl" != xno ; then + CF_SSL($cf_cv_use_libssl) +fi + AC_CACHE_CHECK(if you want socks library,cf_cv_use_libsocks,[ AC_ARG_WITH(socks, [ --with-socks[=path] link with socks library if available], @@ -561,7 +572,6 @@ CF_NGROUPS CF_SYS_ERRLIST CF_UTMP CF_CHECK_EXTERN_DATA(h_errno,int) -CF_EBCDIC ### These tests must be run after establishing the curses library. if test $cf_cv_screen != slang ; then @@ -575,6 +585,7 @@ if test $cf_cv_screen != slang ; then assume_default_colors \ cbreak \ define_key \ + delscreen \ getattrs \ getbegx \ getbegy \ diff --git a/docs/README.ssl b/docs/README.ssl new file mode 100644 index 00000000..c12c5828 --- /dev/null +++ b/docs/README.ssl @@ -0,0 +1,49 @@ +SSL support for Lynx 2.8.3 (SSL-MM 1.4.1) +-- adapted from http://www.moxienet.com/lynx/ + +Lynx, in its unmodified form, will not allow you to make secure socket layer +(SSL) connections. SSL is used for the secure transfer of information over the +Internet. Many sites are now requiring SSL to ensure security for themselves +and their users. With a version of Lynx modified to support SSL, Lynx users +can now visit these sites with ease as well. + +The SSL configure option (--with-ssl) for Lynx provides the ability to make use +of SSL over HTTP for secure access to web sites (HTTPS) and over NNTP for +secure access to news servers (SNEWS). SSL is handled transparently, allowing +users to continue accessing web sites and news services from within Lynx +through the same interface for both secure and standard transfers. + +This is based on, and requires, the OpenSSL library. OpenSSL's distribution +and use may be restricted by licenses and laws. For information on obtaining +OpenSSL, as well as information on its distribution, see +http://www.openssl.org/. The main distribution site is ftp://ftp.openssl.org/. +For more information, see the Lynx SSL home page at +http://www.moxienet.com/lynx/. + +To test your version of Lynx for its SSL support, try it out with an SSL site. +http://www.moxienet.com/lynx/ssl-test will redirect you to a secure (https) +page which will load if your browser contains SSL support, and give you some +information about the connection. Note that the server that you are redirected +to may not have a valid certificate. Lynx will not complain, as it does not +yet support certificates, but other browsers may. Since you will not be +sending any sensitive data to the test page, this should not present a problem. + +It is the user's responsibility to ensure that all patent laws, +export restrictions, and other considerations have been taken into account +before using this software. + +-- Note: + +Lynx is GPL'd, so it falls under the regulations in EAR section +740.13(e)(1): + + (1) Encryption source code controlled under 5D002, which would be + considered publicly available under section 734.3(b)(3) and + which is not subject an express agreement for the payment a + licensing fee or royalty for commercial production or sale of + any product developed with the source code, is released from + EI controls and may be exported or reexported without review + under License Exception TSU, provided you have submitted + written notification to BXA of the Internet location (e.g., + URL or Internet address) or a copy of source code by the time + of export. diff --git a/po/ja.po b/po/ja.po new file mode 100644 index 00000000..c6afb8cd --- /dev/null +++ b/po/ja.po @@ -0,0 +1,5566 @@ +# Japanese PO file for Lynx. +# Copyright (C) 2000 Free Software Foundation, Inc. +# Masayuki Hatta <masayuki-h@geocities.co.jp>, 2000. +# +msgid "" +msgstr "" +"Project-Id-Version: lynx 2.8.3.rel1\n" +"POT-Creation-Date: 2000-12-20 20:12-0500\n" +"PO-Revision-Date: 2000-10-11 09:47+09:00\n" +"Last-Translator: Masayuki Hatta <masayuki-h@geocities.co.jp>\n" +"Language-Team: Japanese <ja@li.org>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=euc-jp\n" +"Content-Transfer-Encoding: 8-bit\n" + +#. ****************************************************************** +#. * The following definitions are for status line prompts, messages, or +#. * warnings issued by Lynx during program execution. You can modify +#. * them to make them more appropriate for your site. We recommend that +#. * you extend these definitions to other languages using the gettext +#. * library. There are also scattered uses of 'gettext()' throughout the +#. * Lynx source, covering all but those messages which (a) are used for +#. * debugging (CTRACE) or (b) are constants used in interaction with +#. * other programs. +#. * +#. * Links to collections of alternate definitions, developed by the Lynx +#. * User Community, are maintained in Lynx links: +#. * +#. * http://www.trill-home.com/lynx.html +#. * +#. * See ABOUT-NLS and po/readme for details and location of contributed +#. * translations. When no translation is available, the English default is +#. * used. +#. +#: LYMessages.c:29 +#, c-format +msgid "Alert!: %s" +msgstr "·Ù¹ð!: %s" + +#: LYMessages.c:30 +msgid "Welcome" +msgstr "¤è¤¦¤³¤½" + +#: LYMessages.c:31 LYMessages.c:32 +msgid "Are you sure you want to quit?" +msgstr "ËÜÅö¤Ë½ªÎ»¤·¤Æ¤â¤è¤í¤·¤¤¤Ç¤¹¤«?" + +#: LYMessages.c:34 LYMessages.c:35 +msgid "Really exit from Lynx?" +msgstr "ËÜÅö¤Ë Lynx ¤ò½ªÎ»¤·¤Þ¤¹¤«?" + +#: LYMessages.c:37 +msgid "Connection interrupted." +msgstr "Àܳ¤¬ÃæÃǤµ¤ì¤Þ¤·¤¿¡£" + +#: LYMessages.c:38 +msgid "Data transfer interrupted." +msgstr "¥Ç¡¼¥¿Å¾Á÷¤¬ÃæÃǤµ¤ì¤Þ¤·¤¿¡£" + +#: LYMessages.c:39 +msgid "Cancelled!!!" +msgstr "¥¥ã¥ó¥»¥ë¤µ¤ì¤Þ¤·¤¿!!!" + +#: LYMessages.c:40 +msgid "Cancelling!" +msgstr "¥¥ã¥ó¥»¥ë¤·¤Þ¤¹!" + +#: LYMessages.c:41 +msgid "Excellent!!!" +msgstr "¤½¤¦Íè¤Ê¤¯¤Ã¤Á¤ã!!!" + +#: LYMessages.c:42 +msgid "OK" +msgstr "OK" + +#: LYMessages.c:43 +msgid "Done!" +msgstr "´°Î»!" + +#: LYMessages.c:44 +msgid "Bad request!" +msgstr "̵¸ú¤Ê¥ê¥¯¥¨¥¹¥È¤Ç¤¹!" + +#: LYMessages.c:45 +msgid "previous" +msgstr "Á°¤Î²èÌÌ" + +#: LYMessages.c:46 +msgid "next screen" +msgstr "¼¡¤Î²èÌÌ" + +#: LYMessages.c:47 +msgid "HELP!" +msgstr "¥Ø¥ë¥×!" + +#: LYMessages.c:48 +msgid ", help on " +msgstr ", ¥Ø¥ë¥×¢ª" + +#. #define HELP +#: LYMessages.c:50 +msgid "" +"Commands: Use arrow keys to move, '?' for help, 'q' to quit, '<-' to go back." +msgstr "¥³¥Þ¥ó¥É: [Ìð°õ¥¡¼] °ÜÆ°¡¢[?] ¥Ø¥ë¥×¡¢[q] ½ªÎ»¡¢[¢«] Ìá¤ë" + +#. #define MOREHELP +#: LYMessages.c:52 +msgid "" +"-- press space for more, use arrow keys to move, '?' for help, 'q' to quit." +msgstr "-- [¥¹¥Ú¡¼¥¹¥¡¼] ¼¡¥Ú¡¼¥¸¤Ø [Ìð°õ¥¡¼] °ÜÆ° [?] ¥Ø¥ë¥× [q] ½ªÎ»" + +#: LYMessages.c:53 +msgid "-- press space for next page --" +msgstr "-- ¥¹¥Ú¡¼¥¹¥¡¼¤Ç¼¡¤Î¥Ú¡¼¥¸ --" + +#: LYMessages.c:54 +msgid "URL too long" +msgstr "URL ¤¬Ä¹¤¹¤®¤Þ¤¹" + +#. Inactive input fields, messages used with -tna option - kw +#. #define FORM_LINK_TEXT_MESSAGE_INA +#: LYMessages.c:60 +msgid "(Text entry field) Inactive. Press <return> to activate." +msgstr "(¥Æ¥¥¹¥ÈÆþÎÏ¥Õ¥£¡¼¥ë¥É) ¸½ºß̤ÁªÂò ¥ê¥¿¡¼¥ó¥¡¼¤ÇÆþÎϳ«»Ï" + +#. #define FORM_LINK_TEXTAREA_MESSAGE_INA +#: LYMessages.c:62 +msgid "(Textarea) Inactive. Press <return> to activate." +msgstr "(¥Æ¥¥¹¥È¥¨¥ê¥¢) ¸½ºß̤ÁªÂò ¥ê¥¿¡¼¥ó¥¡¼¤ÇÆþÎϳ«»Ï" + +#. #define FORM_LINK_TEXTAREA_MESSAGE_INA_E +#: LYMessages.c:64 +#, c-format +msgid "(Textarea) Inactive. Press <return> to activate (%s for editor)." +msgstr "(¥Æ¥¥¹¥È¥¨¥ê¥¢) ̤ÁªÂò ¥ê¥¿¡¼¥ó¤ÇÆþÎϳ«»Ï (%s ¤Ç¥¨¥Ç¥£¥¿µ¯Æ°)" + +#. #define FORM_LINK_TEXT_SUBMIT_MESSAGE_INA +#: LYMessages.c:66 +msgid "(Form field) Inactive. Use <return> to edit." +msgstr "(¥Õ¥©¡¼¥à¥Õ¥£¡¼¥ë¥É) ¸½ºß̤ÁªÂò ¥ê¥¿¡¼¥ó¥¡¼¤ÇÊÔ½¸³«»Ï" + +#. #define FORM_TEXT_SUBMIT_MESSAGE_INA_X +#: LYMessages.c:68 +#, c-format +msgid "" +"(Form field) Inactive. Use <return> to edit (%s to submit with no cache)." +msgstr "" +"(¥Õ¥©¡¼¥à¥Õ¥£¡¼¥ë¥É) ¸½ºß̤ÁªÂò ¥ê¥¿¡¼¥ó¤ÇÊÔ½¸³«»Ï (%s " +"¤Ï¥¥ã¥Ã¥·¥å̵¸ú¤ÇÁ÷¿®)" + +#. #define FORM_TEXT_RESUBMIT_MESSAGE_INA +#: LYMessages.c:70 +msgid "" +"(Form field) Inactive. Press <return> to edit, press <return> twice to " +"submit." +msgstr "(¥Õ¥©¡¼¥à¥Õ¥£¡¼¥ë¥É) ¸½ºß̤ÁªÂò ¥ê¥¿¡¼¥ó¤ÇÊÔ½¸¡¢¥ê¥¿¡¼¥ó2²ó¤ÇÁ÷¿®" + +#. #define FORM_TEXT_SUBMIT_MAILTO_MSG_INA +#: LYMessages.c:72 +msgid "(mailto form field) Inactive. Press <return> to change." +msgstr "(mailto ¥Õ¥©¡¼¥à¥Õ¥£¡¼¥ë¥É) ¸½ºß̤ÁªÂò ¥ê¥¿¡¼¥ó¤ÇÊѹ¹" + +#. #define FORM_LINK_PASSWORD_MESSAGE_INA +#: LYMessages.c:74 +msgid "(Password entry field) Inactive. Press <return> to activate." +msgstr "(¥Ñ¥¹¥ï¡¼¥ÉÆþÎÏ¥Õ¥£¡¼¥ë¥É) ¸½ºß̤ÁªÂò ¥ê¥¿¡¼¥ó¥¡¼¤ÇÆþÎϳ«»Ï" + +#. #define FORM_LINK_FILE_UNM_MSG +#: LYMessages.c:77 +msgid "" +"UNMODIFIABLE file entry field. Use UP or DOWN arrows or tab to move off." +msgstr "Êѹ¹¤Ç¤¤Ê¤¤¥Õ¥¡¥¤¥ëÆþÎÏ¥Õ¥£¡¼¥ë¥É [¢¬][¢]¤«¥¿¥Ö¤Ç°ÜÆ°" + +#. #define FORM_LINK_FILE_MESSAGE +#: LYMessages.c:79 +msgid "" +"(File entry field) Enter filename. Use UP or DOWN arrows or tab to move off." +msgstr "(¥Õ¥¡¥¤¥ëÆþÎÏ¥Õ¥£¡¼¥ë¥É) ¥Õ¥¡¥¤¥ë̾¤òÆþÎÏ [¢¬][¢]¤«¥¿¥Ö¤Ç°ÜÆ°" + +#. #define FORM_LINK_TEXT_MESSAGE +#: LYMessages.c:81 +msgid "" +"(Text entry field) Enter text. Use UP or DOWN arrows or tab to move off." +msgstr "(¥Æ¥¥¹¥ÈÆþÎÏ¥Õ¥£¡¼¥ë¥É) ¥Æ¥¥¹¥È¤òÆþÎÏ [¢¬][¢] ¤È¥¿¥Ö¤Ç°ÜÆ°" + +#. #define FORM_LINK_TEXTAREA_MESSAGE +#: LYMessages.c:83 +msgid "(Textarea) Enter text. Use UP/DOWN arrows or TAB to move off." +msgstr "(¥Æ¥¥¹¥È¥¨¥ê¥¢) ¥Æ¥¥¹¥È¤òÆþÎÏ [¢¬][¢] ¤È¥¿¥Ö¤Ç°ÜÆ°" + +#. #define FORM_LINK_TEXTAREA_MESSAGE_E +#: LYMessages.c:85 +#, c-format +msgid "" +"(Textarea) Enter text. Use UP/DOWN arrows or TAB to move off (%s for editor)." +msgstr "" +"(¥Æ¥¥¹¥È¥¨¥ê¥¢) ¥Æ¥¥¹¥È¤òÆþÎÏ [¢¬][¢] ¤È¥¿¥Ö¤Ç°ÜÆ° (%s ¤Ç¥¨¥Ç¥£¥¿µ¯Æ°)" + +#. #define FORM_LINK_TEXT_UNM_MSG +#: LYMessages.c:87 +msgid "" +"UNMODIFIABLE form text field. Use UP or DOWN arrows or tab to move off." +msgstr "Êѹ¹¤Ç¤¤Ê¤¤¥Õ¥©¡¼¥à¥Æ¥¥¹¥È¥Õ¥£¡¼¥ë¥É [¢¬][¢]¤«¥¿¥Ö¤Ç°ÜÆ°" + +#. #define FORM_LINK_TEXT_SUBMIT_MESSAGE +#: LYMessages.c:89 +msgid "(Form field) Enter text. Use <return> to submit." +msgstr "(¥Õ¥©¡¼¥à¥Õ¥£¡¼¥ë¥É) ¥Æ¥¥¹¥È¤òÆþÎÏ ¥ê¥¿¡¼¥ó¥¡¼¤ÇÁ÷¿®" + +#. #define FORM_LINK_TEXT_SUBMIT_MESSAGE_X +#: LYMessages.c:91 +#, c-format +msgid "(Form field) Enter text. Use <return> to submit (%s for no cache)." +msgstr "" +"(¥Õ¥©¡¼¥à¥Õ¥£¡¼¥ë¥É) ¥Æ¥¥¹¥È¤òÆþÎÏ ¥ê¥¿¡¼¥ó¥¡¼¤ÇÁ÷¿® (%s ¤Ç¥¥ã¥Ã¥·¥å̵¸ú)" + +#. #define FORM_LINK_TEXT_RESUBMIT_MESSAGE +#: LYMessages.c:93 +msgid "" +"(Form field) Enter text. Use <return> to submit, arrows or tab to move off." +msgstr "" +"(¥Õ¥©¡¼¥à¥Õ¥£¡¼¥ë¥É) ¥Æ¥¥¹¥È¤òÆþÎÏ ¥ê¥¿¡¼¥ó¥¡¼¤ÇÁ÷¿®¡¢Ìð°õ¥¡¼¤«¥¿¥Ö¤Ç°ÜÆ°" + +#. #define FORM_LINK_TEXT_SUBMIT_UNM_MSG +#: LYMessages.c:95 +msgid "UNMODIFIABLE form field. Use UP or DOWN arrows or tab to move off." +msgstr "Êѹ¹¤Ç¤¤Ê¤¤¥Õ¥©¡¼¥à¥Õ¥£¡¼¥ë¥É [¢¬][¢]¤«¥¿¥Ö¤Ç°ÜÆ°" + +#. #define FORM_LINK_TEXT_SUBMIT_MAILTO_MSG +#: LYMessages.c:97 +msgid "" +"(mailto form field) Enter text. Use <return> to submit, arrows to move off." +msgstr "" +"(mailto ¥Õ¥©¡¼¥à¥Õ¥£¡¼¥ë¥É) ¥Æ¥¥¹¥È¤òÆþÎÏ ¥ê¥¿¡¼¥ó¤ÇÁ÷¿®¡¢Ìð°õ¥¡¼¤Ç°ÜÆ°" + +#. #define FORM_LINK_TEXT_SUBMIT_MAILTO_DIS_MSG +#: LYMessages.c:99 +msgid "(mailto form field) Mail is disallowed so you cannot submit." +msgstr "" +"(mailto ¥Õ¥©¡¼¥à¥Õ¥£¡¼¥ë¥É) ¥á¡¼¥ë¤Ï¶Ø»ß¤µ¤ì¤Æ¤¤¤Þ¤¹¤Î¤ÇÁ÷¿®¤Ç¤¤Þ¤»¤ó¡£" + +#. #define FORM_LINK_PASSWORD_MESSAGE +#: LYMessages.c:101 +msgid "" +"(Password entry field) Enter text. Use UP or DOWN arrows or tab to move off." +msgstr "(¥Ñ¥¹¥ï¡¼¥ÉÆþÎÏ¥Õ¥£¡¼¥ë¥É) ¥Æ¥¥¹¥È¤òÆþÎÏ [¢¬][¢]¤«¥¿¥Ö¤Ç°ÜÆ°" + +#. #define FORM_LINK_PASSWORD_UNM_MSG +#: LYMessages.c:103 +msgid "UNMODIFIABLE form password. Use UP or DOWN arrows or tab to move off." +msgstr "Êѹ¹¤Ç¤¤Ê¤¤¥Ñ¥¹¥ï¡¼¥É¥Õ¥©¡¼¥à [¢¬][¢]¤«¥¿¥Ö¤Ç°ÜÆ°" + +#. #define FORM_LINK_CHECKBOX_MESSAGE +#: LYMessages.c:105 +msgid "(Checkbox Field) Use right-arrow or <return> to toggle." +msgstr "(¥Á¥§¥Ã¥¯¥Ü¥Ã¥¯¥¹) [¢ª] ¤«¥ê¥¿¡¼¥ó¥¡¼¤Ç¥È¥°¥ëÊѹ¹" + +#. #define FORM_LINK_CHECKBOX_UNM_MSG +#: LYMessages.c:107 +msgid "UNMODIFIABLE form checkbox. Use UP or DOWN arrows or tab to move off." +msgstr "Êѹ¹¤Ç¤¤Ê¤¤¥Õ¥©¡¼¥à¥Á¥§¥Ã¥¯¥Ü¥Ã¥¯¥¹ [¢¬][¢]¤«¥¿¥Ö¤Ç°ÜÆ°" + +#. #define FORM_LINK_RADIO_MESSAGE +#: LYMessages.c:109 +msgid "(Radio Button) Use right-arrow or <return> to toggle." +msgstr "(¥é¥¸¥ª¥Ü¥¿¥ó) [¢ª] ¤«¥ê¥¿¡¼¥ó¥¡¼¤Ç¥È¥°¥ëÁªÂò" + +#. #define FORM_LINK_RADIO_UNM_MSG +#: LYMessages.c:111 +msgid "" +"UNMODIFIABLE form radio button. Use UP or DOWN arrows or tab to move off." +msgstr "Êѹ¹¤Ç¤¤Ê¤¤¥Õ¥©¡¼¥à¥é¥¸¥ª¥Ü¥¿¥ó [¢¬][¢]¤«¥¿¥Ö¤Ç°ÜÆ°" + +#. #define FORM_LINK_SUBMIT_PREFIX +#: LYMessages.c:113 +msgid "Submit ('x' for no cache) to " +msgstr "Á÷¿®([x] ¤Ç¥¥ã¥Ã¥·¥å̵¸ú): " + +#. #define FORM_LINK_RESUBMIT_PREFIX +#: LYMessages.c:115 +msgid "Submit to " +msgstr "Á÷¿®ÂоÝ: " + +#. #define FORM_LINK_SUBMIT_MESSAGE +#: LYMessages.c:117 +msgid "" +"(Form submit button) Use right-arrow or <return> to submit ('x' for no " +"cache)." +msgstr "(¥Õ¥©¡¼¥àÁ÷¿®¥Ü¥¿¥ó) [¢ª] ¤«¥ê¥¿¡¼¥ó¥¡¼¤ÇÁ÷¿® ([x] ¤Ç¥¥ã¥Ã¥·¥å̵¸ú)" + +#. #define FORM_LINK_RESUBMIT_MESSAGE +#: LYMessages.c:119 +msgid "(Form submit button) Use right-arrow or <return> to submit." +msgstr "(¥Õ¥©¡¼¥àÁ÷¿®¥Ü¥¿¥ó) [¢ª] ¤«¥ê¥¿¡¼¥ó¥¡¼¤ÇÁ÷¿®" + +#. #define FORM_LINK_SUBMIT_DIS_MSG +#: LYMessages.c:121 +msgid "DISABLED form submit button. Use UP or DOWN arrows or tab to move off." +msgstr "̵¸ú¤Ë¤µ¤ì¤¿Á÷¿®¥Ü¥¿¥ó [¢¬][¢]¤«¥¿¥Ö¤Ç°ÜÆ°" + +#. #define FORM_LINK_SUBMIT_MAILTO_PREFIX +#: LYMessages.c:123 +msgid "Submit mailto form to " +msgstr "mailto ¥Õ¥©¡¼¥à¤ò°Ê²¼¤ËÁ÷¿®: " + +#. #define FORM_LINK_SUBMIT_MAILTO_MSG +#: LYMessages.c:125 +msgid "(mailto form submit button) Use right-arrow or <return> to submit." +msgstr "(mailto ¥Õ¥©¡¼¥àÁ÷¿®¥Ü¥¿¥ó) [¢ª]¤«¥ê¥¿¡¼¥ó¤ÇÁ÷¿®" + +#. #define FORM_LINK_SUBMIT_MAILTO_DIS_MSG +#: LYMessages.c:127 +msgid "(mailto form submit button) Mail is disallowed so you cannot submit." +msgstr "(mailto ¥Õ¥©¡¼¥àÁ÷¿®¥Ü¥¿¥ó) ¥á¡¼¥ë¤Ï¶Ø»ß¤µ¤ì¤Æ¤¤¤Þ¤¹¤Î¤ÇÁ÷¿®¤Ç¤¤Þ¤»¤ó" + +#. #define FORM_LINK_RESET_MESSAGE +#: LYMessages.c:129 +msgid "" +"(Form reset button) Use right-arrow or <return> to reset form to defaults." +msgstr "(¥Õ¥©¡¼¥à¥ê¥»¥Ã¥È¥Ü¥¿¥ó) [¢ª] ¤«¥ê¥¿¡¼¥ó¥¡¼¤Ç¥Õ¥©¡¼¥àÆâÍƤò¥ê¥»¥Ã¥È" + +#. #define FORM_LINK_RESET_DIS_MSG +#: LYMessages.c:131 +msgid "DISABLED form reset button. Use UP or DOWN arrows or tab to move off." +msgstr "̵¸ú¤Ë¤µ¤ì¤¿¥Õ¥©¡¼¥à¥ê¥»¥Ã¥È¥Ü¥¿¥ó [¢¬][¢]¤«¥¿¥Ö¤Ç°ÜÆ°" + +#. #define FORM_LINK_OPTION_LIST_MESSAGE +#: LYMessages.c:133 +msgid "" +"(Option list) Hit return and use arrow keys and return to select option." +msgstr "" +"(¥ª¥×¥·¥ç¥ó¥ê¥¹¥È) ¥ê¥¿¡¼¥ó¥¡¼¤ò²¡¤·¡¢Ìð°õ¥¡¼¤È¥ê¥¿¡¼¥ó¥¡¼¤Ç°ìÍ÷¤«¤éÁªÂò" + +#. #define CHOICE_LIST_MESSAGE +#: LYMessages.c:135 +msgid "" +"(Choice list) Hit return and use arrow keys and return to select option." +msgstr "" +"(¥Á¥ç¥¤¥¹¥ê¥¹¥È) ¥ê¥¿¡¼¥ó¥¡¼¤ò²¡¤·¡¢Ìð°õ¥¡¼¤È¥ê¥¿¡¼¥ó¥¡¼¤Ç°ìÍ÷¤«¤éÁªÂò" + +#. #define FORM_LINK_OPTION_LIST_UNM_MSG +#: LYMessages.c:137 +msgid "UNMODIFIABLE option list. Use return or arrow keys to review or leave." +msgstr "Êѹ¹¤Ç¤¤Ê¤¤¥ª¥×¥·¥ç¥ó¥ê¥¹¥È¤Ç¤¹¡£¥ê¥¿¡¼¥ó¤«Ìð°õ¥¡¼¤Ç±ÜÍ÷¤Þ¤¿¤Ï°ÜÆ°" + +#. #define CHOICE_LIST_UNM_MSG +#: LYMessages.c:139 +msgid "UNMODIFIABLE choice list. Use return or arrow keys to review or leave." +msgstr "Êѹ¹¤Ç¤¤Ê¤¤ÁªÂò¥ê¥¹¥È¤Ç¤¹¡£¥ê¥¿¡¼¥ó¥¡¼¤«Ìð°õ¥¡¼¤Ç±ÜÍ÷¤Þ¤¿¤Ï°ÜÆ°" + +#: LYMessages.c:140 +msgid "Submitting form..." +msgstr "¥Õ¥©¡¼¥à¤òÁ÷¿®¤·¤Æ¤¤¤Þ¤¹..." + +#: LYMessages.c:141 +msgid "Resetting form..." +msgstr "¥Õ¥©¡¼¥à¤ò¥ê¥»¥Ã¥È¤·¤Æ¤¤¤Þ¤¹..." + +#. #define RELOADING_FORM +#: LYMessages.c:143 +msgid "Reloading document. Any form entries will be lost!" +msgstr "ʸ½ñ¤ÎºÆÆɤ߹þ¤ßÃæ¡£¥Õ¥©¡¼¥àÆâÍƤÏÁ´¤Æ¼º¤ï¤ì¤Þ¤¹!" + +#: LYMessages.c:144 +#, c-format +msgid "Warning: Cannot transcode form data to charset %s!" +msgstr "Ãí°Õ: ¥Õ¥©¡¼¥à¥Ç¡¼¥¿¤ò¥¥ã¥é¥¯¥¿¥»¥Ã¥È %s ¤ËÊÑ´¹¤Ç¤¤Þ¤»¤ó!" + +#. #define NORMAL_LINK_MESSAGE +#: LYMessages.c:147 +msgid "(NORMAL LINK) Use right-arrow or <return> to activate." +msgstr "(Ä̾ï¥ê¥ó¥¯) [¢ª] ¤«¥ê¥¿¡¼¥ó¥¡¼¤ÇÁªÂò" + +#: LYMessages.c:148 +msgid "The resource requested is not available at this time." +msgstr "¸½ºßÍ׵ᤵ¤ì¤¿¥ê¥½¡¼¥¹¤ÏÍøÍѤǤ¤Þ¤»¤ó¡£" + +#: LYMessages.c:149 +msgid "Enter Lynx keystroke command: " +msgstr "Lynx ¤Î¥³¥Þ¥ó¥É¥¡¼¤òÆþÎÏ: " + +#: LYMessages.c:150 +msgid "Looking up " +msgstr "õº÷Ãæ: " + +#: LYMessages.c:151 +#, c-format +msgid "Getting %s" +msgstr "%s ¤ò¼èÆÀÃæ" + +#: LYMessages.c:152 +#, c-format +msgid "Skipping %s" +msgstr "%s ¤òÈô¤Ð¤·¤Þ¤¹" + +#: LYMessages.c:153 +#, c-format +msgid "Using %s" +msgstr "%s ¤ò»È¤¤¤Þ¤¹" + +#: LYMessages.c:154 +#, c-format +msgid "Illegal URL: %s" +msgstr "ÉÔÀµ¤Ê URL ¤Ç¤¹: %s" + +#: LYMessages.c:155 +#, c-format +msgid "Badly formed address %s" +msgstr "%s ¤Ï¥¢¥É¥ì¥¹¤È¤·¤Æ̵¸ú¤Ç¤¹" + +#: LYMessages.c:156 +#, c-format +msgid "URL: %s" +msgstr "URL: %s" + +#: LYMessages.c:157 +msgid "Unable to access WWW file!!!" +msgstr "WWW ¥Õ¥¡¥¤¥ë¤Ë¥¢¥¯¥»¥¹¤Ç¤¤Þ¤»¤ó!!!" + +#: LYMessages.c:158 +#, c-format +msgid "This is a searchable index. Use %s to search." +msgstr "¤³¤ì¤Ï¸¡º÷²Äǽ¤Ê¥¤¥ó¥Ç¥Ã¥¯¥¹¤Ç¤¹¡£%s ¤Ç¸¡º÷¤Ç¤¤Þ¤¹¡£" + +#. #define WWW_INDEX_MORE_MESSAGE +#: LYMessages.c:160 +#, c-format +msgid "--More-- This is a searchable index. Use %s to search." +msgstr "--³¤¤¢¤ê-- ¤³¤ì¤Ï¸¡º÷²Äǽ¤Ê¥¤¥ó¥Ç¥Ã¥¯¥¹¤Ç¤¹¡£%s ¤Ç¸¡º÷¤Ç¤¤Þ¤¹¡£" + +#: LYMessages.c:161 +msgid "You have entered an invalid link number." +msgstr "ÉÔÀµ¤Ê¥ê¥ó¥¯Èֹ椬ÆþÎϤµ¤ì¤Þ¤·¤¿¡£" + +#. #define SOURCE_HELP +#: LYMessages.c:163 +msgid "" +"Currently viewing document source. Press '\\' to return to rendered version." +msgstr "¸½ºßʸ½ñ¤Î¥½¡¼¥¹¤ò±ÜÍ÷Ãæ¤Ç¤¹¡£[\\] ¤ÇÄ̾ï²èÌ̤ËÌá¤ê¤Þ¤¹¡£" + +#. #define NOVICE_LINE_ONE +#: LYMessages.c:165 +msgid "" +" Arrow keys: Up and Down to move. Right to follow a link; Left to go back. " +" \n" +msgstr " Ìð°õ¥¡¼: [¢¬][¢]¤Ç°ÜÆ° [¢ª]¤Ç¥ê¥ó¥¯¤òé¤ë [¢«]¤Ç°ì¤ÄÌá¤ë \n" + +#. #define NOVICE_LINE_TWO +#: LYMessages.c:167 +msgid "" +" H)elp O)ptions P)rint G)o M)ain screen Q)uit /=search [delete]=history list " +"\n" +msgstr "" +" [h]¥Ø¥ë¥×[o]ÀßÄê[p]°õºþ[g]°ÜÆ°[m]¥á¥¤¥ó²èÌÌ[q]½ªÎ» /=¸¡º÷ [Delete]=ÍúÎò \n" + +#. #define NOVICE_LINE_TWO_A +#: LYMessages.c:169 +msgid "" +" O)ther cmds H)elp K)eymap G)oto P)rint M)ain screen o)ptions Q)uit " +"\n" +msgstr "" +" [o]¤½¤Î¾[h]¥Ø¥ë¥×[k]¥¡¼ÇÛÃÖ[g]°ÜÆ°[p]°õºþ[m]¥á¥¤¥ó [o]¥ª¥×¥·¥ç¥ó [q]½ªÎ» " +"\n" + +#. #define NOVICE_LINE_TWO_B +#: LYMessages.c:171 +msgid "" +" O)ther cmds B)ack E)dit D)ownload ^R)eload ^W)ipe screen search doc: / " +"\n" +msgstr "" +" [o]¤½¤Î¾[b]Ìá¤ë[e]ÊÔ½¸[d]¥À¥¦¥ó¥í¡¼¥É [^R]ºÆÆɹþ[^W]¥¯¥ê¥¢ ʸ½ñ¸¡º÷: / \n" + +#. #define NOVICE_LINE_TWO_C +#: LYMessages.c:173 +msgid "" +"O)ther cmds C)omment History: <backspace> Bookmarks: V)iew, A)dd, R)emove " +"\n" +msgstr "" +"[o]¤½¤Î¾[c]¥³¥á¥ó¥È ÍúÎò: [Backspace] ¥Ö¥Ã¥¯¥Þ¡¼¥¯: [v]±ÜÍ÷[a]ÄɲÃ[r]ºï½ü \n" + +#. #define FORM_NOVICELINE_ONE +#: LYMessages.c:175 +msgid "" +" Enter text into the field by typing on the keyboard " +msgstr " ¥¡¼¥Ü¡¼¥É¤ò¥¿¥¤¥×¤¹¤ë¤³¤È¤Ç¥Æ¥¥¹¥È¤ò¥Õ¥£¡¼¥ë¥ÉÆâ¤ËÆþÎÏ" + +#. #define FORM_NOVICELINE_TWO +#: LYMessages.c:177 +msgid "" +" Ctrl-U to delete all text in field, [Backspace] to delete a character " +msgstr "" +" Ctrl-U ¤Ç¥Õ¥£¡¼¥ë¥ÉÆâ¤ÎÁ´¥Æ¥¥¹¥È¤òºï½ü¡¢[Backspace] ¤Ç°ìʸ»úºï½ü " + +#. #define FORM_NOVICELINE_TWO_DELBL +#: LYMessages.c:179 +msgid "" +" Ctrl-U to delete text in field, [Backspace] to delete a character " +msgstr "" +" Ctrl-U ¤Ç¥Õ¥£¡¼¥ë¥ÉÆâ¤Î¥Æ¥¥¹¥È¤òºï½ü¡¢[Backspace] ¤Ç°ìʸ»úºï½ü " + +#. #define FORM_NOVICELINE_TWO_VAR +#: LYMessages.c:181 +#, c-format +msgid "" +" %s to delete all text in field, [Backspace] to delete a character " +msgstr "" +" %s ¤Ç¥Õ¥£¡¼¥ë¥ÉÆâ¤ÎÁ´¥Æ¥¥¹¥È¤òºï½ü¡¢[Backspace] ¤Ç°ìʸ»úºï½ü " + +#. #define FORM_NOVICELINE_TWO_DELBL_VAR +#: LYMessages.c:183 +#, c-format +msgid " %s to delete text in field, [Backspace] to delete a character " +msgstr " %s ¤Ç¥Õ¥£¡¼¥ë¥ÉÆâ¤Î¥Æ¥¥¹¥È¤òºï½ü¡¢[Backspace] ¤Ç°ìʸ»úºï½ü " + +#. mailto +#: LYMessages.c:186 +msgid "Malformed mailto form submission! Cancelled!" +msgstr "ÉÔÀµ¤Ê mailto ¥Õ¥©¡¼¥àÁ÷¿®¤Ç¤¹! ¥¥ã¥ó¥»¥ë¤µ¤ì¤Þ¤·¤¿!" + +#: LYMessages.c:187 +msgid "Warning! Control codes in mail address replaced by ?" +msgstr "Ãí°Õ! ¥á¡¼¥ë¥¢¥É¥ì¥¹Ãæ¤Î¥³¥ó¥È¥í¡¼¥ë¥³¡¼¥É¤Ï ? ¤ÇÃÖ´¹¤µ¤ì¤Þ¤¹" + +#: LYMessages.c:188 +msgid "Mail disallowed! Cannot submit." +msgstr "¥á¡¼¥ë¤Ï¶Ø»ß¤µ¤ì¤Æ¤¤¤Þ¤¹! Á÷¿®¤Ç¤¤Þ¤»¤ó¡£" + +#: LYMessages.c:189 +msgid "Mailto form submission failed!" +msgstr "Mailto ¥Õ¥©¡¼¥à¤ÎÁ÷¿®¤Ë¼ºÇÔ¤·¤Þ¤·¤¿!" + +#: LYMessages.c:190 +msgid "Mailto form submission Cancelled!!!" +msgstr "Mailto ¥Õ¥©¡¼¥à¤ÎÁ÷¿®¤¬¥¥ã¥ó¥»¥ë¤µ¤ì¤Þ¤·¤¿!!!" + +#: LYMessages.c:191 +msgid "Sending form content..." +msgstr "¥Õ¥©¡¼¥à¤ÎÆâÍƤòÁ÷¿®Ãæ..." + +#: LYMessages.c:192 +msgid "No email address is present in mailto URL!" +msgstr "mailto URL ¤ËÅŻҥ᡼¥ë¥¢¥É¥ì¥¹¤¬»ØÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó!" + +#. #define MAILTO_URL_TEMPOPEN_FAILED +#: LYMessages.c:194 +msgid "Unable to open temporary file for mailto URL!" +msgstr "mailto URL ¤Î¤¿¤á¤Î°ì¼¡¥Õ¥¡¥¤¥ë¤¬³«¤±¤Þ¤»¤ó!" + +#. #define INC_ORIG_MSG_PROMPT +#: LYMessages.c:196 +msgid "Do you wish to include the original message?" +msgstr "¸µ¤Î¥á¥Ã¥»¡¼¥¸¤ò´Þ¤á¤Þ¤¹¤«?" + +#. #define INC_PREPARSED_MSG_PROMPT +#: LYMessages.c:198 +msgid "Do you wish to include the preparsed source?" +msgstr "²òÀϺѤߤΥ½¡¼¥¹¤ò´Þ¤á¤Þ¤¹¤«?" + +#. #define SPAWNING_EDITOR_FOR_MAIL +#: LYMessages.c:200 +msgid "Spawning your selected editor to edit mail message" +msgstr "¥á¡¼¥ëËÜʸ¤òÊÔ½¸¤¹¤ë¤¿¤á»ØÄê¤Î¥¨¥Ç¥£¥¿¤òµ¯Æ°¤·¤Æ¤¤¤Þ¤¹" + +#. #define ERROR_SPAWNING_EDITOR +#: LYMessages.c:202 +msgid "Error spawning editor, check your editor definition in the options menu" +msgstr "" +"¥¨¥Ç¥£¥¿¤Îµ¯Æ°¤Ç¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿¡£ÀßÄê¥á¥Ë¥å¡¼¤Î¥¨¥Ç¥£¥¿¤ÎÀßÄê¤ò³Î¤«¤á¤Æ²" +"¼¤µ¤¤¡£" + +#: LYMessages.c:203 +msgid "Send this comment?" +msgstr "¤³¤Î¥³¥á¥ó¥È¤òÁ÷¤ê¤Þ¤¹¤«?" + +#: LYMessages.c:204 +msgid "Send this message?" +msgstr "¤³¤Î¥á¥Ã¥»¡¼¥¸¤òÁ÷¤ê¤Þ¤¹¤«?" + +#: LYMessages.c:205 +msgid "Sending your message..." +msgstr "¥á¥Ã¥»¡¼¥¸¤òÁ÷¤Ã¤Æ¤¤¤Þ¤¹..." + +#: LYMessages.c:206 +msgid "Sending your comment:" +msgstr "¥³¥á¥ó¥ÈÁ÷ÉÕÀè:" + +#. textarea +#: LYMessages.c:209 +msgid "Not in a TEXTAREA; cannot use external editor." +msgstr "¥Æ¥¥¹¥È¥¨¥ê¥¢¤Ç¤Ï¤Ê¤¤¤Î¤Ç³°Éô¥¨¥Ç¥£¥¿¤Ï»È¤¨¤Þ¤»¤ó¡£" + +#: LYMessages.c:210 +msgid "Not in a TEXTAREA; cannot use command." +msgstr "¥Æ¥¥¹¥È¥¨¥ê¥¢¤Ç¤Ï¤Ê¤¤¤Î¤Ç¥³¥Þ¥ó¥É¤Ï»È¤¨¤Þ¤»¤ó¡£" + +#: LYMessages.c:213 +msgid "file: ACTIONs are disallowed!" +msgstr "file: ACTION ¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó!" + +#. #define FILE_SERVED_LINKS_DISALLOWED +#: LYMessages.c:215 +msgid "file: URLs via served links are disallowed!" +msgstr "file: Ä󶡤µ¤ì¤¿¥ê¥ó¥¯·Ðͳ¤Î URL ¤Ïǧ¤á¤é¤ì¤Æ¤¤¤Þ¤»¤ó!" + +#: LYMessages.c:216 +msgid "Access to local files denied." +msgstr "¥í¡¼¥«¥ë¥Õ¥¡¥¤¥ë¤Ø¤Î¥¢¥¯¥»¥¹¤ÏµñÈݤµ¤ì¤Þ¤·¤¿¡£" + +#: LYMessages.c:217 +msgid "file: URLs via bookmarks are disallowed!" +msgstr "file: ¥Ö¥Ã¥¯¥Þ¡¼¥¯·Ðͳ¤Î URL ¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó!" + +#. #define SPECIAL_VIA_EXTERNAL_DISALLOWED +#: LYMessages.c:219 +msgid "This special URL is not allowed in external documents!" +msgstr "¤³¤ÎÆÃÊÌ¤Ê URL ¤Ï³°Éôʸ½ñÃæ¤Ç¤Ïǧ¤á¤é¤ì¤Æ¤¤¤Þ¤»¤ó!" + +#: LYMessages.c:220 +msgid "Press <return> to return to Lynx." +msgstr "¥ê¥¿¡¼¥ó¥¡¼¤Ç Lynx ¤ËÌá¤ê¤Þ¤¹¡£" + +#. #define SPAWNING_MSG +#: LYMessages.c:223 +msgid "Spawning DCL subprocess. Use 'logout' to return to Lynx.\n" +msgstr "DCL ¥µ¥Ö¥×¥í¥»¥¹¤òµ¯Æ°¤·¤Æ¤¤¤Þ¤¹¡£'logout' ¤Ç Lynx ¤ËÌá¤ê¤Þ¤¹¡£\n" + +#. #define SPAWNING_MSG +#: LYMessages.c:227 +msgid "Type EXIT to return to Lynx.\n" +msgstr "EXIT ¤È¥¿¥¤¥×¤¹¤ë¤È Lynx ¤ËÌá¤ê¤Þ¤¹¡£\n" + +#. #define SPAWNING_MSG +#: LYMessages.c:230 +msgid "Spawning your default shell. Use 'exit' to return to Lynx.\n" +msgstr "¥Ç¥Õ¥©¥ë¥È¥·¥§¥ë¤òµ¯Æ°¤·¤Þ¤·¤¿¡£'exit' ¤Ç Lynx ¤ËÌá¤ê¤Þ¤¹¡£\n" + +#: LYMessages.c:233 +msgid "Spawning is currently disabled." +msgstr "³°Éô¥³¥Þ¥ó¥Éµ¯Æ°¤Ï¸½ºß¤Ç¤¤Þ¤»¤ó¡£" + +#: LYMessages.c:234 +msgid "The 'd'ownload command is currently disabled." +msgstr "¥À¥¦¥ó¥í¡¼¥É¥³¥Þ¥ó¥É [d] ¤Ï¸½ºßÍøÍѤǤ¤Þ¤»¤ó¡£" + +#: LYMessages.c:235 +msgid "You cannot download an input field." +msgstr "ÆþÎÏ¥Õ¥£¡¼¥ë¥É¤ò¥À¥¦¥ó¥í¡¼¥É¤¹¤ë¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó¡£" + +#: LYMessages.c:236 +msgid "Form has a mailto action! Cannot download." +msgstr "" +"¥Õ¥©¡¼¥à¤Ë¤Ï mailto ¥¢¥¯¥·¥ç¥ó¤¬´Þ¤Þ¤ì¤Æ¤¤¤Þ¤¹! ¥À¥¦¥ó¥í¡¼¥É¤Ç¤¤Þ¤»¤ó¡£" + +#: LYMessages.c:237 +msgid "You cannot download a mailto: link." +msgstr "mailto: ¥ê¥ó¥¯¤Ï¥À¥¦¥ó¥í¡¼¥É¤Ç¤¤Þ¤»¤ó¡£" + +#: LYMessages.c:238 +msgid "You cannot download cookies." +msgstr "¥¯¥Ã¥¡¼¤ò¥À¥¦¥ó¥í¡¼¥É¤Ç¤¤Þ¤»¤ó¡£" + +#: LYMessages.c:239 +msgid "You cannot download a printing option." +msgstr "°õºþ¥ª¥×¥·¥ç¥ó¤ò¥À¥¦¥ó¥í¡¼¥É¤¹¤ë¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó¡£" + +#: LYMessages.c:240 +msgid "You cannot download an upload option." +msgstr "¥¢¥Ã¥×¥í¡¼¥É¥ª¥×¥·¥ç¥ó¤ò¥À¥¦¥ó¥í¡¼¥É¤¹¤ë¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó¡£" + +#: LYMessages.c:241 +msgid "You cannot download an permit option." +msgstr "µö²Ä¥ª¥×¥·¥ç¥ó¤ò¥À¥¦¥ó¥í¡¼¥É¤¹¤ë¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó¡£" + +#: LYMessages.c:242 +msgid "This special URL cannot be downloaded!" +msgstr "¤³¤ÎÆüì¤Ê URL ¤Ï¥À¥¦¥ó¥í¡¼¥É¤Ç¤¤Þ¤»¤ó!" + +#: LYMessages.c:243 +msgid "Nothing to download." +msgstr "¥À¥¦¥ó¥í¡¼¥É¤¹¤ë¤â¤Î¤¬¤¢¤ê¤Þ¤»¤ó¡£" + +#: LYMessages.c:244 +msgid "Trace ON!" +msgstr "ÄÉÀ׳«»Ï!" + +#: LYMessages.c:245 +msgid "Trace OFF!" +msgstr "ÄÉÀ×½ªÎ»!" + +#. #define CLICKABLE_IMAGES_ON +#: LYMessages.c:247 +msgid "Links will be included for all images! Reloading..." +msgstr "²èÁü¤¹¤Ù¤Æ¤Ø¤Î¥ê¥ó¥¯¤òɽ¼¨¤·¤Þ¤¹! ºÆÆɤ߹þ¤ßÃæ..." + +#. #define CLICKABLE_IMAGES_OFF +#: LYMessages.c:249 +msgid "Standard image handling restored! Reloading..." +msgstr "ɸ½àŪ¤Ê²èÁü¤Î¼è¤ê°·¤¤¤ËÌᤷ¤Þ¤¹! ºÆÆɤ߹þ¤ßÃæ..." + +#. #define PSEUDO_INLINE_ALTS_ON +#: LYMessages.c:251 +msgid "" +"Pseudo_ALTs will be inserted for inlines without ALT strings! Reloading..." +msgstr "ALT »ØÄê¤Î̵¤¤¥¤¥ó¥é¥¤¥ó¤Ëµ¿»÷Ū ALT ¤òÁÞÆþ¤·¤Þ¤¹¡£ºÆÆɤ߹þ¤ßÃæ..." + +#. #define PSEUDO_INLINE_ALTS_OFF +#: LYMessages.c:253 +msgid "Inlines without an ALT string specified will be ignored! Reloading..." +msgstr "ALT »ØÄê¤Î̵¤¤¥¤¥ó¥é¥¤¥ó¤Ï̵»ë¤µ¤ì¤Þ¤¹! ºÆÆɤ߹þ¤ßÃæ..." + +#: LYMessages.c:254 +msgid "Raw 8-bit or CJK mode toggled OFF! Reloading..." +msgstr "À¸ 8 ¥Ó¥Ã¥È / CJK ¥â¡¼¥É ¥È¥°¥ë¥ª¥Õ! ºÆÆɤ߹þ¤ßÃæ..." + +#: LYMessages.c:255 +msgid "Raw 8-bit or CJK mode toggled ON! Reloading..." +msgstr "À¸ 8 ¥Ó¥Ã¥È / CJK ¥â¡¼¥É ¥È¥°¥ë¥ª¥ó! ºÆÆɤ߹þ¤ßÃæ..." + +#. #define HEAD_D_L_OR_CANCEL +#: LYMessages.c:257 +msgid "Send HEAD request for D)ocument or L)ink, or C)ancel? (d,l,c): " +msgstr "[d]ʸ½ñ ¤« [l]¥ê¥ó¥¯¤Ë HEAD ¥ê¥¯¥¨¥¹¥È¤òÁ÷¤ê¤Þ¤¹¤«? ([c]¥¥ã¥ó¥»¥ë): " + +#. #define HEAD_D_OR_CANCEL +#: LYMessages.c:259 +msgid "Send HEAD request for D)ocument, or C)ancel? (d,c): " +msgstr "[d]ʸ½ñ ¤Ë HEAD ¥ê¥¯¥¨¥¹¥È¤òÁ÷¤ê¤Þ¤¹¤«? ([c]¥¥ã¥ó¥»¥ë): " + +#: LYMessages.c:260 +msgid "Sorry, the document is not an http URL." +msgstr "¤³¤Îʸ½ñ¤Ï http URL ¤Ç¤Ï¤Ê¤¤¤è¤¦¤Ç¤¹¡£" + +#: LYMessages.c:261 +msgid "Sorry, the link is not an http URL." +msgstr "¤³¤Î¥ê¥ó¥¯¤Ï http URL ¤Ç¤Ï¤Ê¤¤¤è¤¦¤Ç¤¹¡£" + +#: LYMessages.c:262 +msgid "Sorry, the ACTION for this form is disabled." +msgstr "¤³¤Î¥Õ¥©¡¼¥à¤Ø¤Î ACTION ¤Ï¤Ç¤¤Þ¤»¤ó¡£" + +#. #define FORM_ACTION_NOT_HTTP_URL +#: LYMessages.c:264 +msgid "Sorry, the ACTION for this form is not an http URL." +msgstr "¤³¤Î¥Õ¥©¡¼¥à¤Ø¤Î ACTION ¤Ï http URL ¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó¡£" + +#: LYMessages.c:265 +msgid "Not an http URL or form ACTION!" +msgstr "http URL ¤Ç¤â¥Õ¥©¡¼¥à ACTION ¤Ç¤â¤¢¤ê¤Þ¤»¤ó!" + +#: LYMessages.c:266 +msgid "This special URL cannot be a form ACTION!" +msgstr "¤³¤ÎÆÃÊÌ¤Ê URL ¤Ï¥Õ¥©¡¼¥à ACTION ¤Ë¤Ï¤Ê¤êÆÀ¤Þ¤»¤ó!" + +#: LYMessages.c:267 +msgid "URL is not in starting realm!" +msgstr "URL ¤¬³«»ÏÎΰè¤Ë¤¢¤ê¤Þ¤»¤ó!" + +#: LYMessages.c:268 +msgid "News posting is disabled!" +msgstr "¥Ë¥å¡¼¥¹Åê¹Æ¤Ï¤Ç¤¤Þ¤»¤ó!" + +#: LYMessages.c:269 +msgid "File management support is disabled!" +msgstr "¥Õ¥¡¥¤¥ë´ÉÍý¥µ¥Ý¡¼¥È¤ÏÍøÍѤǤ¤Þ¤»¤ó!" + +#: LYMessages.c:270 +msgid "No jump file is currently available." +msgstr "¸½ºßÍøÍѲÄǽ¤Ê¥¸¥ã¥ó¥×¥Õ¥¡¥¤¥ë¤Ï¤¢¤ê¤Þ¤»¤ó¡£" + +#: LYMessages.c:271 +msgid "Jump to (use '?' for list): " +msgstr "¥¸¥ã¥ó¥×Àè ([?] ¤Ç°ìÍ÷): " + +#: LYMessages.c:272 +msgid "Jumping to a shortcut URL is disallowed!" +msgstr "¥·¥ç¡¼¥È¥«¥Ã¥È URL ¤Ø¤Î¥¸¥ã¥ó¥×¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó!" + +#: LYMessages.c:273 +msgid "Random URL is disallowed! Use a shortcut." +msgstr "¥é¥ó¥À¥à URL ¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó! ¥·¥ç¡¼¥È¥«¥Ã¥È¤ò»È¤Ã¤Æ¤¯¤À¤µ¤¤¡£" + +#: LYMessages.c:274 +msgid "No random URLs have been used thus far." +msgstr "º£¤Þ¤Ç¤Î¤È¤³¤í¥é¥ó¥À¥à URL ¤Ï°ì¤Ä¤â»È¤ï¤ì¤Æ¤¤¤Þ¤»¤ó¡£" + +#: LYMessages.c:275 +msgid "Bookmark features are currently disabled." +msgstr "¥Ö¥Ã¥¯¥Þ¡¼¥¯µ¡Ç½¤Ï¸½ºßÍøÍѤǤ¤Þ¤»¤ó¡£" + +#: LYMessages.c:276 +msgid "Execution via bookmarks is disabled." +msgstr "¥Ö¥Ã¥¯¥Þ¡¼¥¯¤«¤é¤Î¼Â¹Ô¤Ï¤Ç¤¤Þ¤»¤ó¡£" + +#. #define BOOKMARK_FILE_NOT_DEFINED +#: LYMessages.c:278 +#, c-format +msgid "Bookmark file is not defined. Use %s to see options." +msgstr "" +"¥Ö¥Ã¥¯¥Þ¡¼¥¯¥Õ¥¡¥¤¥ë¤ÏÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó¡£%s ¤Ç¥ª¥×¥·¥ç¥ó¤¬¸«¤é¤ì¤Þ¤¹¡£" + +#. #define NO_TEMP_FOR_HOTLIST +#: LYMessages.c:280 +msgid "Unable to open tempfile for X Mosaic hotlist conversion." +msgstr "X Mosaic ¥Û¥Ã¥È¥ê¥¹¥ÈÊÑ´¹ÍѤΰì»þ¥Õ¥¡¥¤¥ë¤¬³«¤±¤Þ¤»¤ó¡£" + +#: LYMessages.c:281 +msgid "ERROR - unable to open bookmark file." +msgstr "¥¨¥é¡¼ - ¥Ö¥Ã¥¯¥Þ¡¼¥¯¥Õ¥¡¥¤¥ë¤ò³«¤±¤Þ¤»¤ó¡£" + +#. #define BOOKMARK_OPEN_FAILED_FOR_DEL +#: LYMessages.c:283 +msgid "Unable to open bookmark file for deletion of link." +msgstr "¥ê¥ó¥¯¤òºï½ü¤¹¤ë¤Î¤Ë¥Ö¥Ã¥¯¥Þ¡¼¥¯¥Õ¥¡¥¤¥ë¤¬³«¤±¤Þ¤»¤ó¡£" + +#. #define BOOKSCRA_OPEN_FAILED_FOR_DEL +#: LYMessages.c:285 +msgid "Unable to open scratch file for deletion of link." +msgstr "¥ê¥ó¥¯¤òºï½ü¤¹¤ë¤Î¤Ë¥¹¥¯¥é¥Ã¥Á¥Õ¥¡¥¤¥ë¤¬³«¤±¤Þ¤»¤ó¡£" + +#: LYMessages.c:287 +msgid "Error renaming scratch file." +msgstr "¥¹¥¯¥é¥Ã¥Á¥Õ¥¡¥¤¥ë¤Î²þ̾»þ¤Ë¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿¡£" + +#: LYMessages.c:289 +msgid "Error renaming temporary file." +msgstr "°ì»þ¥Õ¥¡¥¤¥ë¤Î²þ̾»þ¤Ë¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿¡£" + +#. #define BOOKTEMP_COPY_FAIL +#: LYMessages.c:291 +msgid "Unable to copy temporary file for deletion of link." +msgstr "¥ê¥ó¥¯ºï½ü¤Î¤¿¤á¤Ë¡¢°ì»þ¥Õ¥¡¥¤¥ë¤ò¥³¥Ô¡¼¤¹¤ë¤³¤È¤¬¤Ç¤¤Þ¤»¤ó¡£" + +#. #define BOOKTEMP_REOPEN_FAIL_FOR_DEL +#: LYMessages.c:293 +msgid "Unable to reopen temporary file for deletion of link." +msgstr "¥ê¥ó¥¯ºï½ü¤Î¤¿¤á¤Ë¡¢°ì»þ¥Õ¥¡¥¤¥ë¤òºÆ¥ª¡¼¥×¥ó¤¹¤ë¤³¤È¤¬¤Ç¤¤Þ¤»¤ó¡£" + +#. #define BOOKMARK_LINK_NOT_ONE_LINE +#: LYMessages.c:296 +msgid "Link is not by itself all on one line in bookmark file." +msgstr "" +"¥ê¥ó¥¯¤¬¡¢¥Ö¥Ã¥¯¥Þ¡¼¥¯¥Õ¥¡¥¤¥ë¤Ë¤ª¤¤¤Æ¤½¤ì¤À¤±¤Ç°ì¹Ô¤Ë¤Þ¤È¤Þ¤Ã¤Æ¤¤¤Æ¤Ï¤¤¤±¤Þ¤" +"»¤ó¡£" + +#: LYMessages.c:297 +msgid "Bookmark deletion failed." +msgstr "¥Ö¥Ã¥¯¥Þ¡¼¥¯ºï½ü¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡£" + +#. #define BOOKMARKS_NOT_TRAVERSED +#: LYMessages.c:299 +msgid "Bookmark files cannot be traversed (only http URLs)." +msgstr "¥Ö¥Ã¥¯¥Þ¡¼¥¯¥Õ¥¡¥¤¥ë¤Ï¥È¥é¥Ð¡¼¥¹¤Ç¤¤Þ¤»¤ó (http URL ¤Î¤ß)¡£" + +#. #define BOOKMARKS_NOT_OPEN +#: LYMessages.c:301 +msgid "Unable to open bookmark file, use 'a' to save a link first" +msgstr "¥Ö¥Ã¥¯¥Þ¡¼¥¯¤ò³«¤±¤Þ¤»¤ó¡£ºÇ½é¤Ë [a] ¤Ç¥ê¥ó¥¯¤òÊݸ¤·¤Æ¤¯¤À¤µ¤¤¡£" + +#: LYMessages.c:302 +msgid "There are no links in this bookmark file!" +msgstr "¤³¤Î¥Ö¥Ã¥¯¥Þ¡¼¥¯¥Õ¥¡¥¤¥ë¤Ë¤Ï°ì¤Ä¤â¥ê¥ó¥¯¤¬´Þ¤Þ¤ì¤Æ¤¤¤Þ¤»¤ó!" + +#. #define BOOK_D_L_OR_CANCEL +#: LYMessages.c:304 +msgid "Save D)ocument or L)ink to bookmark file or C)ancel? (d,l,c): " +msgstr "[d]ʸ½ñ [l]¥ê¥ó¥¯ ¤ò¥Ö¥Ã¥¯¥Þ¡¼¥¯¤ËÊݸ¤·¤Þ¤¹ ([c]¥¥ã¥ó¥»¥ë): " + +#: LYMessages.c:305 +msgid "Save D)ocument to bookmark file or C)ancel? (d,c): " +msgstr "[d]¤Çʸ½ñ¤ò¥Ö¥Ã¥¯¥Þ¡¼¥¯¥Õ¥¡¥¤¥ë¤ËÊݸ ([c]¥¥ã¥ó¥»¥ë): " + +#: LYMessages.c:306 +msgid "Save L)ink to bookmark file or C)ancel? (l,c): " +msgstr "[l]¤Ç¥ê¥ó¥¯¤ò¥Ö¥Ã¥¯¥Þ¡¼¥¯¥Õ¥¡¥¤¥ë¤ËÊݸ ([c]¥¥ã¥ó¥»¥ë): " + +#. #define NOBOOK_POST_FORM +#: LYMessages.c:308 +msgid "Documents from forms with POST content cannot be saved as bookmarks." +msgstr "" +"POST " +"¥³¥ó¥Æ¥ó¥È¤Î¥Õ¥©¡¼¥à¤«¤é¤Î¥É¥¥å¥á¥ó¥È¤Ï¥Ö¥Ã¥¯¥Þ¡¼¥¯¤È¤·¤ÆÊݸ¤Ç¤¤Þ¤»¤ó¡£" + +#: LYMessages.c:309 +msgid "Cannot save form fields/links" +msgstr "¥Õ¥©¡¼¥à¥Õ¥£¡¼¥ë¥É/¥ê¥ó¥¯¤ÏÊݸ¤Ç¤¤Þ¤»¤ó" + +#. #define NOBOOK_HSML +#: LYMessages.c:311 +msgid "History, showinfo, menu and list files cannot be saved as bookmarks." +msgstr "" +"ÍúÎò¤ä¾ðÊóɽ¼¨¡¢¥á¥Ë¥å¡¼¡¢¥Õ¥¡¥¤¥ë°ìÍ÷¤Ï¥Ö¥Ã¥¯¥Þ¡¼¥¯¤È¤·¤ÆÊݸ¤Ç¤¤Þ¤»¤ó¡£" + +#. #define CONFIRM_BOOKMARK_DELETE +#: LYMessages.c:313 +msgid "Do you really want to delete this link from your bookmark file?" +msgstr "ËÜÅö¤Ë¤³¤Î¥ê¥ó¥¯¤ò¥Ö¥Ã¥¯¥Þ¡¼¥¯¤«¤éºï½ü¤·¤Æ¤è¤í¤·¤¤¤Ç¤¹¤«?" + +#: LYMessages.c:314 +msgid "Malformed address." +msgstr "ÉÔÀµ¤Ê¥¢¥É¥ì¥¹¤Ç¤¹¡£" + +#. #define HISTORICAL_ON_MINIMAL_OFF +#: LYMessages.c:316 +msgid "Historical comment parsing ON (Minimal is overridden)!" +msgstr "ÀΤʤ¬¤é¤Î¥³¥á¥ó¥È²òÀÏ¥ª¥ó(ºÇ¾®¸Â¤Î²òÀϤè¤êÍ¥Àè)!" + +#. #define HISTORICAL_OFF_MINIMAL_ON +#: LYMessages.c:318 +msgid "Historical comment parsing OFF (Minimal is in effect)!" +msgstr "ÀΤʤ¬¤é¤Î¥³¥á¥ó¥È²òÀÏ¥ª¥Õ(ºÇ¾®¸Â¤Î²òÀϤ¬Í¸ú)!" + +#. #define HISTORICAL_ON_VALID_OFF +#: LYMessages.c:320 +msgid "Historical comment parsing ON (Valid is overridden)!" +msgstr "ÀΤʤ¬¤é¤Î¥³¥á¥ó¥È²òÀÏ¥ª¥ó(¸·Ì©¤Ê²òÀϤè¤êÍ¥Àè)!" + +#. #define HISTORICAL_OFF_VALID_ON +#: LYMessages.c:322 +msgid "Historical comment parsing OFF (Valid is in effect)!" +msgstr "ÀΤʤ¬¤é¤Î¥³¥á¥ó¥È²òÀÏ¥ª¥Õ(¸·Ì©¤Ê²òÀϤ¬Í¸ú)!" + +#. #define MINIMAL_ON_IN_EFFECT +#: LYMessages.c:324 +msgid "Minimal comment parsing ON (and in effect)!" +msgstr "ºÇ¾®¸Â¤Î¥³¥á¥ó¥È²òÀÏ¥ª¥ó(¤«¤Ä͸ú)!" + +#. #define MINIMAL_OFF_VALID_ON +#: LYMessages.c:326 +msgid "Minimal comment parsing OFF (Valid is in effect)!" +msgstr "ºÇ¾®¸Â¤Î¥³¥á¥ó¥È²òÀÏ¥ª¥Õ(¸·Ì©¤Ê²òÀϤ¬Í¸ú)!" + +#. #define MINIMAL_ON_BUT_HISTORICAL +#: LYMessages.c:328 +msgid "Minimal comment parsing ON (but Historical is in effect)!" +msgstr "ºÇ¾®¸Â¤Î¥³¥á¥ó¥È²òÀÏ¥ª¥ó(¤Ç¤âÀΤʤ¬¤é¤Î²òÀϤ¬Í¸ú)!" + +#. #define MINIMAL_OFF_HISTORICAL_ON +#: LYMessages.c:330 +msgid "Minimal comment parsing OFF (Historical is in effect)!" +msgstr "ºÇ¾®¸Â¤Î¥³¥á¥ó¥È²òÀÏ¥ª¥Õ(ÀΤʤ¬¤é¤Î²òÀϤ¬Í¸ú)!" + +#: LYMessages.c:331 +msgid "Soft double-quote parsing ON!" +msgstr "´Ë¤ä¤«¤Ê¥À¥Ö¥ë¥¯¥©¡¼¥È²òÀÏ¥ª¥ó!" + +#: LYMessages.c:332 +msgid "Soft double-quote parsing OFF!" +msgstr "´Ë¤ä¤«¤Ê¥À¥Ö¥ë¥¯¥©¡¼¥È²òÀÏ¥ª¥Õ!" + +#: LYMessages.c:333 +msgid "Now using TagSoup parsing of HTML." +msgstr "HTML ¤ò¡Ö¥¿¥°¤Î¤´¤Ã¤¿¼Ñ¡×É÷Ì£¤Ç²òÀϤ·¤Þ¤¹¡£" + +#: LYMessages.c:334 +msgid "Now using SortaSGML parsing of HTML!" +msgstr "HTML ¤ò¡Ö¤½¤³¤½¤³¸·Ì© SGML¡×É÷Ì£¤Ç²òÀϤ·¤Þ¤¹!" + +#: LYMessages.c:335 +msgid "You are already at the end of this document." +msgstr "¤¹¤Ç¤Ë¤³¤Îʸ½ñ¤ÎËöÈø¤Ë¤¤¤Þ¤¹¡£" + +#: LYMessages.c:336 +msgid "You are already at the beginning of this document." +msgstr "¤¹¤Ç¤Ë¤³¤Îʸ½ñ¤ÎÀèƬ¤Ë¤¤¤Þ¤¹¡£" + +#: LYMessages.c:337 +#, c-format +msgid "You are already at page %d of this document." +msgstr "¤¹¤Ç¤Ë¤³¤Îʸ½ñ¤Î %d ¥Ú¡¼¥¸Ìܤˤ¤¤Þ¤¹¡£" + +#: LYMessages.c:338 +#, c-format +msgid "Link number %d already is current." +msgstr "¤¹¤Ç¤Ë¥ê¥ó¥¯ÈÖ¹æ %d ¤òÁªÂò¤·¤Æ¤¤¤Þ¤¹¡£" + +#: LYMessages.c:339 +msgid "You are already at the first document" +msgstr "¤³¤ì°Ê¾åÌá¤ì¤Þ¤»¤ó¡£" + +#: LYMessages.c:340 +msgid "There are no links above this line of the document." +msgstr "Åöʸ½ñ¤Î¤³¤Î¹Ô¤è¤ê¾å¤Ë¥ê¥ó¥¯¤Ï¤¢¤ê¤Þ¤»¤ó¡£" + +#: LYMessages.c:341 +msgid "There are no links below this line of the document." +msgstr "Åöʸ½ñ¤Î¤³¤Î¹Ô¤è¤ê²¼¤Ë¤ê¤ó¤¯¤Ï¤¢¤ê¤Þ¤»¤ó¡£" + +#. #define MAXLEN_REACHED_DEL_OR_MOV +#: LYMessages.c:343 +msgid "Maximum length reached! Delete text or move off field." +msgstr "Ťµ¤Î¸Â³¦¤Ç¤¹! ¥Æ¥¥¹¥È¤òºï½ü¤¹¤ë¤«¥Õ¥£¡¼¥ë¥É¤ò°ÜÆ°¤·¤Æ¤¯¤À¤µ¤¤" + +#. #define NOT_ON_SUBMIT_OR_LINK +#: LYMessages.c:345 +msgid "You are not on a form submission button or normal link." +msgstr "¸½ºß¥Õ¥©¡¼¥àÁ÷¿®¥Ü¥¿¥ó¤Þ¤¿¤ÏÄ̾ï¤Î¥ê¥ó¥¯¤Î¾å¤Ë¤¤¤Þ¤»¤ó" + +#. #define NEED_CHECKED_RADIO_BUTTON +#: LYMessages.c:347 +msgid "One radio button must be checked at all times!" +msgstr "¥é¥¸¥ª¥Ü¥¿¥ó¤ÏºÇÄã°ì¤Ä¤Ï»ØÄꤷ¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó!" + +#: LYMessages.c:348 +msgid "No submit button for this form, submit single text field?" +msgstr "" +"¥Õ¥©¡¼¥à¤Ë¤ÏÁ÷¿®¥Ü¥¿¥ó¤¬¤¢¤ê¤Þ¤»¤ó¡£Ã±°ì¤Î¥Æ¥¥¹¥È¥Õ¥£¡¼¥ë¥É¤òÁ÷¿®¤·¤Þ¤¹¤«?" + +#: LYMessages.c:349 +msgid "Do you want to go back to the previous document?" +msgstr "°ì¤ÄÁ°¤Îʸ½ñ¤ËÌá¤ê¤Þ¤¹¤«?" + +#: LYMessages.c:350 +msgid "Use arrows or tab to move off of field." +msgstr "Ìð°õ¥¡¼¤«¥¿¥Ö¤Ç¥Õ¥£¡¼¥ë¥É¤ò°ÜÆ°" + +#. #define ENTER_TEXT_ARROWS_OR_TAB +#: LYMessages.c:352 +msgid "Enter text. Use arrows or tab to move off of field." +msgstr "¥Æ¥¥¹¥È¤òÆþÎÏ Ìð°õ¥¡¼¤«¥¿¥Ö¤Ç¥Õ¥£¡¼¥ë¥É¤ò°ÜÆ°" + +#: LYMessages.c:353 +msgid "** Bad HTML!! No form action defined. **" +msgstr "ÉÔÀµ¤Ê HTML ¤Ç¤¹!! ¥Õ¥©¡¼¥à¥¢¥¯¥·¥ç¥ó¤¬ÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó **" + +#: LYMessages.c:354 +msgid "Bad HTML!! Unable to create popup window!" +msgstr "ÉÔÀµ¤Ê HTML ¤Ç¤¹!! ¥Ý¥Ã¥×¥¢¥Ã¥×¥¦¥£¥ó¥É¥¦¤¬ºî¤ì¤Þ¤»¤ó **" + +#: LYMessages.c:355 +msgid "Unable to create popup window!" +msgstr "¥Ý¥Ã¥×¥¢¥Ã¥×¥¦¥£¥ó¥É¥¦¤¬ºî¤ì¤Þ¤»¤ó!" + +#: LYMessages.c:356 +msgid "Goto a random URL is disallowed!" +msgstr "¥é¥ó¥À¥à URL ¤Ø¤Î Goto ¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó!" + +#: LYMessages.c:357 +msgid "Goto a non-http URL is disallowed!" +msgstr "Èó http URL ¤Ø¤Î Goto ¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó!" + +#: LYMessages.c:358 +msgid "You are not allowed to goto \"cso:\" URLs" +msgstr "Goto ¤Ç \"cso:\" URL ¤ò»ØÄꤹ¤ë¤Î¤Ï¶Ø»ß¤µ¤ì¤Æ¤¤¤Þ¤¹" + +#: LYMessages.c:359 +msgid "You are not allowed to goto \"file:\" URLs" +msgstr "Goto ¤Ç \"file:\" URL ¤ò»ØÄꤹ¤ë¤Î¤Ï¶Ø»ß¤µ¤ì¤Æ¤¤¤Þ¤¹" + +#: LYMessages.c:360 +msgid "You are not allowed to goto \"finger:\" URLs" +msgstr "Goto ¤Ç \"finger:\" URL ¤ò»ØÄꤹ¤ë¤Î¤Ï¶Ø»ß¤µ¤ì¤Æ¤¤¤Þ¤¹" + +#: LYMessages.c:361 +msgid "You are not allowed to goto \"ftp:\" URLs" +msgstr "Goto ¤Ç \"ftp:\" URL ¤ò»ØÄꤹ¤ë¤Î¤Ï¶Ø»ß¤µ¤ì¤Æ¤¤¤Þ¤¹" + +#: LYMessages.c:362 +msgid "You are not allowed to goto \"gopher:\" URLs" +msgstr "Goto ¤Ç \"gopher:\" URL ¤ò»ØÄꤹ¤ë¤Î¤Ï¶Ø»ß¤µ¤ì¤Æ¤¤¤Þ¤¹" + +#: LYMessages.c:363 +msgid "You are not allowed to goto \"http:\" URLs" +msgstr "Goto ¤Ç \"http:\" URL ¤ò»ØÄꤹ¤ë¤Î¤Ï¶Ø»ß¤µ¤ì¤Æ¤¤¤Þ¤¹" + +#: LYMessages.c:364 +msgid "You are not allowed to goto \"https:\" URLs" +msgstr "Goto ¤Ç \"https:\" URL ¤ò»ØÄꤹ¤ë¤Î¤Ï¶Ø»ß¤µ¤ì¤Æ¤¤¤Þ¤¹<" + +#: LYMessages.c:365 +msgid "You are not allowed to goto \"lynxcgi:\" URLs" +msgstr "Goto ¤Ç \"lynxcgi:\" URL ¤ò»ØÄꤹ¤ë¤Î¤Ï¶Ø»ß¤µ¤ì¤Æ¤¤¤Þ¤¹<" + +#: LYMessages.c:366 +msgid "You are not allowed to goto \"lynxexec:\" URLs" +msgstr "Goto ¤Ç \"lynxexec:\" URL ¤ò»ØÄꤹ¤ë¤Î¤Ï¶Ø»ß¤µ¤ì¤Æ¤¤¤Þ¤¹<" + +#: LYMessages.c:367 +msgid "You are not allowed to goto \"lynxprog:\" URLs" +msgstr "Goto ¤Ç \"lynxprog:\" URL ¤ò»ØÄꤹ¤ë¤Î¤Ï¶Ø»ß¤µ¤ì¤Æ¤¤¤Þ¤¹<" + +#: LYMessages.c:368 +msgid "You are not allowed to goto \"mailto:\" URLs" +msgstr "Goto ¤Ç \"mailto:\" URL ¤ò»ØÄꤹ¤ë¤Î¤Ï¶Ø»ß¤µ¤ì¤Æ¤¤¤Þ¤¹<" + +#: LYMessages.c:369 +msgid "You are not allowed to goto \"news:\" URLs" +msgstr "Goto ¤Ç \"news:\" URL ¤ò»ØÄꤹ¤ë¤Î¤Ï¶Ø»ß¤µ¤ì¤Æ¤¤¤Þ¤¹<" + +#: LYMessages.c:370 +msgid "You are not allowed to goto \"nntp:\" URLs" +msgstr "Goto ¤Ç \"nntp:\" URL ¤ò»ØÄꤹ¤ë¤Î¤Ï¶Ø»ß¤µ¤ì¤Æ¤¤¤Þ¤¹<" + +#: LYMessages.c:371 +msgid "You are not allowed to goto \"rlogin:\" URLs" +msgstr "Goto ¤Ç \"rlogin:\" URL ¤ò»ØÄꤹ¤ë¤Î¤Ï¶Ø»ß¤µ¤ì¤Æ¤¤¤Þ¤¹<" + +#: LYMessages.c:372 +msgid "You are not allowed to goto \"snews:\" URLs" +msgstr "Goto ¤Ç \"snews:\" URL ¤ò»ØÄꤹ¤ë¤Î¤Ï¶Ø»ß¤µ¤ì¤Æ¤¤¤Þ¤¹<" + +#: LYMessages.c:373 +msgid "You are not allowed to goto \"telnet:\" URLs" +msgstr "Goto ¤Ç \"telnet:\" URL ¤ò»ØÄꤹ¤ë¤Î¤Ï¶Ø»ß¤µ¤ì¤Æ¤¤¤Þ¤¹<" + +#: LYMessages.c:374 +msgid "You are not allowed to goto \"tn3270:\" URLs" +msgstr "Goto ¤Ç \"tn3270:\" URL ¤ò»ØÄꤹ¤ë¤Î¤Ï¶Ø»ß¤µ¤ì¤Æ¤¤¤Þ¤¹<" + +#: LYMessages.c:375 +msgid "You are not allowed to goto \"wais:\" URLs" +msgstr "Goto ¤Ç \"wais:\" URL ¤ò»ØÄꤹ¤ë¤Î¤Ï¶Ø»ß¤µ¤ì¤Æ¤¤¤Þ¤¹" + +#: LYMessages.c:376 +msgid "This special URL is not allowed as a goto!" +msgstr "¤³¤ÎÆüì¤Ê URL ¤Ï goto ¤È¤·¤Æǧ¤á¤é¤ì¤Þ¤»¤ó!" + +#: LYMessages.c:377 +msgid "URL to open: " +msgstr "³«¤¤¿¤¤ URL: " + +#: LYMessages.c:378 +msgid "Edit the current Goto URL: " +msgstr "¸½ºß¤Î Goto URL ¤òÊÔ½¸: " + +#: LYMessages.c:379 +msgid "Edit the previous Goto URL: " +msgstr "Á°¤Î Goto URL: ¤òÊÔ½¸: " + +#: LYMessages.c:380 +msgid "Edit a previous Goto URL: " +msgstr "°ÊÁ°¤Î Goto URL: ¤òÊÔ½¸: " + +#: LYMessages.c:381 +msgid "Current document has POST data." +msgstr "¸½ºß¤Îʸ½ñ¤Ï POST ¥Ç¡¼¥¿¤ò´Þ¤ó¤Ç¤¤¤Þ¤¹¡£" + +#: LYMessages.c:382 +msgid "Edit this document's URL: " +msgstr "¤³¤Îʸ½ñ¤Î URL ¤òÊÔ½¸: " + +#: LYMessages.c:383 +msgid "Edit the current link's URL: " +msgstr "¸½ºß¤Î URL ¥ê¥ó¥¯Àè¤òÊÔ½¸: " + +#: LYMessages.c:384 +msgid "You cannot edit File Management URLs" +msgstr "¥Õ¥¡¥¤¥ë´ÉÍý URL ¤ÏÊÔ½¸¤Ç¤¤Þ¤»¤ó¡£" + +#: LYMessages.c:385 +msgid "Enter a database query: " +msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹¤Ç¸¡º÷¤¹¤ëʸ»úÎó¤òÆþÎÏ: " + +#: LYMessages.c:386 +msgid "Enter a whereis query: " +msgstr "¸¡º÷¤¹¤ëʸ»úÎó: " + +#: LYMessages.c:387 +msgid "Edit the current query: " +msgstr "¸½ºß¤Î¸¡º÷ʸ»úÎó¤òÊÔ½¸: " + +#: LYMessages.c:388 +msgid "Edit the previous query: " +msgstr "°ì¤ÄÁ°¤Î¸¡º÷ʸ»úÎó¤òÊÔ½¸: " + +#: LYMessages.c:389 +msgid "Edit a previous query: " +msgstr "°ÊÁ°¤Î¸¡º÷ʸ»úÎó¤òÊÔ½¸: " + +#. #define USE_C_R_TO_RESUB_CUR_QUERY +#: LYMessages.c:391 +msgid "Use Control-R to resubmit the current query." +msgstr "Ctrl-R ¤Ç¸½ºß¤Î¸¡º÷ʸ»úÎó¤òºÆÁ÷¿®" + +#: LYMessages.c:392 +msgid "Edit the current shortcut: " +msgstr "¸½ºß¤Î¥·¥ç¡¼¥È¥«¥Ã¥È¤òÊÔ½¸: " + +#: LYMessages.c:393 +msgid "Edit the previous shortcut: " +msgstr "°ì¤ÄÁ°¤Î¥·¥ç¡¼¥È¥«¥Ã¥È¤òÊÔ½¸: " + +#: LYMessages.c:394 +msgid "Edit a previous shortcut: " +msgstr "°ÊÁ°¤Î¥·¥ç¡¼¥È¥«¥Ã¥È¤òÊÔ½¸: " + +#: LYMessages.c:395 +#, c-format +msgid "Key '%c' is not mapped to a jump file!" +msgstr "¥¡¼ '%c' ¤Ï¥¸¥ã¥ó¥×¥Õ¥¡¥¤¥ë¤Ë³ä¤êÅö¤Æ¤é¤ì¤Æ¤¤¤Þ¤»¤ó!" + +#: LYMessages.c:396 +msgid "Cannot locate jump file!" +msgstr "¥¸¥ã¥ó¥×¥Õ¥¡¥¤¥ë¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó!" + +#: LYMessages.c:397 +msgid "Cannot open jump file!" +msgstr "¥¸¥ã¥ó¥×¥Õ¥¡¥¤¥ë¤¬³«¤±¤Þ¤»¤ó!" + +#: LYMessages.c:398 +msgid "Error reading jump file!" +msgstr "¥¸¥ã¥ó¥×¥Õ¥¡¥¤¥ë¤ÎÆɤ߹þ¤ß¤Ç¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿!" + +#: LYMessages.c:399 +msgid "Out of memory reading jump file!" +msgstr "¥¸¥ã¥ó¥×¥Õ¥¡¥¤¥ë¤ÎÆɤ߹þ¤ß¤Ç¥á¥â¥ê¤¬Â¤ê¤Ê¤¯¤Ê¤ê¤Þ¤·¤¿!" + +#: LYMessages.c:400 +msgid "Out of memory reading jump table!" +msgstr "¥¸¥ã¥ó¥×¥Æ¡¼¥Ö¥ë¤ÎÆɤ߹þ¤ß¤Ç¥á¥â¥ê¤¬Â¤ê¤Ê¤¯¤Ê¤ê¤Þ¤·¤¿!" + +#: LYMessages.c:401 +msgid "No index is currently available." +msgstr "¸½ºßÍøÍѲÄǽ¤Ê¥¤¥ó¥Ç¥Ã¥¯¥¹¤Ï¤¢¤ê¤Þ¤»¤ó¡£" + +#. #define CONFIRM_MAIN_SCREEN +#: LYMessages.c:403 +msgid "Do you really want to go to the Main screen?" +msgstr "ËÜÅö¤Ë¥á¥¤¥ó²èÌ̤˹Ԥ¤Þ¤¹¤«?" + +#: LYMessages.c:404 +msgid "You are already at main screen!" +msgstr "¤¹¤Ç¤Ë¥á¥¤¥ó²èÌ̤ˤ¤¤Þ¤¹!" + +#. #define NOT_ISINDEX +#: LYMessages.c:406 +msgid "" +"Not a searchable indexed document -- press '/' to search for a text string" +msgstr "¸¡º÷²Äǽ¤Êº÷°úÉդʸ½ñ¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó -- [/] ¤Çʸ»úÎó¤ò¸¡º÷" + +#. #define NO_OWNER +#: LYMessages.c:408 +msgid "No owner is defined for this file so you cannot send a comment" +msgstr "¥Õ¥¡¥¤¥ë¤Î½êͼԤ¬»ØÄꤵ¤ì¤Æ¤¤¤Ê¤¤¤Î¤Ç¥³¥á¥ó¥È¤ÏÁ÷¤ì¤Þ¤»¤ó" + +#: LYMessages.c:409 +#, c-format +msgid "No owner is defined. Use %s?" +msgstr "½êͼԤ¬»ØÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó¡£%s ¤ò»È¤¤¤Þ¤¹¤«?" + +#: LYMessages.c:410 +msgid "Do you wish to send a comment?" +msgstr "¥³¥á¥ó¥È¤òÁ÷¤ê¤Þ¤¹¤«?" + +#: LYMessages.c:411 +msgid "Mail is disallowed so you cannot send a comment" +msgstr "¥á¡¼¥ë¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Ê¤¤¤Î¤Ç¥³¥á¥ó¥È¤ÏÁ÷¤ì¤Þ¤»¤ó¡£" + +#: LYMessages.c:412 +msgid "The 'e'dit command is currently disabled." +msgstr "ÊÔ½¸ [e] ¥³¥Þ¥ó¥É¤Ï¸½ºßÍøÍѤǤ¤Þ¤»¤ó¡£" + +#: LYMessages.c:413 +msgid "External editing is currently disabled." +msgstr "³°ÉôÊÔ½¸µ¡Ç½¤Ï¸½ºßÍøÍѤǤ¤Þ¤»¤ó¡£" + +#: LYMessages.c:414 +msgid "System error - failure to get status." +msgstr "¥·¥¹¥Æ¥à¥¨¥é¡¼ - ¥¹¥Æ¡¼¥¿¥¹¤òÆÀ¤ë¤Î¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡£" + +#: LYMessages.c:415 +msgid "No editor is defined!" +msgstr "¥¨¥Ç¥£¥¿¤¬ÄêµÁ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó!" + +#: LYMessages.c:416 +msgid "The 'p'rint command is currently disabled." +msgstr "°õºþ¥³¥Þ¥ó¥É [p] ¤Ï¸½ºßÍøÍѤǤ¤Þ¤»¤ó¡£" + +#: LYMessages.c:417 +msgid "Document has no Toolbar links or Banner." +msgstr "¤³¤Îʸ½ñ¤Ë¤Ï¥Ä¡¼¥ë¥Ð¡¼¥ê¥ó¥¯¤â¥Ð¥Ê¡¼¤â´Þ¤Þ¤ì¤Æ¤¤¤Þ¤»¤ó¡£" + +#: LYMessages.c:418 +msgid "Unable to open traversal file." +msgstr "¥È¥é¥Ð¡¼¥µ¥ë¥Õ¥¡¥¤¥ë¤¬³«¤±¤Þ¤»¤ó¡£" + +#: LYMessages.c:419 +msgid "Unable to open traversal found file." +msgstr "¥È¥é¥Ð¡¼¥µ¥ëȯ¸«¥Õ¥¡¥¤¥ë¤¬³«¤±¤Þ¤»¤ó¡£" + +#: LYMessages.c:420 +msgid "Unable to open reject file." +msgstr "¥ê¥¸¥§¥¯¥È¥Õ¥¡¥¤¥ë¤¬³«¤±¤Þ¤»¤ó¡£" + +#: LYMessages.c:421 +msgid "Unable to open traversal errors output file" +msgstr "¥È¥é¥Ð¡¼¥µ¥ë¥¨¥é¡¼½ÐÎÏ¥Õ¥¡¥¤¥ë¤¬³«¤±¤Þ¤»¤ó" + +#: LYMessages.c:422 +msgid "TRAVERSAL WAS INTERRUPTED" +msgstr "¥È¥é¥Ð¡¼¥µ¥ë¤¬ÃæÃǤµ¤ì¤Þ¤·¤¿" + +#: LYMessages.c:423 +msgid "Follow link (or goto link or page) number: " +msgstr "é¤ë¥ê¥ó¥¯(¤â¤·¤¯¤Ï goto ¥ê¥ó¥¯¤«¥Ú¡¼¥¸)¤ÎÈÖ¹æ: " + +#: LYMessages.c:424 +msgid "Select option (or page) number: " +msgstr "¥ª¥×¥·¥ç¥ó(¤Þ¤¿¤Ï¥Ú¡¼¥¸)ÈÖ¹æ¤òÁªÂò: " + +#: LYMessages.c:425 +#, c-format +msgid "Option number %d already is current." +msgstr "¥ª¥×¥·¥ç¥óÈÖ¹æ %d ¤Ï¤¹¤Ç¤ËÁªÂò¤µ¤ì¤Æ¤¤¤Þ¤¹¡£" + +#. #define ALREADY_AT_OPTION_END +#: LYMessages.c:427 +msgid "You are already at the end of this option list." +msgstr "¤¹¤Ç¤Ë¤³¤Î¥ª¥×¥·¥ç¥ó¥ê¥¹¥È¤Î½ªÃ¼¤Ë¤¤¤Þ¤¹¡£" + +#. #define ALREADY_AT_OPTION_BEGIN +#: LYMessages.c:429 +msgid "You are already at the beginning of this option list." +msgstr "¤¹¤Ç¤Ë¤³¤Î¥ª¥×¥·¥ç¥ó¥ê¥¹¥È¤ÎÀèƬ¤Ë¤¤¤Þ¤¹¡£" + +#. #define ALREADY_AT_OPTION_PAGE +#: LYMessages.c:431 +#, c-format +msgid "You are already at page %d of this option list." +msgstr "¤¹¤Ç¤Ë¤³¤Î¥ª¥×¥·¥ç¥ó¥ê¥¹¥È¤Î¥Ú¡¼¥¸ %d ¤Ë¤¤¤Þ¤¹¡£" + +#: LYMessages.c:432 +msgid "You have entered an invalid option number." +msgstr "ÉÔÀµ¤Ê¥ª¥×¥·¥ç¥óÈֹ椬ÆþÎϤµ¤ì¤Þ¤·¤¿¡£" + +#: LYMessages.c:433 +msgid "** Bad HTML!! Use -trace to diagnose. **" +msgstr "** ÉÔÀµ¤Ê HTML ¤Ç¤¹!! -trace ¤Ç¸¶°ø¤òÄ´¤Ù¤é¤ì¤Þ¤¹ **" + +#: LYMessages.c:434 +msgid "Give name of file to save in" +msgstr "Êݸ¤¹¤ë¥Õ¥¡¥¤¥ë¤Î̾Á°¤òÆþÎϤ·¤Æ¤¯¤À¤µ¤¤" + +#: LYMessages.c:435 +msgid "Can't save data to file -- please run WWW locally" +msgstr "¥Ç¡¼¥¿¤ò¥Õ¥¡¥¤¥ë¤ËÊݸ¤Ç¤¤Þ¤»¤ó -- WWW ¤ò¥í¡¼¥«¥ë¤Ç¼Â¹Ô¤·¤Æ¤¯¤À¤µ¤¤" + +#: LYMessages.c:436 +msgid "Can't open temporary file!" +msgstr "°ì»þŪ¥Õ¥¡¥¤¥ë¤¬³«¤±¤Þ¤»¤ó!" + +#: LYMessages.c:437 +msgid "Can't open output file! Cancelling!" +msgstr "½ÐÎÏ¥Õ¥¡¥¤¥ë¤¬³«¤±¤Þ¤»¤ó! ¥¥ã¥ó¥»¥ë¤·¤Þ¤¹!" + +#: LYMessages.c:438 +msgid "Execution is disabled." +msgstr "¼Â¹Ôµ¡Ç½¤ÏÍøÍѤǤ¤Þ¤»¤ó¡£" + +#. #define EXECUTION_DISABLED_FOR_FILE +#: LYMessages.c:440 +#, c-format +msgid "Execution is not enabled for this file. See the Options menu (use %s)." +msgstr "" +"¤³¤Î¥Õ¥¡¥¤¥ë¤ò¼Â¹Ô¤¹¤ë¤³¤È¤Ï¤Ç¤¤Þ¤»¤ó¡£¥ª¥×¥·¥ç¥ó¥á¥Ë¥å¡¼¤ò»²¾È(%s¤ò»È¤¦)¤·¤" +"Ƥ¯¤À¤µ¤¤¡£" + +#. #define EXECUTION_NOT_COMPILED +#: LYMessages.c:442 +msgid "Execution capabilities are not compiled into this version." +msgstr "¼Â¹Ôµ¡Ç½¤Ï¤³¤Î¥Ð¡¼¥¸¥ç¥ó¤Ç¤Ï¥³¥ó¥Ñ¥¤¥ë»þ¤ËÁȤ߹þ¤Þ¤ì¤Æ¤¤¤Þ¤»¤ó¡£" + +#: LYMessages.c:443 +msgid "This file cannot be displayed on this terminal." +msgstr "¤³¤Î¥Õ¥¡¥¤¥ë¤Ï¸½ºß¤ÎüËö¤Ç¤Ïɽ¼¨¤Ç¤¤Þ¤»¤ó¡£" + +#. #define CANNOT_DISPLAY_FILE_D_OR_C +#: LYMessages.c:445 +msgid "This file cannot be displayed on this terminal: D)ownload, or C)ancel" +msgstr "" +"¤³¤Î¥Õ¥¡¥¤¥ë¤Ï¸½ºß¤ÎüËö¤Ç¤Ïɽ¼¨¤Ç¤¤Þ¤»¤ó¡£[d]¥À¥¦¥ó¥í¡¼¥É [c]¥¥ã¥ó¥»¥ë" + +#: LYMessages.c:446 +#, c-format +msgid "%s D)ownload, or C)ancel" +msgstr "%s [d]¥À¥¦¥ó¥í¡¼¥É ¤Þ¤¿¤Ï [c]¥¥ã¥ó¥»¥ë" + +#: LYMessages.c:447 +msgid "Cancelling file." +msgstr "¥Õ¥¡¥¤¥ë¤ò¥¥ã¥ó¥»¥ë¤·¤Þ¤¹¡£" + +#: LYMessages.c:448 +msgid "Retrieving file. - PLEASE WAIT -" +msgstr "¥Õ¥¡¥¤¥ë¤ò¼õ¿®Ãæ - ¤ªÂÔ¤Á¤¯¤À¤µ¤¤" + +#: LYMessages.c:449 +msgid "Enter a filename: " +msgstr "¥Õ¥¡¥¤¥ë̾¤òÆþÎÏ: " + +#: LYMessages.c:450 +msgid "Edit the previous filename: " +msgstr "°ì¤ÄÁ°¤Î¥Õ¥¡¥¤¥ë̾¤òÊÔ½¸: " + +#: LYMessages.c:451 +msgid "Edit a previous filename: " +msgstr "°ÊÁ°¤Î¥Õ¥¡¥¤¥ë̾¤òÊÔ½¸: " + +#: LYMessages.c:452 +msgid "Enter a new filename: " +msgstr "¿·¤·¤¤¥Õ¥¡¥¤¥ë̾¤òÆþÎÏ: " + +#: LYMessages.c:453 +msgid "File name may not begin with a dot." +msgstr "¥Õ¥¡¥¤¥ë̾¤Ï¥É¥Ã¥È¤Ç»Ï¤Þ¤Ã¤Æ¤Ï¤¤¤±¤Þ¤»¤ó¡£" + +#: LYMessages.c:455 +msgid "File exists. Create higher version?" +msgstr "¥Õ¥¡¥¤¥ë¤¬Â¸ºß¤·¤Þ¤¹¡£¤è¤ê¹â¤¤¥Ð¡¼¥¸¥ç¥ó¤òºîÀ®¤·¤Þ¤¹¤«?" + +#: LYMessages.c:457 +msgid "File exists. Overwrite?" +msgstr "¥Õ¥¡¥¤¥ë¤¬Â¸ºß¤·¤Þ¤¹¡£¾å½ñ¤¤·¤Þ¤¹¤«?" + +#: LYMessages.c:459 +msgid "Cannot write to file." +msgstr "¥Õ¥¡¥¤¥ë¤Ë½ñ¤¹þ¤á¤Þ¤»¤ó¡£" + +#: LYMessages.c:460 +msgid "ERROR! - download command is misconfigured." +msgstr "¥¨¥é¡¼! - ¥À¥¦¥ó¥í¡¼¥É¥³¥Þ¥ó¥É¤ÎÀßÄ꤬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹¡£" + +#: LYMessages.c:461 +msgid "Unable to download file." +msgstr "¥Õ¥¡¥¤¥ë¤ò¥À¥¦¥ó¥í¡¼¥É¤Ç¤¤Þ¤»¤ó¡£" + +#: LYMessages.c:462 +msgid "Reading directory..." +msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤òÆɤ߹þ¤ßÃæ..." + +#: LYMessages.c:463 +msgid "Building directory listing..." +msgstr "¥Ç¥£¥ì¥¯¥È¥ê°ìÍ÷¤òºîÀ®Ãæ..." + +#: LYMessages.c:464 +msgid "Saving..." +msgstr "Êݸ¤·¤Æ¤¤¤Þ¤¹..." + +#: LYMessages.c:465 +#, c-format +msgid "Could not edit file '%s'." +msgstr "¥Õ¥¡¥¤¥ë '%s' ¤òÊÔ½¸¤Ç¤¤Þ¤»¤ó¡£" + +#: LYMessages.c:466 +msgid "Unable to access document!" +msgstr "ʸ½ñ¤Ë¥¢¥¯¥»¥¹¤Ç¤¤Þ¤»¤ó!" + +#: LYMessages.c:467 +msgid "Could not access file." +msgstr "¥Õ¥¡¥¤¥ë¤Ë¥¢¥¯¥»¥¹¤Ç¤¤Þ¤»¤ó¡£" + +#: LYMessages.c:468 +msgid "Could not access directory." +msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤Ë¥¢¥¯¥»¥¹¤Ç¤¤Þ¤»¤ó¡£" + +#: LYMessages.c:469 +msgid "Could not load data." +msgstr "¥Ç¡¼¥¿¤òÆɤ߹þ¤á¤Þ¤»¤ó¡£" + +#. #define CANNOT_EDIT_REMOTE_FILES +#: LYMessages.c:471 +msgid "Lynx cannot currently (e)dit remote WWW files." +msgstr "¸½ºß Lynx ¤Ï¥ê¥â¡¼¥È WWW ¥Õ¥¡¥¤¥ë¤ò [e] ÊÔ½¸¤Ç¤¤Þ¤»¤ó¡£" + +#. #define CANNOT_EDIT_FIELD +#: LYMessages.c:473 +msgid "This field cannot be (e)dited with an external editor." +msgstr "¤³¤Î¥Õ¥£¡¼¥ë¥É¤Ï³°Éô¥¨¥Ç¥£¥¿¤ÇÊÔ½¸ [e] ¤Ç¤¤Þ¤»¤ó¡£" + +#: LYMessages.c:474 +msgid "Bad rule" +msgstr "ÉÔÀµ¤Ê¥ë¡¼¥ë¤Ç¤¹¡£" + +#: LYMessages.c:475 +msgid "Insufficient operands:" +msgstr "¥ª¥Ú¥é¥ó¥É¤¬Â¤ê¤Þ¤»¤ó:" + +#: LYMessages.c:476 +msgid "You are not authorized to edit this file." +msgstr "¤³¤Î¥Õ¥¡¥¤¥ë¤òÊÔ½¸¤¹¤ë¸¢¸Â¤¬¤¢¤ê¤Þ¤»¤ó¡£" + +#: LYMessages.c:477 +msgid "Title: " +msgstr "Âê̾: " + +#: LYMessages.c:478 +msgid "Subject: " +msgstr "¥µ¥Ö¥¸¥§¥¯¥È: " + +#: LYMessages.c:479 +msgid "Username: " +msgstr "¥æ¡¼¥¶Ì¾: " + +#: LYMessages.c:480 +msgid "Password: " +msgstr "¥Ñ¥¹¥ï¡¼¥É: " + +#: LYMessages.c:481 +msgid "lynx: Username and Password required!!!" +msgstr "lynx: ¥æ¡¼¥¶Ì¾¤È¥Ñ¥¹¥ï¡¼¥É¤¬É¬ÍפǤ¹!!!" + +#: LYMessages.c:482 +msgid "lynx: Password required!!!" +msgstr "lynx: ¥Ñ¥¹¥ï¡¼¥É¤¬É¬ÍפǤ¹!!!" + +#: LYMessages.c:483 +msgid "Clear all authorization info for this session?" +msgstr "¤³¤Î¥»¥Ã¥·¥ç¥ó¤Î¤¹¤Ù¤Æ¤Îǧ¾Ú¾ðÊó¤ò¥¯¥ê¥¢¤·¤Þ¤¹¤«?" + +#: LYMessages.c:484 +msgid "Authorization info cleared." +msgstr "ǧ¾Ú¾ðÊó¤ò¥¯¥ê¥¢¤·¤Þ¤·¤¿¡£" + +#: LYMessages.c:485 +msgid "Authorization failed. Retry?" +msgstr "ǧ¾Ú¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡£ºÆ»î¹Ô¤·¤Þ¤¹¤«?" + +#: LYMessages.c:486 +msgid "cgi support has been disabled." +msgstr "cgi ¥µ¥Ý¡¼¥È¤ÏÍøÍѤǤ¤Þ¤»¤ó¡£" + +#. #define CGI_NOT_COMPILED +#: LYMessages.c:488 +msgid "Lynxcgi capabilities are not compiled into this version." +msgstr "Lynxcgi µ¡Ç½¤Ï¤³¤Î¥Ð¡¼¥¸¥ç¥ó¤Ë¤ÏÁȤ߹þ¤Þ¤ì¤Æ¤¤¤Þ¤»¤ó¡£" + +#: LYMessages.c:489 +#, c-format +msgid "Sorry, no known way of converting %s to %s." +msgstr "%s ¤ò %s ¤ËÊÑ´¹¤¹¤ë¼êÃʤϤ¢¤ê¤Þ¤»¤ó¡£" + +#: LYMessages.c:490 +msgid "Unable to set up connection." +msgstr "Àܳ¤ò½àÈ÷¤Ç¤¤Þ¤»¤ó¡£" + +#: LYMessages.c:491 +msgid "Unable to make connection" +msgstr "Àܳ¤ò³ÎΩ¤Ç¤¤Þ¤»¤ó¡£" + +#. #define MALFORMED_EXEC_REQUEST +#: LYMessages.c:493 +msgid "Executable link rejected due to malformed request." +msgstr "ÉÔÀµ¤Ê¥ê¥¯¥¨¥¹¥È¤Î¤¿¤á¡¢¼Â¹Ô²Äǽ¤Ê¥ê¥ó¥¯¤ÏµñÈݤµ¤ì¤Þ¤·¤¿¡£" + +#. #define BADCHAR_IN_EXEC_LINK +#: LYMessages.c:495 +#, c-format +msgid "Executable link rejected due to `%c' character." +msgstr "¥¥ã¥é¥¯¥¿ '%c' ¤Î¤¿¤á¡¢¼Â¹Ô²Äǽ¤Ê¥ê¥ó¥¯¤ÏµñÈݤµ¤ì¤Þ¤·¤¿¡£" + +#. #define RELPATH_IN_EXEC_LINK +#: LYMessages.c:497 +msgid "Executable link rejected due to relative path string ('../')." +msgstr "ÁêÂХѥ¹Ê¸»úÎó('../')¤Î¤¿¤á¡¢¼Â¹Ô²Äǽ¤Ê¥ê¥ó¥¯¤ÏµñÈݤµ¤ì¤Þ¤·¤¿¡£" + +#. #define BADLOCPATH_IN_EXEC_LINK +#: LYMessages.c:499 +msgid "Executable link rejected due to location or path." +msgstr "¾ì½ê¤Þ¤¿¤Ï¥Ñ¥¹¤Î¤¿¤á¡¢¼Â¹Ô²Äǽ¤Ê¥ê¥ó¥¯¤ÏµñÈݤµ¤ì¤Þ¤·¤¿¡£" + +#: LYMessages.c:500 +msgid "Mail access is disabled!" +msgstr "¥á¡¼¥ë¥¢¥¯¥»¥¹¤ÏÍøÍѤǤ¤Þ¤»¤ó!" + +#. #define ACCESS_ONLY_LOCALHOST +#: LYMessages.c:502 +msgid "Only files and servers on the local host can be accessed." +msgstr "¥í¡¼¥«¥ë¥Û¥¹¥È¾å¤Î¥Õ¥¡¥¤¥ë¤È¥µ¡¼¥Ð¤Î¤ß¥¢¥¯¥»¥¹¤Ç¤¤Þ¤¹¡£" + +#: LYMessages.c:503 +msgid "Telnet access is disabled!" +msgstr "Telnet ¥¢¥¯¥»¥¹¤ÏÍøÍѤǤ¤Þ¤»¤ó!" + +#. #define TELNET_PORT_SPECS_DISABLED +#: LYMessages.c:505 +msgid "Telnet port specifications are disabled." +msgstr "Telnet ¥Ý¡¼¥È»ØÄê¤ÏÍøÍѤǤ¤Þ¤»¤ó!" + +#: LYMessages.c:506 +msgid "USENET news access is disabled!" +msgstr "USENET ¥Ë¥å¡¼¥¹¥¢¥¯¥»¥¹¤ÏÍøÍѤǤ¤Þ¤»¤ó!" + +#: LYMessages.c:507 +msgid "Rlogin access is disabled!" +msgstr "Rlogin ¥¢¥¯¥»¥¹¤ÏÍøÍѤǤ¤Þ¤»¤ó!" + +#: LYMessages.c:508 +msgid "Ftp access is disabled!" +msgstr "Ftp ¥¢¥¯¥»¥¹¤ÏÍøÍѤǤ¤Þ¤»¤ó!" + +#: LYMessages.c:509 +msgid "There are no references from this document." +msgstr "¤³¤Îʸ½ñ¤«¤é¤Î»²¾È¤Ï¤¢¤ê¤Þ¤»¤ó¡£" + +#: LYMessages.c:510 +msgid "There are only hidden links from this document." +msgstr "¤³¤Îʸ½ñ¤Ë¤Ï±£¤·¥ê¥ó¥¯¤·¤«¤¢¤ê¤Þ¤»¤ó¡£" + +#: LYMessages.c:512 +msgid "Unable to open command file." +msgstr "¥³¥Þ¥ó¥É¥Õ¥¡¥¤¥ë¤¬³«¤±¤Þ¤»¤ó¡£" + +#: LYMessages.c:514 +msgid "News Post Cancelled!!!" +msgstr "¥Ë¥å¡¼¥¹¤ÎÅê¹Æ¤Ï¥¥ã¥ó¥»¥ë¤µ¤ì¤Þ¤·¤¿!!!" + +#. #define SPAWNING_EDITOR_FOR_NEWS +#: LYMessages.c:516 +msgid "Spawning your selected editor to edit news message" +msgstr "»ØÄê¤Î¥¨¥Ç¥£¥¿¤òµ¯Æ°¤·¤Æ¥Ë¥å¡¼¥¹¥á¥Ã¥»¡¼¥¸¤òÊÔ½¸¤·¤Þ¤¹" + +#: LYMessages.c:517 +msgid "Post this message?" +msgstr "¤³¤Î¥á¥Ã¥»¡¼¥¸¤òÅê¹Æ¤·¤Þ¤¹¤«?" + +#: LYMessages.c:518 +#, c-format +msgid "Append '%s'?" +msgstr "'%s' ¤òÄɲä·¤Þ¤¹¤«?" + +#: LYMessages.c:519 +msgid "Posting to newsgroup(s)..." +msgstr "¥Ë¥å¡¼¥¹¥°¥ë¡¼¥×¤ËÅê¹ÆÃæ..." + +#: LYMessages.c:521 +msgid "*** You have unread mail. ***" +msgstr "*** ¤Þ¤ÀÆɤó¤Ç¤¤¤Ê¤¤¥á¡¼¥ë¤¬¤¢¤ê¤Þ¤¹ ***" + +#: LYMessages.c:523 +msgid "*** You have mail. ***" +msgstr "*** ¥á¡¼¥ë¤¬Íè¤Æ¤¤¤Þ¤¹ ***" + +#: LYMessages.c:525 +msgid "*** You have new mail. ***" +msgstr "*** ¿·Ãå¥á¡¼¥ë¤¬¤¢¤ê¤Þ¤¹ ***" + +#: LYMessages.c:526 +msgid "File insert cancelled!!!" +msgstr "¥Õ¥¡¥¤¥ëÁÞÆþ¤¬¥¥ã¥ó¥»¥ë¤µ¤ì¤Þ¤·¤¿!!!" + +#: LYMessages.c:527 +msgid "Not enough memory for file!" +msgstr "¥Õ¥¡¥¤¥ë¤òÆɤ߹þ¤à¥á¥â¥ê¤¬Â¤ê¤Þ¤»¤ó" + +#: LYMessages.c:528 +msgid "Can't open file for reading." +msgstr "Æɤ߹þ¤à¥Õ¥¡¥¤¥ë¤¬³«¤±¤Þ¤»¤ó¡£" + +#: LYMessages.c:529 +msgid "File does not exist." +msgstr "¥Õ¥¡¥¤¥ë¤¬Â¸ºß¤·¤Þ¤»¤ó¡£" + +#: LYMessages.c:530 +msgid "File does not exist - reenter or cancel:" +msgstr "¥Õ¥¡¥¤¥ë¤¬Â¸ºß¤·¤Þ¤»¤ó - ºÆÆþÎϤ«¥¥ã¥ó¥»¥ë:" + +#: LYMessages.c:531 +msgid "File is not readable." +msgstr "¥Õ¥¡¥¤¥ë¤ÏÆɤ߹þ¤ßÉԲĤǤ¹¡£" + +#: LYMessages.c:532 +msgid "File is not readable - reenter or cancel:" +msgstr "¥Õ¥¡¥¤¥ë¤¬Æɤá¤Þ¤»¤ó - ºÆÆþÎϤ«¥¥ã¥ó¥»¥ë:" + +#: LYMessages.c:533 +msgid "Nothing to insert - file is 0-length." +msgstr "ÁÞÆþ¤¹¤ëÆâÍƤ¬¤¢¤ê¤Þ¤»¤ó - ¥Õ¥¡¥¤¥ë¤ÎŤµ¤¬ 0 ¤Ç¤¹¡£" + +#: LYMessages.c:534 +msgid "Save request cancelled!!!" +msgstr "Êݸ¥ê¥¯¥¨¥¹¥È¤¬¥¥ã¥ó¥»¥ë¤µ¤ì¤Þ¤·¤¿!!!" + +#: LYMessages.c:535 +msgid "Mail request cancelled!!!" +msgstr "¥á¡¼¥ë¥ê¥¯¥¨¥¹¥È¤¬¥¥ã¥ó¥»¥ë¤µ¤ì¤Þ¤·¤¿!!!" + +#. #define CONFIRM_MAIL_SOURCE_PREPARSED +#: LYMessages.c:537 +msgid "Viewing preparsed source. Are you sure you want to mail it?" +msgstr "²òÀϺѤߥ½¡¼¥¹¤ò±ÜÍ÷Ãæ¤Ç¤¹¡£ËÜÅö¤Ë¤³¤ì¤ò¥á¡¼¥ë¤·¤Þ¤¹¤«?" + +#: LYMessages.c:538 +msgid "Please wait..." +msgstr "¤ªÂÔ¤Á¤¯¤À¤µ¤¤..." + +#: LYMessages.c:539 +msgid "Mailing file. Please wait..." +msgstr "¥Õ¥¡¥¤¥ë¤ò¥á¡¼¥ë¤ÇÁ÷¿®Ãæ¡£¤ªÂÔ¤Á¤¯¤À¤µ¤¤..." + +#: LYMessages.c:540 +msgid "ERROR - Unable to mail file" +msgstr "¥¨¥é¡¼ - ¥Õ¥¡¥¤¥ë¤ò¥á¡¼¥ë¤ÇÁ÷¿®¤Ç¤¤Þ¤»¤ó¡£" + +#. #define CONFIRM_LONG_SCREEN_PRINT +#: LYMessages.c:542 +#, c-format +msgid "File is %d screens long. Are you sure you want to print?" +msgstr "¥Õ¥¡¥¤¥ë¤Ï %d ²èÌÌʬ¤ÎŤµ¤Ç¤¹¡£ËÜÅö¤Ë°õºþ¤·¤Þ¤¹¤«?" + +#: LYMessages.c:543 +msgid "Print request cancelled!!!" +msgstr "°õºþ¥ê¥¯¥¨¥¹¥È¤Ï¥¥ã¥ó¥»¥ë¤µ¤ì¤Þ¤·¤¿!!!" + +#: LYMessages.c:544 +msgid "Press <return> to begin: " +msgstr "¥ê¥¿¡¼¥ó¥¡¼¤Ç³«»Ï: " + +#: LYMessages.c:545 +msgid "Press <return> to finish: " +msgstr "¥ê¥¿¡¼¥ó¥¡¼¤Ç½ªÎ»" + +#. #define CONFIRM_LONG_PAGE_PRINT +#: LYMessages.c:547 +#, c-format +msgid "File is %d pages long. Are you sure you want to print?" +msgstr "¥Õ¥¡¥¤¥ë¤Ï %d ¥Ú¡¼¥¸Ê¬¤ÎŤµ¤Ç¤¹¡£ËÜÅö¤Ë°õºþ¤·¤Þ¤¹¤«?" + +#. #define CHECK_PRINTER +#: LYMessages.c:549 +msgid "Be sure your printer is on-line. Press <return> to start printing:" +msgstr "¥×¥ê¥ó¥¿¤¬¥ª¥ó¥é¥¤¥ó¤«³Î¤«¤á¤Æ¤¯¤À¤µ¤¤¡£¥ê¥¿¡¼¥ó¥¡¼¤Ç°õºþ³«»Ï:" + +#: LYMessages.c:550 +msgid "ERROR - Unable to allocate file space!!!" +msgstr "¥¨¥é¡¼ - ¥Õ¥¡¥¤¥ëÎΰ褬³ÎÊݤǤ¤Þ¤»¤ó!!!" + +#: LYMessages.c:551 +msgid "Unable to open tempfile" +msgstr "°ì»þ¥Õ¥¡¥¤¥ë¤¬³«¤±¤Þ¤»¤ó" + +#: LYMessages.c:552 +msgid "Unable to open print options file" +msgstr "°õºþ¥ª¥×¥·¥ç¥ó¥Õ¥¡¥¤¥ë¤¬³«¤±¤Þ¤»¤ó" + +#: LYMessages.c:553 +msgid "Printing file. Please wait..." +msgstr "¥Õ¥¡¥¤¥ë¤ò°õºþ¤·¤Æ¤¤¤Þ¤¹¡£¤ªÂÔ¤Á¤¯¤À¤µ¤¤..." + +#: LYMessages.c:554 +msgid "Please enter a valid internet mail address: " +msgstr "Àµ¤·¤¤¥¤¥ó¥¿¡¼¥Í¥Ã¥È¥á¡¼¥ë¥¢¥É¥ì¥¹¤òÆþÎϤ·¤Æ¤¯¤À¤µ¤¤: " + +#: LYMessages.c:555 +msgid "ERROR! - printer is misconfigured!" +msgstr "¥¨¥é¡¼! - ¥×¥ê¥ó¥¿¤ÎÀßÄ꤬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹" + +#: LYMessages.c:556 +msgid "Image map from POST response not available!" +msgstr "POST ¥ì¥¹¥Ý¥ó¥¹¤«¤é¤Î¥¤¥á¡¼¥¸¥Þ¥Ã¥×¤¬ÍøÍѤǤ¤Þ¤»¤ó!" + +#: LYMessages.c:557 +msgid "Misdirected client-side image MAP request!" +msgstr "¥¯¥é¥¤¥¢¥ó¥È¥µ¥¤¥É¥¤¥á¡¼¥¸ MAP ¥ê¥¯¥¨¥¹¥È¤Î¥Ç¥£¥ì¥¯¥·¥ç¥ó¤¬ÉÔÀµ¤Ç¤¹!" + +#: LYMessages.c:558 +msgid "Client-side image MAP is not accessible!" +msgstr "¥¯¥é¥¤¥¢¥ó¥È¥µ¥¤¥É¥¤¥á¡¼¥¸ MAP ¤Ë¥¢¥¯¥»¥¹¤Ç¤¤Þ¤»¤ó!" + +#: LYMessages.c:559 +msgid "No client-side image MAPs are available!" +msgstr "ÍøÍѤǤ¤ë¥¯¥é¥¤¥¢¥ó¥È¥µ¥¤¥É¥¤¥á¡¼¥¸ MAP ¤¬¤¢¤ê¤Þ¤»¤ó!" + +#: LYMessages.c:560 +msgid "Client-side image MAP is not available!" +msgstr "¥¯¥é¥¤¥¢¥ó¥È¥µ¥¤¥É¥¤¥á¡¼¥¸ MAP ¤ÏÍøÍѤǤ¤Þ¤»¤ó!" + +#. #define OPTION_SCREEN_NEEDS_24 +#: LYMessages.c:563 +msgid "Screen height must be at least 24 lines for the Options menu!" +msgstr "" +"¥ª¥×¥·¥ç¥ó¥á¥Ë¥å¡¼¤òɽ¼¨¤¹¤ë¤Ë¤Ï¥¹¥¯¥ê¡¼¥ó¤Î¹â¤µ¤¬ºÇÄã 24 ¹ÔʬɬÍפǤ¹!" + +#. #define OPTION_SCREEN_NEEDS_23 +#: LYMessages.c:565 +msgid "Screen height must be at least 23 lines for the Options menu!" +msgstr "" +"¥ª¥×¥·¥ç¥ó¥á¥Ë¥å¡¼¤òɽ¼¨¤¹¤ë¤Ë¤Ï¥¹¥¯¥ê¡¼¥ó¤Î¹â¤µ¤¬ºÇÄã 23 ¹ÔʬɬÍפǤ¹!" + +#. #define OPTION_SCREEN_NEEDS_22 +#: LYMessages.c:567 +msgid "Screen height must be at least 22 lines for the Options menu!" +msgstr "" +"¥ª¥×¥·¥ç¥ó¥á¥Ë¥å¡¼¤òɽ¼¨¤¹¤ë¤Ë¤Ï¥¹¥¯¥ê¡¼¥ó¤Î¹â¤µ¤¬ºÇÄã 22 ¹ÔʬɬÍפǤ¹!" + +#: LYMessages.c:569 +msgid "That key requires Advanced User mode." +msgstr "¤½¤Î¥¡¼¤ò»È¤¦¤Ë¤Ï¹âÅ٥桼¥¶¥â¡¼¥É¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó¡£" + +#: LYMessages.c:570 +#, c-format +msgid "Content-type: %s" +msgstr "Content-type: %s" + +#: LYMessages.c:571 +msgid "Command: " +msgstr "¥³¥Þ¥ó¥É: " + +#: LYMessages.c:572 +msgid "Unknown or ambiguous command" +msgstr "" + +#: LYMessages.c:573 +msgid " Version " +msgstr " ¥Ð¡¼¥¸¥ç¥ó " + +#: LYMessages.c:574 +msgid " first" +msgstr " ¤òºÇ½é¤Ëõ¤·¤Þ¤¹" + +#: LYMessages.c:575 +msgid ", guessing..." +msgstr "¡¢¿ä¬Ãæ..." + +#: LYMessages.c:576 +msgid "Permissions for " +msgstr "¥Ñ¡¼¥ß¥Ã¥·¥ç¥ó: " + +#: LYMessages.c:577 +msgid "Select " +msgstr "ÁªÂò " + +#: LYMessages.c:578 +msgid "capital letter" +msgstr "Âçʸ»ú" + +#: LYMessages.c:579 +msgid " of option line," +msgstr " ¤Î¥ª¥×¥·¥ç¥ó¥é¥¤¥ó¡¢" + +#: LYMessages.c:580 +msgid " to save," +msgstr " ¤ÇÊݸ¡¢" + +#: LYMessages.c:581 +msgid " to " +msgstr " ¤Ø " + +#: LYMessages.c:582 +msgid " or " +msgstr " ¤Þ¤¿¤Ï " + +#: LYMessages.c:583 +msgid " index" +msgstr " º÷°ú" + +#: LYMessages.c:584 +msgid " to return to Lynx." +msgstr " ¤Ç Lynx ¤ËÌá¤ë¡£" + +#: LYMessages.c:585 +msgid "Accept Changes" +msgstr "Êѹ¹¤ò͸ú¤Ë¤¹¤ë" + +#: LYMessages.c:586 +msgid "Reset Changes" +msgstr "Êѹ¹¤ò¥ê¥»¥Ã¥È" + +#: LYMessages.c:587 +msgid "Left Arrow cancels changes" +msgstr "[¢«] ¥¥ã¥ó¥»¥ë" + +#: LYMessages.c:588 +msgid "Save options to disk" +msgstr "Êѹ¹¤ò¥Ç¥£¥¹¥¯¤ËÊݸ" + +#: LYMessages.c:589 +msgid "Hit RETURN to accept entered data." +msgstr "¥ê¥¿¡¼¥ó¥¡¼¤ÇÆþÎϤ·¤¿¥Ç¡¼¥¿¤òÅÐÏ¿" + +#. #define ACCEPT_DATA_OR_DEFAULT +#: LYMessages.c:591 +msgid "Hit RETURN to accept entered data. Delete data to invoke the default." +msgstr "" +"¥ê¥¿¡¼¥ó¤ÇÆþÎϤ·¤¿¥Ç¡¼¥¿¤ò¼õ¤±ÉÕ¤±¤Þ¤¹¡£¥Ç¥Õ¥©¥ë¥È¤ËÌ᤹¤Ë¤Ï¥Ç¡¼¥¿¤òºï½ü" + +#: LYMessages.c:592 +msgid "Value accepted!" +msgstr "Ãͤò¼õ¤±Æþ¤ì¤Þ¤·¤¿!" + +#. #define VALUE_ACCEPTED_WARNING_X +#: LYMessages.c:594 +msgid "Value accepted! -- WARNING: Lynx is configured for XWINDOWS!" +msgstr "Ãͤò¼õ¤±Æþ¤ì¤Þ¤·¤¿! -- Ãí°Õ: Lynx ¤Ï XWINDOWS ¸þ¤±¤ËÀßÄꤵ¤ì¤Þ¤·¤¿!" + +#. #define VALUE_ACCEPTED_WARNING_NONX +#: LYMessages.c:596 +msgid "Value accepted! -- WARNING: Lynx is NOT configured for XWINDOWS!" +msgstr "" +"Ãͤò¼õ¤±Æþ¤ì¤Þ¤·¤¿! -- Ãí°Õ: Lynx ¤Ï XWINDOWS ¸þ¤±¤ËÀßÄꤵ¤ì¤Æ*¤¤¤Þ¤»¤ó*" + +#: LYMessages.c:597 +msgid "You are not allowed to change which editor to use!" +msgstr "»ÈÍѤ¹¤ë¥¨¥Ç¥£¥¿¤ÎÊѹ¹¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó!" + +#: LYMessages.c:598 +msgid "Failed to set DISPLAY variable!" +msgstr "´Ä¶ÊÑ¿ô DISPLAY ¤ÎÀßÄê¤Ë¼ºÇÔ¤·¤Þ¤·¤¿!" + +#: LYMessages.c:599 +msgid "Failed to clear DISPLAY variable!" +msgstr "´Ä¶ÊÑ¿ô DISPLAY ¤Î¥¯¥ê¥¢¤Ë¼ºÇÔ¤·¤Þ¤·¤¿!" + +#. #define BOOKMARK_CHANGE_DISALLOWED +#: LYMessages.c:601 +msgid "You are not allowed to change the bookmark file!" +msgstr "¥Ö¥Ã¥¯¥Þ¡¼¥¯¥Õ¥¡¥¤¥ë¤ÎÊѹ¹¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó!" + +#: LYMessages.c:602 +msgid "Terminal does not support color" +msgstr "üËö¤¬¥«¥é¡¼É½¼¨¤ò¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤»¤ó¡£" + +#: LYMessages.c:603 +#, c-format +msgid "Your '%s' terminal does not support color." +msgstr "¤¢¤Ê¤¿¤ÎüËö '%s' ¤Ï¥«¥é¡¼É½¼¨¤ò¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤»¤ó¡£" + +#: LYMessages.c:604 +msgid "Access to dot files is disabled!" +msgstr "¥É¥Ã¥È¥Õ¥¡¥¤¥ë¤Ø¤Î¥¢¥¯¥»¥¹¤Ï¤Ç¤¤Þ¤»¤ó!" + +#. #define UA_NO_LYNX_WARNING +#: LYMessages.c:606 +msgid "User-Agent string does not contain \"Lynx\" or \"L_y_n_x\"" +msgstr "" +"User-Agent ¤Ë \"Lynx\" ¤¢¤ë¤¤¤Ï \"L_y_n_x\" ¤È¤¤¤¦Ê¸»úÎ󤬴ޤޤì¤Æ¤¤¤Þ¤»¤ó" + +#. #define UA_PLEASE_USE_LYNX +#: LYMessages.c:608 +msgid "" +"Use \"L_y_n_x\" or \"Lynx\" in User-Agent, or it looks like intentional " +"deception!" +msgstr "" +"User-Agent ¤Ë \"L_y_n_x\" ¤Ê¤¤¤· \"Lynx\" " +"¤È¤¤¤¦Ê¸»úÎó¤ò´Þ¤á¤Æ¤¯¤À¤µ¤¤¡£¤µ¤â¤Ê¤¤¤È°Õ¿ÞŪ¤Êµ½â֤ȸ«¤Ê¤·¤Þ¤¹!" + +#. #define UA_CHANGE_DISABLED +#: LYMessages.c:610 +msgid "Changing of the User-Agent string is disabled!" +msgstr "User-Agent ʸ»úÎó¤ÎÊѹ¹¤Ï¤Ç¤¤Þ¤»¤ó!" + +#. #define CHANGE_OF_SETTING_DISALLOWED +#: LYMessages.c:612 +msgid "You are not allowed to change this setting." +msgstr "¤³¤ÎÀßÄê¤ÎÊѹ¹¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó¡£" + +#: LYMessages.c:613 +msgid "Saving Options..." +msgstr "ÀßÄê¤òÊݸÃæ..." + +#: LYMessages.c:614 +msgid "Options saved!" +msgstr "ÀßÄê¤òÊݸ¤·¤Þ¤·¤¿!" + +#: LYMessages.c:615 +msgid "Unable to save Options!" +msgstr "ÀßÄê¤òÊݸ¤Ç¤¤Þ¤»¤ó!" + +#: LYMessages.c:616 +msgid " 'r' to return to Lynx " +msgstr "[r]¤Ç Lynx ¤ËÌá¤ê¤Þ¤¹ " + +#: LYMessages.c:617 +msgid " '>' to save, or 'r' to return to Lynx " +msgstr " [>] ¤ÇÊݸ¡¢[r] ¤Ç Lynx ¤ËÌá¤ê¤Þ¤¹ " + +#. #define ANY_KEY_CHANGE_RET_ACCEPT +#: LYMessages.c:619 +msgid "Hit any key to change value; RETURN to accept." +msgstr "²¿¤«¥¡¼¤ò²¡¤·¤ÆÃͤòÊѤ¨¤Æ¤¯¤À¤µ¤¤¡£¥ê¥¿¡¼¥ó¤ÇÅÐÏ¿" + +#: LYMessages.c:620 +msgid "Error uncompressing temporary file!" +msgstr "°ì»þ¥Õ¥¡¥¤¥ë¤ÎŸ³«¤Ç¥¨¥é¡¼¤¬È¯À¸¤·¤Þ¤·¤¿!" + +#: LYMessages.c:621 +msgid "Unsupported URL scheme!" +msgstr "¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Ê¤¤ URL ¥¹¥¡¼¥à¤Ç¤¹!" + +#: LYMessages.c:622 +msgid "Unsupported data: URL! Use SHOWINFO, for now." +msgstr "" +"¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Ê¤¤¥Ç¡¼¥¿: URL! ¤È¤ê¤¢¤¨¤º SHOWINFO ¤ò»È¤Ã¤Æ¤¯¤À¤µ¤¤¡£" + +#: LYMessages.c:623 +msgid "Redirection limit of 10 URL's reached." +msgstr "¥ê¥À¥¤¥ì¥¯¥·¥ç¥óÀ©¸Â (10 URL) ¤ËÅþ㤷¤Þ¤·¤¿¡£" + +#: LYMessages.c:624 +msgid "Illegal redirection URL received from server!" +msgstr "¥µ¡¼¥Ð¤«¤éÉÔÀµ¤Ê¥ê¥À¥¤¥ì¥¯¥·¥ç¥ó URL ¤ò¼õ¿®¤·¤Þ¤·¤¿!" + +#. #define SERVER_ASKED_FOR_REDIRECTION +#: LYMessages.c:626 +#, c-format +msgid "Server asked for %d redirection of POST content to" +msgstr "¥µ¡¼¥Ð¤Ï POST ¥³¥ó¥Æ¥ó¥È¤Î°Ê²¼¤Ø¤Î %d ¥ê¥À¥¤¥ì¥¯¥·¥ç¥ó¤òÍ׵ᤷ¤Þ¤·¤¿: " + +#: LYMessages.c:629 +msgid "P)roceed, use G)ET or C)ancel " +msgstr "[p]¤Ç³¹Ô¡¢[g]GET¤ò»È¤¦¡¢[c]¥¥ã¥ó¥»¥ë" + +#: LYMessages.c:630 +msgid "P)roceed, or C)ancel " +msgstr "[p]¤Ç³¹Ô¡¢¤Þ¤¿¤Ï [c]¥¥ã¥ó¥»¥ë" + +#. #define ADVANCED_POST_GET_REDIRECT +#: LYMessages.c:632 +msgid "Redirection of POST content. P)roceed, see U)RL, use G)ET or C)ancel" +msgstr "" +"POST ¥³¥ó¥Æ¥ó¥È¤Î¥ê¥À¥¤¥ì¥¯¥·¥ç¥ó [p]³¹Ô [u]URL¤ò¸«¤ë [g]GET¤ò»È¤¦ " +"[c]¥¥ã¥ó¥»¥ë" + +#. #define ADVANCED_POST_REDIRECT +#: LYMessages.c:634 +msgid "Redirection of POST content. P)roceed, see U)RL, or C)ancel" +msgstr "POST ¥³¥ó¥Æ¥ó¥È¤Î¥ê¥À¥¤¥ì¥¯¥·¥ç¥ó [p]³¹Ô [u]URL¤ò¸«¤ë [c]¥¥ã¥ó¥»¥ë" + +#. #define CONFIRM_POST_RESUBMISSION +#: LYMessages.c:636 +msgid "Document from Form with POST content. Resubmit?" +msgstr "POST ¥³¥ó¥Æ¥ó¥È¤ò»ý¤Ä¥Õ¥©¡¼¥à¤«¤é¤Î¥É¥¥å¥á¥ó¥È¤Ç¤¹¡£ºÆÁ÷¿®¤·¤Þ¤¹¤«?" + +#. #define CONFIRM_POST_RESUBMISSION_TO +#: LYMessages.c:638 +#, c-format +msgid "Resubmit POST content to %s ?" +msgstr "POST ¥³¥ó¥Æ¥ó¥È¤ò %s ¤ËºÆÁ÷¿®¤·¤Þ¤¹¤«?" + +#. #define CONFIRM_POST_LIST_RELOAD +#: LYMessages.c:640 +#, c-format +msgid "List from document with POST data. Reload %s ?" +msgstr "" +"POST ¥Ç¡¼¥¿¤ò»ý¤Ä¥É¥¥å¥á¥ó¥È¤«¤é¤Î¥ê¥¹¥È¤Ç¤¹¡£%s ¤òºÆÆɤ߹þ¤ß¤·¤Þ¤¹¤«?" + +#. #define CONFIRM_POST_DOC_HEAD +#: LYMessages.c:642 +msgid "Document from POST action, HEAD may not be understood. Proceed?" +msgstr "" +"POST ¥¢¥¯¥·¥ç¥ó¤«¤é¤Îʸ½ñ¤Ç¤¹¤¬¡¢HEAD " +"¤ÏÍý²ò¤µ¤ì¤Æ¤¤¤Ê¤¤¤«¤â¤·¤ì¤Þ¤»¤ó¡£Â³¹Ô¤·¤Þ¤¹¤«?" + +#. #define CONFIRM_POST_LINK_HEAD +#: LYMessages.c:644 +msgid "Form submit action is POST, HEAD may not be understood. Proceed?" +msgstr "" +"¥Õ¥©¡¼¥àÁ÷¿®¥¢¥¯¥·¥ç¥ó¤Ï POST ¤Ç¤¹¤¬¡¢HEAD " +"¤ÏÍý²ò¤µ¤ì¤Æ¤¤¤Ê¤¤¤«¤â¤·¤ì¤Þ¤»¤ó¡£Â³¹Ô¤·¤Þ¤¹¤«?" + +#: LYMessages.c:645 +msgid "Proceed without a username and password?" +msgstr "¥æ¡¼¥¶Ì¾¤â¥Ñ¥¹¥ï¡¼¥É¤â̵¤·¤Ç³¹Ô¤·¤Þ¤¹¤«?" + +#: LYMessages.c:646 +#, c-format +msgid "Proceed (%s)?" +msgstr "³¹Ô¤·¤Þ¤¹¤« (%s)?" + +#: LYMessages.c:647 +msgid "Cannot POST to this host." +msgstr "¤³¤Î¥Û¥¹¥È¤Ë¤Ï POST ¤Ç¤¤Þ¤»¤ó¡£" + +#: LYMessages.c:648 +msgid "POST not supported for this URL - ignoring POST data!" +msgstr "" +"¤³¤Î URL ¤Î¤¿¤á¤Î POST ¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó¡£POST ¥Ç¡¼¥¿¤Ï̵»ë¤µ¤ì¤Þ¤¹!" + +#: LYMessages.c:649 +msgid "Discarding POST data..." +msgstr "POST ¥Ç¡¼¥¿¤òÇÑ´þ¤·¤Æ¤¤¤Þ¤¹..." + +#: LYMessages.c:650 +msgid "Document will not be reloaded!" +msgstr "ʸ½ñ¤ÏºÆÆɤ߹þ¤ß¤µ¤ì¤Þ¤»¤ó!" + +#: LYMessages.c:651 +msgid "Location: " +msgstr "¾ì½ê: " + +#: LYMessages.c:652 +#, c-format +msgid "'%s' not found!" +msgstr "'%s' ¤Ï¸«¤Ä¤«¤ê¤Þ¤»¤ó¤Ç¤·¤¿!" + +#: LYMessages.c:653 +msgid "Default Bookmark File" +msgstr "¥Ç¥Õ¥©¥ë¥È¥Ö¥Ã¥¯¥Þ¡¼¥¯¥Õ¥¡¥¤¥ë" + +#: LYMessages.c:654 +msgid "Screen too small! (8x35 min)" +msgstr "¥¹¥¯¥ê¡¼¥ó¤¬¾®¤µ¤¹¤®¤Þ¤¹!!! (ºÇÄã 8x35 ɬÍפǤ¹)" + +#: LYMessages.c:655 +msgid "Select destination or ^G to Cancel: " +msgstr "¥Õ¥¡¥¤¥ë¤òÁªÂò¤·¤Æ¤¯¤À¤µ¤¤ (^G ¤Ç¥¥ã¥ó¥»¥ë): " + +#. #define MULTIBOOKMARKS_SELECT +#: LYMessages.c:657 +msgid "Select subbookmark, '=' for menu, or ^G to cancel: " +msgstr "¥Ö¥Ã¥¯¥Þ¡¼¥¯¤òÁªÂò [=] ¥á¥Ë¥å¡¼ [^g] ¥¥ã¥ó¥»¥ë: " + +#. #define MULTIBOOKMARKS_SELF +#: LYMessages.c:659 +msgid "Reproduce L)ink in this bookmark file or C)ancel? (l,c): " +msgstr "[l]¤³¤Î¥Ö¥Ã¥¯¥Þ¡¼¥¯¥Õ¥¡¥¤¥ëÆâ¤Ç¥ê¥ó¥¯¤òºÆÀ½ ([c]¥¥ã¥ó¥»¥ë): " + +#: LYMessages.c:660 +msgid "Multiple bookmark support is not available." +msgstr "¥Þ¥ë¥Á¥Ö¥Ã¥¯¥Þ¡¼¥¯¤Ï¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó¡£" + +#: LYMessages.c:661 +#, c-format +msgid " Select Bookmark (screen %d of %d)" +msgstr "¥Ö¥Ã¥¯¥Þ¡¼¥¯¤òÁªÂò (¥Ú¡¼¥¸ %d¡¢Á´ %d ¥Ú¡¼¥¸)" + +#: LYMessages.c:662 +msgid " Select Bookmark" +msgstr " ¥Ö¥Ã¥¯¥Þ¡¼¥¯¤òÁªÂò" + +#. #define MULTIBOOKMARKS_EHEAD_MASK +#: LYMessages.c:664 +#, c-format +msgid "Editing Bookmark DESCRIPTION and FILEPATH (%d of 2)" +msgstr "¥Ö¥Ã¥¯¥Þ¡¼¥¯¤ÎÀâÌÀ¤È¥Õ¥¡¥¤¥ë¤Ø¤Î¥Ñ¥¹¤òÊÔ½¸ (2 ¤Î %d) " + +#. #define MULTIBOOKMARKS_EHEAD +#: LYMessages.c:666 +msgid " Editing Bookmark DESCRIPTION and FILEPATH" +msgstr "¥Ö¥Ã¥¯¥Þ¡¼¥¯¤ÎÀâÌÀ¤È¥Õ¥¡¥¤¥ë̾¤òÊÔ½¸" + +#: LYMessages.c:667 +msgid "Letter: " +msgstr "ʸ»ú¤òÆþÎÏ: " + +#. #define USE_PATH_OFF_HOME +#: LYMessages.c:670 +msgid "Use a filepath off your login directory in SHELL syntax!" +msgstr "" +"SHELL " +"¹½Ê¸¤Ç¤Ï¤¢¤Ê¤¿¤Î¥í¥°¥¤¥ó¥Ç¥£¥ì¥¯¥È¥ê¤ò½ü¤¤¤¿¥Õ¥¡¥¤¥ë¥Ñ¥¹¤ò»ØÄꤷ¤Æ¤¯¤À¤µ¤¤!" + +#: LYMessages.c:672 +msgid "Use a filepath off your home directory!" +msgstr "¤¢¤Ê¤¿¤Î¥Û¡¼¥à¥Ç¥£¥ì¥¯¥È¥ê¤ò½ü¤¤¤¿¥Õ¥¡¥¤¥ë¥Ñ¥¹¤ò»ØÄꤷ¤Æ¤¯¤À¤µ¤¤!" + +#. #define MAXLINKS_REACHED +#: LYMessages.c:675 +msgid "Maximum links per page exceeded! Use half-page or two-line scrolling." +msgstr "" +"°ì¥Ú¡¼¥¸¤¢¤¿¤ê¤Î¥ê¥ó¥¯¤ÎºÇÂç¿ô¤òĶ¤¨¤Þ¤·¤¿! " +"Ⱦ¥Ú¡¼¥¸¤Ê¤¤¤·Æó¹Ôñ°Ì¤Î¥¹¥¯¥í¡¼¥ë¤ò»È¤Ã¤Æ¤¯¤À¤µ¤¤¡£" + +#. #define MAXHIST_REACHED +#: LYMessages.c:677 +msgid "History List maximum reached! Document not pushed." +msgstr "ÍúÎò¥ê¥¹¥È¤¬ºÇÂç¿ô¤òĶ¤¨¤Þ¤·¤¿! ¥É¥¥å¥á¥ó¥È¤Ï¥×¥Ã¥·¥å¤µ¤ì¤Þ¤»¤ó¡£" + +#: LYMessages.c:678 +msgid "No previously visited links available!" +msgstr "°ÊÁ°¤Ëˬ¤Í¤¿¥ê¥ó¥¯¤Ï°ì¤Ä¤â¤¢¤ê¤Þ¤»¤ó!" + +#: LYMessages.c:679 +msgid "Memory exhausted! Program aborted!" +msgstr "¥á¥â¥ê¤ò»È¤¤¤¤ê¤Þ¤·¤¿! ¥×¥í¥°¥é¥à¤¬ÃæÃǤµ¤ì¤Þ¤·¤¿!" + +#: LYMessages.c:680 +msgid "Memory exhausted! Aborting..." +msgstr "¥á¥â¥ê¤ò»È¤¤¤¤ê¤Þ¤·¤¿! ½ªÎ»¤·¤Þ¤¹..." + +#: LYMessages.c:681 +msgid "Not enough memory!" +msgstr "¥á¥â¥ê¤¬Â¤ê¤Þ¤»¤ó!" + +#: LYMessages.c:682 +msgid "Directory/File Manager not available" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê/¥Õ¥¡¥¤¥ë¥Þ¥Í¡¼¥¸¥ã¤ÏÍøÍѤǤ¤Þ¤»¤ó" + +#: LYMessages.c:683 +msgid "HREF in BASE tag is not an absolute URL." +msgstr "BASE ¥¿¥°Ãæ¤Î HREF ¤ÏÀäÂÐ URL ¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó¡£" + +#: LYMessages.c:684 +msgid "Location URL is not absolute." +msgstr "¥í¥±¡¼¥·¥ç¥ó URL ¤ÏÀäÂÐŪ¤Ê¤â¤Î¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó¡£" + +#: LYMessages.c:685 +msgid "Refresh URL is not absolute." +msgstr "¥ê¥Õ¥ì¥Ã¥·¥å URL ¤ÏÀäÂÐŪ¤Ê¤â¤Î¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó¡£" + +#. #define SENDING_MESSAGE_WITH_BODY_TO +#: LYMessages.c:687 +msgid "" +"You are sending a message with body to:\n" +" " +msgstr "" +"ËÜʸ¤ò´Þ¤à¥á¥Ã¥»¡¼¥¸¤ò°Ê²¼¤ØÁ÷¤í¤¦¤È¤·¤Æ¤¤¤Þ¤¹:\n" +" " + +#: LYMessages.c:688 +msgid "" +"You are sending a comment to:\n" +" " +msgstr "" +"°Ê²¼¤Î¥¢¥É¥ì¥¹¤Ë¥³¥á¥ó¥È¤òÁ÷¤ê¤Þ¤¹:\n" +" " + +#: LYMessages.c:689 +msgid "" +"\n" +" With copy to:\n" +" " +msgstr "" +"\n" +" °Ê²¼¤Ø¤â¥³¥Ô¡¼¤òÁ÷¤ê¤Þ¤¹:\n" +" " + +#: LYMessages.c:690 +msgid "" +"\n" +" With copies to:\n" +" " +msgstr "" +"\n" +" °Ê²¼¤Ø¤â¥³¥Ô¡¼¤òÁ÷¤ê¤Þ¤¹:\n" +" " + +#. #define CTRL_G_TO_CANCEL_SEND +#: LYMessages.c:692 +msgid "" +"\n" +"\n" +"Use Ctrl-G to cancel if you do not want to send a message\n" +msgstr "" +"\n" +"\n" +"Ctrl-G ¤Ç¥á¥Ã¥»¡¼¥¸Á÷¿®¤òÃæ»ß¤·¤Þ¤¹\n" + +#. #define ENTER_NAME_OR_BLANK +#: LYMessages.c:694 +msgid "" +"\n" +" Please enter your name, or leave it blank to remain anonymous\n" +msgstr "" +"\n" +"¤¢¤Ê¤¿¤Î¤ªÌ¾Á°¤òÆþÎϤ·¤Æ¤¯¤À¤µ¤¤¡£¶õÇò¤Î¤Þ¤Þ¤À¤Èƿ̾¤Ë¤Ê¤ê¤Þ¤¹\n" + +#. #define ENTER_MAIL_ADDRESS_OR_OTHER +#: LYMessages.c:696 +msgid "" +"\n" +" Please enter a mail address or some other\n" +msgstr "" +"\n" +" ÊÖ»ö¤ò´õ˾¤¹¤ë¾ì¹ç¤Ï¡¢¥á¡¼¥ë¥¢¥É¥ì¥¹¤«¡¢¤½¤Î¾¤Î\n" + +#. #define MEANS_TO_CONTACT_FOR_RESPONSE +#: LYMessages.c:698 +msgid " means to contact you, if you desire a response.\n" +msgstr " Ï¢Íí¼êÃʤò¤³¤³¤Ç»ØÄꤷ¤Æ¤¯¤À¤µ¤¤¡£\n" + +#: LYMessages.c:699 +msgid "" +"\n" +" Please enter a subject line.\n" +msgstr "" +"\n" +" ¥µ¥Ö¥¸¥§¥¯¥È¤òÆþÎϤ·¤Æ¤¯¤À¤µ¤¤¡£\n" + +#. #define ENTER_ADDRESS_FOR_CC +#: LYMessages.c:701 +msgid "" +"\n" +" Enter a mail address for a CC of your message.\n" +msgstr "" +"\n" +" ¤¢¤Ê¤¿¤Î¥á¥Ã¥»¡¼¥¸¤ò CC ¤¹¤ë¥á¡¼¥ë¥¢¥É¥ì¥¹¤òÆþÎϤ·¤Æ¤¯¤À¤µ¤¤¡£\n" + +#: LYMessages.c:702 +msgid " (Leave blank if you don't want a copy.)\n" +msgstr " (¤â¤·¥³¥Ô¡¼¤·¤¿¤¯¤Ê¤±¤ì¤Ð¶õÇò¤Î¤Þ¤Þ¤Ë¤·¤Æ¤ª¤¤¤Æ¤¯¤À¤µ¤¤)\n" + +#: LYMessages.c:703 +msgid "" +"\n" +" Please review the message body:\n" +"\n" +msgstr "" +"\n" +" ¥á¥Ã¥»¡¼¥¸ËÜʸ¤ò³Îǧ¤·¤Æ²¼¤µ¤¤:\n" +"\n" + +#: LYMessages.c:704 +msgid "" +"\n" +"Press RETURN to continue: " +msgstr "" +"\n" +"³¤±¤ë¤Ë¤Ï¥ê¥¿¡¼¥ó¥¡¼¤ò²¡¤·¤Æ²¼¤µ¤¤: " + +#: LYMessages.c:705 +msgid "" +"\n" +"Press RETURN to clean up: " +msgstr "" +"\n" +"Á´¤Æºï½ü¤¹¤ë¤Ë¤Ï¥ê¥¿¡¼¥ó¥¡¼¤ò²¡¤·¤Æ²¼¤µ¤¤: " + +#: LYMessages.c:706 +msgid " Use Control-U to erase the default.\n" +msgstr "Ctrl-U ¤Ç¥Ç¥Õ¥©¥ë¥ÈÃͤòºï½ü¤·¤Þ¤¹¡£\n" + +#: LYMessages.c:707 +msgid "" +"\n" +" Please enter your message below." +msgstr "" +"\n" +" ¤¢¤Ê¤¿¤Î¥á¥Ã¥»¡¼¥¸¤ò°Ê²¼¤ËÆþÎϤ·¤Æ¤¯¤À¤µ¤¤¡£" + +#. #define ENTER_PERIOD_WHEN_DONE_A +#: LYMessages.c:709 src/LYNews.c:396 +msgid "" +"\n" +" When you are done, press enter and put a single period (.)" +msgstr "" +"\n" +" ½ª¤ï¤Ã¤¿¤é¡¢²þ¹Ô¥¡¼¤ò²¡¤·¤Æ¤½¤Î¹Ô¤Ë¥Ô¥ê¥ª¥É (.) ¤ò°ì¤Ä" + +#. #define ENTER_PERIOD_WHEN_DONE_B +#: LYMessages.c:711 src/LYNews.c:397 +msgid "" +"\n" +" on a line and press enter again." +msgstr "" +"\n" +" ÆþÎϤ·¡¢¤â¤¦°ìÅÙ²þ¹Ô¥¡¼¤ò²¡¤·¤Æ²¼¤µ¤¤¡£" + +#. Cookies messages +#. #define ADVANCED_COOKIE_CONFIRMATION +#: LYMessages.c:715 +#, c-format +msgid "%s cookie: %.*s=%.*s Allow? (Y/N/Always/neVer)" +msgstr "%s ¤«¤é¤Î¥¯¥Ã¥¡¼: %.*s=%.*s ¼õ¤±ÉÕ¤±¤Þ¤¹¤«? (Y/N/Always/neVer)" + +#. #define INVALID_COOKIE_DOMAIN_CONFIRMATION +#: LYMessages.c:717 +#, c-format +msgid "Accept invalid cookie domain=%s for '%s'?" +msgstr "ÉÔÀµ¤Ê¥¯¥Ã¥¡¼¥É¥á¥¤¥ó= %s ¤ò %s ¤È¤·¤Æ¼õ¤±ÉÕ¤±¤Þ¤¹¤«?" + +#. #define INVALID_COOKIE_PATH_CONFIRMATION +#: LYMessages.c:719 +#, c-format +msgid "Accept invalid cookie path=%s as a prefix of '%s'?" +msgstr "ÉÔÀµ¤Ê¥¯¥Ã¥¡¼¥Ñ¥¹ = %s ¤ò %s ¤Î¥×¥ê¥Õ¥£¥Ã¥¯¥¹¤È¤·¤Æ¼õ¤±ÉÕ¤±¤Þ¤¹¤«? " + +#: LYMessages.c:720 +msgid "Allowing this cookie." +msgstr "¤³¤Î¥¯¥Ã¥¡¼¤ò¼õ¤±ÉÕ¤±¤Þ¤¹¡£" + +#: LYMessages.c:721 +msgid "Rejecting this cookie." +msgstr "¤³¤Î¥¯¥Ã¥¡¼¤òµñÈݤ·¤Þ¤¹¡£" + +#: LYMessages.c:722 +msgid "The Cookie Jar is empty." +msgstr "¥¯¥Ã¥¡¼È¢¤Ï¶õ¤Ã¤Ý¤Ç¤¹¡£" + +#. #define ACTIVATE_TO_GOBBLE +#: LYMessages.c:724 +msgid "Activate links to gobble up cookies or entire domains," +msgstr "¥ê¥ó¥¯¤òé¤ë¤È¡¢¥¯¥Ã¥¡¼¤ä¥É¥á¥¤¥óÁ´ÂΤò¡Ö¿©¤Ù¡×¤¿¤ê¡¢" + +#: LYMessages.c:725 +msgid "or to change a domain's 'allow' setting." +msgstr "¥É¥á¥¤¥ó¤´¤È¤Î¥¯¥Ã¥¡¼¼õ¤±ÉÕ¤±ÀßÄê¤òÊѤ¨¤ë¤³¤È¤¬¤Ç¤¤Þ¤¹¡£" + +#: LYMessages.c:726 +msgid "(Cookies never allowed.)" +msgstr "(¥¯¥Ã¥¡¼¤ò¾ï¤ËµñÈݤ·¤Þ¤¹)" + +#: LYMessages.c:727 +msgid "(Cookies always allowed.)" +msgstr "(¥¯¥Ã¥¡¼¤ò¾ï¤Ë¼õ¤±ÉÕ¤±¤Þ¤¹)" + +#: LYMessages.c:728 +msgid "(Cookies allowed via prompt.)" +msgstr "(¥¯¥Ã¥¡¼¼õ¤±ÉÕ¤±¤Ï¤½¤Î¤Ä¤ÉȽÃǤ·¤Þ¤¹)" + +#: LYMessages.c:729 +msgid "(Persistent Cookies.)" +msgstr "(±Ê³Ū¤Ê¥¯¥Ã¥¡¼)" + +#: LYMessages.c:730 +msgid "(No title.)" +msgstr "(¥¿¥¤¥È¥ë¤Ê¤·)" + +#: LYMessages.c:731 +msgid "(No name.)" +msgstr "(̾Á°¤Ê¤·)" + +#: LYMessages.c:732 +msgid "(No value.)" +msgstr "(Ãͤʤ·)" + +#: LYMessages.c:733 +msgid "None" +msgstr "¤Ê¤·" + +#: LYMessages.c:734 +msgid "(End of session.)" +msgstr "(¥»¥Ã¥·¥ç¥ó¤Î½ª¤ï¤ê)" + +#: LYMessages.c:735 +msgid "Delete this cookie?" +msgstr "¤³¤Î¥¯¥Ã¥¡¼¤òºï½ü¤·¤Þ¤¹¤«?" + +#: LYMessages.c:736 +msgid "The cookie has been eaten!" +msgstr "¥¯¥Ã¥¡¼¤Ï¿©¤Ù¤é¤ì¤Æ¤·¤Þ¤¤¤Þ¤·¤¿!" + +#: LYMessages.c:737 +msgid "Delete this empty domain?" +msgstr "¤³¤Î¶õ¤Ë¤Ê¤Ã¤¿¥É¥á¥¤¥ó¤òºï½ü¤·¤Þ¤¹¤«?" + +#: LYMessages.c:738 +msgid "The domain has been eaten!" +msgstr "¥É¥á¥¤¥ó¤Ï¿©¤Ù¤é¤ì¤Æ¤·¤Þ¤¤¤Þ¤·¤¿!" + +#. #define DELETE_COOKIES_SET_ALLOW_OR_CANCEL +#: LYMessages.c:740 +msgid "" +"D)elete domain's cookies, set allow A)lways/P)rompt/neV)er, or C)ancel? " +msgstr "" +"¥É¥á¥¤¥ó¤Î¥¯¥Ã¥¡¼¤ò[d]ºï½ü¡¢¾ï¤Ë[a]¼õÉÕ[v]µñÈÝ¡¢[p]ȽÃÇ ([c]¥¥ã¥ó¥»¥ë)? " + +#. #define DELETE_DOMAIN_SET_ALLOW_OR_CANCEL +#: LYMessages.c:742 +msgid "D)elete domain, set allow A)lways/P)rompt/neV)er, or C)ancel? " +msgstr "¥É¥á¥¤¥ó¤ò[d]ºï½ü¡¢¾ï¤Ë[a]¼õÉÕ[v]µñÈÝ¡¢[p]ȽÃÇ ([c]¥¥ã¥ó¥»¥ë)? " + +#: LYMessages.c:743 +msgid "All cookies in the domain have been eaten!" +msgstr "¥É¥á¥¤¥ó¤Î¥¯¥Ã¥¡¼¤Ï¤¹¤Ù¤Æ¿©¤Ù¤é¤ì¤Æ¤·¤Þ¤¤¤Þ¤·¤¿!" + +#: LYMessages.c:744 +#, c-format +msgid "'A'lways allowing from domain '%s'." +msgstr "¥É¥á¥¤¥ó %s ¤«¤é¤Ï¾ï¤Ë¼õ¤±ÉÕ¤±¤Þ¤¹¡£" + +#: LYMessages.c:745 +#, c-format +msgid "ne'V'er allowing from domain '%s'." +msgstr "¥É¥á¥¤¥ó %s ¤«¤é¤ÏÁ´¤ÆµñÈݤ·¤Þ¤¹¡£" + +#: LYMessages.c:746 +#, c-format +msgid "'P'rompting to allow from domain '%s'." +msgstr "¥É¥á¥¤¥ó %s ¤«¤é¤Ï¤½¤Î¤Ä¤ÉȽÃǤ·¤Þ¤¹¡£" + +#: LYMessages.c:747 +msgid "Delete all cookies in this domain?" +msgstr "¤³¤Î¥É¥á¥¤¥ó¤Î¥¯¥Ã¥¡¼¤ò¤¹¤Ù¤Æºï½ü¤·¤Þ¤¹¤«?" + +#: LYMessages.c:748 +msgid "All of the cookies in the jar have been eaten!" +msgstr "¥¯¥Ã¥¡¼È¢¤Î¥¯¥Ã¥¡¼¤Ï¤ß¤ó¤Ê¿©¤Ù¤é¤ì¤Æ¤·¤Þ¤¤¤Þ¤·¤¿!" + +#: LYMessages.c:750 +msgid "Port 19 not permitted in URLs." +msgstr "¥Ý¡¼¥È 19 ¤ò URL ¤Ç»ØÄꤹ¤ë¤³¤È¤Ïǧ¤á¤é¤ì¤Þ¤»¤ó¡£" + +#: LYMessages.c:751 +msgid "Port 25 not permitted in URLs." +msgstr "¥Ý¡¼¥È 25 ¤ò URL ¤Ç»ØÄꤹ¤ë¤³¤È¤Ïǧ¤á¤é¤ì¤Þ¤»¤ó¡£" + +#: LYMessages.c:752 +#, c-format +msgid "Port %lu not permitted in URLs." +msgstr "¥Ý¡¼¥È %lu ¤ò URL ¤Ç»ØÄꤹ¤ë¤³¤È¤Ïǧ¤á¤é¤ì¤Þ¤»¤ó¡£" + +#: LYMessages.c:753 +msgid "URL has a bad port field." +msgstr "URL ¤ËÉÔÀµ¤Ê¥Ý¡¼¥È¥Õ¥£¡¼¥ë¥É¤¬´Þ¤Þ¤ì¤Æ¤¤¤Þ¤¹¡£" + +#: LYMessages.c:754 +msgid "Maximum nesting of HTML elements exceeded." +msgstr "HTML ¥¨¥ì¥á¥ó¥È¤Î¥Í¥¹¥Æ¥£¥ó¥°¤¬¸Â³¦¤òĶ¤¨¤Þ¤·¤¿¡£" + +#: LYMessages.c:755 +msgid "Bad partial reference! Stripping lead dots." +msgstr "ÉÔÀµ¤ÊÉôʬŪ»²¾È¤Ç¤¹! ÀèƬ¥É¥Ã¥È¤òºï¤ê¤Þ¤¹¡£" + +#: LYMessages.c:756 +msgid "Trace Log open failed. Trace off!" +msgstr "ÄÉÀ×¥í¥°¤ò³«¤¯¤Î¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡£ÄÉÀ×½ªÎ»!" + +#: LYMessages.c:757 +msgid "Lynx Trace Log" +msgstr "Lynx ÄÉÀ×¥í¥°" + +#: LYMessages.c:758 +msgid "No trace log has been started for this session." +msgstr "¤³¤Î¥»¥Ã¥·¥ç¥ó¤Ç³«»Ï¤µ¤ì¤¿ÄÉÀ×¥í¥°¤Ï¤¢¤ê¤Þ¤»¤ó¡£" + +#. #define MAX_TEMPCOUNT_REACHED +#: LYMessages.c:760 +msgid "The maximum temporary file count has been reached!" +msgstr "°ì»þŪ¥Õ¥¡¥¤¥ë¿ô¤¬¸Â³¦¤ò±Û¤¨¤Þ¤·¤¿!" + +#. #define FORM_VALUE_TOO_LONG +#: LYMessages.c:762 +msgid "Form field value exceeds buffer length! Trim the tail." +msgstr "¥Õ¥©¡¼¥à¥Õ¥£¡¼¥ë¥É¤ÎÃͤ¬¥Ð¥Ã¥Õ¥¡¤ÎŤµ¤ò±Û¤¨¤Þ¤·¤¿¡£½ªÃ¼¤òÀÚ¤ê¤Þ¤¹¡£" + +#. #define FORM_TAIL_COMBINED_WITH_HEAD +#: LYMessages.c:764 +msgid "Modified tail combined with head of form field value." +msgstr "½ªÃ¼¤ò¥Õ¥©¡¼¥à¥Õ¥£¡¼¥ë¥É¤ÎÃͤÎÀèƬ¤È·ë¹ç¤¹¤ë¤è¤¦Êѹ¹¤·¤Þ¤·¤¿¡£" + +#. HTFile.c +#: LYMessages.c:767 +msgid "Directory" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê" + +#: LYMessages.c:768 +msgid "Directory browsing is not allowed." +msgstr "¥Ç¥£¥ì¥¯¥È¥ê±ÜÍ÷¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó¡£" + +#: LYMessages.c:769 +msgid "Selective access is not enabled for this directory" +msgstr "ÁªÂòŪ¥¢¥¯¥»¥¹¤Ï¤³¤Î¥Ç¥£¥ì¥¯¥È¥ê¤Ç¤Ï»È¤¨¤Þ¤»¤ó¡£" + +#: LYMessages.c:770 +msgid "Multiformat: directory scan failed." +msgstr "¥Þ¥ë¥Á¥Õ¥©¡¼¥Þ¥Ã¥È: ¥Ç¥£¥ì¥¯¥È¥ê¤Î¥¹¥¥ã¥ó¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡£" + +#: LYMessages.c:771 +msgid "This directory is not readable." +msgstr "¤³¤Î¥Ç¥£¥ì¥¯¥È¥ê¤ÏÆɤá¤Þ¤»¤ó¡£" + +#: LYMessages.c:772 +msgid "Can't access requested file." +msgstr "Í׵ᤵ¤ì¤¿¥Õ¥¡¥¤¥ë¤Ë¥¢¥¯¥»¥¹¤Ç¤¤Þ¤»¤ó¡£" + +#: LYMessages.c:773 +msgid "Could not find suitable representation for transmission." +msgstr "ÅÁ㤹¤ëŬÅö¤Êɽ¸½¤ò¸«¤Ä¤±¤é¤ì¤Þ¤»¤ó¤Ç¤·¤¿¡£" + +#: LYMessages.c:774 +msgid "Could not open file for decompression!" +msgstr "Ÿ³«¤¹¤ë¥Õ¥¡¥¤¥ë¤¬³«¤±¤Þ¤»¤ó!" + +#: LYMessages.c:775 +msgid "Files:" +msgstr "¥Õ¥¡¥¤¥ë:" + +#: LYMessages.c:776 +msgid "Subdirectories:" +msgstr "¥µ¥Ö¥Ç¥£¥ì¥¯¥È¥ê:" + +#: LYMessages.c:777 +msgid " directory" +msgstr " ¥Ç¥£¥ì¥¯¥È¥ê" + +#: LYMessages.c:778 +msgid "Up to " +msgstr "°Ê²¼¤Þ¤Ç: " + +#: LYMessages.c:779 +msgid "Current directory is " +msgstr "¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê¤Ï " + +#. HTGopher.c +#: LYMessages.c:782 +msgid "No response from server!" +msgstr "¥µ¡¼¥Ð¤«¤é±þÅú¤¬¤¢¤ê¤Þ¤»¤ó!" + +#: LYMessages.c:783 +msgid "CSO index" +msgstr "CSO ¥¤¥ó¥Ç¥Ã¥¯¥¹" + +#: LYMessages.c:784 +msgid "" +"\n" +"This is a searchable index of a CSO database.\n" +msgstr "" +"\n" +"¤³¤ì¤ÏCSO¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î¸¡º÷²Äǽ¤Ê¥¤¥ó¥Ç¥Ã¥¯¥¹¤Ç¤¹¡£\n" + +#: LYMessages.c:785 +msgid "CSO Search Results" +msgstr "CSO ¸¡º÷·ë²Ì" + +#: LYMessages.c:786 +#, c-format +msgid "Seek fail on %s\n" +msgstr "%s ¤Ç¸¡º÷¤Ë¼ºÇÔ\n" + +#: LYMessages.c:787 +msgid "" +"\n" +"Press the 's' key and enter search keywords.\n" +msgstr "" +"\n" +" 's' ¥¡¼¤ò²¡¤·¤Æ¸¡º÷¤¹¤ë¥¡¼¥ï¡¼¥É¤òÆþÎϤ·¤Æ²¼¤µ¤¤¡£\n" + +#: LYMessages.c:788 +msgid "" +"\n" +"This is a searchable Gopher index.\n" +msgstr "" +"\n" +"¤³¤ì¤Ï¸¡º÷²Äǽ¤Ê Gopher ¥¤¥ó¥Ç¥Ã¥¯¥¹¤Ç¤¹¡£\n" + +#: LYMessages.c:789 +msgid "Gopher index" +msgstr "Gopher ¥¤¥ó¥Ç¥Ã¥¯¥¹" + +#: LYMessages.c:790 +msgid "Gopher Menu" +msgstr "Gopher ¥á¥Ë¥å¡¼" + +#: LYMessages.c:791 +msgid " Search Results" +msgstr " ¸¡º÷·ë²Ì" + +#: LYMessages.c:792 +msgid "Sending CSO/PH request." +msgstr "CSO/PH ¥ê¥¯¥¨¥¹¥È¤òÁ÷¿®Ãæ¡£" + +#: LYMessages.c:793 +msgid "Sending Gopher request." +msgstr "Gopher ¥ê¥¯¥¨¥¹¥È¤òÁ÷¿®Ãæ¡£" + +#: LYMessages.c:794 +msgid "CSO/PH request sent; waiting for response." +msgstr "CSO/PH ¥ê¥¯¥¨¥¹¥È¤òÁ÷¿®¤·¤Þ¤·¤¿¡£±þÅú¤òÂԤäƤ¤¤Þ¤¹¡£" + +#: LYMessages.c:795 +msgid "Gopher request sent; waiting for response." +msgstr "Gopher ¥ê¥¯¥¨¥¹¥È¤òÁ÷¿®¤·¤Þ¤·¤¿¡£±þÅú¤òÂԤäƤ¤¤Þ¤¹¡£" + +#: LYMessages.c:796 +msgid "" +"\n" +"Please enter search keywords.\n" +msgstr "" +"\n" +"¸¡º÷¤¹¤ë¥¡¼¥ï¡¼¥É¤òÆþÎϤ·¤Æ²¼¤µ¤¤¡£\n" + +#: LYMessages.c:797 +msgid "" +"\n" +"The keywords that you enter will allow you to search on a" +msgstr "" +"\n" +"ÆþÎϤ·¤¿¥¡¼¥ï¡¼¥É¤Ë¤è¤ê¡¢¥Ç¡¼¥¿¥Ù¡¼¥¹Æâ¤Î¸Ä¿Í»á̾¤ò" + +#: LYMessages.c:798 +msgid " person's name in the database.\n" +msgstr "¸¡º÷¤¹¤ë¤³¤È¤¬²Äǽ¤Ë¤Ê¤ê¤Þ¤¹¡£\n" + +#. HTNews.c +#: LYMessages.c:801 +msgid "Connection closed ???" +msgstr "Àܳ¤¬ÊĤ¸¤é¤ì¤¿¤Î¤«¤â ???" + +#: LYMessages.c:802 +msgid "Cannot open temporary file for news POST." +msgstr "¥Ë¥å¡¼¥¹ POST ¤Î¤¿¤á¤Î°ì»þ¥Õ¥¡¥¤¥ë¤¬³«¤±¤Þ¤»¤ó¡£" + +#: LYMessages.c:803 +msgid "This client does not contain support for posting to news with SSL." +msgstr "" +"¤³¤Î¥¯¥é¥¤¥¢¥ó¥È¤Ç¤Ï¥Ë¥å¡¼¥¹¤ò SSL " +"·Ðͳ¤Ç¥Ý¥¹¥È¤¹¤ëµ¡Ç½¤¬¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó¡£" + +#. HTStyle.c +#: LYMessages.c:806 +#, c-format +msgid "Style %d `%s' SGML:%s. Font %s %.1f point.\n" +msgstr "¥¹¥¿¥¤¥ë %d `%s'¡¢SGML:%s¡£ ¥Õ¥©¥ó¥È %s %.1f ¥Ý¥¤¥ó¥È¡£\n" + +#: LYMessages.c:807 +#, c-format +msgid "\tIndents: first=%.0f others=%.0f, Height=%.1f Desc=%.1f\n" +msgstr "\t¥¤¥ó¥Ç¥ó¥È: ºÇ½é=%.0f ¤½¤Î¾=%.0f¡¢¹â¤µ=%.1f Desc=%.1f\n" + +#: LYMessages.c:808 +#, c-format +msgid "\tAlign=%d, %d tabs. (%.0f before, %.0f after)\n" +msgstr "\tÄ´À°=%d¡¢%d ¥¿¥Ö¡£(Á°¤Ë %.0f¡¢¸å¤Ë %.0f)\n" + +#: LYMessages.c:809 +#, c-format +msgid "\t\tTab kind=%d at %.0f\n" +msgstr "\t\t¥¿¥Ö ¼ïÎà=%d (%.0f ¤Ë¤ª¤±¤ë)\n" + +#. HTTP.c +#: LYMessages.c:812 +msgid "Can't proceed without a username and password." +msgstr "¥æ¡¼¥¶Ì¾¤È¥Ñ¥¹¥ï¡¼¥É̵¤·¤Ç¤Ï³¹Ô¤Ç¤¤Þ¤»¤ó¡£" + +#: LYMessages.c:813 +msgid "Can't retry with authorization! Contact the server's WebMaster." +msgstr "ǧ¾ÚÉÕ¤¤ÇºÆ»î¹Ô¤Ç¤¤Þ¤»¤ó! ¥µ¡¼¥Ð¤Î¥¦¥§¥Ö¥Þ¥¹¥¿¤ËÏ¢Íí¤·¤Æ¤¯¤À¤µ¤¤¡£" + +#: LYMessages.c:814 +msgid "Can't retry with proxy authorization! Contact the server's WebMaster." +msgstr "" +"¥×¥í¥¥·Ç§¾ÚÉÕ¤¤ÇºÆ»î¹Ô¤Ç¤¤Þ¤»¤ó! ¥µ¡¼¥Ð¤Î¥¦¥§¥Ö¥Þ¥¹¥¿¤ËÏ¢Íí¤·¤Æ¤¯¤À¤µ¤¤¡£" + +#: LYMessages.c:815 +msgid "Retrying with proxy authorization information." +msgstr "¥×¥í¥¥·Ç§¾Ú¾ðÊóÉÕ¤¤ÇºÆ»î¹Ô¤·¤Æ¤¤¤Þ¤¹¡£" + +#. HTWAIS.c +#: LYMessages.c:818 +msgid "HTWAIS: Return message too large." +msgstr "HTWAIS: ¥ê¥¿¡¼¥ó¥á¥Ã¥»¡¼¥¸¤¬Â礤¹¤®¤Þ¤¹¡£" + +#: LYMessages.c:819 +msgid "Enter WAIS query: " +msgstr "WAIS ¸¡º÷ʸ»úÎó¤òÆþÎÏ: " + +#. Miscellaneous status +#: LYMessages.c:822 +msgid "Retrying as HTTP0 request." +msgstr "HTTP0 ¥ê¥¯¥¨¥¹¥È¤È¤·¤ÆºÆÁ÷¿®¤·¤Æ¤¤¤Þ¤¹¡£" + +#: LYMessages.c:823 +#, c-format +msgid "Transferred %d bytes" +msgstr "%d ¥Ð¥¤¥ÈžÁ÷ºÑ" + +#: LYMessages.c:824 +msgid "Data transfer complete" +msgstr "¥Ç¡¼¥¿Å¾Á÷´°Î»" + +#: LYMessages.c:825 +#, c-format +msgid "Error processing line %d of %s\n" +msgstr "%d ¹ÔÌÜ(%s Ãæ)¤Î½èÍý¤Ç¥¨¥é¡¼\n" + +#. Lynx internal page titles +#: LYMessages.c:828 +msgid "Address List Page" +msgstr "¥¢¥É¥ì¥¹¥ê¥¹¥È¥Ú¡¼¥¸" + +#: LYMessages.c:829 +msgid "Bookmark file" +msgstr "¥Ö¥Ã¥¯¥Þ¡¼¥¯¥Õ¥¡¥¤¥ë" + +#: LYMessages.c:830 +msgid "Configuration Definitions" +msgstr "¥³¥ó¥Ñ¥¤¥ë»þ¤ËÄêµÁ¤µ¤ì¤¿ÀßÄê" + +#: LYMessages.c:831 +msgid "Cookie Jar" +msgstr "¥¯¥Ã¥¡¼È¢" + +#: LYMessages.c:832 +msgid "Current Key Map" +msgstr "¸½ºß¤Î¥¡¼¥Þ¥Ã¥×" + +#: LYMessages.c:833 +msgid "File Management Options" +msgstr "¥Õ¥¡¥¤¥ë´ÉÍý¥ª¥×¥·¥ç¥ó" + +#: LYMessages.c:834 +msgid "Download Options" +msgstr "¥À¥¦¥ó¥í¡¼¥ÉÀè¤òÁªÂò" + +#: LYMessages.c:835 +msgid "History Page" +msgstr "ÍúÎò¥Ú¡¼¥¸" + +#: LYMessages.c:836 +msgid "List Page" +msgstr "¥ê¥¹¥È¥Ú¡¼¥¸" + +#: LYMessages.c:837 +msgid "Lynx.cfg Information" +msgstr "Lynx.cfg ¤Î¾ðÊó" + +#: LYMessages.c:838 +msgid "Converted Mosaic Hotlist" +msgstr "ÊÑ´¹¤µ¤ì¤¿ Mosaic ¤Î Hotlist" + +#: LYMessages.c:839 +msgid "Options Menu" +msgstr "ÀßÄê¥á¥Ë¥å¡¼" + +#: LYMessages.c:840 +msgid "File Permission Options" +msgstr "¥Õ¥¡¥¤¥ë¥Ñ¡¼¥ß¥Ã¥·¥ç¥ó¤ÎÀßÄê" + +#: LYMessages.c:841 +msgid "Printing Options" +msgstr "°õºþ¤ÎÀßÄê" + +#: LYMessages.c:842 +msgid "Information about the current document" +msgstr "¸½ºß¤Îʸ½ñ¤Ë¤Ä¤¤¤Æ¤Î¾ðÊó" + +#: LYMessages.c:843 +msgid "Your recent statusline messages" +msgstr "ºÇ¶á¤Î¥¹¥Æ¡¼¥¿¥¹¥é¥¤¥ó¥á¥Ã¥»¡¼¥¸" + +#: LYMessages.c:844 +msgid "Upload Options" +msgstr "¥¢¥Ã¥×¥í¡¼¥É¤ÎÀßÄê" + +#: LYMessages.c:845 +msgid "Visited Links Page" +msgstr "ˬ¤ì¤¿¥ê¥ó¥¯°ìÍ÷" + +#. CONFIG_DEF_TITLE subtitles +#: LYMessages.c:848 +msgid "See also" +msgstr "¤³¤Á¤é¤â»²¾È:" + +#: LYMessages.c:849 +msgid "your" +msgstr "¤¢¤Ê¤¿¤Î" + +#: LYMessages.c:850 +msgid "for runtime options" +msgstr "¥é¥ó¥¿¥¤¥à¥ª¥×¥·¥ç¥ó¸þ¤±" + +#: LYMessages.c:851 +msgid "compile time options" +msgstr "¥³¥ó¥Ñ¥¤¥ë»þ¤Î¥ª¥×¥·¥ç¥ó" + +#: LYMessages.c:852 +msgid "latest release" +msgstr "ºÇ¿·ÈÇ" + +#: LYMessages.c:853 +#, fuzzy +msgid "pre-release version" +msgstr "³«È¯ÈÇ" + +#: LYMessages.c:854 +msgid "development version" +msgstr "³«È¯ÈÇ" + +#. #define AUTOCONF_CONFIG_CACHE +#: LYMessages.c:856 +msgid "" +"The following data were derived during the automatic configuration/build\n" +"process of this copy of Lynx. When reporting a bug, please include a copy\n" +"of this page." +msgstr "" +"°Ê²¼¤Î¥Ç¡¼¥¿¤Ï¤³¤Î Lynx ¤Î¥³¥Ô¡¼¤¬¼«Æ°Åª¤ËÀßÄê/¹½ÃÛ¤µ¤ì¤ë²áÄø¤Ç\n" +"ÆÀ¤é¤ì¤¿¤â¤Î¤Ç¤¹¡£¥Ð¥°¤òÊó¹ð¤¹¤ëºÝ¤Ë¤Ï¡¢¤³¤Î¥Ú¡¼¥¸¤Î¥³¥Ô¡¼¤ò\n" +"´Þ¤á¤Æ¤¯¤À¤µ¤¤¡£" + +#. #define AUTOCONF_LYNXCFG_H +#: LYMessages.c:860 +msgid "" +"The following data were used as automatically-configured compile-time\n" +"definitions when this copy of Lynx was built." +msgstr "" +"°Ê²¼¤Î¥Ç¡¼¥¿¤Ï¡¢¤³¤Î Lynx ¤Î¥³¥Ô¡¼¤¬¥Ó¥ë¥É¤µ¤ì¤¿ºÝ¤Ë¡¢¼«Æ°Åª¤ËÀßÄꤵ¤ì¤¿\n" +"¥³¥ó¥Ñ¥¤¥ë»þÄêµÁ¤È¤·¤Æ»È¤ï¤ì¤¿¤â¤Î¤Ç¤¹¡£" + +#. #define DIRED_NOVICELINE +#: LYMessages.c:865 +msgid "" +" C)reate D)ownload E)dit F)ull menu M)odify R)emove T)ag U)pload " +"\n" +msgstr "" +" [c]ºîÀ® [d]¥À¥¦¥ó¥í¡¼¥É [e]ÊÔ½¸ [f]¥Õ¥ë¥á¥Ë¥å¡¼ [m]Êѹ¹ [r]ºï½ü [t]¥¿¥° " +"[u]¥¢¥Ã¥×¥í¡¼¥É \n" + +#: LYMessages.c:866 +msgid "Failed to obtain status of current link!" +msgstr "¸½ºß¤Î¥ê¥ó¥¯¤Î¥¹¥Æ¡¼¥¿¥¹¤ÎÆþ¼ê¤Ë¼ºÇÔ¤·¤Þ¤·¤¿!" + +#. #define INVALID_PERMIT_URL +#: LYMessages.c:869 +msgid "Special URL only valid from current File Permission menu!" +msgstr "ÆÃÊÌ URL ¤Ï¸½ºß¤Î¥Õ¥¡¥¤¥ëµö²Ä¥á¥Ë¥å¡¼¤«¤é¤Î¤ß͸ú¤Ç¤¹!" + +#: LYMessages.c:873 +msgid "External support is currently disabled." +msgstr "³°Éô¥µ¥Ý¡¼¥È¤Ï¸½ºß̵¸ú¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹¡£" + +#: WWW/Library/Implementation/HTAABrow.c:648 +#, c-format +msgid "Username for '%s' at %s '%s%s':" +msgstr "'%s' ¤Î¤¿¤á¤Î %s '%s%s' ¤Ë¤ª¤±¤ë¥æ¡¼¥¶Ì¾:" + +#: WWW/Library/Implementation/HTAABrow.c:915 +msgid "" +"This client doesn't know how to compose proxy authorization information for " +"scheme" +msgstr "" +"¤³¤Î¥¯¥é¥¤¥¢¥ó¥È¤Ï¤³¤Î¥¹¥¡¼¥à¸þ¤±¤Ë¥×¥í¥¥·Ç§¾Ú¾ðÊó¤ò¹½À®¤¹¤ë¤³¤È¤¬¤Ç¤¤Þ¤»¤" +"ó" + +#: WWW/Library/Implementation/HTAABrow.c:990 +msgid "" +"This client doesn't know how to compose authorization information for scheme" +msgstr "¤³¤Î¥¯¥é¥¤¥¢¥ó¥È¤Ï¤³¤Î¥¹¥¡¼¥à¸þ¤±¤Ëǧ¾Ú¾ðÊó¤ò¹½À®¤¹¤ë¤³¤È¤¬¤Ç¤¤Þ¤»¤ó" + +#: WWW/Library/Implementation/HTAABrow.c:1098 +#, c-format +msgid "Invalid header '%s%s%s%s%s'" +msgstr "ÉÔÀµ¤Ê¥Ø¥Ã¥À '%s%s%s%s%s' ¤Ç¤¹" + +#: WWW/Library/Implementation/HTAABrow.c:1202 +msgid "Proxy authorization required -- retrying" +msgstr "¥×¥í¥¥·Ç§¾Ú¤¬É¬ÍפǤ¹ -- ºÆ»î¹Ô¤·¤Æ¤¤¤Þ¤¹" + +#: WWW/Library/Implementation/HTAABrow.c:1261 +msgid "Access without authorization denied -- retrying" +msgstr "ǧ¾Ú̵¤·¤Î¥¢¥¯¥»¥¹¤ÏµñÈݤµ¤ì¤Þ¤·¤¿ -- ºÆ»î¹Ô¤·¤Æ¤¤¤Þ¤¹" + +#: WWW/Library/Implementation/HTAccess.c:683 +msgid "Access forbidden by rule" +msgstr "µ¬Â§¤Ë¤è¤ê¥¢¥¯¥»¥¹¤Ï¶Ø»ß¤µ¤ì¤Æ¤¤¤Þ¤¹¡£" + +#: WWW/Library/Implementation/HTAccess.c:785 +msgid "Document with POST content not found in cache. Resubmit?" +msgstr "" +"POST " +"¥³¥ó¥Æ¥ó¥Ä¤ò´Þ¤à¥É¥¥å¥á¥ó¥È¤Ï¥¥ã¥Ã¥·¥å¤ÎÃæ¤Ë¤¢¤ê¤Þ¤»¤ó¤Ç¤·¤¿¡£ºÆÁ÷¿®¤·¤Þ¤¹¤" +"«?" + +#: WWW/Library/Implementation/HTAccess.c:1026 src/GridText.c:8484 +msgid "Loading incomplete." +msgstr "Æɤ߹þ¤ß¤¬ÃæÃǤµ¤ì¤Þ¤·¤¿¡£" + +#: WWW/Library/Implementation/HTAccess.c:1056 +msgid "" +"**** HTAccess: socket or file number returned by obsolete load routine!\n" +msgstr "" +"*** HTAccess: " +"¥½¥±¥Ã¥È¤«¥Õ¥¡¥¤¥ë¤ÎÈֹ椬¡¢µì¼°¤ÎÆɤ߹þ¤ß¥ë¡¼¥Á¥ó¤«¤éÊÖ¤µ¤ì¤Æ¤¤¤Þ¤¹!\n" + +#: WWW/Library/Implementation/HTAccess.c:1058 +msgid "" +"**** HTAccess: Internal software error. Please mail lynx-dev@sig.net!\n" +msgstr "" +"**** HTAccess: ¥½¥Õ¥È¥¦¥§¥¢ÆâÉô¤Î¥¨¥é¡¼¤Ç¤¹¡£lynx-dev@sig.net " +"¤Ë¥á¡¼¥ë¤ÇÊó¹ð¤·¤Æ¤¯¤À¤µ¤¤!\n" + +#: WWW/Library/Implementation/HTAccess.c:1059 +#, c-format +msgid "**** HTAccess: Status returned was: %d\n" +msgstr "**** HTAccess: Ê֤äƤ¤¿¥¹¥Æ¡¼¥¿¥¹¤Ï: %d\n" + +#. +#. * hack: if we fail in HTAccess.c +#. * avoid duplicating URL, oh. +#. +#: WWW/Library/Implementation/HTAccess.c:1065 src/LYMainLoop.c:7653 +msgid "Can't Access" +msgstr "¥¢¥¯¥»¥¹¤Ç¤¤Þ¤»¤ó¡£" + +#: WWW/Library/Implementation/HTAccess.c:1073 +msgid "Unable to access document." +msgstr "ʸ½ñ¤Ë¥¢¥¯¥»¥¹¤Ç¤¤Þ¤»¤ó¡£" + +#: WWW/Library/Implementation/HTFTP.c:770 +#, c-format +msgid "Enter password for user %s@%s:" +msgstr "¥æ¡¼¥¶ %s@%s ¤Î¥Ñ¥¹¥ï¡¼¥É¤òÆþÎÏ:" + +#: WWW/Library/Implementation/HTFTP.c:798 +msgid "Unable to connect to FTP host." +msgstr "FTP ¥Û¥¹¥È¤ËÀܳ¤Ç¤¤Þ¤»¤ó¡£" + +#: WWW/Library/Implementation/HTFTP.c:1068 +msgid "close master socket" +msgstr "¥Þ¥¹¥¿¡¼¥½¥±¥Ã¥È¤¬ÊĤ¸¤Þ¤¹" + +#: WWW/Library/Implementation/HTFTP.c:1130 +msgid "socket for master socket" +msgstr "¥Þ¥¹¥¿¡¼¥½¥±¥Ã¥ÈÍÑ¥½¥±¥Ã¥È" + +#. +#. ** It's a symbolic link, does the user care about +#. ** knowing if it is symbolic? I think so since +#. ** it might be a directory. +#. +#: WWW/Library/Implementation/HTFTP.c:1644 +#: WWW/Library/Implementation/HTFTP.c:2265 +msgid "Symbolic Link" +msgstr "¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯" + +#: WWW/Library/Implementation/HTFTP.c:2626 +msgid "Receiving FTP directory." +msgstr "FTP ¥Ç¥£¥ì¥¯¥È¥ê¤ò¼õ¿®Ãæ" + +#: WWW/Library/Implementation/HTFTP.c:2769 +#, c-format +msgid "Transferred %d bytes (%5d)" +msgstr "%d ¥Ð¥¤¥ÈžÁ÷ºÑ (%5d)" + +#: WWW/Library/Implementation/HTFTP.c:3085 +msgid "connect for data" +msgstr "¥Ç¡¼¥¿¤ËÀܳ" + +#: WWW/Library/Implementation/HTFTP.c:3685 +msgid "Receiving FTP file." +msgstr "FTP ¥Õ¥¡¥¤¥ë¤ò¼õ¿®Ãæ" + +#: WWW/Library/Implementation/HTFinger.c:275 +msgid "Could not set up finger connection." +msgstr "finger Àܳ¤òÍѰդǤ¤Þ¤»¤ó¤Ç¤·¤¿¡£" + +#: WWW/Library/Implementation/HTFinger.c:320 +msgid "Could not load data (no sitename in finger URL)" +msgstr "" +"¥Ç¡¼¥¿¤¬Æɤ߹þ¤á¤Þ¤»¤ó¤Ç¤·¤¿(finger URL ¤Ë¥µ¥¤¥È̾¤¬»ØÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó)" + +#: WWW/Library/Implementation/HTFinger.c:328 +msgid "Invalid port number - will only use port 79!" +msgstr "ÉÔÀµ¤Ê¥Ý¡¼¥ÈÈÖ¹æ¤Ç¤¹ - ¥Ý¡¼¥È 79 ¤Î¤ß¤ò»È¤¤¤Þ¤¹!" + +#: WWW/Library/Implementation/HTFinger.c:396 +msgid "Could not access finger host." +msgstr "finger ¥Û¥¹¥È¤ËÀܳ¤Ç¤¤Þ¤»¤ó¡£" + +#: WWW/Library/Implementation/HTFinger.c:407 +msgid "No response from finger server." +msgstr "finger ¥µ¡¼¥Ð¤¬±þÅú¤·¤Þ¤»¤ó¡£" + +#: WWW/Library/Implementation/HTNews.c:360 +#, c-format +msgid "Username for news host '%s':" +msgstr "¥Ë¥å¡¼¥¹¥Û¥¹¥È '%s' ¤Ç¤Î¥æ¡¼¥¶Ì¾:" + +#: WWW/Library/Implementation/HTNews.c:414 +msgid "Change username?" +msgstr "¥æ¡¼¥¶Ì¾¤òÊѹ¹¤·¤Þ¤¹¤«?" + +#: WWW/Library/Implementation/HTNews.c:418 +msgid "Username:" +msgstr "¥æ¡¼¥¶Ì¾:" + +#: WWW/Library/Implementation/HTNews.c:442 +#, c-format +msgid "Password for news host '%s':" +msgstr "¥Ë¥å¡¼¥¹¥Û¥¹¥È '%s' ¤Î¥Ñ¥¹¥ï¡¼¥É:" + +#: WWW/Library/Implementation/HTNews.c:526 +msgid "Change password?" +msgstr "¥Ñ¥¹¥ï¡¼¥É¤òÊѹ¹¤·¤Þ¤¹¤«?" + +#: WWW/Library/Implementation/HTNews.c:1697 +#, c-format +msgid "No matches for: %s" +msgstr "³ºÅö¤¹¤ë¤â¤Î¤¬¤¢¤ê¤Þ¤»¤ó: %s" + +#: WWW/Library/Implementation/HTNews.c:1750 +msgid "" +"\n" +"No articles in this group.\n" +msgstr "" +"\n" +"¤³¤Î¥°¥ë¡¼¥×Æâ¤Ë¤Ïµ»ö¤¬¤¢¤ê¤Þ¤»¤ó¡£\n" + +#: WWW/Library/Implementation/HTNews.c:1763 +msgid "" +"\n" +"No articles in this range.\n" +msgstr "" +"\n" +"¤³¤ÎÈϰϤˤϵ»ö¤¬¤¢¤ê¤Þ¤»¤ó¡£\n" + +#. +#. ** Set window title. +#. +#: WWW/Library/Implementation/HTNews.c:1776 +#, c-format +msgid "%s, Articles %d-%d" +msgstr "%s¡¢µ»ö %d-%d" + +#: WWW/Library/Implementation/HTNews.c:1798 +msgid "Earlier articles" +msgstr "°ÊÁ°¤Îµ»ö" + +#: WWW/Library/Implementation/HTNews.c:1811 +#, c-format +msgid "" +"\n" +"There are about %d articles currently available in %s, IDs as follows:\n" +"\n" +msgstr "" +"\n" +"¸½ºß %d Ä̤ۤɤε»ö¤ò %s ¤ÇÆɤळ¤È¤¬¤Ç¤¤Þ¤¹¡£ID ¤Ï°Ê²¼¤ÎÄ̤ê:\n" +"\n" + +#: WWW/Library/Implementation/HTNews.c:1871 +msgid "All available articles in " +msgstr "°Ê²¼¤ÇÆɤá¤ëÁ´µ»ö: " + +#: WWW/Library/Implementation/HTNews.c:2087 +msgid "Later articles" +msgstr "¤½¤Î¸å¤Îµ»ö" + +#: WWW/Library/Implementation/HTNews.c:2111 +msgid "Post to " +msgstr "°Ê²¼¤Ø¥Ý¥¹¥È: " + +#: WWW/Library/Implementation/HTNews.c:2290 +msgid "This client does not contain support for SNEWS URLs." +msgstr "¤³¤Î¥¯¥é¥¤¥¢¥ó¥È¤Ë¤Ï SNEWS URL ¤Î¥µ¥Ý¡¼¥È¤¬´Þ¤Þ¤ì¤Æ¤¤¤Þ¤»¤ó¡£" + +#: WWW/Library/Implementation/HTNews.c:2497 +msgid "No target for raw text!" +msgstr "À¸¥Æ¥¥¹¥È¸þ¤±¤Î¥¿¡¼¥²¥Ã¥È¤¬¤¢¤ê¤Þ¤»¤ó!" + +#: WWW/Library/Implementation/HTNews.c:2527 +msgid "Connecting to NewsHost ..." +msgstr "¥Ë¥å¡¼¥¹¥Û¥¹¥È¤ËÀܳÃæ ..." + +#: WWW/Library/Implementation/HTNews.c:2561 +#, c-format +msgid "Could not access %s." +msgstr "%s ¤Ë¥¢¥¯¥»¥¹¤Ç¤¤Þ¤»¤ó¡£" + +#: WWW/Library/Implementation/HTNews.c:2613 +#, c-format +msgid "Can't read news info. News host %.20s responded: %.200s" +msgstr "¥Ë¥å¡¼¥¹¾ðÊó¤¬Æɤá¤Þ¤»¤ó¡£¥Ë¥å¡¼¥¹¥Û¥¹¥È %.20s ¤Î±þÅú: %.200s" + +#: WWW/Library/Implementation/HTNews.c:2617 +#, c-format +msgid "Can't read news info, empty response from host %s" +msgstr "¥Ë¥å¡¼¥¹¾ðÊó¤¬Æɤá¤Þ¤»¤ó¡£¥Û¥¹¥È %s ¤«¤é¤Î±þÅú¤Ï¶õ¤Ç¤¹" + +#. +#. ** List available newsgroups. - FM +#. +#: WWW/Library/Implementation/HTNews.c:2821 +msgid "Reading list of available newsgroups." +msgstr "ÍøÍѲÄǽ¤Ê¥Ë¥å¡¼¥¹¥°¥ë¡¼¥×¤Î¥ê¥¹¥È¤òÆɤ߹þ¤ßÃæ¡£" + +#: WWW/Library/Implementation/HTNews.c:2843 +msgid "Reading list of articles in newsgroup." +msgstr "¥Ë¥å¡¼¥¹¥°¥ë¡¼¥×Æâ¤Îµ»ö¤Î¥ê¥¹¥È¤òÆɤ߹þ¤ßÃæ¡£" + +#. +#. ** Get an article from a news group. - FM +#. +#: WWW/Library/Implementation/HTNews.c:2849 +msgid "Reading news article." +msgstr "¥Ë¥å¡¼¥¹µ»ö¤òÆɤ߹þ¤ßÃæ¡£" + +#: WWW/Library/Implementation/HTNews.c:2879 +msgid "Sorry, could not load requested news." +msgstr "¤¦¤¦¤à¡¢Í׵ᤵ¤ì¤¿¥Ë¥å¡¼¥¹¤òÆɤ߹þ¤á¤Þ¤»¤ó¤Ç¤·¤¿¡£" + +#: WWW/Library/Implementation/HTTCP.c:1256 +msgid "Address has invalid port" +msgstr "¥¢¥É¥ì¥¹¤ËÉÔÀµ¤Ê¥Ý¡¼¥È¤¬»ØÄꤵ¤ì¤Æ¤¤¤Þ¤¹" + +#: WWW/Library/Implementation/HTTCP.c:1397 +msgid "Address length looks invalid" +msgstr "¥¢¥É¥ì¥¹Ä¹¤¬ÉÔÀµ¤Î¤è¤¦¤Ç¤¹" + +#: WWW/Library/Implementation/HTTCP.c:1640 +#: WWW/Library/Implementation/HTTCP.c:1658 +#, c-format +msgid "Unable to locate remote host %s." +msgstr "¥ê¥â¡¼¥È¥Û¥¹¥È %s ¤Î°ÌÃÖ¤òÆÃÄê¤Ç¤¤Þ¤»¤ó¡£" + +#. Not HTProgress, so warning won't be overwritten +#. * immediately; but not HTAlert, because typically +#. * there will be other alerts from the callers. - kw +#. +#: WWW/Library/Implementation/HTTCP.c:1655 +#: WWW/Library/Implementation/HTTelnet.c:103 +#, c-format +msgid "Invalid hostname %s" +msgstr "%s ¤ÏÉÔÀµ¤Ê¥Û¥¹¥È̾¤Ç¤¹" + +#: WWW/Library/Implementation/HTTCP.c:1669 +#, c-format +msgid "Making %s connection to %s" +msgstr "%s ¤Ç %s ¤ËÀܳÃæ" + +#: WWW/Library/Implementation/HTTCP.c:1685 +#, c-format +msgid "socket failed: family %d addr %s port %s." +msgstr "" + +#: WWW/Library/Implementation/HTTCP.c:1694 +msgid "socket failed." +msgstr "¥½¥±¥Ã¥È¤¬¼ºÇÔ¤·¤Þ¤·¤¿¡£" + +#: WWW/Library/Implementation/HTTCP.c:1714 +msgid "Could not make connection non-blocking." +msgstr "Àܳ¤òÈó¥Ö¥í¥Ã¥¥ó¥°¤Ë¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿¡£" + +#: WWW/Library/Implementation/HTTCP.c:1783 +msgid "Connection failed (too many retries)." +msgstr "Àܳ¤Ë¼ºÇÔ¤·¤Þ¤·¤¿ (ºÆ»î¹Ô¤¬Â¿¤¹¤®¤Þ¤¹)" + +#: WWW/Library/Implementation/HTTCP.c:1976 +msgid "Could not restore socket to blocking." +msgstr "¥Ö¥í¥Ã¥¥ó¥°¤Î¤¿¤á¤Î¥½¥±¥Ã¥È¤òÉüµì¤Ç¤¤Þ¤»¤ó¤Ç¤·¤¿¡£" + +#: WWW/Library/Implementation/HTTCP.c:2042 +msgid "Socket read failed for 180,000 tries." +msgstr "180,000 ²ó»î¹Ô¤·¤Þ¤·¤¿¤¬¥½¥±¥Ã¥È¤ÎÆɤ߹þ¤ß¤Ë¼ºÇÔ¤·¤Þ¤·¤¿¡£" + +#: WWW/Library/Implementation/HTTP.c:344 +msgid "This client does not contain support for HTTPS URLs." +msgstr "¤³¤Î¥¯¥é¥¤¥¢¥ó¥È¤Ï HTTPS URL ¤ò¥µ¥Ý¡¼¥È¤·¤Æ¤¤¤Þ¤»¤ó¡£" + +#: WWW/Library/Implementation/HTTP.c:368 +msgid "Unable to connect to remote host." +msgstr "¥ê¥â¡¼¥È¥Û¥¹¥È¤ËÀܳ¤Ç¤¤Þ¤»¤ó¡£" + +#: WWW/Library/Implementation/HTTP.c:785 +msgid "Sending HTTP request." +msgstr "HTTP ¥ê¥¯¥¨¥¹¥È¤òÁ÷¿®Ãæ" + +#: WWW/Library/Implementation/HTTP.c:819 +msgid "Unexpected network write error; connection aborted." +msgstr "ÆÍÁ³¤Î¥Í¥Ã¥È¥ï¡¼¥¯½ñ¤¹þ¤ß¥¨¥é¡¼: Àܳ¤¬ÃæÃǤµ¤ì¤Þ¤·¤¿¡£" + +#: WWW/Library/Implementation/HTTP.c:825 +msgid "HTTP request sent; waiting for response." +msgstr "HTTP ¥ê¥¯¥¨¥¹¥È¤òÁ÷¿®¤·¤Þ¤·¤¿: ±þÅú¤òÂԤäƤ¤¤Þ¤¹" + +#: WWW/Library/Implementation/HTTP.c:889 +msgid "Unexpected network read error; connection aborted." +msgstr "ÆÍÁ³¤Î¥Í¥Ã¥È¥ï¡¼¥¯Æɤ߹þ¤ß¥¨¥é¡¼: Àܳ¤¬ÃæÃǤµ¤ì¤Þ¤·¤¿¡£" + +#. +#. ** HTTP/1.1 Informational statuses. +#. ** 100 Continue. +#. ** 101 Switching Protocols. +#. ** > 101 is unknown. +#. ** We should never get these, and they have only +#. ** the status line and possibly other headers, +#. ** so we'll deal with them by showing the full +#. ** header to the user as text/plain. - FM +#. +#: WWW/Library/Implementation/HTTP.c:1085 +msgid "Got unexpected Informational Status." +msgstr "ͽ´ü¤·¤Ê¤¤ Informational Status ¤ò¼õ¤±¼è¤ê¤Þ¤·¤¿¡£" + +#. +#. * Reset Content. The server has fulfilled the +#. * request but nothing is returned and we should +#. * reset any form content. We'll instruct the +#. * user to do that, and restore the current +#. * document. - FM +#. +#: WWW/Library/Implementation/HTTP.c:1120 +msgid "Request fulfilled. Reset Content." +msgstr "¥ê¥¯¥¨¥¹¥È¤¬¼Â¹Ô¤µ¤ì¤Þ¤·¤¿¡£¥³¥ó¥Æ¥ó¥È¤ò¥ê¥»¥Ã¥È¤·¤Æ¤¯¤À¤µ¤¤¡£" + +#. Not Modified +#. +#. * We didn't send an "If-Modified-Since" header, +#. * so this status is inappropriate. We'll deal +#. * with it by showing the full header to the user +#. * as text/plain. - FM +#. +#: WWW/Library/Implementation/HTTP.c:1210 +msgid "Got unexpected 304 Not Modified status." +msgstr "ͽ´ü¤»¤Ì 304 Not Modified ¥¹¥Æ¡¼¥¿¥¹¤ò¼õ¤±¼è¤ê¤Þ¤·¤¿¡£" + +#: WWW/Library/Implementation/HTTP.c:1277 +msgid "Redirection of POST content requires user approval." +msgstr "POST ¥³¥ó¥Æ¥ó¥È¤Î¥ê¥À¥¤¥ì¥¯¥·¥ç¥ó¤Ë¤Ï¥æ¡¼¥¶¤Î¾µÇ§¤¬É¬ÍפǤ¹¡£" + +#: WWW/Library/Implementation/HTTP.c:1292 +msgid "Have POST content. Treating Permanent Redirection as Temporary.\n" +msgstr "" +"POST " +"¥³¥ó¥Æ¥ó¥È¤ò´Þ¤ó¤Ç¤¤¤Þ¤¹¡£±Ê³Ū¤Ê¥ê¥À¥¤¥ì¥¯¥·¥ç¥ó¤ò°ì»þŪ¤Ê¤â¤Î¤È¤·¤Æ°·¤¤¤Þ¤" +"¹¡£\n" + +#: WWW/Library/Implementation/HTTP.c:1337 +msgid "Retrying with access authorization information." +msgstr "¥¢¥¯¥»¥¹Ç§¾Ú¾ðÊóÉÕ¤¤ÇºÆ»î¹Ô¤·¤Æ¤¤¤Þ¤¹¡£" + +#: WWW/Library/Implementation/HTTP.c:1342 +msgid "Show the 401 message body?" +msgstr "401 ¥á¥Ã¥»¡¼¥¸ËÜÂΤò¸«¤Þ¤¹¤«?" + +#: WWW/Library/Implementation/HTTP.c:1387 +msgid "Show the 407 message body?" +msgstr "407 ¥á¥Ã¥»¡¼¥¸ËÜÂΤò¸«¤Þ¤¹¤«?" + +#. +#. ** Bad or unknown server_status number. +#. ** Take a chance and hope there is +#. ** something to display. - FM +#. +#: WWW/Library/Implementation/HTTP.c:1492 +msgid "Unknown status reply from server!" +msgstr "¥µ¡¼¥Ð¤«¤é¤ÎÉÔÌÀ¤Ê¥¹¥Æ¡¼¥¿¥¹¥ê¥×¥é¥¤¤Ç¤¹!" + +#: WWW/Library/Implementation/HTTelnet.c:101 +#, c-format +msgid "remote %s session:" +msgstr "¥ê¥â¡¼¥È %s ¥»¥Ã¥·¥ç¥ó:" + +#: WWW/Library/Implementation/HTWAIS.c:164 +msgid "Could not connect to WAIS server." +msgstr "WAIS ¥µ¡¼¥Ð¤ËÀܳ¤Ç¤¤Þ¤»¤ó¡£" + +#: WWW/Library/Implementation/HTWAIS.c:173 +msgid "Could not open WAIS connection for reading." +msgstr "Æɤ߹þ¤ß¤Î¤¿¤á¤Î WAIS Àܳ¤ò³«¤±¤Þ¤»¤ó¤Ç¤·¤¿¡£" + +#: WWW/Library/Implementation/HTWAIS.c:197 +msgid "Diagnostic code is " +msgstr "¿ÇÃÇ¥³¡¼¥É¤Ï " + +#: WWW/Library/Implementation/HTWAIS.c:466 +msgid "Index " +msgstr "¥¤¥ó¥Ç¥Ã¥¯¥¹ " + +#: WWW/Library/Implementation/HTWAIS.c:470 +#, c-format +msgid " contains the following %d item%s relevant to \"" +msgstr " ¤Ï°Ê²¼¤Î %d ¥¢¥¤¥Æ¥à%s¤ò´Þ¤ó¤Ç¤¤¤Þ¤¹¡£¤³¤ì¤¬´ØÏ¢¤¹¤ë¤Î¤Ï\"" + +#: WWW/Library/Implementation/HTWAIS.c:478 +msgid "The first figure after each entry is its relative score, " +msgstr "³Æ¥¨¥ó¥È¥ê¤Î¸å¤ÎºÇ½é¤Î¿ô»ú¤Ï¤½¤ÎÁêÂÐ¥¹¥³¥¢¤Ç¤¢¤ë " + +#: WWW/Library/Implementation/HTWAIS.c:479 +msgid "the second is the number of lines in the item." +msgstr "ÂèÆó¤Î¿ô»ú¤Ï¥¢¥¤¥Æ¥àÆâ¤Ë¤ª¤±¤ë¹ÔÈÖ¹æ¤Ç¤¹¡£" + +#: WWW/Library/Implementation/HTWAIS.c:520 +msgid " (bad file name)" +msgstr " (ÉÔÀµ¤Ê¥Õ¥¡¥¤¥ë̾)" + +#: WWW/Library/Implementation/HTWAIS.c:545 +msgid "(bad doc id)" +msgstr "(ÉÔÀµ¤Ê¥É¥¥å¥á¥ó¥È ID)" + +#: WWW/Library/Implementation/HTWAIS.c:561 +msgid "(Short Header record, can't display)" +msgstr "(û¤¤¥Ø¥Ã¥À¥ì¥³¡¼¥É¡¢É½¼¨ÉÔǽ)" + +#: WWW/Library/Implementation/HTWAIS.c:568 +msgid "" +"\n" +"Long Header record, can't display\n" +msgstr "" +"\n" +"Ť¤¥Ø¥Ã¥À¥ì¥³¡¼¥É¡¢É½¼¨ÉÔǽ\n" + +#: WWW/Library/Implementation/HTWAIS.c:575 +msgid "" +"\n" +"Text record\n" +msgstr "" +"\n" +"¥Æ¥¥¹¥È¥ì¥³¡¼¥É\n" + +#: WWW/Library/Implementation/HTWAIS.c:584 +msgid "" +"\n" +"Headline record, can't display\n" +msgstr "" +"\n" +"¥Ø¥Ã¥É¥é¥¤¥ó¥ì¥³¡¼¥É¡¢É½¼¨ÉÔǽ\n" + +#: WWW/Library/Implementation/HTWAIS.c:592 +msgid "" +"\n" +"Code record, can't display\n" +msgstr "" +"\n" +"¥³¡¼¥É¥ì¥³¡¼¥É¡¢É½¼¨ÉÔǽ\n" + +#: WWW/Library/Implementation/HTWAIS.c:696 +msgid "Syntax error in WAIS URL" +msgstr "WAIS URL ¤Î¹½Ê¸¥¨¥é¡¼¤Ç¤¹¡£" + +#: WWW/Library/Implementation/HTWAIS.c:768 +msgid " (WAIS Index)" +msgstr "(WAIS ¥¤¥ó¥Ç¥Ã¥¯¥¹)" + +#: WWW/Library/Implementation/HTWAIS.c:775 +msgid "WAIS Index: " +msgstr "WAIS ¥¤¥ó¥Ç¥Ã¥¯¥¹: " + +#: WWW/Library/Implementation/HTWAIS.c:781 +msgid "This is a link for searching the " +msgstr "¤³¤ì¤Ï°Ê²¼¤ò¸¡º÷¤¹¤ë¤¿¤á¤Î¥ê¥ó¥¯¤Ç¤¹: " + +#: WWW/Library/Implementation/HTWAIS.c:785 +msgid " WAIS Index.\n" +msgstr " WAIS ¥¤¥ó¥Ç¥Ã¥¯¥¹¡£\n" + +#: WWW/Library/Implementation/HTWAIS.c:812 +msgid "" +"\n" +"Enter the 's'earch command and then specify search words.\n" +msgstr "" +"\n" +"¸¡º÷¥³¥Þ¥ó¥É 's' ¤òÆþÎϤ·¡¢¸¡º÷¤¹¤ë¸ÀÍÕ¤ò»ØÄꤷ¤Æ¤¯¤À¤µ¤¤¡£\n" + +#: WWW/Library/Implementation/HTWAIS.c:834 +msgid " (in " +msgstr " (´Þ¤Þ¤ì¤Æ¤¤¤ë¤Î¤Ï " + +#: WWW/Library/Implementation/HTWAIS.c:843 +msgid "WAIS Search of \"" +msgstr "WAIS ¥µ¡¼¥Á ÂоÝ: \"" + +#: WWW/Library/Implementation/HTWAIS.c:847 +msgid "\" in: " +msgstr "\" ´Þ¤Þ¤ì¤ë¤Î¤Ï: " + +#: WWW/Library/Implementation/HTWAIS.c:862 +msgid "HTWAIS: Request too large." +msgstr "HTWAIS: ¥ê¥¯¥¨¥¹¥È¤¬Â礤¹¤®¤Þ¤¹¡£" + +#: WWW/Library/Implementation/HTWAIS.c:871 +msgid "Searching WAIS database..." +msgstr "WAIS ¥Ç¡¼¥¿¥Ù¡¼¥¹¤ò¸¡º÷¤·¤Æ¤¤¤Þ¤¹..." + +#: WWW/Library/Implementation/HTWAIS.c:881 +msgid "Search interrupted." +msgstr "¸¡º÷¤¬ÃæÃǤµ¤ì¤Þ¤·¤¿¡£" + +#: WWW/Library/Implementation/HTWAIS.c:931 +msgid "Can't convert format of WAIS document" +msgstr "WAIS ¥É¥¥å¥á¥ó¥È¤Î·Á¼°¤ËÊÑ´¹¤Ç¤¤Þ¤»¤ó¡£" + +#: WWW/Library/Implementation/HTWAIS.c:975 +msgid "HTWAIS: Request too long." +msgstr "HTWAIS: ¥ê¥¯¥¨¥¹¥È¤¬Ä¹¤¹¤®¤Þ¤¹¡£" + +#. +#. ** Actually do the transaction given by request_message. +#. +#: WWW/Library/Implementation/HTWAIS.c:989 +msgid "Fetching WAIS document..." +msgstr "WAIS ¥É¥¥å¥á¥ó¥È¤ò¼èÆÀÃæ..." + +#. display_search_response(target, retrieval_response, +#. wais_database, keywords); +#: WWW/Library/Implementation/HTWAIS.c:1028 +msgid "No text was returned!\n" +msgstr "Ê֤äƤ¤¿¥Æ¥¥¹¥È¤Ï¤¢¤ê¤Þ¤»¤ó!\n" + +#: WWW/Library/Implementation/HTWSRC.c:289 +msgid " NOT GIVEN in source file; " +msgstr " °Ê²¼¤Î¥½¡¼¥¹¥Õ¥¡¥¤¥ë¤Ç»ØÄꤵ¤ì¤Æ*¤¤¤Þ¤»¤ó*: " + +#: WWW/Library/Implementation/HTWSRC.c:313 +msgid " WAIS source file" +msgstr " WAIS ¥½¡¼¥¹¥Õ¥¡¥¤¥ë" + +#: WWW/Library/Implementation/HTWSRC.c:320 +msgid " description" +msgstr " ÀâÌÀ" + +#: WWW/Library/Implementation/HTWSRC.c:330 +msgid "Access links" +msgstr "¥ê¥ó¥¯¤Ë¥¢¥¯¥»¥¹" + +#: WWW/Library/Implementation/HTWSRC.c:347 +msgid "Direct access" +msgstr "ľÀÜ¥¢¥¯¥»¥¹" + +#. * Proxy will be used if defined, so let user know that - FM * +#: WWW/Library/Implementation/HTWSRC.c:350 +msgid " (or via proxy server, if defined)" +msgstr "(¤¢¤ë¤¤¤Ï¥×¥í¥¥·¥µ¡¼¥Ð·Ðͳ¤Ç¡¢¤â¤·ÄêµÁ¤µ¤ì¤Æ¤¤¤ì¤Ð)" + +#: WWW/Library/Implementation/HTWSRC.c:365 +msgid "Maintainer" +msgstr "¥á¥ó¥Æ¥Ê" + +#: WWW/Library/Implementation/HTWSRC.c:373 +msgid "Host" +msgstr "¥Û¥¹¥È" + +#: src/GridText.c:624 +msgid "Memory exhausted, display interrupted!" +msgstr "¥á¥â¥ê¤ò»È¤¤¤¤ê¤Þ¤·¤¿¡£É½¼¨¤òÃæÃǤ·¤Þ¤¹!" + +#: src/GridText.c:629 +msgid "Memory exhausted, will interrupt transfer!" +msgstr "¥á¥â¥ê¤ò»È¤¤¤¤ê¤Þ¤·¤¿¡£Å¾Á÷¤òÃæÃǤ·¤Þ¤¹!" + +#: src/GridText.c:3522 +msgid " *** MEMORY EXHAUSTED ***" +msgstr "*** ¥á¥â¥ê¤ò»È¤¤¤¤ê¤Þ¤·¤¿ ***" + +#: src/GridText.c:6169 src/GridText.c:6176 src/LYList.c:258 +msgid "unknown field or link" +msgstr "̤ÃΤΥե£¡¼¥ë¥É¤Þ¤¿¤Ï¥ê¥ó¥¯¤Ç¤¹" + +#: src/GridText.c:6185 +msgid "text entry field" +msgstr "¥Æ¥¥¹¥ÈÆþÎÏ¥Õ¥£¡¼¥ë¥É" + +#: src/GridText.c:6188 +msgid "password entry field" +msgstr "¥Ñ¥¹¥ï¡¼¥ÉÆþÎÏ¥Õ¥£¡¼¥ë¥É" + +#: src/GridText.c:6191 +msgid "checkbox" +msgstr "¥Á¥§¥Ã¥¯¥Ü¥Ã¥¯¥¹" + +#: src/GridText.c:6194 +msgid "radio button" +msgstr "¥é¥¸¥ª¥Ü¥¿¥ó" + +#: src/GridText.c:6197 +msgid "submit button" +msgstr "Á÷¿®¥Ü¥¿¥ó" + +#: src/GridText.c:6200 +msgid "reset button" +msgstr "¥ê¥»¥Ã¥È¥Ü¥¿¥ó" + +#: src/GridText.c:6203 +msgid "popup menu" +msgstr "¥Ý¥Ã¥×¥¢¥Ã¥×¥á¥Ë¥å¡¼" + +#: src/GridText.c:6206 +msgid "hidden form field" +msgstr "±£¤µ¤ì¤¿¥Õ¥©¡¼¥à¥Õ¥£¡¼¥ë¥É" + +#: src/GridText.c:6209 +msgid "text entry area" +msgstr "¥Æ¥¥¹¥ÈÆþÎÏ¥¨¥ê¥¢" + +#: src/GridText.c:6212 +msgid "range entry field" +msgstr "ÈÏ°ÏÆþÎÏ¥Õ¥£¡¼¥ë¥É" + +#: src/GridText.c:6215 +msgid "file entry field" +msgstr "¥Õ¥¡¥¤¥ëÆþÎÏ¥Õ¥£¡¼¥ë¥É" + +#: src/GridText.c:6218 +msgid "text-submit field" +msgstr "¥Æ¥¥¹¥ÈÁ÷¿®¥Õ¥£¡¼¥ë¥É" + +#: src/GridText.c:6221 +msgid "image-submit button" +msgstr "²èÁüÁ÷¿®¥Ü¥¿¥ó" + +#: src/GridText.c:6224 +msgid "keygen field" +msgstr "keygen ¥Õ¥£¡¼¥ë¥É" + +#: src/GridText.c:6227 +msgid "unknown form field" +msgstr "̤ÃΤΥե©¡¼¥à¥Õ¥£¡¼¥ë¥É" + +#: src/GridText.c:11199 +#, c-format +msgid "Submitting %s" +msgstr "%s ¤òÁ÷¿®Ãæ" + +#: src/GridText.c:12522 +msgid "Editor killed by signal" +msgstr "¥¨¥Ç¥£¥¿¤¬°Û¾ï½ªÎ»¤·¤Þ¤·¤¿ ¥·¥°¥Ê¥ë:" + +#: src/GridText.c:12524 +#, c-format +msgid "Editor returned with error status, %s" +msgstr "¥¨¥Ç¥£¥¿¤Ï¥¨¥é¡¼¥¹¥Æ¡¼¥¿¥¹ %s ¤òÊÖ¤·¤Þ¤·¤¿" + +#: src/GridText.c:12525 +msgid "reason unknown." +msgstr "(ÉÔÌÀ)" + +#. don't show previous state +#: src/GridText.c:12621 +msgid "Wrap lines to fit displayed area?" +msgstr "ɽ¼¨Îΰè¤Ë¼ý¤Þ¤ë¤è¤¦¹Ô¤òÀÞ¤êÊÖ¤·¤Þ¤¹¤«?" + +#: src/GridText.c:12673 +msgid "Very long lines have been wrapped!" +msgstr "Ť¹¤®¤ë¹Ô¤ÏÀÞ¤êÊÖ¤µ¤ì¤Þ¤¹!" + +#: src/GridText.c:13126 +msgid "Very long lines have been truncated!" +msgstr "Ť¹¤®¤ë¹Ô¤ÏÀÚ¤êµÍ¤á¤é¤ì¤Þ¤¹!" + +#: src/HTAlert.c:143 src/LYShowInfo.c:318 +msgid "bytes" +msgstr "¥Ð¥¤¥È" + +#: src/HTAlert.c:144 +msgid "KB" +msgstr "KB" + +#: src/HTAlert.c:238 +#, c-format +msgid "Read %s of %s of data" +msgstr "%s (%s Ãæ) Æɤ߹þ¤ßºÑ" + +#: src/HTAlert.c:240 +#, c-format +msgid "Read %s of data" +msgstr "%s Æɤ߹þ¤ßºÑ" + +#: src/HTAlert.c:245 +#, c-format +msgid ", %s/sec" +msgstr "¡¢%s/ÉÃ" + +#: src/HTAlert.c:252 +#, c-format +msgid " (stalled for %ld sec)" +msgstr " (%ld ÉÃÄä»ßÃæ)" + +#: src/HTAlert.c:254 +#, c-format +msgid ", ETA %ld sec" +msgstr "¡¢ ETA %ld ÉÃ" + +#: src/HTAlert.c:260 +msgid " (Press 'z' to abort)" +msgstr " ([z] ¤ÇÃæ»ß)" + +#. Meta-note: don't move the following note from its place right +#. in front of the first gettext(). As it is now, it should +#. automatically appear in generated lynx.pot files. - kw +#. +#. NOTE TO TRANSLATORS: If you provide a translation for "yes", lynx +#. * will take the first byte of the translation as a positive response +#. * to Yes/No questions. If you provide a translation for "no", lynx +#. * will take the first byte of the translation as a negative response +#. * to Yes/No questions. For both, lynx will also try to show the +#. * first byte in the prompt as a character, instead of (y) or (n), +#. * respectively. This will not work right for multibyte charsets! +#. * Don't translate "yes" and "no" for CJK character sets (or translate +#. * them to "yes" and "no"). For a translation using UTF-8, don't +#. * translate if the translation would begin with anything but a 7-bit +#. * (US_ASCII) character. That also means do not translate if the +#. * translation would begin with anything but a 7-bit character, if +#. * you use a single-byte character encoding (a charset like ISO-8859-n) +#. * but anticipate that the message catalog may be used re-encoded in +#. * UTF-8 form. +#. * For translations using other character sets, you may also wish to +#. * leave "yes" and "no" untranslated, if using (y) and (n) is the +#. * preferred behavior. +#. * Lynx will also accept y Y n N as responses unless there is a conflict +#. * with the first letter of the "yes" or "no" translation. +#. +#: src/HTAlert.c:314 +msgid "yes" +msgstr "yes" + +#: src/HTAlert.c:315 +msgid "no" +msgstr "no" + +#: src/HTML.c:6445 +msgid "Description:" +msgstr "ÀâÌÀ:" + +#: src/HTML.c:6450 +msgid "(none)" +msgstr "(¤Ê¤·)" + +#: src/HTML.c:6454 +msgid "Filepath:" +msgstr "¥Õ¥¡¥¤¥ë¤Ø¤Î¥Ñ¥¹:" + +#: src/HTML.c:6459 +msgid "(unknown)" +msgstr "(ÉÔÌÀ)" + +#: src/HTML.c:7899 +msgid "Document has only hidden links. Use the 'l'ist command." +msgstr "ʸ½ñ¤Ë¤Ï±£¤·¥ê¥ó¥¯¤·¤«¤¢¤ê¤Þ¤»¤ó¡£[l]¤«¤éé¤Ã¤Æ¤¯¤À¤µ¤¤¡£" + +#: src/HTML.c:8477 +msgid "Source cache error - disk full?" +msgstr "¥½¡¼¥¹¥¥ã¥Ã¥·¥å¥¨¥é¡¼¤Ç¤¹ - ¥Ç¥£¥¹¥¯¤¬°ìÇÕ¤«¤â?" + +#: src/HTML.c:8490 +msgid "Source cache error - not enough memory!" +msgstr "¥½¡¼¥¹¥¥ã¥Ã¥·¥å¥¨¥é¡¼¤Ç¤¹ - ¥á¥â¥ê¤¬Â¤ê¤Þ¤»¤ó!" + +#: src/LYBookmark.c:148 +msgid "" +" This file is an HTML representation of the X Mosaic hotlist file.\n" +" Outdated or invalid links may be removed by using the\n" +" remove bookmark command, it is usually the 'R' key but may have\n" +" been remapped by you or your system administrator." +msgstr "" +" ¤³¤Î¥Õ¥¡¥¤¥ë¤Ï X Moasaic ¥Û¥Ã¥È¥ê¥¹¥È¥Õ¥¡¥¤¥ë¤ò HTML ¤Ë¤·¤¿¤â¤Î¤Ç¤¹¡£\n" +" µì¼°¤Ê¤¤¤·ÉÔÀµ¤Ê¥ê¥ó¥¯¤Ï¡¢¥Ö¥Ã¥¯¥Þ¡¼¥¯ºï½ü¥³¥Þ¥ó¥É¤Çºï½ü¤Ç¤¤Þ¤¹¡£\n" +" ¤³¤Î¥³¥Þ¥ó¥É¤ÏÄ̾ï [r] ¥¡¼¤Ë³ä¤êÅö¤Æ¤é¤ì¤Æ¤¤¤Þ¤¹¤¬¡¢¤¢¤Ê¤¿¤«¥·¥¹¥Æ¥à\n" +" ´ÉÍý¼Ô¤Ë¤è¤Ã¤ÆÊѹ¹¤µ¤ì¤Æ¤¤¤ë¤«¤â¤·¤ì¤Þ¤»¤ó¡£" + +#: src/LYBookmark.c:364 +msgid "" +" You can delete links by the 'R' key<br>\n" +"<ol>\n" +msgstr "" +" [r] ¥¡¼¤Ç¥ê¥ó¥¯¤òºï½ü¤Ç¤¤Þ¤¹<br>\n" +"<ol>\n" + +#: src/LYBookmark.c:367 +msgid "" +" You can delete links using the remove bookmark command. It is usually\n" +" the 'R' key but may have been remapped by you or your system\n" +" administrator." +msgstr "" +" ¥ê¥ó¥¯¤Ï¥Ö¥Ã¥¯¥Þ¡¼¥¯ºï½ü¥³¥Þ¥ó¥É¤Çºï½ü¤Ç¤¤Þ¤¹¡£¤³¤Î¥³¥Þ¥ó¥É¤Ï\n" +" Ä̾ï [r] ¥¡¼¤Ë³ä¤êÅö¤Æ¤é¤ì¤Æ¤¤¤Þ¤¹¤¬¡¢¤¢¤Ê¤¿¤«¥·¥¹¥Æ¥à´ÉÍý¼Ô¤Ë¤è¤Ã¤Æ\n" +" Êѹ¹¤µ¤ì¤Æ¤¤¤ë¤«¤â¤·¤ì¤Þ¤»¤ó¡£" + +#: src/LYBookmark.c:371 +msgid "" +" This file also may be edited with a standard text editor to delete\n" +" outdated or invalid links, or to change their order." +msgstr "" +" ¤Þ¤¿¡¢É¸½àŪ¤Ê¥Æ¥¥¹¥È¥¨¥Ç¥£¥¿¤ò»È¤Ã¤Æ¤³¤Î¥Õ¥¡¥¤¥ë¤òÊÔ½¸¤·¡¢\n" +" ¸Å¤«¤Ã¤¿¤ê´Ö°ã¤Ã¤¿¤ê¤·¤Æ¤¤¤ë¥ê¥ó¥¯¤òºï½ü¤·¤¿¤ê¡¢\n" +" ½çÈÖ¤òÊѤ¨¤¿¤ê¤¹¤ë¤³¤È¤â¤Ç¤¤Þ¤¹¡£" + +#: src/LYBookmark.c:374 +msgid "" +"Note: if you edit this file manually\n" +" you should not change the format within the lines\n" +" or add other HTML markup.\n" +" Make sure any bookmark link is saved as a single line." +msgstr "" +"Ãí°Õ: ¤³¤Î¥Õ¥¡¥¤¥ë¤ò¼ê¤ÇÊÔ½¸¤¹¤ëºÝ¤Ë¤Ï¡¢³Æ¹Ô¤Î¥Õ¥©¡¼¥Þ¥Ã¥È¤ò\n" +" Êѹ¹¤·¤¿¤ê¡¢Â¾¤Î HTML ¥Þ¡¼¥¯¥¢¥Ã¥×¤ò²Ã¤¨¤¿¤ê¤·¤Æ¤Ï¤Ê¤ê¤Þ¤»¤ó¡£\n" +" ¥Ö¥Ã¥¯¥Þ¡¼¥¯¤Î¥ê¥ó¥¯¤Ï°ì¹Ô¤Ë¼ý¤Þ¤ë¤è¤¦¤Ë¤·¤Æ¤¯¤À¤µ¤¤¡£" + +#: src/LYBookmark.c:665 +#, c-format +msgid "File may be recoverable from %s during this session" +msgstr "" +"¤³¤Î¥»¥Ã¥·¥ç¥ó¤Î´Ö¤Ï %s ¤«¤é¥Õ¥¡¥¤¥ë¤òÉüµì¤¹¤ë¤³¤È¤¬¤Ç¤¤ë¤«¤â¤·¤ì¤Þ¤»¤ó" + +#. +#. * Neither the path as given nor any components examined by +#. * backing up were stat()able. - kw +#. +#: src/LYCgi.c:232 +msgid "Unable to access cgi script" +msgstr "cgi ¥¹¥¯¥ê¥×¥È¤Ë¥¢¥¯¥»¥¹¤Ç¤¤Þ¤»¤ó" + +#: src/LYCgi.c:651 src/LYCgi.c:654 +msgid "Good Advice" +msgstr "Îɤ¤¥¢¥É¥Ð¥¤¥¹" + +#: src/LYCgi.c:657 +msgid "An excellent http server for VMS is available via" +msgstr "VMS ¤Ë¤·¤Æ¤Ï¤Ê¤«¤Ê¤«Í¥¤ì¤¿ http ¥µ¡¼¥Ð¤¬°Ê²¼¤«¤éÍøÍѲÄǽ¤Ç¤¹: " + +#: src/LYCgi.c:664 +msgid "this link" +msgstr "¤³¤Î¥ê¥ó¥¯" + +#: src/LYCgi.c:668 +msgid "It provides state of the art CGI script support.\n" +msgstr "¸½ºß˾¤ß¤¦¤ëºÇ¹â¿å½à¤Î CGI ¥¹¥¯¥ê¥×¥È¥µ¥Ý¡¼¥È¤òÈ÷¤¨¤Æ¤¤¤Þ¤¹¡£\n" + +#: src/LYClean.c:108 +msgid "Exiting via interrupt:" +msgstr "½ªÎ»¤·¤Þ¤¹ ¸¶°ø: ³ä¤ê¹þ¤ß" + +#. not used any more - kw +#: src/LYCookie.c:2225 +msgid "(From Cookie Jar)" +msgstr "(¥¯¥Ã¥¡¼È¢¤«¤é)" + +#: src/LYCookie.c:2651 +msgid "(from a previous session)" +msgstr "(°ÊÁ°¤Î¥»¥Ã¥·¥ç¥ó¤«¤é)" + +#: src/LYCookie.c:2711 +msgid "Maximum Gobble Date:" +msgstr "¾ÞÌ£´ü¸Â:" + +#: src/LYCookie.c:2756 +msgid "Internal" +msgstr "ÆâÉô" + +#: src/LYCookie.c:2757 +msgid "cookie_domain_flag_set error, aborting program" +msgstr "cookie_domain_flag_set ¥¨¥é¡¼¡¢¥×¥í¥°¥é¥à¤ò½ªÎ»¤·¤Þ¤¹" + +#: src/LYCurses.c:841 +msgid "Terminal initialisation failed - unknown terminal type?" +msgstr "üËö¤Î½é´ü²½¤Ë¼ºÇÔ¤·¤Þ¤·¤¿ - üËö¤Î¥¿¥¤¥×¤¬ÉÔÌÀ?" + +#: src/LYCurses.c:1159 +msgid "Terminal =" +msgstr "üËö =" + +#: src/LYCurses.c:1164 +msgid "You must use a vt100, 200, etc. terminal with this program." +msgstr "¤³¤Î¥×¥í¥°¥é¥à¤Ï vt100¡¢200 ¤Ê¤É¤ÎüËö¾å¤Ç¼Â¹Ô¤·¤Æ¤¯¤À¤µ¤¤¡£" + +#: src/LYCurses.c:1220 +msgid "Your Terminal type is unknown!" +msgstr "¤ª»È¤¤¤ÎüËö¥¿¥¤¥×¤¬Ê¬¤«¤ê¤Þ¤»¤ó!" + +#: src/LYCurses.c:1221 +msgid "Enter a terminal type:" +msgstr "üËö¥¿¥¤¥×¤òÆþÎÏ:" + +#: src/LYCurses.c:1234 +msgid "TERMINAL TYPE IS SET TO" +msgstr "ÀßÄꤵ¤ì¤ëüËö¥¿¥¤¥×¤Ï" + +#: src/LYCurses.c:1567 +#, c-format +msgid "" +"\n" +"A Fatal error has occurred in %s Ver. %s\n" +msgstr "" +"\n" +"Ã×̿Ū¤Ê¥¨¥é¡¼¤¬ %s ¥Ð¡¼¥¸¥ç¥ó %s ¤ÇȯÀ¸¤·¤Þ¤·¤¿\n" + +#: src/LYCurses.c:1569 +msgid "" +"\n" +"Please notify your system administrator to confirm a bug, and if\n" +"confirmed, to notify the lynx-dev list. Bug reports should have concise\n" +"descriptions of the command and/or URL which causes the problem, the\n" +"operating system name with version number, the TCPIP implementation, the\n" +"TRACEBACK if it can be captured, and any other relevant information.\n" +msgstr "" +"\n" +"¥Ð¥°¤ò³Îǧ¤¹¤ë¤¿¤á¥·¥¹¥Æ¥à´ÉÍý¼Ô¤ËÏ¢Íí¤·¡¢¤â¤·³Îǧ¤µ¤ì¤¿¤Ê¤é¤Ð lynx-dev \n" +"¥á¡¼¥ê¥ó¥°¥ê¥¹¥È¤ËÏ¢Íí¤·¤Æ¤¯¤À¤µ¤¤¡£¥Ð¥°Êó¹ð¤Ë¤Ï¡¢ÌäÂê¤òµ¯¤³¤·¤¿¥³¥Þ¥ó¥É¤«\n" +"URL ¤ÎÀµ³Î¤ÊÀâÌÀ¤È¥ª¥Ú¥ì¡¼¥Æ¥£¥ó¥°¥·¥¹¥Æ¥à̾(¥Ð¡¼¥¸¥ç¥óÈÖ¹æ´Þ¤à)¡¢TCPIP \n" +"¼ÂÁõ¡¢¤â¤·Ê᪤Ǥ¤¿¤Ê¤é¤Ð TRACEBACK¡¢¤½¤Î¾¤ÎŬÀڤʾðÊó¤ò´Þ¤á¤Æ¤¯¤À¤µ¤¤¡£\n" + +#: src/LYDownload.c:520 +msgid "Downloaded link:" +msgstr "¥À¥¦¥ó¥í¡¼¥É¤·¤¿¥ê¥ó¥¯:" + +#: src/LYDownload.c:525 +msgid "Suggested file name:" +msgstr "¿ä¾©¤¹¤ë¥Õ¥¡¥¤¥ë̾:" + +#: src/LYDownload.c:530 +msgid "Standard download options:" +msgstr "ɸ½à¤Î¥À¥¦¥ó¥í¡¼¥ÉÀè:" + +#: src/LYDownload.c:531 +msgid "Download options:" +msgstr "¥À¥¦¥ó¥í¡¼¥ÉÀè" + +#: src/LYDownload.c:545 +msgid "Save to disk" +msgstr "¥Ç¥£¥¹¥¯¤ËÊݸ" + +#: src/LYDownload.c:547 +msgid "Save to disk disabled." +msgstr "¥Ç¥£¥¹¥¯¤ËÊݸ¤Ç¤¤Þ¤»¤ó¡£" + +#: src/LYDownload.c:551 src/LYPrint.c:1336 +msgid "Local additions:" +msgstr "¥í¡¼¥«¥ë¤Ç¤ÎÄɲÃ:" + +#: src/LYDownload.c:560 src/LYUpload.c:224 +msgid "No Name Given" +msgstr "̾Á°¤¬»ØÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó" + +#: src/LYHistory.c:515 +msgid "You selected:" +msgstr "ÁªÂò¤·¤¿¥Ú¡¼¥¸: " + +#: src/LYHistory.c:539 src/LYHistory.c:787 +msgid "(no address)" +msgstr "(¥¢¥É¥ì¥¹¤Ê¤·)" + +#: src/LYHistory.c:543 +msgid " (internal)" +msgstr " (ÆâÉô)" + +#: src/LYHistory.c:545 +msgid " (was internal)" +msgstr "(¤«¤Ä¤ÆÆâÉô)" + +#: src/LYHistory.c:643 +msgid " (From History)" +msgstr " (ÍúÎò¤è¤ê)" + +#: src/LYHistory.c:707 +msgid "You visited (POSTs, bookmark, menu and list files excluded):" +msgstr "" +"¤¢¤Ê¤¿¤¬Ë¬¤ì¤¿¥ê¥ó¥¯(POST¡¢¥Ö¥Ã¥¯¥Þ¡¼¥¯¡¢¥á¥Ë¥å¡¼¡¢¥ê¥¹¥È¥Õ¥¡¥¤¥ë¤Ï½ü¤¯):" + +#: src/LYHistory.c:1006 +msgid "(No messages yet)" +msgstr "(¤Þ¤À¥á¥Ã¥»¡¼¥¸¤Ï̵¤¤)" + +#: src/LYLeaks.c:78 +msgid "Invalid pointer detected." +msgstr "ÉÔÀµ¤Ê¥Ý¥¤¥ó¥¿¤¬¸¡½Ð¤µ¤ì¤Þ¤·¤¿¡£" + +#: src/LYLeaks.c:80 src/LYLeaks.c:117 +msgid "Pointer:" +msgstr "¥Ý¥¤¥ó¥¿:" + +#: src/LYLeaks.c:91 src/LYLeaks.c:98 src/LYLeaks.c:136 +msgid "FileName:" +msgstr "¥Õ¥¡¥¤¥ë̾:" + +#: src/LYLeaks.c:94 src/LYLeaks.c:101 src/LYLeaks.c:139 src/LYLeaks.c:150 +msgid "LineCount:" +msgstr "¹Ô¿ô:" + +#: src/LYLeaks.c:115 +msgid "Memory leak detected." +msgstr "¥á¥â¥ê¥ê¡¼¥¯¤¬¸¡½Ð¤µ¤ì¤Þ¤·¤¿¡£" + +#: src/LYLeaks.c:120 +msgid "Contains:" +msgstr "´Þ¤à:" + +#: src/LYLeaks.c:133 +msgid "ByteSize:" +msgstr "¥Ð¥¤¥È¥µ¥¤¥º:" + +#: src/LYLeaks.c:147 +msgid "realloced:" +msgstr "ºÆ³ä¤êÅö¤Æ:" + +#: src/LYLeaks.c:170 +msgid "Total memory leakage this run:" +msgstr "º£²ó¤Î¼Â¹Ô¤Ç¤Î¥á¥â¥ê¥ê¡¼¥¯ÁíÎÌ" + +#: src/LYList.c:91 +msgid "References in " +msgstr "±¦¤«¤é¤Î»²¾È: " + +#: src/LYList.c:92 +msgid "this document:" +msgstr "¤³¤Îʸ½ñ:" + +#: src/LYList.c:98 +msgid "Visible links:" +msgstr "¸«¤¨¤ë¥ê¥ó¥¯:" + +#: src/LYList.c:199 src/LYList.c:319 +msgid "Hidden links:" +msgstr "±£¤µ¤ì¤¿¥ê¥ó¥¯:" + +#: src/LYList.c:267 +msgid "References" +msgstr "»²¾È" + +#: src/LYList.c:269 +msgid "Visible links" +msgstr "¸«¤¨¤ë¥ê¥ó¥¯" + +#: src/LYLocal.c:272 +#, c-format +msgid "Unable to get status of '%s'." +msgstr "'%s' ¤Î¥¹¥Æ¡¼¥¿¥¹¤òÆÀ¤ë¤³¤È¤¬¤Ç¤¤Þ¤»¤ó¡£" + +#: src/LYLocal.c:306 +msgid "The selected item is not a file or a directory! Request ignored." +msgstr "" +"ÁªÂò¤µ¤ì¤¿¥¢¥¤¥Æ¥à¤Ï¥Õ¥¡¥¤¥ë¤Ç¤â¥Ç¥£¥ì¥¯¥È¥ê¤Ç¤â¤¢¤ê¤Þ¤»¤ó¡£¥ê¥¯¥¨¥¹¥È¤Ï̵»ë¤" +"µ¤ì¤Þ¤¹¡£" + +#: src/LYLocal.c:343 +#, c-format +msgid "move %s to %s" +msgstr "%s ¤ò %s ¤Ë°ÜÆ°¤·¤Þ¤¹" + +#: src/LYLocal.c:365 +msgid "There is already a directory with that name! Request ignored." +msgstr "" +"»ØÄê¤Î̾Á°¤ò»ý¤Ä¥Ç¥£¥ì¥¯¥È¥ê¤¬¤¹¤Ç¤Ë¸ºß¤·¤Þ¤¹! ¥ê¥¯¥¨¥¹¥È¤Ï̵»ë¤µ¤ì¤Þ¤·¤¿¡£" + +#: src/LYLocal.c:367 +msgid "There is already a file with that name! Request ignored." +msgstr "" +"»ØÄê¤Î̾Á°¤ò»ý¤Ä¥Õ¥¡¥¤¥ë¤¬¤¹¤Ç¤Ë¸ºß¤·¤Þ¤¹! ¥ê¥¯¥¨¥¹¥È¤Ï̵»ë¤µ¤ì¤Þ¤·¤¿¡£" + +#: src/LYLocal.c:369 +msgid "The specified name is already in use! Request ignored." +msgstr "»ØÄê¤Î̾Á°¤Ï¤¹¤Ç¤Ë»È¤ï¤ì¤Æ¤¤¤Þ¤¹! ¥ê¥¯¥¨¥¹¥È¤Ï̵»ë¤µ¤ì¤Þ¤·¤¿¡£" + +#: src/LYLocal.c:380 +msgid "Destination has different owner! Request denied." +msgstr "ÌÜŪÃϤϽêͼԤ¬°Û¤Ê¤ê¤Þ¤¹! ¥ê¥¯¥¨¥¹¥È¤ÏµñÈݤµ¤ì¤Þ¤·¤¿¡£" + +#: src/LYLocal.c:383 +msgid "Destination is not a valid directory! Request denied." +msgstr "ÌÜŪÃϤÏÀµ¤·¤¤¥Ç¥£¥ì¥¯¥È¥ê¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó! Í×µá¤ÏµñÈݤµ¤ì¤Þ¤·¤¿¡£" + +#: src/LYLocal.c:406 +msgid "Remove all tagged files and directories?" +msgstr "ÁªÂò¤·¤¿Á´¤Æ¤Î¥Õ¥¡¥¤¥ë¤È¥Ç¥£¥ì¥¯¥È¥ê¤òºï½ü¤·¤Þ¤¹¤«?" + +#: src/LYLocal.c:427 +#, c-format +msgid "remove %s" +msgstr "%s ¤òºï½ü¤·¤Þ¤¹" + +#: src/LYLocal.c:470 +msgid "Enter new location for tagged items: " +msgstr "ÁªÂò¤·¤¿¥¢¥¤¥Æ¥à¤Î¿·¤·¤¤¾ì½ê¤òÆþÎÏ: " + +#: src/LYLocal.c:539 +msgid "Path too long" +msgstr "¥Ñ¥¹¤¬Ä¹¤¹¤®¤Þ¤¹" + +#: src/LYLocal.c:570 +msgid "Source and destination are the same location - request ignored!" +msgstr "¥½¡¼¥¹¤ÈÌÜŪÃϤ¬Æ±¤¸¾ì½ê¤Ç¤¹ - Í×µá¤Ï̵»ë¤µ¤ì¤Þ¤·¤¿!" + +#: src/LYLocal.c:628 +msgid "Enter new name for directory: " +msgstr "¿·¤·¤¤¥Ç¥£¥ì¥¯¥È¥ê̾¤òÆþÎÏ" + +#: src/LYLocal.c:630 +msgid "Enter new name for file: " +msgstr "¿·¤·¤¤¥Õ¥¡¥¤¥ë̾¤òÆþÎÏ: " + +#: src/LYLocal.c:641 +msgid "Illegal character (path-separator) found! Request ignored." +msgstr "" +"ÉÔÀµ¤Ê¥¥ã¥é¥¯¥¿(¥Ñ¥¹¥»¥Ñ¥ì¡¼¥¿)¤¬¸«¤Ä¤«¤ê¤Þ¤·¤¿! " +"¥ê¥¯¥¨¥¹¥È¤Ï̵»ë¤µ¤ì¤Þ¤·¤¿¡£" + +#: src/LYLocal.c:690 +msgid "Enter new location for directory: " +msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤Î¿·¤·¤¤¾ì½ê¤òÆþÎÏ: " + +#: src/LYLocal.c:692 +msgid "Enter new location for file: " +msgstr "¥Õ¥¡¥¤¥ë¤Î¿·¤·¤¤¾ì½ê¤òÆþÎÏ: " + +#: src/LYLocal.c:717 +msgid "Unexpected failure - unable to find trailing path separator" +msgstr "ͽ´ü¤»¤Ì¼ºÇÔ - Äɤ¦¥Ñ¥¹¥»¥Ñ¥ì¡¼¥¿¤ò¸«¤Ä¤±¤é¤ì¤Þ¤»¤ó" + +#: src/LYLocal.c:737 +msgid "Source and destination are the same location! Request ignored!" +msgstr "¥½¡¼¥¹¤ÈÌÜŪÃϤ¬Æ±¤¸¾ì½ê¤Ç¤¹! ¥ê¥¯¥¨¥¹¥È¤Ï̵»ë¤µ¤ì¤Þ¤¹!" + +#: src/LYLocal.c:784 +msgid "Modify name, location, or permission (n, l, or p): " +msgstr "[n]̾Á°¡¢[l]¾ì½ê¡¢¤¢¤ë¤¤¤Ï [p]¥Ñ¡¼¥ß¥Ã¥·¥ç¥ó¤òÊѹ¹: " + +#: src/LYLocal.c:786 +msgid "Modify name or location (n or l): " +msgstr "[n]̾Á° ¤¢¤ë¤¤¤Ï [l]¾ì½ê¤òÊѹ¹: " + +#. +#. * Code for changing ownership needed here. +#. +#: src/LYLocal.c:815 +msgid "This feature not yet implemented!" +msgstr "¤³¤Îµ¡Ç½¤Ï¤Þ¤À¼ÂÁõ¤µ¤ì¤Æ¤¤¤Þ¤»¤ó!" + +#: src/LYLocal.c:833 +msgid "Enter name of file to create: " +msgstr "ºîÀ®¤¹¤ë¥Õ¥¡¥¤¥ë̾¤òÆþÎÏ: " + +#: src/LYLocal.c:843 src/LYLocal.c:892 +msgid "Illegal redirection \"//\" found! Request ignored." +msgstr "ÉÔÀµ¤Ê¥ê¥À¥¤¥ì¥¯¥·¥ç¥ó \"//\" ¤ò¸¡½Ð¤·¤Þ¤·¤¿! Í×µá¤Ï̵»ë¤µ¤ì¤Þ¤¹¡£" + +#: src/LYLocal.c:858 +#, c-format +msgid "create %s" +msgstr "%s ¤òºîÀ®¤·¤Þ¤¹" + +#: src/LYLocal.c:882 +msgid "Enter name for new directory: " +msgstr "¿·¤·¤¤¥Ç¥£¥ì¥¯¥È¥ê̾¤òÆþÎÏ: " + +#: src/LYLocal.c:934 +msgid "Create file or directory (f or d): " +msgstr "¥Õ¥¡¥¤¥ë [f] ¤Þ¤¿¤Ï ¥Ç¥£¥ì¥¯¥È¥ê [d] ¤òºîÀ®: " + +#: src/LYLocal.c:975 +#, c-format +msgid "Remove '%s' and all of its contents?" +msgstr "'%s' ¤È¤½¤ÎÁ´¤Æ¤ÎÆâÍƤòºï½ü¤·¤Þ¤¹¤«?" + +#: src/LYLocal.c:978 +msgid "Remove directory and all of its contents?" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤È¤½¤ÎÁ´¤Æ¤ÎÆâÍƤòºï½ü¤·¤Þ¤¹¤«?" + +#: src/LYLocal.c:982 +#, c-format +msgid "Remove file '%s'?" +msgstr "¥Õ¥¡¥¤¥ë '%s' ¤òºï½ü¤·¤Þ¤¹¤«?" + +#: src/LYLocal.c:984 +msgid "Remove file?" +msgstr "¥Õ¥¡¥¤¥ë¤òºï½ü¤·¤Þ¤¹¤«?" + +#: src/LYLocal.c:989 +#, c-format +msgid "Remove symbolic link '%s'?" +msgstr "¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯ '%s' ¤òºï½ü¤·¤Þ¤¹¤«?" + +#: src/LYLocal.c:991 +msgid "Remove symbolic link?" +msgstr "¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯¤òºï½ü¤·¤Þ¤¹¤«?" + +#: src/LYLocal.c:1087 +msgid "Sorry, don't know how to permit non-UNIX files yet." +msgstr "Èó UNIX ¥Õ¥¡¥¤¥ë¤Î¥Ñ¡¼¥ß¥Ã¥·¥ç¥ó¤Ï¤Þ¤À°·¤¨¤Þ¤»¤ó¡£" + +#: src/LYLocal.c:1117 +msgid "Unable to open permit options file" +msgstr "¥Ñ¡¼¥ß¥Ã¥·¥ç¥ó¥ª¥×¥·¥ç¥ó¥Õ¥¡¥¤¥ë¤¬³«¤±¤Þ¤»¤ó" + +#: src/LYLocal.c:1144 +msgid "Specify permissions below:" +msgstr "°Ê²¼¤Î¥Ñ¡¼¥ß¥Ã¥·¥ç¥ó¤ò»ØÄê:" + +#: src/LYLocal.c:1145 src/LYShowInfo.c:196 +msgid "Owner:" +msgstr "½êͼÔ:" + +#: src/LYLocal.c:1161 +msgid "Group" +msgstr "¥°¥ë¡¼¥×" + +#: src/LYLocal.c:1177 +msgid "Others:" +msgstr "¤½¤Î¾:" + +#: src/LYLocal.c:1195 +msgid "form to permit" +msgstr "µö²Ä¤¹¤ë¥Õ¥©¡¼¥à" + +#: src/LYLocal.c:1297 +msgid "Invalid mode format." +msgstr "ÉÔÀµ¤Ê¥â¡¼¥É¥Õ¥©¡¼¥Þ¥Ã¥È" + +#: src/LYLocal.c:1301 +msgid "Invalid syntax format." +msgstr "ÉÔÀµ¤Ê¹½Ê¸¥Õ¥©¡¼¥Þ¥Ã¥È" + +#: src/LYLocal.c:1476 +msgid "NULL URL pointer" +msgstr "¥Ì¥ë URL ¥Ý¥¤¥ó¥¿" + +#: src/LYLocal.c:1571 +msgid "Warning! UUDecoded file will exist in the directory you started Lynx." +msgstr "" +"Ãí°Õ! UUDecode ¤µ¤ì¤¿¥Õ¥¡¥¤¥ë¤Ï¤¢¤Ê¤¿¤¬ Lynx " +"¤òµ¯Æ°¤·¤¿¥Ç¥£¥ì¥¯¥È¥êÆâ¤ËÃÖ¤«¤ì¤Þ¤¹¡£" + +#: src/LYLocal.c:1683 +#, c-format +msgid "Executing %s " +msgstr "%s ¤ò¼Â¹ÔÃæ " + +#: src/LYLocal.c:1686 +msgid "Executing system command. This might take a while." +msgstr "¥·¥¹¥Æ¥à¥³¥Þ¥ó¥É¤ò¼Â¹ÔÃæ¤Ç¤¹¡£¤·¤Ð¤é¤¯¤«¤«¤ê¤Þ¤¹¡£" + +#: src/LYLocal.c:1732 +msgid "Unable to open file management menu file." +msgstr "¥Õ¥¡¥¤¥ë´ÉÍý¥á¥Ë¥å¡¼¥Õ¥¡¥¤¥ë¤ò³«¤±¤Þ¤»¤ó¡£" + +#: src/LYLocal.c:1763 +msgid "Current directory:" +msgstr "¸½ºß¤Î¥Ç¥£¥ì¥¯¥È¥ê:" + +#: src/LYLocal.c:1766 src/LYLocal.c:1784 +msgid "Current selection:" +msgstr "¸½ºßÁªÂò:" + +#: src/LYLocal.c:1770 +msgid "Nothing currently selected." +msgstr "¸½ºß²¿¤âÁªÂò¤µ¤ì¤Æ¤¤¤Þ¤»¤ó¡£" + +#: src/LYLocal.c:1785 +msgid "tagged item:" +msgstr "ÁªÂò¤µ¤ì¤¿¥¢¥¤¥Æ¥à:" + +#: src/LYLocal.c:1785 +msgid "tagged items:" +msgstr "ÁªÂò¤µ¤ì¤¿¥¢¥¤¥Æ¥à:" + +#: src/LYLocal.c:1884 src/LYLocal.c:1895 +msgid "Illegal filename; request ignored." +msgstr "ÉÔÀµ¤Ê¥Õ¥¡¥¤¥ë̾¤Ç¤¹: Í×µá¤Ï̵»ë¤µ¤ì¤Þ¤¹¡£" + +#: src/LYLocal.c:2038 +msgid "The selected item is not a directory! Request ignored." +msgstr "ÁªÂò¤µ¤ì¤¿¥¢¥¤¥Æ¥à¤Ï¥Ç¥£¥ì¥¯¥È¥ê¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó! Í×µá¤Ï̵»ë¤µ¤ì¤Þ¤¹¡£" + +#. directory not writable +#: src/LYLocal.c:2042 +msgid "Install in the selected directory not permitted." +msgstr "ÁªÂò¤µ¤ì¤¿¥Ç¥£¥ì¥¯¥È¥ê¤Ø¤Î¥¤¥ó¥¹¥È¡¼¥ë¤Ïµö²Ä¤µ¤ì¤Æ¤¤¤Þ¤»¤ó¡£" + +#: src/LYLocal.c:2047 +msgid "Just a moment, ..." +msgstr "¤ªÂÔ¤Á¤¯¤À¤µ¤¤ ..." + +#: src/LYLocal.c:2064 +msgid "Error buiding install args" +msgstr "¥¤¥ó¥¹¥È¡¼¥ë°ú¿ô¤òÀ¸À®¤¹¤ë¤Î¤Ë¼ºÇÔ¤·¤Þ¤·¤¿" + +#: src/LYLocal.c:2079 src/LYLocal.c:2111 +#, c-format +msgid "Source and target are the same: %s" +msgstr "¥½¡¼¥¹¤È¥¿¡¼¥²¥Ã¥È¤¬Æ±¤¸¤Ç¤¹: %s" + +#: src/LYLocal.c:2089 src/LYLocal.c:2121 +#, c-format +msgid "Already in target directory: %s" +msgstr "¤¹¤Ç¤Ë¥¿¡¼¥²¥Ã¥È¥Ç¥£¥ì¥¯¥È¥ê¤Ë¤¤¤Þ¤¹: %s" + +#: src/LYLocal.c:2139 +msgid "Installation complete" +msgstr "¥¤¥ó¥¹¥È¡¼¥ë´°Î»" + +#: src/LYLocal.c:2328 +msgid "Temporary URL or list would be too long." +msgstr "°ì»þŪ URL ¤¢¤ë¤¤¤Ï¥ê¥¹¥È¤¬Ä¹¤¹¤®¤ë¤è¤¦¤Ç¤¹¡£" + +#: src/LYLocal.c:2395 +#, c-format +msgid "Unable to %s due to system error!" +msgstr "¥·¥¹¥Æ¥à¥¨¥é¡¼¤Ë¤è¤ê %s ¤Ç¤¤Þ¤»¤ó!" + +#. error return +#: src/LYLocal.c:2424 +#, c-format +msgid "Probable failure to %s due to system error!" +msgstr "¥·¥¹¥Æ¥à¥¨¥é¡¼¤Ë¤è¤ê %s ¤¬¼ºÇÔ¤·¤¿¤è¤¦¤Ç¤¹!" + +#: src/LYMail.c:501 +msgid "Sending" +msgstr "Á÷¿®Ãæ" + +#: src/LYMail.c:987 +#, c-format +msgid "The link %s :?: %s \n" +msgstr "¥ê¥ó¥¯ %s :?: %s \n" + +#: src/LYMail.c:989 +#, c-format +msgid "called \"%s\"\n" +msgstr "\"%s\"¤È¤·¤Æ¸Æ¤Ð¤ì¤ë\n" + +#: src/LYMail.c:990 +#, c-format +msgid "in the file \"%s\" called \"%s\"\n" +msgstr "¥Õ¥¡¥¤¥ë \"%s\" ¤Ç \"%s\" ¤È¸Æ¤Ð¤ì¤ë\n" + +#: src/LYMail.c:991 +msgid "was requested but was not available." +msgstr "¤¬Í׵ᤵ¤ì¤Þ¤·¤¿¤¬ÍøÍѤǤ¤Þ¤»¤ó¤Ç¤·¤¿¡£" + +#: src/LYMail.c:992 +msgid "Thought you might want to know." +msgstr "¤¢¤Ê¤¿¤¬ÃΤꤿ¤¤¤«¤â¤·¤ì¤Ê¤¤¤È»×¤¤¤Þ¤·¤¿¡£" + +#: src/LYMail.c:994 +msgid "This message was automatically generated by" +msgstr "¤³¤Î¥á¥Ã¥»¡¼¥¸¤Ï°Ê²¼¤Ë¤è¤Ã¤Æ¼«Æ°Åª¤ËÀ¸À®¤µ¤ì¤Þ¤·¤¿: " + +#: src/LYMain.c:871 +msgid "No Winsock found, sorry." +msgstr "Winsock ¤¬¸«¤Ä¤«¤ê¤Þ¤»¤ó¡£" + +#: src/LYMain.c:1056 +msgid "You MUST define a valid TMP or TEMP area!\n" +msgstr "TMP ¤Ê¤¤¤· TEMP Îΰè¤òÀµ¤·¤¯ÄêµÁ¤·¤Ê¤±¤ì¤Ð*¤Ê¤ê¤Þ¤»¤ó*!\n" + +#: src/LYMain.c:1104 src/LYMainLoop.c:5113 +#, fuzzy +msgid "No such directory" +msgstr " ¥Ç¥£¥ì¥¯¥È¥ê" + +#: src/LYMain.c:1318 +#, c-format +msgid "" +"\n" +"Configuration file %s is not available.\n" +"\n" +msgstr "" +"\n" +"ÄêµÁ¥Õ¥¡¥¤¥ë %s ¤¬ÍøÍѤǤ¤Þ¤»¤ó¡£\n" +"\n" + +#: src/LYMain.c:1328 +msgid "" +"\n" +"Lynx character sets not declared.\n" +"\n" +msgstr "" +"\n" +"Lynx ¥¥ã¥é¥¯¥¿¥»¥Ã¥È¤¬Àë¸À¤µ¤ì¤Æ¤¤¤Þ¤»¤ó¡£\n" +"\n" + +#: src/LYMain.c:1352 +msgid "" +"\n" +"Lynx edit map not declared.\n" +"\n" +msgstr "" +"\n" +"Lynx ÊÔ½¸¥Þ¥Ã¥×¤¬Àë¸À¤µ¤ì¤Æ¤¤¤Þ¤»¤ó¡£\n" +"\n" + +#: src/LYMain.c:1381 +#, c-format +msgid "" +"\n" +"Lynx file %s is not available.\n" +"\n" +msgstr "" +"\n" +"Lynx ¥Õ¥¡¥¤¥ë %s ¤ÏÍøÍѤǤ¤Þ¤»¤ó¡£\n" +"\n" + +#: src/LYMain.c:1639 +msgid "Warning:" +msgstr "Ãí°Õ: " + +#: src/LYMain.c:2192 +msgid "persistent cookies state will be changed in next session only." +msgstr "±Ê³Ū¥¯¥Ã¥¡¼¤Î¾õÂ֤ϼ¡¤Î¥»¥Ã¥·¥ç¥ó¤Ë¤Ê¤é¤Ê¤¤¤ÈÊѹ¹¤µ¤ì¤Þ¤»¤ó¡£" + +#: src/LYMain.c:2456 +#, c-format +msgid "Lynx: ignoring unrecognized charset=%s\n" +msgstr "Lynx: ÉÔÌÀ¤Ê¥¥ã¥é¥¯¥¿¥»¥Ã¥È %s ¤ò̵»ë¤·¤Þ¤¹¡£\n" + +#: src/LYMain.c:2927 +#, fuzzy, c-format +msgid "%s Version %s (%s)\n" +msgstr "%s ¥Ð¡¼¥¸¥ç¥ó %s (%.*s)\n" + +#: src/LYMain.c:2937 +#, c-format +msgid "Built on %s %s %s\n" +msgstr "%s ¾å¤Ç %s %s ¤Ë¥Ó¥ë¥É¤µ¤ì¤Þ¤·¤¿¡£\n" + +#: src/LYMain.c:2941 +msgid "" +"Copyrights held by the University of Kansas, CERN, and other contributors.\n" +msgstr "¥«¥ó¥¶¥¹Âç³Ø¡¢CERN ¤È¤½¤Î¾¤Î¹×¸¥¼Ô¤¬Ãøºî¸¢¤òÊÝͤ·¡¢\n" + +#: src/LYMain.c:2943 +msgid "Distributed under the GNU General Public License.\n" +msgstr "GNU °ìÈ̸øÍ»ÈÍѵöÂú·ÀÌó½ñ¤Î²¼¤ÇÇÛÉÛ¤µ¤ì¤Æ¤¤¤Þ¤¹¡£\n" + +#: src/LYMain.c:2945 +msgid "" +"See http://lynx.browser.org/ and the online help for more information.\n" +"\n" +msgstr "" +"¾Ü¤·¤¯¤Ï http://lynx.browser.org/ ¤È¥ª¥ó¥é¥¤¥ó¥Ø¥ë¥×¤ò¤´Í÷¤¯¤À¤µ¤¤¡£\n" +"\n" + +#: src/LYMain.c:3642 +#, c-format +msgid "USAGE: %s [options] [file]\n" +msgstr "»È¤¤Êý: %s [¥ª¥×¥·¥ç¥ó] [¥Õ¥¡¥¤¥ë]\n" + +#: src/LYMain.c:3643 +msgid "Options are:\n" +msgstr "¥ª¥×¥·¥ç¥ó:\n" + +#: src/LYMain.c:3892 +#, c-format +msgid "%s: Invalid Option: %s\n" +msgstr "%s: ÉÔÀµ¤Ê¥ª¥×¥·¥ç¥ó¤Ç¤¹: %s\n" + +#: src/LYMainLoop.c:463 +#, c-format +msgid "Internal error: Invalid mouse link %d!" +msgstr "ÆâÉô¥¨¥é¡¼: %d ¤ÏÉÔÀµ¤Ê¥Þ¥¦¥¹¥ê¥ó¥¯¤Ç¤¹!" + +#. +#. * Make a name for this new URL. +#. +#: src/LYMainLoop.c:618 src/LYMainLoop.c:5135 +msgid "A URL specified by the user" +msgstr "¥æ¡¼¥¶¤Ë¤è¤Ã¤Æ»ØÄꤵ¤ì¤¿ URL" + +#: src/LYMainLoop.c:1106 +msgid "Enctype multipart/form-data not yet supported! Cannot submit." +msgstr "" +"Enctype multipart/form-data ¤Ï¤Þ¤À¥µ¥Ý¡¼¥È¤µ¤ì¤Æ¤¤¤Þ¤»¤ó! Á÷¿®¤Ç¤¤Þ¤»¤ó¡£" + +#. +#. * Make a name for this help file. +#. +#: src/LYMainLoop.c:3087 +msgid "Help Screen" +msgstr "¥Ø¥ë¥×²èÌÌ" + +#: src/LYMainLoop.c:3228 +msgid "System Index" +msgstr "¥·¥¹¥Æ¥à¥¤¥ó¥Ç¥Ã¥¯¥¹" + +#: src/LYMainLoop.c:3615 src/LYMainLoop.c:5240 +msgid "Entry into main screen" +msgstr "¥á¥¤¥ó²èÌ̤ؤÎÆþÎÏ" + +#: src/LYMainLoop.c:4190 +msgid "charset for this document specified explicitly, sorry..." +msgstr "¤³¤Îʸ½ñ¤Î¥¥ã¥é¥¯¥¿¥»¥Ã¥È¤ÏÌÀ¼¨Åª¤Ë»ØÄꤵ¤ì¤Æ¤¤¤Þ¤¹..." + +#: src/LYMainLoop.c:5089 +#, fuzzy +msgid "cd to:" +msgstr " ¤Ø " + +#: src/LYMainLoop.c:5116 +msgid "A component of path is not a directory" +msgstr "" + +#: src/LYMainLoop.c:5119 +#, fuzzy +msgid "failed to change directory" +msgstr "¥Ç¥£¥ì¥¯¥È¥ê¤Ë¥¢¥¯¥»¥¹¤Ç¤¤Þ¤»¤ó¡£" + +#: src/LYMainLoop.c:6192 +msgid "Reparsing document under current settings..." +msgstr "¸½ºß¤ÎÀßÄê¤Î²¼¤Çʸ½ñ¤òºÆ²ò¼áÃæ..." + +#: src/LYMainLoop.c:6480 src/LYMainLoop.c:6484 +#, c-format +msgid "Fatal error - could not open output file %s\n" +msgstr "Ã×̿Ū¥¨¥é¡¼ - ½ÐÎÏ¥Õ¥¡¥¤¥ë %s ¤¬³«¤±¤Þ¤»¤ó\n" + +#: src/LYMainLoop.c:7538 src/LYMainLoop.c:7711 +msgid "-index-" +msgstr "-¥¤¥ó¥Ç¥Ã¥¯¥¹-" + +#: src/LYMainLoop.c:7648 +msgid "lynx: Can't access startfile" +msgstr "lynx: ¥¹¥¿¡¼¥È¥Õ¥¡¥¤¥ë¤Ë¥¢¥¯¥»¥¹¤Ç¤¤Þ¤»¤ó" + +#: src/LYMainLoop.c:7661 +msgid "lynx: Start file could not be found or is not text/html or text/plain" +msgstr "" +"lynx: ¥¹¥¿¡¼¥È¥Õ¥¡¥¤¥ë¤¬¸«¤Ä¤«¤é¤Ê¤¤¤«¡¢text/html ¤Ê¤¤¤· text/plain " +"¤Ç¤Ï¤¢¤ê¤Þ¤»¤ó" + +#: src/LYMainLoop.c:7662 +msgid " Exiting..." +msgstr " ½ªÎ»¤·¤Þ¤¹..." + +#: src/LYMainLoop.c:7705 +msgid "-more-" +msgstr "-³¤¤¢¤ê-" + +#. Enable scrolling. +#: src/LYNews.c:203 +msgid "You will be posting to:" +msgstr "Åê¹ÆÀè: " + +#. +#. * Get the mail address for the From header, +#. * offering personal_mail_address as default. +#. +#: src/LYNews.c:212 +msgid "" +"\n" +"\n" +" Please provide your mail address for the From: header\n" +msgstr "" +"\n" +"\n" +" From: ¥Ø¥Ã¥ÀÍѤˤ¢¤Ê¤¿¤Î¥á¡¼¥ë¥¢¥É¥ì¥¹¤ò»ØÄꤷ¤Æ¤¯¤À¤µ¤¤\n" + +#. +#. * Get the Subject header, offering the current +#. * document's title as the default if this is a +#. * followup rather than a new post. - FM +#. +#: src/LYNews.c:230 +msgid "" +"\n" +"\n" +" Please provide or edit the Subject: header\n" +msgstr "" +"\n" +"\n" +" Subject: ¥Ø¥Ã¥À¤òÊÔ½¸¤·¤ÆÍÑ°Õ¤·¤Æ¤¯¤À¤µ¤¤\n" + +#: src/LYNews.c:322 +msgid "" +"\n" +"\n" +" Please provide or edit the Organization: header\n" +msgstr "" +"\n" +"\n" +"Organization: ¥Ø¥Ã¥À¤òÊÔ½¸¤·¤ÆÍÑ°Õ¤·¤Æ¤¯¤À¤µ¤¤\n" + +#. +#. * Use the built in line editior. +#. +#: src/LYNews.c:395 +msgid "" +"\n" +"\n" +" Please enter your message below." +msgstr "" +"\n" +"\n" +" °Ê²¼¤Ë¤¢¤Ê¤¿¤Î¥á¥Ã¥»¡¼¥¸¤òÆþÎϤ·¤Æ¤¯¤À¤µ¤¤¡£" + +#: src/LYNews.c:441 +msgid "Message has no original text!" +msgstr "¥á¥Ã¥»¡¼¥¸¤Ë¤Ï¸µ¤Î¥Æ¥¥¹¥È¤¬´Þ¤Þ¤ì¤Æ¤¤¤Þ¤»¤ó!" + +#: src/LYOptions.c:699 +msgid "review/edit B)ookmarks files" +msgstr "[b]¥Ö¥Ã¥¯¥Þ¡¼¥¯¥Õ¥¡¥¤¥ë¤ò±ÜÍ÷/ÊÔ½¸" + +#: src/LYOptions.c:701 +msgid "B)ookmark file: " +msgstr "[b]¥Ö¥Ã¥¯¥Þ¡¼¥¯¥Õ¥¡¥¤¥ë" + +#: src/LYOptions.c:2602 src/LYOptions.c:2626 +#, c-format +msgid "Use %s to invoke the Options menu!" +msgstr "%s ¤ÇÀßÄê¥á¥Ë¥å¡¼¤òµ¯Æ°¤·¤Þ¤¹!" + +#: src/LYOptions.c:3240 +msgid "General Preferences" +msgstr "Á´ÈÌŪ¤ÊÀßÄê" + +#. *************************************************************** +#. User Mode: SELECT +#: src/LYOptions.c:3244 +msgid "User mode" +msgstr "¥æ¡¼¥¶¥â¡¼¥É" + +#. Editor: INPUT +#: src/LYOptions.c:3250 +msgid "Editor" +msgstr "»ÈÍѤ¹¤ë¥¨¥Ç¥£¥¿" + +#. Search Type: SELECT +#: src/LYOptions.c:3255 +msgid "Type of Search" +msgstr "¸¡º÷¥¿¥¤¥×" + +#. Cookies: SELECT +#. @@@ This is inconsistent - LYAcceptAllCookies gets saved to RC file +#. but LYSetCookies doesn't! +#: src/LYOptions.c:3263 +msgid "Cookies" +msgstr "¥¯¥Ã¥¡¼" + +#: src/LYOptions.c:3277 +msgid "Keyboard Input" +msgstr "¥¡¼¥Ü¡¼¥ÉÆþÎÏ" + +#. *************************************************************** +#. Keypad Mode: SELECT +#: src/LYOptions.c:3281 +msgid "Keypad mode" +msgstr "¥¡¼¥Ñ¥Ã¥É¤Î¥â¡¼¥É" + +#. Emacs keys: ON/OFF +#: src/LYOptions.c:3287 +msgid "Emacs keys" +msgstr "Emacs É÷¥¡¼ÇÛÎó" + +#. VI Keys: ON/OFF +#: src/LYOptions.c:3293 +msgid "VI keys" +msgstr "VI É÷¥¡¼ÇÛÎó" + +#. +#. * Display and Character Set +#. +#: src/LYOptions.c:3325 +msgid "Display and Character Set" +msgstr "ɽ¼¨¤È¥¥ã¥é¥¯¥¿¥»¥Ã¥È" + +#. *************************************************************** +#. Display Character Set: SELECT +#: src/LYOptions.c:3329 +msgid "Display character set" +msgstr "ɽ¼¨¤¹¤ë¥¥ã¥é¥¯¥¿¥»¥Ã¥È" + +#: src/LYOptions.c:3359 +msgid "Assumed document character set" +msgstr "²¾Äꤹ¤ë¥¥ã¥é¥¯¥¿¥»¥Ã¥È" + +#. +#. * Since CJK people hardly mixed with other world +#. * we split the header to make it more readable: +#. * "CJK mode" for CJK display charsets, and "Raw 8-bit" for others. +#. +#: src/LYOptions.c:3379 +msgid "CJK mode" +msgstr "CJK ¥â¡¼¥É" + +#: src/LYOptions.c:3381 +msgid "Raw 8-bit" +msgstr "À¸ 8 ¥Ó¥Ã¥È" + +#. X Display: INPUT +#: src/LYOptions.c:3389 +msgid "X Display" +msgstr "X ¥Ç¥£¥¹¥×¥ì¥¤" + +#. +#. * Document Appearance +#. +#: src/LYOptions.c:3395 +msgid "Document Appearance" +msgstr "ʸ½ñ¤Î³°¸«" + +#: src/LYOptions.c:3401 +msgid "Show color" +msgstr "¿§¤òÉÕ¤±¤ë" + +#. Show cursor: ON/OFF +#: src/LYOptions.c:3425 +msgid "Show cursor" +msgstr "¥«¡¼¥½¥ë¤ò¸«¤»¤ë" + +#. Select Popups: ON/OFF +#: src/LYOptions.c:3431 +msgid "Popups for select fields" +msgstr "¥Õ¥£¡¼¥ë¥ÉÁªÂò»þ¤Ë¥Ý¥Ã¥×¥¢¥Ã¥×" + +#. HTML error recovery: SELECT +#: src/LYOptions.c:3438 +msgid "HTML error recovery" +msgstr "HTML ¥¨¥é¡¼¤«¤é¤Î²óÉü" + +#. Show Images: SELECT +#: src/LYOptions.c:3445 +msgid "Show images" +msgstr "²èÁü¤Îɽ¼¨" + +#. Verbose Images: ON/OFF +#: src/LYOptions.c:3459 +msgid "Verbose images" +msgstr "¾éĹ¤Ê²èÁüɽ¼¨" + +#. +#. * Headers Transferred to Remote Servers +#. +#: src/LYOptions.c:3467 +msgid "Headers Transferred to Remote Servers" +msgstr "¥ê¥â¡¼¥È¥µ¡¼¥Ð¤ËžÁ÷¤µ¤ì¤ë¥Ø¥Ã¥À" + +#. *************************************************************** +#. Mail Address: INPUT +#: src/LYOptions.c:3471 +msgid "Personal mail address" +msgstr "¸Ä¿Í¤Î¥á¡¼¥ë¥¢¥É¥ì¥¹" + +#. Preferred Document Character Set: INPUT +#: src/LYOptions.c:3476 +msgid "Preferred document character set" +msgstr "ɽ¼¨¤·¤¿¤¤¥¥ã¥é¥¯¥¿¡¼¥»¥Ã¥È" + +#. Preferred Document Language: INPUT +#: src/LYOptions.c:3481 +msgid "Preferred document language" +msgstr "ɽ¼¨¤·¤¿¤¤¸À¸ì" + +#: src/LYOptions.c:3487 +msgid "User-Agent header" +msgstr "User-Agent ¥Ø¥Ã¥À" + +#. +#. * Listing and Accessing Files +#. +#: src/LYOptions.c:3495 +msgid "Listing and Accessing Files" +msgstr "¥ê¥¹¥Èɽ¼¨¤È¥Õ¥¡¥¤¥ë¤Ø¤Î¥¢¥¯¥»¥¹" + +#. *************************************************************** +#. FTP sort: SELECT +#: src/LYOptions.c:3499 +msgid "FTP sort criteria" +msgstr "FTP ¥Ç¥£¥ì¥¯¥È¥ê¤Î¥½¡¼¥È´ð½à" + +#. Local Directory Sort: SELECT +#: src/LYOptions.c:3506 +msgid "Local directory sort criteria" +msgstr "¥í¡¼¥«¥ë¥Ç¥£¥ì¥¯¥È¥ê¤Î¥½¡¼¥È´ð½à" + +#: src/LYOptions.c:3514 +msgid "Show dot files" +msgstr "¥É¥Ã¥È¥Õ¥¡¥¤¥ë¤òɽ¼¨" + +#: src/LYOptions.c:3522 +msgid "Execution links" +msgstr "¥ê¥ó¥¯¤ò¼Â¹Ô" + +#. Local Directory Sort: SELECT +#: src/LYOptions.c:3542 +#, fuzzy +msgid "Show transfer rate" +msgstr "¥Ç¡¼¥¿Å¾Á÷´°Î»" + +#. +#. * Special Files and Screens +#. +#: src/LYOptions.c:3551 +msgid "Special Files and Screens" +msgstr "ÆÃÊÌ¥Õ¥¡¥¤¥ë¤È²èÌÌ" + +#: src/LYOptions.c:3556 +msgid "Multi-bookmarks" +msgstr "¥Þ¥ë¥Á¥Ö¥Ã¥¯¥Þ¡¼¥¯¤ò»È¤¦" + +#: src/LYOptions.c:3572 +msgid "Review/edit Bookmarks files" +msgstr "¥Ö¥Ã¥¯¥Þ¡¼¥¯¥Õ¥¡¥¤¥ë¤Î±ÜÍ÷/ÊÔ½¸" + +#: src/LYOptions.c:3574 +msgid "Goto multi-bookmark menu" +msgstr "¥Þ¥ë¥Á¥Ö¥Ã¥¯¥Þ¡¼¥¯¥á¥Ë¥å¡¼¤Ø" + +#: src/LYOptions.c:3576 +msgid "Bookmarks file" +msgstr "¥Ö¥Ã¥¯¥Þ¡¼¥¯¥Õ¥¡¥¤¥ë" + +#. Visited Pages: SELECT +#: src/LYOptions.c:3582 +msgid "Visited Pages" +msgstr "ˬ¤ì¤¿¥Ú¡¼¥¸" + +#: src/LYPrint.c:957 +msgid " Print job complete.\n" +msgstr "°õºþ¥¸¥ç¥Ö¤¬´°Î»¤·¤Þ¤·¤¿¡£\n" + +#: src/LYPrint.c:1294 +msgid "Document:" +msgstr "ʸ½ñ:" + +#: src/LYPrint.c:1295 +msgid "Number of lines:" +msgstr "¹Ô¿ô:" + +#: src/LYPrint.c:1296 +msgid "Number of pages:" +msgstr "¥Ú¡¼¥¸¿ô:" + +#: src/LYPrint.c:1297 +msgid "pages" +msgstr "¥Ú¡¼¥¸" + +#: src/LYPrint.c:1297 +msgid "page" +msgstr "¥Ú¡¼¥¸" + +#: src/LYPrint.c:1298 +msgid "(approximately)" +msgstr "(³µ»»)" + +#: src/LYPrint.c:1303 +msgid "Some print functions have been disabled!" +msgstr "°õºþµ¡Ç½¤Î°ìÉô¤Ï»È¤¨¤Þ¤»¤ó!" + +#: src/LYPrint.c:1307 +msgid "Standard print options:" +msgstr "ɸ½à¤Î°õºþÀè" + +#: src/LYPrint.c:1308 +msgid "Print options:" +msgstr "°õºþÀè¤òÁªÂò:" + +#: src/LYPrint.c:1314 +msgid "Save to a local file" +msgstr "¥í¡¼¥«¥ë¥Õ¥¡¥¤¥ë¤ËÊݸ" + +#: src/LYPrint.c:1316 +msgid "Save to disk disabled" +msgstr "¥Ç¥£¥¹¥¯¤Ø¤ÎÊݸ¤Ï¤Ç¤¤Þ¤»¤ó" + +#: src/LYPrint.c:1322 +msgid "Mail the file" +msgstr "¥Õ¥¡¥¤¥ë¤ò¥á¡¼¥ë¤ÇÁ÷¿®" + +#: src/LYPrint.c:1328 +msgid "Print to the screen" +msgstr "²èÌ̤Ëɽ¼¨" + +#: src/LYPrint.c:1332 +msgid "Print out on a printer attached to your vt100 terminal" +msgstr "¤¢¤Ê¤¿¤Î vt100 üËö¤ËÀܳ¤µ¤ì¤¿¥×¥ê¥ó¥¿¤Ë°õºþ" + +#: src/LYReadCFG.c:414 +msgid "" +"Syntax Error parsing COLOR in configuration file:\n" +"The line must be of the form:\n" +"COLOR:INTEGER:FOREGROUND:BACKGROUND\n" +"\n" +"Here FOREGROUND and BACKGROUND must be one of:\n" +"The special strings 'nocolor' or 'default', or\n" +msgstr "" +"ÀßÄê¥Õ¥¡¥¤¥ë¤Î COLOR ¤ò²òÀÏÃæ¤Ë¥·¥ó¥¿¥Ã¥¯¥¹¥¨¥é¡¼¤ò¸¡½Ð¤·¤Þ¤·¤¿:\n" +"¤³¤Î¹Ô¤Ï°Ê²¼¤Î·Á¼°¤ò¼è¤é¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó:\n" +"COLOR:INTEGER:FOREGROUND:BACKGROUND\n" +"\n" +"FOREGROUND ¤È BACKGROUND ¤Ï°Ê²¼¤Î¤¦¤Á°ì¤Ä¤ò¼è¤ê¤Þ¤¹:\n" +"ÆÃÊÌʸ»úÎó¤Î¡Önocolor¡×¡¢¡Ödefault¡×¡¢¤¢¤ë¤¤¤Ï\n" + +#: src/LYReadCFG.c:427 +msgid "Offending line:" +msgstr "ÌäÂê¤Î¹Ô:" + +#: src/LYReadCFG.c:766 +#, c-format +msgid "key remapping of %s to %s for %s failed\n" +msgstr "¥¡¼ %s ¤ò %s ¤Ø (Æ°ºî¤Ï %s) ºÆÄêµÁ¤¹¤ë¤Î¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n" + +#: src/LYReadCFG.c:773 +#, c-format +msgid "key remapping of %s to %s failed\n" +msgstr "¥¡¼ %s ¤ò %s ¤ØºÆÄêµÁ¤¹¤ë¤Î¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n" + +#: src/LYReadCFG.c:794 +#, c-format +msgid "invalid line-editor selection %s for key %s, selecting all\n" +msgstr "¥¡¼ %s ¤Î¹Ô¥¨¥Ç¥£¥¿ÁªÂò %s ¤¬ÉÔÀµ¤Ç¤¹¡¢Á´ÂΤòÁªÂò¤·¤Þ¤¹\n" + +#: src/LYReadCFG.c:821 src/LYReadCFG.c:834 +#, c-format +msgid "" +"setting of line-editor binding for key %s (0x%x) to 0x%x for %s failed\n" +msgstr "" +"¹Ô¥¨¥Ç¥£¥¿¥Ð¥¤¥ó¥Ç¥£¥ó¥°¤Ç¥¡¼ %s (0x%x) ¤ò 0x%x (Æ°ºî ¤Ï " +"%s)¤ËÀßÄꤹ¤ë¤Î¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n" + +#: src/LYReadCFG.c:839 +#, c-format +msgid "setting of line-editor binding for key %s (0x%x) for %s failed\n" +msgstr "" +"¹Ô¥¨¥Ç¥£¥¿¥Ð¥¤¥ó¥Ç¥£¥ó¥°¤Ç¥¡¼ %s (0x%x) ¤òÆ°ºî " +"%s¤ËÀßÄꤹ¤ë¤Î¤Ë¼ºÇÔ¤·¤Þ¤·¤¿\n" + +#: src/LYReadCFG.c:944 +#, c-format +msgid "Lynx: cannot start, CERN rules file %s is not available\n" +msgstr "Lynx: ³«»Ï¤Ç¤¤Þ¤»¤ó¡£CERN ¥ë¡¼¥ë¥Õ¥¡¥¤¥ë %s ¤¬ÍøÍѤǤ¤Þ¤»¤ó\n" + +#: src/LYReadCFG.c:946 +msgid "(no name)" +msgstr "(̾Á°Ìµ¤·)" + +#: src/LYReadCFG.c:1753 +#, c-format +msgid "More than %d nested lynx.cfg includes -- perhaps there is a loop?!?\n" +msgstr "" +"lynx.cfg ¥¤¥ó¥¯¥ë¡¼¥É¤¬ %d ²ó°Ê¾å¤ÎÆþ¤ì»Ò¤Ë¤Ê¤Ã¤Æ¤¤¤Þ¤¹ -- " +"¤ª¤½¤é¤¯¥ë¡¼¥×¤¬¤¢¤ë¤Î¤Ç¤Ï!?\n" + +#: src/LYReadCFG.c:1755 +#, c-format +msgid "Last attempted include was '%s',\n" +msgstr "ºÇ¸å¤Ë»î¤ß¤¿¥¤¥ó¥¯¥ë¡¼¥É¤Ï '%s' ¤Ç¡¢\n" + +#: src/LYReadCFG.c:1756 +#, c-format +msgid "included from '%s'.\n" +msgstr "'%s' ¤«¤é¥¤¥ó¥¯¥ë¡¼¥É¤µ¤ì¤Æ¤¤¤Þ¤¹¡£\n" + +#: src/LYReadCFG.c:2255 src/LYReadCFG.c:2268 src/LYReadCFG.c:2304 +msgid "The following is read from your lynx.cfg file." +msgstr "°Ê²¼¤Ï¤¢¤Ê¤¿¤Î lynx.cfg ¥Õ¥¡¥¤¥ë¤«¤éÆɤ߹þ¤Þ¤ì¤¿¾ðÊó¤Ç¤¹¡£" + +#: src/LYReadCFG.c:2256 src/LYReadCFG.c:2269 +msgid "Please read the distribution" +msgstr "ÇÛÉÛ¤Î" + +#: src/LYReadCFG.c:2262 src/LYReadCFG.c:2272 +msgid "for more comments." +msgstr "¤Ë¤Ï¾ÜºÙ¤ÊÃí¤¬ÉÕ¤¤¤Æ¤¤¤Þ¤¹¤Î¤Ç»²¾È¤·¤Æ¤¯¤À¤µ¤¤¡£" + +#: src/LYReadCFG.c:2286 +msgid "RELOAD THE CHANGES" +msgstr "Êѹ¹¤òºÆÆɤ߹þ¤ß" + +#: src/LYReadCFG.c:2295 +msgid "Your primary configuration" +msgstr "ºÇ½é¤Ë»²¾È¤µ¤ì¤ëÀßÄê¥Õ¥¡¥¤¥ë¤Ï" + +#: src/LYShowInfo.c:129 +msgid "Directory that you are currently viewing" +msgstr "¸½ºß¸«¤Æ¤¤¤ë¥Ç¥£¥ì¥¯¥È¥ê" + +#: src/LYShowInfo.c:132 +msgid "Name:" +msgstr "̾Á°:" + +#: src/LYShowInfo.c:135 +msgid "URL:" +msgstr "URL:" + +#: src/LYShowInfo.c:146 +msgid "Directory that you have currently selected" +msgstr "¸½ºßÁªÂò¤·¤Æ¤¤¤ë¥Ç¥£¥ì¥¯¥È¥ê" + +#: src/LYShowInfo.c:149 +msgid "File that you have currently selected" +msgstr "¸½ºßÁªÂò¤·¤Æ¤¤¤ë¥Õ¥¡¥¤¥ë" + +#: src/LYShowInfo.c:153 +msgid "Symbolic link that you have currently selected" +msgstr "¸½ºßÁªÂò¤·¤Æ¤¤¤ë¥·¥ó¥Ü¥ê¥Ã¥¯¥ê¥ó¥¯" + +#: src/LYShowInfo.c:157 +msgid "Item that you have currently selected" +msgstr "¸½ºßÁªÂò¤·¤Æ¤¤¤ë¥¢¥¤¥Æ¥à" + +#: src/LYShowInfo.c:159 +msgid "Full name:" +msgstr "¥Õ¥ë¥Í¡¼¥à:" + +#: src/LYShowInfo.c:168 +msgid "Unable to follow link" +msgstr "¥ê¥ó¥¯¤òé¤ì¤Þ¤»¤ó" + +#: src/LYShowInfo.c:170 +msgid "Points to file:" +msgstr "¥Õ¥¡¥¤¥ë¤Ø¤Î¥Ý¥¤¥ó¥È:" + +#: src/LYShowInfo.c:175 +msgid "Name of owner:" +msgstr "½êͼԤÎ̾Á°:" + +#: src/LYShowInfo.c:178 +msgid "Group name:" +msgstr "¥°¥ë¡¼¥×¤Î̾Á°:" + +#: src/LYShowInfo.c:181 +msgid "File size:" +msgstr "¥Õ¥¡¥¤¥ë¥µ¥¤¥º:" + +#: src/LYShowInfo.c:187 +msgid "Creation date:" +msgstr "ºîÀ®Æü»þ:" + +#: src/LYShowInfo.c:190 +msgid "Last modified:" +msgstr "ºÇ½ªÊѹ¹Æü»þ:" + +#: src/LYShowInfo.c:193 +msgid "Last accessed:" +msgstr "ºÇ¸å¤Ë¥¢¥¯¥»¥¹¤µ¤ì¤¿Æü»þ:" + +#: src/LYShowInfo.c:195 +msgid "Access Permissions" +msgstr "¥¢¥¯¥»¥¹µö²Ä" + +#: src/LYShowInfo.c:261 +msgid "File that you are currently viewing" +msgstr "¸½ºß¤¢¤Ê¤¿¤¬¸«¤Æ¤¤¤ë¥Õ¥¡¥¤¥ë" + +#: src/LYShowInfo.c:266 src/LYShowInfo.c:375 +msgid "Linkname:" +msgstr "¥ê¥ó¥¯Ì¾" + +#: src/LYShowInfo.c:279 src/LYShowInfo.c:291 +msgid "Charset:" +msgstr "¥¥ã¥é¥¯¥¿¥»¥Ã¥È:" + +#: src/LYShowInfo.c:297 +msgid "Server:" +msgstr "¥µ¡¼¥Ð:" + +#: src/LYShowInfo.c:300 +msgid "Date:" +msgstr "Æü»þ:" + +#: src/LYShowInfo.c:303 +msgid "Last Mod:" +msgstr "ºÇ½ª¹¹¿·:" + +#: src/LYShowInfo.c:309 +msgid " Expires:" +msgstr " ͸ú´ü¸Â:" + +#: src/LYShowInfo.c:313 +msgid "Cache-Control:" +msgstr "Cache-Control:" + +#: src/LYShowInfo.c:317 +msgid "Content-Length:" +msgstr "Content-Length:" + +#: src/LYShowInfo.c:322 +msgid "Language:" +msgstr "¸À¸ì:" + +#: src/LYShowInfo.c:329 +msgid "Post Data:" +msgstr "Post ¥Ç¡¼¥¿:" + +#: src/LYShowInfo.c:331 +msgid "Post Content Type:" +msgstr "Post ¥³¥ó¥Æ¥ó¥È¥¿¥¤¥×:" + +#: src/LYShowInfo.c:340 +msgid "Owner(s):" +msgstr "½êͼÔ:" + +#: src/LYShowInfo.c:343 +msgid "size:" +msgstr "¥µ¥¤¥º:" + +#: src/LYShowInfo.c:343 +msgid "lines" +msgstr "¹Ô" + +#: src/LYShowInfo.c:346 +msgid "mode:" +msgstr "¥â¡¼¥É:" + +#: src/LYShowInfo.c:348 +msgid "forms mode" +msgstr "Ê£¿ô¥Õ¥©¡¼¥à¥â¡¼¥É" + +#: src/LYShowInfo.c:350 +msgid "source" +msgstr "¥½¡¼¥¹" + +#: src/LYShowInfo.c:350 +msgid "normal" +msgstr "Ä̾ï" + +#: src/LYShowInfo.c:351 +msgid ", safe" +msgstr "¡¢°ÂÁ´" + +#: src/LYShowInfo.c:352 +msgid ", via internal link" +msgstr "¡¢ÆâÉô¥ê¥ó¥¯·Ðͳ" + +#: src/LYShowInfo.c:358 +msgid ", no-cache" +msgstr "¡¢¥¥ã¥Ã¥·¥å̵¤·" + +#: src/LYShowInfo.c:360 +msgid ", ISMAP script" +msgstr "¡¢ISMAP ¥¹¥¯¥ê¥×¥È" + +#: src/LYShowInfo.c:362 +msgid ", bookmark file" +msgstr "¡¢¥Ö¥Ã¥¯¥Þ¡¼¥¯¥Õ¥¡¥¤¥ë" + +#: src/LYShowInfo.c:371 +msgid "Link that you currently have selected" +msgstr "¸½ºßÁªÂò¤·¤Æ¤¤¤ë¥ê¥ó¥¯" + +#: src/LYShowInfo.c:384 +msgid "Method:" +msgstr "¥á¥½¥Ã¥É:" + +#: src/LYShowInfo.c:389 +msgid "Enctype:" +msgstr "Enctype:" + +#: src/LYShowInfo.c:401 +msgid "(Form field)" +msgstr "(¥Õ¥©¡¼¥à¥Õ¥£¡¼¥ë¥É)" + +#: src/LYShowInfo.c:416 +msgid "No Links on the current page" +msgstr "¸½ºß¤Î¥Ú¡¼¥¸¤Ë¤Ï¥ê¥ó¥¯¤¬¤¢¤ê¤Þ¤»¤ó" + +#: src/LYStyle.c:204 +#, c-format +msgid "" +"Syntax Error parsing style in lss file:\n" +"[%s]\n" +"The line must be of the form:\n" +"OBJECT:MONO:COLOR (ie em:bold:brightblue:white)\n" +"where OBJECT is one of EM,STRONG,B,I,U,BLINK etc.\n" +"\n" +msgstr "" +"lss ¥Õ¥¡¥¤¥ë¤Î¥¹¥¿¥¤¥ë¤ò²òÀÏÃæ¤Ë¥·¥ó¥¿¥Ã¥¯¥¹¥¨¥é¡¼¤ò¸¡½Ð¤·¤Þ¤·¤¿:\n" +"[%s]\n" +"¤³¤Î¹Ô¤Ï°Ê²¼¤Î·Á¼°¤Ç¤Ê¤±¤ì¤Ð¤Ê¤ê¤Þ¤»¤ó:\n" +"OBJECT:MONO:COLOR (em:bold:brightblue:white ¤«¤éÁª¤Ö)\n" +"OBJECT ¤Ï EM¡¢STRONG¡¢B¡¢I¡¢U¡¢BLINK ¤Ê¤É¤«¤é°ì¤ÄÁª¤Ó¤Þ¤¹¡£\n" +"\n" + +#: src/LYTraversal.c:107 +msgid "here is a list of the history stack so that you may rebuild" +msgstr "°Ê²¼¤ÏºÆ¹½ÃۤΤ¿¤á¤ÎÍúÎò¥¹¥¿¥Ã¥¯¤Î¥ê¥¹¥È¤Ç¤¹¡£" + +#: src/LYUpload.c:78 +msgid "ERROR! - upload command is misconfigured" +msgstr "¥¨¥é¡¼! - ¥¢¥Ã¥×¥í¡¼¥É¥³¥Þ¥ó¥É¤ÎÀßÄ꤬´Ö°ã¤Ã¤Æ¤¤¤Þ¤¹¡£" + +#: src/LYUpload.c:100 +msgid "Illegal redirection \"../\" found! Request ignored." +msgstr "ÉÔÀµ¤Ê¥ê¥À¥¤¥ì¥¯¥·¥ç¥ó \"../\" ¤òȯ¸«! ¥ê¥¯¥¨¥¹¥È¤Ï̵»ë¤µ¤ì¤Þ¤¹¡£" + +#: src/LYUpload.c:103 +msgid "Illegal character \"/\" found! Request ignored." +msgstr "ÉÔÀµ¤Ê¥¥ã¥é¥¯¥¿ \"/\" ȯ¸«! ¥ê¥¯¥¨¥¹¥È¤Ï̵»ë¤µ¤ì¤Þ¤¹¡£" + +#: src/LYUpload.c:106 +msgid "Illegal redirection using \"~\" found! Request ignored." +msgstr "ÉÔÀµ¤Ê¥ê¥À¥¤¥ì¥¯¥·¥ç¥ó \"~\" ȯ¸«! ¥ê¥¯¥¨¥¹¥È¤Ï̵»ë¤µ¤ì¤Þ¤¹¡£" + +#: src/LYUpload.c:163 +msgid "Unable to upload file." +msgstr "¥Õ¥¡¥¤¥ë¤ò¥¢¥Ã¥×¥í¡¼¥É¤Ç¤¤Þ¤»¤ó¡£" + +#: src/LYUpload.c:214 +msgid "Upload To:" +msgstr "°Ê²¼¤Ë¥¢¥Ã¥×¥í¡¼¥É:" + +#: src/LYUpload.c:215 +msgid "Upload options:" +msgstr "¥¢¥Ã¥×¥í¡¼¥É¥ª¥×¥·¥ç¥ó:" + +#: src/LYUtils.c:3086 +msgid "Unexpected access protocol for this URL scheme." +msgstr "¤³¤Î URL ¥¹¥¡¼¥à¤Ç¤ÏÁÛÄꤵ¤ì¤Æ¤¤¤Ê¤¤¥¢¥¯¥»¥¹¥×¥í¥È¥³¥ë¤Ç¤¹¡£" + +#: src/LYUtils.c:4265 +msgid "No restrictions set.\n" +msgstr "À©¸Â¤ÏÀßÄꤵ¤ì¤Æ¤¤¤Þ¤»¤ó¡£\n" + +#: src/LYUtils.c:4268 +msgid "Restrictions set:\n" +msgstr "À©¸Â¤ò°Ê²¼¤ËÀßÄê:\n" + +#: src/LYUtils.c:5613 +msgid "Ignoring invalid HOME" +msgstr "ÉÔÀµ¤Ê HOME ¤ò̵»ë¤·¤Þ¤¹" + +#. +#. * Header. +#. +#: src/LYrcFile.c:608 +msgid "" +"Lynx User Defaults File\n" +"\n" +"This file contains options saved from the Lynx Options Screen (normally\n" +"with the '>' key). There is normally no need to edit this file manually,\n" +"since the defaults here can be controlled from the Options Screen, and the\n" +"next time options are saved from the Options Screen this file will be\n" +"completely rewritten. You have been warned...\n" +"If you are looking for the general configuration file - it is normally\n" +"called lynx.cfg, and it has different content and a different format.\n" +"It is not this file.\n" +msgstr "" + +#. +#. * File editor +#. +#: src/LYrcFile.c:625 +msgid "" +"file_editor specifies the editor to be invoked when editing local files\n" +"or sending mail. If no editor is specified, then file editing is disabled\n" +"unless it is activated from the command line, and the built-in line editor\n" +"will be used for sending mail.\n" +msgstr "" + +#. +#. * Default bookmark file. +#. +#: src/LYrcFile.c:636 +msgid "" +"bookmark_file specifies the name and location of the default bookmark\n" +"file into which the user can paste links for easy access at a later\n" +"date.\n" +msgstr "" + +#. +#. * Multiple (sub)bookmark support settings. +#. +#: src/LYrcFile.c:646 +msgid "" +"If sub_bookmarks is not turned \"off\", and multiple bookmarks have\n" +"been defined (see below), then all bookmark operations will first\n" +"prompt the user to select an active sub-bookmark file. If the default\n" +"Lynx bookmark_file is defined (see above), it will be used as the\n" +"default selection. When this option is set to \"advanced\", and the\n" +"user mode is advanced, the 'v'iew bookmark command will invoke a\n" +"statusline prompt instead of the menu seen in novice and intermediate\n" +"user modes. When this option is set to \"standard\", the menu will be\n" +"presented regardless of user mode.\n" +msgstr "" + +#. +#. * Multiple (sub)bookmark definitions and descriptions. +#. +#: src/LYrcFile.c:665 +msgid "" +"The following allow you to define sub-bookmark files and descriptions.\n" +"The format is multi_bookmark<capital_letter>=<filename>,<description>\n" +"Up to 26 bookmark files (for the English capital letters) are allowed.\n" +"We start with \"multi_bookmarkB\" since 'A' is the default (see above).\n" +msgstr "" + +#. +#. * FTP/file sorting method. +#. +#: src/LYrcFile.c:685 +msgid "" +"The file_sorting_method specifies which value to sort on when viewing\n" +"file lists such as FTP directories. The options are:\n" +" BY_FILENAME -- sorts on the name of the file\n" +" BY_TYPE -- sorts on the type of the file\n" +" BY_SIZE -- sorts on the size of the file\n" +" BY_DATE -- sorts on the date of the file\n" +msgstr "" + +#. +#. * Personal mail address. +#. +#: src/LYrcFile.c:699 +msgid "" +"personal_mail_address specifies your personal mail address. The\n" +"address will be sent during HTTP file transfers for authorization and\n" +"logging purposes, and for mailed comments.\n" +"If you do not want this information given out, set the NO_FROM_HEADER\n" +"to TRUE in lynx.cfg, or use the -nofrom command line switch. You also\n" +"could leave this field blank, but then you won't have it included in\n" +"your mailed comments.\n" +msgstr "" + +#. +#. * Searching type. +#. +#: src/LYrcFile.c:714 +msgid "" +"If case_sensitive_searching is \"on\" then when the user invokes a search\n" +"using the 's' or '/' keys, the search performed will be case sensitive\n" +"instead of case INsensitive. The default is usually \"off\".\n" +msgstr "" + +#. +#. * Character set. +#. +#: src/LYrcFile.c:724 +msgid "" +"The character_set definition controls the representation of 8 bit\n" +"characters for your terminal. If 8 bit characters do not show up\n" +"correctly on your screen you may try changing to a different 8 bit\n" +"set or using the 7 bit character approximations.\n" +"Current valid characters sets are:\n" +msgstr "" + +#. +#. * Preferred language. +#. +#: src/LYrcFile.c:739 +msgid "" +"preferred_language specifies the language in MIME notation (e.g., en,\n" +"fr, may be a comma-separated list in decreasing preference)\n" +"which Lynx will indicate you prefer in requests to http servers.\n" +"If a file in that language is available, the server will send it.\n" +"Otherwise, the server will send the file in it's default language.\n" +msgstr "" + +#. +#. * Preferred charset. +#. +#: src/LYrcFile.c:751 +msgid "" +"preferred_charset specifies the character set in MIME notation (e.g.,\n" +"ISO-8859-2, ISO-8859-5) which Lynx will indicate you prefer in requests\n" +"to http servers using an Accept-Charset header. The value should NOT\n" +"include ISO-8859-1 or US-ASCII, since those values are always assumed\n" +"by default. May be a comma-separated list.\n" +"If a file in that character set is available, the server will send it.\n" +"If no Accept-Charset header is present, the default is that any\n" +"character set is acceptable. If an Accept-Charset header is present,\n" +"and if the server cannot send a response which is acceptable\n" +"according to the Accept-Charset header, then the server SHOULD send\n" +"an error response, though the sending of an unacceptable response\n" +"is also allowed.\n" +msgstr "" + +#: src/LYrcFile.c:772 +msgid "" +"show_color specifies how to set the color mode at startup. A value of\n" +"\"never\" will force color mode off (treat the terminal as monochrome)\n" +"at startup even if the terminal appears to be color capable. A value of\n" +"\"always\" will force color mode on even if the terminal appears to be\n" +"monochrome, if this is supported by the library used to build lynx.\n" +"A value of \"default\" will yield the behavior of assuming\n" +"a monochrome terminal unless color capability is inferred at startup\n" +"based on the terminal type, or the -color command line switch is used, or\n" +"the COLORTERM environment variable is set. The default behavior always is\n" +"used in anonymous accounts or if the \"option_save\" restriction is set.\n" +"The effect of the saved value can be overridden via\n" +"the -color and -nocolor command line switches.\n" +"The mode set at startup can be changed via the \"show color\" option in\n" +"the 'o'ptions menu. If the option settings are saved, the \"on\" and\n" +"\"off\" \"show color\" settings will be treated as \"default\".\n" +msgstr "" + +#. +#. * VI keys. +#. +#: src/LYrcFile.c:798 +msgid "" +"If vi_keys is set to \"on\", then the normal VI movement keys:\n" +" j = down k = up\n" +" h = left l = right\n" +"will be enabled. These keys are only lower case.\n" +"Capital 'H', 'J' and 'K will still activate help, jump shortcuts,\n" +"and the keymap display, respectively.\n" +msgstr "" + +#. +#. * EMACS keys. +#. +#: src/LYrcFile.c:811 +msgid "" +"If emacs_keys is to \"on\" then the normal EMACS movement keys:\n" +" ^N = down ^P = up\n" +" ^B = left ^F = right\n" +"will be enabled.\n" +msgstr "" + +#. +#. * Show dot files. +#. +#: src/LYrcFile.c:822 +msgid "" +"show_dotfiles specifies that the directory listing should include\n" +"\"hidden\" (dot) files/directories. If set \"on\", this will be\n" +"honored only if enabled via userdefs.h and/or lynx.cfg, and not\n" +"restricted via a command line switch. If display of hidden files\n" +"is disabled, creation of such files via Lynx also is disabled.\n" +msgstr "" + +#. +#. * Select popups. +#. +#: src/LYrcFile.c:834 +msgid "" +"select_popups specifies whether the OPTIONs in a SELECT block which\n" +"lacks a MULTIPLE attribute are presented as a vertical list of radio\n" +"buttons or via a popup menu. Note that if the MULTIPLE attribute is\n" +"present in the SELECT start tag, Lynx always will create a vertical list\n" +"of checkboxes for the OPTIONs. A value of \"on\" will set popup menus\n" +"as the default while a value of \"off\" will set use of radio boxes.\n" +"The default can be overridden via the -popup command line toggle.\n" +msgstr "" + +#. +#. * Show cursor. +#. +#: src/LYrcFile.c:848 +msgid "" +"show_cursor specifies whether to 'hide' the cursor to the right (and\n" +"bottom, if possible) of the screen, or to place it to the left of the\n" +"current link in documents, or current option in select popup windows.\n" +"Positioning the cursor to the left of the current link or option is\n" +"helpful for speech or braille interfaces, and when the terminal is\n" +"one which does not distinguish the current link based on highlighting\n" +"or color. A value of \"on\" will set positioning to the left as the\n" +"default while a value of \"off\" will set 'hiding' of the cursor.\n" +"The default can be overridden via the -show_cursor command line toggle.\n" +msgstr "" + +#. +#. * Keypad mode. +#. +#: src/LYrcFile.c:864 +msgid "" +"If keypad_mode is set to \"NUMBERS_AS_ARROWS\", then the numbers on\n" +"your keypad when the numlock is on will act as arrow keys:\n" +" 8 = Up Arrow\n" +" 4 = Left Arrow 6 = Right Arrow\n" +" 2 = Down Arrow\n" +"and the corresponding keyboard numbers will act as arrow keys,\n" +"regardless of whether numlock is on.\n" +msgstr "" + +#: src/LYrcFile.c:873 +msgid "" +"If keypad_mode is set to \"LINKS_ARE_NUMBERED\", then numbers will\n" +"appear next to each link and numbers are used to select links.\n" +msgstr "" + +#: src/LYrcFile.c:877 +msgid "" +"If keypad_mode is set to \"LINKS_AND_FORM_FIELDS_ARE_NUMBERED\", then\n" +"numbers will appear next to each link and visible form input field.\n" +"Numbers are used to select links, or to move the \"current link\" to a\n" +"form input field or button. In addition, options in popup menus are\n" +"indexed so that the user may type an option number to select an option in\n" +"a popup menu, even if the option isn't visible on the screen. Reference\n" +"lists and output from the list command also enumerate form inputs.\n" +msgstr "" + +#: src/LYrcFile.c:886 +msgid "" +"NOTE: Some fixed format documents may look disfigured when\n" +"\"LINKS_ARE_NUMBERED\" or \"LINKS_AND_FORM_FIELDS_ARE_NUMBERED\" are\n" +"enabled.\n" +msgstr "" + +#. +#. * Partial display threshold +#. +#: src/LYrcFile.c:898 +msgid "" +"partial_thres specifies the number of lines Lynx should download and render\n" +"before we redraw the screen in Partial Display logic\n" +"e.g., partial_thres=2\n" +"would have Lynx redraw every 2 lines that it renders\n" +"partial_thres=-1 would use the entire screensize\n" +msgstr "" + +#. +#. * Line edit mode. +#. +#: src/LYrcFile.c:912 +msgid "" +"lineedit_mode specifies the key binding used for inputting strings in\n" +"prompts and forms. If lineedit_mode is set to \"Default Binding\" then\n" +"the following control characters are used for moving and deleting:\n" +"\n" +" Prev Next Enter = Accept input\n" +" Move char: <- -> ^G = Cancel input\n" +" Move word: ^P ^N ^U = Erase line\n" +" Delete char: ^H ^R ^A = Beginning of line\n" +" Delete word: ^B ^F ^E = End of line\n" +"\n" +"Current lineedit modes are:\n" +msgstr "" + +#. +#. * Directory list style. +#. +#: src/LYrcFile.c:941 +msgid "" +"dir_list_styles specifies the directory list style under DIRED_SUPPORT\n" +"(if implemented). The default is \"MIXED_STYLE\", which sorts both\n" +"files and directories together. \"FILES_FIRST\" lists files first and\n" +"\"DIRECTORIES_FIRST\" lists directories first.\n" +msgstr "" + +#. +#. * User mode. +#. +#: src/LYrcFile.c:954 +msgid "" +"user_mode specifies the users level of knowledge with Lynx. The\n" +"default is \"NOVICE\" which displays two extra lines of help at the\n" +"bottom of the screen to aid the user in learning the basic Lynx\n" +"commands. Set user_mode to \"INTERMEDIATE\" to turn off the extra info.\n" +"Use \"ADVANCED\" to see the URL of the currently selected link at the\n" +"bottom of the screen.\n" +msgstr "" + +#. +#. * Cookie options +#. +#: src/LYrcFile.c:968 +msgid "" +"accept_all_cookies allows the user to tell Lynx to automatically\n" +"accept all cookies if desired. The default is \"FALSE\" which will\n" +"prompt for each cookie. Set accept_all_cookies to \"TRUE\" to accept\n" +"all cookies.\n" +msgstr "" + +#: src/LYrcFile.c:976 +msgid "" +"cookie_accept_domains and cookie_reject_domains are comma-delimited\n" +"lists of domains from which Lynx should automatically accept or reject\n" +"all cookies. If a domain is specified in both options, rejection will\n" +"take precedence. The accept_all_cookies parameter will override any\n" +"settings made here.\n" +msgstr "" + +#: src/LYrcFile.c:991 +msgid "" +"cookie_loose_invalid_domains, cookie_strict_invalid_domains, and\n" +"cookie_query_invalid_domains are comma-delimited lists of which domains\n" +"should be subjected to varying degrees of validity checking. If a\n" +"domain is set to strict checking, strict conformance to RFC2109 will\n" +"be applied. A domain with loose checking will be allowed to set cookies\n" +"with an invalid path or domain attribute. All domains will default to\n" +"querying the user for an invalid path or domain.\n" +msgstr "" + +#. +#. * Cookie read file. +#. +#: src/LYrcFile.c:1015 +msgid "" +"cookie_file specifies the file from which to read persistent cookies.\n" +"The default is ~/.lynx_cookies.\n" +msgstr "" + +#. +#. * Local execution mode - all links. +#. +#: src/LYrcFile.c:1029 +msgid "" +"If run_all_execution_links is set \"on\" then all local execution links\n" +"will be executed when they are selected.\n" +"\n" +"WARNING - This is potentially VERY dangerous. Since you may view\n" +" information that is written by unknown and untrusted sources\n" +" there exists the possibility that Trojan horse links could be\n" +" written. Trojan horse links could be written to erase files\n" +" or compromise security. This should only be set to \"on\" if\n" +" you are viewing trusted source information.\n" +msgstr "" + +#. +#. * Local execution mode - only links in local files. +#. +#: src/LYrcFile.c:1045 +msgid "" +"If run_execution_links_on_local_files is set \"on\" then all local\n" +"execution links that are found in LOCAL files will be executed when they\n" +"are selected. This is different from run_all_execution_links in that\n" +"only files that reside on the local system will have execution link\n" +"permissions.\n" +"\n" +"WARNING - This is potentially dangerous. Since you may view\n" +" information that is written by unknown and untrusted sources\n" +" there exists the possibility that Trojan horse links could be\n" +" written. Trojan horse links could be written to erase files\n" +" or compromise security. This should only be set to \"on\" if\n" +" you are viewing trusted source information.\n" +msgstr "" + +#: src/LYrcFile.c:1063 +msgid "" +"If verbose_images is \"on\", lynx will print the name of the image\n" +"source file in place of [INLINE], [LINK] or [IMAGE]\n" +"See also VERBOSE_IMAGES in lynx.cfg\n" +msgstr "" +"¤â¤· verbose_images ¤¬ \"on\" ¤Ê¤é¤Ð¡¢lynx ¤Ï²èÁü¥½¡¼¥¹¥Õ¥¡¥¤¥ë¤Î̾Á°¤ò\n" +"[INLINE]¡¢[LINK]¡¢¤¢¤ë¤¤¤Ï[IMAGE]¤Î¾ì½ê¤Ëɽ¼¨¤·¤Þ¤¹\n" +"lynx.cfg ¤ÎÃæ¤Î VERBOSE_IMAGES ¤â»²¾È¤·¤Æ¤¯¤À¤µ¤¤\n" + +#: src/LYrcFile.c:1070 +msgid "" +"The visited_links setting controls how Lynx organizes the information\n" +"in the Visited Links Page.\n" +msgstr "" +"visited_links ¤ÎÀßÄê¤Ï¡¢Lynx ¤¬¡Öˬ¤ì¤¿¥ê¥ó¥¯°ìÍ÷¡×¤Î¥Ú¡¼¥¸¤Ë¤ª¤¤¤Æ\n" +"¾ðÊó¤ò¤É¤¦À°Íý¤·¤Æɽ¼¨¤¹¤ë¤«¤òÀ©¸æ¤·¤Þ¤¹¡£\n" diff --git a/src/LYCurses.c b/src/LYCurses.c index 0b51206b..47f6b73f 100644 --- a/src/LYCurses.c +++ b/src/LYCurses.c @@ -657,7 +657,7 @@ PUBLIC void LYnoVideo ARGS1( * If newterm is not defined, assume a curses subset which * supports only initscr. --gil */ -#if defined(HAVE_NEWTERM) && !defined(NCURSES) && !defined(HAVE_RESIZETERM) +#if defined(HAVE_NEWTERM) && defined(HAVE_DELSCREEN) && !defined(NCURSES) && !defined(HAVE_RESIZETERM) static SCREEN *LYscreen = NULL; #define LYDELSCR() { \ if (recent_sizechange) { \ diff --git a/src/LYMain.c b/src/LYMain.c index 72a6e502..90015871 100644 --- a/src/LYMain.c +++ b/src/LYMain.c @@ -841,6 +841,10 @@ PUBLIC int main ARGS2( #ifdef _WINDOWS WSADATA WSAData; #endif /* _WINDOWS */ +#ifdef USE_SSL + char SSLLibraryVersion[256]; + char *SSLcp; +#endif /* USE_SSL */ /* * Just in case someone has the idea to install lynx set-uid, let's try @@ -1024,6 +1028,20 @@ PUBLIC int main ARGS2( StrAllocCat(LYUserAgent, " libwww-FM/"); StrAllocCat(LYUserAgent, HTLibraryVersion); } +#ifdef USE_SSL + StrAllocCat(LYUserAgent, " SSL-MM/1.4.1"); +#ifdef OPENSSL_VERSION_TEXT + LYstrncpy(SSLLibraryVersion, OPENSSL_VERSION_TEXT, sizeof(SSLLibraryVersion)-1); + if ((SSLcp = strchr(SSLLibraryVersion, ' ')) != NULL) { + *SSLcp++ = '/'; + if ((SSLcp = strchr(SSLcp, ' ')) != NULL) { + *SSLcp = '\0'; + StrAllocCat(LYUserAgent, " "); + StrAllocCat(LYUserAgent, SSLLibraryVersion); + } + } +#endif /* OPENSSL_VERSION_TEXT */ +#endif /* USE_SSL */ StrAllocCopy(LYUserAgentDefault, LYUserAgent); #ifdef VMS Define_VMSLogical("LYNX_VERSION", LYNX_VERSION); @@ -2922,11 +2940,31 @@ PRIVATE int traversal_fun ARGS1( PRIVATE int version_fun ARGS1( char *, next_arg GCC_UNUSED) { +#ifdef USE_SSL + char SSLLibraryVersion[256]; + char *SSLcp; +#endif + SetOutputMode( O_TEXT ); printf(gettext("%s Version %s (%s)\n"), LYNX_NAME, LYNX_VERSION, LYVersionDate()); +#ifdef USE_SSL + printf("libwww-FM %s, SSL-MM 1.4.1", HTLibraryVersion); +#ifdef OPENSSL_VERSION_TEXT + LYstrncpy(SSLLibraryVersion, OPENSSL_VERSION_TEXT, sizeof(SSLLibraryVersion)-1); + if ((SSLcp = strchr(SSLLibraryVersion, ' ')) != NULL) { + *SSLcp++ = ' '; + if ((SSLcp = strchr(SSLcp, ' ')) != NULL) { + *SSLcp = '\0'; + printf(", %s", SSLLibraryVersion); + } + } +#endif /* OPENSSL_VERSION_TEXT */ + printf("\n"); +#endif /* USE_SSL */ + #ifdef SYSTEM_NAME #ifndef __DATE__ #define __DATE__ "" @@ -2936,6 +2974,7 @@ PRIVATE int version_fun ARGS1( #endif printf(gettext("Built on %s %s %s\n"), SYSTEM_NAME, __DATE__, __TIME__); #endif + printf("\n"); printf(gettext( "Copyrights held by the University of Kansas, CERN, and other contributors.\n" @@ -2944,6 +2983,13 @@ PRIVATE int version_fun ARGS1( printf(gettext( "See http://lynx.browser.org/ and the online help for more information.\n\n" )); +#ifdef USE_SSL + printf("See http://www.moxienet.com/lynx/ for information about SSL for Lynx.\n"); +#ifdef OPENSSL_VERSION_TEXT + printf("See http://www.openssl.org/ for information about OpenSSL.\n"); +#endif /* OPENSSL_VERSION_TEXT */ + printf("\n"); +#endif /* USE_SSL */ #ifdef SH_EX #ifdef __CYGWIN__ diff --git a/userdefs.h b/userdefs.h index b4fc7084..a05474f2 100644 --- a/userdefs.h +++ b/userdefs.h @@ -1345,11 +1345,11 @@ * the version definition with the Project Version on checkout. Just * ignore it. - kw */ /* $Format: "#define LYNX_VERSION \"$ProjectVersion$\""$ */ -#define LYNX_VERSION "2.8.4dev.15" +#define LYNX_VERSION "2.8.4dev.16" #define LYNX_WWW_HOME "http://lynx.browser.org/" #define LYNX_WWW_DIST "http://lynx.isc.org/current/" /* $Format: "#define LYNX_DATE \"$ProjectDate$\""$ */ -#define LYNX_DATE "Thu, 21 Dec 2000 18:44:11 -0800" +#define LYNX_DATE "Mon, 01 Jan 2001 17:39:50 -0800" #define LYNX_DATE_OFF 5 /* truncate the automatically-generated date */ #define LYNX_DATE_LEN 11 /* truncate the automatically-generated date */ |